2022-07-18 12:40:14 +00:00
|
|
|
package dialer
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"crypto/x509"
|
|
|
|
"net"
|
|
|
|
"net/netip"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
)
|
|
|
|
|
|
|
|
type TLSDialer struct {
|
|
|
|
dialer N.Dialer
|
|
|
|
config *tls.Config
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewTLS(dialer N.Dialer, serverAddress string, options option.OutboundTLSOptions) (N.Dialer, error) {
|
|
|
|
if !options.Enabled {
|
|
|
|
return dialer, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
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 tls.Config
|
|
|
|
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 tls.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
|
|
|
|
}
|
|
|
|
}
|
2022-07-25 00:14:09 +00:00
|
|
|
if len(options.ALPN) > 0 {
|
|
|
|
tlsConfig.NextProtos = options.ALPN
|
|
|
|
}
|
|
|
|
if options.MinVersion != "" {
|
|
|
|
minVersion, err := option.ParseTLSVersion(options.MinVersion)
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "parse min_version")
|
|
|
|
}
|
|
|
|
tlsConfig.MinVersion = minVersion
|
|
|
|
}
|
|
|
|
if options.MaxVersion != "" {
|
|
|
|
maxVersion, err := option.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 options.Certificate != "" {
|
|
|
|
certificate = []byte(options.Certificate)
|
|
|
|
} 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 {
|
|
|
|
var certPool *x509.CertPool
|
|
|
|
if options.DisableSystemRoot {
|
|
|
|
certPool = x509.NewCertPool()
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
certPool, err = x509.SystemCertPool()
|
|
|
|
if err != nil {
|
|
|
|
return nil, E.Cause(err, "load system cert pool")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if !certPool.AppendCertsFromPEM([]byte(options.Certificate)) {
|
|
|
|
return nil, E.New("failed to parse certificate:\n\n", options.Certificate)
|
|
|
|
}
|
|
|
|
tlsConfig.RootCAs = certPool
|
|
|
|
}
|
2022-07-18 12:40:14 +00:00
|
|
|
return &TLSDialer{
|
|
|
|
dialer: dialer,
|
|
|
|
config: &tlsConfig,
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *TLSDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
|
|
if network != C.NetworkTCP {
|
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|
|
|
|
conn, err := d.dialer.DialContext(ctx, network, destination)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tlsConn := tls.Client(conn, d.config)
|
2022-07-25 14:02:39 +00:00
|
|
|
ctx, cancel := context.WithTimeout(ctx, C.TCPTimeout)
|
2022-07-18 12:40:14 +00:00
|
|
|
defer cancel()
|
|
|
|
err = tlsConn.HandshakeContext(ctx)
|
|
|
|
return tlsConn, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *TLSDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|