-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathdnsstamps.go
425 lines (364 loc) · 12 KB
/
dnsstamps.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
package dnsstamps
import (
"encoding/base64"
"encoding/binary"
"errors"
"fmt"
"net"
"strconv"
"strings"
)
const (
defaultDNSCryptPort = 443
defaultDoHPort = 443
defaultDoTPort = 843
defaultDoQPort = 784
defaultPlainPort = 53
stampProtocol = "sdns://"
)
// ServerInformalProperties represents informal properties about the resolver
type ServerInformalProperties uint64
const (
// ServerInformalPropertyDNSSEC means resolver does DNSSEC validation
ServerInformalPropertyDNSSEC = ServerInformalProperties(1) << 0
// ServerInformalPropertyNoLog means resolver does not record logs
ServerInformalPropertyNoLog = ServerInformalProperties(1) << 1
// ServerInformalPropertyNoFilter means resolver doesn't intentionally block domains
ServerInformalPropertyNoFilter = ServerInformalProperties(1) << 2
)
// StampProtoType is a stamp protocol type
type StampProtoType uint8
const (
// StampProtoTypePlain is plain DNS
StampProtoTypePlain = StampProtoType(0x00)
// StampProtoTypeDNSCrypt is DNSCrypt
StampProtoTypeDNSCrypt = StampProtoType(0x01)
// StampProtoTypeDoH is DNS-over-HTTPS
StampProtoTypeDoH = StampProtoType(0x02)
// StampProtoTypeTLS is DNS-over-TLS
StampProtoTypeTLS = StampProtoType(0x03)
// StampProtoTypeDoQ is DNS-over-QUIC
StampProtoTypeDoQ = StampProtoType(0x04)
)
func (stampProtoType *StampProtoType) String() string {
switch *stampProtoType {
case StampProtoTypePlain:
return "Plain"
case StampProtoTypeDNSCrypt:
return "DNSCrypt"
case StampProtoTypeDoH:
return "DoH"
case StampProtoTypeTLS:
return "DoT"
case StampProtoTypeDoQ:
return "DoQ"
default:
panic("Unexpected protocol")
}
}
// ServerStamp is the DNS stamp representation
type ServerStamp struct {
ServerAddrStr string // Server address with port
ServerPk []uint8 // the DNSCrypt provider’s Ed25519 public key, as 32 raw bytes. Empty for other types.
// Hash is the SHA256 digest of one of the TBS certificate found in the validation chain,
// typically the certificate used to sign the resolver’s certificate. Multiple hashes can
// be provided for seamless rotations.
Hashes [][]uint8
// Provider means different things depending on the stamp type
// DNSCrypt: the DNSCrypt provider name
// DOH and DOT: server's hostname
// Plain DNS: not specified
ProviderName string
Path string // Path is the HTTP path, and it has a meaning for DoH stamps only
Props ServerInformalProperties // Server properties (DNSSec, NoLog, NoFilter)
Proto StampProtoType // Stamp protocol
}
// NewServerStampFromString creates a new DNS stamp from the stamp string
func NewServerStampFromString(stampStr string) (ServerStamp, error) {
if !strings.HasPrefix(stampStr, stampProtocol) {
return ServerStamp{}, fmt.Errorf("stamps are expected to start with %s", stampProtocol)
}
bin, err := base64.RawURLEncoding.DecodeString(stampStr[len(stampProtocol):])
if err != nil {
return ServerStamp{}, err
}
if len(bin) < 1 {
return ServerStamp{}, errors.New("stamp is too short")
}
if bin[0] == uint8(StampProtoTypePlain) {
return newPlainServerStamp(bin)
} else if bin[0] == uint8(StampProtoTypeDNSCrypt) {
return newDNSCryptServerStamp(bin)
} else if bin[0] == uint8(StampProtoTypeDoH) {
return newDoHServerStamp(bin)
} else if bin[0] == uint8(StampProtoTypeTLS) {
return newDoTOrDoQServerStamp(bin, StampProtoTypeTLS, defaultDoTPort)
} else if bin[0] == uint8(StampProtoTypeDoQ) {
return newDoTOrDoQServerStamp(bin, StampProtoTypeDoQ, defaultDoQPort)
}
return ServerStamp{}, errors.New("unsupported stamp version or protocol")
}
func (stamp *ServerStamp) String() string {
switch stamp.Proto {
case StampProtoTypeDNSCrypt:
return stamp.dnsCryptString()
case StampProtoTypeDoH:
return stamp.dohString()
case StampProtoTypeTLS:
return stamp.dotOrDoqString(StampProtoTypeTLS, defaultDoTPort)
case StampProtoTypeDoQ:
return stamp.dotOrDoqString(StampProtoTypeDoQ, defaultDoQPort)
case StampProtoTypePlain:
return stamp.plainString()
}
panic("Unsupported protocol")
}
// id(u8)=0x01 props addrLen(1) serverAddr pkStrlen(1) pkStr providerNameLen(1) providerName
func newDNSCryptServerStamp(bin []byte) (ServerStamp, error) {
stamp := ServerStamp{Proto: StampProtoTypeDNSCrypt}
if len(bin) < 66 {
return stamp, errors.New("stamp is too short")
}
stamp.Props = ServerInformalProperties(binary.LittleEndian.Uint64(bin[1:9]))
binLen := len(bin)
pos := 9
stampLen := int(bin[pos])
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ServerAddrStr = string(bin[pos : pos+stampLen])
pos += stampLen
if net.ParseIP(strings.TrimRight(strings.TrimLeft(stamp.ServerAddrStr, "["), "]")) != nil {
stamp.ServerAddrStr = fmt.Sprintf("%s:%d", stamp.ServerAddrStr, defaultDNSCryptPort)
}
stampLen = int(bin[pos])
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ServerPk = bin[pos : pos+stampLen]
pos += stampLen
stampLen = int(bin[pos])
if stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ProviderName = string(bin[pos : pos+stampLen])
pos += stampLen
if pos != binLen {
return stamp, errors.New("invalid stamp (garbage after end)")
}
return stamp, nil
}
// id(u8)=0x02 props addrLen(1) serverAddr hashLen(1) hash providerNameLen(1) providerName pathLen(1) path
func newDoHServerStamp(bin []byte) (ServerStamp, error) {
stamp := ServerStamp{Proto: StampProtoTypeDoH}
if len(bin) < 22 {
return stamp, errors.New("stamp is too short")
}
stamp.Props = ServerInformalProperties(binary.LittleEndian.Uint64(bin[1:9]))
binLen := len(bin)
pos := 9
stampLen := int(bin[pos])
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ServerAddrStr = string(bin[pos : pos+stampLen])
pos += stampLen
for {
vlen := int(bin[pos])
stampLen = vlen & ^0x80
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
if stampLen > 0 {
stamp.Hashes = append(stamp.Hashes, bin[pos:pos+stampLen])
}
pos += stampLen
if vlen&0x80 != 0x80 {
break
}
}
stampLen = int(bin[pos])
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ProviderName = string(bin[pos : pos+stampLen])
pos += stampLen
stampLen = int(bin[pos])
if stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.Path = string(bin[pos : pos+stampLen])
pos += stampLen
if pos != binLen {
return stamp, errors.New("invalid stamp (garbage after end)")
}
if net.ParseIP(strings.TrimRight(strings.TrimLeft(stamp.ServerAddrStr, "["), "]")) != nil {
stamp.ServerAddrStr = fmt.Sprintf("%s:%d", stamp.ServerAddrStr, defaultDoHPort)
}
return stamp, nil
}
// id(u8)=0x03|0x04 props addrLen(1) serverAddr hashLen(1) hash providerNameLen(1) providerName
func newDoTOrDoQServerStamp(bin []byte, stampType StampProtoType, defaultPort uint16) (ServerStamp, error) {
stamp := ServerStamp{Proto: stampType}
if len(bin) < 22 {
return stamp, errors.New("stamp is too short")
}
stamp.Props = ServerInformalProperties(binary.LittleEndian.Uint64(bin[1:9]))
binLen := len(bin)
pos := 9
stampLen := int(bin[pos])
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ServerAddrStr = string(bin[pos : pos+stampLen])
pos += stampLen
for {
vlen := int(bin[pos])
stampLen = vlen & ^0x80
if 1+stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
if stampLen > 0 {
stamp.Hashes = append(stamp.Hashes, bin[pos:pos+stampLen])
}
pos += stampLen
if vlen&0x80 != 0x80 {
break
}
}
stampLen = int(bin[pos])
if stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ProviderName = string(bin[pos : pos+stampLen])
pos += stampLen
if pos != binLen {
return stamp, errors.New("invalid stamp (garbage after end)")
}
if net.ParseIP(strings.TrimRight(strings.TrimLeft(stamp.ServerAddrStr, "["), "]")) != nil {
stamp.ServerAddrStr = fmt.Sprintf("%s:%d", stamp.ServerAddrStr, defaultPort)
}
return stamp, nil
}
// id(u8)=0x00 props addrLen(1) serverAddr
func newPlainServerStamp(bin []byte) (ServerStamp, error) {
stamp := ServerStamp{Proto: StampProtoTypePlain}
if len(bin) < 17 {
return stamp, fmt.Errorf("stamp is too short: len=%d", len(bin))
}
stamp.Props = ServerInformalProperties(binary.LittleEndian.Uint64(bin[1:9]))
binLen := len(bin)
pos := 9
stampLen := int(bin[pos])
if stampLen >= binLen-pos {
return stamp, errors.New("invalid stamp")
}
pos++
stamp.ServerAddrStr = string(bin[pos : pos+stampLen])
pos += stampLen
if pos != binLen {
return stamp, errors.New("invalid stamp (garbage after end)")
}
if net.ParseIP(strings.TrimRight(strings.TrimLeft(stamp.ServerAddrStr, "["), "]")) != nil {
stamp.ServerAddrStr = fmt.Sprintf("%s:%d", stamp.ServerAddrStr, defaultPlainPort)
}
return stamp, nil
}
func (stamp *ServerStamp) dnsCryptString() string {
bin := make([]uint8, 9)
bin[0] = uint8(StampProtoTypeDNSCrypt)
binary.LittleEndian.PutUint64(bin[1:9], uint64(stamp.Props))
serverAddrStr := stamp.ServerAddrStr
if strings.HasSuffix(serverAddrStr, ":"+strconv.Itoa(defaultDNSCryptPort)) {
serverAddrStr = serverAddrStr[:len(serverAddrStr)-1-len(strconv.Itoa(defaultDNSCryptPort))]
}
bin = append(bin, uint8(len(serverAddrStr)))
bin = append(bin, []uint8(serverAddrStr)...)
bin = append(bin, uint8(len(stamp.ServerPk)))
bin = append(bin, stamp.ServerPk...)
bin = append(bin, uint8(len(stamp.ProviderName)))
bin = append(bin, []uint8(stamp.ProviderName)...)
str := base64.RawURLEncoding.EncodeToString(bin)
return stampProtocol + str
}
func (stamp *ServerStamp) dohString() string {
bin := make([]uint8, 9)
bin[0] = uint8(StampProtoTypeDoH)
binary.LittleEndian.PutUint64(bin[1:9], uint64(stamp.Props))
serverAddrStr := stamp.ServerAddrStr
if strings.HasSuffix(serverAddrStr, ":"+strconv.Itoa(defaultDoHPort)) {
serverAddrStr = serverAddrStr[:len(serverAddrStr)-1-len(strconv.Itoa(defaultDoHPort))]
}
bin = append(bin, uint8(len(serverAddrStr)))
bin = append(bin, []uint8(serverAddrStr)...)
if len(stamp.Hashes) == 0 {
bin = append(bin, uint8(0))
} else {
last := len(stamp.Hashes) - 1
for i, hash := range stamp.Hashes {
vlen := len(hash)
if i < last {
vlen |= 0x80
}
bin = append(bin, uint8(vlen))
bin = append(bin, hash...)
}
}
bin = append(bin, uint8(len(stamp.ProviderName)))
bin = append(bin, []uint8(stamp.ProviderName)...)
bin = append(bin, uint8(len(stamp.Path)))
bin = append(bin, []uint8(stamp.Path)...)
str := base64.RawURLEncoding.EncodeToString(bin)
return stampProtocol + str
}
func (stamp *ServerStamp) dotOrDoqString(stampType StampProtoType, defaultPort uint16) string {
bin := make([]uint8, 9)
bin[0] = uint8(stampType)
binary.LittleEndian.PutUint64(bin[1:9], uint64(stamp.Props))
serverAddrStr := stamp.ServerAddrStr
if strings.HasSuffix(serverAddrStr, ":"+strconv.Itoa(int(defaultPort))) {
serverAddrStr = serverAddrStr[:len(serverAddrStr)-1-len(strconv.Itoa(int(defaultPort)))]
}
bin = append(bin, uint8(len(serverAddrStr)))
bin = append(bin, []uint8(serverAddrStr)...)
if len(stamp.Hashes) == 0 {
bin = append(bin, uint8(0))
} else {
last := len(stamp.Hashes) - 1
for i, hash := range stamp.Hashes {
vlen := len(hash)
if i < last {
vlen |= 0x80
}
bin = append(bin, uint8(vlen))
bin = append(bin, hash...)
}
}
bin = append(bin, uint8(len(stamp.ProviderName)))
bin = append(bin, []uint8(stamp.ProviderName)...)
str := base64.RawURLEncoding.EncodeToString(bin)
return stampProtocol + str
}
func (stamp *ServerStamp) plainString() string {
bin := make([]uint8, 9)
bin[0] = uint8(StampProtoTypePlain)
binary.LittleEndian.PutUint64(bin[1:9], uint64(stamp.Props))
serverAddrStr := stamp.ServerAddrStr
if strings.HasSuffix(serverAddrStr, ":"+strconv.Itoa(defaultPlainPort)) {
serverAddrStr = serverAddrStr[:len(serverAddrStr)-1-len(strconv.Itoa(defaultPlainPort))]
}
bin = append(bin, uint8(len(serverAddrStr)))
bin = append(bin, []uint8(serverAddrStr)...)
str := base64.RawURLEncoding.EncodeToString(bin)
return stampProtocol + str
}