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
|
|
|
"runtime"
|
|
|
|
"time"
|
|
|
|
|
2017-01-12 18:56:21 -05:00
|
|
|
"v2ray.com/core/common"
|
2017-01-07 19:06:35 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-02-10 05:41:50 -05:00
|
|
|
"v2ray.com/core/common/errors"
|
2017-01-07 19:06:35 -05:00
|
|
|
"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"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
serverPicker protocol.ServerPicker
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
|
|
|
|
}
|
|
|
|
client := &Client{
|
|
|
|
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
|
|
|
|
}
|
|
|
|
|
|
|
|
return client, nil
|
|
|
|
}
|
|
|
|
|
2017-02-03 16:35:09 -05:00
|
|
|
func (c *Client) Process(ctx context.Context, ray ray.OutboundRay, dialer proxy.Dialer) error {
|
2017-02-09 16:49:38 -05:00
|
|
|
destination, ok := proxy.TargetFromContext(ctx)
|
|
|
|
if !ok {
|
|
|
|
return errors.New("Socks|Client: Target not specified.")
|
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-01-07 19:06:35 -05:00
|
|
|
var server *protocol.ServerSpec
|
|
|
|
var conn internet.Connection
|
|
|
|
|
|
|
|
err := retry.ExponentialBackoff(5, 100).On(func() error {
|
|
|
|
server = c.serverPicker.PickServer()
|
|
|
|
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
|
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
2017-04-06 09:13:09 -04:00
|
|
|
return errors.New("failed to find an available destination").Base(err).Path("Socks", "Client")
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
defer conn.Close()
|
|
|
|
conn.SetReusable(false)
|
|
|
|
|
|
|
|
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-06 09:13:09 -04:00
|
|
|
return errors.New("failed to establish connection to server").AtWarning().Base(err).Path("Socks", "Client")
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
|
2017-03-31 15:45:43 -04:00
|
|
|
ctx, timer := signal.CancelAfterInactivity(ctx, time.Minute*2)
|
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 {
|
2017-01-31 06:42:05 -05:00
|
|
|
return buf.PipeUntilEOF(timer, ray.OutboundInput(), buf.NewWriter(conn))
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
responseFunc = func() error {
|
|
|
|
defer ray.OutboundOutput().Close()
|
2017-01-31 06:42:05 -05:00
|
|
|
return buf.PipeUntilEOF(timer, buf.NewReader(conn), ray.OutboundOutput())
|
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-06 09:13:09 -04:00
|
|
|
return errors.New("failed to create UDP connection").Base(err).Path("Socks", "Client")
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
defer udpConn.Close()
|
|
|
|
requestFunc = func() error {
|
2017-01-31 06:42:05 -05:00
|
|
|
return buf.PipeUntilEOF(timer, ray.OutboundInput(), &UDPWriter{request: request, writer: udpConn})
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
responseFunc = func() error {
|
|
|
|
defer ray.OutboundOutput().Close()
|
2017-01-31 10:49:59 -05:00
|
|
|
reader := &UDPReader{reader: udpConn}
|
2017-01-31 06:42:05 -05:00
|
|
|
return buf.PipeUntilEOF(timer, reader, ray.OutboundOutput())
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
requestDone := signal.ExecuteAsync(requestFunc)
|
|
|
|
responseDone := signal.ExecuteAsync(responseFunc)
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-04-06 09:13:09 -04:00
|
|
|
return errors.New("connection ends").Base(err).Path("Socks", "Client")
|
2017-01-07 19:06:35 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
2017-01-31 06:42:05 -05:00
|
|
|
runtime.KeepAlive(timer)
|
|
|
|
|
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
|
|
|
}
|