v2fly/proxy/socks/client.go

152 lines
4.4 KiB
Go
Raw Normal View History

2017-01-08 00:06:35 +00:00
package socks
import (
"context"
2017-01-31 11:42:05 +00:00
"time"
"v2ray.com/core/common/session"
2018-05-27 11:02:29 +00:00
"v2ray.com/core/common/task"
"v2ray.com/core"
"v2ray.com/core/common"
2017-01-08 00:06:35 +00:00
"v2ray.com/core/common/buf"
"v2ray.com/core/common/net"
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/retry"
"v2ray.com/core/common/signal"
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
)
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
policyManager core.PolicyManager
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 {
2018-08-26 22:11:32 +00:00
s, err := protocol.NewServerSpecFromPB(*rec)
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),
policyManager: v.PolicyManager(),
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-04-16 22:31:10 +00:00
func (c *Client) Process(ctx context.Context, link *core.Link, dialer proxy.Dialer) error {
2017-02-09 21:49:38 +00:00
destination, ok := proxy.TargetFromContext(ctx)
if !ok {
2017-04-08 23:43:25 +00:00
return newError("target not specified.")
2017-02-09 21:49:38 +00:00
}
2017-01-08 00:06:35 +00:00
var server *protocol.ServerSpec
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 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
}
2018-05-26 00:01:48 +00:00
defer udpConn.Close() // nolint: errcheck
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
}
}
2018-05-27 11:02:29 +00:00
var responseDonePost = task.Single(responseFunc, task.OnSuccess(task.Close(link.Writer)))
if err := task.Run(task.WithContext(ctx), task.Parallel(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
}