forked from Fraunhofer-AISEC/archie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
hdf5logger.py
372 lines (327 loc) · 11.7 KB
/
hdf5logger.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
import tables
import prctl
import numpy
import time
import logging
logger = logging.getLogger(__name__)
# Tables for storing the elements from queue
class translation_block_table(tables.IsDescription):
identity = tables.UInt64Col()
size = tables.UInt64Col()
ins_count = tables.UInt64Col()
num_exec = tables.UInt64Col()
assembler = tables.StringCol(1000)
class translation_block_faulted_table(tables.IsDescription):
faultaddress = tables.UInt64Col()
assembler = tables.StringCol(1000)
class translation_block_exec_table(tables.IsDescription):
tb = tables.UInt64Col()
pos = tables.UInt64Col()
class memory_information_table(tables.IsDescription):
insaddr = tables.Int64Col()
tbid = tables.UInt64Col()
size = tables.UInt64Col()
address = tables.Int64Col()
direction = tables.UInt8Col()
counter = tables.UInt64Col()
class fault_table(tables.IsDescription):
trigger_address = tables.UInt64Col()
trigger_hitcounter = tables.UInt64Col()
fault_address = tables.UInt64Col()
fault_type = tables.UInt8Col()
fault_model = tables.UInt8Col()
fault_lifespan = tables.UInt64Col()
fault_mask = tables.UInt64Col()
fault_num_bytes = tables.UInt8Col()
class memory_dump_table(tables.IsDescription):
address = tables.UInt64Col()
length = tables.UInt64Col()
numdumps = tables.UInt64Col()
class arm_registers_table(tables.IsDescription):
pc = tables.UInt64Col()
tbcounter = tables.UInt64Col()
r0 = tables.UInt64Col()
r1 = tables.UInt64Col()
r2 = tables.UInt64Col()
r3 = tables.UInt64Col()
r4 = tables.UInt64Col()
r5 = tables.UInt64Col()
r6 = tables.UInt64Col()
r7 = tables.UInt64Col()
r8 = tables.UInt64Col()
r9 = tables.UInt64Col()
r10 = tables.UInt64Col()
r11 = tables.UInt64Col()
r12 = tables.UInt64Col()
r13 = tables.UInt64Col()
r14 = tables.UInt64Col()
r15 = tables.UInt64Col()
xpsr = tables.UInt64Col()
class riscv_registers_table(tables.IsDescription):
pc = tables.UInt64Col()
tbcounter = tables.UInt64Col()
x0 = tables.UInt64Col()
x1 = tables.UInt64Col()
x2 = tables.UInt64Col()
x3 = tables.UInt64Col()
x4 = tables.UInt64Col()
x5 = tables.UInt64Col()
x6 = tables.UInt64Col()
x7 = tables.UInt64Col()
x8 = tables.UInt64Col()
x9 = tables.UInt64Col()
x10 = tables.UInt64Col()
x11 = tables.UInt64Col()
x12 = tables.UInt64Col()
x13 = tables.UInt64Col()
x14 = tables.UInt64Col()
x15 = tables.UInt64Col()
x16 = tables.UInt64Col()
x17 = tables.UInt64Col()
x18 = tables.UInt64Col()
x19 = tables.UInt64Col()
x20 = tables.UInt64Col()
x22 = tables.UInt64Col()
x23 = tables.UInt64Col()
x24 = tables.UInt64Col()
x25 = tables.UInt64Col()
x26 = tables.UInt64Col()
x27 = tables.UInt64Col()
x28 = tables.UInt64Col()
x29 = tables.UInt64Col()
x30 = tables.UInt64Col()
x31 = tables.UInt64Col()
x32 = tables.UInt64Col()
binary_atom = tables.UInt8Atom()
def process_tb_faulted(f, group, tbfaulted_list, myfilter):
tbfaultedtable = f.create_table(
group,
"tbfaulted",
translation_block_faulted_table,
"Table contains the faulted assembly instructions",
expectedrows=(len(tbfaulted_list)),
filters=myfilter,
)
tbfaultedrow = tbfaultedtable.row
for tbfaulted in tbfaulted_list:
tbfaultedrow["faultaddress"] = tbfaulted["faultaddress"]
tbfaultedrow["assembler"] = tbfaulted["assembly"]
tbfaultedrow.append()
tbfaultedtable.flush()
tbfaultedtable.close()
def process_riscv_registers(f, group, riscvregister_list, myfilter):
riscvregistertable = f.create_table(
group,
"riscvregisters",
riscv_registers_table,
"Table contains riscv registers at specific points.",
expectedrows=(len(riscvregister_list)),
filters=myfilter,
)
riscvregsrow = riscvregistertable.row
for regs in riscvregister_list:
riscvregsrow["pc"] = regs["pc"]
riscvregsrow["tbcounter"] = regs["tbcounter"]
for i in range(0, 33):
riscvregsrow[f"x{i}"] = regs[f"x{i}"]
riscvregsrow.append()
riscvregistertable.flush()
riscvregistertable.close()
def process_arm_registers(f, group, armregisters_list, myfilter):
armregisterstable = f.create_table(
group,
"armregisters",
arm_registers_table,
"Table contains arm registers at specific points.",
expectedrows=(len(armregisters_list)),
filters=myfilter,
)
armregsrow = armregisterstable.row
for regs in armregisters_list:
armregsrow["pc"] = regs["pc"]
armregsrow["tbcounter"] = regs["tbcounter"]
for i in range(0, 16):
armregsrow[f"r{i}"] = regs[f"r{i}"]
armregsrow["xpsr"] = regs["xpsr"]
armregsrow.append()
armregisterstable.flush()
armregisterstable.close()
def process_dumps(f, group, memdumplist, myfilter):
memdumpsgroup = f.create_group(group, "memdumps")
memdumpstable = f.create_table(
memdumpsgroup,
"memdumps",
memory_dump_table,
"Table containing description about the dumps, that are saved as carry.",
expectedrows=(len(memdumplist)),
filters=myfilter,
)
memdumpsrow = memdumpstable.row
for memdump in memdumplist:
name = "location_{:08x}_{:d}_{:d}".format(
memdump["address"], memdump["len"], memdump["numdumps"]
)
if name not in memdumpsgroup._v_children:
memdumpsrow["address"] = memdump["address"]
memdumpsrow["length"] = memdump["len"]
memdumpsrow["numdumps"] = memdump["numdumps"]
# shape = (len(memdump['dumps']), memdump['len'])
dumpnarray = numpy.array(memdump["dumps"])
dumparray = f.create_carray(
memdumpsgroup, name, binary_atom, dumpnarray.shape, filters=myfilter
)
dumparray[:] = dumpnarray
memdumpsrow.append()
memdumpstable.flush()
memdumpstable.close()
def process_faults(f, group, faultlist, endpoint, myfilter):
# create table
faulttable = f.create_table(
group,
"faults",
fault_table,
"Fault list table that contains the fault configuration used for this experiment",
expectedrows=(len(faultlist)),
filters=myfilter,
)
faulttable.attrs.endpoint = endpoint
faultrow = faulttable.row
for fault in faultlist:
faultrow["trigger_address"] = fault.trigger.address
faultrow["trigger_hitcounter"] = fault.trigger.hitcounter
faultrow["fault_address"] = fault.address
faultrow["fault_type"] = fault.type
faultrow["fault_model"] = fault.model
faultrow["fault_lifespan"] = fault.lifespan
faultrow["fault_mask"] = fault.mask
faultrow["fault_num_bytes"] = fault.num_bytes
faultrow.append()
faulttable.flush()
faulttable.close()
def process_tbinfo(f, group, tbinfolist, myfilter):
tbinfotable = f.create_table(
group,
"tbinfo",
translation_block_table,
"Translation block table containing all information collected by qemu",
expectedrows=(len(tbinfolist)),
filters=myfilter,
)
tbinforow = tbinfotable.row
for tbinfo in tbinfolist:
tbinforow["identity"] = tbinfo["id"]
tbinforow["size"] = tbinfo["size"]
tbinforow["ins_count"] = tbinfo["ins_count"]
tbinforow["num_exec"] = tbinfo["num_exec"]
tbinforow["assembler"] = tbinfo["assembler"]
tbinforow.append()
tbinfotable.flush()
tbinfotable.close()
def process_tbexec(f, group, tbexeclist, myfilter):
tbexectable = f.create_table(
group,
"tbexeclist",
translation_block_exec_table,
"Translation block execution list table",
expectedrows=(len(tbexeclist)),
filters=myfilter,
)
tbexecrow = tbexectable.row
for tbexec in tbexeclist:
tbexecrow["tb"] = tbexec["tb"]
tbexecrow["pos"] = tbexec["pos"]
tbexecrow.append()
tbexectable.flush()
tbexectable.close()
def process_memory_info(f, group, meminfolist, myfilter):
meminfotable = f.create_table(
group,
"meminfo",
memory_information_table,
"",
expectedrows=(len(meminfolist)),
filters=myfilter,
)
meminforow = meminfotable.row
for meminfo in meminfolist:
meminforow["insaddr"] = meminfo["ins"]
meminforow["tbid"] = meminfo["tbid"]
meminforow["size"] = meminfo["size"]
meminforow["address"] = meminfo["address"]
meminforow["direction"] = meminfo["direction"]
meminforow["counter"] = meminfo["counter"]
meminforow.append()
meminfotable.flush()
meminfotable.close()
def hdf5collector(
hdf5path, mode, queue_output, num_exp, compressionlevel, logger_postprocess=None
):
prctl.set_name("logger")
prctl.set_proctitle("logger")
f = tables.open_file(hdf5path, mode)
if "fault" in f.root:
fault_group = f.root.fault
else:
fault_group = f.create_group("/", "fault", "Group containing fault results")
myfilter = tables.Filters(complevel=compressionlevel, complib="zlib")
t0 = time.time()
tmp = "{}".format(num_exp)
groupname = "experiment{:0" + "{}".format(len(tmp)) + "d}"
while num_exp > 0:
# readout queue and get next output from qemu. Will block
exp = queue_output.get()
t1 = time.time()
logger.info(
"got exp {}, {} still need to be performed. Took {}s. Elements in queu: {}".format(
exp["index"], num_exp, t1 - t0, queue_output.qsize()
)
)
t0 = t1
# create experiment group in file
if exp["index"] >= 0:
index = exp["index"]
while groupname.format(index) in fault_group:
index = index + 1
exp_group = f.create_group(fault_group, groupname.format(index))
if exp["index"] != index:
logger.warning(
"The index provided was already used. found new one: {}".format(
index
)
)
num_exp = num_exp - 1
elif exp["index"] == -2:
if "Pregoldenrun" in f.root:
raise ValueError("Pregoldenrun already exists!")
exp_group = f.create_group(
"/",
"Pregoldenrun",
"Group containing all information regarding firmware running before start point is reached",
)
elif exp["index"] == -1:
if "Goldenrun" in f.root:
raise ValueError("Goldenrun already exists!")
exp_group = f.create_group(
"/", "Goldenrun", "Group containing all information about goldenrun"
)
else:
raise ValueError("Index is not supposed to be negative")
datasets = []
datasets.append((process_tbinfo, "tbinfo"))
datasets.append((process_tbexec, "tbexec"))
datasets.append((process_memory_info, "meminfo"))
datasets.append((process_dumps, "memdumplist"))
datasets.append((process_arm_registers, "armregisters"))
datasets.append((process_riscv_registers, "riscvregisters"))
datasets.append((process_tb_faulted, "tbfaulted"))
for (fn_ptr, keyword) in datasets:
if keyword not in exp:
continue
fn_ptr(f, exp_group, exp[keyword], myfilter)
# safe fault config
process_faults(f, exp_group, exp["faultlist"], exp["endpoint"], myfilter)
if callable(logger_postprocess):
logger_postprocess(f, exp_group, exp, myfilter)
del exp
f.close()
logger.info("Data Logging done")