-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathltr.py
executable file
·614 lines (554 loc) · 17.8 KB
/
ltr.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
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
#!/usr/bin/python
# -----------------------------------------------------------------------------
#
# Copyright 2013-2019 lispers.net - Dino Farinacci <[email protected]>
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# -----------------------------------------------------------------------------
#
# ltr.py - LISP EID Traceroute Client - Trace the encap/decap paths
#
# Usage: python ltr.py [-s <source-eid>] <destination-EID | DNS-name>
#
# -s: Optional source EID.
# <destination-EID>: required parameter [<iid>] in front is optional
#
# This application is run on an xTR. Typically a ITR or RTR, where the
# encapsulator adds to the ltr message with the RLOC the ITR is encapsulating
# to. Then the decapsulator will decapsulate and swap the source and
# destination addresses to return the packet to the source-EID (running the
# client program). If the ETR is not the EID, then the packet will be re-
# encapsulated in which more data is added to the ltr message.
#
# ltr messages run in UDP on port 2434 (4342 backwards) and are returned
# to the client program.
#
# The LISP-Trace message takes the following path:
#
# (1) ltr sends LISP-TRACE packet from its EID to the EID of the ETR on
# port 2434. It builds a type=9 packet with a nonce and an empty JSON field.
#
# (2) ITR will look up destination EID as part of forwarding logic and add
# RLOC information to LISP-Trace message. The message is encapsulated to
# the ETR.
#
# (3) The ETR (or RTR) will decap packet. It will add information to the LISP-
# packet. If it is the destination EID, it will send the LISP-Trace packet
# using itself as the source and the original source as the destination.
#
# (4) The local ITR will encapsulate the packet and add RLOC information to
# the LISP-Trace packet. It encapsulates the return packet to the ETR.
#
# (5) The ETR decapsulates the packet and sends it to the ltr client so the
# accumulated JSON data can be displayed for the user.
#
# This functionality works on a chain of encapsulating tunnels to give the
# user what RLOCs are used and the arrival time of the packet. It allows an
# ltr client to not only determine path and latency of the network, but if
# the encapsulation paths are symmetric or asymmetric.
#
# If there an error along the path, the node detecting the error will return
# the LISP-Trace packet to the RLOC of the originating ITR.
#
# The JSON format of an LISP-Trace packet is an array of dictionary arrays.
# The array will typically have 2 elements, one from ltr source to destination
# EID and one for the return path. Each dictionary array is keyed with "seid",
# "deid", and "paths". The array "paths" is the node data that is appended
# at each encapsulation hop. Note example below:
#
# [
# { "se" : "[<iid>]<orig-eid>", "de" : "[<iid>]<dest-eid>", "paths" : a
# [
# { "n" : "ITR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>", "rtts" : [...], "hops" : [...] },
# { "n" : "RTR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "dts" : "<ts>", "hn" : "<hn>" },
# { "n" : "RTR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>", "rtts" : [...], "hops" : [...] },
# { "n" : "ETR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>" }, ...
# ] },
#
# { "se" : "[<iid>]<dest-eid>", "de" : "[<iid>]<orig-eid>", "paths" :
# [
# { "n" : "ITR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>", "rtts" : [...], "hops" : [...] },
# { "n" : "RTR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "dts" : "<ts>", "hn" : "<hn>" },
# { "n" : "RTR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>", "rtts" : [...], "hops" : [...] },
# { "n" : "ETR", "sr" : "<source-rloc>", "dr" : "<dest_rloc>",
# "ets" : "<ts>", "hn" : "<hn>" }, ...
# ] }
# ]
#
# Environment variable LISP_LTR_PORT is used to determine if the connection to
# the LISP API is done with a particular port. And if the port has a minus
# sign in front of it, it will use http rather https to connect to the
# lispers.net API. Environment variables LISP_LTR_USER and LISP_LTR_PW are
# used when lispers.net API is running with a password on username root.
#
#------------------------------------------------------------------------------
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from builtins import hex
import sys
import struct
import random
import socket
import json
import time
import os
import binascii
from subprocess import getoutput
#------------------------------------------------------------------------------
#
# The following variables are used to curl for the local EID. Set
# approrpriately via environment variables for your deployment environment.
#
http = "https"
http_port = 8080
port = os.getenv("LISP_LTR_PORT")
if (port != None):
if (port[0] == "-"):
http = "http"
port = port[1::]
#endif
if (port.isdigit() == False):
print("Invalid value for env variable LISP_LTR_PORT")
exit(1)
#endif
http_port = int(port)
#endif
user = os.getenv("LISP_LTR_USER")
pw = os.getenv("LISP_LTR_PW")
if (user == None): user = "root"
if (pw == None): pw = ""
LISP_TRACE_PORT = 2434
#------------------------------------------------------------------------------
#
# build_packet
#
# Build LISP-Trace packet. This is what the ltr client will build, an empty
# ltr packet type 9 with a nonce.
#
# 0 1 2 3
# 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# |Type=9 | 0 | Local Private Port |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Local Private IPv4 RLOC |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | Nonce . . . |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
# | . . . Nonce |
# +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
#
def build_packet(rloc, port):
first_long = socket.htonl(0x90000000 + port)
packet = struct.pack("I", first_long)
octet = rloc.split(".")
value = int(octet[0]) << 24
value += int(octet[1]) << 16
value += int(octet[2]) << 8
value += int(octet[3])
packet += struct.pack("I", socket.htonl(value))
nonce = random.randint(0, (2**64)-1)
packet += struct.pack("Q", nonce)
return(nonce, packet)
#enddef
#
# parse_packet
#
# Parse packet and return JSON data only.
#
def parse_packet(nonce, packet):
if (len(packet) < 12): return(False)
packet_format = "II"
format_size = struct.calcsize(packet_format)
first_long, rloc = struct.unpack(packet_format, packet[:format_size])
packet = packet[format_size::]
if (socket.ntohl(first_long) != 0x90000000):
print("Invalid LISP-Trace message")
return({})
#endif
packet_format = "Q"
format_size = struct.calcsize(packet_format)
pnonce = struct.unpack(packet_format, packet[:format_size])[0]
packet = packet[format_size::]
#
# Check compare nonce sent with one echo'ed in repsonse.
#
if (pnonce != nonce):
print("Invalid nonce, sent {}, received {}".format(nonce, pnonce))
return({})
#endif
if (len(packet) == 0):
print("No JSON data in payload")
return({})
#endif
#
# Parse JSON data.
#
try:
json_data = json.loads(packet)
except:
print("Invalid JSON data: '{}'".format(packet))
return({})
#endtry
return(json_data)
#enddef
#
# display_packet
#
# Display passed in JSON data.
#
def display_packet(jd):
for segment in jd:
se = green(segment["se"])
de = green(segment["de"])
print("Path from {} to {}:".format(se, de))
for path in segment["paths"]:
if ("ets" in path):
ts = path["ets"]
ed = "encap"
#endif
if ("dts" in path):
ts = path["dts"]
ed = "decap"
#endif
hn = path["hn"]
drloc = path["dr"]
if (drloc.find("?") != -1): drloc = red_bold(drloc)
print(" {} {}: {} -> {}, ts {}, node {}".format( \
path["n"], ed, red(path["sr"]), red(drloc), ts, blue(hn)))
if ("rtts" in path and "hops" in path and "lats" in path):
r = json.dumps(path["rtts"])
r = r.replace("-1", "?")
h = json.dumps(path["hops"])
h = h.replace("u", "")
h = h.replace("'", "")
h = h.replace('"', "")
l = json.dumps(path["lats"])
l = l.replace("u", "")
l = l.replace("'", "")
l = l.replace('"', "")
print(" ", end=' ')
print("recent-rtts {}, recent-hops {}".format(r, h))
print(" recent-latencies {}".format(l))
#endif
#endfor
print("")
#enfor
#enddef
#
# parse_eid
#
# Parse an EID in string format "[<iid>]<eid> or "[<iid>]<dns-name>".
#
def parse_eid(eid):
no_iid = True
#
# Look for instance-ID brackets. They are optional so may not be present.
# Default to instance-ID 0 when not present.
#
index = eid.find("]")
if (index == -1):
iid = "0"
else:
no_iid = False
iid = eid[1:index]
eid = eid[index+1::]
#endif
#
# Do not pass in a IPv6 address to gethostbyname(). Sigh.
#
if (eid.find(":") == -1):
try: eid = socket.gethostbyname(eid)
except: pass
#endtry
return(iid, eid, no_iid)
#enddef
#
# do_longest_match
#
# Take two address strings and see if EID is more specific than EID-prefix.
#
def do_longest_match(eid, eid_prefix, ml):
mask = 2**ml - 1
e = eid.split(".")
if (len(e) == 1): e = eid.split(":")
if (len(e) == 1): return(False)
if (len(e) == 4):
mask = mask << (32 - ml)
eid = int(e[0]) << 24 | int(e[1]) << 16 | int(e[2]) << 8 | int(e[3])
e = eid & mask
eid = "{}.{}.{}.{}".format((e >> 24) & 0xff, (e >> 16) & 0xff,
(e >> 8) & 0xff, e & 0xff)
else:
mask = mask << (128 - ml)
eid = socket.inet_pton(socket.AF_INET6, eid)
eid = int(binascii.hexlify(eid), 16)
e = eid & mask
eid = binascii.unhexlify(hex(e)[2:-1])
eid = socket.inet_ntop(socket.AF_INET6, eid)
#endif
return(eid == eid_prefix)
#enddef
#
# get_db
#
# Find databaas-mapping entry so we can find our IPv4 EID using API. Try some
# different methods like different port numbers. Return 4-tuple of (iid, eid,
# rloc, nat-traversal) if not matching an iid/eid pair. If matching, then just
# return rloc ant nat-traversal for the EID.
#
def get_db(match_iid, match_eid, user, pw, http, port, v4v6):
cmd = ("curl --silent --insecure -u {}:{} {}://localhost:{}/lisp/" + \
"api/data/database-mapping").format(user, pw, http, port)
out = getoutput(cmd)
try:
jd = json.loads(out)
except:
return(None, None, None, None)
#endtry
for entry in jd:
if (("eid-prefix" in entry) == False): continue
eid = entry["eid-prefix"]
#
# Skip over distinguished names or any other EID-type that is not an
# IPv4 or IPv6 address.
#
if (eid.count("'") == 2): continue
if (eid.count(".") != 3 and eid.find(":") == -1): continue
eid, ml = eid.split("/")
iid, eid, no_iid = parse_eid(eid)
if (v4v6 and eid.find(".") == -1): continue
if (v4v6 == False and eid.find(":") == -1): continue
rloc = entry["rlocs"][0]["rloc"]
nat = "translated-rloc" in entry["rlocs"][0]
if (match_iid == None): return(iid, eid, rloc, nat)
match = do_longest_match(match_eid, eid, int(ml))
if (match_iid == iid and match):
return(None, None, rloc, nat)
#endif
#endfor
return(None, None, None, None)
#enddef
#
# get_rtrs
#
# Look up 0.0.0.0/0 map-cache entry and get list of RTRs.
#
def get_rtrs(user, pw, http, port):
cmd = ("curl --silent --insecure -u {}:{} {}://localhost:{}/lisp/" + \
"api/data/map-cache").format(user, pw, http, port)
out = getoutput(cmd)
try:
jd = json.loads(out)
except:
return([])
#endtry
rtr_list = []
for entry in jd:
if ("group-prefix" in entry): continue
if (("eid-prefix" in entry) == False): continue
if (entry["eid-prefix"] != "0.0.0.0/0"): continue
for rloc in entry["rloc-set"]:
if (("rloc-name" in rloc) == False): continue
if (rloc["rloc-name"] != "RTR"): continue
if (("address" in rloc) == False): continue
rtr_list.append(rloc["address"])
#endfor
#endfor
return(rtr_list)
#enddef
#
# bold
#
# Print in bold font.
#
def bold(string):
return("\033[1m" + string + "\033[0m")
#enddef
#
# green
#
# Print hostnames in green.
#
def green(string):
return("\033[92m" + string + "\033[0m")
#enddef
#
# blue
#
# Print hostnames in blue.
#
def blue(string):
return("\033[94m" + string + "\033[0m")
#enddef
#
# red
#
# Print hostnames in red.
#
def red(string):
return("\033[91m" + string + "\033[0m")
#enddef
#
# red_bold
#
# Print hostnames in bold red.
#
def red_bold(string):
return("\033[91m" + bold(string) + "\033[0m")
#enddef
#
# check_multicast
#
# Exit program if destination EID is a multicast address. LISP-Trace and ltr
# do not support multicast yet.
#
def check_multicast(deid, v4v6):
if (v4v6):
maddr = int(deid.split(".")[0])
if (maddr < 224 or maddr >= 240): return
else:
if (deid[0:2].lower() != "ff"): return
#endif
print("Multicast EID not supported")
exit(1)
#enddef
#------------------------------------------------------------------------------
#
# Main entry point. Get command line arguments.
#
if ("-s" in sys.argv):
args_bad = len(sys.argv) != 4
else:
args_bad = len(sys.argv) != 2
#endif
if (args_bad):
print("Usage: python ltr.py [-s <source-eid>] <destination-EID | DNS-name>")
exit(1)
#endif
diid, deid, no_iid = parse_eid(sys.argv[-1])
if (diid == None):
print("<destinaton-eid> parse error")
exit(1)
#endif
v4v6 = deid.find(":") == -1
#
# Check if destination EID is a multicast address. LISP-Trace does not support
# multicast yet. Will exit program if multicast.
#
check_multicast(deid, v4v6)
#
# Get source-EID from command-line or get it from xTR configuration.
#
input_err = False
if ("-s" in sys.argv):
index = sys.argv.index("-s") + 1
siid, seid, no_iid = parse_eid(sys.argv[index])
if (siid == None):
print("-s <source-eid> parse error")
exit(1)
#endif
if (no_iid): siid = None
x, y, rloc, nat = get_db(siid, seid, user, pw, http, http_port, v4v6)
if (rloc == None):
print("[{}]{} not a local EID, maybe lispers.net API pw/port wrong". \
format(siid, seid))
input_err = True
#endif
else:
siid, seid, rloc, nat = get_db(None, None, user, pw, http, http_port, v4v6)
if (siid == None):
input_err = True
print("Could not find local EID, maybe lispers.net API pw/port wrong?")
#endif
#endif
if (input_err):
print("If root password configured, set env variable LISP_LTR_PW")
print("If LISP not started on port 8080, set env variable LISP_LTR_PORT")
exit(1)
#endif
#
# Verify IIDs of source and dest are the same.
#
diid = siid if diid == "0" else diid
if (diid != siid):
print("Instance-IDs must be the same for source and destination EIDs")
exit(1)
#endif
#
# Open send socket. Bind local EID to socket.
#
sock = socket.socket(socket.AF_INET6, socket.SOCK_DGRAM)
sock.bind(("0::0", 0))
sock.settimeout(3)
port = sock.getsockname()[1]
#
# Build empty LISP-Trace packet and send on overlay.
#
nonce, packet = build_packet(rloc, port)
#
# First send RLOC packet to RTR to get translated NAT address info to RTRs.
#
if (nat):
rtr_list = get_rtrs(user, pw, http, http_port)
for rtr in rtr_list:
print("Send NAT-traversal LISP-Trace to RTR {} ...".format(rtr))
sock.sendto(packet, ("::ffff:" + rtr, LISP_TRACE_PORT))
#endfor
#endif
s = bold(seid)
d = bold(deid)
print("Send round-trip LISP-Trace between EIDs {} and {} ...".format(s, d))
dest = deid if (deid.find(":") != -1) else "::ffff:" + deid
ts = time.time()
#
# Send Trace packet to EID.
#
try:
sock.sendto(packet, (dest, LISP_TRACE_PORT))
except socket.error as e:
print("sock.sendto() failed: {}".format(e))
exit(1)
#endtry
#
# Wait for 3 seconds.
#
try:
packet, source = sock.recvfrom(9000)
source = source[0].replace("::ffff:", "")
except socket.timeout:
exit(1)
except socket.error as e:
print("sock.recvfrom() failed, error: {}".format(e))
exit(1)
#endtry
rtt = round(time.time() - ts, 3)
print("Received reply from {}, rtt {} secs".format(source, rtt))
print("")
json_data = parse_packet(nonce, packet)
if (json_data == {}): exit(1)
#
# Display JSON and return.
#
display_packet(json_data)
sock.close()
exit(0)
#------------------------------------------------------------------------------