summaryrefslogtreecommitdiff
path: root/dns/client.go
blob: 525444abfbc1ac71c2c7eaf951e0a2543af2bb0b (plain)
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
package dns

import (
	"fmt"

	"github.com/miekg/dns"

	"code.crute.me/mcrute/go_ddns_manager/bind"
)

type DNSClient struct {
	Server string
}

type DNSTransaction struct {
	zone *bind.Zone
	key  *bind.Key
	msg  *dns.Msg
}

func (t *DNSTransaction) Upsert(rrs ...RR) *DNSTransaction {
	t.RemoveAll(rrs...).Insert(rrs...)
	return t
}

func (t *DNSTransaction) Insert(rrs ...RR) *DNSTransaction {
	t.msg.Insert(toRRSet(t.zone, rrs...))
	return t
}

func (t *DNSTransaction) Remove(rrs ...RR) *DNSTransaction {
	t.msg.Remove(toRRSet(t.zone, rrs...))
	return t
}

func (t *DNSTransaction) RemoveAll(rrs ...RR) *DNSTransaction {
	t.msg.RemoveRRset(toRRSet(t.zone, rrs...))
	return t
}

func (c *DNSClient) AXFR(zone *bind.Zone) (chan *dns.Envelope, error) {
	k := zone.Keys()[0]
	t := &dns.Transfer{TsigSecret: k.AsMap()} // Always uses tcp

	m := &dns.Msg{}
	m.SetAxfr(zone.Name)
	k.Sign(m)

	return t.In(m, c.Server)
}

func (c *DNSClient) ReadRemoteZone(zone *bind.Zone) ([]RR, error) {
	rrs := []RR{}
	seenSoa := false

	data, err := c.AXFR(zone)
	if err != nil {
		return nil, err
	}

	for rd := range data {
		for _, r := range rd.RR {
			switch dr := FromDNS(r).(type) {
			case *SOA:
				// Transfers have 2 SOA records, exclude the last one
				if !seenSoa {
					rrs = append(rrs, dr)
					seenSoa = true
				}
			case RR:
				rrs = append(rrs, dr)
			default:
				// This should only be possible if we somehow are
				// missing generated DNS data types.
				return nil, fmt.Errorf("Invalid return type")
			}
		}
	}

	return rrs, nil
}

func (c *DNSClient) StartUpdate(zone *bind.Zone) *DNSTransaction {
	m := &dns.Msg{}
	m.SetUpdate(zone.Name)

	return &DNSTransaction{
		zone: zone,
		key:  zone.Keys()[0],
		msg:  m,
	}
}

func (c *DNSClient) QueryRecursive(zone *bind.Zone, fqdn string, rtype uint16) *DNSTransaction {
	m := &dns.Msg{}
	m.RecursionDesired = true
	m.SetQuestion(fqdn, rtype)

	return &DNSTransaction{
		zone: zone,
		key:  zone.Keys()[0],
		msg:  m,
	}
}

func (c *DNSClient) SendUpdate(t *DNSTransaction) error {
	udp := &dns.Client{Net: "udp", TsigSecret: t.key.AsMap()}
	tcp := &dns.Client{Net: "tcp", TsigSecret: t.key.AsMap()}

	t.msg.SetEdns0(4096, false)
	t.key.Sign(t.msg)

	in, _, err := udp.Exchange(t.msg, c.Server)
	if in != nil && in.Truncated {
		// If the TCP request succeeds, the err will reset to nil
		in, _, err = tcp.Exchange(t.msg, c.Server)
	}

	if err != nil {
		return err
	}

	return nil
}

func (c *DNSClient) SendQuery(t *DNSTransaction) ([]dns.RR, error) {
	udp := &dns.Client{Net: "udp", TsigSecret: t.key.AsMap()}
	tcp := &dns.Client{Net: "tcp", TsigSecret: t.key.AsMap()}

	t.msg.SetEdns0(4096, false)
	t.key.Sign(t.msg)

	in, _, err := udp.Exchange(t.msg, c.Server)
	if in != nil && in.Truncated {
		// If the TCP request succeeds, the err will reset to nil
		in, _, err = tcp.Exchange(t.msg, c.Server)
	}

	if err != nil {
		return nil, err
	}

	return in.Answer, nil
}