123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177 |
- package tls
- import (
- "context"
- "crypto/tls"
- "crypto/x509"
- "net"
- "os"
- "strings"
- "time"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/common/tlsfragment"
- C "github.com/sagernet/sing-box/constant"
- "github.com/sagernet/sing-box/option"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/common/logger"
- "github.com/sagernet/sing/common/ntp"
- )
- type STDClientConfig struct {
- ctx context.Context
- config *tls.Config
- fragment bool
- fragmentFallbackDelay time.Duration
- recordFragment bool
- }
- func (c *STDClientConfig) ServerName() string {
- return c.config.ServerName
- }
- func (c *STDClientConfig) SetServerName(serverName string) {
- c.config.ServerName = serverName
- }
- func (c *STDClientConfig) NextProtos() []string {
- return c.config.NextProtos
- }
- func (c *STDClientConfig) SetNextProtos(nextProto []string) {
- c.config.NextProtos = nextProto
- }
- func (c *STDClientConfig) STDConfig() (*STDConfig, error) {
- return c.config, nil
- }
- func (c *STDClientConfig) Client(conn net.Conn) (Conn, error) {
- if c.recordFragment {
- conn = tf.NewConn(conn, c.ctx, c.fragment, c.recordFragment, c.fragmentFallbackDelay)
- }
- return tls.Client(conn, c.config), nil
- }
- func (c *STDClientConfig) Clone() Config {
- return &STDClientConfig{
- ctx: c.ctx,
- config: c.config.Clone(),
- fragment: c.fragment,
- fragmentFallbackDelay: c.fragmentFallbackDelay,
- recordFragment: c.recordFragment,
- }
- }
- func (c *STDClientConfig) ECHConfigList() []byte {
- return c.config.EncryptedClientHelloConfigList
- }
- func (c *STDClientConfig) SetECHConfigList(EncryptedClientHelloConfigList []byte) {
- c.config.EncryptedClientHelloConfigList = EncryptedClientHelloConfigList
- }
- func NewSTDClient(ctx context.Context, logger logger.ContextLogger, serverAddress string, options option.OutboundTLSOptions) (Config, error) {
- var serverName string
- if options.ServerName != "" {
- serverName = options.ServerName
- } else if serverAddress != "" {
- serverName = serverAddress
- }
- if serverName == "" && !options.Insecure {
- return nil, E.New("missing server_name or insecure=true")
- }
- var tlsConfig tls.Config
- tlsConfig.Time = ntp.TimeFuncFromContext(ctx)
- tlsConfig.RootCAs = adapter.RootPoolFromContext(ctx)
- if !options.DisableSNI {
- tlsConfig.ServerName = serverName
- }
- if options.Insecure {
- tlsConfig.InsecureSkipVerify = options.Insecure
- } else if options.DisableSNI {
- tlsConfig.InsecureSkipVerify = true
- tlsConfig.VerifyConnection = func(state tls.ConnectionState) error {
- verifyOptions := x509.VerifyOptions{
- Roots: tlsConfig.RootCAs,
- DNSName: serverName,
- Intermediates: x509.NewCertPool(),
- }
- for _, cert := range state.PeerCertificates[1:] {
- verifyOptions.Intermediates.AddCert(cert)
- }
- if tlsConfig.Time != nil {
- verifyOptions.CurrentTime = tlsConfig.Time()
- }
- _, err := state.PeerCertificates[0].Verify(verifyOptions)
- return err
- }
- }
- if len(options.ALPN) > 0 {
- tlsConfig.NextProtos = options.ALPN
- }
- 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
- 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(certificate) > 0 {
- certPool := x509.NewCertPool()
- if !certPool.AppendCertsFromPEM(certificate) {
- return nil, E.New("failed to parse certificate:\n\n", certificate)
- }
- tlsConfig.RootCAs = certPool
- }
- var config Config = &STDClientConfig{ctx, &tlsConfig, options.Fragment, time.Duration(options.FragmentFallbackDelay), options.RecordFragment}
- if options.ECH != nil && options.ECH.Enabled {
- var err error
- config, err = parseECHClientConfig(ctx, config.(ECHCapableConfig), options)
- if err != nil {
- return nil, err
- }
- }
- if options.KernelRx || options.KernelTx {
- if !C.IsLinux {
- return nil, E.New("kTLS is only supported on Linux")
- }
- config = &KTLSClientConfig{
- Config: config,
- logger: logger,
- kernelTx: options.KernelTx,
- kernelRx: options.KernelRx,
- }
- }
- return config, nil
- }
|