mirror of
https://github.com/NationalSecurityAgency/ghidra.git
synced 2026-04-24 03:00:42 -04:00
43 lines
2.3 KiB
Bash
Executable File
43 lines
2.3 KiB
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
#----------------------------------------------------------------------
|
|
# Ghidra Headless Analyzer launch (see analyzeHeadlessREADME.html)
|
|
#----------------------------------------------------------------------
|
|
|
|
# Optionally override the default Java heap memory, which is typically 1/4 of system RAM.
|
|
# Supported values are of the regular expression form "\d+[gGmMkK]", allowing the value to be
|
|
# specified in gigabytes, megabytes, or kilobytes (for example: 8G, 4096m, etc).
|
|
# We override the default for headless in case users spin up many headless instances in parallel.
|
|
MAXMEM_DEFAULT=2G
|
|
|
|
# Allow the above MAXMEM_DEFAULT to be overridden by externally set environment variables
|
|
# - GHIDRA_MAXMEM: Desired maximum heap memory for all Ghidra instances
|
|
# - GHIDRA_HEADLESS_MAXMEM: Desired maximum heap memory only for headless Ghidra instances
|
|
GHIDRA_MAXMEM=${GHIDRA_MAXMEM:=${MAXMEM_DEFAULT}}
|
|
GHIDRA_HEADLESS_MAXMEM=${GHIDRA_HEADLESS_MAXMEM:=${GHIDRA_MAXMEM}}
|
|
|
|
# Limit the # of garbage collection and JIT compiler threads in case many headless
|
|
# instances are run in parallel. By default, Java will assign one thread per core
|
|
# which does not scale well on servers with many cores.
|
|
VMARG_LIST="-XX:ParallelGCThreads=2 -XX:CICompilerCount=2 -Djava.awt.headless=true"
|
|
|
|
# Apply Java options from externally set environment variables
|
|
VMARG_LIST="${VMARG_LIST} ${GHIDRA_JAVA_OPTIONS} ${GHIDRA_HEADLESS_JAVA_OPTIONS}"
|
|
|
|
# Launch mode can be changed to one of the following: fg, debug, debug-suspend
|
|
LAUNCH_MODE=fg
|
|
|
|
# Set the debug address to listen on.
|
|
# NOTE: This variable is ignored if not launching in a debugging mode.
|
|
DEBUG_ADDRESS=127.0.0.1:13002
|
|
|
|
# Resolve symbolic link if present and get the directory this script lives in.
|
|
# NOTE: "readlink -f" is best but works on Linux only, "readlink" will only work if your PWD
|
|
# contains the link you are calling (which is the best we can do on macOS), and the "echo" is the
|
|
# fallback, which doesn't attempt to do anything with links.
|
|
SCRIPT_FILE="$(readlink -f "$0" 2>/dev/null || readlink "$0" 2>/dev/null || echo "$0")"
|
|
SCRIPT_DIR="$(dirname -- "$SCRIPT_FILE")"
|
|
# Launch HeadlessAnalyzer.
|
|
# DEBUG_ADDRESS set via environment for launch.sh
|
|
DEBUG_ADDRESS=${DEBUG_ADDRESS} "${SCRIPT_DIR}"/launch.sh "${LAUNCH_MODE}" jdk Ghidra-Headless "${GHIDRA_HEADLESS_MAXMEM}" "${VMARG_LIST}" ghidra.app.util.headless.AnalyzeHeadless "$@"
|