doggo/cmd/lookup.go

92 lines
2.2 KiB
Go
Raw Normal View History

2020-12-10 17:14:04 +01:00
package main
import (
"errors"
2020-12-10 17:14:04 +01:00
"strings"
"github.com/miekg/dns"
2020-12-13 08:15:45 +01:00
"github.com/mr-karan/doggo/pkg/resolvers"
"github.com/sirupsen/logrus"
2020-12-10 17:14:04 +01:00
)
2020-12-12 11:57:13 +01:00
// Lookup sends the DNS queries to the server.
2020-12-13 13:19:10 +01:00
func (hub *Hub) Lookup() error {
2020-12-13 08:15:45 +01:00
err := hub.prepareQuestions()
if err != nil {
return err
}
// for each type of resolver do a DNS lookup
responses := make([][]resolvers.Response, 0, len(hub.Questions))
for _, r := range hub.Resolver {
resp, err := r.Lookup(hub.Questions)
if err != nil {
return err
}
responses = append(responses, resp)
}
if len(responses) == 0 {
return errors.New(`no DNS records found`)
2020-12-10 17:14:04 +01:00
}
2020-12-12 15:10:28 +01:00
hub.Output(responses)
2020-12-10 17:14:04 +01:00
return nil
}
// prepareQuestions iterates on list of domain names
// and prepare a list of questions
// sent to the server with all possible combinations.
2020-12-13 08:15:45 +01:00
func (hub *Hub) prepareQuestions() error {
var (
question dns.Question
)
2020-12-13 13:19:10 +01:00
for _, name := range hub.QueryFlags.QNames {
2020-12-13 08:15:45 +01:00
var (
domains []string
ndots int
)
2020-12-13 17:16:27 +01:00
ndots = hub.QueryFlags.Ndots
2020-12-13 08:15:45 +01:00
// If `search` flag is specified then fetch the search list
// from `resolv.conf` and set the
if hub.QueryFlags.UseSearchList {
2020-12-13 17:16:27 +01:00
list, n, err := fetchDomainList(name, ndots)
2020-12-13 08:15:45 +01:00
if err != nil {
return err
}
domains = list
ndots = n
} else {
domains = []string{dns.Fqdn(name)}
}
for _, d := range domains {
hub.Logger.WithFields(logrus.Fields{
"domain": d,
"ndots": ndots,
}).Debug("Attmepting to resolve")
question.Name = d
// iterate on a list of query types.
2020-12-13 13:19:10 +01:00
for _, q := range hub.QueryFlags.QTypes {
2020-12-13 08:15:45 +01:00
question.Qtype = dns.StringToType[strings.ToUpper(q)]
// iterate on a list of query classes.
2020-12-13 13:19:10 +01:00
for _, c := range hub.QueryFlags.QClasses {
2020-12-13 08:15:45 +01:00
question.Qclass = dns.StringToClass[strings.ToUpper(c)]
// append a new question for each possible pair.
hub.Questions = append(hub.Questions, question)
}
2020-12-10 17:14:04 +01:00
}
}
}
2020-12-13 08:15:45 +01:00
return nil
}
2020-12-13 17:16:27 +01:00
func fetchDomainList(d string, ndots int) ([]string, int, error) {
2020-12-13 08:15:45 +01:00
cfg, err := dns.ClientConfigFromFile(resolvers.DefaultResolvConfPath)
if err != nil {
return nil, 0, err
}
2020-12-13 17:16:27 +01:00
// if it's the default value
if cfg.Ndots == 1 {
// override what the user gave. If the user didn't give any setting then it's 1 by default.
2020-12-13 08:15:45 +01:00
cfg.Ndots = ndots
}
return cfg.NameList(d), cfg.Ndots, nil
2020-12-10 17:14:04 +01:00
}