-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlisp-sc.py
293 lines (257 loc) · 7.88 KB
/
lisp-sc.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
#!/usr/bin/env 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.
#
# -----------------------------------------------------------------------------
#
# lisp-sc.py
#
# Usage: python -O lisp-sc.py [<user:pw@host:port>] [<eid>] | [<site>]
# python -O lisp-sc.py [<host:port>] [<eid>]
# python -O lisp-sc.py [<host>] [<eid>]
#
# Dispay the LISP registered mappings in the map-server a command that
# displays the table as it looks like on the web interface.
#
#------------------------------------------------------------------------------
from __future__ import print_function
from future import standard_library
standard_library.install_aliases()
from subprocess import getoutput
import sys
import json
#------------------------------------------------------------------------------
def green(string):
return("\033[92m" + string + "\033[0m")
#enddef
def dark_green(string):
return("\033[32;1m" + string + "\033[0m")
#enddef
def red(string):
return("\033[91m" + string + "\033[0m")
#enddef
def blue(string):
return("\033[94m" + string + "\033[0m")
#enddef
def unblue(string):
s = string.replace("\033[94m", "")
s = s.replace("\033[0m", "")
return(s)
#enddef
def bold(string):
return("\033[1m" + string + "\033[0m")
#enddef
def unbold(string):
s = string.replace("\033[1m", "")
s = s.replace("\033[0m", "")
return(s)
#enddef
def uncolor(string):
s = unblue(string)
s = unbold(s)
return(s)
#enddef
def timed_out(ts):
if (ts.find("days") != -1): return(bold(red(ts)))
h, m, s = ts.split(":")
if (int(h) != 0): return(bold(red(ts)))
if (int(m) >= 3): return(bold(red(ts)))
return(ts)
#enddef
def color_rles(rles):
rles = uncolor(rles)
rles = rles.split(",")
rle = ""
for entry in rles:
i = entry.find("(")
rle += red(entry[0:i])
j = entry.find(")")
rn = blue(entry[i+1:j])
rle += "({}),".format(rn)
#endfor
rle = rle[0:-1]
return(rle)
#enddef
#------------------------------------------------------------------------------
if ("help" in sys.argv):
print("Usage: ./sc [<user:pw@host:port> | <host:port> | <host> | help]")
exit(0)
#endif
user = "root"
pw = ""
host = "localhost"
port = "8080"
#
# Get input from comamnd line, if any. Check site name supplied. That is not
# the URL parameter or an IPv4 or IPv6 EID.
#
site_input = None
if (len(sys.argv) == 3):
site_input = sys.argv[-1]
if (site_input.count(".") == 3 or site_input.count(":") == 2):
site_input = None
#endif
if (site_input != None): sys.argv = sys.argv[0:-1]
#endif
#
# First check if EID supplied.
#
eid_input = None
if (len(sys.argv) == 3):
eid_input = sys.argv[-1]
for e in eid_input.split("."):
if (e.isdigit()): continue
eid_input = None
break
#endfor
if (eid_input == None):
eid_input = sys.argv[-1]
for e in eid_input.split(":"):
if (e == ""): continue
try:
int(e, 16)
continue
except:
eid_input = None
break
#endtry
#endfor
#endif
if (eid_input != None): sys.argv = sys.argv[0:-1]
#endif
#
# Second get hostname and port number to query.
#
if (len(sys.argv) == 2):
args = sys.argv[1]
args = args.split("@")
if (len(args) == 2):
userpw = args[0].split(":")
if (userpw[0] != ""): user = userpw[0]
if (len(userpw)== 2 and userpw[1] != ""): pw = userpw[1]
args = args[1]
else:
args = args[0]
#endif
hostport = args.split(":")
if (hostport[0] != ""): host = hostport[0]
if (len(hostport) == 2 and hostport[1] != ""): port = hostport[1]
#endif
curl = ("curl --silent --insecure -u {}:{} https://{}:{}/lisp/" + \
"api/data/site-cache").format(user, pw, host, port)
curl_sum = ("curl --silent --insecure -u {}:{} https://{}:{}/lisp/" + \
"api/data/site-cache-summary").format(user, pw, host, port)
ver = ("curl --silent --insecure -u {}:{} https://{}:{}/lisp/" + \
"api/data/system").format(user, pw, host, port)
#print(curl)
host = bold("{}:{}".format(host, port))
output = getoutput(curl)
if (output == None or output == ""):
print("No curl output returned on {}".format(host))
exit(1)
#endif
if (output.find("not-auth") != -1):
print("Authentication failed on {}".format(host))
exit(1)
#endif
try:
site_cache = json.loads(output)
except:
print("Curl output did not return JSON")
exit(1)
#endtry
#
# Get site summary info to title each EID set.
#
output = getoutput(curl_sum)
sc_summary = json.loads(output)
sites = {}
for sc in sc_summary:
c = sc["registrations"][0]["count"]
r = sc["registrations"][0]["registered-count"]
sites[sc["site"]] = (c, r)
#endfor
#
# Get hostname from version info query.
#
output = getoutput(ver)
if (output == None or output == ""):
print("Could not get hostname on {}".format(host))
exit(1)
#endif
ver = json.loads(output)
hostname = blue(ver["hostname"])
print("\nLISP Map-Server Site-Cache for {}, hostname {}, release {}\n". \
format(host, hostname, ver["lisp-version"]))
if (len(site_cache) == 0):
print("Site-cache is empty")
exit(0)
#endif
found_eid = False
for site in sites:
if (site_input and site_input != site): continue
s = bold(site)
c = sites[site][0]
r = sites[site][1]
r = bold(str(r))
print("Site {}, {} EID entries, {} EIDs registered:".format(s, c, r))
for sc in site_cache:
if (sc["registered-rlocs"] == []): continue
if (sc["site-name"] != site): continue
eid = sc["eid-prefix"]
group = sc["group-prefix"] if "group-prefix" in sc else ""
if (eid_input and (eid + group).find(eid_input) == -1): continue
found_eid = True
if ("group-prefix" in sc):
eid = "({}, {})".format(eid, sc["group-prefix"])
#endif
eid = green("[{}]{}".format(sc["instance-id"], eid))
eid = " EID {},".format(eid)
ttl = sc["last-registered"]
yn = green("registered") if sc["registered"] == "yes" else \
red("registered")
uptime = "uptime {}, {}".format(sc["first-registered"], yn)
lr = timed_out(sc["last-registered"])
uptime += " since {}".format(lr)
print(eid, uptime)
#
# For RLEs, put RLOC address in red and RLOC name in blue.
#
for r in sc["registered-rlocs"]:
if ("rle" in r):
rloc = "RLEs: " + color_rles(r["rle"])
else:
rloc = "RLOC: " + red(r["address"])
#endif
up = r["upriority"]; uw = r["uweight"]
mp = r["mpriority"]; mw = r["mweight"]
p = "up/uw {}/{} mp/mw {}/{}".format(up, uw, mp, mw)
rn = ", " + blue(r["rloc-name"]) if "rloc-name" in r else ""
rloc_line = " {}, uptime {}, {}{}".format(rloc, r["uptime"], p,
rn)
print(rloc_line)
#endfor
print()
#endfor
#endfor
#
# If EID specified but not found, return one line message.
#
if (eid_input and found_eid == False):
print("EID {} not in site-cache".format(green(eid_input)))
#endif
exit(0)
#------------------------------------------------------------------------------