2017-01-07 19:06:35 -05:00
|
|
|
package socks
|
|
|
|
|
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2021-12-31 16:22:16 -05:00
|
|
|
"time"
|
|
|
|
|
2022-01-02 10:16:23 -05:00
|
|
|
core "github.com/v2fly/v2ray-core/v5"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/buf"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
2022-04-30 12:47:14 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common/net/packetaddr"
|
2022-01-02 10:16:23 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v5/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/retry"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/session"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/signal"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/task"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/features/dns"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/features/policy"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/transport/internet"
|
2022-04-30 12:47:14 -04:00
|
|
|
"github.com/v2fly/v2ray-core/v5/transport/internet/udp"
|
2017-01-07 19:06:35 -05:00
|
|
|
)
|
|
|
|
|
2017-04-09 08:49:40 -04:00
|
|
|
// Client is a Socks5 client.
|
2017-01-07 19:06:35 -05:00
|
|
|
type Client struct {
|
2018-02-19 15:38:04 -05:00
|
|
|
serverPicker protocol.ServerPicker
|
2018-10-11 16:34:31 -04:00
|
|
|
policyManager policy.Manager
|
2021-09-16 02:42:12 -04:00
|
|
|
version Version
|
|
|
|
dns dns.Client
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2017-04-09 08:49:40 -04:00
|
|
|
// NewClient create a new Socks5 client based on the given config.
|
2017-01-12 18:56:21 -05:00
|
|
|
func NewClient(ctx context.Context, config *ClientConfig) (*Client, error) {
|
2017-01-07 19:06:35 -05:00
|
|
|
serverList := protocol.NewServerList()
|
|
|
|
for _, rec := range config.Server {
|
2020-08-26 07:35:33 -04:00
|
|
|
s, err := protocol.NewServerSpecFromPB(rec)
|
2018-08-26 18:11:32 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to get server spec").Base(err)
|
|
|
|
}
|
|
|
|
serverList.AddServer(s)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
2017-04-11 04:35:14 -04:00
|
|
|
if serverList.Size() == 0 {
|
|
|
|
return nil, newError("0 target server")
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2018-02-21 11:05:29 -05:00
|
|
|
v := core.MustFromContext(ctx)
|
2021-09-16 02:42:12 -04:00
|
|
|
c := &Client{
|
2018-02-19 15:38:04 -05:00
|
|
|
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
|
2018-10-21 04:27:13 -04:00
|
|
|
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
|
2021-09-16 02:42:12 -04:00
|
|
|
version: config.Version,
|
|
|
|
}
|
|
|
|
if config.Version == Version_SOCKS4 {
|
|
|
|
c.dns = v.GetFeature(dns.ClientType()).(dns.Client)
|
|
|
|
}
|
|
|
|
|
|
|
|
return c, nil
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2017-04-09 08:49:40 -04:00
|
|
|
// Process implements proxy.Outbound.Process.
|
2018-11-03 07:36:29 -04:00
|
|
|
func (c *Client) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
|
2018-09-18 17:09:54 -04:00
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
|
if outbound == nil || !outbound.Target.IsValid() {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("target not specified.")
|
2017-02-09 16:49:38 -05:00
|
|
|
}
|
2020-12-15 15:23:40 -05:00
|
|
|
// Destination of the inner request.
|
2018-09-18 17:09:54 -04:00
|
|
|
destination := outbound.Target
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2020-12-15 15:23:40 -05:00
|
|
|
// Outbound server.
|
2017-01-07 19:06:35 -05:00
|
|
|
var server *protocol.ServerSpec
|
2020-12-15 15:23:40 -05:00
|
|
|
// Outbound server's destination.
|
|
|
|
var dest net.Destination
|
|
|
|
// Connection to the outbound server.
|
2017-01-07 19:06:35 -05:00
|
|
|
var conn internet.Connection
|
|
|
|
|
2018-02-23 11:14:20 -05:00
|
|
|
if err := retry.ExponentialBackoff(5, 100).On(func() error {
|
2017-01-07 19:06:35 -05:00
|
|
|
server = c.serverPicker.PickServer()
|
2020-12-15 15:23:40 -05:00
|
|
|
dest = server.Destination()
|
2017-01-26 14:46:44 -05:00
|
|
|
rawConn, err := dialer.Dial(ctx, dest)
|
2017-01-07 19:06:35 -05:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn = rawConn
|
|
|
|
|
|
|
|
return nil
|
2018-02-23 11:14:20 -05:00
|
|
|
}); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to find an available destination").Base(err)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2018-02-23 11:14:20 -05:00
|
|
|
defer func() {
|
|
|
|
if err := conn.Close(); err != nil {
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("failed to closed connection").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2018-02-23 11:14:20 -05:00
|
|
|
}
|
|
|
|
}()
|
2017-01-07 19:06:35 -05:00
|
|
|
|
2018-02-19 15:38:04 -05:00
|
|
|
p := c.policyManager.ForLevel(0)
|
|
|
|
|
2017-01-07 19:06:35 -05:00
|
|
|
request := &protocol.RequestHeader{
|
|
|
|
Version: socks5Version,
|
|
|
|
Command: protocol.RequestCommandTCP,
|
|
|
|
Address: destination.Address,
|
|
|
|
Port: destination.Port,
|
|
|
|
}
|
2021-09-16 02:42:12 -04:00
|
|
|
|
|
|
|
switch c.version {
|
|
|
|
case Version_SOCKS4:
|
|
|
|
if request.Address.Family().IsDomain() {
|
|
|
|
if d, ok := c.dns.(dns.ClientWithIPOption); ok {
|
|
|
|
d.SetFakeDNSOption(false) // Skip FakeDNS
|
|
|
|
} else {
|
|
|
|
newError("DNS client doesn't implement ClientWithIPOption")
|
|
|
|
}
|
|
|
|
|
|
|
|
lookupFunc := c.dns.LookupIP
|
|
|
|
if lookupIPv4, ok := c.dns.(dns.IPv4Lookup); ok {
|
|
|
|
lookupFunc = lookupIPv4.LookupIPv4
|
|
|
|
}
|
|
|
|
ips, err := lookupFunc(request.Address.Domain())
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
} else if len(ips) == 0 {
|
|
|
|
return dns.ErrEmptyResponse
|
|
|
|
}
|
|
|
|
request.Address = net.IPAddress(ips[0])
|
|
|
|
}
|
|
|
|
fallthrough
|
|
|
|
case Version_SOCKS4A:
|
|
|
|
request.Version = socks4Version
|
|
|
|
|
|
|
|
if destination.Network == net.Network_UDP {
|
|
|
|
return newError("udp is not supported in socks4")
|
|
|
|
} else if destination.Address.Family().IsIPv6() {
|
|
|
|
return newError("ipv6 is not supported in socks4")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-01-07 19:06:35 -05:00
|
|
|
if destination.Network == net.Network_UDP {
|
|
|
|
request.Command = protocol.RequestCommandUDP
|
|
|
|
}
|
|
|
|
|
|
|
|
user := server.PickUser()
|
|
|
|
if user != nil {
|
|
|
|
request.User = user
|
2018-02-19 15:38:04 -05:00
|
|
|
p = c.policyManager.ForLevel(user.Level)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2018-02-19 15:38:04 -05:00
|
|
|
if err := conn.SetDeadline(time.Now().Add(p.Timeouts.Handshake)); err != nil {
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("failed to set deadline for handshake").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2018-02-19 15:38:04 -05:00
|
|
|
}
|
2017-01-07 19:06:35 -05:00
|
|
|
udpRequest, err := ClientHandshake(request, conn, conn)
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to establish connection to server").AtWarning().Base(err)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
2020-12-15 15:23:40 -05:00
|
|
|
if udpRequest != nil {
|
|
|
|
if udpRequest.Address == net.AnyIP || udpRequest.Address == net.AnyIPv6 {
|
|
|
|
udpRequest.Address = dest.Address
|
|
|
|
}
|
|
|
|
}
|
2017-01-07 19:06:35 -05:00
|
|
|
|
2018-02-19 15:38:04 -05:00
|
|
|
if err := conn.SetDeadline(time.Time{}); err != nil {
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("failed to clear deadline after handshake").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
2018-02-19 15:38:04 -05:00
|
|
|
}
|
|
|
|
|
2017-11-14 18:36:14 -05:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
2018-02-19 15:38:04 -05:00
|
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, p.Timeouts.ConnectionIdle)
|
2017-01-31 06:42:05 -05:00
|
|
|
|
2021-12-31 08:26:11 -05:00
|
|
|
if packetConn, err := packetaddr.ToPacketAddrConn(link, destination); err == nil {
|
|
|
|
udpConn, err := dialer.Dial(ctx, udpRequest.Destination())
|
|
|
|
if err != nil {
|
|
|
|
return newError("failed to create UDP connection").Base(err)
|
|
|
|
}
|
|
|
|
defer udpConn.Close()
|
|
|
|
|
|
|
|
requestDone := func() error {
|
|
|
|
protocolWriter := NewUDPWriter(request, udpConn)
|
|
|
|
return udp.CopyPacketConn(protocolWriter, packetConn, udp.UpdateActivity(timer))
|
|
|
|
}
|
|
|
|
responseDone := func() error {
|
|
|
|
protocolReader := &UDPReader{
|
|
|
|
reader: udpConn,
|
|
|
|
}
|
|
|
|
return udp.CopyPacketConn(packetConn, protocolReader, udp.UpdateActivity(timer))
|
|
|
|
}
|
|
|
|
responseDoneAndCloseWriter := task.OnSuccess(responseDone, task.Close(link.Writer))
|
|
|
|
if err := task.Run(ctx, requestDone, responseDoneAndCloseWriter); err != nil {
|
|
|
|
return newError("connection ends").Base(err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-01-07 19:06:35 -05:00
|
|
|
var requestFunc func() error
|
|
|
|
var responseFunc func() error
|
|
|
|
if request.Command == protocol.RequestCommandTCP {
|
|
|
|
requestFunc = func() error {
|
2018-02-19 15:38:04 -05:00
|
|
|
defer timer.SetTimeout(p.Timeouts.DownlinkOnly)
|
2018-04-16 18:31:10 -04:00
|
|
|
return buf.Copy(link.Reader, buf.NewWriter(conn), buf.UpdateActivity(timer))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
responseFunc = func() error {
|
2018-02-19 15:38:04 -05:00
|
|
|
defer timer.SetTimeout(p.Timeouts.UplinkOnly)
|
2018-08-17 14:54:25 -04:00
|
|
|
return buf.Copy(buf.NewReader(conn), link.Writer, buf.UpdateActivity(timer))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
} else if request.Command == protocol.RequestCommandUDP {
|
2017-01-26 14:46:44 -05:00
|
|
|
udpConn, err := dialer.Dial(ctx, udpRequest.Destination())
|
2017-01-07 19:06:35 -05:00
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to create UDP connection").Base(err)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
2020-10-11 07:22:46 -04:00
|
|
|
defer udpConn.Close()
|
2017-01-07 19:06:35 -05:00
|
|
|
requestFunc = func() error {
|
2018-02-19 15:38:04 -05:00
|
|
|
defer timer.SetTimeout(p.Timeouts.DownlinkOnly)
|
2018-07-31 07:43:27 -04:00
|
|
|
return buf.Copy(link.Reader, &buf.SequentialWriter{Writer: NewUDPWriter(request, udpConn)}, buf.UpdateActivity(timer))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
responseFunc = func() error {
|
2018-02-19 15:38:04 -05:00
|
|
|
defer timer.SetTimeout(p.Timeouts.UplinkOnly)
|
2017-01-31 10:49:59 -05:00
|
|
|
reader := &UDPReader{reader: udpConn}
|
2018-04-16 18:31:10 -04:00
|
|
|
return buf.Copy(reader, link.Writer, buf.UpdateActivity(timer))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
responseDonePost := task.OnSuccess(responseFunc, task.Close(link.Writer))
|
2018-12-06 05:35:02 -05:00
|
|
|
if err := task.Run(ctx, requestFunc, responseDonePost); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
|
|
|
return nil
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2017-01-12 18:56:21 -05:00
|
|
|
func init() {
|
|
|
|
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return NewClient(ctx, config.(*ClientConfig))
|
|
|
|
}))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|