2019-02-19 04:11:52 +08:00
|
|
|
package security
|
|
|
|
|
|
|
|
import (
|
2021-03-08 16:16:17 +08:00
|
|
|
"context"
|
2019-02-19 04:11:52 +08:00
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
2022-06-24 02:32:15 +08:00
|
|
|
"google.golang.org/grpc/credentials/tls/certprovider/pemfile"
|
|
|
|
"google.golang.org/grpc/security/advancedtls"
|
2022-03-15 07:22:52 +08:00
|
|
|
"io/ioutil"
|
2021-03-10 15:42:44 +08:00
|
|
|
"strings"
|
2022-06-24 02:32:15 +08:00
|
|
|
"time"
|
2019-02-19 04:11:52 +08:00
|
|
|
|
2021-10-14 12:27:58 +08:00
|
|
|
grpc_auth "github.com/grpc-ecosystem/go-grpc-middleware/auth"
|
2019-02-19 04:11:52 +08:00
|
|
|
"google.golang.org/grpc"
|
2021-10-14 12:27:58 +08:00
|
|
|
"google.golang.org/grpc/codes"
|
2019-02-19 04:11:52 +08:00
|
|
|
"google.golang.org/grpc/credentials"
|
2021-10-14 12:27:58 +08:00
|
|
|
"google.golang.org/grpc/peer"
|
|
|
|
"google.golang.org/grpc/status"
|
2020-02-23 13:23:30 +08:00
|
|
|
|
|
|
|
"github.com/chrislusf/seaweedfs/weed/glog"
|
2021-10-14 12:27:58 +08:00
|
|
|
"github.com/chrislusf/seaweedfs/weed/util"
|
2019-02-19 04:11:52 +08:00
|
|
|
)
|
|
|
|
|
2022-06-24 02:32:15 +08:00
|
|
|
const credRefreshingInterval = 5 * time.Minute
|
|
|
|
|
2021-03-08 16:16:17 +08:00
|
|
|
type Authenticator struct {
|
2021-03-10 17:02:13 +08:00
|
|
|
AllowedWildcardDomain string
|
|
|
|
AllowedCommonNames map[string]bool
|
2021-03-08 16:16:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
func LoadServerTLS(config *util.ViperProxy, component string) (grpc.ServerOption, grpc.ServerOption) {
|
2019-02-19 04:11:52 +08:00
|
|
|
if config == nil {
|
2021-03-08 16:16:17 +08:00
|
|
|
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,
|
|
|
|
}
|
|
|
|
|
|
|
|
serverIdentityProvider, err := pemfile.NewProvider(serverOptions)
|
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", serverOptions, err)
|
2021-03-08 16:16:17 +08:00
|
|
|
return nil, nil
|
2019-02-19 04:11:52 +08:00
|
|
|
}
|
2022-06-24 02:32:15 +08:00
|
|
|
defer serverIdentityProvider.Close()
|
|
|
|
|
|
|
|
serverRootOptions := pemfile.Options{
|
|
|
|
RootFile: config.GetString("grpc.ca"),
|
|
|
|
RefreshDuration: credRefreshingInterval,
|
|
|
|
}
|
|
|
|
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
|
|
|
|
}
|
|
|
|
defer serverIdentityProvider.Close()
|
|
|
|
// Start a server and create a client using advancedtls API with Provider.
|
|
|
|
options := &advancedtls.ServerOptions{
|
|
|
|
IdentityOptions: advancedtls.IdentityCertificateOptions{
|
|
|
|
IdentityProvider: serverIdentityProvider,
|
|
|
|
},
|
|
|
|
RootOptions: advancedtls.RootCertificateOptions{
|
|
|
|
RootProvider: serverRootProvider,
|
|
|
|
},
|
|
|
|
RequireClientCert: true,
|
|
|
|
VerifyPeer: func(params *advancedtls.VerificationFuncParams) (*advancedtls.VerificationResults, error) {
|
|
|
|
glog.V(0).Infof("Client common name: %s.\n", params.Leaf.Subject.CommonName)
|
|
|
|
return &advancedtls.VerificationResults{}, nil
|
|
|
|
},
|
|
|
|
VType: advancedtls.CertVerification,
|
|
|
|
}
|
|
|
|
ta, err := advancedtls.NewServerCreds(options)
|
|
|
|
if err != nil {
|
|
|
|
glog.Warningf("advancedtls.NewServerCreds(%v) failed: %v", options, err)
|
2021-03-08 16:16:17 +08:00
|
|
|
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
|
2021-03-08 16:16:17 +08:00
|
|
|
}
|
|
|
|
auther := Authenticator{
|
2021-03-10 17:02:13 +08:00
|
|
|
AllowedCommonNames: allowedCommonNamesMap,
|
|
|
|
AllowedWildcardDomain: allowedWildcardDomain,
|
2021-03-08 16:16:17 +08:00
|
|
|
}
|
|
|
|
return grpc.Creds(ta), grpc.UnaryInterceptor(grpc_auth.UnaryServerInterceptor(auther.Authenticate))
|
|
|
|
}
|
|
|
|
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 {
|
|
|
|
return grpc.WithInsecure()
|
|
|
|
}
|
|
|
|
|
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 == "" {
|
2020-09-21 06:38:59 +08:00
|
|
|
return grpc.WithInsecure()
|
|
|
|
}
|
|
|
|
|
2022-06-24 02:32:15 +08:00
|
|
|
// Initialize credential struct using reloading API.
|
|
|
|
clientOptions := pemfile.Options{
|
|
|
|
CertFile: certFileName,
|
|
|
|
KeyFile: keyFileName,
|
|
|
|
RootFile: caFileName,
|
|
|
|
RefreshDuration: credRefreshingInterval,
|
|
|
|
}
|
|
|
|
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)
|
2019-02-19 04:11:52 +08:00
|
|
|
return grpc.WithInsecure()
|
|
|
|
}
|
2022-06-24 02:32:15 +08:00
|
|
|
defer clientProvider.Close()
|
|
|
|
options := &advancedtls.ClientOptions{
|
|
|
|
VerifyPeer: func(params *advancedtls.VerificationFuncParams) (*advancedtls.VerificationResults, error) {
|
|
|
|
return &advancedtls.VerificationResults{}, nil
|
|
|
|
},
|
|
|
|
RootOptions: advancedtls.RootCertificateOptions{
|
|
|
|
RootProvider: clientProvider,
|
|
|
|
},
|
|
|
|
VType: advancedtls.CertVerification,
|
|
|
|
}
|
|
|
|
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)
|
2019-02-19 04:11:52 +08:00
|
|
|
return grpc.WithInsecure()
|
|
|
|
}
|
|
|
|
return grpc.WithTransportCredentials(ta)
|
|
|
|
}
|
2021-03-08 16:16:17 +08:00
|
|
|
|
2022-03-15 07:22:52 +08:00
|
|
|
func LoadClientTLSHTTP(clientCertFile string) *tls.Config {
|
|
|
|
clientCerts, err := ioutil.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,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-08 16:16:17 +08:00
|
|
|
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 17:42:39 +08:00
|
|
|
|
2021-03-10 17:02:13 +08: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-08 16:16:17 +08:00
|
|
|
}
|
2021-03-10 17:42:39 +08:00
|
|
|
|
|
|
|
return ctx, status.Errorf(codes.Unauthenticated, "invalid subject common name: %s", commonName)
|
2021-03-08 16:16:17 +08:00
|
|
|
}
|