2020-11-25 13:01:53 +02:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2022-06-01 06:11:53 +03:00
|
|
|
"errors"
|
|
|
|
"io"
|
|
|
|
"os"
|
2020-11-25 13:01:53 +02:00
|
|
|
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/app/proxyman"
|
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/mux"
|
|
|
|
"github.com/xtls/xray-core/common/net"
|
2020-12-27 21:20:39 +02:00
|
|
|
"github.com/xtls/xray-core/common/net/cnc"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/session"
|
|
|
|
"github.com/xtls/xray-core/core"
|
|
|
|
"github.com/xtls/xray-core/features/outbound"
|
|
|
|
"github.com/xtls/xray-core/features/policy"
|
|
|
|
"github.com/xtls/xray-core/features/stats"
|
|
|
|
"github.com/xtls/xray-core/proxy"
|
|
|
|
"github.com/xtls/xray-core/transport"
|
|
|
|
"github.com/xtls/xray-core/transport/internet"
|
2021-12-15 02:28:47 +02:00
|
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/transport/internet/tls"
|
|
|
|
"github.com/xtls/xray-core/transport/pipe"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func getStatCounter(v *core.Instance, tag string) (stats.Counter, stats.Counter) {
|
|
|
|
var uplinkCounter stats.Counter
|
|
|
|
var downlinkCounter stats.Counter
|
|
|
|
|
|
|
|
policy := v.GetFeature(policy.ManagerType()).(policy.Manager)
|
|
|
|
if len(tag) > 0 && policy.ForSystem().Stats.OutboundUplink {
|
|
|
|
statsManager := v.GetFeature(stats.ManagerType()).(stats.Manager)
|
|
|
|
name := "outbound>>>" + tag + ">>>traffic>>>uplink"
|
|
|
|
c, _ := stats.GetOrRegisterCounter(statsManager, name)
|
|
|
|
if c != nil {
|
|
|
|
uplinkCounter = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if len(tag) > 0 && policy.ForSystem().Stats.OutboundDownlink {
|
|
|
|
statsManager := v.GetFeature(stats.ManagerType()).(stats.Manager)
|
|
|
|
name := "outbound>>>" + tag + ">>>traffic>>>downlink"
|
|
|
|
c, _ := stats.GetOrRegisterCounter(statsManager, name)
|
|
|
|
if c != nil {
|
|
|
|
downlinkCounter = c
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return uplinkCounter, downlinkCounter
|
|
|
|
}
|
|
|
|
|
|
|
|
// Handler is an implements of outbound.Handler.
|
|
|
|
type Handler struct {
|
|
|
|
tag string
|
|
|
|
senderSettings *proxyman.SenderConfig
|
|
|
|
streamSettings *internet.MemoryStreamConfig
|
|
|
|
proxy proxy.Outbound
|
|
|
|
outboundManager outbound.Manager
|
|
|
|
mux *mux.ClientManager
|
2023-04-10 05:36:07 +03:00
|
|
|
xudp *mux.ClientManager
|
2023-04-15 01:51:18 +03:00
|
|
|
udp443 string
|
2020-11-25 13:01:53 +02:00
|
|
|
uplinkCounter stats.Counter
|
|
|
|
downlinkCounter stats.Counter
|
|
|
|
}
|
|
|
|
|
2022-01-13 04:51:47 +02:00
|
|
|
// NewHandler creates a new Handler based on the given configuration.
|
2020-11-25 13:01:53 +02:00
|
|
|
func NewHandler(ctx context.Context, config *core.OutboundHandlerConfig) (outbound.Handler, error) {
|
|
|
|
v := core.MustFromContext(ctx)
|
|
|
|
uplinkCounter, downlinkCounter := getStatCounter(v, config.Tag)
|
|
|
|
h := &Handler{
|
|
|
|
tag: config.Tag,
|
|
|
|
outboundManager: v.GetFeature(outbound.ManagerType()).(outbound.Manager),
|
|
|
|
uplinkCounter: uplinkCounter,
|
|
|
|
downlinkCounter: downlinkCounter,
|
|
|
|
}
|
|
|
|
|
|
|
|
if config.SenderSettings != nil {
|
|
|
|
senderSettings, err := config.SenderSettings.GetInstance()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
switch s := senderSettings.(type) {
|
|
|
|
case *proxyman.SenderConfig:
|
|
|
|
h.senderSettings = s
|
|
|
|
mss, err := internet.ToMemoryStreamConfig(s.StreamSettings)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to parse stream settings").Base(err).AtWarning()
|
|
|
|
}
|
|
|
|
h.streamSettings = mss
|
|
|
|
default:
|
|
|
|
return nil, newError("settings is not SenderConfig")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
proxyConfig, err := config.ProxySettings.GetInstance()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
rawProxyHandler, err := common.CreateObject(ctx, proxyConfig)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
proxyHandler, ok := rawProxyHandler.(proxy.Outbound)
|
|
|
|
if !ok {
|
|
|
|
return nil, newError("not an outbound handler")
|
|
|
|
}
|
|
|
|
|
|
|
|
if h.senderSettings != nil && h.senderSettings.MultiplexSettings != nil {
|
2023-04-10 05:36:07 +03:00
|
|
|
if config := h.senderSettings.MultiplexSettings; config.Enabled {
|
|
|
|
if config.Concurrency < 0 {
|
|
|
|
h.mux = &mux.ClientManager{Enabled: false}
|
|
|
|
}
|
|
|
|
if config.Concurrency == 0 {
|
|
|
|
config.Concurrency = 8 // same as before
|
|
|
|
}
|
|
|
|
if config.Concurrency > 0 {
|
|
|
|
h.mux = &mux.ClientManager{
|
|
|
|
Enabled: true,
|
|
|
|
Picker: &mux.IncrementalWorkerPicker{
|
|
|
|
Factory: &mux.DialingWorkerFactory{
|
|
|
|
Proxy: proxyHandler,
|
|
|
|
Dialer: h,
|
|
|
|
Strategy: mux.ClientStrategy{
|
|
|
|
MaxConcurrency: uint32(config.Concurrency),
|
|
|
|
MaxConnection: 128,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if config.XudpConcurrency < 0 {
|
|
|
|
h.xudp = &mux.ClientManager{Enabled: false}
|
|
|
|
}
|
|
|
|
if config.XudpConcurrency == 0 {
|
|
|
|
h.xudp = nil // same as before
|
|
|
|
}
|
|
|
|
if config.XudpConcurrency > 0 {
|
|
|
|
h.xudp = &mux.ClientManager{
|
|
|
|
Enabled: true,
|
|
|
|
Picker: &mux.IncrementalWorkerPicker{
|
|
|
|
Factory: &mux.DialingWorkerFactory{
|
|
|
|
Proxy: proxyHandler,
|
|
|
|
Dialer: h,
|
|
|
|
Strategy: mux.ClientStrategy{
|
|
|
|
MaxConcurrency: uint32(config.XudpConcurrency),
|
|
|
|
MaxConnection: 128,
|
|
|
|
},
|
|
|
|
},
|
2020-11-25 13:01:53 +02:00
|
|
|
},
|
2023-04-10 05:36:07 +03:00
|
|
|
}
|
|
|
|
}
|
2023-04-15 01:51:18 +03:00
|
|
|
h.udp443 = config.XudpProxyUDP443
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
h.proxy = proxyHandler
|
|
|
|
return h, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tag implements outbound.Handler.
|
|
|
|
func (h *Handler) Tag() string {
|
|
|
|
return h.tag
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dispatch implements proxy.Outbound.Dispatch.
|
|
|
|
func (h *Handler) Dispatch(ctx context.Context, link *transport.Link) {
|
2023-04-10 05:36:07 +03:00
|
|
|
if h.mux != nil {
|
|
|
|
test := func(err error) {
|
|
|
|
if err != nil {
|
|
|
|
err := newError("failed to process mux outbound traffic").Base(err)
|
|
|
|
session.SubmitOutboundErrorToOriginator(ctx, err)
|
|
|
|
err.WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
common.Interrupt(link.Writer)
|
|
|
|
}
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
2023-04-15 01:51:18 +03:00
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
|
if outbound.Target.Network == net.Network_UDP && outbound.Target.Port == 443 {
|
|
|
|
switch h.udp443 {
|
|
|
|
case "reject":
|
|
|
|
test(newError("XUDP rejected UDP/443 traffic").AtInfo())
|
|
|
|
return
|
|
|
|
case "skip":
|
|
|
|
goto out
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if h.xudp != nil && outbound.Target.Network == net.Network_UDP {
|
2023-04-10 05:36:07 +03:00
|
|
|
if !h.xudp.Enabled {
|
|
|
|
goto out
|
2022-06-01 06:11:53 +03:00
|
|
|
}
|
2023-04-10 05:36:07 +03:00
|
|
|
test(h.xudp.Dispatch(ctx, link))
|
|
|
|
return
|
2022-06-01 06:11:53 +03:00
|
|
|
}
|
2023-04-10 05:36:07 +03:00
|
|
|
if h.mux.Enabled {
|
|
|
|
test(h.mux.Dispatch(ctx, link))
|
|
|
|
return
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
}
|
2023-04-10 05:36:07 +03:00
|
|
|
out:
|
|
|
|
err := h.proxy.Process(ctx, link, h)
|
|
|
|
if err != nil {
|
|
|
|
if errors.Is(err, io.EOF) || errors.Is(err, io.ErrClosedPipe) || errors.Is(err, context.Canceled) {
|
|
|
|
err = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
// Ensure outbound ray is properly closed.
|
|
|
|
err := newError("failed to process outbound traffic").Base(err)
|
|
|
|
session.SubmitOutboundErrorToOriginator(ctx, err)
|
|
|
|
err.WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
common.Interrupt(link.Writer)
|
|
|
|
} else {
|
2023-04-23 14:31:41 +03:00
|
|
|
common.Close(link.Writer)
|
2023-04-10 05:36:07 +03:00
|
|
|
}
|
|
|
|
common.Interrupt(link.Reader)
|
2020-11-25 13:01:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Address implements internet.Dialer.
|
|
|
|
func (h *Handler) Address() net.Address {
|
|
|
|
if h.senderSettings == nil || h.senderSettings.Via == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return h.senderSettings.Via.AsAddress()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dial implements internet.Dialer.
|
2021-09-20 15:11:21 +03:00
|
|
|
func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connection, error) {
|
2020-11-25 13:01:53 +02:00
|
|
|
if h.senderSettings != nil {
|
|
|
|
if h.senderSettings.ProxySettings.HasTag() {
|
|
|
|
tag := h.senderSettings.ProxySettings.Tag
|
|
|
|
handler := h.outboundManager.GetHandler(tag)
|
|
|
|
if handler != nil {
|
|
|
|
newError("proxying to ", tag, " for dest ", dest).AtDebug().WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
ctx = session.ContextWithOutbound(ctx, &session.Outbound{
|
|
|
|
Target: dest,
|
|
|
|
})
|
|
|
|
|
|
|
|
opts := pipe.OptionsFromContext(ctx)
|
|
|
|
uplinkReader, uplinkWriter := pipe.New(opts...)
|
|
|
|
downlinkReader, downlinkWriter := pipe.New(opts...)
|
|
|
|
|
|
|
|
go handler.Dispatch(ctx, &transport.Link{Reader: uplinkReader, Writer: downlinkWriter})
|
2020-12-27 21:20:39 +02:00
|
|
|
conn := cnc.NewConnection(cnc.ConnectionInputMulti(uplinkWriter), cnc.ConnectionOutputMulti(downlinkReader))
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
if config := tls.ConfigFromStreamSettings(h.streamSettings); config != nil {
|
|
|
|
tlsConfig := config.GetTLSConfig(tls.WithDestination(dest))
|
|
|
|
conn = tls.Client(conn, tlsConfig)
|
|
|
|
}
|
|
|
|
|
|
|
|
return h.getStatCouterConnection(conn), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
newError("failed to get outbound handler with tag: ", tag).AtWarning().WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
}
|
|
|
|
|
|
|
|
if h.senderSettings.Via != nil {
|
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
|
if outbound == nil {
|
|
|
|
outbound = new(session.Outbound)
|
|
|
|
ctx = session.ContextWithOutbound(ctx, outbound)
|
|
|
|
}
|
|
|
|
outbound.Gateway = h.senderSettings.Via.AsAddress()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-01 06:12:43 +03:00
|
|
|
if conn, err := h.getUoTConnection(ctx, dest); err != os.ErrInvalid {
|
|
|
|
return conn, err
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
conn, err := internet.Dial(ctx, dest, h.streamSettings)
|
|
|
|
return h.getStatCouterConnection(conn), err
|
|
|
|
}
|
|
|
|
|
2021-09-20 15:11:21 +03:00
|
|
|
func (h *Handler) getStatCouterConnection(conn stat.Connection) stat.Connection {
|
2020-11-25 13:01:53 +02:00
|
|
|
if h.uplinkCounter != nil || h.downlinkCounter != nil {
|
2021-09-20 15:11:21 +03:00
|
|
|
return &stat.CounterConnection{
|
2020-11-25 13:01:53 +02:00
|
|
|
Connection: conn,
|
|
|
|
ReadCounter: h.downlinkCounter,
|
|
|
|
WriteCounter: h.uplinkCounter,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return conn
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetOutbound implements proxy.GetOutbound.
|
|
|
|
func (h *Handler) GetOutbound() proxy.Outbound {
|
|
|
|
return h.proxy
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start implements common.Runnable.
|
|
|
|
func (h *Handler) Start() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Close implements common.Closable.
|
|
|
|
func (h *Handler) Close() error {
|
|
|
|
common.Close(h.mux)
|
|
|
|
return nil
|
|
|
|
}
|