| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353 | 
							- package dialer
 
- import (
 
- 	"context"
 
- 	"errors"
 
- 	"net"
 
- 	"net/netip"
 
- 	"syscall"
 
- 	"time"
 
- 	"github.com/sagernet/sing-box/adapter"
 
- 	"github.com/sagernet/sing-box/common/conntrack"
 
- 	"github.com/sagernet/sing-box/common/listener"
 
- 	C "github.com/sagernet/sing-box/constant"
 
- 	"github.com/sagernet/sing-box/experimental/libbox/platform"
 
- 	"github.com/sagernet/sing-box/option"
 
- 	"github.com/sagernet/sing/common"
 
- 	"github.com/sagernet/sing/common/atomic"
 
- 	"github.com/sagernet/sing/common/control"
 
- 	E "github.com/sagernet/sing/common/exceptions"
 
- 	M "github.com/sagernet/sing/common/metadata"
 
- 	N "github.com/sagernet/sing/common/network"
 
- 	"github.com/sagernet/sing/service"
 
- )
 
- var (
 
- 	_ ParallelInterfaceDialer = (*DefaultDialer)(nil)
 
- 	_ WireGuardListener       = (*DefaultDialer)(nil)
 
- )
 
- type DefaultDialer struct {
 
- 	dialer4                tcpDialer
 
- 	dialer6                tcpDialer
 
- 	udpDialer4             net.Dialer
 
- 	udpDialer6             net.Dialer
 
- 	udpListener            net.ListenConfig
 
- 	udpAddr4               string
 
- 	udpAddr6               string
 
- 	netns                  string
 
- 	networkManager         adapter.NetworkManager
 
- 	networkStrategy        *C.NetworkStrategy
 
- 	defaultNetworkStrategy bool
 
- 	networkType            []C.InterfaceType
 
- 	fallbackNetworkType    []C.InterfaceType
 
- 	networkFallbackDelay   time.Duration
 
- 	networkLastFallback    atomic.TypedValue[time.Time]
 
- }
 
- func NewDefault(ctx context.Context, options option.DialerOptions) (*DefaultDialer, error) {
 
- 	networkManager := service.FromContext[adapter.NetworkManager](ctx)
 
- 	platformInterface := service.FromContext[platform.Interface](ctx)
 
- 	var (
 
- 		dialer                 net.Dialer
 
- 		listener               net.ListenConfig
 
- 		interfaceFinder        control.InterfaceFinder
 
- 		networkStrategy        *C.NetworkStrategy
 
- 		defaultNetworkStrategy bool
 
- 		networkType            []C.InterfaceType
 
- 		fallbackNetworkType    []C.InterfaceType
 
- 		networkFallbackDelay   time.Duration
 
- 	)
 
- 	if networkManager != nil {
 
- 		interfaceFinder = networkManager.InterfaceFinder()
 
- 	} else {
 
- 		interfaceFinder = control.NewDefaultInterfaceFinder()
 
- 	}
 
- 	if options.BindInterface != "" {
 
- 		bindFunc := control.BindToInterface(interfaceFinder, options.BindInterface, -1)
 
- 		dialer.Control = control.Append(dialer.Control, bindFunc)
 
- 		listener.Control = control.Append(listener.Control, bindFunc)
 
- 	}
 
- 	if options.RoutingMark > 0 {
 
- 		dialer.Control = control.Append(dialer.Control, control.RoutingMark(uint32(options.RoutingMark)))
 
- 		listener.Control = control.Append(listener.Control, control.RoutingMark(uint32(options.RoutingMark)))
 
- 	}
 
- 	if networkManager != nil {
 
- 		autoRedirectOutputMark := networkManager.AutoRedirectOutputMark()
 
- 		if autoRedirectOutputMark > 0 {
 
- 			if options.RoutingMark > 0 {
 
- 				return nil, E.New("`routing_mark` is conflict with `tun.auto_redirect` with `tun.route_[_exclude]_address_set")
 
- 			}
 
- 			dialer.Control = control.Append(dialer.Control, control.RoutingMark(autoRedirectOutputMark))
 
- 			listener.Control = control.Append(listener.Control, control.RoutingMark(autoRedirectOutputMark))
 
- 		}
 
- 	}
 
- 	disableDefaultBind := options.BindInterface != "" || options.Inet4BindAddress != nil || options.Inet6BindAddress != nil
 
- 	if disableDefaultBind || options.TCPFastOpen {
 
- 		if options.NetworkStrategy != nil || len(options.NetworkType) > 0 && options.FallbackNetworkType == nil && options.FallbackDelay == 0 {
 
- 			return nil, E.New("`network_strategy` is conflict with `bind_interface`, `inet4_bind_address`, `inet6_bind_address` and `tcp_fast_open`")
 
- 		}
 
- 	}
 
- 	if networkManager != nil {
 
- 		defaultOptions := networkManager.DefaultOptions()
 
- 		if !disableDefaultBind {
 
- 			if defaultOptions.BindInterface != "" {
 
- 				bindFunc := control.BindToInterface(networkManager.InterfaceFinder(), defaultOptions.BindInterface, -1)
 
- 				dialer.Control = control.Append(dialer.Control, bindFunc)
 
- 				listener.Control = control.Append(listener.Control, bindFunc)
 
- 			} else if networkManager.AutoDetectInterface() {
 
- 				if platformInterface != nil {
 
- 					networkStrategy = (*C.NetworkStrategy)(options.NetworkStrategy)
 
- 					if networkStrategy == nil {
 
- 						networkStrategy = common.Ptr(C.NetworkStrategyDefault)
 
- 						defaultNetworkStrategy = true
 
- 					}
 
- 					networkType = common.Map(options.NetworkType, option.InterfaceType.Build)
 
- 					fallbackNetworkType = common.Map(options.FallbackNetworkType, option.InterfaceType.Build)
 
- 					if networkStrategy == nil && len(networkType) == 0 && len(fallbackNetworkType) == 0 {
 
- 						networkStrategy = defaultOptions.NetworkStrategy
 
- 						networkType = defaultOptions.NetworkType
 
- 						fallbackNetworkType = defaultOptions.FallbackNetworkType
 
- 					}
 
- 					networkFallbackDelay = time.Duration(options.FallbackDelay)
 
- 					if networkFallbackDelay == 0 && defaultOptions.FallbackDelay != 0 {
 
- 						networkFallbackDelay = defaultOptions.FallbackDelay
 
- 					}
 
- 					bindFunc := networkManager.ProtectFunc()
 
- 					dialer.Control = control.Append(dialer.Control, bindFunc)
 
- 					listener.Control = control.Append(listener.Control, bindFunc)
 
- 				} else {
 
- 					bindFunc := networkManager.AutoDetectInterfaceFunc()
 
- 					dialer.Control = control.Append(dialer.Control, bindFunc)
 
- 					listener.Control = control.Append(listener.Control, bindFunc)
 
- 				}
 
- 			}
 
- 		}
 
- 		if options.RoutingMark == 0 && defaultOptions.RoutingMark != 0 {
 
- 			dialer.Control = control.Append(dialer.Control, control.RoutingMark(defaultOptions.RoutingMark))
 
- 			listener.Control = control.Append(listener.Control, control.RoutingMark(defaultOptions.RoutingMark))
 
- 		}
 
- 	}
 
- 	if options.ReuseAddr {
 
- 		listener.Control = control.Append(listener.Control, control.ReuseAddr())
 
- 	}
 
- 	if options.ProtectPath != "" {
 
- 		dialer.Control = control.Append(dialer.Control, control.ProtectPath(options.ProtectPath))
 
- 		listener.Control = control.Append(listener.Control, control.ProtectPath(options.ProtectPath))
 
- 	}
 
- 	if options.ConnectTimeout != 0 {
 
- 		dialer.Timeout = time.Duration(options.ConnectTimeout)
 
- 	} else {
 
- 		dialer.Timeout = C.TCPConnectTimeout
 
- 	}
 
- 	// TODO: Add an option to customize the keep alive period
 
- 	dialer.KeepAlive = C.TCPKeepAliveInitial
 
- 	dialer.Control = control.Append(dialer.Control, control.SetKeepAlivePeriod(C.TCPKeepAliveInitial, C.TCPKeepAliveInterval))
 
- 	var udpFragment bool
 
- 	if options.UDPFragment != nil {
 
- 		udpFragment = *options.UDPFragment
 
- 	} else {
 
- 		udpFragment = options.UDPFragmentDefault
 
- 	}
 
- 	if !udpFragment {
 
- 		dialer.Control = control.Append(dialer.Control, control.DisableUDPFragment())
 
- 		listener.Control = control.Append(listener.Control, control.DisableUDPFragment())
 
- 	}
 
- 	var (
 
- 		dialer4    = dialer
 
- 		udpDialer4 = dialer
 
- 		udpAddr4   string
 
- 	)
 
- 	if options.Inet4BindAddress != nil {
 
- 		bindAddr := options.Inet4BindAddress.Build(netip.IPv4Unspecified())
 
- 		dialer4.LocalAddr = &net.TCPAddr{IP: bindAddr.AsSlice()}
 
- 		udpDialer4.LocalAddr = &net.UDPAddr{IP: bindAddr.AsSlice()}
 
- 		udpAddr4 = M.SocksaddrFrom(bindAddr, 0).String()
 
- 	}
 
- 	var (
 
- 		dialer6    = dialer
 
- 		udpDialer6 = dialer
 
- 		udpAddr6   string
 
- 	)
 
- 	if options.Inet6BindAddress != nil {
 
- 		bindAddr := options.Inet6BindAddress.Build(netip.IPv6Unspecified())
 
- 		dialer6.LocalAddr = &net.TCPAddr{IP: bindAddr.AsSlice()}
 
- 		udpDialer6.LocalAddr = &net.UDPAddr{IP: bindAddr.AsSlice()}
 
- 		udpAddr6 = M.SocksaddrFrom(bindAddr, 0).String()
 
- 	}
 
- 	if options.TCPMultiPath {
 
- 		if !go121Available {
 
- 			return nil, E.New("MultiPath TCP requires go1.21, please recompile your binary.")
 
- 		}
 
- 		setMultiPathTCP(&dialer4)
 
- 	}
 
- 	tcpDialer4, err := newTCPDialer(dialer4, options.TCPFastOpen)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	tcpDialer6, err := newTCPDialer(dialer6, options.TCPFastOpen)
 
- 	if err != nil {
 
- 		return nil, err
 
- 	}
 
- 	return &DefaultDialer{
 
- 		dialer4:                tcpDialer4,
 
- 		dialer6:                tcpDialer6,
 
- 		udpDialer4:             udpDialer4,
 
- 		udpDialer6:             udpDialer6,
 
- 		udpListener:            listener,
 
- 		udpAddr4:               udpAddr4,
 
- 		udpAddr6:               udpAddr6,
 
- 		netns:                  options.NetNs,
 
- 		networkManager:         networkManager,
 
- 		networkStrategy:        networkStrategy,
 
- 		defaultNetworkStrategy: defaultNetworkStrategy,
 
- 		networkType:            networkType,
 
- 		fallbackNetworkType:    fallbackNetworkType,
 
- 		networkFallbackDelay:   networkFallbackDelay,
 
- 	}, nil
 
- }
 
- func (d *DefaultDialer) DialContext(ctx context.Context, network string, address M.Socksaddr) (net.Conn, error) {
 
- 	if !address.IsValid() {
 
- 		return nil, E.New("invalid address")
 
- 	} else if address.IsFqdn() {
 
- 		return nil, E.New("domain not resolved")
 
- 	}
 
- 	if d.networkStrategy == nil {
 
- 		return trackConn(listener.ListenNetworkNamespace[net.Conn](d.netns, func() (net.Conn, error) {
 
- 			switch N.NetworkName(network) {
 
- 			case N.NetworkUDP:
 
- 				if !address.IsIPv6() {
 
- 					return d.udpDialer4.DialContext(ctx, network, address.String())
 
- 				} else {
 
- 					return d.udpDialer6.DialContext(ctx, network, address.String())
 
- 				}
 
- 			}
 
- 			if !address.IsIPv6() {
 
- 				return DialSlowContext(&d.dialer4, ctx, network, address)
 
- 			} else {
 
- 				return DialSlowContext(&d.dialer6, ctx, network, address)
 
- 			}
 
- 		}))
 
- 	} else {
 
- 		return d.DialParallelInterface(ctx, network, address, d.networkStrategy, d.networkType, d.fallbackNetworkType, d.networkFallbackDelay)
 
- 	}
 
- }
 
- func (d *DefaultDialer) DialParallelInterface(ctx context.Context, network string, address M.Socksaddr, strategy *C.NetworkStrategy, interfaceType []C.InterfaceType, fallbackInterfaceType []C.InterfaceType, fallbackDelay time.Duration) (net.Conn, error) {
 
- 	if strategy == nil {
 
- 		strategy = d.networkStrategy
 
- 	}
 
- 	if strategy == nil {
 
- 		return d.DialContext(ctx, network, address)
 
- 	}
 
- 	if len(interfaceType) == 0 {
 
- 		interfaceType = d.networkType
 
- 	}
 
- 	if len(fallbackInterfaceType) == 0 {
 
- 		fallbackInterfaceType = d.fallbackNetworkType
 
- 	}
 
- 	if fallbackDelay == 0 {
 
- 		fallbackDelay = d.networkFallbackDelay
 
- 	}
 
- 	var dialer net.Dialer
 
- 	if N.NetworkName(network) == N.NetworkTCP {
 
- 		dialer = dialerFromTCPDialer(d.dialer4)
 
- 	} else {
 
- 		dialer = d.udpDialer4
 
- 	}
 
- 	fastFallback := time.Now().Sub(d.networkLastFallback.Load()) < C.TCPTimeout
 
- 	var (
 
- 		conn      net.Conn
 
- 		isPrimary bool
 
- 		err       error
 
- 	)
 
- 	if !fastFallback {
 
- 		conn, isPrimary, err = d.dialParallelInterface(ctx, dialer, network, address.String(), *strategy, interfaceType, fallbackInterfaceType, fallbackDelay)
 
- 	} else {
 
- 		conn, isPrimary, err = d.dialParallelInterfaceFastFallback(ctx, dialer, network, address.String(), *strategy, interfaceType, fallbackInterfaceType, fallbackDelay, d.networkLastFallback.Store)
 
- 	}
 
- 	if err != nil {
 
- 		// bind interface failed on legacy xiaomi systems
 
- 		if d.defaultNetworkStrategy && errors.Is(err, syscall.EPERM) {
 
- 			d.networkStrategy = nil
 
- 			return d.DialContext(ctx, network, address)
 
- 		} else {
 
- 			return nil, err
 
- 		}
 
- 	}
 
- 	if !fastFallback && !isPrimary {
 
- 		d.networkLastFallback.Store(time.Now())
 
- 	}
 
- 	return trackConn(conn, nil)
 
- }
 
- func (d *DefaultDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
 
- 	if d.networkStrategy == nil {
 
- 		return trackPacketConn(listener.ListenNetworkNamespace[net.PacketConn](d.netns, func() (net.PacketConn, error) {
 
- 			if destination.IsIPv6() {
 
- 				return d.udpListener.ListenPacket(ctx, N.NetworkUDP, d.udpAddr6)
 
- 			} else if destination.IsIPv4() && !destination.Addr.IsUnspecified() {
 
- 				return d.udpListener.ListenPacket(ctx, N.NetworkUDP+"4", d.udpAddr4)
 
- 			} else {
 
- 				return d.udpListener.ListenPacket(ctx, N.NetworkUDP, d.udpAddr4)
 
- 			}
 
- 		}))
 
- 	} else {
 
- 		return d.ListenSerialInterfacePacket(ctx, destination, d.networkStrategy, d.networkType, d.fallbackNetworkType, d.networkFallbackDelay)
 
- 	}
 
- }
 
- func (d *DefaultDialer) ListenSerialInterfacePacket(ctx context.Context, destination M.Socksaddr, strategy *C.NetworkStrategy, interfaceType []C.InterfaceType, fallbackInterfaceType []C.InterfaceType, fallbackDelay time.Duration) (net.PacketConn, error) {
 
- 	if strategy == nil {
 
- 		strategy = d.networkStrategy
 
- 	}
 
- 	if strategy == nil {
 
- 		return d.ListenPacket(ctx, destination)
 
- 	}
 
- 	if len(interfaceType) == 0 {
 
- 		interfaceType = d.networkType
 
- 	}
 
- 	if len(fallbackInterfaceType) == 0 {
 
- 		fallbackInterfaceType = d.fallbackNetworkType
 
- 	}
 
- 	if fallbackDelay == 0 {
 
- 		fallbackDelay = d.networkFallbackDelay
 
- 	}
 
- 	network := N.NetworkUDP
 
- 	if destination.IsIPv4() && !destination.Addr.IsUnspecified() {
 
- 		network += "4"
 
- 	}
 
- 	packetConn, err := d.listenSerialInterfacePacket(ctx, d.udpListener, network, "", *strategy, interfaceType, fallbackInterfaceType, fallbackDelay)
 
- 	if err != nil {
 
- 		// bind interface failed on legacy xiaomi systems
 
- 		if d.defaultNetworkStrategy && errors.Is(err, syscall.EPERM) {
 
- 			d.networkStrategy = nil
 
- 			return d.ListenPacket(ctx, destination)
 
- 		} else {
 
- 			return nil, err
 
- 		}
 
- 	}
 
- 	return trackPacketConn(packetConn, nil)
 
- }
 
- func (d *DefaultDialer) ListenPacketCompat(network, address string) (net.PacketConn, error) {
 
- 	return d.udpListener.ListenPacket(context.Background(), network, address)
 
- }
 
- func trackConn(conn net.Conn, err error) (net.Conn, error) {
 
- 	if !conntrack.Enabled || err != nil {
 
- 		return conn, err
 
- 	}
 
- 	return conntrack.NewConn(conn)
 
- }
 
- func trackPacketConn(conn net.PacketConn, err error) (net.PacketConn, error) {
 
- 	if !conntrack.Enabled || err != nil {
 
- 		return conn, err
 
- 	}
 
- 	return conntrack.NewPacketConn(conn)
 
- }
 
 
  |