123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275 |
- package tls
- import (
- "context"
- "crypto/tls"
- "net"
- "os"
- "strings"
- "time"
- "github.com/sagernet/fswatch"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/log"
- "github.com/sagernet/sing-box/option"
- "github.com/sagernet/sing/common"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/common/ntp"
- )
- var errInsecureUnused = E.New("tls: insecure unused")
- type STDServerConfig struct {
- config *tls.Config
- logger log.Logger
- acmeService adapter.SimpleLifecycle
- certificate []byte
- key []byte
- certificatePath string
- keyPath string
- echKeyPath string
- watcher *fswatch.Watcher
- }
- func (c *STDServerConfig) ServerName() string {
- return c.config.ServerName
- }
- func (c *STDServerConfig) SetServerName(serverName string) {
- c.config.ServerName = serverName
- }
- func (c *STDServerConfig) NextProtos() []string {
- if c.acmeService != nil && len(c.config.NextProtos) > 1 && c.config.NextProtos[0] == ACMETLS1Protocol {
- return c.config.NextProtos[1:]
- } else {
- return c.config.NextProtos
- }
- }
- func (c *STDServerConfig) SetNextProtos(nextProto []string) {
- if c.acmeService != nil && len(c.config.NextProtos) > 1 && c.config.NextProtos[0] == ACMETLS1Protocol {
- c.config.NextProtos = append(c.config.NextProtos[:1], nextProto...)
- } else {
- c.config.NextProtos = nextProto
- }
- }
- func (c *STDServerConfig) Config() (*STDConfig, error) {
- return c.config, nil
- }
- func (c *STDServerConfig) Client(conn net.Conn) (Conn, error) {
- return tls.Client(conn, c.config), nil
- }
- func (c *STDServerConfig) Server(conn net.Conn) (Conn, error) {
- return tls.Server(conn, c.config), nil
- }
- func (c *STDServerConfig) Clone() Config {
- return &STDServerConfig{
- config: c.config.Clone(),
- }
- }
- func (c *STDServerConfig) Start() error {
- if c.acmeService != nil {
- return c.acmeService.Start()
- } else {
- if c.certificatePath == "" && c.keyPath == "" {
- return nil
- }
- err := c.startWatcher()
- if err != nil {
- c.logger.Warn("create fsnotify watcher: ", err)
- }
- return nil
- }
- }
- func (c *STDServerConfig) startWatcher() error {
- var watchPath []string
- if c.certificatePath != "" {
- watchPath = append(watchPath, c.certificatePath)
- }
- if c.keyPath != "" {
- watchPath = append(watchPath, c.keyPath)
- }
- if c.echKeyPath != "" {
- watchPath = append(watchPath, c.echKeyPath)
- }
- watcher, err := fswatch.NewWatcher(fswatch.Options{
- Path: watchPath,
- Callback: func(path string) {
- err := c.certificateUpdated(path)
- if err != nil {
- c.logger.Error(E.Cause(err, "reload certificate"))
- }
- },
- })
- if err != nil {
- return err
- }
- err = watcher.Start()
- if err != nil {
- return err
- }
- c.watcher = watcher
- return nil
- }
- func (c *STDServerConfig) certificateUpdated(path string) error {
- if path == c.certificatePath || path == c.keyPath {
- if path == c.certificatePath {
- certificate, err := os.ReadFile(c.certificatePath)
- if err != nil {
- return E.Cause(err, "reload certificate from ", c.certificatePath)
- }
- c.certificate = certificate
- } else if path == c.keyPath {
- key, err := os.ReadFile(c.keyPath)
- if err != nil {
- return E.Cause(err, "reload key from ", c.keyPath)
- }
- c.key = key
- }
- keyPair, err := tls.X509KeyPair(c.certificate, c.key)
- if err != nil {
- return E.Cause(err, "reload key pair")
- }
- c.config.Certificates = []tls.Certificate{keyPair}
- c.logger.Info("reloaded TLS certificate")
- } else if path == c.echKeyPath {
- err := reloadECHKeys(c.echKeyPath, c.config)
- if err != nil {
- return err
- }
- c.logger.Info("reloaded ECH keys")
- }
- return nil
- }
- func (c *STDServerConfig) Close() error {
- if c.acmeService != nil {
- return c.acmeService.Close()
- }
- if c.watcher != nil {
- return c.watcher.Close()
- }
- return nil
- }
- func NewSTDServer(ctx context.Context, logger log.Logger, options option.InboundTLSOptions) (ServerConfig, error) {
- if !options.Enabled {
- return nil, nil
- }
- var tlsConfig *tls.Config
- var acmeService adapter.SimpleLifecycle
- var err error
- if options.ACME != nil && len(options.ACME.Domain) > 0 {
- //nolint:staticcheck
- tlsConfig, acmeService, err = startACME(ctx, logger, common.PtrValueOrDefault(options.ACME))
- if err != nil {
- return nil, err
- }
- if options.Insecure {
- return nil, errInsecureUnused
- }
- } else {
- tlsConfig = &tls.Config{}
- }
- tlsConfig.Time = ntp.TimeFuncFromContext(ctx)
- if options.ServerName != "" {
- tlsConfig.ServerName = options.ServerName
- }
- if len(options.ALPN) > 0 {
- tlsConfig.NextProtos = append(options.ALPN, tlsConfig.NextProtos...)
- }
- if options.MinVersion != "" {
- minVersion, err := ParseTLSVersion(options.MinVersion)
- if err != nil {
- return nil, E.Cause(err, "parse min_version")
- }
- tlsConfig.MinVersion = minVersion
- }
- if options.MaxVersion != "" {
- maxVersion, err := ParseTLSVersion(options.MaxVersion)
- if err != nil {
- return nil, E.Cause(err, "parse max_version")
- }
- tlsConfig.MaxVersion = maxVersion
- }
- if options.CipherSuites != nil {
- find:
- for _, cipherSuite := range options.CipherSuites {
- for _, tlsCipherSuite := range tls.CipherSuites() {
- if cipherSuite == tlsCipherSuite.Name {
- tlsConfig.CipherSuites = append(tlsConfig.CipherSuites, tlsCipherSuite.ID)
- continue find
- }
- }
- return nil, E.New("unknown cipher_suite: ", cipherSuite)
- }
- }
- var certificate []byte
- var key []byte
- if acmeService == nil {
- if len(options.Certificate) > 0 {
- certificate = []byte(strings.Join(options.Certificate, "\n"))
- } else if options.CertificatePath != "" {
- content, err := os.ReadFile(options.CertificatePath)
- if err != nil {
- return nil, E.Cause(err, "read certificate")
- }
- certificate = content
- }
- if len(options.Key) > 0 {
- key = []byte(strings.Join(options.Key, "\n"))
- } else if options.KeyPath != "" {
- content, err := os.ReadFile(options.KeyPath)
- if err != nil {
- return nil, E.Cause(err, "read key")
- }
- key = content
- }
- if certificate == nil && key == nil && options.Insecure {
- timeFunc := ntp.TimeFuncFromContext(ctx)
- if timeFunc == nil {
- timeFunc = time.Now
- }
- tlsConfig.GetCertificate = func(info *tls.ClientHelloInfo) (*tls.Certificate, error) {
- return GenerateKeyPair(nil, nil, timeFunc, info.ServerName)
- }
- } else {
- if certificate == nil {
- return nil, E.New("missing certificate")
- } else if key == nil {
- return nil, E.New("missing key")
- }
- keyPair, err := tls.X509KeyPair(certificate, key)
- if err != nil {
- return nil, E.Cause(err, "parse x509 key pair")
- }
- tlsConfig.Certificates = []tls.Certificate{keyPair}
- }
- }
- var echKeyPath string
- if options.ECH != nil && options.ECH.Enabled {
- err = parseECHServerConfig(ctx, options, tlsConfig, &echKeyPath)
- if err != nil {
- return nil, err
- }
- }
- return &STDServerConfig{
- config: tlsConfig,
- logger: logger,
- acmeService: acmeService,
- certificate: certificate,
- key: key,
- certificatePath: options.CertificatePath,
- keyPath: options.KeyPath,
- echKeyPath: echKeyPath,
- }, nil
- }
|