123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200 |
- package common
- import (
- "crypto/tls"
- "crypto/x509"
- "crypto/x509/pkix"
- "fmt"
- "os"
- "path/filepath"
- "sync"
- "time"
- "github.com/drakkan/sftpgo/v2/logger"
- "github.com/drakkan/sftpgo/v2/util"
- )
- // CertManager defines a TLS certificate manager
- type CertManager struct {
- certPath string
- keyPath string
- configDir string
- logSender string
- sync.RWMutex
- caCertificates []string
- caRevocationLists []string
- cert *tls.Certificate
- rootCAs *x509.CertPool
- crls []*pkix.CertificateList
- }
- // Reload tries to reload certificate and CRLs
- func (m *CertManager) Reload() error {
- errCrt := m.loadCertificate()
- errCRLs := m.LoadCRLs()
- if errCrt != nil {
- return errCrt
- }
- return errCRLs
- }
- // LoadCertificate loads the configured x509 key pair
- func (m *CertManager) loadCertificate() error {
- newCert, err := tls.LoadX509KeyPair(m.certPath, m.keyPath)
- if err != nil {
- logger.Warn(m.logSender, "", "unable to load X509 key pair, cert file %#v key file %#v error: %v",
- m.certPath, m.keyPath, err)
- return err
- }
- logger.Debug(m.logSender, "", "TLS certificate %#v successfully loaded", m.certPath)
- m.Lock()
- defer m.Unlock()
- m.cert = &newCert
- return nil
- }
- // GetCertificateFunc returns the loaded certificate
- func (m *CertManager) GetCertificateFunc() func(*tls.ClientHelloInfo) (*tls.Certificate, error) {
- return func(clientHello *tls.ClientHelloInfo) (*tls.Certificate, error) {
- m.RLock()
- defer m.RUnlock()
- return m.cert, nil
- }
- }
- // IsRevoked returns true if the specified certificate has been revoked
- func (m *CertManager) IsRevoked(crt *x509.Certificate, caCrt *x509.Certificate) bool {
- m.RLock()
- defer m.RUnlock()
- if crt == nil || caCrt == nil {
- logger.Warn(m.logSender, "", "unable to verify crt %v ca crt %v", crt, caCrt)
- return len(m.crls) > 0
- }
- for _, crl := range m.crls {
- if !crl.HasExpired(time.Now()) && caCrt.CheckCRLSignature(crl) == nil {
- for _, rc := range crl.TBSCertList.RevokedCertificates {
- if rc.SerialNumber.Cmp(crt.SerialNumber) == 0 {
- return true
- }
- }
- }
- }
- return false
- }
- // LoadCRLs tries to load certificate revocation lists from the given paths
- func (m *CertManager) LoadCRLs() error {
- if len(m.caRevocationLists) == 0 {
- return nil
- }
- var crls []*pkix.CertificateList
- for _, revocationList := range m.caRevocationLists {
- if !util.IsFileInputValid(revocationList) {
- return fmt.Errorf("invalid root CA revocation list %#v", revocationList)
- }
- if revocationList != "" && !filepath.IsAbs(revocationList) {
- revocationList = filepath.Join(m.configDir, revocationList)
- }
- crlBytes, err := os.ReadFile(revocationList)
- if err != nil {
- logger.Warn(m.logSender, "unable to read revocation list %#v", revocationList)
- return err
- }
- crl, err := x509.ParseCRL(crlBytes)
- if err != nil {
- logger.Warn(m.logSender, "unable to parse revocation list %#v", revocationList)
- return err
- }
- logger.Debug(m.logSender, "", "CRL %#v successfully loaded", revocationList)
- crls = append(crls, crl)
- }
- m.Lock()
- defer m.Unlock()
- m.crls = crls
- return nil
- }
- // GetRootCAs returns the set of root certificate authorities that servers
- // use if required to verify a client certificate
- func (m *CertManager) GetRootCAs() *x509.CertPool {
- m.RLock()
- defer m.RUnlock()
- return m.rootCAs
- }
- // LoadRootCAs tries to load root CA certificate authorities from the given paths
- func (m *CertManager) LoadRootCAs() error {
- if len(m.caCertificates) == 0 {
- return nil
- }
- rootCAs := x509.NewCertPool()
- for _, rootCA := range m.caCertificates {
- if !util.IsFileInputValid(rootCA) {
- return fmt.Errorf("invalid root CA certificate %#v", rootCA)
- }
- if rootCA != "" && !filepath.IsAbs(rootCA) {
- rootCA = filepath.Join(m.configDir, rootCA)
- }
- crt, err := os.ReadFile(rootCA)
- if err != nil {
- return err
- }
- if rootCAs.AppendCertsFromPEM(crt) {
- logger.Debug(m.logSender, "", "TLS certificate authority %#v successfully loaded", rootCA)
- } else {
- err := fmt.Errorf("unable to load TLS certificate authority %#v", rootCA)
- logger.Warn(m.logSender, "", "%v", err)
- return err
- }
- }
- m.Lock()
- defer m.Unlock()
- m.rootCAs = rootCAs
- return nil
- }
- // SetCACertificates sets the root CA authorities file paths.
- // This should not be changed at runtime
- func (m *CertManager) SetCACertificates(caCertificates []string) {
- m.caCertificates = caCertificates
- }
- // SetCARevocationLists sets the CA revocation lists file paths.
- // This should not be changed at runtime
- func (m *CertManager) SetCARevocationLists(caRevocationLists []string) {
- m.caRevocationLists = caRevocationLists
- }
- // NewCertManager creates a new certificate manager
- func NewCertManager(certificateFile, certificateKeyFile, configDir, logSender string) (*CertManager, error) {
- manager := &CertManager{
- cert: nil,
- certPath: certificateFile,
- keyPath: certificateKeyFile,
- configDir: configDir,
- logSender: logSender,
- }
- err := manager.loadCertificate()
- if err != nil {
- return nil, err
- }
- return manager, nil
- }
|