2022-07-03 05:14:49 +00:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"net"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/adapter"
|
2022-07-07 13:47:21 +00:00
|
|
|
"github.com/sagernet/sing-box/common/dialer"
|
2022-07-03 05:14:49 +00:00
|
|
|
C "github.com/sagernet/sing-box/constant"
|
|
|
|
"github.com/sagernet/sing-box/log"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
2023-10-08 14:11:03 +00:00
|
|
|
"github.com/sagernet/sing-dns"
|
2023-03-17 04:24:29 +00:00
|
|
|
"github.com/sagernet/sing/common"
|
2022-07-29 16:29:22 +00:00
|
|
|
E "github.com/sagernet/sing/common/exceptions"
|
2022-07-08 15:03:57 +00:00
|
|
|
M "github.com/sagernet/sing/common/metadata"
|
|
|
|
N "github.com/sagernet/sing/common/network"
|
2022-08-12 09:55:52 +00:00
|
|
|
"github.com/sagernet/sing/common/uot"
|
2022-07-08 15:03:57 +00:00
|
|
|
"github.com/sagernet/sing/protocol/socks"
|
2022-07-03 05:14:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var _ adapter.Outbound = (*Socks)(nil)
|
|
|
|
|
|
|
|
type Socks struct {
|
|
|
|
myOutboundAdapter
|
2023-03-17 04:24:29 +00:00
|
|
|
client *socks.Client
|
|
|
|
resolve bool
|
|
|
|
uotClient *uot.Client
|
2022-07-03 05:14:49 +00:00
|
|
|
}
|
|
|
|
|
2022-07-12 07:17:29 +00:00
|
|
|
func NewSocks(router adapter.Router, logger log.ContextLogger, tag string, options option.SocksOutboundOptions) (*Socks, error) {
|
2022-07-03 05:14:49 +00:00
|
|
|
var version socks.Version
|
|
|
|
var err error
|
|
|
|
if options.Version != "" {
|
|
|
|
version, err = socks.ParseVersion(options.Version)
|
|
|
|
} else {
|
|
|
|
version = socks.Version5
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-08-08 08:14:03 +00:00
|
|
|
outboundDialer, err := dialer.New(router, options.DialerOptions)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-03-15 05:34:02 +00:00
|
|
|
outbound := &Socks{
|
|
|
|
myOutboundAdapter: myOutboundAdapter{
|
2023-08-04 09:13:46 +00:00
|
|
|
protocol: C.TypeSOCKS,
|
2023-06-13 14:38:05 +00:00
|
|
|
network: options.Network.Build(),
|
|
|
|
router: router,
|
|
|
|
logger: logger,
|
|
|
|
tag: tag,
|
|
|
|
dependencies: withDialerDependency(options.DialerOptions),
|
2022-07-03 05:14:49 +00:00
|
|
|
},
|
2023-08-08 08:14:03 +00:00
|
|
|
client: socks.NewClient(outboundDialer, options.ServerOptions.Build(), version, options.Username, options.Password),
|
2023-03-15 05:34:02 +00:00
|
|
|
resolve: version == socks.Version4,
|
|
|
|
}
|
2023-11-08 04:09:22 +00:00
|
|
|
uotOptions := common.PtrValueOrDefault(options.UDPOverTCP)
|
2023-03-17 04:24:29 +00:00
|
|
|
if uotOptions.Enabled {
|
|
|
|
outbound.uotClient = &uot.Client{
|
|
|
|
Dialer: outbound.client,
|
|
|
|
Version: uotOptions.Version,
|
|
|
|
}
|
2023-03-15 05:34:02 +00:00
|
|
|
}
|
|
|
|
return outbound, nil
|
2022-07-03 05:14:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Socks) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
|
2022-07-07 13:47:21 +00:00
|
|
|
ctx, metadata := adapter.AppendContext(ctx)
|
|
|
|
metadata.Outbound = h.tag
|
2022-07-07 15:36:32 +00:00
|
|
|
metadata.Destination = destination
|
2022-07-29 16:29:22 +00:00
|
|
|
switch N.NetworkName(network) {
|
|
|
|
case N.NetworkTCP:
|
2022-07-12 07:17:29 +00:00
|
|
|
h.logger.InfoContext(ctx, "outbound connection to ", destination)
|
2022-07-29 16:29:22 +00:00
|
|
|
case N.NetworkUDP:
|
2023-03-17 04:24:29 +00:00
|
|
|
if h.uotClient != nil {
|
|
|
|
h.logger.InfoContext(ctx, "outbound UoT connect packet connection to ", destination)
|
|
|
|
return h.uotClient.DialContext(ctx, network, destination)
|
2022-08-12 09:55:52 +00:00
|
|
|
}
|
2022-07-12 07:17:29 +00:00
|
|
|
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
|
2022-07-03 05:14:49 +00:00
|
|
|
default:
|
2022-07-29 16:29:22 +00:00
|
|
|
return nil, E.Extend(N.ErrUnknownNetwork, network)
|
2022-07-03 05:14:49 +00:00
|
|
|
}
|
2022-09-25 06:42:39 +00:00
|
|
|
if h.resolve && destination.IsFqdn() {
|
2023-09-06 11:13:39 +00:00
|
|
|
destinationAddresses, err := h.router.LookupDefault(ctx, destination.Fqdn)
|
2022-09-12 03:33:38 +00:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-09-06 11:13:39 +00:00
|
|
|
return N.DialSerial(ctx, h.client, network, destination, destinationAddresses)
|
2022-09-12 03:33:38 +00:00
|
|
|
}
|
2022-07-03 05:14:49 +00:00
|
|
|
return h.client.DialContext(ctx, network, destination)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (h *Socks) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
|
2022-07-07 13:47:21 +00:00
|
|
|
ctx, metadata := adapter.AppendContext(ctx)
|
|
|
|
metadata.Outbound = h.tag
|
2022-07-07 15:36:32 +00:00
|
|
|
metadata.Destination = destination
|
2023-03-17 04:24:29 +00:00
|
|
|
if h.uotClient != nil {
|
2022-08-12 09:55:52 +00:00
|
|
|
h.logger.InfoContext(ctx, "outbound UoT packet connection to ", destination)
|
2023-03-17 04:24:29 +00:00
|
|
|
return h.uotClient.ListenPacket(ctx, destination)
|
2022-08-12 09:55:52 +00:00
|
|
|
}
|
2023-09-06 11:13:39 +00:00
|
|
|
if h.resolve && destination.IsFqdn() {
|
|
|
|
destinationAddresses, err := h.router.LookupDefault(ctx, destination.Fqdn)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
packetConn, _, err := N.ListenSerial(ctx, h.client, destination, destinationAddresses)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return packetConn, nil
|
|
|
|
}
|
2022-07-12 07:17:29 +00:00
|
|
|
h.logger.InfoContext(ctx, "outbound packet connection to ", destination)
|
2022-07-03 05:14:49 +00:00
|
|
|
return h.client.ListenPacket(ctx, destination)
|
|
|
|
}
|
|
|
|
|
2022-07-07 15:36:32 +00:00
|
|
|
func (h *Socks) NewConnection(ctx context.Context, conn net.Conn, metadata adapter.InboundContext) error {
|
2023-09-12 05:25:50 +00:00
|
|
|
if h.resolve {
|
2023-10-08 14:11:03 +00:00
|
|
|
return NewDirectConnection(ctx, h.router, h, conn, metadata, dns.DomainStrategyUseIPv4)
|
2023-09-12 05:25:50 +00:00
|
|
|
} else {
|
|
|
|
return NewConnection(ctx, h, conn, metadata)
|
|
|
|
}
|
2022-07-03 05:14:49 +00:00
|
|
|
}
|
|
|
|
|
2022-07-07 15:36:32 +00:00
|
|
|
func (h *Socks) NewPacketConnection(ctx context.Context, conn N.PacketConn, metadata adapter.InboundContext) error {
|
2023-09-12 05:25:50 +00:00
|
|
|
if h.resolve {
|
2023-10-08 14:11:03 +00:00
|
|
|
return NewDirectPacketConnection(ctx, h.router, h, conn, metadata, dns.DomainStrategyUseIPv4)
|
2023-09-12 05:25:50 +00:00
|
|
|
} else {
|
|
|
|
return NewPacketConnection(ctx, h, conn, metadata)
|
|
|
|
}
|
2022-07-03 05:14:49 +00:00
|
|
|
}
|