| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182 | 
							- package outbound
 
- import (
 
- 	"context"
 
- 	"runtime"
 
- 	"time"
 
- 	"v2ray.com/core/app"
 
- 	"v2ray.com/core/app/log"
 
- 	"v2ray.com/core/common"
 
- 	"v2ray.com/core/common/buf"
 
- 	"v2ray.com/core/common/errors"
 
- 	"v2ray.com/core/common/net"
 
- 	"v2ray.com/core/common/protocol"
 
- 	"v2ray.com/core/common/retry"
 
- 	"v2ray.com/core/common/signal"
 
- 	"v2ray.com/core/proxy"
 
- 	"v2ray.com/core/proxy/vmess"
 
- 	"v2ray.com/core/proxy/vmess/encoding"
 
- 	"v2ray.com/core/transport/internet"
 
- 	"v2ray.com/core/transport/ray"
 
- )
 
- // Handler is an outbound connection handler for VMess protocol.
 
- type Handler struct {
 
- 	serverList   *protocol.ServerList
 
- 	serverPicker protocol.ServerPicker
 
- }
 
- func New(ctx context.Context, config *Config) (*Handler, error) {
 
- 	space := app.SpaceFromContext(ctx)
 
- 	if space == nil {
 
- 		return nil, errors.New("VMess|Outbound: No space in context.")
 
- 	}
 
- 	serverList := protocol.NewServerList()
 
- 	for _, rec := range config.Receiver {
 
- 		serverList.AddServer(protocol.NewServerSpecFromPB(*rec))
 
- 	}
 
- 	handler := &Handler{
 
- 		serverList:   serverList,
 
- 		serverPicker: protocol.NewRoundRobinServerPicker(serverList),
 
- 	}
 
- 	return handler, nil
 
- }
 
- // Process implements proxy.Outbound.Process().
 
- func (v *Handler) Process(ctx context.Context, outboundRay ray.OutboundRay, dialer proxy.Dialer) error {
 
- 	var rec *protocol.ServerSpec
 
- 	var conn internet.Connection
 
- 	err := retry.ExponentialBackoff(5, 200).On(func() error {
 
- 		rec = v.serverPicker.PickServer()
 
- 		rawConn, err := dialer.Dial(ctx, rec.Destination())
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 		conn = rawConn
 
- 		return nil
 
- 	})
 
- 	if err != nil {
 
- 		return errors.Base(err).RequireUserAction().Message("VMess|Outbound: Failed to find an available destination.")
 
- 	}
 
- 	defer conn.Close()
 
- 	target, ok := proxy.TargetFromContext(ctx)
 
- 	if !ok {
 
- 		return errors.New("VMess|Outbound: Target not specified.")
 
- 	}
 
- 	log.Info("VMess|Outbound: Tunneling request to ", target, " via ", rec.Destination())
 
- 	command := protocol.RequestCommandTCP
 
- 	if target.Network == net.Network_UDP {
 
- 		command = protocol.RequestCommandUDP
 
- 	}
 
- 	request := &protocol.RequestHeader{
 
- 		Version: encoding.Version,
 
- 		User:    rec.PickUser(),
 
- 		Command: command,
 
- 		Address: target.Address,
 
- 		Port:    target.Port,
 
- 		Option:  protocol.RequestOptionChunkStream,
 
- 	}
 
- 	rawAccount, err := request.User.GetTypedAccount()
 
- 	if err != nil {
 
- 		return errors.Base(err).RequireUserAction().Message("VMess|Outbound: Failed to get user account.")
 
- 	}
 
- 	account := rawAccount.(*vmess.InternalAccount)
 
- 	request.Security = account.Security
 
- 	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)
 
- 	}
 
- 	conn.SetReusable(true)
 
- 	if conn.Reusable() { // Conn reuse may be disabled on transportation layer
 
- 		request.Option.Set(protocol.RequestOptionConnectionReuse)
 
- 	}
 
- 	input := outboundRay.OutboundInput()
 
- 	output := outboundRay.OutboundOutput()
 
- 	session := encoding.NewClientSession(protocol.DefaultIDHash)
 
- 	ctx, timer := signal.CancelAfterInactivity(ctx, time.Minute*2)
 
- 	requestDone := signal.ExecuteAsync(func() error {
 
- 		writer := buf.NewBufferedWriter(conn)
 
- 		session.EncodeRequestHeader(request, writer)
 
- 		bodyWriter := session.EncodeRequestBody(request, writer)
 
- 		firstPayload, err := input.ReadTimeout(time.Millisecond * 500)
 
- 		if err != nil && err != buf.ErrReadTimeout {
 
- 			return errors.Base(err).Message("VMess|Outbound: Failed to get first payload.")
 
- 		}
 
- 		if !firstPayload.IsEmpty() {
 
- 			if err := bodyWriter.Write(firstPayload); err != nil {
 
- 				return errors.Base(err).Message("VMess|Outbound: Failed to write first payload.")
 
- 			}
 
- 			firstPayload.Release()
 
- 		}
 
- 		if err := writer.SetBuffered(false); err != nil {
 
- 			return err
 
- 		}
 
- 		var inputReader buf.Reader = input
 
- 		if request.Command == protocol.RequestCommandTCP {
 
- 			inputReader = buf.NewMergingReader(input)
 
- 		}
 
- 		if err := buf.PipeUntilEOF(timer, inputReader, bodyWriter); err != nil {
 
- 			return err
 
- 		}
 
- 		if request.Option.Has(protocol.RequestOptionChunkStream) {
 
- 			if err := bodyWriter.Write(buf.NewLocal(8)); err != nil {
 
- 				return err
 
- 			}
 
- 		}
 
- 		return nil
 
- 	})
 
- 	responseDone := signal.ExecuteAsync(func() error {
 
- 		defer output.Close()
 
- 		reader := buf.NewBufferedReader(conn)
 
- 		header, err := session.DecodeResponseHeader(reader)
 
- 		if err != nil {
 
- 			return err
 
- 		}
 
- 		v.handleCommand(rec.Destination(), header.Command)
 
- 		conn.SetReusable(header.Option.Has(protocol.ResponseOptionConnectionReuse))
 
- 		reader.SetBuffered(false)
 
- 		bodyReader := session.DecodeResponseBody(request, reader)
 
- 		if err := buf.PipeUntilEOF(timer, bodyReader, output); err != nil {
 
- 			return err
 
- 		}
 
- 		return nil
 
- 	})
 
- 	if err := signal.ErrorOrFinish2(ctx, requestDone, responseDone); err != nil {
 
- 		log.Info("VMess|Outbound: Connection ending with ", err)
 
- 		conn.SetReusable(false)
 
- 		return err
 
- 	}
 
- 	runtime.KeepAlive(timer)
 
- 	return nil
 
- }
 
- func init() {
 
- 	common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, config interface{}) (interface{}, error) {
 
- 		return New(ctx, config.(*Config))
 
- 	}))
 
- }
 
 
  |