2018-10-11 10:52:23 -07:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-11-28 06:45:30 -07:00
|
|
|
"net"
|
2019-02-10 10:47:43 -07:00
|
|
|
"os"
|
2019-05-21 04:53:13 -07:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2018-10-11 10:52:23 -07:00
|
|
|
|
2018-11-30 03:24:42 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsfilter"
|
2018-11-28 06:45:30 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsforward"
|
2019-03-20 04:24:33 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
2019-05-21 04:53:13 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/upstream"
|
2019-02-25 06:44:22 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2018-11-28 06:45:30 -07:00
|
|
|
"github.com/joomcode/errorx"
|
2019-05-21 04:53:13 -07:00
|
|
|
"github.com/miekg/dns"
|
2018-10-11 10:52:23 -07:00
|
|
|
)
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
var dnsServer *dnsforward.Server
|
|
|
|
|
2019-05-21 04:53:13 -07:00
|
|
|
const (
|
|
|
|
rdnsTimeout = 3 * time.Second // max time to wait for rDNS response
|
|
|
|
)
|
|
|
|
|
|
|
|
type dnsContext struct {
|
|
|
|
rdnsChannel chan string // pass data from DNS request handling thread to rDNS thread
|
|
|
|
// contains IP addresses of clients to be resolved by rDNS
|
|
|
|
// if IP address couldn't be resolved, it stays here forever to prevent further attempts to resolve the same IP
|
|
|
|
rdnsIP map[string]bool
|
|
|
|
rdnsLock sync.Mutex // synchronize access to rdnsIP
|
|
|
|
upstream upstream.Upstream // Upstream object for our own DNS server
|
|
|
|
}
|
|
|
|
|
|
|
|
var dnsctx dnsContext
|
|
|
|
|
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
|
|
|
|
func initDNSServer(baseDir string) {
|
|
|
|
err := os.MkdirAll(baseDir, 0755)
|
|
|
|
if err != nil {
|
|
|
|
log.Fatalf("Cannot create DNS data dir at %s: %s", baseDir, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsServer = dnsforward.NewServer(baseDir)
|
2019-05-21 04:53:13 -07:00
|
|
|
|
|
|
|
bindhost := config.DNS.BindHost
|
|
|
|
if config.DNS.BindHost == "0.0.0.0" {
|
|
|
|
bindhost = "127.0.0.1"
|
|
|
|
}
|
|
|
|
resolverAddress := fmt.Sprintf("%s:%d", bindhost, config.DNS.Port)
|
|
|
|
opts := upstream.Options{
|
|
|
|
Timeout: rdnsTimeout,
|
|
|
|
}
|
|
|
|
dnsctx.upstream, err = upstream.AddressToUpstream(resolverAddress, opts)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("upstream.AddressToUpstream: %s", err)
|
|
|
|
return
|
|
|
|
}
|
2019-05-28 09:48:16 -07:00
|
|
|
dnsctx.rdnsIP = make(map[string]bool)
|
2019-05-21 04:53:13 -07:00
|
|
|
dnsctx.rdnsChannel = make(chan string, 256)
|
|
|
|
go asyncRDNSLoop()
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
2018-10-11 10:52:23 -07:00
|
|
|
|
|
|
|
func isRunning() bool {
|
2019-02-10 10:47:43 -07:00
|
|
|
return dnsServer != nil && dnsServer.IsRunning()
|
2018-10-11 10:52:23 -07:00
|
|
|
}
|
|
|
|
|
2019-05-21 04:53:13 -07:00
|
|
|
func beginAsyncRDNS(ip string) {
|
2019-06-04 08:12:45 -07:00
|
|
|
if clientExists(ip) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// add IP to rdnsIP, if not exists
|
|
|
|
dnsctx.rdnsLock.Lock()
|
|
|
|
defer dnsctx.rdnsLock.Unlock()
|
|
|
|
_, ok := dnsctx.rdnsIP[ip]
|
|
|
|
if ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
dnsctx.rdnsIP[ip] = true
|
|
|
|
|
2019-05-21 04:53:13 -07:00
|
|
|
log.Tracef("Adding %s for rDNS resolve", ip)
|
|
|
|
select {
|
|
|
|
case dnsctx.rdnsChannel <- ip:
|
|
|
|
//
|
|
|
|
default:
|
|
|
|
log.Tracef("rDNS queue is full")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use rDNS to get hostname by IP address
|
|
|
|
func resolveRDNS(ip string) string {
|
|
|
|
log.Tracef("Resolving host for %s", ip)
|
|
|
|
|
|
|
|
req := dns.Msg{}
|
|
|
|
req.Id = dns.Id()
|
|
|
|
req.RecursionDesired = true
|
|
|
|
req.Question = []dns.Question{
|
|
|
|
{
|
|
|
|
Qtype: dns.TypePTR,
|
|
|
|
Qclass: dns.ClassINET,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
var err error
|
|
|
|
req.Question[0].Name, err = dns.ReverseAddr(ip)
|
|
|
|
if err != nil {
|
2019-06-04 09:58:13 -07:00
|
|
|
log.Debug("Error while calling dns.ReverseAddr(%s): %s", ip, err)
|
2019-05-21 04:53:13 -07:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
resp, err := dnsctx.upstream.Exchange(&req)
|
|
|
|
if err != nil {
|
2019-06-04 09:58:13 -07:00
|
|
|
log.Error("Error while making an rDNS lookup for %s: %s", ip, err)
|
2019-05-21 04:53:13 -07:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
if len(resp.Answer) != 1 {
|
2019-06-04 09:58:13 -07:00
|
|
|
log.Debug("No answer for rDNS lookup of %s", ip)
|
2019-05-21 04:53:13 -07:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
ptr, ok := resp.Answer[0].(*dns.PTR)
|
|
|
|
if !ok {
|
2019-06-04 09:58:13 -07:00
|
|
|
log.Error("not a PTR response for %s", ip)
|
2019-05-21 04:53:13 -07:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-06-04 09:58:13 -07:00
|
|
|
log.Tracef("PTR response for %s: %s", ip, ptr.String())
|
2019-05-21 04:53:13 -07:00
|
|
|
if strings.HasSuffix(ptr.Ptr, ".") {
|
|
|
|
ptr.Ptr = ptr.Ptr[:len(ptr.Ptr)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return ptr.Ptr
|
|
|
|
}
|
|
|
|
|
|
|
|
// Wait for a signal and then synchronously resolve hostname by IP address
|
|
|
|
// Add the hostname:IP pair to "Clients" array
|
|
|
|
func asyncRDNSLoop() {
|
|
|
|
for {
|
|
|
|
var ip string
|
|
|
|
ip = <-dnsctx.rdnsChannel
|
|
|
|
|
|
|
|
host := resolveRDNS(ip)
|
|
|
|
if len(host) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
dnsctx.rdnsLock.Lock()
|
|
|
|
delete(dnsctx.rdnsIP, ip)
|
|
|
|
dnsctx.rdnsLock.Unlock()
|
|
|
|
|
2019-05-30 05:36:39 -07:00
|
|
|
_, _ = clientAddHost(ip, host, ClientSourceRDNS)
|
2019-05-21 04:53:13 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func onDNSRequest(d *proxy.DNSContext) {
|
2019-06-04 10:38:53 -07:00
|
|
|
qType := d.Req.Question[0].Qtype
|
|
|
|
if qType != dns.TypeA && qType != dns.TypeAAAA {
|
|
|
|
return
|
2019-05-21 04:53:13 -07:00
|
|
|
}
|
2019-06-04 10:38:53 -07:00
|
|
|
|
|
|
|
ip := dnsforward.GetIPString(d.Addr)
|
|
|
|
if ip == "" {
|
|
|
|
// This would be quite weird if we get here
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
beginAsyncRDNS(ip)
|
2019-05-21 04:53:13 -07:00
|
|
|
}
|
|
|
|
|
2018-11-28 08:57:20 -07:00
|
|
|
func generateServerConfig() dnsforward.ServerConfig {
|
2018-11-30 03:24:42 -07:00
|
|
|
filters := []dnsfilter.Filter{}
|
2018-11-28 10:19:09 -07:00
|
|
|
userFilter := userFilter()
|
2018-11-30 03:24:42 -07:00
|
|
|
filters = append(filters, dnsfilter.Filter{
|
2019-05-15 05:32:42 -07:00
|
|
|
ID: userFilter.ID,
|
|
|
|
Data: userFilter.Data,
|
2018-11-28 10:19:09 -07:00
|
|
|
})
|
2018-11-28 06:45:30 -07:00
|
|
|
for _, filter := range config.Filters {
|
2018-11-30 03:24:42 -07:00
|
|
|
filters = append(filters, dnsfilter.Filter{
|
2019-05-15 05:32:42 -07:00
|
|
|
ID: filter.ID,
|
|
|
|
Data: filter.Data,
|
2018-11-28 06:45:30 -07:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
newconfig := dnsforward.ServerConfig{
|
2019-01-18 18:41:43 -07:00
|
|
|
UDPListenAddr: &net.UDPAddr{IP: net.ParseIP(config.DNS.BindHost), Port: config.DNS.Port},
|
|
|
|
TCPListenAddr: &net.TCPAddr{IP: net.ParseIP(config.DNS.BindHost), Port: config.DNS.Port},
|
2018-12-05 10:29:00 -07:00
|
|
|
FilteringConfig: config.DNS.FilteringConfig,
|
2018-11-30 03:35:22 -07:00
|
|
|
Filters: filters,
|
2018-11-28 06:45:30 -07:00
|
|
|
}
|
2019-04-23 09:37:14 -07:00
|
|
|
bindhost := config.DNS.BindHost
|
|
|
|
if config.DNS.BindHost == "0.0.0.0" {
|
|
|
|
bindhost = "127.0.0.1"
|
|
|
|
}
|
|
|
|
newconfig.ResolverAddress = fmt.Sprintf("%s:%d", bindhost, config.DNS.Port)
|
2018-11-28 06:45:30 -07:00
|
|
|
|
2019-02-14 08:00:23 -07:00
|
|
|
if config.TLS.Enabled {
|
|
|
|
newconfig.TLSConfig = config.TLS.TLSConfig
|
|
|
|
if config.TLS.PortDNSOverTLS != 0 {
|
|
|
|
newconfig.TLSListenAddr = &net.TCPAddr{IP: net.ParseIP(config.DNS.BindHost), Port: config.TLS.PortDNSOverTLS}
|
|
|
|
}
|
2019-02-12 07:23:38 -07:00
|
|
|
}
|
|
|
|
|
2019-03-20 04:24:33 -07:00
|
|
|
upstreamConfig, err := proxy.ParseUpstreamsConfig(config.DNS.UpstreamDNS, config.DNS.BootstrapDNS, dnsforward.DefaultTimeout)
|
|
|
|
if err != nil {
|
|
|
|
log.Error("Couldn't get upstreams configuration cause: %s", err)
|
2018-11-28 06:45:30 -07:00
|
|
|
}
|
2019-03-20 04:24:33 -07:00
|
|
|
newconfig.Upstreams = upstreamConfig.Upstreams
|
|
|
|
newconfig.DomainsReservedUpstreams = upstreamConfig.DomainReservedUpstreams
|
2019-02-27 01:31:25 -07:00
|
|
|
newconfig.AllServers = config.DNS.AllServers
|
2019-04-26 06:07:12 -07:00
|
|
|
newconfig.FilterHandler = applyClientSettings
|
2019-05-21 04:53:13 -07:00
|
|
|
newconfig.OnDNSRequest = onDNSRequest
|
2018-11-28 08:57:20 -07:00
|
|
|
return newconfig
|
|
|
|
}
|
|
|
|
|
2019-04-26 06:07:12 -07:00
|
|
|
// If a client has his own settings, apply them
|
|
|
|
func applyClientSettings(clientAddr string, setts *dnsfilter.RequestFilteringSettings) {
|
|
|
|
c, ok := clientFind(clientAddr)
|
|
|
|
if !ok || !c.UseOwnSettings {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug("Using settings for client with IP %s", clientAddr)
|
|
|
|
if !c.FilteringEnabled {
|
|
|
|
setts.FilteringEnabled = false
|
|
|
|
}
|
|
|
|
if !c.SafeSearchEnabled {
|
|
|
|
setts.SafeSearchEnabled = false
|
|
|
|
}
|
|
|
|
if !c.SafeBrowsingEnabled {
|
|
|
|
setts.SafeBrowsingEnabled = false
|
|
|
|
}
|
|
|
|
if !c.ParentalEnabled {
|
|
|
|
setts.ParentalEnabled = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2018-11-28 08:57:20 -07:00
|
|
|
newconfig := generateServerConfig()
|
2018-11-28 06:45:30 -07:00
|
|
|
err := dnsServer.Start(&newconfig)
|
2018-10-11 10:52:23 -07:00
|
|
|
if err != nil {
|
2018-11-28 06:45:30 -07:00
|
|
|
return errorx.Decorate(err, "Couldn't start forwarding DNS server")
|
2018-10-11 10:52:23 -07:00
|
|
|
}
|
|
|
|
|
2019-06-04 08:12:45 -07:00
|
|
|
top := dnsServer.GetStatsTop()
|
|
|
|
for k := range top.Clients {
|
|
|
|
beginAsyncRDNS(k)
|
|
|
|
}
|
|
|
|
|
2018-10-11 10:52:23 -07:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-28 08:57:20 -07:00
|
|
|
|
|
|
|
func reconfigureDNSServer() error {
|
|
|
|
if !isRunning() {
|
|
|
|
return fmt.Errorf("Refusing to reconfigure forwarding DNS server: not running")
|
|
|
|
}
|
|
|
|
|
2018-12-24 05:19:52 -07:00
|
|
|
config := generateServerConfig()
|
|
|
|
err := dnsServer.Reconfigure(&config)
|
2018-11-28 08:57:20 -07:00
|
|
|
if err != nil {
|
|
|
|
return errorx.Decorate(err, "Couldn't start forwarding DNS server")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-05 05:36:18 -07:00
|
|
|
|
|
|
|
func stopDNSServer() error {
|
|
|
|
if !isRunning() {
|
|
|
|
return fmt.Errorf("Refusing to stop forwarding DNS server: not running")
|
|
|
|
}
|
|
|
|
|
|
|
|
err := dnsServer.Stop()
|
|
|
|
if err != nil {
|
|
|
|
return errorx.Decorate(err, "Couldn't stop forwarding DNS server")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|