From d8f4339d7b0f4bd2ec2c898cd3bb7ccc57fb33f8 Mon Sep 17 00:00:00 2001 From: Strongleong Date: Sat, 4 Feb 2023 11:17:58 +0000 Subject: [PATCH 1/2] Added script for dumping C callbacks --- tools/callbacks_to_md.py | 58 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 58 insertions(+) create mode 100644 tools/callbacks_to_md.py diff --git a/tools/callbacks_to_md.py b/tools/callbacks_to_md.py new file mode 100644 index 0000000..399811e --- /dev/null +++ b/tools/callbacks_to_md.py @@ -0,0 +1,58 @@ +from ghidra.app.decompiler import DecompileOptions +from ghidra.app.decompiler import DecompInterface +from ghidra.util.task import ConsoleTaskMonitor + +TARGET_FUNC = "add_callback" + +def xref_params(target_func): + target_addr = 0 + callers = [] + funcs = getGlobalFunctions(target_func) + for func in funcs: + if func.getName() == target_func: + target_addr = func.getEntryPoint() + references = getReferencesTo(target_addr) + for xref in references: + call_addr = xref.getFromAddress() + caller = getFunctionContaining(call_addr) + callers.append(caller) + break + callers = list(set(callers)) + options = DecompileOptions() + monitor = ConsoleTaskMonitor() + ifc = DecompInterface() + ifc.setOptions(options) + ifc.openProgram(currentProgram) + with open("callbacks.md", "w") as file: + res = "|Callback setup address|Callback name|Callback funcion|Callback address|" + print(res) + file.write(res + "\n") + res = "|-----|----|----|--------|" + print(res) + file.write(res + "\n") + for caller in callers: + callback_setup_addr = caller.getEntryPoint() + res = ifc.decompileFunction(caller, 60, monitor) + code = str(res.getDecompiledFunction().getC()) + code = code.split(target_func)[1] + code = code.split(';')[0] + code = code.strip() + code = code.split(',') + callback_name = code[1].strip() + callback_func = code[2].strip()[:-1].strip().replace('_', '.') + res = ifc.decompileFunction(caller, 60, monitor) + hf = res.getHighFunction() + opiter = hf.getPcodeOps() + callback_addr = "not found" + while opiter.hasNext(): + op = opiter.next() + mnemonic = op.getMnemonic() + if mnemonic == "CALL": + core_func = op.getInput(3) + callback_addr = toAddr(core_func.getDef().getInput(1).getOffset()) + res = "|`{}`|{}|`{}`|`{}`|".format(callback_setup_addr, callback_name, callback_func, callback_addr) + print(res) + file.write(res + "\n") + + +xref_params(TARGET_FUNC) \ No newline at end of file -- 2.34.1 From 685e0b9e53e2ea2770a082fd034c57ed38b14e80 Mon Sep 17 00:00:00 2001 From: Strongleong Date: Sat, 4 Feb 2023 11:22:01 +0000 Subject: [PATCH 2/2] Moved `tools/callbacks_to_md.py` to `tools/ghidra_scripts/callbacks_to_md.py` --- tools/{ => ghidra_scripts}/callbacks_to_md.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename tools/{ => ghidra_scripts}/callbacks_to_md.py (100%) diff --git a/tools/callbacks_to_md.py b/tools/ghidra_scripts/callbacks_to_md.py similarity index 100% rename from tools/callbacks_to_md.py rename to tools/ghidra_scripts/callbacks_to_md.py -- 2.34.1