2020-11-25 11:01:53 +00:00
|
|
|
package outbound
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
2021-09-13 06:50:18 +00:00
|
|
|
"github.com/xtls/xray-core/features/dns"
|
2021-09-20 12:11:21 +00:00
|
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
|
|
|
|
2020-12-04 01:36:16 +00: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 19:20:39 +00:00
|
|
|
"github.com/xtls/xray-core/common/net/cnc"
|
2020-12-04 01:36:16 +00: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"
|
|
|
|
"github.com/xtls/xray-core/transport/internet/tls"
|
|
|
|
"github.com/xtls/xray-core/transport/pipe"
|
2020-11-25 11:01:53 +00: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
|
2021-09-13 06:50:18 +00:00
|
|
|
dnsClient dns.Client
|
2020-11-25 11:01:53 +00:00
|
|
|
mux *mux.ClientManager
|
|
|
|
uplinkCounter stats.Counter
|
|
|
|
downlinkCounter stats.Counter
|
|
|
|
}
|
|
|
|
|
|
|
|
// NewHandler create a new Handler based on the given configuration.
|
|
|
|
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),
|
2021-09-13 06:50:18 +00:00
|
|
|
dnsClient: v.GetFeature(dns.ClientType()).(dns.Client),
|
2020-11-25 11:01:53 +00:00
|
|
|
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 {
|
|
|
|
config := h.senderSettings.MultiplexSettings
|
|
|
|
if config.Concurrency < 1 || config.Concurrency > 1024 {
|
|
|
|
return nil, newError("invalid mux concurrency: ", config.Concurrency).AtWarning()
|
|
|
|
}
|
|
|
|
h.mux = &mux.ClientManager{
|
|
|
|
Enabled: h.senderSettings.MultiplexSettings.Enabled,
|
|
|
|
Picker: &mux.IncrementalWorkerPicker{
|
|
|
|
Factory: &mux.DialingWorkerFactory{
|
|
|
|
Proxy: proxyHandler,
|
|
|
|
Dialer: h,
|
|
|
|
Strategy: mux.ClientStrategy{
|
|
|
|
MaxConcurrency: config.Concurrency,
|
|
|
|
MaxConnection: 128,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if h.mux != nil && (h.mux.Enabled || session.MuxPreferedFromContext(ctx)) {
|
|
|
|
if err := h.mux.Dispatch(ctx, link); err != nil {
|
|
|
|
newError("failed to process mux outbound traffic").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
common.Interrupt(link.Writer)
|
|
|
|
}
|
|
|
|
} else {
|
2021-09-13 06:50:18 +00:00
|
|
|
outbound := session.OutboundFromContext(ctx)
|
|
|
|
destination := outbound.Target
|
|
|
|
var domainString string
|
|
|
|
if destination.Address.Family().IsDomain() {
|
|
|
|
domainString = destination.Address.Domain()
|
|
|
|
} else if outbound.RouteTarget.Address != nil && outbound.RouteTarget.Address.Family().IsDomain() {
|
|
|
|
domainString = outbound.RouteTarget.Address.Domain()
|
|
|
|
} else {
|
|
|
|
domainString = ""
|
|
|
|
}
|
|
|
|
|
|
|
|
if h.senderSettings != nil && h.senderSettings.DomainStrategy != proxyman.DomainStrategy_AS_IS && domainString != "" {
|
|
|
|
var ips []net.IP
|
|
|
|
var err error
|
|
|
|
|
|
|
|
option := dns.IPOption{
|
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: true,
|
|
|
|
FakeEnable: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
switch h.senderSettings.DomainStrategy {
|
|
|
|
case proxyman.DomainStrategy_USE_IP4:
|
|
|
|
option.IPv6Enable = false
|
|
|
|
case proxyman.DomainStrategy_USE_IP6:
|
|
|
|
option.IPv4Enable = false
|
|
|
|
}
|
|
|
|
ips, err = h.dnsClient.LookupIP(domainString, option)
|
|
|
|
if err == nil {
|
|
|
|
switch h.senderSettings.DomainStrategy {
|
|
|
|
case proxyman.DomainStrategy_PREFER_IP4:
|
|
|
|
ips = reorderAddresses(ips, false)
|
|
|
|
case proxyman.DomainStrategy_PREFER_IP6:
|
|
|
|
ips = reorderAddresses(ips, true)
|
|
|
|
}
|
|
|
|
destination.Address = net.IPAddress(ips[0])
|
|
|
|
outbound.Target = destination
|
|
|
|
}
|
|
|
|
}
|
|
|
|
err := h.proxy.Process(ctx, link, h)
|
|
|
|
if err != nil {
|
2020-11-25 11:01:53 +00:00
|
|
|
// Ensure outbound ray is properly closed.
|
|
|
|
newError("failed to process outbound traffic").Base(err).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
common.Interrupt(link.Writer)
|
|
|
|
} else {
|
|
|
|
common.Must(common.Close(link.Writer))
|
|
|
|
}
|
|
|
|
common.Interrupt(link.Reader)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-13 06:50:18 +00:00
|
|
|
func reorderAddresses(ips []net.IP, preferIPv6 bool) []net.IP {
|
|
|
|
var result []net.IP
|
|
|
|
for i := 0; i < 2; i++ {
|
|
|
|
for _, ip := range ips {
|
|
|
|
if (preferIPv6 == (i == 0)) == (ip.To4() == nil) {
|
|
|
|
result = append(result, ip)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return result
|
|
|
|
}
|
|
|
|
|
2020-11-25 11:01:53 +00: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 12:11:21 +00:00
|
|
|
func (h *Handler) Dial(ctx context.Context, dest net.Destination) (stat.Connection, error) {
|
2020-11-25 11:01:53 +00: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 19:20:39 +00:00
|
|
|
conn := cnc.NewConnection(cnc.ConnectionInputMulti(uplinkWriter), cnc.ConnectionOutputMulti(downlinkReader))
|
2020-11-25 11:01:53 +00: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()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
conn, err := internet.Dial(ctx, dest, h.streamSettings)
|
|
|
|
return h.getStatCouterConnection(conn), err
|
|
|
|
}
|
|
|
|
|
2021-09-20 12:11:21 +00:00
|
|
|
func (h *Handler) getStatCouterConnection(conn stat.Connection) stat.Connection {
|
2020-11-25 11:01:53 +00:00
|
|
|
if h.uplinkCounter != nil || h.downlinkCounter != nil {
|
2021-09-20 12:11:21 +00:00
|
|
|
return &stat.CounterConnection{
|
2020-11-25 11:01:53 +00: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
|
|
|
|
}
|