2019-08-07 05:25:19 -07:00
|
|
|
package home
|
|
|
|
|
|
|
|
import (
|
2019-10-22 03:11:22 -07:00
|
|
|
"encoding/binary"
|
2019-08-07 05:25:19 -07:00
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
2020-10-30 03:32:02 -07:00
|
|
|
"github.com/AdguardTeam/AdGuardHome/internal/dnsforward"
|
2019-10-22 03:11:22 -07:00
|
|
|
"github.com/AdguardTeam/golibs/cache"
|
2019-08-07 05:25:19 -07:00
|
|
|
"github.com/AdguardTeam/golibs/log"
|
|
|
|
"github.com/miekg/dns"
|
|
|
|
)
|
|
|
|
|
2019-09-19 08:27:13 -07:00
|
|
|
// RDNS - module context
|
|
|
|
type RDNS struct {
|
2019-12-11 02:38:58 -07:00
|
|
|
dnsServer *dnsforward.Server
|
2019-09-19 08:27:13 -07:00
|
|
|
clients *clientsContainer
|
2019-12-11 02:38:58 -07:00
|
|
|
ipChannel chan string // pass data from DNS request handling thread to rDNS thread
|
2019-10-22 03:11:22 -07:00
|
|
|
|
|
|
|
// Contains IP addresses of clients to be resolved by rDNS
|
|
|
|
// If IP address is resolved, it stays here while it's inside Clients.
|
|
|
|
// If it's removed from Clients, this IP address will be resolved once again.
|
|
|
|
// If IP address couldn't be resolved, it stays here for some time to prevent further attempts to resolve the same IP.
|
|
|
|
ipAddrs cache.Cache
|
2019-09-19 08:27:13 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
// InitRDNS - create module context
|
2019-12-11 02:38:58 -07:00
|
|
|
func InitRDNS(dnsServer *dnsforward.Server, clients *clientsContainer) *RDNS {
|
2019-09-19 08:27:13 -07:00
|
|
|
r := RDNS{}
|
2019-12-11 02:38:58 -07:00
|
|
|
r.dnsServer = dnsServer
|
2019-09-19 08:27:13 -07:00
|
|
|
r.clients = clients
|
2019-08-07 05:25:19 -07:00
|
|
|
|
2019-10-22 03:11:22 -07:00
|
|
|
cconf := cache.Config{}
|
|
|
|
cconf.EnableLRU = true
|
|
|
|
cconf.MaxCount = 10000
|
|
|
|
r.ipAddrs = cache.New(cconf)
|
|
|
|
|
2019-09-19 08:27:13 -07:00
|
|
|
r.ipChannel = make(chan string, 256)
|
|
|
|
go r.workerLoop()
|
|
|
|
return &r
|
2019-08-07 05:25:19 -07:00
|
|
|
}
|
|
|
|
|
2019-09-19 08:27:13 -07:00
|
|
|
// Begin - add IP address to rDNS queue
|
|
|
|
func (r *RDNS) Begin(ip string) {
|
2019-10-22 03:11:22 -07:00
|
|
|
now := uint64(time.Now().Unix())
|
|
|
|
expire := r.ipAddrs.Get([]byte(ip))
|
|
|
|
if len(expire) != 0 {
|
|
|
|
exp := binary.BigEndian.Uint64(expire)
|
|
|
|
if exp > now {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// TTL expired
|
2019-08-07 05:25:19 -07:00
|
|
|
}
|
2019-10-22 03:11:22 -07:00
|
|
|
expire = make([]byte, 8)
|
2019-11-07 04:02:34 -07:00
|
|
|
const ttl = 1 * 60 * 60
|
2019-10-22 03:11:22 -07:00
|
|
|
binary.BigEndian.PutUint64(expire, now+ttl)
|
|
|
|
_ = r.ipAddrs.Set([]byte(ip), expire)
|
2019-08-07 05:25:19 -07:00
|
|
|
|
2019-10-22 03:11:22 -07:00
|
|
|
if r.clients.Exists(ip, ClientSourceRDNS) {
|
2019-08-07 05:25:19 -07:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-10-22 03:11:22 -07:00
|
|
|
log.Tracef("rDNS: adding %s", ip)
|
2019-08-07 05:25:19 -07:00
|
|
|
select {
|
2019-09-19 08:27:13 -07:00
|
|
|
case r.ipChannel <- ip:
|
2019-08-07 05:25:19 -07:00
|
|
|
//
|
|
|
|
default:
|
2019-10-22 03:11:22 -07:00
|
|
|
log.Tracef("rDNS: queue is full")
|
2019-08-07 05:25:19 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Use rDNS to get hostname by IP address
|
2019-09-19 08:27:13 -07:00
|
|
|
func (r *RDNS) resolve(ip string) string {
|
2019-08-07 05:25:19 -07:00
|
|
|
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 {
|
|
|
|
log.Debug("Error while calling dns.ReverseAddr(%s): %s", ip, err)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
resp, err := r.dnsServer.Exchange(&req)
|
2019-08-07 05:25:19 -07:00
|
|
|
if err != nil {
|
2019-08-07 05:35:06 -07:00
|
|
|
log.Debug("Error while making an rDNS lookup for %s: %s", ip, err)
|
2019-08-07 05:25:19 -07:00
|
|
|
return ""
|
|
|
|
}
|
2019-12-05 03:06:52 -07:00
|
|
|
if len(resp.Answer) == 0 {
|
2019-08-07 05:25:19 -07:00
|
|
|
log.Debug("No answer for rDNS lookup of %s", ip)
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
ptr, ok := resp.Answer[0].(*dns.PTR)
|
|
|
|
if !ok {
|
2019-08-07 05:35:06 -07:00
|
|
|
log.Debug("not a PTR response for %s", ip)
|
2019-08-07 05:25:19 -07:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Tracef("PTR response for %s: %s", ip, ptr.String())
|
|
|
|
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
|
2019-09-19 08:27:13 -07:00
|
|
|
func (r *RDNS) workerLoop() {
|
2019-08-07 05:25:19 -07:00
|
|
|
for {
|
2020-11-06 02:15:08 -07:00
|
|
|
ip := <-r.ipChannel
|
2019-08-07 05:25:19 -07:00
|
|
|
|
2019-09-19 08:27:13 -07:00
|
|
|
host := r.resolve(ip)
|
2019-08-07 05:25:19 -07:00
|
|
|
if len(host) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-12-11 02:38:58 -07:00
|
|
|
_, _ = r.clients.AddHost(ip, host, ClientSourceRDNS)
|
2019-08-07 05:25:19 -07:00
|
|
|
}
|
|
|
|
}
|