seaweedfs/weed/security/tls.go

125 lines
3.8 KiB
Go
Raw Normal View History

2019-02-18 20:11:52 +00:00
package security
import (
"context"
2019-02-18 20:11:52 +00:00
"crypto/tls"
"crypto/x509"
"os"
"strings"
2019-02-18 20:11:52 +00:00
grpc_auth "github.com/grpc-ecosystem/go-grpc-middleware/auth"
2019-02-18 20:11:52 +00:00
"google.golang.org/grpc"
"google.golang.org/grpc/codes"
2019-02-18 20:11:52 +00:00
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/peer"
"google.golang.org/grpc/status"
2020-02-23 05:23:30 +00:00
"github.com/chrislusf/seaweedfs/weed/glog"
"github.com/chrislusf/seaweedfs/weed/util"
2019-02-18 20:11:52 +00:00
)
type Authenticator struct {
2021-03-10 09:02:13 +00:00
AllowedWildcardDomain string
AllowedCommonNames map[string]bool
}
func LoadServerTLS(config *util.ViperProxy, component string) (grpc.ServerOption, grpc.ServerOption) {
2019-02-18 20:11:52 +00:00
if config == nil {
return nil, nil
2019-02-18 20:11:52 +00:00
}
// load cert/key, ca cert
cert, err := tls.LoadX509KeyPair(config.GetString(component+".cert"), config.GetString(component+".key"))
if err != nil {
2021-03-08 16:39:44 +00:00
glog.V(1).Infof("load cert: %s / key: %s error: %v",
config.GetString(component+".cert"),
config.GetString(component+".key"),
err)
return nil, nil
2019-02-18 20:11:52 +00:00
}
caCert, err := os.ReadFile(config.GetString("grpc.ca"))
2019-02-18 20:11:52 +00:00
if err != nil {
2021-03-08 16:39:44 +00:00
glog.V(1).Infof("read ca cert file %s error: %v", config.GetString("grpc.ca"), err)
return nil, nil
2019-02-18 20:11:52 +00:00
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
ta := credentials.NewTLS(&tls.Config{
Certificates: []tls.Certificate{cert},
ClientCAs: caCertPool,
ClientAuth: tls.RequireAndVerifyClientCert,
})
2021-03-10 09:42:39 +00:00
allowedCommonNames := config.GetString(component + ".allowed_commonNames")
2021-03-10 09:02:13 +00:00
allowedWildcardDomain := config.GetString("grpc.allowed_wildcard_domain")
2021-03-10 09:42:39 +00:00
if allowedCommonNames != "" || allowedWildcardDomain != "" {
2021-03-10 09:02:13 +00:00
allowedCommonNamesMap := make(map[string]bool)
2021-03-10 09:42:39 +00:00
for _, s := range strings.Split(allowedCommonNames, ",") {
2021-03-10 09:02:13 +00:00
allowedCommonNamesMap[s] = true
}
auther := Authenticator{
2021-03-10 09:02:13 +00:00
AllowedCommonNames: allowedCommonNamesMap,
AllowedWildcardDomain: allowedWildcardDomain,
}
return grpc.Creds(ta), grpc.UnaryInterceptor(grpc_auth.UnaryServerInterceptor(auther.Authenticate))
}
return grpc.Creds(ta), nil
2019-02-18 20:11:52 +00:00
}
2021-01-12 10:28:13 +00:00
func LoadClientTLS(config *util.ViperProxy, component string) grpc.DialOption {
2019-02-18 20:11:52 +00:00
if config == nil {
return grpc.WithInsecure()
}
2020-11-22 12:27:15 +00:00
certFileName, keyFileName, caFileName := config.GetString(component+".cert"), config.GetString(component+".key"), config.GetString("grpc.ca")
2020-09-20 22:40:49 +00:00
if certFileName == "" || keyFileName == "" || caFileName == "" {
2020-09-20 22:38:59 +00:00
return grpc.WithInsecure()
}
2019-02-18 20:11:52 +00:00
// load cert/key, cacert
2020-09-20 22:38:59 +00:00
cert, err := tls.LoadX509KeyPair(certFileName, keyFileName)
2019-02-18 20:11:52 +00:00
if err != nil {
2020-02-23 05:23:30 +00:00
glog.V(1).Infof("load cert/key error: %v", err)
2019-02-18 20:11:52 +00:00
return grpc.WithInsecure()
}
caCert, err := os.ReadFile(caFileName)
2019-02-18 20:11:52 +00:00
if err != nil {
2020-02-23 05:23:30 +00:00
glog.V(1).Infof("read ca cert file error: %v", err)
2019-02-18 20:11:52 +00:00
return grpc.WithInsecure()
}
caCertPool := x509.NewCertPool()
caCertPool.AppendCertsFromPEM(caCert)
ta := credentials.NewTLS(&tls.Config{
Certificates: []tls.Certificate{cert},
RootCAs: caCertPool,
InsecureSkipVerify: true,
})
return grpc.WithTransportCredentials(ta)
}
func (a Authenticator) Authenticate(ctx context.Context) (newCtx context.Context, err error) {
p, ok := peer.FromContext(ctx)
if !ok {
return ctx, status.Error(codes.Unauthenticated, "no peer found")
}
tlsAuth, ok := p.AuthInfo.(credentials.TLSInfo)
if !ok {
return ctx, status.Error(codes.Unauthenticated, "unexpected peer transport credentials")
}
if len(tlsAuth.State.VerifiedChains) == 0 || len(tlsAuth.State.VerifiedChains[0]) == 0 {
return ctx, status.Error(codes.Unauthenticated, "could not verify peer certificate")
}
2021-03-10 09:42:39 +00:00
2021-03-10 09:02:13 +00:00
commonName := tlsAuth.State.VerifiedChains[0][0].Subject.CommonName
if a.AllowedWildcardDomain != "" && strings.HasSuffix(commonName, a.AllowedWildcardDomain) {
return ctx, nil
}
if _, ok := a.AllowedCommonNames[commonName]; ok {
return ctx, nil
}
2021-03-10 09:42:39 +00:00
return ctx, status.Errorf(codes.Unauthenticated, "invalid subject common name: %s", commonName)
}