1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-01 19:45:24 +00:00
v2fly/transport/internet/dialer.go

107 lines
3.5 KiB
Go
Raw Normal View History

2016-06-14 20:54:08 +00:00
package internet
import (
"context"
2021-10-28 10:34:19 +00:00
"github.com/v2fly/v2ray-core/v5/common/net"
"github.com/v2fly/v2ray-core/v5/common/session"
"github.com/v2fly/v2ray-core/v5/transport/internet/tagged"
2016-06-14 20:54:08 +00:00
)
2018-10-22 20:12:50 +00:00
// Dialer is the interface for dialing outbound connections.
type Dialer interface {
// Dial dials a system connection to the given destination.
Dial(ctx context.Context, destination net.Destination) (Connection, error)
// Address returns the address used by this Dialer. Maybe nil if not known.
Address() net.Address
2018-10-22 20:12:50 +00:00
}
// dialFunc is an interface to dial network connection to a specific destination.
type dialFunc func(ctx context.Context, dest net.Destination, streamSettings *MemoryStreamConfig) (Connection, error)
2016-06-14 20:54:08 +00:00
2021-05-19 21:28:52 +00:00
var transportDialerCache = make(map[string]dialFunc)
2016-06-14 20:54:08 +00:00
2018-10-14 06:23:49 +00:00
// RegisterTransportDialer registers a Dialer with given name.
2018-10-22 20:12:50 +00:00
func RegisterTransportDialer(protocol string, dialer dialFunc) error {
if _, found := transportDialerCache[protocol]; found {
2017-04-08 23:43:25 +00:00
return newError(protocol, " dialer already registered").AtError()
2017-01-03 14:16:48 +00:00
}
transportDialerCache[protocol] = dialer
2017-01-03 14:16:48 +00:00
return nil
}
2018-04-17 21:33:39 +00:00
// Dial dials a internet connection towards the given destination.
func Dial(ctx context.Context, dest net.Destination, streamSettings *MemoryStreamConfig) (Connection, error) {
if dest.Network == net.Network_TCP {
2018-09-07 13:00:46 +00:00
if streamSettings == nil {
s, err := ToMemoryStreamConfig(nil)
if err != nil {
2018-09-07 13:00:46 +00:00
return nil, newError("failed to create default stream settings").Base(err)
}
2018-09-07 13:00:46 +00:00
streamSettings = s
}
2018-09-07 13:00:46 +00:00
2018-09-07 13:18:08 +00:00
protocol := streamSettings.ProtocolName
2021-09-07 15:53:09 +00:00
if originalProtocolName := getOriginalMessageName(streamSettings); originalProtocolName != "" {
protocol = originalProtocolName
}
dialer := transportDialerCache[protocol]
2017-01-03 14:16:48 +00:00
if dialer == nil {
2017-04-08 23:43:25 +00:00
return nil, newError(protocol, " dialer not registered").AtError()
2016-06-14 20:54:08 +00:00
}
return dialer(ctx, dest, streamSettings)
2016-06-14 20:54:08 +00:00
}
2018-09-15 19:35:32 +00:00
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)
2017-01-03 14:16:48 +00:00
}
2018-09-15 19:35:32 +00:00
return nil, newError("unknown network ", dest.Network)
2016-06-14 20:54:08 +00:00
}
2017-01-03 14:16:48 +00:00
// DialSystem calls system dialer to create a network connection.
func DialSystem(ctx context.Context, dest net.Destination, sockopt *SocketConfig) (net.Conn, error) {
outbound := session.OutboundFromContext(ctx)
var src net.Address
if outbound != nil {
src = outbound.Gateway
}
if transportLayerOutgoingTag := session.GetTransportLayerProxyTagFromContext(ctx); transportLayerOutgoingTag != "" {
return DialTaggedOutbound(ctx, dest, transportLayerOutgoingTag)
}
originalAddr := dest.Address
if outbound != nil && outbound.Resolver != nil && dest.Address.Family().IsDomain() {
if addr := outbound.Resolver(ctx, dest.Address.Domain()); addr != nil {
dest.Address = addr
}
}
switch {
case src != nil && dest.Address != originalAddr:
newError("dialing to ", dest, " resolved from ", originalAddr, " via ", src).WriteToLog(session.ExportIDToError(ctx))
case src != nil:
newError("dialing to ", dest, " via ", src).WriteToLog(session.ExportIDToError(ctx))
case dest.Address != originalAddr:
newError("dialing to ", dest, " resolved from ", originalAddr).WriteToLog(session.ExportIDToError(ctx))
}
return effectiveSystemDialer.Dial(ctx, src, dest, sockopt)
2016-06-14 20:54:08 +00:00
}
func DialTaggedOutbound(ctx context.Context, dest net.Destination, tag string) (net.Conn, error) {
if tagged.Dialer == nil {
return nil, newError("tagged dial not enabled")
}
return tagged.Dialer(ctx, dest, tag)
}