2020-11-25 13:01:53 +02:00
|
|
|
package internet
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2021-06-18 14:28:02 +03:00
|
|
|
"github.com/xtls/xray-core/common"
|
|
|
|
"github.com/xtls/xray-core/common/dice"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
2021-06-18 14:28:02 +03:00
|
|
|
"github.com/xtls/xray-core/common/net/cnc"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/session"
|
2021-06-18 14:28:02 +03:00
|
|
|
"github.com/xtls/xray-core/features/dns"
|
|
|
|
"github.com/xtls/xray-core/features/outbound"
|
|
|
|
"github.com/xtls/xray-core/transport"
|
2021-12-15 02:28:47 +02:00
|
|
|
"github.com/xtls/xray-core/transport/internet/stat"
|
2021-06-18 14:28:02 +03:00
|
|
|
"github.com/xtls/xray-core/transport/pipe"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// Dialer is the interface for dialing outbound connections.
|
|
|
|
type Dialer interface {
|
|
|
|
// Dial dials a system connection to the given destination.
|
2021-09-20 15:11:21 +03:00
|
|
|
Dial(ctx context.Context, destination net.Destination) (stat.Connection, error)
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
// Address returns the address used by this Dialer. Maybe nil if not known.
|
|
|
|
Address() net.Address
|
|
|
|
}
|
|
|
|
|
|
|
|
// dialFunc is an interface to dial network connection to a specific destination.
|
2021-09-20 15:11:21 +03:00
|
|
|
type dialFunc func(ctx context.Context, dest net.Destination, streamSettings *MemoryStreamConfig) (stat.Connection, error)
|
2020-11-25 13:01:53 +02:00
|
|
|
|
2021-10-19 19:57:14 +03:00
|
|
|
var transportDialerCache = make(map[string]dialFunc)
|
2020-11-25 13:01:53 +02:00
|
|
|
|
|
|
|
// RegisterTransportDialer registers a Dialer with given name.
|
|
|
|
func RegisterTransportDialer(protocol string, dialer dialFunc) error {
|
|
|
|
if _, found := transportDialerCache[protocol]; found {
|
|
|
|
return newError(protocol, " dialer already registered").AtError()
|
|
|
|
}
|
|
|
|
transportDialerCache[protocol] = dialer
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Dial dials a internet connection towards the given destination.
|
2021-09-20 15:11:21 +03:00
|
|
|
func Dial(ctx context.Context, dest net.Destination, streamSettings *MemoryStreamConfig) (stat.Connection, error) {
|
2020-11-25 13:01:53 +02:00
|
|
|
if dest.Network == net.Network_TCP {
|
|
|
|
if streamSettings == nil {
|
|
|
|
s, err := ToMemoryStreamConfig(nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, newError("failed to create default stream settings").Base(err)
|
|
|
|
}
|
|
|
|
streamSettings = s
|
|
|
|
}
|
|
|
|
|
|
|
|
protocol := streamSettings.ProtocolName
|
|
|
|
dialer := transportDialerCache[protocol]
|
|
|
|
if dialer == nil {
|
|
|
|
return nil, newError(protocol, " dialer not registered").AtError()
|
|
|
|
}
|
|
|
|
return dialer(ctx, dest, streamSettings)
|
|
|
|
}
|
|
|
|
|
|
|
|
if dest.Network == net.Network_UDP {
|
|
|
|
udpDialer := transportDialerCache["udp"]
|
|
|
|
if udpDialer == nil {
|
|
|
|
return nil, newError("UDP dialer not registered").AtError()
|
|
|
|
}
|
|
|
|
return udpDialer(ctx, dest, streamSettings)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, newError("unknown network ", dest.Network)
|
|
|
|
}
|
|
|
|
|
2021-06-18 14:28:02 +03:00
|
|
|
var (
|
|
|
|
dnsClient dns.Client
|
|
|
|
obm outbound.Manager
|
|
|
|
)
|
|
|
|
|
|
|
|
func lookupIP(domain string, strategy DomainStrategy, localAddr net.Address) ([]net.IP, error) {
|
|
|
|
if dnsClient == nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
2021-10-19 19:57:14 +03:00
|
|
|
option := dns.IPOption{
|
2021-06-18 14:28:02 +03:00
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: true,
|
|
|
|
FakeEnable: false,
|
|
|
|
}
|
|
|
|
|
|
|
|
switch {
|
|
|
|
case strategy == DomainStrategy_USE_IP4 || (localAddr != nil && localAddr.Family().IsIPv4()):
|
|
|
|
option = dns.IPOption{
|
|
|
|
IPv4Enable: true,
|
|
|
|
IPv6Enable: false,
|
|
|
|
FakeEnable: false,
|
|
|
|
}
|
|
|
|
case strategy == DomainStrategy_USE_IP6 || (localAddr != nil && localAddr.Family().IsIPv6()):
|
|
|
|
option = dns.IPOption{
|
|
|
|
IPv4Enable: false,
|
|
|
|
IPv6Enable: true,
|
|
|
|
FakeEnable: false,
|
|
|
|
}
|
|
|
|
case strategy == DomainStrategy_AS_IS:
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
return dnsClient.LookupIP(domain, option)
|
|
|
|
}
|
|
|
|
|
|
|
|
func canLookupIP(ctx context.Context, dst net.Destination, sockopt *SocketConfig) bool {
|
|
|
|
if dst.Address.Family().IsIP() || dnsClient == nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return sockopt.DomainStrategy != DomainStrategy_AS_IS
|
|
|
|
}
|
|
|
|
|
|
|
|
func redirect(ctx context.Context, dst net.Destination, obt string) net.Conn {
|
|
|
|
newError("redirecting request " + dst.String() + " to " + obt).WriteToLog(session.ExportIDToError(ctx))
|
|
|
|
h := obm.GetHandler(obt)
|
2021-10-12 19:49:31 +03:00
|
|
|
ctx = session.ContextWithOutbound(ctx, &session.Outbound{Target: dst, Gateway: nil})
|
2021-06-18 14:28:02 +03:00
|
|
|
if h != nil {
|
|
|
|
ur, uw := pipe.New(pipe.OptionsFromContext(ctx)...)
|
|
|
|
dr, dw := pipe.New(pipe.OptionsFromContext(ctx)...)
|
|
|
|
|
2021-10-12 19:49:31 +03:00
|
|
|
go h.Dispatch(ctx, &transport.Link{Reader: ur, Writer: dw})
|
2021-06-18 14:28:02 +03:00
|
|
|
nc := cnc.NewConnection(
|
|
|
|
cnc.ConnectionInputMulti(uw),
|
|
|
|
cnc.ConnectionOutputMulti(dr),
|
|
|
|
cnc.ConnectionOnClose(common.ChainedClosable{uw, dw}),
|
|
|
|
)
|
|
|
|
return nc
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
// DialSystem calls system dialer to create a network connection.
|
|
|
|
func DialSystem(ctx context.Context, dest net.Destination, sockopt *SocketConfig) (net.Conn, error) {
|
|
|
|
var src net.Address
|
|
|
|
if outbound := session.OutboundFromContext(ctx); outbound != nil {
|
|
|
|
src = outbound.Gateway
|
|
|
|
}
|
2021-06-18 14:28:02 +03:00
|
|
|
if sockopt == nil {
|
|
|
|
return effectiveSystemDialer.Dial(ctx, src, dest, sockopt)
|
|
|
|
}
|
|
|
|
|
|
|
|
if canLookupIP(ctx, dest, sockopt) {
|
|
|
|
ips, err := lookupIP(dest.Address.String(), sockopt.DomainStrategy, src)
|
|
|
|
if err == nil && len(ips) > 0 {
|
|
|
|
dest.Address = net.IPAddress(ips[dice.Roll(len(ips))])
|
|
|
|
newError("replace destination with " + dest.String()).AtInfo().WriteToLog()
|
|
|
|
} else if err != nil {
|
|
|
|
newError("failed to resolve ip").Base(err).AtWarning().WriteToLog()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if obm != nil && len(sockopt.DialerProxy) > 0 {
|
|
|
|
nc := redirect(ctx, dest, sockopt.DialerProxy)
|
|
|
|
if nc != nil {
|
|
|
|
return nc, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-25 13:01:53 +02:00
|
|
|
return effectiveSystemDialer.Dial(ctx, src, dest, sockopt)
|
|
|
|
}
|
2021-06-18 14:28:02 +03:00
|
|
|
|
|
|
|
func InitSystemDialer(dc dns.Client, om outbound.Manager) {
|
|
|
|
dnsClient = dc
|
|
|
|
obm = om
|
|
|
|
}
|