forked from becarpenter/graspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGetDNSSD2.py
439 lines (371 loc) · 14.3 KB
/
GetDNSSD2.py
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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""########################################################
########################################################
# GetDNSSD2 is a demonstration Autonomic Service Agent.
# It supports the proposed GRASP objective family SRV.*
# in order to fetch and parse DNS-SD records on behalf of
# a client ASA
#
#
# Released under the BSD 2-Clause "Simplified" or "FreeBSD"
# License as follows:
#
# Copyright (C) 2017 Brian E. Carpenter.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with
# or without modification, are permitted provided that the
# following conditions are met:
#
# 1. Redistributions of source code must retain the above
# copyright notice, this list of conditions and the following
# disclaimer.
#
# 2. Redistributions in binary form must reproduce the above
# copyright notice, this list of conditions and the following
# disclaimer in the documentation and/or other materials
# provided with the distribution.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS
# AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
# WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
# PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
# THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
# USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
# IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
# USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
########################################################"""
import grasp
import ipaddress
import threading
import time
import sys
import cbor
import dns.resolver
###################################
# Constants for building dicts
###################################
class codepoints:
"""Code points for objective dictionaries"""
def __init__(self):
self.sender_loop_count = 1
self.srv_element = 2
self.private = 0
self.msg_type = 1
self.service = 2
self.instance = 3
self.domain = 4
self.priority = 5
self.weight = 6
self.kvps = 7
self.net_range = 8
self.clocator = 9
self.describe = 0
self.describe_request = 1
self.enumerated = 2
self.enumerated_request = 3
self.outer = "@rfcXXXX"
cp = codepoints()
###################################
# Support function for CBOR coded
# objective value
###################################
def detag(val):
""" Decode CBOR if necessary
-> decoded_object, was_CBOR"""
try:
return cbor.loads(val), True
except:
try:
if val.tag == 24:
return cbor.loads(val.value), True
except:
return val, False
####################################
# Support functions for negotiator
####################################
def endit(snonce, r):
"""Send end_negotiate with reason string"""
grasp.tprint("Failed", r)
err = grasp.end_negotiate(asa_nonce, snonce, False, reason=r)
if err:
grasp.tprint("end_negotiate error:",grasp.etext[err])
#resolver = dns.resolver.Resolver()
#resolver.timeout = 10
#resolver.lifetime = 10
def resolve(n,q):
"""Resolve a single domain and return the RR"""
#grasp.tprint(resolver)
try:
grasp.ttprint("Resolving",n,q)
a = dns.resolver.query(n,q)
grasp.ttprint("Got",a)
return a
except:
return []
def fix_string(s):
"""Replace escapes by raw bytes and return as a Unicode string"""
r = ''
while True:
try:
p1,p2 = s.split('\\', maxsplit=1)
try:
#replace escape sequence by byte
ch = chr(int(p2[0:3]))
except ValueError:
#looks like an isolated backslash, not a Unicode escape
#but we have to leave it in place for SRV lookup
#to succeed
ch='\\'+p2[0:3]
r += p1 + ch
s = p2[3:]
except ValueError:
r += s
return str(bytes(r,encoding='raw_unicode_escape'),encoding='utf-8')
####################################
# Utility function to create a
# skeleton reply element
####################################
def new_relement():
"""-> skeleton reply element"""
return {cp.outer:
{cp.sender_loop_count: 15, #????
cp.srv_element:
{cp.msg_type: cp.describe,
cp.service: None,
cp.instance: None,
cp.domain: None,
cp.priority: 0,
cp.weight: 0,
cp.kvps: {},
cp.clocator: []
}
}
}
####################################
# Thread to handle a negotiation
####################################
class negotiator(threading.Thread):
"""Thread to negotiate objective as master"""
def __init__(self, snonce, nobj):
threading.Thread.__init__(self)
self.snonce = snonce
self.nobj = nobj
def run(self):
answer=self.nobj
snonce=self.snonce
answer.value, _cbor = detag(answer.value)
if _cbor:
grasp.tprint("CBOR value decoded")
grasp.tprint("Got request")
if answer.dry:
endit(snonce,"Dry run not supported")
return
# Check format of request & extract fields
try:
req = answer.value.get("@rfcXXXX")
except:
req = None
if not req:
endit(snonce,"Not RFCXXXX format")
return
grasp.tprint(req)
sel = req.get(cp.srv_element)
if not sel:
endit(snonce,"No service element")
return
msg_type = sel.get(cp.msg_type)
if msg_type != cp.describe_request:
endit(snonce,"Not describe_request")
return
srv_name = sel.get(cp.service)
if not srv_name:
endit(snonce,"No service name")
return
dom_name = sel.get(cp.domain)
if not dom_name:
endit(snonce,"No domain name")
return
# Construct DNS name
dns_name = "_"+srv_name+"."+dom_name
if dns_name[-1] != ".":
dns_name += "."
#Look for PTR record first
found_something = False
broken = False
a = resolve(dns_name,'PTR')
for r in a:
found_something = True
#extract the instance name
raw_name = str(r)
#decode Unicode escapes
fixed_name = fix_string(raw_name)
#remove bogus escapes
name = fixed_name.replace("\\","")
grasp.tprint("Got PTR name:",name)
grasp.ttprint("Raw name:",raw_name)
if name[-len(dns_name):] == dns_name:
inst_name = name[0:-len(dns_name)-1]
else:
inst_name = name
grasp.tprint("Instance name", inst_name)
#start new reply element
relement = new_relement()
grasp.ttprint("Answer is", answer)
relement[cp.outer][cp.sender_loop_count] = answer.loop_count
relement[cp.outer][cp.srv_element][cp.instance] = inst_name
relement[cp.outer][cp.srv_element][cp.service] = srv_name
relement[cp.outer][cp.srv_element][cp.domain] = dom_name
#look for other records
a = resolve(fixed_name,'SRV')
for r in a:
grasp.ttprint("Got SRV", str(r))
#parse SRV record to extract the fields
priority,weight,srv_port,srv_dom = str(r).split(' ')
grasp.ttprint("Got SRV domain", srv_dom)
relement[cp.outer][cp.srv_element][cp.priority] = int(priority)
relement[cp.outer][cp.srv_element][cp.weight] = int(weight)
srv_port = int(srv_port)
#look for address records & build locators
loc_l = []
a = resolve(srv_dom,'AAAA')
for r in a:
grasp.ttprint("Got AAAA", str(r))
srv_addr = ipaddress.IPv6Address(r)
loc = [grasp.O_IPv6_LOCATOR,srv_addr.packed,17,srv_port]
loc_l.append(["Internet", loc])
a = resolve(srv_dom,'A')
for r in a:
grasp.ttprint("Got A", str(r))
srv_addr = ipaddress.IPv4Address(r)
loc = [grasp.O_IPv4_LOCATOR,srv_addr.packed,17,srv_port]
loc_l.append(["Internet", loc])
loc_l.append(["Internet",[grasp.O_FQDN_LOCATOR,srv_dom,17,srv_port]])
#add locators to reply
relement[cp.outer][cp.srv_element][cp.clocator] = loc_l
a = resolve(name,'TXT')
for r in a:
grasp.tprint("Got TXT", r)
#Note that TXT records may include quotes
try:
k,v = str(r).split(' ')
if k[0]=='"':
k=k[1:-1]
if v[0]=='"':
v=v[1:-1]
grasp.ttprint("kv",k,v)
relement[cp.outer][cp.srv_element][cp.kvps] = {k:v}
except:
grasp.ttprint("Couldn't split", str(r))
pass
# The relement is now complete, send it as next negotiation step
grasp.tprint("Reply step", relement)
answer.value = relement
if _cbor:
answer.value=cbor.dumps(answer.value)
#send reply as negotiation step
err,temp,answer = grasp.negotiate_step(asa_nonce, snonce, answer, 1000)
grasp.ttprint("Negotiation step gave:", err, temp, answer)
if (not err) and temp==None:
grasp.tprint("Reply step succeeded")
elif not err:
answer.value, _ = detag(answer.value)
if _:
grasp.tprint("CBOR value decoded")
if answer.value !="ACK":
grasp.tprint("Unexpected reply: loop count", answer.loop_count,
"value",answer.value)
endit(snonce, "Unexpected reply")
broken = True
break
else:
#other end rejected or loop count exhausted
if err==grasp.errors.loopExhausted:
# we need to signal the end
endit(snonce, grasp.etext[err])
else:
grasp.tprint("Failed:",grasp.etext[err])
broken = True
break
#Sent all relements
if broken:
return
if not found_something:
#NXDOMAIN
endit(snonce, "Service not found")
else:
err = grasp.end_negotiate(asa_nonce, snonce, True)
if err:
grasp.tprint("end_negotiate error:",grasp.etext[err])
#end of negotiation
grasp.tprint("==========================")
grasp.tprint("ASA GetDNSSD2 is starting up.")
grasp.tprint("==========================")
grasp.tprint("GetDNSSD2 is a demonstration Autonomic Service Agent.")
grasp.tprint("It runs indefinitely as a gateway to DNS,")
grasp.tprint("to fetch and parse SRV and related records,")
grasp.tprint("to proxy DNS-SD for GRASP nodes.")
grasp.tprint("It is implemented using a negotiation objective")
grasp.tprint("that can handle overlapping requests.")
grasp.tprint("On Windows or Linux, there should be a nice")
grasp.tprint("window that displays the process.")
grasp.tprint("==========================")
####################################
# General initialisation
####################################
#grasp.test_mode = True # set if you want detailed diagnostics
time.sleep(8) # so the user can read the text
####################################
# Register ASA/objective
####################################
err,asa_nonce = grasp.register_asa("GetDNSSD2")
if not err:
grasp.tprint("ASA GetDNSSD2 registered OK")
else:
exit()
obj1 = grasp.objective("SRV.")
obj1.loop_count = 4
obj1.neg = True
err = grasp.register_obj(asa_nonce,obj1)
if not err:
grasp.tprint("Objective", obj1.name, "registered OK")
else:
exit()
###################################
# Hack to get round nameservers that can't resolve the test domain
###################################
try:
dns.resolver.query('_printer._sub._http._tcp.dns-sd.org.','PTR')
except:
dns.resolver.default_resolver = dns.resolver.Resolver(configure=False)
dns.resolver.default_resolver.nameservers = [ '2001:4860:4860::8888',
'2001:4860:4860::8844',
'8.8.8.8', '8.8.4.4' ]
grasp.tprint("Couldn't resolve test domain, switched to Google nameservers")
###################################
# Set up pretty printing
###################################
grasp.init_bubble_text("GetDNSSD2")
grasp.tprint("GetDNSSD2 is listening")
###################################
# Negotiate as listener for ever
###################################
while True:
# listen for negotiation request
err, snonce, answer = grasp.listen_negotiate(asa_nonce, obj1)
if err:
grasp.tprint("listen_negotiate error:",grasp.etext[err])
time.sleep(5) #to calm things if there's a looping error
else:
#got a new negotiation request; kick off a separate negotiator
#so that multiple requests can be handled in parallel
grasp.ttprint("Raw answer", answer.value)
negotiator(snonce, answer).start()