seaweedfs/weed/security/tls.go

239 lines
7.6 KiB
Go
Raw Normal View History

2019-02-19 04:11:52 +08:00
package security
import (
"crypto/tls"
"crypto/x509"
2022-06-24 04:42:04 +08:00
"fmt"
"os"
"slices"
"strings"
2022-06-24 02:32:15 +08:00
"time"
2019-02-19 04:11:52 +08:00
"github.com/seaweedfs/seaweedfs/weed/glog"
"github.com/seaweedfs/seaweedfs/weed/util"
2022-06-24 04:42:04 +08:00
"google.golang.org/grpc"
"google.golang.org/grpc/credentials/insecure"
"google.golang.org/grpc/credentials/tls/certprovider/pemfile"
"google.golang.org/grpc/security/advancedtls"
2019-02-19 04:11:52 +08:00
)
const CredRefreshingInterval = time.Duration(5) * time.Hour
2022-06-24 02:32:15 +08:00
type Authenticator struct {
2021-03-10 17:02:13 +08:00
AllowedWildcardDomain string
AllowedCommonNames map[string]bool
}
func LoadServerTLS(config *util.ViperProxy, component string) (grpc.ServerOption, grpc.ServerOption) {
2019-02-19 04:11:52 +08:00
if config == nil {
return nil, nil
2019-02-19 04:11:52 +08:00
}
2022-06-24 02:32:15 +08:00
serverOptions := pemfile.Options{
CertFile: config.GetString(component + ".cert"),
KeyFile: config.GetString(component + ".key"),
RefreshDuration: CredRefreshingInterval,
}
if serverOptions.CertFile == "" || serverOptions.KeyFile == "" {
return nil, nil
2022-06-24 02:32:15 +08:00
}
serverIdentityProvider, err := pemfile.NewProvider(serverOptions)
2019-02-19 04:11:52 +08:00
if err != nil {
glog.Warningf("pemfile.NewProvider(%v) %v failed: %v", serverOptions, component, err)
return nil, nil
2019-02-19 04:11:52 +08:00
}
2022-06-24 02:32:15 +08:00
serverRootOptions := pemfile.Options{
RootFile: config.GetString("grpc.ca"),
RefreshDuration: CredRefreshingInterval,
2022-06-24 02:32:15 +08:00
}
serverRootProvider, err := pemfile.NewProvider(serverRootOptions)
2019-02-19 04:11:52 +08:00
if err != nil {
2022-06-24 02:32:15 +08:00
glog.Warningf("pemfile.NewProvider(%v) failed: %v", serverRootOptions, err)
return nil, nil
}
2022-06-24 04:50:13 +08:00
2022-06-24 02:32:15 +08:00
// Start a server and create a client using advancedtls API with Provider.
2024-06-22 23:30:16 +08:00
options := &advancedtls.Options{
2022-06-24 02:32:15 +08:00
IdentityOptions: advancedtls.IdentityCertificateOptions{
IdentityProvider: serverIdentityProvider,
},
RootOptions: advancedtls.RootCertificateOptions{
RootProvider: serverRootProvider,
},
2022-06-24 03:29:23 +08:00
RequireClientCert: true,
VerificationType: advancedtls.CertVerification,
}
options.MinTLSVersion, err = TlsVersionByName(config.GetString("tls.min_version"))
if err != nil {
glog.Warningf("tls min version parse failed, %v", err)
return nil, nil
}
options.MaxTLSVersion, err = TlsVersionByName(config.GetString("tls.max_version"))
if err != nil {
glog.Warningf("tls max version parse failed, %v", err)
return nil, nil
}
options.CipherSuites, err = TlsCipherSuiteByNames(config.GetString("tls.cipher_suites"))
if err != nil {
glog.Warningf("tls cipher suite parse failed, %v", err)
return nil, nil
2019-02-19 04:11:52 +08:00
}
2021-03-10 17:42:39 +08:00
allowedCommonNames := config.GetString(component + ".allowed_commonNames")
2021-03-10 17:02:13 +08:00
allowedWildcardDomain := config.GetString("grpc.allowed_wildcard_domain")
2021-03-10 17:42:39 +08:00
if allowedCommonNames != "" || allowedWildcardDomain != "" {
2021-03-10 17:02:13 +08:00
allowedCommonNamesMap := make(map[string]bool)
2021-03-10 17:42:39 +08:00
for _, s := range strings.Split(allowedCommonNames, ",") {
2021-03-10 17:02:13 +08:00
allowedCommonNamesMap[s] = true
}
auther := Authenticator{
2021-03-10 17:02:13 +08:00
AllowedCommonNames: allowedCommonNamesMap,
AllowedWildcardDomain: allowedWildcardDomain,
}
2024-06-22 23:30:16 +08:00
options.AdditionalPeerVerification = auther.Authenticate
2022-06-24 04:42:04 +08:00
} else {
2024-06-22 23:30:16 +08:00
options.AdditionalPeerVerification = func(params *advancedtls.HandshakeVerificationInfo) (*advancedtls.PostHandshakeVerificationResults, error) {
return &advancedtls.PostHandshakeVerificationResults{}, nil
2022-06-24 04:42:04 +08:00
}
}
ta, err := advancedtls.NewServerCreds(options)
if err != nil {
glog.Warningf("advancedtls.NewServerCreds(%v) failed: %v", options, err)
return nil, nil
}
return grpc.Creds(ta), nil
2019-02-19 04:11:52 +08:00
}
2021-01-12 18:28:13 +08:00
func LoadClientTLS(config *util.ViperProxy, component string) grpc.DialOption {
2019-02-19 04:11:52 +08:00
if config == nil {
2022-07-29 16:34:39 +08:00
return grpc.WithTransportCredentials(insecure.NewCredentials())
2019-02-19 04:11:52 +08:00
}
2020-11-22 20:27:15 +08:00
certFileName, keyFileName, caFileName := config.GetString(component+".cert"), config.GetString(component+".key"), config.GetString("grpc.ca")
2020-09-21 06:40:49 +08:00
if certFileName == "" || keyFileName == "" || caFileName == "" {
2022-07-29 16:34:39 +08:00
return grpc.WithTransportCredentials(insecure.NewCredentials())
2020-09-21 06:38:59 +08:00
}
2022-06-24 02:32:15 +08:00
clientOptions := pemfile.Options{
CertFile: certFileName,
KeyFile: keyFileName,
RefreshDuration: CredRefreshingInterval,
2022-06-24 02:32:15 +08:00
}
clientProvider, err := pemfile.NewProvider(clientOptions)
2019-02-19 04:11:52 +08:00
if err != nil {
2022-06-24 02:32:15 +08:00
glog.Warningf("pemfile.NewProvider(%v) failed %v", clientOptions, err)
2022-07-29 16:34:39 +08:00
return grpc.WithTransportCredentials(insecure.NewCredentials())
2019-02-19 04:11:52 +08:00
}
2022-06-24 03:26:56 +08:00
clientRootOptions := pemfile.Options{
RootFile: config.GetString("grpc.ca"),
RefreshDuration: CredRefreshingInterval,
2022-06-24 03:26:56 +08:00
}
clientRootProvider, err := pemfile.NewProvider(clientRootOptions)
if err != nil {
glog.Warningf("pemfile.NewProvider(%v) failed: %v", clientRootOptions, err)
2022-07-29 16:34:39 +08:00
return grpc.WithTransportCredentials(insecure.NewCredentials())
2022-06-24 03:26:56 +08:00
}
2024-06-22 23:30:16 +08:00
options := &advancedtls.Options{
2022-06-24 03:26:56 +08:00
IdentityOptions: advancedtls.IdentityCertificateOptions{
IdentityProvider: clientProvider,
},
2024-06-22 23:30:16 +08:00
AdditionalPeerVerification: func(params *advancedtls.HandshakeVerificationInfo) (*advancedtls.PostHandshakeVerificationResults, error) {
return &advancedtls.PostHandshakeVerificationResults{}, nil
},
2022-06-24 02:32:15 +08:00
RootOptions: advancedtls.RootCertificateOptions{
2022-06-24 03:26:56 +08:00
RootProvider: clientRootProvider,
2022-06-24 02:32:15 +08:00
},
2024-06-22 23:30:16 +08:00
VerificationType: advancedtls.CertVerification,
2022-06-24 02:32:15 +08:00
}
ta, err := advancedtls.NewClientCreds(options)
2019-02-19 04:11:52 +08:00
if err != nil {
2022-06-24 02:32:15 +08:00
glog.Warningf("advancedtls.NewClientCreds(%v) failed: %v", options, err)
2022-07-29 16:34:39 +08:00
return grpc.WithTransportCredentials(insecure.NewCredentials())
2019-02-19 04:11:52 +08:00
}
return grpc.WithTransportCredentials(ta)
}
func LoadClientTLSHTTP(clientCertFile string) *tls.Config {
clientCerts, err := os.ReadFile(clientCertFile)
if err != nil {
glog.Fatal(err)
}
certPool := x509.NewCertPool()
ok := certPool.AppendCertsFromPEM(clientCerts)
if !ok {
glog.Fatalf("Error processing client certificate in %s\n", clientCertFile)
}
return &tls.Config{
ClientCAs: certPool,
ClientAuth: tls.RequireAndVerifyClientCert,
}
}
2024-06-22 23:30:16 +08:00
func (a Authenticator) Authenticate(params *advancedtls.HandshakeVerificationInfo) (*advancedtls.PostHandshakeVerificationResults, error) {
2022-06-24 04:42:04 +08:00
if a.AllowedWildcardDomain != "" && strings.HasSuffix(params.Leaf.Subject.CommonName, a.AllowedWildcardDomain) {
2024-06-22 23:30:16 +08:00
return &advancedtls.PostHandshakeVerificationResults{}, nil
}
2022-06-24 04:42:04 +08:00
if _, ok := a.AllowedCommonNames[params.Leaf.Subject.CommonName]; ok {
2024-06-22 23:30:16 +08:00
return &advancedtls.PostHandshakeVerificationResults{}, nil
}
2022-06-24 04:42:04 +08:00
err := fmt.Errorf("Authenticate: invalid subject client common name: %s", params.Leaf.Subject.CommonName)
glog.Error(err)
return nil, err
}
func FixTlsConfig(viper *util.ViperProxy, config *tls.Config) error {
var err error
config.MinVersion, err = TlsVersionByName(viper.GetString("tls.min_version"))
if err != nil {
return err
}
config.MaxVersion, err = TlsVersionByName(viper.GetString("tls.max_version"))
if err != nil {
return err
}
config.CipherSuites, err = TlsCipherSuiteByNames(viper.GetString("tls.cipher_suites"))
return err
}
func TlsVersionByName(name string) (uint16, error) {
switch name {
case "":
return 0, nil
case "SSLv3":
return tls.VersionSSL30, nil
case "TLS 1.0":
return tls.VersionTLS10, nil
case "TLS 1.1":
return tls.VersionTLS11, nil
case "TLS 1.2":
return tls.VersionTLS12, nil
case "TLS 1.3":
return tls.VersionTLS13, nil
default:
return 0, fmt.Errorf("invalid tls version %s", name)
}
}
func TlsCipherSuiteByNames(cipherSuiteNames string) ([]uint16, error) {
cipherSuiteNames = strings.TrimSpace(cipherSuiteNames)
if cipherSuiteNames == "" {
return nil, nil
}
names := strings.Split(cipherSuiteNames, ",")
cipherSuites := tls.CipherSuites()
cipherIds := make([]uint16, 0, len(names))
for _, name := range names {
name = strings.TrimSpace(name)
index := slices.IndexFunc(cipherSuites, func(suite *tls.CipherSuite) bool {
return name == suite.Name
})
if index == -1 {
return nil, fmt.Errorf("invalid tls cipher suite name %s", name)
}
cipherIds = append(cipherIds, cipherSuites[index].ID)
}
return cipherIds, nil
}