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

import (
	"context"
	"fmt"
	"time"

	"github.com/miekg/dns"

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

type DNSClient struct {
	Server             string
	RecursiveResolvers []string
	PollTimeout        time.Duration
}

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
}

// TODO: Copied from the letsencrypt service, merge this into existing functions
func (c *DNSClient) sendReadQuery(ctx context.Context, fqdn string, rtype uint16, nameserver string) (*dns.Msg, error) {
	udp := &dns.Client{Net: "udp"}
	tcp := &dns.Client{Net: "tcp"}

	m := &dns.Msg{}
	m.SetQuestion(fqdn, rtype)
	m.SetEdns0(4096, false)
	m.RecursionDesired = true

	in, _, err := udp.ExchangeContext(ctx, m, nameserver)
	if in != nil && in.Truncated {
		// If the TCP request succeeds, the err will reset to nil
		in, _, err = tcp.ExchangeContext(ctx, m, nameserver)
	}

	if err != nil {
		return nil, err
	}

	return in, err
}

func (c *DNSClient) WaitForDNSPropagation(ctx context.Context, fqdn, value string) error {
	if c.RecursiveResolvers == nil {
		return fmt.Errorf("DNSClient.WaitForDNSPropagation: RecursiveResolvers not set")
	}

	pt := c.PollTimeout
	if pt == 0 {
		pt = 3 * time.Second
	}

	timer := time.NewTicker(pt)
	defer timer.Stop()

	for {
		// Give the server the initial timout to satisfy the request
		select {
		case <-ctx.Done():
			return fmt.Errorf("DNSClient.WaitForDNSPropagation: context has expired, polling terminated")
		case <-timer.C:
		}

		ok_count := 0
		for _, rs := range c.RecursiveResolvers {
			r, err := c.sendReadQuery(ctx, fqdn, dns.TypeTXT, rs)
			if err != nil {
				return err
			}

			if len(r.Answer) > 0 {
				if r.Answer[0].(*dns.TXT).Txt[0] == value {
					ok_count++
				}
			}
		}

		if ok_count == len(c.RecursiveResolvers) {
			return nil
		}
	}
}