2019-06-10 08:33:19 +00:00
|
|
|
package home
|
2018-10-11 17:52:23 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
2018-11-28 13:45:30 +00:00
|
|
|
"net"
|
2019-02-10 17:47:43 +00:00
|
|
|
"os"
|
2019-09-06 12:42:21 +00:00
|
|
|
"path/filepath"
|
2018-10-11 17:52:23 +00:00
|
|
|
|
2018-11-30 10:24:42 +00:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsfilter"
|
2018-11-28 13:45:30 +00:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/dnsforward"
|
2019-08-26 08:54:38 +00:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/querylog"
|
2019-08-22 13:34:58 +00:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/stats"
|
2019-03-20 11:24:33 +00:00
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
2019-02-25 13:44:22 +00:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
2018-11-28 13:45:30 +00:00
|
|
|
"github.com/joomcode/errorx"
|
2018-10-11 17:52:23 +00:00
|
|
|
)
|
|
|
|
|
2019-09-25 12:36:09 +00:00
|
|
|
// Called by other modules when configuration is changed
|
|
|
|
func onConfigModified() {
|
|
|
|
_ = config.write()
|
|
|
|
}
|
|
|
|
|
2019-02-10 17:47:43 +00: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 09:38:58 +00:00
|
|
|
func initDNSServer() error {
|
2019-10-02 13:53:23 +00:00
|
|
|
baseDir := config.getDataDir()
|
|
|
|
|
2019-02-10 17:47:43 +00:00
|
|
|
err := os.MkdirAll(baseDir, 0755)
|
|
|
|
if err != nil {
|
2019-12-11 09:38:58 +00:00
|
|
|
return fmt.Errorf("Cannot create DNS data dir at %s: %s", baseDir, err)
|
2019-02-10 17:47:43 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 13:14:52 +00:00
|
|
|
statsConf := stats.Config{
|
2019-09-25 12:36:09 +00:00
|
|
|
Filename: filepath.Join(baseDir, "stats.db"),
|
|
|
|
LimitDays: config.DNS.StatsInterval,
|
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
2019-09-16 13:14:52 +00:00
|
|
|
}
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.stats, err = stats.New(statsConf)
|
2019-09-06 12:42:21 +00:00
|
|
|
if err != nil {
|
2019-12-11 09:38:58 +00:00
|
|
|
return fmt.Errorf("Couldn't initialize statistics module")
|
2019-08-22 13:34:58 +00:00
|
|
|
}
|
2019-08-26 08:54:38 +00:00
|
|
|
conf := querylog.Config{
|
2019-09-27 15:58:57 +00:00
|
|
|
Enabled: config.DNS.QueryLogEnabled,
|
|
|
|
BaseDir: baseDir,
|
|
|
|
Interval: config.DNS.QueryLogInterval,
|
2019-11-08 09:31:50 +00:00
|
|
|
MemSize: config.DNS.QueryLogMemSize,
|
2019-09-27 15:58:57 +00:00
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
2019-08-26 08:54:38 +00:00
|
|
|
}
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.queryLog = querylog.New(conf)
|
2019-10-09 16:51:26 +00:00
|
|
|
|
|
|
|
filterConf := config.DNS.DnsfilterConf
|
|
|
|
bindhost := config.DNS.BindHost
|
|
|
|
if config.DNS.BindHost == "0.0.0.0" {
|
|
|
|
bindhost = "127.0.0.1"
|
|
|
|
}
|
|
|
|
filterConf.ResolverAddress = fmt.Sprintf("%s:%d", bindhost, config.DNS.Port)
|
|
|
|
filterConf.ConfigModified = onConfigModified
|
|
|
|
filterConf.HTTPRegister = httpRegister
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.dnsFilter = dnsfilter.New(&filterConf, nil)
|
2019-10-09 16:51:26 +00:00
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.dnsServer = dnsforward.NewServer(Context.dnsFilter, Context.stats, Context.queryLog)
|
|
|
|
dnsConfig := generateServerConfig()
|
|
|
|
err = Context.dnsServer.Prepare(&dnsConfig)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("dnsServer.Prepare: %s", err)
|
|
|
|
}
|
2019-05-21 11:53:13 +00:00
|
|
|
|
2019-10-02 13:53:23 +00:00
|
|
|
sessFilename := filepath.Join(baseDir, "sessions.db")
|
2019-11-12 11:23:00 +00:00
|
|
|
config.auth = InitAuth(sessFilename, config.Users, config.WebSessionTTLHours*60*60)
|
2019-12-16 14:04:30 +00:00
|
|
|
if config.auth == nil {
|
|
|
|
return fmt.Errorf("Couldn't initialize Auth module")
|
|
|
|
}
|
2019-08-29 09:34:07 +00:00
|
|
|
config.Users = nil
|
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.rdns = InitRDNS(Context.dnsServer, &Context.clients)
|
|
|
|
Context.whois = initWhois(&Context.clients)
|
2019-10-07 12:57:34 +00:00
|
|
|
|
2019-09-04 11:12:00 +00:00
|
|
|
initFiltering()
|
2019-12-11 09:38:58 +00:00
|
|
|
return nil
|
2019-02-10 17:47:43 +00:00
|
|
|
}
|
2018-10-11 17:52:23 +00:00
|
|
|
|
|
|
|
func isRunning() bool {
|
2019-12-11 09:38:58 +00:00
|
|
|
return Context.dnsServer != nil && Context.dnsServer.IsRunning()
|
2018-10-11 17:52:23 +00:00
|
|
|
}
|
|
|
|
|
2019-10-02 13:40:26 +00:00
|
|
|
// nolint (gocyclo)
|
2019-09-18 15:44:27 +00:00
|
|
|
// Return TRUE if IP is within public Internet IP range
|
|
|
|
func isPublicIP(ip net.IP) bool {
|
|
|
|
ip4 := ip.To4()
|
|
|
|
if ip4 != nil {
|
|
|
|
switch ip4[0] {
|
|
|
|
case 0:
|
|
|
|
return false //software
|
|
|
|
case 10:
|
|
|
|
return false //private network
|
|
|
|
case 127:
|
|
|
|
return false //loopback
|
|
|
|
case 169:
|
|
|
|
if ip4[1] == 254 {
|
|
|
|
return false //link-local
|
|
|
|
}
|
|
|
|
case 172:
|
|
|
|
if ip4[1] >= 16 && ip4[1] <= 31 {
|
|
|
|
return false //private network
|
|
|
|
}
|
|
|
|
case 192:
|
|
|
|
if (ip4[1] == 0 && ip4[2] == 0) || //private network
|
|
|
|
(ip4[1] == 0 && ip4[2] == 2) || //documentation
|
|
|
|
(ip4[1] == 88 && ip4[2] == 99) || //reserved
|
|
|
|
(ip4[1] == 168) { //private network
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
case 198:
|
|
|
|
if (ip4[1] == 18 || ip4[2] == 19) || //private network
|
|
|
|
(ip4[1] == 51 || ip4[2] == 100) { //documentation
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
case 203:
|
|
|
|
if ip4[1] == 0 && ip4[2] == 113 { //documentation
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
case 224:
|
|
|
|
if ip4[1] == 0 && ip4[2] == 0 { //multicast
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
case 255:
|
|
|
|
if ip4[1] == 255 && ip4[2] == 255 && ip4[3] == 255 { //subnet
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if ip.IsLoopback() || ip.IsLinkLocalMulticast() || ip.IsLinkLocalUnicast() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-05-21 11:53:13 +00:00
|
|
|
func onDNSRequest(d *proxy.DNSContext) {
|
2019-06-04 17:38:53 +00:00
|
|
|
ip := dnsforward.GetIPString(d.Addr)
|
|
|
|
if ip == "" {
|
|
|
|
// This would be quite weird if we get here
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-25 13:14:52 +00:00
|
|
|
ipAddr := net.ParseIP(ip)
|
|
|
|
if !ipAddr.IsLoopback() {
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.rdns.Begin(ip)
|
2019-06-25 13:14:52 +00:00
|
|
|
}
|
2019-09-18 15:44:27 +00:00
|
|
|
if isPublicIP(ipAddr) {
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.whois.Begin(ip)
|
2019-06-25 13:14:52 +00:00
|
|
|
}
|
2019-05-21 11:53:13 +00:00
|
|
|
}
|
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
func generateServerConfig() dnsforward.ServerConfig {
|
2018-11-28 13:45:30 +00:00
|
|
|
newconfig := dnsforward.ServerConfig{
|
2019-01-19 01:41:43 +00: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 17:29:00 +00:00
|
|
|
FilteringConfig: config.DNS.FilteringConfig,
|
2019-10-30 08:52:58 +00:00
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
|
|
|
OnDNSRequest: onDNSRequest,
|
2018-11-28 13:45:30 +00:00
|
|
|
}
|
|
|
|
|
2019-02-14 15:00:23 +00: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 14:23:38 +00:00
|
|
|
}
|
|
|
|
|
2019-07-23 09:21:37 +00:00
|
|
|
newconfig.FilterHandler = applyAdditionalFiltering
|
2019-11-06 14:24:15 +00:00
|
|
|
newconfig.GetUpstreamsByClient = getUpstreamsByClient
|
2019-12-11 09:38:58 +00:00
|
|
|
return newconfig
|
2018-11-28 15:57:20 +00:00
|
|
|
}
|
|
|
|
|
2019-11-06 14:24:15 +00:00
|
|
|
func getUpstreamsByClient(clientAddr string) []string {
|
2019-12-11 09:38:58 +00:00
|
|
|
c, ok := Context.clients.Find(clientAddr)
|
2019-11-06 14:24:15 +00:00
|
|
|
if !ok {
|
|
|
|
return []string{}
|
|
|
|
}
|
|
|
|
log.Debug("Using upstreams %v for client %s (IP: %s)", c.Upstreams, c.Name, clientAddr)
|
|
|
|
return c.Upstreams
|
|
|
|
}
|
|
|
|
|
2019-04-26 13:07:12 +00:00
|
|
|
// If a client has his own settings, apply them
|
2019-07-23 09:21:37 +00:00
|
|
|
func applyAdditionalFiltering(clientAddr string, setts *dnsfilter.RequestFilteringSettings) {
|
|
|
|
|
|
|
|
ApplyBlockedServices(setts, config.DNS.BlockedServices)
|
|
|
|
|
|
|
|
if len(clientAddr) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
c, ok := Context.clients.Find(clientAddr)
|
2019-07-23 09:21:37 +00:00
|
|
|
if !ok {
|
2019-04-26 13:07:12 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug("Using settings for client with IP %s", clientAddr)
|
2019-07-23 09:21:37 +00:00
|
|
|
|
|
|
|
if c.UseOwnBlockedServices {
|
|
|
|
ApplyBlockedServices(setts, c.BlockedServices)
|
|
|
|
}
|
|
|
|
|
|
|
|
if !c.UseOwnSettings {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-06-06 18:04:17 +00:00
|
|
|
setts.FilteringEnabled = c.FilteringEnabled
|
|
|
|
setts.SafeSearchEnabled = c.SafeSearchEnabled
|
|
|
|
setts.SafeBrowsingEnabled = c.SafeBrowsingEnabled
|
2019-06-06 19:42:17 +00:00
|
|
|
setts.ParentalEnabled = c.ParentalEnabled
|
2019-04-26 13:07:12 +00:00
|
|
|
}
|
|
|
|
|
2018-11-28 15:57:20 +00:00
|
|
|
func startDNSServer() error {
|
|
|
|
if isRunning() {
|
2019-01-25 13:01:27 +00:00
|
|
|
return fmt.Errorf("unable to start forwarding DNS server: Already running")
|
2018-11-28 15:57:20 +00:00
|
|
|
}
|
2018-10-17 17:43:26 +00:00
|
|
|
|
2019-10-09 16:51:26 +00:00
|
|
|
enableFilters(false)
|
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
err := Context.dnsServer.Start()
|
2018-10-11 17:52:23 +00:00
|
|
|
if err != nil {
|
2018-11-28 13:45:30 +00:00
|
|
|
return errorx.Decorate(err, "Couldn't start forwarding DNS server")
|
2018-10-11 17:52:23 +00:00
|
|
|
}
|
|
|
|
|
2019-10-17 11:33:38 +00:00
|
|
|
startFiltering()
|
|
|
|
|
2019-10-10 10:54:26 +00:00
|
|
|
const topClientsNumber = 100 // the number of clients to get
|
2019-12-11 09:38:58 +00:00
|
|
|
topClients := Context.stats.GetTopClientsIP(topClientsNumber)
|
2019-10-10 10:54:26 +00:00
|
|
|
for _, ip := range topClients {
|
|
|
|
ipAddr := net.ParseIP(ip)
|
|
|
|
if !ipAddr.IsLoopback() {
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.rdns.Begin(ip)
|
2019-10-10 10:54:26 +00:00
|
|
|
}
|
|
|
|
if isPublicIP(ipAddr) {
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.whois.Begin(ip)
|
2019-10-10 10:54:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-11 17:52:23 +00:00
|
|
|
return nil
|
|
|
|
}
|
2018-11-28 15:57:20 +00:00
|
|
|
|
|
|
|
func reconfigureDNSServer() error {
|
2019-12-11 09:38:58 +00:00
|
|
|
newconfig := generateServerConfig()
|
|
|
|
err := Context.dnsServer.Reconfigure(&newconfig)
|
2018-11-28 15:57:20 +00:00
|
|
|
if err != nil {
|
|
|
|
return errorx.Decorate(err, "Couldn't start forwarding DNS server")
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2018-12-05 12:36:18 +00:00
|
|
|
|
|
|
|
func stopDNSServer() error {
|
2019-12-16 14:04:30 +00:00
|
|
|
if !isRunning() {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
err := Context.dnsServer.Stop()
|
2018-12-05 12:36:18 +00:00
|
|
|
if err != nil {
|
|
|
|
return errorx.Decorate(err, "Couldn't stop forwarding DNS server")
|
|
|
|
}
|
|
|
|
|
2019-09-16 12:54:41 +00:00
|
|
|
// DNS forward module must be closed BEFORE stats or queryLog because it depends on them
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.dnsServer.Close()
|
2019-09-16 12:54:41 +00:00
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.dnsFilter.Close()
|
|
|
|
Context.dnsFilter = nil
|
2019-10-09 16:51:26 +00:00
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.stats.Close()
|
|
|
|
Context.stats = nil
|
2019-09-16 12:54:41 +00:00
|
|
|
|
2019-12-11 09:38:58 +00:00
|
|
|
Context.queryLog.Close()
|
|
|
|
Context.queryLog = nil
|
2019-09-16 12:54:41 +00:00
|
|
|
|
2019-08-29 09:34:07 +00:00
|
|
|
config.auth.Close()
|
2019-09-16 12:54:41 +00:00
|
|
|
config.auth = nil
|
2018-12-05 12:36:18 +00:00
|
|
|
return nil
|
|
|
|
}
|