sing-box/common/dialer/resolve.go

81 lines
2.2 KiB
Go
Raw Normal View History

2022-07-07 13:47:21 +00:00
package dialer
import (
"context"
"net"
"net/netip"
2022-07-08 04:58:43 +00:00
"time"
2022-07-07 13:47:21 +00:00
"github.com/sagernet/sing-box/adapter"
2022-08-03 10:55:39 +00:00
"github.com/sagernet/sing-box/log"
2022-07-11 10:44:59 +00:00
"github.com/sagernet/sing-dns"
2022-07-08 15:03:57 +00:00
M "github.com/sagernet/sing/common/metadata"
N "github.com/sagernet/sing/common/network"
2022-07-07 13:47:21 +00:00
)
type ResolveDialer struct {
2022-07-08 04:58:43 +00:00
dialer N.Dialer
router adapter.Router
2022-07-11 10:44:59 +00:00
strategy dns.DomainStrategy
2022-07-08 04:58:43 +00:00
fallbackDelay time.Duration
2022-07-07 13:47:21 +00:00
}
2022-07-11 10:44:59 +00:00
func NewResolveDialer(router adapter.Router, dialer N.Dialer, strategy dns.DomainStrategy, fallbackDelay time.Duration) *ResolveDialer {
2022-07-07 13:47:21 +00:00
return &ResolveDialer{
dialer,
router,
strategy,
2022-07-08 04:58:43 +00:00
fallbackDelay,
2022-07-07 13:47:21 +00:00
}
}
func (d *ResolveDialer) DialContext(ctx context.Context, network string, destination M.Socksaddr) (net.Conn, error) {
if !destination.IsFqdn() {
return d.dialer.DialContext(ctx, network, destination)
}
2022-07-10 01:15:01 +00:00
ctx, metadata := adapter.AppendContext(ctx)
2022-08-03 10:55:39 +00:00
ctx = log.ContextWithOverrideLevel(ctx, log.LevelDebug)
2022-07-10 01:15:01 +00:00
metadata.Destination = destination
metadata.Domain = ""
2022-07-07 13:47:21 +00:00
var addresses []netip.Addr
var err error
2022-07-11 10:44:59 +00:00
if d.strategy == dns.DomainStrategyAsIS {
2022-07-07 13:47:21 +00:00
addresses, err = d.router.LookupDefault(ctx, destination.Fqdn)
} else {
addresses, err = d.router.Lookup(ctx, destination.Fqdn, d.strategy)
}
if err != nil {
return nil, err
}
2022-07-11 10:44:59 +00:00
return N.DialParallel(ctx, d.dialer, network, destination, addresses, d.strategy == dns.DomainStrategyPreferIPv6, d.fallbackDelay)
2022-07-07 13:47:21 +00:00
}
func (d *ResolveDialer) ListenPacket(ctx context.Context, destination M.Socksaddr) (net.PacketConn, error) {
if !destination.IsFqdn() {
return d.dialer.ListenPacket(ctx, destination)
}
2022-07-10 01:15:01 +00:00
ctx, metadata := adapter.AppendContext(ctx)
2022-08-03 10:55:39 +00:00
ctx = log.ContextWithOverrideLevel(ctx, log.LevelDebug)
2022-07-10 01:15:01 +00:00
metadata.Destination = destination
metadata.Domain = ""
2022-07-07 13:47:21 +00:00
var addresses []netip.Addr
var err error
2022-07-11 10:44:59 +00:00
if d.strategy == dns.DomainStrategyAsIS {
2022-07-07 13:47:21 +00:00
addresses, err = d.router.LookupDefault(ctx, destination.Fqdn)
} else {
addresses, err = d.router.Lookup(ctx, destination.Fqdn, d.strategy)
}
if err != nil {
return nil, err
}
2022-07-11 10:44:59 +00:00
conn, err := N.ListenSerial(ctx, d.dialer, destination, addresses)
2022-07-08 04:58:43 +00:00
if err != nil {
return nil, err
}
2022-07-25 08:01:10 +00:00
return NewResolvePacketConn(ctx, d.router, d.strategy, conn), nil
2022-07-07 13:47:21 +00:00
}
func (d *ResolveDialer) Upstream() any {
return d.dialer
}