2019-02-01 14:08:21 -05:00
|
|
|
// +build !confonly
|
|
|
|
|
2017-01-07 19:06:35 -05:00
|
|
|
package socks
|
|
|
|
|
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2017-01-31 06:42:05 -05:00
|
|
|
"time"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
core "github.com/v2fly/v2ray-core/v4"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/buf"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/net"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/protocol"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/retry"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/session"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/signal"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/task"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/features/policy"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet"
|
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
|
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)
|
2017-04-11 04:35:14 -04:00
|
|
|
return &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),
|
2017-04-11 04:35:14 -04:00
|
|
|
}, 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,
|
|
|
|
}
|
|
|
|
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
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-12-06 05:35:02 -05:00
|
|
|
var responseDonePost = task.OnSuccess(responseFunc, task.Close(link.Writer))
|
|
|
|
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
|
|
|
}
|