v2fly/proxy/socks/client.go

128 lines
3.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"
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"
"v2ray.com/core/transport/ray"
)
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
}
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 {
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
}
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
}
2017-04-11 08:35:14 +00:00
return &Client{
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
}, nil
2017-01-08 00:06:35 +00:00
}
2017-04-09 12:49:40 +00:00
// Process implements proxy.Outbound.Process.
func (c *Client) Process(ctx context.Context, ray ray.OutboundRay, 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
err := retry.ExponentialBackoff(5, 100).On(func() error {
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
})
if 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
}
defer conn.Close()
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
}
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
}
2017-09-27 19:09:13 +00:00
ctx, timer := signal.CancelAfterInactivity(ctx, time.Minute*5)
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 {
2017-04-27 20:30:48 +00:00
return buf.Copy(ray.OutboundInput(), buf.NewWriter(conn), buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
responseFunc = func() error {
defer ray.OutboundOutput().Close()
2017-04-27 20:30:48 +00:00
return buf.Copy(buf.NewReader(conn), ray.OutboundOutput(), 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()
requestFunc = func() error {
2017-04-27 20:30:48 +00:00
return buf.Copy(ray.OutboundInput(), buf.NewSequentialWriter(NewUDPWriter(request, udpConn)), buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
responseFunc = func() error {
defer ray.OutboundOutput().Close()
2017-01-31 15:49:59 +00:00
reader := &UDPReader{reader: udpConn}
2017-04-27 20:30:48 +00:00
return buf.Copy(reader, ray.OutboundOutput(), buf.UpdateActivity(timer))
2017-01-08 00:06:35 +00:00
}
}
requestDone := signal.ExecuteAsync(requestFunc)
responseDone := signal.ExecuteAsync(responseFunc)
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); 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
}