mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-15 01:09:20 +02:00
111 lines
3.6 KiB
Go
111 lines
3.6 KiB
Go
package shadowtls
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"github.com/sagernet/sing-shadowtls"
|
|
sing_common "github.com/sagernet/sing/common"
|
|
utls "github.com/sagernet/utls"
|
|
"github.com/xtls/xray-core/common"
|
|
"github.com/xtls/xray-core/common/net"
|
|
"github.com/xtls/xray-core/common/session"
|
|
"github.com/xtls/xray-core/common/singbridge"
|
|
"github.com/xtls/xray-core/transport"
|
|
"github.com/xtls/xray-core/transport/internet"
|
|
internet_tls "github.com/xtls/xray-core/transport/internet/tls"
|
|
)
|
|
|
|
func init() {
|
|
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
return NewClient(ctx, config.(*ClientConfig))
|
|
}))
|
|
}
|
|
|
|
type Outbound struct {
|
|
ctx context.Context
|
|
clientConfig shadowtls.ClientConfig
|
|
}
|
|
|
|
func NewClient(ctx context.Context, config *ClientConfig) (*Outbound, error) {
|
|
return &Outbound{
|
|
ctx: ctx,
|
|
clientConfig: shadowtls.ClientConfig{
|
|
Version: int(config.Version),
|
|
Password: config.Password,
|
|
Server: singbridge.ToSocksaddr(net.Destination{
|
|
Address: config.Address.AsAddress(),
|
|
Port: net.Port(config.Port),
|
|
}),
|
|
Logger: singbridge.NewLogger(newError),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
func (o *Outbound) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
|
|
var inboundConn net.Conn
|
|
inbound := session.InboundFromContext(ctx)
|
|
if inbound != nil {
|
|
inboundConn = inbound.Conn
|
|
}
|
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
if outbound == nil || !outbound.Target.IsValid() {
|
|
return newError("target not specified")
|
|
}
|
|
destination := outbound.Target
|
|
|
|
if destination.Network != net.Network_TCP {
|
|
return newError("only TCP is supported")
|
|
}
|
|
|
|
newError("tunneling request to ", destination, " via ", o.clientConfig.Server).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
var client *shadowtls.Client
|
|
clientConfig := o.clientConfig
|
|
clientConfig.Dialer = singbridge.NewTLSDialer(dialer, func(conn net.Conn, xrayConfig *internet_tls.Config, config *tls.Config) net.Conn {
|
|
if fingerprint := GetFingerprint(xrayConfig.Fingerprint); fingerprint != nil {
|
|
client.SetHandshakeFunc(uTLSHandshakeFunc(config, fingerprint))
|
|
} else {
|
|
client.SetHandshakeFunc(shadowtls.DefaultTLSHandshakeFunc(clientConfig.Password, config))
|
|
}
|
|
return conn
|
|
})
|
|
var err error
|
|
client, err = shadowtls.NewClient(clientConfig)
|
|
if err != nil {
|
|
return newError("failed to create client").Base(err)
|
|
}
|
|
|
|
conn, err := client.DialContext(ctx)
|
|
if err != nil {
|
|
return newError("failed to connect to server").Base(err)
|
|
}
|
|
|
|
return singbridge.CopyConn(ctx, inboundConn, link, conn)
|
|
}
|
|
|
|
func uTLSHandshakeFunc(config *tls.Config, clientHelloID *utls.ClientHelloID) shadowtls.TLSHandshakeFunc {
|
|
return func(ctx context.Context, conn net.Conn, sessionIDGenerator shadowtls.TLSSessionIDGeneratorFunc) error {
|
|
tlsConfig := &utls.Config{
|
|
Rand: config.Rand,
|
|
Time: config.Time,
|
|
VerifyPeerCertificate: config.VerifyPeerCertificate,
|
|
RootCAs: config.RootCAs,
|
|
NextProtos: config.NextProtos,
|
|
ServerName: config.ServerName,
|
|
InsecureSkipVerify: config.InsecureSkipVerify,
|
|
CipherSuites: config.CipherSuites,
|
|
MinVersion: config.MinVersion,
|
|
MaxVersion: config.MaxVersion,
|
|
CurvePreferences: sing_common.Map(config.CurvePreferences, func(it tls.CurveID) utls.CurveID {
|
|
return utls.CurveID(it)
|
|
}),
|
|
SessionTicketsDisabled: config.SessionTicketsDisabled,
|
|
Renegotiation: utls.RenegotiationSupport(config.Renegotiation),
|
|
SessionIDGenerator: sessionIDGenerator,
|
|
}
|
|
tlsConn := utls.UClient(conn, tlsConfig, *clientHelloID)
|
|
return tlsConn.HandshakeContext(ctx)
|
|
}
|
|
}
|