2019-06-10 01:33:19 -07:00
|
|
|
package home
|
2018-10-11 10:52:23 -07:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-11-28 06:45:30 -07:00
|
|
|
"net"
|
2021-01-27 08:32:13 -07:00
|
|
|
"net/url"
|
2020-12-07 07:58:33 -07:00
|
|
|
"os"
|
2019-09-06 05:42:21 -07:00
|
|
|
"path/filepath"
|
2018-10-11 10:52:23 -07:00
|
|
|
|
2021-05-28 03:02:59 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/aghnet"
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2021-05-21 06:15:47 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/filtering"
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/querylog"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/stats"
|
2019-03-20 04:24:33 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
2021-05-24 07:28:11 -07:00
|
|
|
"github.com/AdguardTeam/golibs/errors"
|
2019-02-25 06:44:22 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2020-12-07 07:58:33 -07:00
|
|
|
"github.com/ameshkov/dnscrypt/v2"
|
|
|
|
yaml "gopkg.in/yaml.v2"
|
2018-10-11 10:52:23 -07:00
|
|
|
)
|
|
|
|
|
2019-09-25 05:36:09 -07:00
|
|
|
// Called by other modules when configuration is changed
|
|
|
|
func onConfigModified() {
|
|
|
|
_ = config.write()
|
|
|
|
}
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
// initDNSServer creates an instance of the dnsforward.Server
|
|
|
|
// Please note that we must do it even if we don't start it
|
|
|
|
// so that we had access to the query log and the stats
|
2019-12-11 02:38:58 -07:00
|
|
|
func initDNSServer() error {
|
2020-02-18 09:27:09 -07:00
|
|
|
var err error
|
2020-02-13 08:42:07 -07:00
|
|
|
baseDir := Context.getDataDir()
|
2019-10-02 06:53:23 -07:00
|
|
|
|
2019-09-16 06:14:52 -07:00
|
|
|
statsConf := stats.Config{
|
2020-03-03 10:21:53 -07:00
|
|
|
Filename: filepath.Join(baseDir, "stats.db"),
|
|
|
|
LimitDays: config.DNS.StatsInterval,
|
|
|
|
AnonymizeClientIP: config.DNS.AnonymizeClientIP,
|
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
2019-09-16 06:14:52 -07:00
|
|
|
}
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.stats, err = stats.New(statsConf)
|
2019-09-06 05:42:21 -07:00
|
|
|
if err != nil {
|
2020-04-05 08:34:43 -07:00
|
|
|
return fmt.Errorf("couldn't initialize statistics module")
|
2019-08-22 06:34:58 -07:00
|
|
|
}
|
2021-04-02 07:30:39 -07:00
|
|
|
|
2019-08-26 01:54:38 -07:00
|
|
|
conf := querylog.Config{
|
2021-04-02 07:30:39 -07:00
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
|
|
|
FindClient: Context.clients.findMultiple,
|
2020-03-03 10:21:53 -07:00
|
|
|
BaseDir: baseDir,
|
2021-04-02 07:30:39 -07:00
|
|
|
RotationIvl: config.DNS.QueryLogInterval,
|
2020-03-03 10:21:53 -07:00
|
|
|
MemSize: config.DNS.QueryLogMemSize,
|
2021-04-02 07:30:39 -07:00
|
|
|
Enabled: config.DNS.QueryLogEnabled,
|
|
|
|
FileEnabled: config.DNS.QueryLogFileEnabled,
|
2020-03-03 10:21:53 -07:00
|
|
|
AnonymizeClientIP: config.DNS.AnonymizeClientIP,
|
2019-08-26 01:54:38 -07:00
|
|
|
}
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.queryLog = querylog.New(conf)
|
2019-10-09 09:51:26 -07:00
|
|
|
|
|
|
|
filterConf := config.DNS.DnsfilterConf
|
2021-04-12 08:31:45 -07:00
|
|
|
filterConf.EtcHosts = Context.etcHosts
|
2019-10-09 09:51:26 -07:00
|
|
|
filterConf.ConfigModified = onConfigModified
|
|
|
|
filterConf.HTTPRegister = httpRegister
|
2021-05-21 06:15:47 -07:00
|
|
|
Context.dnsFilter = filtering.New(&filterConf, nil)
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2020-06-23 02:13:13 -07:00
|
|
|
p := dnsforward.DNSCreateParams{
|
2021-03-31 05:00:47 -07:00
|
|
|
DNSFilter: Context.dnsFilter,
|
|
|
|
Stats: Context.stats,
|
|
|
|
QueryLog: Context.queryLog,
|
|
|
|
SubnetDetector: Context.subnetDetector,
|
2021-04-15 09:00:31 -07:00
|
|
|
LocalDomain: config.DNS.LocalDomainName,
|
2020-08-24 10:06:53 -07:00
|
|
|
}
|
|
|
|
if Context.dhcpServer != nil {
|
|
|
|
p.DHCPServer = Context.dhcpServer
|
2020-06-23 02:13:13 -07:00
|
|
|
}
|
2021-03-25 06:00:27 -07:00
|
|
|
|
|
|
|
Context.dnsServer, err = dnsforward.NewServer(p)
|
|
|
|
if err != nil {
|
|
|
|
closeDNSServer()
|
|
|
|
|
|
|
|
return fmt.Errorf("dnsforward.NewServer: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-09-08 03:56:45 -07:00
|
|
|
Context.clients.dnsServer = Context.dnsServer
|
2020-12-07 07:58:33 -07:00
|
|
|
dnsConfig, err := generateServerConfig()
|
|
|
|
if err != nil {
|
|
|
|
closeDNSServer()
|
2021-03-25 06:00:27 -07:00
|
|
|
|
2020-12-07 07:58:33 -07:00
|
|
|
return fmt.Errorf("generateServerConfig: %w", err)
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
err = Context.dnsServer.Prepare(&dnsConfig)
|
|
|
|
if err != nil {
|
2020-01-16 04:25:40 -07:00
|
|
|
closeDNSServer()
|
2020-11-05 05:20:57 -07:00
|
|
|
return fmt.Errorf("dnsServer.Prepare: %w", err)
|
2019-12-11 02:38:58 -07:00
|
|
|
}
|
2019-05-21 04:53:13 -07:00
|
|
|
|
2021-05-26 07:55:19 -07:00
|
|
|
Context.rdns = NewRDNS(Context.dnsServer, &Context.clients, config.DNS.UsePrivateRDNS)
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.whois = initWhois(&Context.clients)
|
2019-10-07 05:57:34 -07:00
|
|
|
|
2020-03-17 05:00:40 -07:00
|
|
|
Context.filters.Init()
|
2019-12-11 02:38:58 -07:00
|
|
|
return nil
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
2018-10-11 10:52:23 -07:00
|
|
|
|
|
|
|
func isRunning() bool {
|
2019-12-11 02:38:58 -07:00
|
|
|
return Context.dnsServer != nil && Context.dnsServer.IsRunning()
|
2018-10-11 10:52:23 -07:00
|
|
|
}
|
|
|
|
|
2019-05-21 04:53:13 -07:00
|
|
|
func onDNSRequest(d *proxy.DNSContext) {
|
2021-05-28 03:02:59 -07:00
|
|
|
ip := aghnet.IPFromAddr(d.Addr)
|
2021-01-20 07:27:53 -07:00
|
|
|
if ip == nil {
|
2021-03-31 05:00:47 -07:00
|
|
|
// This would be quite weird if we get here.
|
2019-06-04 10:38:53 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-07 10:16:06 -07:00
|
|
|
if config.DNS.ResolveClients && !ip.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-06-25 06:14:52 -07:00
|
|
|
}
|
2021-03-31 05:00:47 -07:00
|
|
|
if !Context.subnetDetector.IsSpecialNetwork(ip) {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.whois.Begin(ip)
|
2019-06-25 06:14:52 -07:00
|
|
|
}
|
2019-05-21 04:53:13 -07:00
|
|
|
}
|
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
func ipsToTCPAddrs(ips []net.IP, port int) (tcpAddrs []*net.TCPAddr) {
|
|
|
|
if ips == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
tcpAddrs = make([]*net.TCPAddr, len(ips))
|
|
|
|
for i, ip := range ips {
|
|
|
|
tcpAddrs[i] = &net.TCPAddr{
|
|
|
|
IP: ip,
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return tcpAddrs
|
|
|
|
}
|
|
|
|
|
|
|
|
func ipsToUDPAddrs(ips []net.IP, port int) (udpAddrs []*net.UDPAddr) {
|
|
|
|
if ips == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
udpAddrs = make([]*net.UDPAddr, len(ips))
|
|
|
|
for i, ip := range ips {
|
|
|
|
udpAddrs[i] = &net.UDPAddr{
|
|
|
|
IP: ip,
|
|
|
|
Port: port,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return udpAddrs
|
|
|
|
}
|
|
|
|
|
|
|
|
func generateServerConfig() (newConf dnsforward.ServerConfig, err error) {
|
|
|
|
dnsConf := config.DNS
|
|
|
|
hosts := dnsConf.BindHosts
|
2021-03-24 04:52:37 -07:00
|
|
|
if len(hosts) == 0 {
|
|
|
|
hosts = []net.IP{{127, 0, 0, 1}}
|
2021-03-23 02:32:07 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
newConf = dnsforward.ServerConfig{
|
|
|
|
UDPListenAddrs: ipsToUDPAddrs(hosts, dnsConf.Port),
|
|
|
|
TCPListenAddrs: ipsToTCPAddrs(hosts, dnsConf.Port),
|
|
|
|
FilteringConfig: dnsConf.FilteringConfig,
|
2019-10-30 01:52:58 -07:00
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
|
|
|
OnDNSRequest: onDNSRequest,
|
2018-11-28 06:45:30 -07:00
|
|
|
}
|
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
tlsConf := tlsConfigSettings{}
|
|
|
|
Context.tls.WriteDiskConfig(&tlsConf)
|
|
|
|
if tlsConf.Enabled {
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.TLSConfig = tlsConf.TLSConfig
|
|
|
|
newConf.TLSConfig.ServerName = tlsConf.ServerName
|
2020-08-27 05:03:07 -07:00
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
if tlsConf.PortDNSOverTLS != 0 {
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.TLSListenAddrs = ipsToTCPAddrs(hosts, tlsConf.PortDNSOverTLS)
|
2019-02-14 08:00:23 -07:00
|
|
|
}
|
2020-08-27 05:03:07 -07:00
|
|
|
|
|
|
|
if tlsConf.PortDNSOverQUIC != 0 {
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.QUICListenAddrs = ipsToUDPAddrs(hosts, tlsConf.PortDNSOverQUIC)
|
2020-08-27 05:03:07 -07:00
|
|
|
}
|
2020-12-07 07:58:33 -07:00
|
|
|
|
|
|
|
if tlsConf.PortDNSCrypt != 0 {
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.DNSCryptConfig, err = newDNSCrypt(hosts, tlsConf)
|
2020-12-07 07:58:33 -07:00
|
|
|
if err != nil {
|
|
|
|
// Don't wrap the error, because it's already
|
|
|
|
// wrapped by newDNSCrypt.
|
|
|
|
return dnsforward.ServerConfig{}, err
|
|
|
|
}
|
|
|
|
}
|
2019-02-12 07:23:38 -07:00
|
|
|
}
|
2020-12-07 07:58:33 -07:00
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.TLSv12Roots = Context.tlsRoots
|
|
|
|
newConf.TLSCiphers = Context.tlsCiphers
|
|
|
|
newConf.TLSAllowUnencryptedDOH = tlsConf.AllowUnencryptedDOH
|
2019-02-12 07:23:38 -07:00
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
newConf.FilterHandler = applyAdditionalFiltering
|
2021-05-28 03:02:59 -07:00
|
|
|
newConf.GetCustomUpstreamByClient = Context.clients.findUpstreams
|
2020-12-07 07:58:33 -07:00
|
|
|
|
2021-04-07 10:16:06 -07:00
|
|
|
newConf.ResolveClients = dnsConf.ResolveClients
|
2021-05-26 07:55:19 -07:00
|
|
|
newConf.UsePrivateRDNS = dnsConf.UsePrivateRDNS
|
2021-04-07 10:16:06 -07:00
|
|
|
newConf.LocalPTRResolvers = dnsConf.LocalPTRResolvers
|
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
return newConf, nil
|
2020-12-07 07:58:33 -07:00
|
|
|
}
|
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
func newDNSCrypt(hosts []net.IP, tlsConf tlsConfigSettings) (dnscc dnsforward.DNSCryptConfig, err error) {
|
2020-12-07 07:58:33 -07:00
|
|
|
if tlsConf.DNSCryptConfigFile == "" {
|
2021-05-24 07:28:11 -07:00
|
|
|
return dnscc, errors.Error("no dnscrypt_config_file")
|
2020-12-07 07:58:33 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.Open(tlsConf.DNSCryptConfigFile)
|
|
|
|
if err != nil {
|
|
|
|
return dnscc, fmt.Errorf("opening dnscrypt config: %w", err)
|
|
|
|
}
|
2021-05-24 07:28:11 -07:00
|
|
|
defer func() { err = errors.WithDeferred(err, f.Close()) }()
|
2020-12-07 07:58:33 -07:00
|
|
|
|
|
|
|
rc := &dnscrypt.ResolverConfig{}
|
|
|
|
err = yaml.NewDecoder(f).Decode(rc)
|
|
|
|
if err != nil {
|
|
|
|
return dnscc, fmt.Errorf("decoding dnscrypt config: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, err := rc.CreateCert()
|
|
|
|
if err != nil {
|
|
|
|
return dnscc, fmt.Errorf("creating dnscrypt cert: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return dnsforward.DNSCryptConfig{
|
2021-03-23 02:32:07 -07:00
|
|
|
UDPListenAddrs: ipsToUDPAddrs(hosts, tlsConf.PortDNSCrypt),
|
|
|
|
TCPListenAddrs: ipsToTCPAddrs(hosts, tlsConf.PortDNSCrypt),
|
|
|
|
ResolverCert: cert,
|
|
|
|
ProviderName: rc.ProviderName,
|
|
|
|
Enabled: true,
|
2020-12-07 07:58:33 -07:00
|
|
|
}, nil
|
2018-11-28 08:57:20 -07:00
|
|
|
}
|
|
|
|
|
2020-12-07 06:04:53 -07:00
|
|
|
type dnsEncryption struct {
|
2020-10-08 01:34:36 -07:00
|
|
|
https string
|
|
|
|
tls string
|
|
|
|
quic string
|
|
|
|
}
|
2020-02-27 01:48:59 -07:00
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
func getDNSEncryption() (de dnsEncryption) {
|
2020-02-27 01:48:59 -07:00
|
|
|
tlsConf := tlsConfigSettings{}
|
2020-10-08 01:34:36 -07:00
|
|
|
|
2020-02-27 01:48:59 -07:00
|
|
|
Context.tls.WriteDiskConfig(&tlsConf)
|
2020-10-08 01:34:36 -07:00
|
|
|
|
2020-02-27 01:48:59 -07:00
|
|
|
if tlsConf.Enabled && len(tlsConf.ServerName) != 0 {
|
2021-01-27 08:32:13 -07:00
|
|
|
hostname := tlsConf.ServerName
|
2020-02-27 01:48:59 -07:00
|
|
|
if tlsConf.PortHTTPS != 0 {
|
2021-01-27 08:32:13 -07:00
|
|
|
addr := hostname
|
2020-02-27 01:48:59 -07:00
|
|
|
if tlsConf.PortHTTPS != 443 {
|
2021-06-01 11:06:55 -07:00
|
|
|
addr = aghnet.JoinHostPort(addr, tlsConf.PortHTTPS)
|
2020-02-27 01:48:59 -07:00
|
|
|
}
|
2021-01-27 08:32:13 -07:00
|
|
|
|
|
|
|
de.https = (&url.URL{
|
|
|
|
Scheme: "https",
|
|
|
|
Host: addr,
|
|
|
|
Path: "/dns-query",
|
|
|
|
}).String()
|
2020-02-27 01:48:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if tlsConf.PortDNSOverTLS != 0 {
|
2021-01-27 08:32:13 -07:00
|
|
|
de.tls = (&url.URL{
|
|
|
|
Scheme: "tls",
|
2021-06-01 11:06:55 -07:00
|
|
|
Host: aghnet.JoinHostPort(hostname, tlsConf.PortDNSOverTLS),
|
2021-01-27 08:32:13 -07:00
|
|
|
}).String()
|
2020-02-27 01:48:59 -07:00
|
|
|
}
|
2020-08-27 05:03:07 -07:00
|
|
|
|
|
|
|
if tlsConf.PortDNSOverQUIC != 0 {
|
2021-01-27 08:32:13 -07:00
|
|
|
de.quic = (&url.URL{
|
|
|
|
Scheme: "quic",
|
2021-06-01 11:06:55 -07:00
|
|
|
Host: aghnet.JoinHostPort(hostname, tlsConf.PortDNSOverQUIC),
|
2021-01-27 08:32:13 -07:00
|
|
|
}).String()
|
2020-08-27 05:03:07 -07:00
|
|
|
}
|
2020-02-27 01:48:59 -07:00
|
|
|
}
|
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
return de
|
2020-10-08 01:34:36 -07:00
|
|
|
}
|
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
// applyAdditionalFiltering adds additional client information and settings if
|
|
|
|
// the client has them.
|
2021-05-21 06:15:47 -07:00
|
|
|
func applyAdditionalFiltering(clientAddr net.IP, clientID string, setts *filtering.Settings) {
|
2020-02-18 10:17:35 -07:00
|
|
|
Context.dnsFilter.ApplyBlockedServices(setts, nil, true)
|
2019-07-23 02:21:37 -07:00
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
if clientAddr == nil {
|
2019-07-23 02:21:37 -07:00
|
|
|
return
|
|
|
|
}
|
2021-01-27 08:32:13 -07:00
|
|
|
|
2020-06-23 04:36:26 -07:00
|
|
|
setts.ClientIP = clientAddr
|
2019-07-23 02:21:37 -07:00
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
c, ok := Context.clients.Find(clientID)
|
2019-07-23 02:21:37 -07:00
|
|
|
if !ok {
|
2021-01-27 08:32:13 -07:00
|
|
|
c, ok = Context.clients.Find(clientAddr.String())
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
2019-04-26 06:07:12 -07:00
|
|
|
}
|
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
log.Debug("using settings for client %s with ip %s and id %q", c.Name, clientAddr, clientID)
|
2019-07-23 02:21:37 -07:00
|
|
|
|
|
|
|
if c.UseOwnBlockedServices {
|
2020-02-18 10:17:35 -07:00
|
|
|
Context.dnsFilter.ApplyBlockedServices(setts, c.BlockedServices, false)
|
2019-07-23 02:21:37 -07:00
|
|
|
}
|
|
|
|
|
2020-06-23 04:36:26 -07:00
|
|
|
setts.ClientName = c.Name
|
2020-01-28 04:06:52 -07:00
|
|
|
setts.ClientTags = c.Tags
|
2019-07-23 02:21:37 -07:00
|
|
|
if !c.UseOwnSettings {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-06 11:04:17 -07:00
|
|
|
setts.FilteringEnabled = c.FilteringEnabled
|
|
|
|
setts.SafeSearchEnabled = c.SafeSearchEnabled
|
|
|
|
setts.SafeBrowsingEnabled = c.SafeBrowsingEnabled
|
2019-06-06 12:42:17 -07:00
|
|
|
setts.ParentalEnabled = c.ParentalEnabled
|
2019-04-26 06:07:12 -07:00
|
|
|
}
|
|
|
|
|
2018-11-28 08:57:20 -07:00
|
|
|
func startDNSServer() error {
|
2021-05-24 04:48:42 -07:00
|
|
|
config.RLock()
|
|
|
|
defer config.RUnlock()
|
2021-05-17 06:50:02 -07:00
|
|
|
|
2018-11-28 08:57:20 -07:00
|
|
|
if isRunning() {
|
2019-01-25 06:01:27 -07:00
|
|
|
return fmt.Errorf("unable to start forwarding DNS server: Already running")
|
2018-11-28 08:57:20 -07:00
|
|
|
}
|
2018-10-17 10:43:26 -07:00
|
|
|
|
2021-05-24 04:48:42 -07:00
|
|
|
enableFiltersLocked(false)
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2020-02-18 09:27:09 -07:00
|
|
|
Context.clients.Start()
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
err := Context.dnsServer.Start()
|
2018-10-11 10:52:23 -07:00
|
|
|
if err != nil {
|
2020-11-05 05:20:57 -07:00
|
|
|
return fmt.Errorf("couldn't start forwarding DNS server: %w", err)
|
2018-10-11 10:52:23 -07:00
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:40 -07:00
|
|
|
Context.dnsFilter.Start()
|
2020-03-17 05:00:40 -07:00
|
|
|
Context.filters.Start()
|
2020-01-16 04:25:40 -07:00
|
|
|
Context.stats.Start()
|
|
|
|
Context.queryLog.Start()
|
2019-10-17 04:33:38 -07:00
|
|
|
|
2019-10-10 03:54:26 -07:00
|
|
|
const topClientsNumber = 100 // the number of clients to get
|
2021-01-20 07:27:53 -07:00
|
|
|
for _, ip := range Context.stats.GetTopClientsIP(topClientsNumber) {
|
2021-04-07 10:16:06 -07:00
|
|
|
if config.DNS.ResolveClients && !ip.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-10-10 03:54:26 -07:00
|
|
|
}
|
2021-03-31 05:00:47 -07:00
|
|
|
if !Context.subnetDetector.IsSpecialNetwork(ip) {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.whois.Begin(ip)
|
2019-10-10 03:54:26 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 10:52:23 -07:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-28 08:57:20 -07:00
|
|
|
|
2020-12-07 07:58:33 -07:00
|
|
|
func reconfigureDNSServer() (err error) {
|
2021-03-23 02:32:07 -07:00
|
|
|
var newConf dnsforward.ServerConfig
|
|
|
|
newConf, err = generateServerConfig()
|
2018-11-28 08:57:20 -07:00
|
|
|
if err != nil {
|
2020-12-07 07:58:33 -07:00
|
|
|
return fmt.Errorf("generating forwarding dns server config: %w", err)
|
|
|
|
}
|
|
|
|
|
2021-03-23 02:32:07 -07:00
|
|
|
err = Context.dnsServer.Reconfigure(&newConf)
|
2020-12-07 07:58:33 -07:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("starting forwarding dns server: %w", err)
|
2018-11-28 08:57:20 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-05 05:36:18 -07:00
|
|
|
|
|
|
|
func stopDNSServer() error {
|
2019-12-16 07:04:30 -07:00
|
|
|
if !isRunning() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
err := Context.dnsServer.Stop()
|
2018-12-05 05:36:18 -07:00
|
|
|
if err != nil {
|
2020-11-05 05:20:57 -07:00
|
|
|
return fmt.Errorf("couldn't stop forwarding DNS server: %w", err)
|
2018-12-05 05:36:18 -07:00
|
|
|
}
|
|
|
|
|
2020-01-16 04:25:40 -07:00
|
|
|
closeDNSServer()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func closeDNSServer() {
|
2019-09-16 05:54:41 -07:00
|
|
|
// DNS forward module must be closed BEFORE stats or queryLog because it depends on them
|
2020-01-16 04:25:40 -07:00
|
|
|
if Context.dnsServer != nil {
|
|
|
|
Context.dnsServer.Close()
|
|
|
|
Context.dnsServer = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if Context.dnsFilter != nil {
|
|
|
|
Context.dnsFilter.Close()
|
|
|
|
Context.dnsFilter = nil
|
|
|
|
}
|
2019-09-16 05:54:41 -07:00
|
|
|
|
2020-01-16 04:25:40 -07:00
|
|
|
if Context.stats != nil {
|
|
|
|
Context.stats.Close()
|
|
|
|
Context.stats = nil
|
|
|
|
}
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2020-01-16 04:25:40 -07:00
|
|
|
if Context.queryLog != nil {
|
|
|
|
Context.queryLog.Close()
|
|
|
|
Context.queryLog = nil
|
|
|
|
}
|
2019-09-16 05:54:41 -07:00
|
|
|
|
2020-03-17 05:00:40 -07:00
|
|
|
Context.filters.Close()
|
|
|
|
|
2020-01-16 04:25:40 -07:00
|
|
|
log.Debug("Closed all DNS modules")
|
2018-12-05 05:36:18 -07:00
|
|
|
}
|