mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2025-10-03 01:39:21 +02:00

GP-5407: from review GP-5407: rebase GP-5407: minor fix GP-5407: new launcherGP-5407: new launcherGP-5407: working (?) open traceGP-5407: modules sort of worksGP-5407: mostly sane (threads+modules)GP-5407: start on methodsGP-5407: refresh fixGP-5407: update on refreshGP-5407: need a better fix for displaysGP-5407: backwards methodsGP-5407: add actionGP-5407: add actionGP-5407: working back buttonGP-5407: experimentingGP-5407: events workingGP-5407: clearer optionsGP-5407: minorGP-5407: actions->methods (step_ext)GP-5407: iconsGP-5407: iconsGP-5407: icons pt.2GP-5407: fix for KMEM/UMEMGP-5407: deprecate pyttdGP-5407: deprecate pyttdGP-5407: launchers updateGP-5407: ??
73 lines
2.2 KiB
Python
73 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
|
|
|
|
|
|
home = os.getenv('GHIDRA_HOME')
|
|
|
|
if os.path.isdir(f'{home}\\ghidra\\.git'):
|
|
sys.path.append(
|
|
f'{home}\\ghidra\\Ghidra\\Debug\\Debugger-agent-dbgeng\\build\\pypkg\\src')
|
|
sys.path.append(
|
|
f'{home}\\ghidra\\Ghidra\\Debug\\Debugger-rmi-trace\\build\\pypkg\\src')
|
|
elif os.path.isdir(f'{home}\\.git'):
|
|
sys.path.append(
|
|
f'{home}\\Ghidra\\Debug\\Debugger-agent-dbgeng\\build\\pypkg\\src')
|
|
sys.path.append(
|
|
f'{home}\\Ghidra\\Debug\\Debugger-rmi-trace\\build\\pypkg\\src')
|
|
else:
|
|
sys.path.append(
|
|
f'{home}\\Ghidra\\Debug\\Debugger-agent-dbgeng\\pypkg\\src')
|
|
sys.path.append(f'{home}\\Ghidra\\Debug\\Debugger-rmi-trace\\pypkg\\src')
|
|
|
|
|
|
def main():
|
|
# Delay these imports until sys.path is patched
|
|
from ghidradbg import commands as cmd
|
|
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'))
|
|
target = os.getenv('OPT_TARGET_TRACE')
|
|
if target is None or target == "":
|
|
print("dbgeng requires a target trace - please try again.")
|
|
cmd.ghidra_trace_disconnect()
|
|
return
|
|
|
|
cmd.ghidra_trace_open(target, start_trace=False)
|
|
|
|
# TODO: HACK
|
|
try:
|
|
dbg.wait()
|
|
except KeyboardInterrupt as ki:
|
|
dbg.interrupt()
|
|
|
|
cmd.ghidra_trace_start(target)
|
|
cmd.ghidra_trace_sync_enable()
|
|
|
|
on_state_changed(DbgEng.DEBUG_CES_EXECUTION_STATUS, DbgEng.DEBUG_STATUS_BREAK)
|
|
cmd.repl()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|