sing-box/protocol/socks/outbound.go

117 lines
3.7 KiB
Go
Raw Normal View History

2024-11-01 16:39:02 +00:00
package socks
2022-07-03 05:14:49 +00:00
import (
"context"
"net"
"github.com/sagernet/sing-box/adapter"
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing-box/adapter/outbound"
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-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"
2024-11-01 16:39:02 +00:00
"github.com/sagernet/sing/common/logger"
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
)
2024-11-01 16:39:02 +00:00
func RegisterOutbound(registry *outbound.Registry) {
outbound.Register[option.SOCKSOutboundOptions](registry, C.TypeSOCKS, NewOutbound)
}
var _ adapter.Outbound = (*Outbound)(nil)
2022-07-03 05:14:49 +00:00
2024-11-01 16:39:02 +00:00
type Outbound struct {
outbound.Adapter
router adapter.Router
logger logger.ContextLogger
2023-03-17 04:24:29 +00:00
client *socks.Client
resolve bool
uotClient *uot.Client
2022-07-03 05:14:49 +00:00
}
2024-11-01 16:39:02 +00:00
func NewOutbound(ctx context.Context, router adapter.Router, logger log.ContextLogger, tag string, options option.SOCKSOutboundOptions) (adapter.Outbound, 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
}
outboundDialer, err := dialer.New(ctx, options.DialerOptions)
2023-08-08 08:14:03 +00:00
if err != nil {
return nil, err
}
2024-11-01 16:39:02 +00:00
outbound := &Outbound{
Adapter: outbound.NewAdapterWithDialerOptions(C.TypeSOCKS, options.Network.Build(), tag, options.DialerOptions),
router: router,
logger: logger,
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,
}
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
}
2024-11-01 16:39:02 +00:00
func (h *Outbound) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
2024-10-26 23:45:15 +00:00
ctx, metadata := adapter.ExtendContext(ctx)
2024-11-01 16:39:02 +00:00
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)
}
2024-11-01 16:39:02 +00:00
func (h *Outbound) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
2024-10-26 23:45:15 +00:00
ctx, metadata := adapter.ExtendContext(ctx)
2024-11-01 16:39:02 +00:00
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)
}