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"
|
2021-01-27 08:32:13 -07:00
|
|
|
"strconv"
|
2018-10-11 10:52:23 -07:00
|
|
|
|
2020-12-07 07:58:33 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/agherr"
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsfilter"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/querylog"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/stats"
|
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/util"
|
2019-03-20 04:24:33 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
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
|
|
|
}
|
2019-08-26 01:54:38 -07:00
|
|
|
conf := querylog.Config{
|
2020-03-03 10:21:53 -07:00
|
|
|
Enabled: config.DNS.QueryLogEnabled,
|
2020-05-28 05:29:36 -07:00
|
|
|
FileEnabled: config.DNS.QueryLogFileEnabled,
|
2020-03-03 10:21:53 -07:00
|
|
|
BaseDir: baseDir,
|
|
|
|
Interval: config.DNS.QueryLogInterval,
|
|
|
|
MemSize: config.DNS.QueryLogMemSize,
|
|
|
|
AnonymizeClientIP: config.DNS.AnonymizeClientIP,
|
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
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
|
|
|
|
bindhost := config.DNS.BindHost
|
2021-01-20 07:27:53 -07:00
|
|
|
if config.DNS.BindHost.IsUnspecified() {
|
|
|
|
bindhost = net.IPv4(127, 0, 0, 1)
|
2019-10-09 09:51:26 -07:00
|
|
|
}
|
2021-01-27 08:32:13 -07:00
|
|
|
filterConf.ResolverAddress = net.JoinHostPort(bindhost.String(), strconv.Itoa(config.DNS.Port))
|
2020-03-20 05:05:43 -07:00
|
|
|
filterConf.AutoHosts = &Context.autoHosts
|
2019-10-09 09:51:26 -07:00
|
|
|
filterConf.ConfigModified = onConfigModified
|
|
|
|
filterConf.HTTPRegister = httpRegister
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.dnsFilter = dnsfilter.New(&filterConf, nil)
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2020-06-23 02:13:13 -07:00
|
|
|
p := dnsforward.DNSCreateParams{
|
2020-08-24 10:06:53 -07:00
|
|
|
DNSFilter: Context.dnsFilter,
|
|
|
|
Stats: Context.stats,
|
|
|
|
QueryLog: Context.queryLog,
|
|
|
|
}
|
|
|
|
if Context.dhcpServer != nil {
|
|
|
|
p.DHCPServer = Context.dhcpServer
|
2020-06-23 02:13:13 -07:00
|
|
|
}
|
|
|
|
Context.dnsServer = dnsforward.NewServer(p)
|
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()
|
|
|
|
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
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns = InitRDNS(Context.dnsServer, &Context.clients)
|
|
|
|
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-01-20 07:27:53 -07:00
|
|
|
ip := dnsforward.IPFromAddr(d.Addr)
|
|
|
|
if ip == nil {
|
2019-06-04 10:38:53 -07:00
|
|
|
// This would be quite weird if we get here
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
if !ip.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-06-25 06:14:52 -07:00
|
|
|
}
|
2021-01-20 07:27:53 -07:00
|
|
|
if !Context.ipDetector.detectSpecialNetwork(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
|
|
|
}
|
|
|
|
|
2020-12-07 07:58:33 -07:00
|
|
|
func generateServerConfig() (newconfig dnsforward.ServerConfig, err error) {
|
|
|
|
newconfig = dnsforward.ServerConfig{
|
2021-01-20 07:27:53 -07:00
|
|
|
UDPListenAddr: &net.UDPAddr{IP: config.DNS.BindHost, Port: config.DNS.Port},
|
|
|
|
TCPListenAddr: &net.TCPAddr{IP: config.DNS.BindHost, Port: config.DNS.Port},
|
2018-12-05 10:29:00 -07:00
|
|
|
FilteringConfig: config.DNS.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 {
|
|
|
|
newconfig.TLSConfig = tlsConf.TLSConfig
|
2021-01-27 08:32:13 -07:00
|
|
|
newconfig.TLSConfig.ServerName = tlsConf.ServerName
|
2020-08-27 05:03:07 -07:00
|
|
|
|
2020-02-19 05:28:06 -07:00
|
|
|
if tlsConf.PortDNSOverTLS != 0 {
|
|
|
|
newconfig.TLSListenAddr = &net.TCPAddr{
|
2021-01-20 07:27:53 -07:00
|
|
|
IP: config.DNS.BindHost,
|
2020-02-19 05:28:06 -07:00
|
|
|
Port: tlsConf.PortDNSOverTLS,
|
|
|
|
}
|
2019-02-14 08:00:23 -07:00
|
|
|
}
|
2020-08-27 05:03:07 -07:00
|
|
|
|
|
|
|
if tlsConf.PortDNSOverQUIC != 0 {
|
|
|
|
newconfig.QUICListenAddr = &net.UDPAddr{
|
2021-01-20 07:27:53 -07:00
|
|
|
IP: config.DNS.BindHost,
|
2020-08-27 05:03:07 -07:00
|
|
|
Port: int(tlsConf.PortDNSOverQUIC),
|
|
|
|
}
|
|
|
|
}
|
2020-12-07 07:58:33 -07:00
|
|
|
|
|
|
|
if tlsConf.PortDNSCrypt != 0 {
|
2021-01-20 07:27:53 -07:00
|
|
|
newconfig.DNSCryptConfig, err = newDNSCrypt(config.DNS.BindHost, 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
|
|
|
|
2020-03-04 05:11:17 -07:00
|
|
|
newconfig.TLSv12Roots = Context.tlsRoots
|
2020-03-23 00:23:34 -07:00
|
|
|
newconfig.TLSCiphers = Context.tlsCiphers
|
2020-02-27 01:48:59 -07:00
|
|
|
newconfig.TLSAllowUnencryptedDOH = tlsConf.AllowUnencryptedDOH
|
2019-02-12 07:23:38 -07:00
|
|
|
|
2019-07-23 02:21:37 -07:00
|
|
|
newconfig.FilterHandler = applyAdditionalFiltering
|
2020-05-13 10:31:43 -07:00
|
|
|
newconfig.GetCustomUpstreamByClient = Context.clients.FindUpstreams
|
2020-12-07 07:58:33 -07:00
|
|
|
|
|
|
|
return newconfig, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newDNSCrypt(bindHost net.IP, tlsConf tlsConfigSettings) (dnscc dnsforward.DNSCryptConfig, err error) {
|
|
|
|
if tlsConf.DNSCryptConfigFile == "" {
|
|
|
|
return dnscc, agherr.Error("no dnscrypt_config_file")
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := os.Open(tlsConf.DNSCryptConfigFile)
|
|
|
|
if err != nil {
|
|
|
|
return dnscc, fmt.Errorf("opening dnscrypt config: %w", err)
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
udpAddr := &net.UDPAddr{
|
|
|
|
IP: bindHost,
|
|
|
|
Port: tlsConf.PortDNSCrypt,
|
|
|
|
}
|
|
|
|
tcpAddr := &net.TCPAddr{
|
|
|
|
IP: bindHost,
|
|
|
|
Port: tlsConf.PortDNSCrypt,
|
|
|
|
}
|
|
|
|
|
|
|
|
return dnsforward.DNSCryptConfig{
|
|
|
|
UDPListenAddr: udpAddr,
|
|
|
|
TCPListenAddr: tcpAddr,
|
|
|
|
ResolverCert: cert,
|
|
|
|
ProviderName: rc.ProviderName,
|
|
|
|
Enabled: true,
|
|
|
|
}, 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-01-27 08:32:13 -07:00
|
|
|
addr = net.JoinHostPort(addr, strconv.Itoa(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",
|
|
|
|
Host: net.JoinHostPort(hostname, strconv.Itoa(tlsConf.PortDNSOverTLS)),
|
|
|
|
}).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",
|
|
|
|
Host: net.JoinHostPort(hostname, strconv.Itoa(int(tlsConf.PortDNSOverQUIC))),
|
|
|
|
}).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
|
|
|
}
|
|
|
|
|
|
|
|
// Get the list of DNS addresses the server is listening on
|
|
|
|
func getDNSAddresses() []string {
|
|
|
|
dnsAddresses := []string{}
|
|
|
|
|
2021-01-20 07:27:53 -07:00
|
|
|
if config.DNS.BindHost.IsUnspecified() {
|
2020-10-08 01:34:36 -07:00
|
|
|
ifaces, e := util.GetValidNetInterfacesForWeb()
|
|
|
|
if e != nil {
|
|
|
|
log.Error("Couldn't get network interfaces: %v", e)
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, iface := range ifaces {
|
|
|
|
for _, addr := range iface.Addresses {
|
|
|
|
addDNSAddress(&dnsAddresses, addr)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
addDNSAddress(&dnsAddresses, config.DNS.BindHost)
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsEncryption := getDNSEncryption()
|
|
|
|
if dnsEncryption.https != "" {
|
|
|
|
dnsAddresses = append(dnsAddresses, dnsEncryption.https)
|
|
|
|
}
|
|
|
|
if dnsEncryption.tls != "" {
|
|
|
|
dnsAddresses = append(dnsAddresses, dnsEncryption.tls)
|
|
|
|
}
|
|
|
|
if dnsEncryption.quic != "" {
|
|
|
|
dnsAddresses = append(dnsAddresses, dnsEncryption.quic)
|
|
|
|
}
|
|
|
|
|
2020-02-27 01:48:59 -07:00
|
|
|
return dnsAddresses
|
|
|
|
}
|
|
|
|
|
2021-01-27 08:32:13 -07:00
|
|
|
// applyAdditionalFiltering adds additional client information and settings if
|
|
|
|
// the client has them.
|
|
|
|
func applyAdditionalFiltering(clientAddr net.IP, clientID string, setts *dnsfilter.RequestFilteringSettings) {
|
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 {
|
|
|
|
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
|
|
|
|
2019-10-09 09:51:26 -07:00
|
|
|
enableFilters(false)
|
|
|
|
|
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) {
|
|
|
|
if !ip.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-10-10 03:54:26 -07:00
|
|
|
}
|
2021-01-20 07:27:53 -07:00
|
|
|
if !Context.ipDetector.detectSpecialNetwork(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) {
|
|
|
|
var newconfig dnsforward.ServerConfig
|
|
|
|
newconfig, 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)
|
|
|
|
}
|
|
|
|
|
|
|
|
err = Context.dnsServer.Reconfigure(&newconfig)
|
|
|
|
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
|
|
|
}
|