-
Notifications
You must be signed in to change notification settings - Fork 6
/
q.go
799 lines (740 loc) · 22 KB
/
q.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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
// Copyright 2011 Miek Gieben. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Q is a small utility which acts and behaves like 'dig' from BIND.
// It is meant to stay lean and mean, while having a bunch of handy
// features, like -check which checks if a packet is correctly signed (without
// checking the chain of trust).
// When using -check a comment is printed:
//
// ;+ Secure signature, miek.nl. RRSIG(SOA) validates (DNSKEY miek.nl./4155/net)
//
// which says the SOA has a valid RRSIG and it validated with the DNSKEY of miek.nl,
// which has key id 4155 and is retrieved from the server. Other values are 'disk'.
package main
import (
"bufio"
"flag"
"fmt"
"net"
"os"
"strconv"
"strings"
"time"
"github.com/miekg/dns"
)
// TODO(miek): serial in ixfr
var (
dnskey *dns.DNSKEY
short = flag.Bool("short", false, "abbreviate long DNSSEC records")
dnssec = flag.Bool("dnssec", false, "request DNSSEC records")
query = flag.Bool("question", false, "show question")
check = flag.Bool("check", false, "check internal DNSSEC consistency")
six = flag.Bool("6", false, "use IPv6 only")
four = flag.Bool("4", false, "use IPv4 only")
anchor = flag.String("anchor", "", "use the DNSKEY in this file as trust anchor")
tsig = flag.String("tsig", "", "request tsig with key: [hmac:]name:key")
port = flag.Int("port", 53, "port number to use")
aa = flag.Bool("aa", false, "set AA flag in query")
ad = flag.Bool("ad", false, "set AD flag in query")
cd = flag.Bool("cd", false, "set CD flag in query")
rd = flag.Bool("rd", true, "set RD flag in query")
fallback = flag.Bool("fallback", false, "fallback to 4096 bytes bufsize and after that TCP")
tcp = flag.Bool("tcp", false, "TCP mode, multiple queries are asked over the same connection")
nsid = flag.Bool("nsid", false, "set edns nsid option")
client = flag.String("client", "", "set edns client-subnet option")
opcode = flag.String("opcode", "query", "set opcode to query|update|notify")
rcode = flag.String("rcode", "success", "set rcode to noerror|formerr|nxdomain|servfail|...")
)
var prop279Reader *bufio.Reader
func doResolve(queryID int, v string, qt uint16, parseOnion bool) bool {
//serial := flag.Int("serial", 0, "perform an IXFR with this serial")
flag.Usage = func() {
fmt.Fprintf(os.Stderr, "Usage: %s [options] [@server] [qtype...] [qclass...] [name ...]\n", os.Args[0])
//flag.PrintDefaults()
}
var (
qtype []uint16
qclass []uint16
qname []string
)
flag.Parse()
if *anchor != "" {
f, err := os.Open(*anchor)
if err != nil {
fmt.Fprintf(os.Stderr, "Failure to open %s: %s\n", *anchor, err.Error())
}
r, err := dns.ReadRR(f, *anchor)
if err != nil {
fmt.Fprintf(os.Stderr, "Failure to read an RR from %s: %s\n", *anchor, err.Error())
}
if k, ok := r.(*dns.DNSKEY); !ok {
fmt.Fprintf(os.Stderr, "No DNSKEY read from %s\n", *anchor)
} else {
dnskey = k
}
}
var nameserver string
for _, arg := range flag.Args() {
// If it starts with @ it is a nameserver
if arg[0] == '@' {
nameserver = arg
continue
}
// First class, then type, to make ANY queries possible
// And if it looks like type, it is a type
if k, ok := dns.StringToType[strings.ToUpper(arg)]; ok {
qtype = append(qtype, k)
continue
}
// If it looks like a class, it is a class
if k, ok := dns.StringToClass[strings.ToUpper(arg)]; ok {
qclass = append(qclass, k)
continue
}
// If it starts with TYPExxx it is unknown rr
if strings.HasPrefix(arg, "TYPE") {
i, err := strconv.Atoi(arg[4:])
if err == nil {
qtype = append(qtype, uint16(i))
continue
}
}
// If it starts with CLASSxxx it is unknown class
if strings.HasPrefix(arg, "CLASS") {
i, err := strconv.Atoi(arg[5:])
if err == nil {
qclass = append(qclass, uint16(i))
continue
}
}
// Anything else is a qname
qname = append(qname, arg)
}
if len(qname) == 0 {
qname = []string{"."}
if len(qtype) == 0 {
qtype = append(qtype, dns.TypeNS)
}
}
if len(qtype) == 0 {
qtype = append(qtype, dns.TypeA)
}
if len(qclass) == 0 {
qclass = append(qclass, dns.ClassINET)
}
if len(nameserver) == 0 {
conf, err := dns.ClientConfigFromFile("/etc/resolv.conf")
if err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(2)
}
nameserver = "@" + conf.Servers[0]
}
nameserver = string([]byte(nameserver)[1:]) // chop off @
// if the nameserver is from /etc/resolv.conf the [ and ] are already
// added, thereby breaking net.ParseIP. Check for this and don't
// fully qualify such a name
if nameserver[0] == '[' && nameserver[len(nameserver)-1] == ']' {
nameserver = nameserver[1 : len(nameserver)-1]
}
if i := net.ParseIP(nameserver); i != nil {
nameserver = net.JoinHostPort(nameserver, strconv.Itoa(*port))
} else {
nameserver = dns.Fqdn(nameserver) + ":" + strconv.Itoa(*port)
}
c := new(dns.Client)
t := new(dns.Transfer)
c.Net = "udp"
if *four {
c.Net = "udp4"
}
if *six {
c.Net = "udp6"
}
if *tcp {
c.Net = "tcp"
if *four {
c.Net = "tcp4"
}
if *six {
c.Net = "tcp6"
}
}
m := &dns.Msg{
MsgHdr: dns.MsgHdr{
Authoritative: *aa,
AuthenticatedData: *ad,
CheckingDisabled: *cd,
RecursionDesired: *rd,
Opcode: dns.OpcodeQuery,
},
Question: make([]dns.Question, 1),
}
if op, ok := dns.StringToOpcode[strings.ToUpper(*opcode)]; ok {
m.Opcode = op
}
m.Rcode = dns.RcodeSuccess
if rc, ok := dns.StringToRcode[strings.ToUpper(*rcode)]; ok {
m.Rcode = rc
}
if *dnssec || *nsid || *client != "" {
o := &dns.OPT{
Hdr: dns.RR_Header{
Name: ".",
Rrtype: dns.TypeOPT,
},
}
if *dnssec {
o.SetDo()
o.SetUDPSize(dns.DefaultMsgSize)
}
if *nsid {
e := &dns.EDNS0_NSID{
Code: dns.EDNS0NSID,
}
o.Option = append(o.Option, e)
// NSD will not return nsid when the udp message size is too small
o.SetUDPSize(dns.DefaultMsgSize)
}
if *client != "" {
e := &dns.EDNS0_SUBNET{
Code: dns.EDNS0SUBNET,
Address: net.ParseIP(*client),
Family: 1, // IP4
SourceNetmask: net.IPv4len * 8,
}
if e.Address == nil {
fmt.Fprintf(os.Stderr, "Failure to parse IP address: %s\n", *client)
return false
}
if e.Address.To4() == nil {
e.Family = 2 // IP6
e.SourceNetmask = net.IPv6len * 8
}
o.Option = append(o.Option, e)
}
m.Extra = append(m.Extra, o)
}
if *tcp {
co := new(dns.Conn)
tcp := "tcp"
if *six {
tcp = "tcp6"
}
var err error
if co.Conn, err = net.DialTimeout(tcp, nameserver, 2*time.Second); err != nil {
fmt.Fprintf(os.Stderr, "Dialing "+nameserver+" failed: "+err.Error()+"\n")
return false
}
defer co.Close()
//qt := dns.TypeA
qc := uint16(dns.ClassINET)
//for i, v := range qname {
i := 0
//if i < len(qtype) {
// qt = qtype[i]
//}
if i < len(qclass) {
qc = qclass[i]
}
m.Question[0] = dns.Question{Name: dns.Fqdn(v), Qtype: qt, Qclass: qc}
m.Id = dns.Id()
if *tsig != "" {
if algo, name, secret, ok := tsigKeyParse(*tsig); ok {
m.SetTsig(name, algo, 300, time.Now().Unix())
c.TsigSecret = map[string]string{name: secret}
t.TsigSecret = map[string]string{name: secret}
} else {
fmt.Fprintf(os.Stderr, ";; TSIG key data error\n")
//continue
return false
}
}
co.SetReadDeadline(time.Now().Add(2 * time.Second))
co.SetWriteDeadline(time.Now().Add(2 * time.Second))
if *query {
//fmt.Printf("%s", m.String())
//fmt.Printf("\n;; size: %d bytes\n\n", m.Len())
}
//then := time.Now()
if err := co.WriteMsg(m); err != nil {
fmt.Fprintf(os.Stderr, ";; %s\n", err.Error())
//continue
return false
}
r, err := co.ReadMsg()
if err != nil {
fmt.Fprintf(os.Stderr, ";; %s\n", err.Error())
//continue
return false
}
//rtt := time.Since(then)
if r.Id != m.Id {
fmt.Fprintf(os.Stderr, "Id mismatch\n")
//continue
return false
}
if *check {
sigCheck(r, nameserver, true)
denialCheck(r)
//fmt.Println()
}
if *short {
shortenMsg(r)
}
return processAnswer(queryID, v, r.Answer, parseOnion)
//}
}
//qt := dns.TypeA
qc := uint16(dns.ClassINET)
//Query:
//for i, v := range qname {
i := 0
//if i < len(qtype) {
// qt = qtype[i]
//}
if i < len(qclass) {
qc = qclass[i]
}
m.Question[0] = dns.Question{Name: dns.Fqdn(v), Qtype: qt, Qclass: qc}
m.Id = dns.Id()
if *tsig != "" {
if algo, name, secret, ok := tsigKeyParse(*tsig); ok {
m.SetTsig(name, algo, 300, time.Now().Unix())
c.TsigSecret = map[string]string{name: secret}
t.TsigSecret = map[string]string{name: secret}
} else {
fmt.Fprintf(os.Stderr, "TSIG key data error\n")
//continue
return false
}
}
if *query {
//fmt.Printf("%s", m.String())
//fmt.Printf("\n;; size: %d bytes\n\n", m.Len())
}
if qt == dns.TypeAXFR || qt == dns.TypeIXFR {
env, err := t.In(m, nameserver)
if err != nil {
//fmt.Printf(";; %s\n", err.Error())
fmt.Fprintf(os.Stderr, ";; %s\n", err.Error())
//continue
return false
}
var envelope, record int
for e := range env {
if e.Error != nil {
//fmt.Printf(";; %s\n", e.Error.Error())
fmt.Fprintf(os.Stderr, ";; %s\n", e.Error.Error())
//continue Query
return false
}
for _, r := range e.RR {
//fmt.Printf("%s\n", r)
fmt.Fprintf(os.Stderr, "%s\n", r)
}
record += len(e.RR)
envelope++
}
//fmt.Printf("\n;; xfr size: %d records (envelopes %d)\n", record, envelope)
fmt.Fprintf(os.Stderr, "\n;; xfr size: %d records (envelopes %d)\n", record, envelope)
//continue
return false
}
//r, rtt, err := c.Exchange(m, nameserver)
r, _, err := c.Exchange(m, nameserver)
Redo:
switch err {
case nil:
//do nothing
case dns.ErrTruncated:
if *fallback {
if !*dnssec {
//fmt.Printf(";; Truncated, trying %d bytes bufsize\n", dns.DefaultMsgSize)
fmt.Fprintf(os.Stderr, ";; Truncated, trying %d bytes bufsize\n", dns.DefaultMsgSize)
o := new(dns.OPT)
o.Hdr.Name = "."
o.Hdr.Rrtype = dns.TypeOPT
o.SetUDPSize(dns.DefaultMsgSize)
m.Extra = append(m.Extra, o)
//r, rtt, err = c.Exchange(m, nameserver)
r, _, err = c.Exchange(m, nameserver)
*dnssec = true
goto Redo
} else {
// First EDNS, then TCP
//fmt.Printf(";; Truncated, trying TCP\n")
fmt.Fprintf(os.Stderr, ";; Truncated, trying TCP\n")
c.Net = "tcp"
//r, rtt, err = c.Exchange(m, nameserver)
r, _, err = c.Exchange(m, nameserver)
*fallback = false
goto Redo
}
}
//fmt.Printf(";; Truncated\n")
fmt.Fprintf(os.Stderr, ";; Truncated\n")
default:
//fmt.Printf(";; %s\n", err.Error())
fmt.Fprintf(os.Stderr, ";; %s\n", err.Error())
//continue
return false
}
if r.Id != m.Id {
fmt.Fprintf(os.Stderr, "Id mismatch\n")
return false
}
if *check {
sigCheck(r, nameserver, *tcp)
denialCheck(r)
//fmt.Println()
}
if *short {
shortenMsg(r)
}
return processAnswer(queryID, v, r.Answer, parseOnion)
//}
//return false
}
func tsigKeyParse(s string) (algo, name, secret string, ok bool) {
s1 := strings.SplitN(s, ":", 3)
switch len(s1) {
case 2:
return "hmac-md5.sig-alg.reg.int.", dns.Fqdn(s1[0]), s1[1], true
case 3:
switch s1[0] {
case "hmac-md5":
return "hmac-md5.sig-alg.reg.int.", dns.Fqdn(s1[1]), s1[2], true
case "hmac-sha1":
return "hmac-sha1.", dns.Fqdn(s1[1]), s1[2], true
case "hmac-sha256":
return "hmac-sha256.", dns.Fqdn(s1[1]), s1[2], true
}
}
return
}
func sectionCheck(set []dns.RR, server string, tcp bool) {
var key *dns.DNSKEY
for _, rr := range set {
if rr.Header().Rrtype == dns.TypeRRSIG {
var expired string
if !rr.(*dns.RRSIG).ValidityPeriod(time.Now().UTC()) {
expired = "(*EXPIRED*)"
}
rrset := getRRset(set, rr.Header().Name, rr.(*dns.RRSIG).TypeCovered)
if dnskey == nil {
key = getKey(rr.(*dns.RRSIG).SignerName, rr.(*dns.RRSIG).KeyTag, server, tcp)
} else {
key = dnskey
}
if key == nil {
//fmt.Printf(";? DNSKEY %s/%d not found\n", rr.(*dns.RRSIG).SignerName, rr.(*dns.RRSIG).KeyTag)
fmt.Fprintf(os.Stderr, ";? DNSKEY %s/%d not found\n", rr.(*dns.RRSIG).SignerName, rr.(*dns.RRSIG).KeyTag)
continue
}
where := "net"
if dnskey != nil {
where = "disk"
}
if err := rr.(*dns.RRSIG).Verify(key, rrset); err != nil {
//fmt.Printf(";- Bogus signature, %s does not validate (DNSKEY %s/%d/%s) [%s] %s\n",
fmt.Fprintf(os.Stderr, ";- Bogus signature, %s does not validate (DNSKEY %s/%d/%s) [%s] %s\n",
shortSig(rr.(*dns.RRSIG)), key.Header().Name, key.KeyTag(), where, err.Error(), expired)
} else {
//fmt.Printf(";+ Secure signature, %s validates (DNSKEY %s/%d/%s) %s\n", shortSig(rr.(*dns.RRSIG)), key.Header().Name, key.KeyTag(), where, expired)
fmt.Fprintf(os.Stderr, ";+ Secure signature, %s validates (DNSKEY %s/%d/%s) %s\n", shortSig(rr.(*dns.RRSIG)), key.Header().Name, key.KeyTag(), where, expired)
}
}
}
}
// Check the sigs in the msg, get the signer's key (additional query), get the
// rrset from the message, check the signature(s)
func sigCheck(in *dns.Msg, server string, tcp bool) {
sectionCheck(in.Answer, server, tcp)
sectionCheck(in.Ns, server, tcp)
sectionCheck(in.Extra, server, tcp)
}
// Check if there is need for authenticated denial of existence check
func denialCheck(in *dns.Msg) {
var denial []dns.RR
// nsec(3) lives in the auth section
for _, rr := range in.Ns {
if rr.Header().Rrtype == dns.TypeNSEC {
return
}
if rr.Header().Rrtype == dns.TypeNSEC3 {
denial = append(denial, rr)
continue
}
}
if len(denial) > 0 {
denial3(denial, in)
}
//fmt.Printf(";+ Unimplemented: check for denial-of-existence for nsec\n")
fmt.Fprintf(os.Stderr, ";+ Unimplemented: check for denial-of-existence for nsec\n")
return
}
// NSEC3 Helper
func denial3(nsec3 []dns.RR, in *dns.Msg) {
qname := in.Question[0].Name
qtype := in.Question[0].Qtype
switch in.Rcode {
case dns.RcodeSuccess:
// qname should match nsec3, type should not be in bitmap
match := nsec3[0].(*dns.NSEC3).Match(qname)
if !match {
//fmt.Printf(";- Denial, owner name does not match qname\n")
//fmt.Printf(";- Denial, failed authenticated denial of existence proof for no data\n")
fmt.Fprintf(os.Stderr, ";- Denial, owner name does not match qname\n")
fmt.Fprintf(os.Stderr, ";- Denial, failed authenticated denial of existence proof for no data\n")
return
}
for _, t := range nsec3[0].(*dns.NSEC3).TypeBitMap {
if t == qtype {
//fmt.Printf(";- Denial, found type, %d, in bitmap\n", qtype)
//fmt.Printf(";- Denial, failed authenticated denial of existence proof for no data\n")
fmt.Fprintf(os.Stderr, ";- Denial, found type, %d, in bitmap\n", qtype)
fmt.Fprintf(os.Stderr, ";- Denial, failed authenticated denial of existence proof for no data\n")
return
}
if t > qtype { // ordered list, bail out, because not found
break
}
}
// Some success data printed here
//fmt.Printf(";+ Denial, matching record, %s, (%s) found and type %s denied\n", qname,
fmt.Fprintf(os.Stderr, ";+ Denial, matching record, %s, (%s) found and type %s denied\n", qname,
strings.ToLower(dns.HashName(qname, nsec3[0].(*dns.NSEC3).Hash, nsec3[0].(*dns.NSEC3).Iterations, nsec3[0].(*dns.NSEC3).Salt)),
dns.TypeToString[qtype])
//fmt.Printf(";+ Denial, secure authenticated denial of existence proof for no data\n")
fmt.Fprintf(os.Stderr, ";+ Denial, secure authenticated denial of existence proof for no data\n")
return
case dns.RcodeNameError: // NXDOMAIN Proof
indx := dns.Split(qname)
var ce string // Closest Encloser
var nc string // Next Closer
var wc string // Source of Synthesis (wildcard)
ClosestEncloser:
for i := 0; i < len(indx); i++ {
for j := 0; j < len(nsec3); j++ {
if nsec3[j].(*dns.NSEC3).Match(qname[indx[i]:]) {
ce = qname[indx[i]:]
wc = "*." + ce
if i == 0 {
nc = qname
} else {
nc = qname[indx[i-1]:]
}
break ClosestEncloser
}
}
}
if ce == "" {
//fmt.Printf(";- Denial, closest encloser not found\n")
fmt.Fprintf(os.Stderr, ";- Denial, closest encloser not found\n")
return
}
//fmt.Printf(";+ Denial, closest encloser, %s (%s)\n", ce,
fmt.Fprintf(os.Stderr, ";+ Denial, closest encloser, %s (%s)\n", ce,
strings.ToLower(dns.HashName(ce, nsec3[0].(*dns.NSEC3).Hash, nsec3[0].(*dns.NSEC3).Iterations, nsec3[0].(*dns.NSEC3).Salt)))
covered := 0 // Both nc and wc must be covered
for i := 0; i < len(nsec3); i++ {
if nsec3[i].(*dns.NSEC3).Cover(nc) {
//fmt.Printf(";+ Denial, next closer %s (%s), covered by %s -> %s\n", nc, nsec3[i].Header().Name, nsec3[i].(*dns.NSEC3).NextDomain,
fmt.Fprintf(os.Stderr, ";+ Denial, next closer %s (%s), covered by %s -> %s\n", nc, nsec3[i].Header().Name, nsec3[i].(*dns.NSEC3).NextDomain,
strings.ToLower(dns.HashName(ce, nsec3[0].(*dns.NSEC3).Hash, nsec3[0].(*dns.NSEC3).Iterations, nsec3[0].(*dns.NSEC3).Salt)))
covered++
}
if nsec3[i].(*dns.NSEC3).Cover(wc) {
//fmt.Printf(";+ Denial, source of synthesis %s (%s), covered by %s -> %s\n", wc, nsec3[i].Header().Name, nsec3[i].(*dns.NSEC3).NextDomain,
fmt.Fprintf(os.Stderr, ";+ Denial, source of synthesis %s (%s), covered by %s -> %s\n", wc, nsec3[i].Header().Name, nsec3[i].(*dns.NSEC3).NextDomain,
strings.ToLower(dns.HashName(ce, nsec3[0].(*dns.NSEC3).Hash, nsec3[0].(*dns.NSEC3).Iterations, nsec3[0].(*dns.NSEC3).Salt)))
covered++
}
}
if covered != 2 {
//fmt.Printf(";- Denial, too many, %d, covering records\n", covered)
//fmt.Printf(";- Denial, failed authenticated denial of existence proof for name error\n")
fmt.Fprintf(os.Stderr, ";- Denial, too many, %d, covering records\n", covered)
fmt.Fprintf(os.Stderr, ";- Denial, failed authenticated denial of existence proof for name error\n")
return
}
//fmt.Printf(";+ Denial, secure authenticated denial of existence proof for name error\n")
fmt.Fprintf(os.Stderr, ";+ Denial, secure authenticated denial of existence proof for name error\n")
return
}
}
// Return the RRset belonging to the signature with name and type t
func getRRset(l []dns.RR, name string, t uint16) []dns.RR {
var l1 []dns.RR
for _, rr := range l {
if strings.ToLower(rr.Header().Name) == strings.ToLower(name) && rr.Header().Rrtype == t {
l1 = append(l1, rr)
}
}
return l1
}
// Get the key from the DNS (uses the local resolver) and return them.
// If nothing is found we return nil
func getKey(name string, keytag uint16, server string, tcp bool) *dns.DNSKEY {
c := new(dns.Client)
if tcp {
c.Net = "tcp"
}
m := new(dns.Msg)
m.SetQuestion(name, dns.TypeDNSKEY)
m.SetEdns0(4096, true)
r, _, err := c.Exchange(m, server)
if err != nil {
return nil
}
for _, k := range r.Answer {
if k1, ok := k.(*dns.DNSKEY); ok {
if k1.KeyTag() == keytag {
return k1
}
}
}
return nil
}
// shortSig shortens RRSIG to "miek.nl RRSIG(NS)"
func shortSig(sig *dns.RRSIG) string {
return sig.Header().Name + " RRSIG(" + dns.TypeToString[sig.TypeCovered] + ")"
}
// shortenMsg walks trough message and shortens Key data and Sig data.
func shortenMsg(in *dns.Msg) {
for i, answer := range in.Answer {
in.Answer[i] = shortRR(answer)
}
for i, ns := range in.Ns {
in.Ns[i] = shortRR(ns)
}
for i, extra := range in.Extra {
in.Extra[i] = shortRR(extra)
}
}
func shortRR(r dns.RR) dns.RR {
switch t := r.(type) {
case *dns.DS:
t.Digest = "..."
case *dns.DNSKEY:
t.PublicKey = "..."
case *dns.RRSIG:
t.Signature = "..."
case *dns.NSEC3:
t.Salt = "." // Nobody cares
if len(t.TypeBitMap) > 5 {
t.TypeBitMap = t.TypeBitMap[1:5]
}
}
return r
}
func processAnswer(queryID int, name string, rrs []dns.RR, parseOnion bool) bool {
if parseOnion {
for _, answer := range rrs {
answerTXT, ok := answer.(*dns.TXT)
if ok {
onion := answerTXT.Txt[0]
_, isDomainName := dns.IsDomainName(onion)
if ! isDomainName {
continue
}
if ! strings.HasSuffix(onion, ".onion") {
continue
}
fmt.Printf("RESOLVED %d 0 %s\n", queryID, onion)
return true
}
}
} else {
for _, answer := range rrs {
answerA, ok := answer.(*dns.A)
if ok {
fmt.Printf("RESOLVED %d 0 %s\n", queryID, answerA.A.String())
return true
}
}
for _, answer := range rrs {
answerAAAA, ok := answer.(*dns.AAAA)
if ok {
fmt.Printf("RESOLVED %d 0 %s\n", queryID, answerAAAA.AAAA.String())
return true
}
}
for _, answer := range rrs {
answerCNAME, ok := answer.(*dns.CNAME)
if !ok {
continue
}
target := answerCNAME.Target
if ! dns.IsFqdn(target) {
continue
}
target = strings.TrimSuffix(target, ".")
fmt.Printf("RESOLVED %d 0 %s\n", queryID, target)
return true
}
}
return false
}
func main() {
prop279Reader = bufio.NewReader(os.Stdin)
fmt.Println("INIT 1 0")
for {
line, err := prop279Reader.ReadString('\n')
if err != nil {
fmt.Fprintf(os.Stderr, "Couldn't read stdin: %s\n", err)
os.Exit(3)
}
words := strings.Fields(line)
if len(words) < 1 {
continue
}
if words[0] == "RESOLVE" {
if len(words) < 3 {
continue
}
queryIDStr := words[1]
queryID, err := strconv.Atoi(queryIDStr)
if err != nil {
continue
}
name := words[2]
originalName := name
onlyOnion := false
if strings.HasSuffix(name, ".onion") {
name = strings.TrimSuffix(name, ".onion")
onlyOnion = true
}
success := false
if !success {
success = doResolve(queryID, "_tor." + name, dns.TypeTXT, true)
}
if !onlyOnion {
if !success {
success = doResolve(queryID, name, dns.TypeA, false)
}
if !success {
success = doResolve(queryID, name, dns.TypeAAAA, false)
}
if !success {
success = doResolve(queryID, name, dns.TypeCNAME, false)
}
}
if !success {
fmt.Printf("RESOLVED %d 3 \"%s not available\"\n", queryID, originalName)
}
} else if words[0] == "CANCEL" {
if len(words) < 2 {
continue
}
queryIDStr := words[1]
queryID, err := strconv.Atoi(queryIDStr)
if err != nil {
continue
}
fmt.Printf("CANCELED %d\n", queryID)
}
}
}