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
|
import itertools
import functools
class BIRDPrinter:
def __init__(self, val):
self.val = val
@classmethod
def lookup(cls, val):
t = val.type.strip_typedefs()
if t.code != cls.typeCode:
return None
if t.tag != cls.typeTag:
return None
return cls(val)
class BIRDFValPrinter(BIRDPrinter):
"Print BIRD\s struct f_val"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_val"
codemap = {
"T_INT": "i",
"T_BOOL": "i",
"T_PAIR": "i",
"T_QUAD": "i",
"T_ENUM_RTS": "i",
"T_ENUM_BGP_ORIGIN": "i",
"T_ENUM_SCOPE": "i",
"T_ENUM_RTC": "i",
"T_ENUM_RTD": "i",
"T_ENUM_ROA": "i",
"T_ENUM_NETTYPE": "i",
"T_ENUM_RA_PREFERENCE": "i",
"T_ENUM_AF": "i",
"T_IP": "ip",
"T_NET": "net",
"T_STRING": "s",
"T_PATH_MASK": "path_mask",
"T_PATH": "ad",
"T_CLIST": "ad",
"T_EC": "ec",
"T_ECLIST": "ad",
"T_LC": "lc",
"T_LCLIST": "ad",
"T_RD": "ec",
"T_PATH_MASK_ITEM": "pmi",
"T_SET": "t",
"T_PREFIX_SET": "ti",
}
def to_string(self):
code = self.val['type']
if code.type.code != gdb.TYPE_CODE_ENUM or code.type.tag != "f_type":
raise Exception("Strange 'type' element in f_val")
if str(code) == "T_VOID":
return "T_VOID"
else:
return "(%(c)s) %(v)s" % { "c": code, "v": self.val['val'][self.codemap[str(code)]] }
def display_hint(self):
return "map"
class BIRDFValStackPrinter(BIRDPrinter):
"Print BIRD's struct f_val_stack"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_val_stack"
def to_string(self):
cnt = self.val['cnt']
return ("Value stack (%(cnt)d):\n\t" % { "cnt": cnt }) + \
"\n\t".join([ (".val[%(n) 3d] = " % { "n": n}) + str(self.val['val'][n]) for n in range(cnt-1, -1, -1) ])
def display_hint(self):
return "map"
class BIRDFInstPrinter(BIRDPrinter):
"Print BIRD's struct f_inst"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_inst"
def to_string(self):
code = self.val['fi_code']
if str(code) == "FI_NOP":
return str(code) + ": " + str(self.val.cast(gdb.lookup_type("const char [%(siz)d]" % { "siz": self.val.type.sizeof })))
return "%(code)s:\t%(lineno) 6dL\t%(size)6dS\tnext = %(next)s: .i_%(code)s = %(union)s" % {
"code": str(code),
"lineno": self.val['lineno'],
"size": self.val['size'],
"next": str(self.val['next']),
"union": str(self.val['i_' + str(code)])
}
# def children(self): # children iterator
def display_hint(self):
return "map"
class BIRDFLineItemPrinter(BIRDPrinter):
"Print BIRD's struct f_line_item"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_line_item"
def to_string(self):
code = self.val['fi_code']
if str(code) == "FI_NOP":
return str(code) + ": " + str(self.val.cast(gdb.lookup_type("const char [%(siz)d]" % { "siz": self.val.type.sizeof })))
return "%(code)s:\t%(lineno) 6dL\t%(flags)2dF: .i_%(code)s = %(union)s" % {
"code": str(code),
"lineno": self.val['lineno'],
"flags": self.val['flags'],
"union": str(self.val['i_' + str(code)])
}
class BIRDFLinePrinter(BIRDPrinter):
"Print BIRD's struct f_line"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_line"
def to_string(self):
cnt = self.val['len']
return ("FLine (%(cnt)d, args=%(args)d): " % { "cnt": cnt, "args" : self.val['args'] } + \
", ".join([
".items[%(n) 3d] = %(code)s" % {
"n": n,
"code": str(self.val['items'][n]['fi_code']),
} if n % 8 == 0 else str(self.val['items'][n]['fi_code']) for n in range(cnt)]))
class BIRDFExecStackPrinter(BIRDPrinter):
"Print BIRD's struct f_exec_stack"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "f_exec_stack"
def to_string(self):
cnt = self.val['cnt']
return ("Exec stack (%(cnt)d):\n\t" % { "cnt": cnt }) + \
"\n\t".join([ ".item[%(n) 3d] = %(retflag)d V%(ventry) 3d P%(pos) 4d %(line)s" % {
"retflag": self.val['item'][n]['emask'],
"ventry": self.val['item'][n]['ventry'],
"pos": self.val['item'][n]['pos'],
"line": str(self.val['item'][n]['line'].dereference()),
"n": n
} for n in range(cnt-1, -1, -1) ])
class BIRD:
def skip_back(t, i, v):
if isinstance(t, str):
t = gdb.lookup_type(t)
elif isinstance(t, gdb.Value):
t = gdb.lookup_type(t.string())
elif not isinstance(t, gdb.Type):
raise Exception(f"First argument of skip_back(t, i, v) must be a type, got {type(t)}")
t = t.strip_typedefs()
nullptr = gdb.Value(0).cast(t.pointer())
if isinstance(i, gdb.Value):
i = i.string()
elif not isinstance(i, str):
raise Exception(f"Second argument of skip_back(t, i, v) must be a item name, got {type(i)}")
if not isinstance(v, gdb.Value):
raise Exception(f"Third argument of skip_back(t, i, v) must be a value, got {type(v)}")
if v.type.code != gdb.TYPE_CODE_PTR and v.type.code != gdb.TYPE_CODE_REF:
raise Exception(f"Third argument of skip_back(t, i, v) must be a pointer, is {v.type} ({v.type.code})")
if v.type.target().strip_typedefs() != nullptr[i].type:
raise Exception(f"Third argument of skip_back(t, i, v) points to type {v.type.target().strip_typedefs()}, should be {nullptr[i].type}")
uintptr_t = gdb.lookup_type("uintptr_t")
taddr = v.dereference().address.cast(uintptr_t) - nullptr[i].address.cast(uintptr_t)
return gdb.Value(taddr).cast(t.pointer())
class skip_back_gdb(gdb.Function):
"Given address of a structure item, returns address of the structure, as the SKIP_BACK macro does"
def __init__(self):
gdb.Function.__init__(self, "SKIP_BACK")
def invoke(self, t, i, v):
return BIRD.skip_back(t, i, v)
BIRD.skip_back_gdb()
class BIRDList:
def __init__(self, val):
ltype = val.type.strip_typedefs()
if ltype.code != gdb.TYPE_CODE_UNION or ltype.tag != "list":
raise Exception(f"Not a list, is type {ltype}")
self.head = val["head"]
self.tail_node = val["tail_node"]
if str(self.head.address) == '0x0':
raise Exception("List head is NULL")
if str(self.tail_node["prev"].address) == '0x0':
raise Exception("List tail is NULL")
def __iter__(self):
cur = self.head
while cur.dereference() != self.tail_node:
yield cur
cur = cur.dereference()["next"]
def __len__(self):
return sum([1 for _ in self])
def __getitem__(self, key):
for item in itertools.islice(self, key):
return item
raise KeyError("Not enough elements in list")
class BIRDListLength(gdb.Function):
"""Returns length of the list, as in
print $list_length(routing_tables)"""
def __init__(self):
super(BIRDListLength, self).__init__("list_length")
def invoke(self, l):
return len(BIRDList(l))
BIRDListLength()
class BIRDListItem(gdb.Function):
"""Returns n-th item of the list."""
def __init__(self):
super(BIRDListItem, self).__init__("list_item")
def invoke(self, l, n, t=None, item="n"):
if t is None:
return BIRDList(l)[n]
else:
return BIRD.skip_back(t, item, BIRDList(l)[n])
BIRDListItem()
class BIRDResourceSize():
def __init__(self, netto, overhead, free):
self.netto = netto
self.overhead = overhead
self.free = free
def __str__(self):
ns = str(self.netto)
os = str(self.overhead)
fs = str(self.free)
return "{: >12s} | {: >12s} | {: >12s}".format(ns, os, fs)
def __add__(self, val):
return BIRDResourceSize(self.netto + val.netto, self.overhead + val.overhead, self.free + val.free)
class BIRDResource():
def __init__(self, val):
self.val = val
def __str__(self):
return f"Item {self.val.address} of class \"{self.val['class']['name'].string()}\""
def memsize(self):
if str(self.val["class"]["memsize"]) == '0x0':
size = self.val["class"]["size"]
ressize = gdb.lookup_type("struct resource").sizeof
return BIRDResourceSize(size - ressize, ressize, 0)
else:
raise Exception(f"Resource class {self.val['class']['name']} with defined memsize() not known by Python")
def parse(self):
pass
class BIRDMBResource(BIRDResource):
def __init__(self, val):
self.mbtype = gdb.lookup_type("struct mblock")
self.val = val.cast(self.mbtype)
def memsize(self):
return BIRDResourceSize(self.val["size"], 8 + self.mbtype.sizeof, 0)
def __str__(self):
return f"Standalone memory block {self.val.address} of size {self.val['size']}, data at {self.val['data'].address}"
class BIRDLinPoolResource(BIRDResource):
def __init__(self, val):
self.lptype = gdb.lookup_type("struct linpool")
self.val = val.cast(self.lptype)
self.info = None
self.std = self.ChunkList(self.val["first"])
self.large = self.ChunkList(self.val["first_large"])
class ChunkList:
def __init__(self, val):
self.val = val
def __iter__(self):
chunk = self.val
while str(chunk) != 0x0:
yield chunk
chunk = chunk.dereference()["next"]
def __len__(self):
return sum([1 for _ in self])
def parse(self):
self.info = {
"std_chunks": len(self.std),
"large_chunks": len(self.large),
}
def memsize(self):
if self.info is None:
self.parse()
overhead = (8 - 8*self.val["use_pages"]) + gdb.lookup_type("struct lp_chunk").sizeof
return BIRDResourceSize(
self.val["total"] + self.val["total_large"],
(self.info["std_chunks"] + self.info["large_chunks"]) * overhead,
0)
def __str__(self):
if self.info is None:
self.parse()
return f"Linpool {self.val.address} with {self.info['std_chunks']} standard chunks of size {self.val['chunk_size']} and {self.info['large_chunks']} large chunks"
class BIRDSlabResource(BIRDResource):
def __init__(self, val):
self.slabtype = gdb.lookup_type("struct slab")
self.val = val.cast(self.slabtype)
self.info = None
def count_heads(self, which):
self.hcnt = 0
self.used = 0
for item in BIRDList(self.val[which + "_heads"]):
self.hcnt += 1
self.used += item.dereference().cast(self.slheadtype)["num_full"]
self.info[which + "_heads"] = self.hcnt
self.info[which + "_used"] = self.used
return (self.hcnt, self.used)
def parse(self):
self.page_size = gdb.lookup_symbol("page_size")[0].value()
self.slheadtype = gdb.lookup_type("struct sl_head")
self.info = {}
self.count_heads("empty")
self.count_heads("partial")
self.count_heads("full")
def memsize(self):
if self.info is None:
self.parse()
total_used = self.info["empty_used"] + self.info["partial_used"] + self.info["full_used"]
total_heads = self.info["empty_heads"] + self.info["partial_heads"] + self.info["full_heads"]
eff_size = total_used * self.val["obj_size"]
free_size = self.info["empty_heads"] * self.page_size
total_size = total_heads * self.page_size + self.slabtype.sizeof
return BIRDResourceSize( eff_size, total_size - free_size - eff_size, free_size)
def __str__(self):
if self.info is None:
self.parse()
return f"Slab {self.val.address} " + ", ".join([
f"{self.info[x + '_heads']} {x} heads" for x in [ "empty", "partial", "full" ]]) + \
f", {self.val['objs_per_slab']} objects of size {self.val['obj_size']} per head"
class BIRDIOLoopResource(BIRDResource):
def __init__(self, val):
self.iolooptype = gdb.lookup_type("struct birdloop")
self.val = val.cast(self.iolooptype)
self.pages = self.val["pages"]
self.page_size = gdb.lookup_symbol("page_size")[0].value()
def memsize(self):
return BIRDResourceSize(0, self.iolooptype.sizeof, self.pages['cnt'] * self.page_size)
def __str__(self):
return f"IO Loop {self.val.address} containing {self.pages['cnt']} free pages (min {self.pages['min']} max {self.pages['max']}), cleanup event {self.pages['cleanup'].dereference().address}: " + \
", ".join([ str(p) for p in BIRDList(self.pages["list"])])
class BIRDPoolResource(BIRDResource):
def __init__(self, val):
self.pooltype = gdb.lookup_type("struct pool")
self.resptrtype = gdb.lookup_type("struct resource").pointer()
self.val = val.cast(self.pooltype)
self.inside = BIRDList(self.val["inside"])
def __iter__(self):
for val in self.inside:
yield BIRDNewResource(val.cast(self.resptrtype).dereference())
def __len__(self):
return len(self.inside)
def memsize(self):
sum = BIRDResourceSize(0, self.pooltype.sizeof, 0)
# for i in self.items:
# sum += i.memsize()
return sum
def __str__(self):
# for i in self.items:
# print(i)
return f"Resource pool {self.val.address} \"{self.val['name'].string()}\" containing {len(self)} items"
BIRDResourceMap = {
"mbl_memsize": BIRDMBResource,
"pool_memsize": BIRDPoolResource,
"lp_memsize": BIRDLinPoolResource,
"slab_memsize": BIRDSlabResource,
"birdloop_memsize": BIRDIOLoopResource,
}
def BIRDNewResource(res):
cms = res["class"].dereference()["memsize"]
for cx in BIRDResourceMap:
if cms == gdb.lookup_symbol(cx)[0].value():
return BIRDResourceMap[cx](res)
return BIRDResource(res)
class BIRDResourcePrinter(BIRDPrinter):
"Print BIRD's resource"
typeCode = gdb.TYPE_CODE_STRUCT
typeTag = "resource"
def __init__(self, val):
super(BIRDResourcePrinter, self).__init__(val)
self.resource = BIRDNewResource(val)
self.resourcetype = gdb.lookup_type("struct resource")
if type(self.resource) == BIRDPoolResource:
self.children = self.pool_children
def pool_children(self):
return iter([ ("\n", i.val.cast(self.resourcetype)) for i in self.resource ])
def to_string(self):
return f"[ {str(self.resource.memsize())} ] {str(self.resource)}"
def register_printers(objfile):
objfile.pretty_printers.append(BIRDFInstPrinter.lookup)
objfile.pretty_printers.append(BIRDFValPrinter.lookup)
objfile.pretty_printers.append(BIRDFValStackPrinter.lookup)
objfile.pretty_printers.append(BIRDFLineItemPrinter.lookup)
objfile.pretty_printers.append(BIRDFLinePrinter.lookup)
objfile.pretty_printers.append(BIRDFExecStackPrinter.lookup)
objfile.pretty_printers.append(BIRDResourcePrinter.lookup)
register_printers(gdb.current_objfile())
print("BIRD pretty printers loaded OK.")
|