#!/usr/bin/env bash ## ### # 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. ## #@title lldb remote (gdb) #@image-opt arg:1 #@desc #@desc

Launch with local lldb and connect to a stub (e.g., gdbserver)

#@desc

#@desc This will start lldb on the local system and then use it to connect to the remote system. #@desc For setup instructions, press F1. #@desc

#@desc #@menu-group lldb #@icon icon.debugger #@help lldb#remote #@arg :file "Image" "The target binary executable image (a copy on the local system)" #@env OPT_HOST:str="localhost" "Host" "The hostname of the target" #@env OPT_PORT:str="9999" "Port" "The host's listening port" #@env OPT_ARCH:str="" "Architecture" "Target architecture override" #@env OPT_LLDB_PATH:file="lldb" "lldb command" "The path to lldb on the local system. Omit the full path to resolve using the system PATH." . ../support/lldbsetuputils.sh pypathTrace=$(ghidra-module-pypath "Debug/Debugger-rmi-trace") pypathLldb=$(ghidra-module-pypath "Debug/Debugger-agent-lldb") export PYTHONPATH=$pypathLldb:$pypathTrace:$PYTHONPATH target_image="$1" function launch-lldb() { local -a args compute-lldb-remote-args "$target_image" "gdb-remote $OPT_HOST:$OPT_PORT" "$GHIDRA_TRACE_RMI_ADDR" "${args[@]}" } launch-lldb