2020-12-12 07:46:54 +01:00
|
|
|
package resolvers
|
|
|
|
|
2020-12-15 18:39:10 +01:00
|
|
|
import (
|
2020-12-24 17:25:20 +01:00
|
|
|
"fmt"
|
|
|
|
"strconv"
|
2021-02-24 18:49:30 +01:00
|
|
|
"strings"
|
2020-12-24 17:25:20 +01:00
|
|
|
"time"
|
|
|
|
|
2020-12-15 18:39:10 +01:00
|
|
|
"github.com/miekg/dns"
|
|
|
|
)
|
2020-12-12 07:46:54 +01:00
|
|
|
|
2020-12-24 17:25:20 +01:00
|
|
|
// prepareMessages takes a DNS Question and returns the
|
|
|
|
// corresponding DNS messages for the same.
|
|
|
|
func prepareMessages(q dns.Question, ndots int, searchList []string) []dns.Msg {
|
|
|
|
var (
|
|
|
|
possibleQNames = constructPossibleQuestions(q.Name, ndots, searchList)
|
|
|
|
messages = make([]dns.Msg, 0, len(possibleQNames))
|
|
|
|
)
|
|
|
|
|
|
|
|
for _, qName := range possibleQNames {
|
2020-12-12 07:46:54 +01:00
|
|
|
msg := dns.Msg{}
|
2020-12-24 17:25:20 +01:00
|
|
|
// generate a random id for the transaction.
|
2020-12-12 07:46:54 +01:00
|
|
|
msg.Id = dns.Id()
|
|
|
|
msg.RecursionDesired = true
|
|
|
|
// It's recommended to only send 1 question for 1 DNS message.
|
2020-12-24 17:25:20 +01:00
|
|
|
msg.Question = []dns.Question{{
|
|
|
|
Name: qName,
|
|
|
|
Qtype: q.Qtype,
|
|
|
|
Qclass: q.Qclass,
|
|
|
|
}}
|
2020-12-12 07:46:54 +01:00
|
|
|
messages = append(messages, msg)
|
|
|
|
}
|
2020-12-24 17:25:20 +01:00
|
|
|
|
2020-12-12 07:46:54 +01:00
|
|
|
return messages
|
|
|
|
}
|
2020-12-24 17:25:20 +01:00
|
|
|
|
|
|
|
// NameList returns all of the names that should be queried based on the
|
|
|
|
// config. It is based off of go's net/dns name building, but it does not
|
|
|
|
// check the length of the resulting names.
|
|
|
|
// NOTE: It is taken from `miekg/dns/clientconfig.go: func (c *ClientConfig) NameList`
|
|
|
|
// and slightly modified.
|
|
|
|
func constructPossibleQuestions(name string, ndots int, searchList []string) []string {
|
|
|
|
// if this domain is already fully qualified, no append needed.
|
|
|
|
if dns.IsFqdn(name) {
|
|
|
|
return []string{name}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check to see if the name has more labels than Ndots. Do this before making
|
|
|
|
// the domain fully qualified.
|
|
|
|
hasNdots := dns.CountLabel(name) > ndots
|
|
|
|
// Make the domain fully qualified.
|
|
|
|
name = dns.Fqdn(name)
|
|
|
|
|
|
|
|
// Make a list of names based off search.
|
|
|
|
names := []string{}
|
|
|
|
|
|
|
|
// If name has enough dots, try that first.
|
|
|
|
if hasNdots {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
for _, s := range searchList {
|
|
|
|
names = append(names, dns.Fqdn(name+s))
|
|
|
|
}
|
|
|
|
// If we didn't have enough dots, try after suffixes.
|
|
|
|
if !hasNdots {
|
|
|
|
names = append(names, name)
|
|
|
|
}
|
|
|
|
return names
|
|
|
|
}
|
|
|
|
|
|
|
|
// parseMessage takes a `dns.Message` and returns a custom
|
|
|
|
// Response data struct.
|
|
|
|
func parseMessage(msg *dns.Msg, rtt time.Duration, server string) Response {
|
|
|
|
var resp Response
|
|
|
|
timeTaken := fmt.Sprintf("%dms", rtt.Milliseconds())
|
|
|
|
|
|
|
|
// Parse Authorities section.
|
|
|
|
for _, ns := range msg.Ns {
|
|
|
|
// check for SOA record
|
|
|
|
soa, ok := ns.(*dns.SOA)
|
|
|
|
if !ok {
|
|
|
|
// Currently we only check for SOA in Authority.
|
|
|
|
// If it's not SOA, skip this message.
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
mname := soa.Ns + " " + soa.Mbox +
|
|
|
|
" " + strconv.FormatInt(int64(soa.Serial), 10) +
|
|
|
|
" " + strconv.FormatInt(int64(soa.Refresh), 10) +
|
|
|
|
" " + strconv.FormatInt(int64(soa.Retry), 10) +
|
|
|
|
" " + strconv.FormatInt(int64(soa.Expire), 10) +
|
|
|
|
" " + strconv.FormatInt(int64(soa.Minttl), 10)
|
|
|
|
h := ns.Header()
|
|
|
|
name := h.Name
|
|
|
|
qclass := dns.Class(h.Class).String()
|
|
|
|
ttl := strconv.FormatInt(int64(h.Ttl), 10) + "s"
|
|
|
|
qtype := dns.Type(h.Rrtype).String()
|
|
|
|
auth := Authority{
|
|
|
|
Name: name,
|
|
|
|
Type: qtype,
|
|
|
|
TTL: ttl,
|
|
|
|
Class: qclass,
|
|
|
|
MName: mname,
|
|
|
|
Nameserver: server,
|
|
|
|
RTT: timeTaken,
|
|
|
|
Status: dns.RcodeToString[msg.Rcode],
|
|
|
|
}
|
|
|
|
resp.Authorities = append(resp.Authorities, auth)
|
|
|
|
}
|
|
|
|
// Parse Answers section.
|
|
|
|
for _, a := range msg.Answer {
|
2021-02-24 18:49:30 +01:00
|
|
|
var (
|
|
|
|
h = a.Header()
|
|
|
|
// Source https://github.com/jvns/dns-lookup/blob/main/dns.go#L121.
|
|
|
|
parts = strings.Split(a.String(), "\t")
|
|
|
|
ans = Answer{
|
|
|
|
Name: h.Name,
|
|
|
|
Type: dns.Type(h.Rrtype).String(),
|
|
|
|
TTL: strconv.FormatInt(int64(h.Ttl), 10) + "s",
|
|
|
|
Class: dns.Class(h.Class).String(),
|
|
|
|
Address: parts[len(parts)-1],
|
|
|
|
RTT: timeTaken,
|
|
|
|
Nameserver: server,
|
|
|
|
}
|
|
|
|
)
|
|
|
|
|
2020-12-24 17:25:20 +01:00
|
|
|
resp.Answers = append(resp.Answers, ans)
|
|
|
|
}
|
|
|
|
return resp
|
|
|
|
}
|