222 lines
6.7 KiB
Go
Raw Normal View History

2015-12-04 11:07:32 +00:00
package outbound
2015-09-11 00:24:18 +02:00
2021-02-17 04:31:50 +08:00
//go:generate go run github.com/v2fly/v2ray-core/v4/common/errors/errorgen
2017-04-09 01:43:25 +02:00
2015-09-11 00:24:18 +02:00
import (
"context"
"crypto/hmac"
"crypto/sha256"
"hash/crc64"
2017-01-13 23:42:39 +01:00
"time"
2021-02-17 04:31:50 +08: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/platform"
"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/proxy/vmess"
"github.com/v2fly/v2ray-core/v4/proxy/vmess/encoding"
"github.com/v2fly/v2ray-core/v4/transport"
"github.com/v2fly/v2ray-core/v4/transport/internet"
2015-09-11 00:24:18 +02:00
)
2017-02-13 13:16:37 +01:00
// Handler is an outbound connection handler for VMess protocol.
type Handler struct {
2018-10-21 10:27:13 +02:00
serverList *protocol.ServerList
serverPicker protocol.ServerPicker
policyManager policy.Manager
2015-09-11 00:24:18 +02:00
}
2018-05-25 23:20:24 +02:00
// New creates a new VMess outbound handler.
2017-02-13 13:16:37 +01:00
func New(ctx context.Context, config *Config) (*Handler, error) {
serverList := protocol.NewServerList()
for _, rec := range config.Receiver {
2020-08-26 19:35:33 +08:00
s, err := protocol.NewServerSpecFromPB(rec)
2018-08-27 00:11:32 +02:00
if err != nil {
return nil, newError("failed to parse server spec").Base(err)
}
serverList.AddServer(s)
}
2018-10-21 10:27:13 +02:00
v := core.MustFromContext(ctx)
2017-02-13 13:16:37 +01:00
handler := &Handler{
2018-10-21 10:27:13 +02:00
serverList: serverList,
serverPicker: protocol.NewRoundRobinServerPicker(serverList),
policyManager: v.GetFeature(policy.ManagerType()).(policy.Manager),
}
2017-11-27 22:09:30 +01:00
return handler, nil
}
2017-02-13 13:16:37 +01:00
// Process implements proxy.Outbound.Process().
2020-09-21 01:10:56 +00:00
func (h *Handler) Process(ctx context.Context, link *transport.Link, dialer internet.Dialer) error {
2016-07-25 16:48:09 +02:00
var rec *protocol.ServerSpec
2016-06-14 22:54:08 +02:00
var conn internet.Connection
2016-06-06 00:10:51 +02:00
2017-02-10 11:41:50 +01:00
err := retry.ExponentialBackoff(5, 200).On(func() error {
2020-09-21 01:10:56 +00:00
rec = h.serverPicker.PickServer()
rawConn, err := dialer.Dial(ctx, rec.Destination())
2016-06-06 00:10:51 +02:00
if err != nil {
return err
}
conn = rawConn
return nil
})
if err != nil {
2017-04-09 01:43:25 +02:00
return newError("failed to find an available destination").Base(err).AtWarning()
2016-06-06 00:10:51 +02:00
}
defer conn.Close()
outbound := session.OutboundFromContext(ctx)
if outbound == nil || !outbound.Target.IsValid() {
2017-04-09 01:43:25 +02:00
return newError("target not specified").AtError()
2017-02-09 22:49:38 +01:00
}
target := outbound.Target
newError("tunneling request to ", target, " via ", rec.Destination()).WriteToLog(session.ExportIDToError(ctx))
2015-09-11 00:24:18 +02:00
2016-05-07 20:26:29 +02:00
command := protocol.RequestCommandTCP
2017-01-13 23:42:39 +01:00
if target.Network == net.Network_UDP {
2016-05-07 20:26:29 +02:00
command = protocol.RequestCommandUDP
2015-09-20 18:22:29 +02:00
}
2018-02-12 00:06:51 +01:00
if target.Address.Family().IsDomain() && target.Address.Domain() == "v1.mux.cool" {
command = protocol.RequestCommandMux
}
user := rec.PickUser()
2016-05-07 20:26:29 +02:00
request := &protocol.RequestHeader{
2016-07-23 13:17:51 +02:00
Version: encoding.Version,
User: user,
2015-09-20 18:22:29 +02:00
Command: command,
2016-09-20 11:53:05 +02:00
Address: target.Address,
Port: target.Port,
2016-05-07 20:26:29 +02:00
Option: protocol.RequestOptionChunkStream,
2016-02-01 12:22:29 +01:00
}
2018-10-18 09:25:58 +02:00
account := request.User.Account.(*vmess.MemoryAccount)
2016-12-07 21:43:41 +01:00
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 14:16:43 +01:00
request.Option.Set(protocol.RequestOptionChunkMasking)
}
if shouldEnablePadding(request.Security) && request.Option.Has(protocol.RequestOptionChunkMasking) {
request.Option.Set(protocol.RequestOptionGlobalPadding)
}
if request.Security == protocol.SecurityType_ZERO {
request.Security = protocol.SecurityType_NONE
request.Option.Clear(protocol.RequestOptionChunkStream)
request.Option.Clear(protocol.RequestOptionChunkMasking)
}
2021-04-28 23:29:42 +01:00
if account.AuthenticatedLengthExperiment {
request.Option.Set(protocol.RequestOptionAuthenticatedLength)
}
2018-04-17 00:31:10 +02:00
input := link.Reader
output := link.Writer
2016-01-05 12:08:16 +01:00
2020-09-21 01:10:56 +00:00
isAEAD := false
if !aeadDisabled && len(account.AlterIDs) == 0 {
2020-09-21 01:10:56 +00:00
isAEAD = true
}
hashkdf := hmac.New(sha256.New, []byte("VMessBF"))
hashkdf.Write(account.ID.Bytes())
behaviorSeed := crc64.Checksum(hashkdf.Sum(nil), crc64.MakeTable(crc64.ISO))
session := encoding.NewClientSession(ctx, isAEAD, protocol.DefaultIDHash, int64(behaviorSeed))
2020-09-21 01:10:56 +00:00
sessionPolicy := h.policyManager.ForLevel(request.User.Level)
2016-02-27 16:41:21 +01:00
2017-11-15 00:36:14 +01:00
ctx, cancel := context.WithCancel(ctx)
timer := signal.CancelAfterInactivity(ctx, cancel, sessionPolicy.Timeouts.ConnectionIdle)
2017-01-31 12:42:05 +01:00
2018-04-11 16:45:09 +02:00
requestDone := func() error {
2018-02-19 17:50:21 +01:00
defer timer.SetTimeout(sessionPolicy.Timeouts.DownlinkOnly)
2017-11-09 22:33:15 +01: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-16 00:06:22 +02:00
2016-12-30 00:32:20 +01:00
bodyWriter := session.EncodeRequestBody(request, writer)
2018-08-21 23:09:45 +02:00
if err := buf.CopyOnceTimeout(input, bodyWriter, time.Millisecond*100); err != nil && err != buf.ErrNotTimeoutReader && err != buf.ErrReadTimeout {
return newError("failed to write first payload").Base(err)
2016-12-30 00:32:20 +01:00
}
2017-01-04 12:34:01 +01:00
2017-03-27 11:26:44 +02:00
if err := writer.SetBuffered(false); err != nil {
return err
}
2017-04-27 22:30:48 +02:00
if err := buf.Copy(input, bodyWriter, buf.UpdateActivity(timer)); err != nil {
2016-12-30 00:32:20 +01:00
return err
}
2016-05-12 17:20:07 -07:00
if request.Option.Has(protocol.RequestOptionChunkStream) && !account.NoTerminationSignal {
2017-11-09 22:33:15 +01:00
if err := bodyWriter.WriteMultiBuffer(buf.MultiBuffer{}); err != nil {
2016-12-30 00:32:20 +01:00
return err
}
}
2018-02-19 17:50:21 +01:00
2016-12-30 00:32:20 +01:00
return nil
2018-04-11 16:45:09 +02:00
}
2016-12-30 00:32:20 +01:00
2018-04-11 16:45:09 +02:00
responseDone := func() error {
defer timer.SetTimeout(sessionPolicy.Timeouts.UplinkOnly)
2016-12-30 00:32:20 +01:00
reader := &buf.BufferedReader{Reader: buf.NewReader(conn)}
2016-12-30 00:32:20 +01:00
header, err := session.DecodeResponseHeader(reader)
2016-06-02 21:34:25 +02:00
if err != nil {
2018-02-19 17:50:21 +01:00
return newError("failed to read header").Base(err)
2016-06-02 21:34:25 +02:00
}
2020-09-21 01:10:56 +00:00
h.handleCommand(rec.Destination(), header.Command)
2015-09-11 00:24:18 +02:00
2016-12-30 00:32:20 +01:00
bodyReader := session.DecodeResponseBody(request, reader)
2018-02-19 17:50:21 +01:00
2017-11-23 23:46:46 +01:00
return buf.Copy(bodyReader, output, buf.UpdateActivity(timer))
2018-04-11 16:45:09 +02:00
}
2015-10-03 11:34:01 +02:00
2021-05-20 05:28:52 +08:00
responseDonePost := task.OnSuccess(responseDone, task.Close(output))
2018-12-06 11:35:02 +01:00
if err := task.Run(ctx, requestDone, responseDonePost); err != nil {
2017-04-09 01:43:25 +02:00
return newError("connection ends").Base(err)
2016-06-01 22:09:34 +02:00
}
return nil
2015-09-11 00:24:18 +02:00
}
2016-06-14 22:54:08 +02:00
2018-07-18 10:40:28 +02:00
var (
enablePadding = false
aeadDisabled = false
2018-07-18 10:40:28 +02:00
)
func shouldEnablePadding(s protocol.SecurityType) bool {
return enablePadding || s == protocol.SecurityType_AES128_GCM || s == protocol.SecurityType_CHACHA20_POLY1305 || s == protocol.SecurityType_AUTO
}
2016-06-14 22:54:08 +02: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 10:40:28 +02:00
const defaultFlagValue = "NOT_DEFINED_AT_ALL"
2020-09-21 03:20:04 +00:00
2018-07-18 10:40:28 +02:00
paddingValue := platform.NewEnvFlag("v2ray.vmess.padding").GetValue(func() string { return defaultFlagValue })
if paddingValue != defaultFlagValue {
enablePadding = true
}
2020-09-21 03:20:04 +00:00
isAeadDisabled := platform.NewEnvFlag("v2ray.vmess.aead.disabled").GetValue(func() string { return defaultFlagValue })
if isAeadDisabled == "true" {
aeadDisabled = true
2020-09-21 03:20:04 +00:00
}
2015-09-11 00:24:18 +02:00
}