2022-08-31 06:21:53 +00:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
"os"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
|
|
|
"github.com/sagernet/sing-box/common/dialer"
|
2022-09-09 10:45:10 +00:00
|
|
|
"github.com/sagernet/sing-box/common/tls"
|
2022-08-31 06:21:53 +00:00
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
2023-02-20 05:53:06 +00:00
|
|
|
"github.com/sagernet/sing-shadowtls"
|
2022-08-31 06:21:53 +00:00
|
|
|
"github.com/sagernet/sing/common"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
|
|
|
)
|
|
|
|
|
|
|
|
var _ adapter.Outbound = (*ShadowTLS)(nil)
|
|
|
|
|
|
|
|
type ShadowTLS struct {
|
|
|
|
myOutboundAdapter
|
2023-02-20 05:53:06 +00:00
|
|
|
client *shadowtls.Client
|
2022-08-31 06:21:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewShadowTLS(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.ShadowTLSOutboundOptions) (*ShadowTLS, error) {
|
|
|
|
outbound := &ShadowTLS{
|
|
|
|
myOutboundAdapter: myOutboundAdapter{
|
2023-06-13 14:38:05 +00:00
|
|
|
protocol: C.TypeShadowTLS,
|
|
|
|
network: []string{N.NetworkTCP},
|
|
|
|
router: router,
|
|
|
|
logger: logger,
|
|
|
|
tag: tag,
|
|
|
|
dependencies: withDialerDependency(options.DialerOptions),
|
2022-08-31 06:21:53 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
if options.TLS == nil || !options.TLS.Enabled {
|
|
|
|
return nil, C.ErrTLSRequired
|
|
|
|
}
|
2023-03-11 02:12:46 +00:00
|
|
|
|
|
|
|
if options.Version == 0 {
|
|
|
|
options.Version = 1
|
|
|
|
}
|
|
|
|
|
2023-02-20 05:53:06 +00:00
|
|
|
if options.Version == 1 {
|
2022-10-06 14:47:11 +00:00
|
|
|
options.TLS.MinVersion = "1.2"
|
|
|
|
options.TLS.MaxVersion = "1.2"
|
|
|
|
}
|
2023-08-29 05:43:42 +00:00
|
|
|
tlsConfig, err := tls.NewClient(ctx, options.Server, common.PtrValueOrDefault(options.TLS))
|
2023-02-20 05:53:06 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
var tlsHandshakeFunc shadowtls.TLSHandshakeFunc
|
|
|
|
switch options.Version {
|
|
|
|
case 1, 2:
|
|
|
|
tlsHandshakeFunc = func(ctx context.Context, conn net.Conn, _ shadowtls.TLSSessionIDGeneratorFunc) error {
|
|
|
|
return common.Error(tls.ClientHandshake(ctx, conn, tlsConfig))
|
|
|
|
}
|
|
|
|
case 3:
|
2023-02-28 03:30:46 +00:00
|
|
|
if idConfig, loaded := tlsConfig.(tls.WithSessionIDGenerator); loaded {
|
2023-02-20 06:08:13 +00:00
|
|
|
tlsHandshakeFunc = func(ctx context.Context, conn net.Conn, sessionIDGenerator shadowtls.TLSSessionIDGeneratorFunc) error {
|
|
|
|
idConfig.SetSessionIDGenerator(sessionIDGenerator)
|
|
|
|
return common.Error(tls.ClientHandshake(ctx, conn, tlsConfig))
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
stdTLSConfig, err := tlsConfig.Config()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
tlsHandshakeFunc = shadowtls.DefaultTLSHandshakeFunc(options.Password, stdTLSConfig)
|
2023-02-20 05:53:06 +00:00
|
|
|
}
|
2023-02-18 06:55:47 +00:00
|
|
|
}
|
2023-08-08 08:14:03 +00:00
|
|
|
outboundDialer, err := dialer.New(router, options.DialerOptions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-02-20 05:53:06 +00:00
|
|
|
client, err := shadowtls.NewClient(shadowtls.ClientConfig{
|
|
|
|
Version: options.Version,
|
|
|
|
Password: options.Password,
|
|
|
|
Server: options.ServerOptions.Build(),
|
2023-08-08 08:14:03 +00:00
|
|
|
Dialer: outboundDialer,
|
2023-02-20 05:53:06 +00:00
|
|
|
TLSHandshake: tlsHandshakeFunc,
|
|
|
|
Logger: logger,
|
|
|
|
})
|
2022-08-31 06:21:53 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-02-20 05:53:06 +00:00
|
|
|
outbound.client = client
|
2022-08-31 06:21:53 +00:00
|
|
|
return outbound, nil
|
|
|
|
}
|
|
|
|
|
2023-03-29 02:29:52 +00:00
|
|
|
func (h *ShadowTLS) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
|
|
ctx, metadata := adapter.AppendContext(ctx)
|
|
|
|
metadata.Outbound = h.tag
|
|
|
|
metadata.Destination = destination
|
2022-08-31 06:21:53 +00:00
|
|
|
switch N.NetworkName(network) {
|
|
|
|
case N.NetworkTCP:
|
2023-03-29 02:29:52 +00:00
|
|
|
return h.client.DialContext(ctx)
|
2022-08-31 06:21:53 +00:00
|
|
|
default:
|
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-29 02:29:52 +00:00
|
|
|
func (h *ShadowTLS) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
2022-08-31 06:21:53 +00:00
|
|
|
return nil, os.ErrInvalid
|
|
|
|
}
|
|
|
|
|
2023-03-29 02:29:52 +00:00
|
|
|
func (h *ShadowTLS) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
|
|
|
|
return NewConnection(ctx, h, conn, metadata)
|
2022-08-31 06:21:53 +00:00
|
|
|
}
|
|
|
|
|
2023-03-29 02:29:52 +00:00
|
|
|
func (h *ShadowTLS) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
|
2022-08-31 06:21:53 +00:00
|
|
|
return os.ErrInvalid
|
|
|
|
}
|