v2fly/proxy/vmess/outbound/outbound.go

191 lines
5.5 KiB
Go
Raw Normal View History

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