2015-12-04 06:07:32 -05:00
|
|
|
package outbound
|
2015-09-10 18:24:18 -04:00
|
|
|
|
2017-12-02 19:04:57 -05:00
|
|
|
//go:generate go run $GOPATH/src/v2ray.com/core/common/errors/errorgen/main.go -pkg outbound -path Proxy,VMess,Outbound
|
2017-04-08 19:43:25 -04:00
|
|
|
|
2015-09-10 18:24:18 -04:00
|
|
|
import (
|
2017-01-12 18:56:21 -05:00
|
|
|
"context"
|
2017-01-13 17:42:39 -05:00
|
|
|
"time"
|
2017-01-12 18:56:21 -05:00
|
|
|
|
2018-01-10 06:22:37 -05:00
|
|
|
"v2ray.com/core"
|
2016-12-27 18:53:29 -05:00
|
|
|
"v2ray.com/core/common"
|
2016-12-09 05:35:27 -05:00
|
|
|
"v2ray.com/core/common/buf"
|
2017-01-13 17:42:39 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
|
|
|
"v2ray.com/core/common/retry"
|
2016-12-29 18:32:20 -05:00
|
|
|
"v2ray.com/core/common/signal"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/proxy"
|
2016-12-07 15:43:41 -05:00
|
|
|
"v2ray.com/core/proxy/vmess"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/proxy/vmess/encoding"
|
|
|
|
"v2ray.com/core/transport/internet"
|
|
|
|
"v2ray.com/core/transport/ray"
|
2015-09-10 18:24:18 -04:00
|
|
|
)
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
// Handler is an outbound connection handler for VMess protocol.
|
|
|
|
type Handler struct {
|
2018-01-10 06:22:37 -05:00
|
|
|
serverList *protocol.ServerList
|
|
|
|
serverPicker protocol.ServerPicker
|
|
|
|
v *core.Instance
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
func New(ctx context.Context, config *Config) (*Handler, error) {
|
2017-01-12 18:56:21 -05:00
|
|
|
serverList := protocol.NewServerList()
|
|
|
|
for _, rec := range config.Receiver {
|
|
|
|
serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
|
|
|
|
}
|
2017-02-13 07:16:37 -05:00
|
|
|
handler := &Handler{
|
2017-01-12 18:56:21 -05:00
|
|
|
serverList: serverList,
|
|
|
|
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
|
2018-02-21 11:05:29 -05:00
|
|
|
v: core.MustFromContext(ctx),
|
2018-01-10 06:22:37 -05:00
|
|
|
}
|
2017-11-27 16:09:30 -05:00
|
|
|
|
2017-01-12 18:56:21 -05:00
|
|
|
return handler, nil
|
|
|
|
}
|
|
|
|
|
2017-02-13 07:16:37 -05:00
|
|
|
// Process implements proxy.Outbound.Process().
|
|
|
|
func (v *Handler) Process(ctx context.Context, outboundRay ray.OutboundRay, dialer proxy.Dialer) error {
|
2016-07-25 10:48:09 -04:00
|
|
|
var rec *protocol.ServerSpec
|
2016-06-14 16:54:08 -04:00
|
|
|
var conn internet.Connection
|
2016-06-05 18:10:51 -04:00
|
|
|
|
2017-02-10 05:41:50 -05:00
|
|
|
err := retry.ExponentialBackoff(5, 200).On(func() error {
|
2016-11-27 15:39:09 -05:00
|
|
|
rec = v.serverPicker.PickServer()
|
2017-01-26 14:46:44 -05:00
|
|
|
rawConn, err := dialer.Dial(ctx, rec.Destination())
|
2016-06-05 18:10:51 -04:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn = rawConn
|
|
|
|
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to find an available destination").Base(err).AtWarning()
|
2016-06-05 18:10:51 -04:00
|
|
|
}
|
2017-01-26 14:46:44 -05:00
|
|
|
defer conn.Close()
|
|
|
|
|
2017-02-09 16:49:38 -05:00
|
|
|
target, ok := proxy.TargetFromContext(ctx)
|
|
|
|
if !ok {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("target not specified").AtError()
|
2017-02-09 16:49:38 -05:00
|
|
|
}
|
2017-12-19 15:28:12 -05:00
|
|
|
newError("tunneling request to ", target, " via ", rec.Destination()).WriteToLog()
|
2015-09-10 18:24:18 -04:00
|
|
|
|
2016-05-07 14:26:29 -04:00
|
|
|
command := protocol.RequestCommandTCP
|
2017-01-13 17:42:39 -05:00
|
|
|
if target.Network == net.Network_UDP {
|
2016-05-07 14:26:29 -04:00
|
|
|
command = protocol.RequestCommandUDP
|
2015-09-20 12:22:29 -04:00
|
|
|
}
|
2018-02-11 18:06:51 -05:00
|
|
|
if target.Address.Family().IsDomain() && target.Address.Domain() == "v1.mux.cool" {
|
|
|
|
command = protocol.RequestCommandMux
|
|
|
|
}
|
|
|
|
|
2016-05-07 14:26:29 -04:00
|
|
|
request := &protocol.RequestHeader{
|
2016-07-23 07:17:51 -04:00
|
|
|
Version: encoding.Version,
|
2016-06-05 18:10:51 -04:00
|
|
|
User: rec.PickUser(),
|
2015-09-20 12:22:29 -04:00
|
|
|
Command: command,
|
2016-09-20 05:53:05 -04:00
|
|
|
Address: target.Address,
|
|
|
|
Port: target.Port,
|
2016-05-07 14:26:29 -04:00
|
|
|
Option: protocol.RequestOptionChunkStream,
|
2016-02-01 06:22:29 -05:00
|
|
|
}
|
2015-10-07 08:50:17 -04:00
|
|
|
|
2016-12-07 15:43:41 -05:00
|
|
|
rawAccount, err := request.User.GetTypedAccount()
|
|
|
|
if err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to get user account").Base(err).AtWarning()
|
2016-12-07 15:43:41 -05:00
|
|
|
}
|
|
|
|
account := rawAccount.(*vmess.InternalAccount)
|
|
|
|
request.Security = account.Security
|
|
|
|
|
2017-02-14 08:16:43 -05:00
|
|
|
if request.Security.Is(protocol.SecurityType_AES128_GCM) || request.Security.Is(protocol.SecurityType_NONE) || request.Security.Is(protocol.SecurityType_CHACHA20_POLY1305) {
|
|
|
|
request.Option.Set(protocol.RequestOptionChunkMasking)
|
|
|
|
}
|
|
|
|
|
2017-01-04 06:34:01 -05:00
|
|
|
input := outboundRay.OutboundInput()
|
|
|
|
output := outboundRay.OutboundOutput()
|
2016-01-05 06:08:16 -05:00
|
|
|
|
2016-07-23 07:17:51 -04:00
|
|
|
session := encoding.NewClientSession(protocol.DefaultIDHash)
|
2018-01-10 06:22:37 -05:00
|
|
|
sessionPolicy := v.v.PolicyManager().ForLevel(request.User.Level)
|
2016-02-27 10:41:21 -05:00
|
|
|
|
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-12-29 18:32:20 -05:00
|
|
|
requestDone := signal.ExecuteAsync(func() error {
|
2018-02-19 11:50:21 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly)
|
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
writer := buf.NewBufferedWriter(buf.NewWriter(conn))
|
2017-10-22 14:17:06 -04:00
|
|
|
if err := session.EncodeRequestHeader(request, writer); err != nil {
|
|
|
|
return newError("failed to encode request").Base(err).AtWarning()
|
|
|
|
}
|
2015-09-15 18:06:22 -04:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
bodyWriter := session.EncodeRequestBody(request, writer)
|
2017-01-04 06:34:01 -05:00
|
|
|
firstPayload, err := input.ReadTimeout(time.Millisecond * 500)
|
2017-03-27 05:14:55 -04:00
|
|
|
if err != nil && err != buf.ErrReadTimeout {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to get first payload").Base(err)
|
2017-01-04 06:34:01 -05:00
|
|
|
}
|
|
|
|
if !firstPayload.IsEmpty() {
|
2017-11-09 16:33:15 -05:00
|
|
|
if err := bodyWriter.WriteMultiBuffer(firstPayload); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("failed to write first payload").Base(err)
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
2017-01-04 06:34:01 -05:00
|
|
|
firstPayload.Release()
|
2016-12-29 18:32:20 -05:00
|
|
|
}
|
2017-01-04 06:34:01 -05:00
|
|
|
|
2017-03-27 05:26:44 -04:00
|
|
|
if err := writer.SetBuffered(false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-04-27 16:30:48 -04:00
|
|
|
if err := buf.Copy(input, bodyWriter, buf.UpdateActivity(timer)); err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
2016-08-15 06:23:35 -04:00
|
|
|
}
|
2016-05-12 20:20:07 -04:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
if request.Option.Has(protocol.RequestOptionChunkStream) {
|
2017-11-09 16:33:15 -05:00
|
|
|
if err := bodyWriter.WriteMultiBuffer(buf.MultiBuffer{}); err != nil {
|
2016-12-29 18:32:20 -05:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2018-02-19 11:50:21 -05:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
return nil
|
|
|
|
})
|
|
|
|
|
|
|
|
responseDone := signal.ExecuteAsync(func() error {
|
2018-01-10 06:22:37 -05:00
|
|
|
defer timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly)
|
2016-12-29 18:32:20 -05:00
|
|
|
|
2017-11-09 16:33:15 -05:00
|
|
|
reader := buf.NewBufferedReader(buf.NewReader(conn))
|
2016-12-29 18:32:20 -05:00
|
|
|
header, err := session.DecodeResponseHeader(reader)
|
2016-06-02 15:34:25 -04:00
|
|
|
if err != nil {
|
2018-02-19 11:50:21 -05:00
|
|
|
return newError("failed to read header").Base(err)
|
2016-06-02 15:34:25 -04:00
|
|
|
}
|
2016-12-29 18:32:20 -05:00
|
|
|
v.handleCommand(rec.Destination(), header.Command)
|
2015-09-10 18:24:18 -04:00
|
|
|
|
2016-12-29 18:32:20 -05:00
|
|
|
reader.SetBuffered(false)
|
|
|
|
bodyReader := session.DecodeResponseBody(request, reader)
|
2018-02-19 11:50:21 -05:00
|
|
|
|
2017-11-23 17:46:46 -05:00
|
|
|
return buf.Copy(bodyReader, output, buf.UpdateActivity(timer))
|
2016-12-29 18:32:20 -05:00
|
|
|
})
|
2015-10-03 05:34:01 -04:00
|
|
|
|
2017-01-28 15:24:46 -05:00
|
|
|
if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
|
2017-04-08 19:43:25 -04:00
|
|
|
return newError("connection ends").Base(err)
|
2016-06-01 16:09:34 -04:00
|
|
|
}
|
|
|
|
|
2017-01-26 14:46:44 -05:00
|
|
|
return nil
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|
2016-06-14 16:54:08 -04:00
|
|
|
|
|
|
|
func init() {
|
2017-01-12 18:56:21 -05:00
|
|
|
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
|
|
|
|
return New(ctx, config.(*Config))
|
|
|
|
}))
|
2015-09-10 18:24:18 -04:00
|
|
|
}
|