clash/dns/util.go

349 lines
8.9 KiB
Go
Raw Normal View History

2018-12-05 13:13:29 +00:00
package dns
import (
2021-11-17 08:03:47 +00:00
"context"
2019-06-28 04:29:08 +00:00
"crypto/tls"
2022-08-24 13:36:19 +00:00
"errors"
2021-11-17 08:03:47 +00:00
"fmt"
2020-02-17 14:13:15 +00:00
"net"
2022-04-19 17:52:51 +00:00
"net/netip"
"strconv"
"strings"
2018-12-05 13:13:29 +00:00
"time"
2023-11-03 13:01:45 +00:00
"github.com/metacubex/mihomo/common/cache"
N "github.com/metacubex/mihomo/common/net"
"github.com/metacubex/mihomo/common/nnip"
"github.com/metacubex/mihomo/common/picker"
"github.com/metacubex/mihomo/component/dialer"
"github.com/metacubex/mihomo/component/resolver"
C "github.com/metacubex/mihomo/constant"
"github.com/metacubex/mihomo/log"
"github.com/metacubex/mihomo/tunnel"
2018-12-05 13:13:29 +00:00
D "github.com/miekg/dns"
"github.com/samber/lo"
2018-12-05 13:13:29 +00:00
)
const (
MaxMsgSize = 65535
)
const serverFailureCacheTTL uint32 = 5
func minimalTTL(records []D.RR) uint32 {
rr := lo.MinBy(records, func(r1 D.RR, r2 D.RR) bool {
return r1.Header().Ttl < r2.Header().Ttl
})
if rr == nil {
return 0
}
return rr.Header().Ttl
}
func updateTTL(records []D.RR, ttl uint32) {
if len(records) == 0 {
return
}
delta := minimalTTL(records) - ttl
for i := range records {
records[i].Header().Ttl = lo.Clamp(records[i].Header().Ttl-delta, 1, records[i].Header().Ttl)
}
}
func putMsgToCache(c *cache.LruCache[string, *D.Msg], key string, q D.Question, msg *D.Msg) {
// skip dns cache for acme challenge
if q.Qtype == D.TypeTXT && strings.HasPrefix(q.Name, "_acme-challenge.") {
log.Debugln("[DNS] dns cache ignored because of acme challenge for: %s", q.Name)
return
2018-12-05 13:13:29 +00:00
}
var ttl uint32
if msg.Rcode == D.RcodeServerFailure {
// [...] a resolver MAY cache a server failure response.
// If it does so it MUST NOT cache it for longer than five (5) minutes [...]
ttl = serverFailureCacheTTL
} else {
ttl = minimalTTL(append(append(msg.Answer, msg.Ns...), msg.Extra...))
}
if ttl == 0 {
return
}
c.SetWithExpire(key, msg.Copy(), time.Now().Add(time.Duration(ttl)*time.Second))
2019-02-23 12:31:59 +00:00
}
func setMsgTTL(msg *D.Msg, ttl uint32) {
for _, answer := range msg.Answer {
answer.Header().Ttl = ttl
}
for _, ns := range msg.Ns {
ns.Header().Ttl = ttl
}
for _, extra := range msg.Extra {
extra.Header().Ttl = ttl
}
2018-12-05 13:13:29 +00:00
}
2019-06-28 04:29:08 +00:00
func updateMsgTTL(msg *D.Msg, ttl uint32) {
updateTTL(msg.Answer, ttl)
updateTTL(msg.Ns, ttl)
updateTTL(msg.Extra, ttl)
}
2019-06-28 04:29:08 +00:00
func isIPRequest(q D.Question) bool {
return q.Qclass == D.ClassINET && (q.Qtype == D.TypeA || q.Qtype == D.TypeAAAA || q.Qtype == D.TypeCNAME)
2019-06-28 04:29:08 +00:00
}
func transform(servers []NameServer, resolver *Resolver) []dnsClient {
2023-06-11 15:01:45 +00:00
ret := make([]dnsClient, 0, len(servers))
2019-06-28 04:29:08 +00:00
for _, s := range servers {
switch s.Net {
case "https":
ret = append(ret, newDoHClient(s.Addr, resolver, s.PreferH3, s.Params, s.ProxyAdapter, s.ProxyName))
2019-06-28 04:29:08 +00:00
continue
case "dhcp":
ret = append(ret, newDHCPClient(s.Addr))
continue
2023-04-26 07:57:55 +00:00
case "system":
2023-10-25 11:20:44 +00:00
ret = append(ret, newSystemClient())
2023-04-26 07:57:55 +00:00
continue
2023-06-11 15:01:45 +00:00
case "rcode":
ret = append(ret, newRCodeClient(s.Addr))
continue
case "quic":
if doq, err := newDoQ(resolver, s.Addr, s.ProxyAdapter, s.ProxyName); err == nil {
ret = append(ret, doq)
} else {
log.Fatalln("DoQ format error: %v", err)
}
continue
2019-06-28 04:29:08 +00:00
}
2020-02-17 14:13:15 +00:00
host, port, _ := net.SplitHostPort(s.Addr)
2019-06-28 04:29:08 +00:00
ret = append(ret, &client{
Client: &D.Client{
Net: s.Net,
TLSConfig: &tls.Config{
ServerName: host,
2019-06-28 04:29:08 +00:00
},
UDPSize: 4096,
Timeout: 5 * time.Second,
2019-06-28 04:29:08 +00:00
},
2021-11-17 08:03:47 +00:00
port: port,
host: host,
iface: s.Interface,
r: resolver,
proxyAdapter: s.ProxyAdapter,
proxyName: s.ProxyName,
2019-06-28 04:29:08 +00:00
})
}
return ret
}
func handleMsgWithEmptyAnswer(r *D.Msg) *D.Msg {
msg := &D.Msg{}
msg.Answer = []D.RR{}
msg.SetRcode(r, D.RcodeSuccess)
msg.Authoritative = true
msg.RecursionAvailable = true
return msg
}
2022-04-19 17:52:51 +00:00
func msgToIP(msg *D.Msg) []netip.Addr {
ips := []netip.Addr{}
for _, answer := range msg.Answer {
switch ans := answer.(type) {
case *D.AAAA:
2022-04-19 17:52:51 +00:00
ips = append(ips, nnip.IpToAddr(ans.AAAA))
case *D.A:
2022-04-19 17:52:51 +00:00
ips = append(ips, nnip.IpToAddr(ans.A))
}
}
return ips
}
2021-11-17 08:03:47 +00:00
func msgToDomain(msg *D.Msg) string {
if len(msg.Question) > 0 {
return strings.TrimRight(msg.Question[0].Name, ".")
}
return ""
}
type dialHandler func(ctx context.Context, network, addr string) (net.Conn, error)
2022-06-21 14:59:35 +00:00
func getDialHandler(r *Resolver, proxyAdapter C.ProxyAdapter, proxyName string, opts ...dialer.Option) dialHandler {
return func(ctx context.Context, network, addr string) (net.Conn, error) {
if len(proxyName) == 0 && proxyAdapter == nil {
opts = append(opts, dialer.WithResolver(r))
return dialer.DialContext(ctx, network, addr, opts...)
} else {
host, port, err := net.SplitHostPort(addr)
if err != nil {
return nil, err
}
uintPort, err := strconv.ParseUint(port, 10, 16)
if err != nil {
return nil, err
}
if proxyAdapter == nil {
var ok bool
proxyAdapter, ok = tunnel.Proxies()[proxyName]
if !ok {
opts = append(opts, dialer.WithInterface(proxyName))
}
}
if strings.Contains(network, "tcp") {
// tcp can resolve host by remote
metadata := &C.Metadata{
NetWork: C.TCP,
Host: host,
DstPort: uint16(uintPort),
}
if proxyAdapter != nil {
if proxyAdapter.IsL3Protocol(metadata) { // L3 proxy should resolve domain before to avoid loopback
dstIP, err := resolver.ResolveIPWithResolver(ctx, host, r)
if err != nil {
return nil, err
}
metadata.Host = ""
metadata.DstIP = dstIP
}
return proxyAdapter.DialContext(ctx, metadata, opts...)
}
opts = append(opts, dialer.WithResolver(r))
return dialer.DialContext(ctx, network, addr, opts...)
} else {
// udp must resolve host first
dstIP, err := resolver.ResolveIPWithResolver(ctx, host, r)
if err != nil {
return nil, err
}
metadata := &C.Metadata{
NetWork: C.UDP,
Host: "",
DstIP: dstIP,
DstPort: uint16(uintPort),
}
if proxyAdapter == nil {
return dialer.DialContext(ctx, network, addr, opts...)
}
if !proxyAdapter.SupportUDP() {
return nil, fmt.Errorf("proxy adapter [%s] UDP is not supported", proxyAdapter)
}
packetConn, err := proxyAdapter.ListenPacketContext(ctx, metadata, opts...)
if err != nil {
return nil, err
}
2022-12-19 13:34:07 +00:00
return N.NewBindPacketConn(packetConn, metadata.UDPAddr()), nil
}
}
2021-11-17 08:03:47 +00:00
}
}
2021-11-17 08:03:47 +00:00
func listenPacket(ctx context.Context, proxyAdapter C.ProxyAdapter, proxyName string, network string, addr string, r *Resolver, opts ...dialer.Option) (net.PacketConn, error) {
host, port, err := net.SplitHostPort(addr)
if err != nil {
return nil, err
2021-11-17 08:03:47 +00:00
}
uintPort, err := strconv.ParseUint(port, 10, 16)
if err != nil {
return nil, err
}
if proxyAdapter == nil {
var ok bool
proxyAdapter, ok = tunnel.Proxies()[proxyName]
if !ok {
opts = append(opts, dialer.WithInterface(proxyName))
}
}
2022-06-21 14:59:35 +00:00
// udp must resolve host first
dstIP, err := resolver.ResolveIPWithResolver(ctx, host, r)
if err != nil {
return nil, err
}
metadata := &C.Metadata{
NetWork: C.UDP,
Host: "",
DstIP: dstIP,
DstPort: uint16(uintPort),
}
if proxyAdapter == nil {
2023-10-26 02:27:38 +00:00
return dialer.NewDialer(opts...).ListenPacket(ctx, network, "", netip.AddrPortFrom(metadata.DstIP, metadata.DstPort))
}
2021-11-17 08:03:47 +00:00
if !proxyAdapter.SupportUDP() {
return nil, fmt.Errorf("proxy adapter [%s] UDP is not supported", proxyAdapter)
2021-11-17 08:03:47 +00:00
}
return proxyAdapter.ListenPacketContext(ctx, metadata, opts...)
2021-11-17 08:03:47 +00:00
}
2023-10-25 12:16:44 +00:00
var errIPNotFound = errors.New("couldn't find ip")
2023-06-11 12:58:51 +00:00
func batchExchange(ctx context.Context, clients []dnsClient, m *D.Msg) (msg *D.Msg, cache bool, err error) {
2023-07-14 01:55:43 +00:00
cache = true
fast, ctx := picker.WithTimeout[*D.Msg](ctx, resolver.DefaultDNSTimeout)
2023-07-14 01:55:43 +00:00
defer fast.Close()
2023-01-28 14:33:03 +00:00
domain := msgToDomain(m)
2023-10-25 12:16:44 +00:00
var noIpMsg *D.Msg
2022-08-24 13:36:19 +00:00
for _, client := range clients {
2023-07-14 01:55:43 +00:00
if _, isRCodeClient := client.(rcodeClient); isRCodeClient {
2023-10-25 10:07:45 +00:00
msg, err = client.ExchangeContext(ctx, m)
2023-07-14 01:55:43 +00:00
return msg, false, err
}
2023-06-12 10:01:13 +00:00
client := client // shadow define client to ensure the value captured by the closure will not be changed in the next loop
2022-11-19 02:35:45 +00:00
fast.Go(func() (*D.Msg, error) {
2023-06-11 15:01:45 +00:00
log.Debugln("[DNS] resolve %s from %s", domain, client.Address())
m, err := client.ExchangeContext(ctx, m)
2022-08-24 13:36:19 +00:00
if err != nil {
return nil, err
2023-06-11 12:58:51 +00:00
} else if cache && (m.Rcode == D.RcodeServerFailure || m.Rcode == D.RcodeRefused) {
// currently, cache indicates whether this msg was from a RCode client,
// so we would ignore RCode errors from RCode clients.
2023-07-14 01:55:43 +00:00
return nil, errors.New("server failure: " + D.RcodeToString[m.Rcode])
2022-08-24 13:36:19 +00:00
}
2023-10-25 12:16:44 +00:00
if ips := msgToIP(m); len(m.Question) > 0 {
qType := m.Question[0].Qtype
log.Debugln("[DNS] %s --> %s %s from %s", domain, ips, D.Type(qType), client.Address())
switch qType {
case D.TypeAAAA:
if len(ips) == 0 {
noIpMsg = m
return nil, errIPNotFound
}
case D.TypeA:
if len(ips) == 0 {
noIpMsg = m
return nil, errIPNotFound
}
}
}
2022-08-24 13:36:19 +00:00
return m, nil
})
}
2023-07-14 01:55:43 +00:00
msg = fast.Wait()
if msg == nil {
2023-10-25 12:16:44 +00:00
if noIpMsg != nil {
return noIpMsg, false, nil
}
2023-07-14 01:55:43 +00:00
err = errors.New("all DNS requests failed")
2022-08-24 13:36:19 +00:00
if fErr := fast.Error(); fErr != nil {
err = fmt.Errorf("%w, first error: %w", err, fErr)
2022-08-24 13:36:19 +00:00
}
}
return
}