2016-10-31 10:24:28 -04:00
|
|
|
package shadowsocks
|
|
|
|
|
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2021-09-26 02:15:25 -04:00
|
|
|
"time"
|
2017-01-31 06:42:05 -05:00
|
|
|
|
2021-02-16 15:31:50 -05: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"
|
2016-10-31 10:24:28 -04:00
|
|
|
)
|
|
|
|
|
2021-12-26 23:33:08 -05:00
|
|
|
// Client is an inbound handler for Shadowsocks protocol
|
2016-10-31 10:24:28 -04:00
|
|
|
type Client struct {
|
2018-10-21 04:27:13 -04:00
|
|
|
serverPicker protocol.ServerPicker
|
|
|
|
policyManager policy.Manager
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
|
|
|
|
2016-12-21 17:07:35 -05:00
|
|
|
// NewClient create a new Shadowsocks client.
|
2017-01-12 18:56:21 -05:00
|
|
|
func NewClient(ctx context.Context, config *ClientConfig) (*Client, error) {
|
2016-11-02 11:33:04 -04:00
|
|
|
serverList := protocol.NewServerList()
|
|
|
|
for _, rec := range config.Server {
|
2020-08-26 07:35:33 -04:00
|
|
|
s, err := protocol.NewServerSpecFromPB(rec)
|
2018-08-26 18:11:32 -04:00
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to parse server spec").Base(err)
|
|
|
|
}
|
|
|
|
serverList.AddServer(s)
|
2016-11-02 11:33:04 -04:00
|
|
|
}
|
2017-04-11 07:42:10 -04:00
|
|
|
if serverList.Size() == 0 {
|
|
|
|
return nil, newError("0 server")
|
|
|
|
}
|
2018-10-21 04:27:13 -04:00
|
|
|
|
|
|
|
v := core.MustFromContext(ctx)
|
2016-11-02 11:33:04 -04:00
|
|
|
client := &Client{
|
2018-10-21 04:27:13 -04:00
|
|
|
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
|
|
|
|
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
|
2016-11-02 11:33:04 -04:00
|
|
|
}
|
|
|
|
return client, nil
|
|
|
|
}
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
// Process implements OutboundHandler.Process().
|
2018-11-03 07:36:29 -04:00
|
|
|
func (c *Client) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
|
2018-09-18 17:09:54 -04:00
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
|
if outbound == nil || !outbound.Target.IsValid() {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("target not specified")
|
2017-02-09 16:49:38 -05:00
|
|
|
}
|
2018-09-18 17:09:54 -04:00
|
|
|
destination := outbound.Target
|
2016-10-31 10:24:28 -04:00
|
|
|
network := destination.Network
|
|
|
|
|
|
|
|
var server *protocol.ServerSpec
|
|
|
|
var conn internet.Connection
|
|
|
|
|
2016-11-20 15:47:51 -05:00
|
|
|
err := retry.ExponentialBackoff(5, 100).On(func() error {
|
2018-04-01 03:58:45 -04:00
|
|
|
server = c.serverPicker.PickServer()
|
2016-10-31 10:24:28 -04:00
|
|
|
dest := server.Destination()
|
|
|
|
dest.Network = network
|
2017-01-26 14:46:44 -05:00
|
|
|
rawConn, err := dialer.Dial(ctx, dest)
|
2016-10-31 10:24:28 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn = rawConn
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("failed to find an available destination").AtWarning().Base(err)
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
2018-06-24 19:09:02 -04:00
|
|
|
newError("tunneling request to ", destination, " via ", server.Destination()).WriteToLog(session.ExportIDToError(ctx))
|
2016-10-31 10:24:28 -04:00
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
defer conn.Close()
|
2016-11-02 17:18:25 -04:00
|
|
|
|
2016-10-31 11:35:18 -04:00
|
|
|
request := &protocol.RequestHeader{
|
|
|
|
Version: Version,
|
|
|
|
Address: destination.Address,
|
|
|
|
Port: destination.Port,
|
|
|
|
}
|
2017-01-13 17:42:39 -05:00
|
|
|
if destination.Network == net.Network_TCP {
|
2016-10-31 11:35:18 -04:00
|
|
|
request.Command = protocol.RequestCommandTCP
|
|
|
|
} else {
|
|
|
|
request.Command = protocol.RequestCommandUDP
|
|
|
|
}
|
|
|
|
|
|
|
|
user := server.PickUser()
|
2020-10-02 04:13:31 -04:00
|
|
|
_, ok := user.Account.(*MemoryAccount)
|
2018-08-26 18:11:32 -04:00
|
|
|
if !ok {
|
|
|
|
return newError("user account is not valid")
|
2016-10-31 11:35:18 -04:00
|
|
|
}
|
|
|
|
request.User = user
|
|
|
|
|
2018-10-21 04:27:13 -04:00
|
|
|
sessionPolicy := c.policyManager.ForLevel(user.Level)
|
2017-11-14 18:36:14 -05:00
|
|
|
ctx, cancel := context.WithCancel(ctx)
|
2018-01-10 06:22:37 -05:00
|
|
|
timer := signal.CancelAfterInactivity(ctx, cancel, sessionPolicy.Timeouts.ConnectionIdle)
|
2017-01-31 06:42:05 -05:00
|
|
|
|
2016-10-31 11:35:18 -04:00
|
|
|
if request.Command == protocol.RequestCommandTCP {
|
2018-04-11 10:45:09 -04:00
|
|
|
requestDone := func() error {
|
2018-01-10 06:22:37 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly)
|
2021-09-26 02:15:25 -04:00
|
|
|
bufferedWriter := buf.NewBufferedWriter(buf.NewWriter(conn))
|
|
|
|
bodyWriter, err := WriteTCPRequest(request, bufferedWriter)
|
|
|
|
if err != nil {
|
|
|
|
return newError("failed to write request").Base(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = buf.CopyOnceTimeout(link.Reader, bodyWriter, time.Millisecond*100); err != nil && err != buf.ErrNotTimeoutReader && err != buf.ErrReadTimeout {
|
|
|
|
return newError("failed to write A request payload").Base(err).AtWarning()
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := bufferedWriter.SetBuffered(false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
return buf.Copy(link.Reader, bodyWriter, buf.UpdateActivity(timer))
|
2018-04-11 10:45:09 -04:00
|
|
|
}
|
2016-10-31 11:35:18 -04:00
|
|
|
|
2018-04-11 10:45:09 -04:00
|
|
|
responseDone := func() error {
|
2018-01-10 06:22:37 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly)
|
2016-10-31 11:35:18 -04:00
|
|
|
|
|
|
|
responseReader, err := ReadTCPResponse(user, conn)
|
|
|
|
if err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
2016-10-31 11:35:18 -04:00
|
|
|
}
|
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
return buf.Copy(responseReader, link.Writer, buf.UpdateActivity(timer))
|
2018-04-11 10:45:09 -04:00
|
|
|
}
|
2016-11-04 20:00:09 -04:00
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
responseDoneAndCloseWriter := task.OnSuccess(responseDone, task.Close(link.Writer))
|
2018-12-06 05:35:02 -05:00
|
|
|
if err := task.Run(ctx, requestDone, responseDoneAndCloseWriter); err != nil {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
|
|
|
return nil
|
2016-10-31 11:35:18 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
if request.Command == protocol.RequestCommandUDP {
|
2018-07-31 07:43:27 -04:00
|
|
|
writer := &buf.SequentialWriter{Writer: &UDPWriter{
|
2016-11-04 20:00:09 -04:00
|
|
|
Writer: conn,
|
|
|
|
Request: request,
|
2018-07-31 07:43:27 -04:00
|
|
|
}}
|
2016-11-04 20:00:09 -04:00
|
|
|
|
2018-04-11 10:45:09 -04:00
|
|
|
requestDone := func() error {
|
2018-02-12 06:28:18 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly)
|
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
if err := buf.Copy(link.Reader, writer, buf.UpdateActivity(timer)); err != nil {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("failed to transport all UDP request").Base(err)
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
|
|
|
return nil
|
2018-04-11 10:45:09 -04:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
|
2018-04-11 10:45:09 -04:00
|
|
|
responseDone := func() error {
|
2018-02-12 06:28:18 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly)
|
2016-12-29 18:32:20 -05:00
|
|
|
|
|
|
|
reader := &UDPReader{
|
2017-01-31 06:42:05 -05:00
|
|
|
Reader: conn,
|
2016-12-29 18:32:20 -05:00
|
|
|
User: user,
|
|
|
|
}
|
|
|
|
|
2018-04-16 18:31:10 -04:00
|
|
|
if err := buf.Copy(reader, link.Writer, buf.UpdateActivity(timer)); err != nil {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("failed to transport all UDP response").Base(err)
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
|
|
|
return nil
|
2018-04-11 10:45:09 -04:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
|
2021-05-19 17:28:52 -04:00
|
|
|
responseDoneAndCloseWriter := task.OnSuccess(responseDone, task.Close(link.Writer))
|
2018-12-06 05:35:02 -05:00
|
|
|
if err := task.Run(ctx, requestDone, responseDoneAndCloseWriter); err != nil {
|
2017-04-08 18:54:23 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2017-01-10 08:22:42 -05:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
|
|
|
return nil
|
2016-10-31 11:35:18 -04:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
|
|
|
|
return nil
|
2016-10-31 10:24:28 -04:00
|
|
|
}
|
2016-11-02 11:33:04 -04: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))
|
|
|
|
}))
|
2016-11-02 11:33:04 -04:00
|
|
|
}
|