// Copyright 2019 NetApp, Inc. All Rights Reserved. package rest import ( "context" "crypto/tls" "crypto/x509" "fmt" "io/ioutil" "net/http" log "github.com/sirupsen/logrus" "github.com/netapp/trident/config" "github.com/netapp/trident/core" ) type APIServerHTTPS struct { server *http.Server caCertFile string serverCertFile string serverKeyFile string } func NewHTTPSServer( p core.Orchestrator, address, port, caCertFile, serverCertFile, serverKeyFile string, ) (*APIServerHTTPS, error) { orchestrator = p apiServer := &APIServerHTTPS{ server: &http.Server{ Addr: fmt.Sprintf("%s:%s", address, port), Handler: &tlsAuthHandler{handler: NewRouter()}, TLSConfig: &tls.Config{ClientAuth: tls.RequireAndVerifyClientCert}, ReadTimeout: config.HTTPTimeout, WriteTimeout: config.HTTPTimeout, }, caCertFile: caCertFile, serverCertFile: serverCertFile, serverKeyFile: serverKeyFile, } if caCertFile != "" { caCert, err := ioutil.ReadFile(caCertFile) if err != nil { return nil, fmt.Errorf("could not read CA certificate file: %v", err) } caCertPool := x509.NewCertPool() caCertPool.AppendCertsFromPEM(caCert) apiServer.server.TLSConfig.ClientCAs = caCertPool } log.WithField("address", apiServer.server.Addr).Info("Initializing HTTPS REST frontend.") return apiServer, nil } func (s *APIServerHTTPS) Activate() error { go func() { log.WithField("address", s.server.Addr).Infof("Activating HTTPS REST frontend.") err := s.server.ListenAndServeTLS(s.serverCertFile, s.serverKeyFile) if err != nil { log.Fatal(err) } }() return nil } func (s *APIServerHTTPS) Deactivate() error { log.WithField("address", s.server.Addr).Infof("Deactivating HTTPS REST frontend.") ctx, cancel := context.WithTimeout(context.Background(), config.HTTPTimeout) defer cancel() return s.server.Shutdown(ctx) } func (s *APIServerHTTPS) GetName() string { return "HTTPS REST" } func (s *APIServerHTTPS) Version() string { return config.OrchestratorAPIVersion } type tlsAuthHandler struct { handler http.Handler } func (h *tlsAuthHandler) ServeHTTP(w http.ResponseWriter, r *http.Request) { // Service requests from Trident nodes with a valid client certificate if len(r.TLS.PeerCertificates) > 0 && r.TLS.PeerCertificates[0].Subject.CommonName == config.ClientCertName { log.WithField("peerCert", config.ClientCertName).Debug("Authenticated by HTTPS REST frontend.") h.handler.ServeHTTP(w, r) } else { w.Header().Set("WWW-Authenticate", fmt.Sprintf("Basic realm=\"%s\"", config.OrchestratorName)) w.WriteHeader(http.StatusUnauthorized) } }