This repo contains the source for building a Ghidra plugin to handle GTIRB files.
Some limitations:
- Imports GTIRB created from ELF files (only)
- Supported architectures are IA32, ARM, X86-64, and PPC32
- File name must have ".gtirb" suffix (otherwise you will have to manually select the GTIRB loader)
- Builds are specific to a single version of Ghidra and will not work with newer or older Ghidra releases.
A video demonstration of installing and using this plugin is available at gtirb-ghidra-plugin-intro.mov.
See the Installation section above to use the provided builds. To build from source instead:
The command-line examples in this section are for Ubuntu 20.04 and Ghidra 10.1.2, assuming you want to install Ghidra and Gradle to ~/.local
. Adjust them as appropriate to fit your system and Ghidra version.
- Download the latest release of Ghidra from Github.
- Download Gradle 7 from https://gradle.org/releases/
- Install OpenJDK 11
sudo apt-get install openjdk-11-jdk
- Extract Ghidra and Gradle somewhere convenient
unzip -d ~/.local ~/Downloads/ghidra_10.1.2_PUBLIC_20220125.zip unzip -d ~/.local ~/Downloads/gradle-7.3.3-bin.zip
- Add your Ghidra install path to a Gradle properties file
mkdir -p ~/.gradle echo "GHIDRA_INSTALL_DIR=$HOME/.local/ghidra_10.1.2_PUBLIC" >> ~/.gradle/gradle.properties
- Download or clone the gtirb-ghidra-plugin source.
git clone https://github.com/GrammaTech/gtirb-ghidra-plugin.git cd gtirb-ghidra-plugin
- Build gtirb from source for Java and install its
gtirb_api
andprotobuf-java
JAR files togtirb-ghidra-plugin/Gtirb/lib
. You can use thegtirb_java_build.sh
script to automate this../scripts/gtirb_java_build.sh
- Build the plugin with Gradle and extract it to
GHIDRA_INSTALL_DIR/Ghidra/Extensions
. You can use theinstall_plugin.sh
script to automate this../Gtirb/install_plugin.sh
Use Ghidra's ghidraRun
script to launch the Ghidra project window.
To import a GTIRB file, simply open it from the "File -> Import File..." menu. Ghidra should automatically use the installed GTIRB plugin to load it.
To export a program to GTIRB, import it into your Ghidra project then open it with Ghidra's CodeBrowser. In CodeBrowser, select the "File -> Export Program..." menu option. Select "GTIRB Exporter" in the format dropdown to create a GTIRB file for the current program.
The export-gtirb
script is provided to automatically use Ghidra to create a
GTIRB file. Simply provide an input binary and the output filename.
./scripts/export-gtirb /bin/true ~/true.gtirb