1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00
v2fly/proxy/shadowsocks/client.go

178 lines
4.5 KiB
Go
Raw Normal View History

2016-10-31 14:24:28 +00:00
package shadowsocks
import (
"context"
2017-02-09 21:49:38 +00:00
"time"
2017-01-31 11:42:05 +00:00
"v2ray.com/core/app/log"
"v2ray.com/core/common"
2016-12-09 10:35:27 +00:00
"v2ray.com/core/common/buf"
2017-01-13 22:42:39 +00:00
"v2ray.com/core/common/net"
2016-10-31 14:24:28 +00:00
"v2ray.com/core/common/protocol"
"v2ray.com/core/common/retry"
2016-12-29 23:32:20 +00:00
"v2ray.com/core/common/signal"
2016-10-31 14:24:28 +00:00
"v2ray.com/core/proxy"
"v2ray.com/core/transport/internet"
"v2ray.com/core/transport/ray"
)
2016-12-21 22:07:35 +00:00
// Client is a inbound handler for Shadowsocks protocol
2016-10-31 14:24:28 +00:00
type Client struct {
serverPicker protocol.ServerPicker
}
2016-12-21 22:07:35 +00:00
// NewClient create a new Shadowsocks client.
func NewClient(ctx context.Context, config *ClientConfig) (*Client, error) {
2016-11-02 15:33:04 +00:00
serverList := protocol.NewServerList()
for _, rec := range config.Server {
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
}
2017-04-11 11:42:10 +00:00
if serverList.Size() == 0 {
return nil, newError("0 server")
}
2016-11-02 15:33:04 +00:00
client := &Client{
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
}
return client, nil
}
// Process implements OutboundHandler.Process().
func (v *Client) Process(ctx context.Context, outboundRay ray.OutboundRay, dialer proxy.Dialer) error {
2017-02-09 21:49:38 +00:00
destination, ok := proxy.TargetFromContext(ctx)
if !ok {
2017-04-08 22:54:23 +00:00
return newError("target not specified")
2017-02-09 21:49:38 +00:00
}
2016-10-31 14:24:28 +00:00
network := destination.Network
var server *protocol.ServerSpec
var conn internet.Connection
2016-11-20 20:47:51 +00:00
err := retry.ExponentialBackoff(5, 100).On(func() error {
2016-11-27 20:39:09 +00:00
server = v.serverPicker.PickServer()
2016-10-31 14:24:28 +00:00
dest := server.Destination()
dest.Network = network
rawConn, err := dialer.Dial(ctx, dest)
2016-10-31 14:24:28 +00:00
if err != nil {
return err
}
conn = rawConn
return nil
})
if err != nil {
2017-04-08 22:54:23 +00:00
return newError("failed to find an available destination").AtWarning().Base(err)
2016-10-31 14:24:28 +00:00
}
2017-04-08 22:54:23 +00:00
log.Trace(newError("tunneling request to ", destination, " via ", server.Destination()))
2016-10-31 14:24:28 +00:00
defer conn.Close()
2016-11-02 21:18:25 +00:00
2016-10-31 15:35:18 +00:00
request := &protocol.RequestHeader{
Version: Version,
Address: destination.Address,
Port: destination.Port,
}
2017-01-13 22:42:39 +00:00
if destination.Network == net.Network_TCP {
2016-10-31 15:35:18 +00:00
request.Command = protocol.RequestCommandTCP
} else {
request.Command = protocol.RequestCommandUDP
}
user := server.PickUser()
rawAccount, err := user.GetTypedAccount()
if err != nil {
2017-04-08 22:54:23 +00:00
return newError("failed to get a valid user account").AtWarning().Base(err)
2016-10-31 15:35:18 +00:00
}
account := rawAccount.(*ShadowsocksAccount)
request.User = user
2016-11-02 15:17:57 +00:00
if account.OneTimeAuth == Account_Auto || account.OneTimeAuth == Account_Enabled {
2016-10-31 15:35:18 +00:00
request.Option |= RequestOptionOneTimeAuth
}
2017-09-27 19:09:13 +00:00
ctx, timer := signal.CancelAfterInactivity(ctx, time.Minute*5)
2017-01-31 11:42:05 +00:00
2016-10-31 15:35:18 +00:00
if request.Command == protocol.RequestCommandTCP {
2017-11-09 21:33:15 +00:00
bufferedWriter := buf.NewBufferedWriter(buf.NewWriter(conn))
2016-10-31 15:35:18 +00:00
bodyWriter, err := WriteTCPRequest(request, bufferedWriter)
if err != nil {
2017-04-08 22:54:23 +00:00
return newError("failed to write request").Base(err)
2016-10-31 15:35:18 +00:00
}
2017-03-27 09:26:44 +00:00
if err := bufferedWriter.SetBuffered(false); err != nil {
return err
}
2016-12-29 23:32:20 +00:00
requestDone := signal.ExecuteAsync(func() error {
2017-04-27 20:30:48 +00:00
if err := buf.Copy(outboundRay.OutboundInput(), bodyWriter, buf.UpdateActivity(timer)); err != nil {
2016-12-29 23:32:20 +00:00
return err
}
return nil
})
2016-10-31 15:35:18 +00:00
2016-12-29 23:32:20 +00:00
responseDone := signal.ExecuteAsync(func() error {
defer outboundRay.OutboundOutput().Close()
2016-10-31 15:35:18 +00:00
responseReader, err := ReadTCPResponse(user, conn)
if err != nil {
2016-12-29 23:32:20 +00:00
return err
2016-10-31 15:35:18 +00:00
}
2017-04-27 20:30:48 +00:00
if err := buf.Copy(responseReader, outboundRay.OutboundOutput(), buf.UpdateActivity(timer)); err != nil {
2016-12-29 23:32:20 +00:00
return err
2016-11-21 22:06:26 +00:00
}
2016-10-31 15:35:18 +00:00
2016-12-29 23:32:20 +00:00
return nil
})
2016-11-05 00:00:09 +00:00
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
2017-04-08 22:54:23 +00:00
return newError("connection ends").Base(err)
2016-12-29 23:32:20 +00:00
}
return nil
2016-10-31 15:35:18 +00:00
}
if request.Command == protocol.RequestCommandUDP {
2017-04-21 12:51:09 +00:00
writer := buf.NewSequentialWriter(&UDPWriter{
2016-11-05 00:00:09 +00:00
Writer: conn,
Request: request,
2017-04-21 12:51:09 +00:00
})
2016-11-05 00:00:09 +00:00
2016-12-29 23:32:20 +00:00
requestDone := signal.ExecuteAsync(func() error {
2017-04-27 20:30:48 +00:00
if err := buf.Copy(outboundRay.OutboundInput(), writer, buf.UpdateActivity(timer)); err != nil {
2017-04-08 22:54:23 +00:00
return newError("failed to transport all UDP request").Base(err)
2016-12-29 23:32:20 +00:00
}
return nil
})
responseDone := signal.ExecuteAsync(func() error {
defer outboundRay.OutboundOutput().Close()
2016-12-29 23:32:20 +00:00
reader := &UDPReader{
2017-01-31 11:42:05 +00:00
Reader: conn,
2016-12-29 23:32:20 +00:00
User: user,
}
2017-04-27 20:30:48 +00:00
if err := buf.Copy(reader, outboundRay.OutboundOutput(), buf.UpdateActivity(timer)); err != nil {
2017-04-08 22:54:23 +00:00
return newError("failed to transport all UDP response").Base(err)
2016-12-29 23:32:20 +00:00
}
return nil
})
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
2017-04-08 22:54:23 +00:00
return newError("connection ends").Base(err)
2017-01-10 13:22:42 +00:00
}
return nil
2016-10-31 15:35:18 +00:00
}
return nil
2016-10-31 14:24:28 +00:00
}
2016-11-02 15:33:04 +00:00
func init() {
common.Must(common.RegisterConfig((*ClientConfig)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
return NewClient(ctx, config.(*ClientConfig))
}))
2016-11-02 15:33:04 +00:00
}