v2fly/proxy/socks/client.go

165 lines
5.0 KiB
Go
Raw Normal View History

2019-02-01 19:08:21 +00:00
// +build !confonly
2017-01-08 00:06:35 +00:00
package socks
import (
"context"
2017-01-31 11:42:05 +00:00
"time"
2021-02-16 20:31:50 +00: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-08 00:06:35 +00:00
)
2017-04-09 12:49:40 +00:00
// Client is a Socks5 client.
2017-01-08 00:06:35 +00:00
type Client struct {
serverPicker protocol.ServerPicker
2018-10-11 20:34:31 +00:00
policyManager policy.Manager
2017-01-08 00:06:35 +00:00
}
2017-04-09 12:49:40 +00:00
// NewClient create a new Socks5 client based on the given config.
func NewClient(ctx context.Context, config *ClientConfig) (*Client, error) {
2017-01-08 00:06:35 +00:00
serverList := protocol.NewServerList()
for _, rec := range config.Server {
2020-08-26 11:35:33 +00:00
s, err := protocol.NewServerSpecFromPB(rec)
2018-08-26 22:11:32 +00:00
if err != nil {
return nil, newError("failed to get server spec").Base(err)
}
serverList.AddServer(s)
2017-01-08 00:06:35 +00:00
}
2017-04-11 08:35:14 +00:00
if serverList.Size() == 0 {
return nil, newError("0 target server")
2017-01-08 00:06:35 +00:00
}
2018-02-21 16:05:29 +00:00
v := core.MustFromContext(ctx)
2017-04-11 08:35:14 +00:00
return &Client{
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
2018-10-21 08:27:13 +00:00
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
2017-04-11 08:35:14 +00:00
}, nil
2017-01-08 00:06:35 +00:00
}
2017-04-09 12:49:40 +00:00
// Process implements proxy.Outbound.Process.
2018-11-03 11:36:29 +00:00
func (c *Client) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
outbound := session.OutboundFromContext(ctx)
if outbound == nil || !outbound.Target.IsValid() {
2017-04-08 23:43:25 +00:00
return newError("target not specified.")
2017-02-09 21:49:38 +00:00
}
// Destination of the inner request.
destination := outbound.Target
// Outbound server.
2017-01-08 00:06:35 +00:00
var server *protocol.ServerSpec
// Outbound server's destination.
var dest net.Destination
// Connection to the outbound server.
2017-01-08 00:06:35 +00:00
var conn internet.Connection
2018-02-23 16:14:20 +00:00
if err := retry.ExponentialBackoff(5, 100).On(func() error {
2017-01-08 00:06:35 +00:00
server = c.serverPicker.PickServer()
dest = server.Destination()
rawConn, err := dialer.Dial(ctx, dest)
2017-01-08 00:06:35 +00:00
if err != nil {
return err
}
conn = rawConn
return nil
2018-02-23 16:14:20 +00:00
}); err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to find an available destination").Base(err)
2017-01-08 00:06:35 +00:00
}
2018-02-23 16:14:20 +00:00
defer func() {
if err := conn.Close(); err != nil {
newError("failed to closed connection").Base(err).WriteToLog(session.ExportIDToError(ctx))
2018-02-23 16:14:20 +00:00
}
}()
2017-01-08 00:06:35 +00:00
p := c.policyManager.ForLevel(0)
2017-01-08 00:06:35 +00: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
p = c.policyManager.ForLevel(user.Level)
2017-01-08 00:06:35 +00:00
}
if err := conn.SetDeadline(time.Now().Add(p.Timeouts.Handshake)); err != nil {
newError("failed to set deadline for handshake").Base(err).WriteToLog(session.ExportIDToError(ctx))
}
2017-01-08 00:06:35 +00:00
udpRequest, err := ClientHandshake(request, conn, conn)
if err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to establish connection to server").AtWarning().Base(err)
2017-01-08 00:06:35 +00:00
}
if udpRequest != nil {
if udpRequest.Address == net.AnyIP || udpRequest.Address == net.AnyIPv6 {
udpRequest.Address = dest.Address
}
}
2017-01-08 00:06:35 +00:00
if err := conn.SetDeadline(time.Time{}); err != nil {
newError("failed to clear deadline after handshake").Base(err).WriteToLog(session.ExportIDToError(ctx))
}
2017-11-14 23:36:14 +00:00
ctx, cancel := context.WithCancel(ctx)
timer := signal.CancelAfterInactivity(ctx, cancel, p.Timeouts.ConnectionIdle)
2017-01-31 11:42:05 +00:00
2017-01-08 00:06:35 +00:00
var requestFunc func() error
var responseFunc func() error
if request.Command == protocol.RequestCommandTCP {
requestFunc = func() error {
defer timer.SetTimeout(p.Timeouts.DownlinkOnly)
2018-04-16 22:31:10 +00:00
return buf.Copy(link.Reader, buf.NewWriter(conn), buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
responseFunc = func() error {
defer timer.SetTimeout(p.Timeouts.UplinkOnly)
return buf.Copy(buf.NewReader(conn), link.Writer, buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
} else if request.Command == protocol.RequestCommandUDP {
udpConn, err := dialer.Dial(ctx, udpRequest.Destination())
2017-01-08 00:06:35 +00:00
if err != nil {
2017-04-08 23:43:25 +00:00
return newError("failed to create UDP connection").Base(err)
2017-01-08 00:06:35 +00:00
}
defer udpConn.Close()
2017-01-08 00:06:35 +00:00
requestFunc = func() error {
defer timer.SetTimeout(p.Timeouts.DownlinkOnly)
2018-07-31 11:43:27 +00:00
return buf.Copy(link.Reader, &buf.SequentialWriter{Writer: NewUDPWriter(request, udpConn)}, buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
responseFunc = func() error {
defer timer.SetTimeout(p.Timeouts.UplinkOnly)
2017-01-31 15:49:59 +00:00
reader := &UDPReader{reader: udpConn}
2018-04-16 22:31:10 +00:00
return buf.Copy(reader, link.Writer, buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
}
2021-05-19 21:28:52 +00:00
responseDonePost := task.OnSuccess(responseFunc, task.Close(link.Writer))
2018-12-06 10:35:02 +00:00
if err := task.Run(ctx, requestFunc, responseDonePost); err != nil {
2017-04-08 23:43:25 +00:00
return newError("connection ends").Base(err)
2017-01-08 00:06:35 +00:00
}
return nil
2017-01-08 00:06:35 +00:00
}
func init() {
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewClient(ctx, config.(*ClientConfig))
}))
2017-01-08 00:06:35 +00:00
}