mirror of
https://github.com/AdguardTeam/AdGuardHome.git
synced 2024-11-24 14:05:45 +03:00
7bfad08dde
Updates #6006. Squashed commit of the following: commit ac27db95c12858b6ef182a0bd4acebab67a23993 Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Tue Jul 18 15:47:17 2023 +0300 all: imp code commit 3936288512bfc2d44902ead6ab1bb5711f92b73c Author: Ainar Garipov <A.Garipov@AdGuard.COM> Date: Mon Jul 17 19:23:46 2023 +0300 all: imp client resolving
313 lines
8.5 KiB
Go
313 lines
8.5 KiB
Go
package dnsforward
|
|
|
|
import (
|
|
"bytes"
|
|
"fmt"
|
|
"net"
|
|
"net/url"
|
|
"os"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
|
"github.com/AdguardTeam/dnsproxy/upstream"
|
|
"github.com/AdguardTeam/golibs/log"
|
|
"github.com/AdguardTeam/golibs/netutil"
|
|
"github.com/AdguardTeam/golibs/stringutil"
|
|
"github.com/AdguardTeam/urlfilter"
|
|
"github.com/miekg/dns"
|
|
"golang.org/x/exp/maps"
|
|
"golang.org/x/exp/slices"
|
|
)
|
|
|
|
// loadUpstreams parses upstream DNS servers from the configured file or from
|
|
// the configuration itself.
|
|
func (s *Server) loadUpstreams() (upstreams []string, err error) {
|
|
if s.conf.UpstreamDNSFileName == "" {
|
|
return stringutil.FilterOut(s.conf.UpstreamDNS, IsCommentOrEmpty), nil
|
|
}
|
|
|
|
var data []byte
|
|
data, err = os.ReadFile(s.conf.UpstreamDNSFileName)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("reading upstream from file: %w", err)
|
|
}
|
|
|
|
upstreams = stringutil.SplitTrimmed(string(data), "\n")
|
|
|
|
log.Debug("dnsforward: got %d upstreams in %q", len(upstreams), s.conf.UpstreamDNSFileName)
|
|
|
|
return stringutil.FilterOut(upstreams, IsCommentOrEmpty), nil
|
|
}
|
|
|
|
// prepareUpstreamSettings sets upstream DNS server settings.
|
|
func (s *Server) prepareUpstreamSettings() (err error) {
|
|
// Use a customized set of RootCAs, because Go's default mechanism of
|
|
// loading TLS roots does not always work properly on some routers so we're
|
|
// loading roots manually and pass it here.
|
|
//
|
|
// See [aghtls.SystemRootCAs].
|
|
//
|
|
// TODO(a.garipov): Investigate if that's true.
|
|
upstream.RootCAs = s.conf.TLSv12Roots
|
|
upstream.CipherSuites = s.conf.TLSCiphers
|
|
|
|
// Load upstreams either from the file, or from the settings
|
|
var upstreams []string
|
|
upstreams, err = s.loadUpstreams()
|
|
if err != nil {
|
|
return fmt.Errorf("loading upstreams: %w", err)
|
|
}
|
|
|
|
s.conf.UpstreamConfig, err = s.prepareUpstreamConfig(upstreams, defaultDNS, &upstream.Options{
|
|
Bootstrap: s.conf.BootstrapDNS,
|
|
Timeout: s.conf.UpstreamTimeout,
|
|
HTTPVersions: UpstreamHTTPVersions(s.conf.UseHTTP3Upstreams),
|
|
PreferIPv6: s.conf.BootstrapPreferIPv6,
|
|
})
|
|
if err != nil {
|
|
return fmt.Errorf("preparing upstream config: %w", err)
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// prepareUpstreamConfig sets upstream configuration based on upstreams and
|
|
// configuration of s.
|
|
func (s *Server) prepareUpstreamConfig(
|
|
upstreams []string,
|
|
defaultUpstreams []string,
|
|
opts *upstream.Options,
|
|
) (uc *proxy.UpstreamConfig, err error) {
|
|
uc, err = proxy.ParseUpstreamsConfig(upstreams, opts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parsing upstream config: %w", err)
|
|
}
|
|
|
|
if len(uc.Upstreams) == 0 && defaultUpstreams != nil {
|
|
log.Info("dnsforward: warning: no default upstreams specified, using %v", defaultUpstreams)
|
|
var defaultUpstreamConfig *proxy.UpstreamConfig
|
|
defaultUpstreamConfig, err = proxy.ParseUpstreamsConfig(defaultUpstreams, opts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parsing default upstreams: %w", err)
|
|
}
|
|
|
|
uc.Upstreams = defaultUpstreamConfig.Upstreams
|
|
}
|
|
|
|
if s.dnsFilter != nil && s.dnsFilter.EtcHosts != nil {
|
|
err = s.replaceUpstreamsWithHosts(uc, opts)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("resolving upstreams with hosts: %w", err)
|
|
}
|
|
}
|
|
|
|
return uc, nil
|
|
}
|
|
|
|
// replaceUpstreamsWithHosts replaces unique upstreams with their resolved
|
|
// versions based on the system hosts file.
|
|
//
|
|
// TODO(e.burkov): This should be performed inside dnsproxy, which should
|
|
// actually consider /etc/hosts. See TODO on [aghnet.HostsContainer].
|
|
func (s *Server) replaceUpstreamsWithHosts(
|
|
upsConf *proxy.UpstreamConfig,
|
|
opts *upstream.Options,
|
|
) (err error) {
|
|
resolved := map[string]*upstream.Options{}
|
|
|
|
err = s.resolveUpstreamsWithHosts(resolved, upsConf.Upstreams, opts)
|
|
if err != nil {
|
|
return fmt.Errorf("resolving upstreams: %w", err)
|
|
}
|
|
|
|
hosts := maps.Keys(upsConf.DomainReservedUpstreams)
|
|
// TODO(e.burkov): Think of extracting sorted range into an util function.
|
|
slices.Sort(hosts)
|
|
for _, host := range hosts {
|
|
err = s.resolveUpstreamsWithHosts(resolved, upsConf.DomainReservedUpstreams[host], opts)
|
|
if err != nil {
|
|
return fmt.Errorf("resolving upstreams reserved for %s: %w", host, err)
|
|
}
|
|
}
|
|
|
|
hosts = maps.Keys(upsConf.SpecifiedDomainUpstreams)
|
|
slices.Sort(hosts)
|
|
for _, host := range hosts {
|
|
err = s.resolveUpstreamsWithHosts(resolved, upsConf.SpecifiedDomainUpstreams[host], opts)
|
|
if err != nil {
|
|
return fmt.Errorf("resolving upstreams specific for %s: %w", host, err)
|
|
}
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// resolveUpstreamsWithHosts resolves the IP addresses of each of the upstreams
|
|
// and replaces those both in upstreams and resolved. Upstreams that failed to
|
|
// resolve are placed to resolved as-is. This function only returns error of
|
|
// upstreams closing.
|
|
func (s *Server) resolveUpstreamsWithHosts(
|
|
resolved map[string]*upstream.Options,
|
|
upstreams []upstream.Upstream,
|
|
opts *upstream.Options,
|
|
) (err error) {
|
|
for i := range upstreams {
|
|
u := upstreams[i]
|
|
addr := u.Address()
|
|
host := extractUpstreamHost(addr)
|
|
|
|
withIPs, ok := resolved[host]
|
|
if !ok {
|
|
ips := s.resolveUpstreamHost(host)
|
|
if len(ips) == 0 {
|
|
resolved[host] = nil
|
|
|
|
return nil
|
|
}
|
|
|
|
sortNetIPAddrs(ips, opts.PreferIPv6)
|
|
|
|
withIPs = opts.Clone()
|
|
withIPs.ServerIPAddrs = ips
|
|
resolved[host] = withIPs
|
|
} else if withIPs == nil {
|
|
continue
|
|
}
|
|
|
|
if err = u.Close(); err != nil {
|
|
return fmt.Errorf("closing upstream %s: %w", addr, err)
|
|
}
|
|
|
|
upstreams[i], err = upstream.AddressToUpstream(addr, withIPs)
|
|
if err != nil {
|
|
return fmt.Errorf("replacing upstream %s with resolved %s: %w", addr, host, err)
|
|
}
|
|
|
|
log.Debug("dnsforward: using %s for %s", withIPs.ServerIPAddrs, upstreams[i].Address())
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// extractUpstreamHost returns the hostname of addr without port with an
|
|
// assumption that any address passed here has already been successfully parsed
|
|
// by [upstream.AddressToUpstream]. This function essentially mirrors the logic
|
|
// of [upstream.AddressToUpstream], see TODO on [replaceUpstreamsWithHosts].
|
|
func extractUpstreamHost(addr string) (host string) {
|
|
var err error
|
|
if strings.Contains(addr, "://") {
|
|
var u *url.URL
|
|
u, err = url.Parse(addr)
|
|
if err != nil {
|
|
log.Debug("dnsforward: parsing upstream %s: %s", addr, err)
|
|
|
|
return addr
|
|
}
|
|
|
|
return u.Hostname()
|
|
}
|
|
|
|
// Probably, plain UDP upstream defined by address or address:port.
|
|
host, err = netutil.SplitHost(addr)
|
|
if err != nil {
|
|
return addr
|
|
}
|
|
|
|
return host
|
|
}
|
|
|
|
// resolveUpstreamHost returns the version of ups with IP addresses from the
|
|
// system hosts file placed into its options.
|
|
func (s *Server) resolveUpstreamHost(host string) (addrs []net.IP) {
|
|
req := &urlfilter.DNSRequest{
|
|
Hostname: host,
|
|
DNSType: dns.TypeA,
|
|
}
|
|
aRes, _ := s.dnsFilter.EtcHosts.MatchRequest(req)
|
|
|
|
req.DNSType = dns.TypeAAAA
|
|
aaaaRes, _ := s.dnsFilter.EtcHosts.MatchRequest(req)
|
|
|
|
var ips []net.IP
|
|
for _, rw := range append(aRes.DNSRewrites(), aaaaRes.DNSRewrites()...) {
|
|
dr := rw.DNSRewrite
|
|
if dr == nil || dr.Value == nil {
|
|
continue
|
|
}
|
|
|
|
if ip, ok := dr.Value.(net.IP); ok {
|
|
ips = append(ips, ip)
|
|
}
|
|
}
|
|
|
|
return ips
|
|
}
|
|
|
|
// sortNetIPAddrs sorts addrs in accordance with the protocol preferences.
|
|
// Invalid addresses are sorted near the end.
|
|
//
|
|
// TODO(e.burkov): This function taken from dnsproxy, which also already
|
|
// contains a few similar functions. Think of moving to golibs.
|
|
func sortNetIPAddrs(addrs []net.IP, preferIPv6 bool) {
|
|
l := len(addrs)
|
|
if l <= 1 {
|
|
return
|
|
}
|
|
|
|
slices.SortStableFunc(addrs, func(addrA, addrB net.IP) (sortsBefore bool) {
|
|
switch len(addrA) {
|
|
case net.IPv4len, net.IPv6len:
|
|
switch len(addrB) {
|
|
case net.IPv4len, net.IPv6len:
|
|
// Go on.
|
|
default:
|
|
return true
|
|
}
|
|
default:
|
|
return false
|
|
}
|
|
|
|
if aIs4, bIs4 := addrA.To4() != nil, addrB.To4() != nil; aIs4 != bIs4 {
|
|
if aIs4 {
|
|
return !preferIPv6
|
|
}
|
|
|
|
return preferIPv6
|
|
}
|
|
|
|
return bytes.Compare(addrA, addrB) < 0
|
|
})
|
|
}
|
|
|
|
// UpstreamHTTPVersions returns the HTTP versions for upstream configuration
|
|
// depending on configuration.
|
|
func UpstreamHTTPVersions(http3 bool) (v []upstream.HTTPVersion) {
|
|
if !http3 {
|
|
return upstream.DefaultHTTPVersions
|
|
}
|
|
|
|
return []upstream.HTTPVersion{
|
|
upstream.HTTPVersion3,
|
|
upstream.HTTPVersion2,
|
|
upstream.HTTPVersion11,
|
|
}
|
|
}
|
|
|
|
// setProxyUpstreamMode sets the upstream mode and related settings in conf
|
|
// based on provided parameters.
|
|
func setProxyUpstreamMode(
|
|
conf *proxy.Config,
|
|
allServers bool,
|
|
fastestAddr bool,
|
|
fastestTimeout time.Duration,
|
|
) {
|
|
if allServers {
|
|
conf.UpstreamMode = proxy.UModeParallel
|
|
} else if fastestAddr {
|
|
conf.UpstreamMode = proxy.UModeFastestAddr
|
|
conf.FastestPingTimeout = fastestTimeout
|
|
} else {
|
|
conf.UpstreamMode = proxy.UModeLoadBalance
|
|
}
|
|
}
|