mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
67 lines
1.6 KiB
Go
67 lines
1.6 KiB
Go
package dialer
|
|
|
|
import (
|
|
"context"
|
|
"crypto/tls"
|
|
"net"
|
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
N "github.com/sagernet/sing/common/network"
|
|
"github.com/sagernet/sing/common/uot"
|
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
"github.com/sagernet/sing-box/option"
|
|
)
|
|
|
|
var _ N.Dialer = (*overrideDialer)(nil)
|
|
|
|
type overrideDialer struct {
|
|
upstream N.Dialer
|
|
tlsEnabled bool
|
|
tlsConfig tls.Config
|
|
uotEnabled bool
|
|
}
|
|
|
|
func newOverride(upstream N.Dialer, options option.OverrideStreamOptions) N.Dialer {
|
|
return &overrideDialer{
|
|
upstream,
|
|
options.TLS,
|
|
tls.Config{
|
|
ServerName: options.TLSServerName,
|
|
InsecureSkipVerify: options.TLSInsecure,
|
|
},
|
|
options.UDPOverTCP,
|
|
}
|
|
}
|
|
|
|
func (d *overrideDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
|
switch network {
|
|
case C.NetworkTCP:
|
|
conn, err := d.upstream.DialContext(ctx, C.NetworkTCP, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return tls.Client(conn, &d.tlsConfig), nil
|
|
case C.NetworkUDP:
|
|
if d.uotEnabled {
|
|
tcpConn, err := d.upstream.DialContext(ctx, C.NetworkTCP, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return uot.NewClientConn(tcpConn), nil
|
|
}
|
|
}
|
|
return d.upstream.DialContext(ctx, network, destination)
|
|
}
|
|
|
|
func (d *overrideDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
|
if d.uotEnabled {
|
|
tcpConn, err := d.upstream.DialContext(ctx, C.NetworkTCP, destination)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return uot.NewClientConn(tcpConn), nil
|
|
}
|
|
return d.upstream.ListenPacket(ctx, destination)
|
|
}
|