-
Notifications
You must be signed in to change notification settings - Fork 5.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
store/tikv: refactor: remove import tidb.config.security in store/tikv #22538
Merged
Merged
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
57c90ba
store/tikv:remove import config.security from tidb config
AndreMouche df5128b
store/tikv:remove import config.security from tidb config
AndreMouche 468f6dd
Merge branch 'master' into tikv/securiy
AndreMouche 6db17d8
address comments
AndreMouche d184aa6
address comments
AndreMouche 9ef1517
Merge branch 'master' into tikv/securiy
AndreMouche 06d75cd
address comments
AndreMouche File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
// Copyright 2021 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package config | ||
|
||
import ( | ||
"crypto/tls" | ||
"crypto/x509" | ||
"io/ioutil" | ||
|
||
"github.com/pingcap/errors" | ||
) | ||
|
||
// Security is the security section of the config. | ||
type Security struct { | ||
ClusterSSLCA string `toml:"cluster-ssl-ca" json:"cluster-ssl-ca"` | ||
ClusterSSLCert string `toml:"cluster-ssl-cert" json:"cluster-ssl-cert"` | ||
ClusterSSLKey string `toml:"cluster-ssl-key" json:"cluster-ssl-key"` | ||
ClusterVerifyCN []string `toml:"cluster-verify-cn" json:"cluster-verify-cn"` | ||
} | ||
|
||
// NewSecurity creates a Security. | ||
func NewSecurity(sslCA, sslCert, sslKey string, verityCN []string) Security { | ||
return Security{ | ||
ClusterSSLCA: sslCA, | ||
ClusterSSLCert: sslCert, | ||
ClusterSSLKey: sslKey, | ||
ClusterVerifyCN: verityCN, | ||
} | ||
} | ||
|
||
// ToTLSConfig generates tls's config based on security section of the config. | ||
func (s *Security) ToTLSConfig() (tlsConfig *tls.Config, err error) { | ||
if len(s.ClusterSSLCA) != 0 { | ||
certPool := x509.NewCertPool() | ||
// Create a certificate pool from the certificate authority | ||
var ca []byte | ||
ca, err = ioutil.ReadFile(s.ClusterSSLCA) | ||
if err != nil { | ||
err = errors.Errorf("could not read ca certificate: %s", err) | ||
return | ||
} | ||
// Append the certificates from the CA | ||
if !certPool.AppendCertsFromPEM(ca) { | ||
err = errors.New("failed to append ca certs") | ||
return | ||
} | ||
tlsConfig = &tls.Config{ | ||
RootCAs: certPool, | ||
ClientCAs: certPool, | ||
} | ||
|
||
if len(s.ClusterSSLCert) != 0 && len(s.ClusterSSLKey) != 0 { | ||
getCert := func() (*tls.Certificate, error) { | ||
// Load the client certificates from disk | ||
cert, err := tls.LoadX509KeyPair(s.ClusterSSLCert, s.ClusterSSLKey) | ||
if err != nil { | ||
return nil, errors.Errorf("could not load client key pair: %s", err) | ||
} | ||
return &cert, nil | ||
} | ||
// pre-test cert's loading. | ||
if _, err = getCert(); err != nil { | ||
return | ||
} | ||
tlsConfig.GetClientCertificate = func(info *tls.CertificateRequestInfo) (certificate *tls.Certificate, err error) { | ||
return getCert() | ||
} | ||
tlsConfig.GetCertificate = func(info *tls.ClientHelloInfo) (certificate *tls.Certificate, err error) { | ||
return getCert() | ||
} | ||
} | ||
} | ||
return | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
need some head ?