mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 09:49:23 +02:00
75 lines
2.2 KiB
Python
75 lines
2.2 KiB
Python
## ###
|
|
# IP: GHIDRA
|
|
#
|
|
# 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.
|
|
##
|
|
|
|
import os
|
|
import sys
|
|
|
|
|
|
def append_paths():
|
|
sys.path.append(
|
|
f"{os.getenv('MODULE_Debugger_rmi_trace_HOME')}/data/support")
|
|
from gmodutils import ghidra_module_pypath
|
|
sys.path.append(ghidra_module_pypath("Debugger-rmi-trace"))
|
|
sys.path.append(ghidra_module_pypath())
|
|
|
|
|
|
def main():
|
|
append_paths()
|
|
# Delay these imports until sys.path is patched
|
|
from ghidradbg import commands as cmd
|
|
from ghidradbg import util
|
|
from pybag.dbgeng import core as DbgEng
|
|
from ghidradbg.hooks import on_state_changed
|
|
from ghidradbg.util import dbg
|
|
|
|
# So that the user can re-enter by typing repl()
|
|
global repl
|
|
repl = cmd.repl
|
|
|
|
cmd.ghidra_trace_connect(os.getenv('GHIDRA_TRACE_RMI_ADDR'))
|
|
type = os.getenv('OPT_TARGET_FLAGS')
|
|
flags = 0
|
|
if type == "Local":
|
|
flags = 1
|
|
if type == "EXDI":
|
|
print(f"ConfigFile: {os.getenv('EXDI_GDBSRV_XML_CONFIG_FILE')}")
|
|
print(f"RegMapFile: {os.getenv('EXDI_SYSTEM_REGISTERS_MAP_XML_FILE')}")
|
|
util.set_convenience_variable('output-radix', 16)
|
|
flags = 2
|
|
args = os.getenv('OPT_KCONNECT_STRING')
|
|
cmd.ghidra_trace_attach_kernel(args, flags, start_trace=False)
|
|
|
|
# TODO: HACK
|
|
try:
|
|
dbg.wait()
|
|
except KeyboardInterrupt as ki:
|
|
dbg.interrupt()
|
|
|
|
# cmd.ghidra_trace_start(os.getenv('OPT_TARGET_IMG'))
|
|
cmd.ghidra_trace_start("System")
|
|
cmd.ghidra_trace_sync_enable()
|
|
|
|
on_state_changed(DbgEng.DEBUG_CES_EXECUTION_STATUS,
|
|
DbgEng.DEBUG_STATUS_BREAK)
|
|
cmd.repl()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
try:
|
|
main()
|
|
except SystemExit as x:
|
|
if x.code != 0:
|
|
print(f"Exited with code {x.code}")
|