-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevaluate_variable.py
61 lines (45 loc) · 1.52 KB
/
evaluate_variable.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
#-------------------------------------------------------------------------------
# Name: module1
# Purpose:
#
# Author: vivi
#
# Created: 21-06-2023
# Copyright: (c) vivi 2023
# Licence: <your licence>
#-------------------------------------------------------------------------------
import subprocess
import re
import os
import sys
def gdb_print_address(variable, elf_file):
read, write = os.pipe()
cmd = "gdb -q " + elf_file
p = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE, stdout=subprocess.PIPE)
cmd = "printf \"0x%x\", {}".format(variable)
cmd += "\n"
cmd += "quit"
# os.write(write, cmd)
out,err = p.communicate(cmd)
return out
def evaluateSymbol(variable, elf_file, print_debug=False):
"""Evaluate ELF symbol address using gdb"""
if not os.path.isfile(elf_file):
print_err("While tring to evaluate symbol. The ELF file \"{}\" does not exist".format(elf_file))
sys.exit(1)
value = gdb_print_address(variable, elf_file).strip()
print(value)
try:
# Extract hexademical string
address = re.findall(r'0x[0-9A-Fa-f]+', value, re.I)[0]
except IndexError:
print("Unable to evaluate symbol \"{}\" - symbol not found!".format(variable))
sys.exit(1)
if print_debug:
print("Evaluating symbol {} : {}".format(variable, address))
return int(address, 16)
def main():
evaluateSymbol('&TEST_PARAMS.RETUNE', 'HARNESS.elf', print_debug=False)
pass
if __name__ == '__main__':
main()