-
Notifications
You must be signed in to change notification settings - Fork 6
/
resolver_miekg.go
216 lines (185 loc) · 4.98 KB
/
resolver_miekg.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
package spf
import (
"net"
"sync"
"github.com/miekg/dns"
"strings"
)
// NewMiekgDNSResolver returns new instance of Resolver
func NewMiekgDNSResolver(addr string) (Resolver, error) {
if _, _, e := net.SplitHostPort(addr); e != nil {
return nil, e
}
return &MiekgDNSResolver{
client: new(dns.Client),
serverAddr: addr,
}, nil
}
// MiekgDNSResolver implements Resolver using github.com/miekg/dns
type MiekgDNSResolver struct {
mu sync.Mutex
client *dns.Client
serverAddr string
}
// If the DNS lookup returns a server failure (RCODE 2) or some other
// error (RCODE other than 0 or 3), or if the lookup times out, then
// check_host() terminates immediately with the result "temperror".
// From RFC 7208:
// Several mechanisms rely on information fetched from the DNS. For
// these DNS queries, except where noted, if the DNS server returns an
// error (RCODE other than 0 or 3) or the query times out, the mechanism
// stops and the topmost check_host() returns "temperror". If the
// server returns "Name Error" (RCODE 3), then evaluation of the
// mechanism continues as if the server returned no error (RCODE 0) and
// zero answer records.
func (r *MiekgDNSResolver) exchange(req *dns.Msg) (*dns.Msg, error) {
r.mu.Lock()
defer r.mu.Unlock()
res, _, err := r.client.Exchange(req, r.serverAddr)
if err != nil {
return nil, ErrDNSTemperror
}
// RCODE 3
if res.Rcode == dns.RcodeNameError {
return res, nil
}
if res.Rcode != dns.RcodeSuccess {
return nil, ErrDNSTemperror
}
return res, nil
}
// LookupTXT returns the DNS TXT records for the given domain name.
func (r *MiekgDNSResolver) LookupTXT(name string) ([]string, error) {
req := new(dns.Msg)
req.SetQuestion(name, dns.TypeTXT)
res, err := r.exchange(req)
if err != nil {
return nil, err
}
txts := make([]string, 0, len(res.Answer))
for _, a := range res.Answer {
if r, ok := a.(*dns.TXT); ok {
txts = append(txts, strings.Join(r.Txt,""))
}
}
return txts, nil
}
// LookupTXTStrict returns DNS TXT records for the given name, however it
// will return ErrDNSPermerror upon NXDOMAIN (RCODE 3)
func (r *MiekgDNSResolver) LookupTXTStrict(name string) ([]string, error) {
req := new(dns.Msg)
req.SetQuestion(name, dns.TypeTXT)
res, err := r.exchange(req)
if err != nil {
return nil, err
}
if res.Rcode == dns.RcodeNameError {
return nil, ErrDNSPermerror
}
txts := make([]string, 0, len(res.Answer))
for _, a := range res.Answer {
if r, ok := a.(*dns.TXT); ok {
txts = append(txts, strings.Join(r.Txt,""))
}
}
return txts, nil
}
// Exists is used for a DNS A RR lookup (even when the
// connection type is IPv6). If any A record is returned, this
// mechanism matches.
func (r *MiekgDNSResolver) Exists(name string) (bool, error) {
req := new(dns.Msg)
req.SetQuestion(name, dns.TypeA)
res, err := r.exchange(req)
if err != nil {
return false, err
}
return len(res.Answer) > 0, nil
}
func matchIP(rrs []dns.RR, matcher IPMatcherFunc) (bool, error) {
for _, rr := range rrs {
var ip net.IP
switch a := rr.(type) {
case *dns.A:
ip = a.A
case *dns.AAAA:
ip = a.AAAA
}
if m, e := matcher(ip); m || e != nil {
return m, e
}
}
return false, nil
}
// MatchIP provides an address lookup, which should be done on the name
// using the type of lookup (A or AAAA).
// Then IPMatcherFunc used to compare checked IP to the returned address(es).
// If any address matches, the mechanism matches
func (r *MiekgDNSResolver) MatchIP(name string, matcher IPMatcherFunc) (bool, error) {
var wg sync.WaitGroup
qTypes := []uint16{dns.TypeA, dns.TypeAAAA}
hits := make(chan hit, len(qTypes))
for _, qType := range qTypes {
wg.Add(1)
go func(qType uint16) {
defer wg.Done()
req := new(dns.Msg)
req.SetQuestion(name, qType)
res, err := r.exchange(req)
if err != nil {
hits <- hit{false, err}
return
}
if m, e := matchIP(res.Answer, matcher); m || e != nil {
hits <- hit{m, e}
return
}
}(qType)
}
go func() {
wg.Wait()
close(hits)
}()
for h := range hits {
if h.found || h.err != nil {
return h.found, h.err
}
}
return false, nil
}
// MatchMX is similar to MatchIP but first performs an MX lookup on the
// name. Then it performs an address lookup on each MX name returned.
// Then IPMatcherFunc used to compare checked IP to the returned address(es).
// If any address matches, the mechanism matches
func (r *MiekgDNSResolver) MatchMX(name string, matcher IPMatcherFunc) (bool, error) {
req := new(dns.Msg)
req.SetQuestion(name, dns.TypeMX)
res, err := r.exchange(req)
if err != nil {
return false, err
}
var wg sync.WaitGroup
hits := make(chan hit, len(res.Answer))
for _, rr := range res.Answer {
mx, ok := rr.(*dns.MX)
if !ok {
continue
}
wg.Add(1)
go func(name string) {
found, err := r.MatchIP(name, matcher)
hits <- hit{found, err}
wg.Done()
}(mx.Mx)
}
go func() {
wg.Wait()
close(hits)
}()
for h := range hits {
if h.found || h.err != nil {
return h.found, h.err
}
}
return false, nil
}