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"
|
2019-02-10 10:47:43 -07:00
|
|
|
"os"
|
2019-09-06 05:42:21 -07:00
|
|
|
"path/filepath"
|
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-08-26 01:54:38 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/querylog"
|
2019-08-22 06:34:58 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/stats"
|
2019-03-20 04:24:33 -07:00
|
|
|
"github.com/AdguardTeam/dnsproxy/proxy"
|
2019-12-23 09:31:27 -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"
|
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 {
|
2019-10-02 06:53:23 -07:00
|
|
|
baseDir := config.getDataDir()
|
|
|
|
|
2019-02-10 10:47:43 -07:00
|
|
|
err := os.MkdirAll(baseDir, 0755)
|
|
|
|
if err != nil {
|
2019-12-11 02:38:58 -07:00
|
|
|
return fmt.Errorf("Cannot create DNS data dir at %s: %s", baseDir, err)
|
2019-02-10 10:47:43 -07:00
|
|
|
}
|
|
|
|
|
2019-09-16 06:14:52 -07:00
|
|
|
statsConf := stats.Config{
|
2019-09-25 05:36:09 -07:00
|
|
|
Filename: filepath.Join(baseDir, "stats.db"),
|
|
|
|
LimitDays: config.DNS.StatsInterval,
|
|
|
|
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 {
|
2019-12-11 02:38:58 -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{
|
2019-09-27 08:58:57 -07:00
|
|
|
Enabled: config.DNS.QueryLogEnabled,
|
|
|
|
BaseDir: baseDir,
|
|
|
|
Interval: config.DNS.QueryLogInterval,
|
2019-11-08 02:31:50 -07:00
|
|
|
MemSize: config.DNS.QueryLogMemSize,
|
2019-09-27 08:58:57 -07:00
|
|
|
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
|
|
|
|
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 02:38:58 -07:00
|
|
|
Context.dnsFilter = dnsfilter.New(&filterConf, nil)
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2019-12-11 02:38:58 -07: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 04:53:13 -07:00
|
|
|
|
2019-10-02 06:53:23 -07:00
|
|
|
sessFilename := filepath.Join(baseDir, "sessions.db")
|
2019-11-12 04:23:00 -07:00
|
|
|
config.auth = InitAuth(sessFilename, config.Users, config.WebSessionTTLHours*60*60)
|
2019-12-16 07:04:30 -07:00
|
|
|
if config.auth == nil {
|
|
|
|
return fmt.Errorf("Couldn't initialize Auth module")
|
|
|
|
}
|
2019-08-29 02:34:07 -07:00
|
|
|
config.Users = nil
|
|
|
|
|
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
|
|
|
|
2019-09-04 04:12:00 -07:00
|
|
|
initFiltering()
|
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-10-02 06:40:26 -07:00
|
|
|
// nolint (gocyclo)
|
2019-09-18 08:44:27 -07: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 04:53:13 -07:00
|
|
|
func onDNSRequest(d *proxy.DNSContext) {
|
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
|
|
|
|
}
|
|
|
|
|
2019-06-25 06:14:52 -07:00
|
|
|
ipAddr := net.ParseIP(ip)
|
|
|
|
if !ipAddr.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-06-25 06:14:52 -07:00
|
|
|
}
|
2019-09-18 08:44:27 -07:00
|
|
|
if isPublicIP(ipAddr) {
|
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
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
func generateServerConfig() dnsforward.ServerConfig {
|
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,
|
2019-10-30 01:52:58 -07:00
|
|
|
ConfigModified: onConfigModified,
|
|
|
|
HTTPRegister: httpRegister,
|
|
|
|
OnDNSRequest: onDNSRequest,
|
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-07-23 02:21:37 -07:00
|
|
|
newconfig.FilterHandler = applyAdditionalFiltering
|
2019-11-06 07:24:15 -07:00
|
|
|
newconfig.GetUpstreamsByClient = getUpstreamsByClient
|
2019-12-11 02:38:58 -07:00
|
|
|
return newconfig
|
2018-11-28 08:57:20 -07:00
|
|
|
}
|
|
|
|
|
2019-12-23 09:31:27 -07:00
|
|
|
func getUpstreamsByClient(clientAddr string) []upstream.Upstream {
|
|
|
|
return Context.clients.FindUpstreams(clientAddr)
|
2019-11-06 07:24:15 -07:00
|
|
|
}
|
|
|
|
|
2019-04-26 06:07:12 -07:00
|
|
|
// If a client has his own settings, apply them
|
2019-07-23 02:21:37 -07:00
|
|
|
func applyAdditionalFiltering(clientAddr string, setts *dnsfilter.RequestFilteringSettings) {
|
|
|
|
ApplyBlockedServices(setts, config.DNS.BlockedServices)
|
|
|
|
|
|
|
|
if len(clientAddr) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
c, ok := Context.clients.Find(clientAddr)
|
2019-07-23 02:21:37 -07:00
|
|
|
if !ok {
|
2019-04-26 06:07:12 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Debug("Using settings for client with IP %s", clientAddr)
|
2019-07-23 02:21:37 -07:00
|
|
|
|
|
|
|
if c.UseOwnBlockedServices {
|
|
|
|
ApplyBlockedServices(setts, c.BlockedServices)
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
err := Context.dnsServer.Start()
|
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-10-17 04:33:38 -07:00
|
|
|
startFiltering()
|
|
|
|
|
2019-10-10 03:54:26 -07:00
|
|
|
const topClientsNumber = 100 // the number of clients to get
|
2019-12-11 02:38:58 -07:00
|
|
|
topClients := Context.stats.GetTopClientsIP(topClientsNumber)
|
2019-10-10 03:54:26 -07:00
|
|
|
for _, ip := range topClients {
|
|
|
|
ipAddr := net.ParseIP(ip)
|
|
|
|
if !ipAddr.IsLoopback() {
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.rdns.Begin(ip)
|
2019-10-10 03:54:26 -07:00
|
|
|
}
|
|
|
|
if isPublicIP(ipAddr) {
|
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
|
|
|
|
|
|
|
func reconfigureDNSServer() error {
|
2019-12-11 02:38:58 -07:00
|
|
|
newconfig := generateServerConfig()
|
|
|
|
err := Context.dnsServer.Reconfigure(&newconfig)
|
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 {
|
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 {
|
|
|
|
return errorx.Decorate(err, "Couldn't stop forwarding DNS server")
|
|
|
|
}
|
|
|
|
|
2019-09-16 05:54:41 -07:00
|
|
|
// DNS forward module must be closed BEFORE stats or queryLog because it depends on them
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.dnsServer.Close()
|
2019-09-16 05:54:41 -07:00
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.dnsFilter.Close()
|
|
|
|
Context.dnsFilter = nil
|
2019-10-09 09:51:26 -07:00
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.stats.Close()
|
|
|
|
Context.stats = nil
|
2019-09-16 05:54:41 -07:00
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
Context.queryLog.Close()
|
|
|
|
Context.queryLog = nil
|
2019-09-16 05:54:41 -07:00
|
|
|
|
2019-08-29 02:34:07 -07:00
|
|
|
config.auth.Close()
|
2019-09-16 05:54:41 -07:00
|
|
|
config.auth = nil
|
2018-12-05 05:36:18 -07:00
|
|
|
return nil
|
|
|
|
}
|