123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243 |
- //go:build with_ech
- package tls
- import (
- "context"
- "crypto/tls"
- "crypto/x509"
- "encoding/base64"
- "encoding/pem"
- "net"
- "net/netip"
- "os"
- "strings"
- cftls "github.com/sagernet/cloudflare-tls"
- "github.com/sagernet/sing-box/adapter"
- "github.com/sagernet/sing-box/dns"
- "github.com/sagernet/sing-box/option"
- E "github.com/sagernet/sing/common/exceptions"
- "github.com/sagernet/sing/common/ntp"
- "github.com/sagernet/sing/service"
- mDNS "github.com/miekg/dns"
- )
- type echClientConfig struct {
- config *cftls.Config
- }
- func (c *echClientConfig) ServerName() string {
- return c.config.ServerName
- }
- func (c *echClientConfig) SetServerName(serverName string) {
- c.config.ServerName = serverName
- }
- func (c *echClientConfig) NextProtos() []string {
- return c.config.NextProtos
- }
- func (c *echClientConfig) SetNextProtos(nextProto []string) {
- c.config.NextProtos = nextProto
- }
- func (c *echClientConfig) Config() (*STDConfig, error) {
- return nil, E.New("unsupported usage for ECH")
- }
- func (c *echClientConfig) Client(conn net.Conn) (Conn, error) {
- return &echConnWrapper{cftls.Client(conn, c.config)}, nil
- }
- func (c *echClientConfig) Clone() Config {
- return &echClientConfig{
- config: c.config.Clone(),
- }
- }
- type echConnWrapper struct {
- *cftls.Conn
- }
- func (c *echConnWrapper) ConnectionState() tls.ConnectionState {
- state := c.Conn.ConnectionState()
- //nolint:staticcheck
- return tls.ConnectionState{
- Version: state.Version,
- HandshakeComplete: state.HandshakeComplete,
- DidResume: state.DidResume,
- CipherSuite: state.CipherSuite,
- NegotiatedProtocol: state.NegotiatedProtocol,
- NegotiatedProtocolIsMutual: state.NegotiatedProtocolIsMutual,
- ServerName: state.ServerName,
- PeerCertificates: state.PeerCertificates,
- VerifiedChains: state.VerifiedChains,
- SignedCertificateTimestamps: state.SignedCertificateTimestamps,
- OCSPResponse: state.OCSPResponse,
- TLSUnique: state.TLSUnique,
- }
- }
- func (c *echConnWrapper) Upstream() any {
- return c.Conn
- }
- func NewECHClient(ctx context.Context, serverAddress string, options option.OutboundTLSOptions) (Config, error) {
- var serverName string
- if options.ServerName != "" {
- serverName = options.ServerName
- } else if serverAddress != "" {
- if _, err := netip.ParseAddr(serverName); err != nil {
- serverName = serverAddress
- }
- }
- if serverName == "" && !options.Insecure {
- return nil, E.New("missing server_name or insecure=true")
- }
- var tlsConfig cftls.Config
- tlsConfig.Time = ntp.TimeFuncFromContext(ctx)
- if options.DisableSNI {
- tlsConfig.ServerName = "127.0.0.1"
- } else {
- tlsConfig.ServerName = serverName
- }
- if options.Insecure {
- tlsConfig.InsecureSkipVerify = options.Insecure
- } else if options.DisableSNI {
- tlsConfig.InsecureSkipVerify = true
- tlsConfig.VerifyConnection = func(state cftls.ConnectionState) error {
- verifyOptions := x509.VerifyOptions{
- DNSName: serverName,
- Intermediates: x509.NewCertPool(),
- }
- for _, cert := range state.PeerCertificates[1:] {
- verifyOptions.Intermediates.AddCert(cert)
- }
- _, 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 cftls.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
- }
- // ECH Config
- tlsConfig.ECHEnabled = true
- tlsConfig.PQSignatureSchemesEnabled = options.ECH.PQSignatureSchemesEnabled
- tlsConfig.DynamicRecordSizingDisabled = options.ECH.DynamicRecordSizingDisabled
- var echConfig []byte
- if len(options.ECH.Config) > 0 {
- echConfig = []byte(strings.Join(options.ECH.Config, "\n"))
- } else if options.ECH.ConfigPath != "" {
- content, err := os.ReadFile(options.ECH.ConfigPath)
- if err != nil {
- return nil, E.Cause(err, "read ECH config")
- }
- echConfig = content
- }
- if len(echConfig) > 0 {
- block, rest := pem.Decode(echConfig)
- if block == nil || block.Type != "ECH CONFIGS" || len(rest) > 0 {
- return nil, E.New("invalid ECH configs pem")
- }
- echConfigs, err := cftls.UnmarshalECHConfigs(block.Bytes)
- if err != nil {
- return nil, E.Cause(err, "parse ECH configs")
- }
- tlsConfig.ClientECHConfigs = echConfigs
- } else {
- tlsConfig.GetClientECHConfigs = fetchECHClientConfig(ctx)
- }
- return &echClientConfig{&tlsConfig}, nil
- }
- func fetchECHClientConfig(ctx context.Context) func(_ context.Context, serverName string) ([]cftls.ECHConfig, error) {
- return func(_ context.Context, serverName string) ([]cftls.ECHConfig, error) {
- message := &mDNS.Msg{
- MsgHdr: mDNS.MsgHdr{
- RecursionDesired: true,
- },
- Question: []mDNS.Question{
- {
- Name: serverName + ".",
- Qtype: mDNS.TypeHTTPS,
- Qclass: mDNS.ClassINET,
- },
- },
- }
- response, err := service.FromContext[adapter.DNSRouter](ctx).Exchange(ctx, message, adapter.DNSQueryOptions{})
- if err != nil {
- return nil, err
- }
- if response.Rcode != mDNS.RcodeSuccess {
- return nil, dns.RCodeError(response.Rcode)
- }
- for _, rr := range response.Answer {
- switch resource := rr.(type) {
- case *mDNS.HTTPS:
- for _, value := range resource.Value {
- if value.Key().String() == "ech" {
- echConfig, err := base64.StdEncoding.DecodeString(value.String())
- if err != nil {
- return nil, E.Cause(err, "decode ECH config")
- }
- return cftls.UnmarshalECHConfigs(echConfig)
- }
- }
- default:
- return nil, E.New("unknown resource record type: ", resource.Header().Rrtype)
- }
- }
- return nil, E.New("no ECH config found")
- }
- }
|