ghidra/DevGuide.md

319 lines
12 KiB
Markdown
Raw Normal View History

2019-03-28 20:21:24 +00:00
# Developer's Guide
## Catalog of Dependencies
The following is a list of dependencies, in no particular order.
This guide includes instructions for obtaining many of these at the relevant step(s).
2019-03-28 20:21:24 +00:00
You may not need all of these, depending on which portions you are building or developing.
* JDK 11 - We test and build using OpenJDK 11.0.2.
- https://jdk.java.net/11/
2019-03-28 20:21:24 +00:00
* Eclipse - It must support JDK 11. Eclipse 2018-12 or later should work. Other IDEs may work, but we have not tested them.
- https://www.eclipse.org/downloads/
2019-03-28 20:21:24 +00:00
* Gradle 5.0 - Later versions may work, but you'll need to modify our version check.
- https://gradle.org/next-steps/?version=5.0&format=bin
* A C/C++ compiler - We use GCC on Linux, Xcode (Clang) on macOS, and Visual Studio 2017 on Windows, .
- https://gcc.gnu.org/
- https://developer.apple.com/xcode/
- https://visualstudio.microsoft.com/downloads/
* Git - We use the official installer on Windows. Most Linux distros have git in their repos. Xcode provides git on macOS.
- https://git-scm.com/downloads
2019-03-28 20:21:24 +00:00
* Bash - This is moot on Linux and macOS. On Windows, we use MinGW. This may be distributed with Git for Windows.
- https://osdn.net/projects/mingw/releases/
* Bison and Flex - We use win-flex-bison v2.5.17. These packages may also be available in MSYS (MinGW). Most Linux distros have these in their repos. Xcode provides these for macOS.
- https://sourceforge.net/projects/winflexbison/
* dex2jar. We use version 2.0.
- https://github.com/pxb1988/dex2jar/releases
2019-03-28 20:21:24 +00:00
* AXMLPrinter2
- https://code.google.com/archive/p/android4me/downloads
* HFS Explorer. We use version 0.21.
- https://sourceforge.net/projects/catacombae/files/HFSExplorer/0.21/
- https://github.com/unsound/hfsexplorer/releases (newer versions)
* Yet Another Java Service Wrapper. We use version 12.12 - Only to build Ghidra package.
- https://sourceforge.net/projects/yajsw/files/yajsw/yajsw-stable-12.12/
* Eclipse PDE - Environment for developing the GhidraDev plugin.
- https://www.eclipse.org/pde/
* Eclipse CDT. We use version 8.6.0 - Build dependency for the GhidraDev plugin.
- https://www.eclipse.org/cdt/
* PyDev. We use version 6.3.1 - Build dependency for the GhidraDev plugin.
- https://sourceforge.net/projects/pydev/files/pydev/
There are many, many others automatically downloaded by Gradle from Maven Central and Bintray JCenter when building and/or setting up the development environment.
If you need these offline, a reasonable course of action is to set up a development environment online, perhaps perform a build, and then scrape Gradle's cache.
2019-03-28 20:21:24 +00:00
## Install Development and Build Tools
If you're on Windows, install Git, MinGW, Bison, and Flex.
Many of the commands given below must be executed in Bash (Use git-bash or MSYS from MinGW).
**IMPORTANT**: The bison and flex executables may be named `win-bison.exe` and `win-flex.exe`.
Our build cannot currently cope with that, so you should rename them to `bison.exe` and `flex.exe`.
2019-03-26 17:45:32 +00:00
Install OpenJDK 11 and make sure it's the default java.
2019-03-28 20:21:24 +00:00
Install Eclipse.
You can launch Eclipse with any JRE/JDK, but you'll need to ensure Eclipse knows about your JDK 11 installation.
In Eclipse, select Window -> Prefereces (Eclipse -> Preferences on macOS), then navigate to Java -> Installed JREs, and ensure a JDK 11 is configured.
2019-03-26 17:45:32 +00:00
2019-03-28 20:21:24 +00:00
Install Gradle, add it to your `PATH`, and ensure it is launched using JDK 11.
2019-03-26 17:45:32 +00:00
2019-03-28 20:21:24 +00:00
## Setup Source and Dependency Repositories
2019-03-26 17:45:32 +00:00
2019-03-28 20:21:24 +00:00
You may choose any directory for your working copy, but these instructions will assume you have cloned the source to `~/git/ghidra`.
2019-03-26 17:45:32 +00:00
Be sure to adjust the commands to match your chosen working directory if different than suggested:
```bash
2019-03-28 20:21:24 +00:00
mkdir ~/git
2019-03-26 17:45:32 +00:00
cd ~/git
git clone git@github.com:NationalSecurityAgency/ghidra.git
```
2019-03-28 20:21:24 +00:00
Ghidra's build uses artifacts named as available in Maven Central and Bintray JCenter, when possible.
2019-03-26 17:45:32 +00:00
Unfortunately, in some cases, the artifact or the particular version we desire is not available.
So, in addition to mavenCentral and jcenter, you must configure a flatDir-style repository for manually-downloaded dependencies.
Create `~/.gradle/init.d/repos.gradle` with the following contents:
```groovy
ext.HOME = System.getProperty('user.home')
allprojects {
repositories {
mavenCentral()
jcenter()
flatDir name:'flat', dirs:["$HOME/flatRepo"]
}
}
```
2019-03-28 20:21:24 +00:00
Create the `~/flatRepo` folder to hold the manually-downloaded dependencies:
2019-03-26 17:45:32 +00:00
```bash
mkdir ~/flatRepo
```
If you prefer not to modify your user-wide Gradle configuration, you may use
Gradle's other init script facilities, but you're on your own.
## Get Dependencies for FileFormats:
Download `dex-tools-2.0.zip` from the dex2jar project's releases page on GitHub.
Unpack the `dex-*.jar` files from the `lib` directory to `~/flatRepo`:
```bash
cd ~/Downloads # Or wherever
curl -OL https://github.com/pxb1988/dex2jar/releases/download/2.0/dex-tools-2.0.zip
unzip dex-tools-2.0.zip
cp dex2jar-2.0/lib/dex-*.jar ~/flatRepo/
```
Download `AXMLPrinter2.jar` from the "android4me" archive on code.google.com.
Place it in `~/flatRepo`:
```bash
cd ~/flatRepo
curl -OL https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/android4me/AXMLPrinter2.jar
```
## Get Dependencies for DMG:
Download `hfsexplorer-0_21-bin.zip` from www.catacombae.org.
Unpack the `lib` directory to `~/flatRepo.`:
```bash
cd ~/Downloads # Or wherever
curl -OL https://sourceforge.net/projects/catacombae/files/HFSExplorer/0.21/hfsexplorer-0_21-bin.zip
mkdir hfsx
cd hfsx
unzip ../hfsexplorer-0_21-bin.zip
cd lib
cp csframework.jar hfsx_dmglib.jar hfsx.jar iharder-base64.jar ~/flatRepo/
```
## Import Gradle Project
2019-03-26 21:58:40 +00:00
If you want just to build Ghidra, you may skip ahead to Building Ghidra.
2019-03-28 20:21:24 +00:00
Otherwise, import Ghidra into Eclipse using the integrated BuildShip plugin.
Select File -> Import, expand Gradle, and select "Existing Gradle Project."
Select the root of the source repo as the root Gradle project.
2019-03-26 21:58:40 +00:00
Be sure to select Gradle 5.0, or point it at your local installation.
2019-03-26 17:45:32 +00:00
You may see build path errors until the environment is properly prepared, as described below.
2019-03-28 20:21:24 +00:00
*Alternatively*, you may have Gradle generate the Eclipse projects and import those instead.
2019-03-26 21:58:40 +00:00
This is the way to go if you'd prefer not to activate Gradle's BuildShip plugin.
2019-03-28 20:21:24 +00:00
From the project root:
```bash
gradle eclipse
```
Select File -> Import, expand General, and select "Existing Projects into Workspace."
Select the root of the source repo, and select "Search for nested projects."
Select all, and Finish.
You may see build path errors until the environment is properly prepared, as described below.
2019-03-26 21:58:40 +00:00
2019-03-26 17:45:32 +00:00
## Prepare the Environment
From the project root, execute:
```bash
2019-03-26 21:58:40 +00:00
gradle prepDev -x yajswDevUnpack
2019-03-26 17:45:32 +00:00
```
2019-03-28 20:21:24 +00:00
The `prepDev` tasks primarily include generating some source, indexing our built-in help, and unpacking some dependencies.
2019-03-26 21:58:40 +00:00
Regarding `yajswDevUnpack`, please see the relevant sections on GhidraServer below.
For now, we exclude the unpack task.
2019-03-26 17:45:32 +00:00
Optionally, to pre-compile all the language modules, you may also execute:
```bash
2019-03-26 21:58:40 +00:00
gradle sleighCompile
2019-03-26 17:45:32 +00:00
```
2019-03-28 20:21:24 +00:00
Refresh the projects in Eclipse.
2019-03-26 17:45:32 +00:00
You should not see any errors at this point, and you can accomplish many development tasks.
However, some features of Ghidra will not be functional until further steps are taken.
### Building the natives
Some of Ghidra's components are built for the native platform.
We currently support Linux, macOS, and Windows 64-bit x86 systems.
2019-03-28 20:21:24 +00:00
Others should be possible, but we do not test on them.
2019-03-26 17:45:32 +00:00
Ensure bison and flex are installed and in your `PATH`.
2019-03-26 17:45:32 +00:00
Now build using Gradle:
On Linux:
```bash
gradle buildNatives_linux64
2019-03-26 17:45:32 +00:00
```
On macOS:
```bash
gradle buildNatives_osx64
2019-03-26 17:45:32 +00:00
```
On macOS:
```bash
gradle buildNatives_win64
2019-03-26 17:45:32 +00:00
```
This will build the decompiler, the demangler for GNU toolchains, the sleigh compiler, and (on Windows only) the PDB parser.
2019-03-26 17:45:32 +00:00
2019-03-26 21:58:40 +00:00
## Run Ghidra from Eclipse
2019-03-26 17:45:32 +00:00
2019-03-28 20:21:24 +00:00
To run or debug Ghidra from Eclipse, use the provided launch configuration (usually under the "Run" or "Debug" buttons).
If the launcher does not appear, it probably has not been marked as a favorite.
Click the dropdown next to the "Run" button and select "Run Configurations."
Then expand "Java Application" on the left to find the "Ghidra" launcher.
2019-03-26 17:45:32 +00:00
2019-03-26 21:58:40 +00:00
# Building Ghidra
2019-03-26 17:45:32 +00:00
2019-03-26 21:58:40 +00:00
To build the full Ghidra distribution, you must also build the GhidraServer.
2019-03-26 17:45:32 +00:00
2019-03-26 21:58:40 +00:00
## Get Dependencies for GhidraServer
2019-03-26 17:45:32 +00:00
Building the GhidraServer requires "Yet another Java service wrapper" (yajsw) version 12.12.
Download `yajsw-stable-12.12.zip` from their project on www.sourceforge.net, and place it in a directory named:
2019-03-28 22:15:08 +00:00
`ghidra.bin/Ghidra/Features/GhidraServer/`. Note that `ghidra.bin` must be a sibling of `ghidra`:
2019-03-26 17:45:32 +00:00
```bash
cd ~/Downloads # Or wherever
curl -OL https://sourceforge.net/projects/yajsw/files/yajsw/yajsw-stable-12.12/yajsw-stable-12.12.zip
mkdir -p ~/git/ghidra.bin/Ghidra/Features/GhidraServer/
cp ~/Downloads/yajsw-stable-12.12.zip ~/git/ghidra.bin/Ghidra/Features/GhidraServer/
```
Use Gradle to unpack the wrapper for development.
From your clone:
```bash
2019-03-26 21:58:40 +00:00
gradle yajswDevUnpack
2019-03-26 17:45:32 +00:00
```
2019-03-26 21:58:40 +00:00
## Building the Package
2019-03-26 17:45:32 +00:00
Before building, you may want to update the version and release name.
These properties are kept in `Ghidra/application.properties`.
If you want it included, you must also build the GhidraDevPlugin module first.
2019-03-26 21:58:40 +00:00
Some supporting data will also be missing.
See the sections below for instructions to produce these components.
You may also be able to copy some of this data from a previous official distribution.
2019-03-26 17:45:32 +00:00
To build the full package, use Gradle:
```bash
2019-03-26 21:58:40 +00:00
gradle buildGhidra
2019-03-26 17:45:32 +00:00
```
The output will be placed in `build/dist/`.
It will be named according to the version, release name, build date, and platform.
To test it, unzip it where you like, and execute `./ghidraRun`.
# Building Supporting Data
Some features of Ghidra require the curation of rather extensive data bases.
These include the Data Type Archives and Function ID Databases, both of which require collecting header files and libraries for the relevant SDKs and platforms.
2019-03-28 20:21:24 +00:00
Much of this work is done by hand.
Until this process is documented, those artifacts can be extracted from an official distribution and combined with your build output.
2019-03-26 17:45:32 +00:00
## Building Data Type Archives
TODO
## Building FID Databases
TODO
2019-03-26 21:58:40 +00:00
# Developing / Building the GhidraDev Plugin
First, install the Eclipse Plugin Development Environment (PDE).
By default, the GhidraDev project is excluded from the build.
To enable it, uncomment it in `settings.gradle`.
2019-03-28 20:21:24 +00:00
```bash
${EDITOR:-vi} settings.gradle
```
2019-03-26 21:58:40 +00:00
You will need some additional runtime dependencies:
## Get Dependencies for GhidraDev
Building the GhidraDev plugin for Eclipse requires the CDT and PyDev plugins for Eclipse.
Download `cdt-8.6.0.zip` from The Eclipse Foundation, and place it in a directory named:
2019-03-28 20:21:24 +00:00
`ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/`. Note that
2019-03-26 21:58:40 +00:00
`ghidra.bin` must be a sibling of `ghidra`.
2019-03-28 20:21:24 +00:00
To respect the Eclipse Project's resources, you may need to download the file using a browser, or at the very least, locate a suitable mirror on your own:
2019-03-26 21:58:40 +00:00
```bash
cd ~/Downloads # Or wherever
curl -OL https://$CHOOSE_YOUR_MIRROR/pub/eclipse/tools/cdt/releases/8.6/cdt-8.6.0.zip
mkdir -p ~/git/ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/
cp ~/Downloads/cdt-8.6.0.zip ~/git/ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/
```
Download `PyDev 6.3.1.zip` from www.pydev.org, and place it in the same directory:
```bash
cd ~/Downloads # Or wherever
curl -OL https://sourceforge.net/projects/pydev/files/pydev/PyDev%206.3.1/PyDev%206.3.1.zip
cp ~/Downloads/'PyDev 6.3.1.zip' ~/git/ghidra.bin/GhidraBuild/EclipsePlugins/GhidraDev/buildDependencies/
```
Use Gradle to unpack the dependencies.
Note that these tasks will not work until you enable the GhidraDev project in `settings.gradle`.
From your clone:
```bash
gradle cdtUnpack pyDevUnpack
```
## Import the GhidraDev Project
If you're using BuildShip, simply refresh the Gradle project in Eclipse.
If you're not using BuildShip, re-run `gradle eclipse` and import the new project.