Rellic is an implementation of the pattern-independent structuring algorithm to produce a goto-free C output from LLVM bitcode.
The design philosophy behind the project is to provide a relatively small and easily hackable codebase with great interoperability with other LLVM and Remill projects.
master | |
---|---|
Linux |
If you are experiencing undocumented problems with Rellic then ask for help in the #binary-lifting
channel of the Empire Hacking Slack.
Rellic is supported on Linux platforms and has been tested on Ubuntu 16.04 and 18.04.
Most of Rellic's dependencies can be provided by the cxx-common repository. Trail of Bits hosts downloadable, pre-built versions of cxx-common, which makes it substantially easier to get up and running with Rellic. Nonetheless, the following table represents most of Rellic's dependencies.
Name | Version |
---|---|
Git | Latest |
CMake | 3.14+ |
Google Flags | Latest |
Google Log | Latest |
LLVM | 4.0+ |
Clang | 4.0+ |
Z3 | 4.7.1+ |
Pre-built Docker images are available on Docker Hub and the Github Package Registry.
First, update aptitude and get install the baseline dependencies.
sudo apt-get update
sudo apt-get upgrade
sudo apt-get install \
git \
python3 \
wget \
unzip \
pixz \
xz-utils \
cmake \
curl \
build-essential \
lsb-release \
zlib1g-dev \
libomp-dev
If the distribution you're on doesn't include a recent release of CMake (3.14 or later), you'll need to install it. For Ubuntu, see here https://apt.kitware.com/.
The next step is to clone the Rellic repository.
git clone https://github.com/trailofbits/rellic.git
Finally, we build and package Rellic. This script will create another directory, rellic-build
, in the current working directory. All remaining dependencies needed by Rellic will be downloaded and placed in the parent directory alongside the repo checkout in lifting-bits-downloads
(see the script's -h
option for more details). This script also creates installable deb, rpm, and tgz packages.
cd rellic
./scripts/build.sh --llvm-version 11
# to install the deb package, then do:
sudo dpkg -i rellic-build/*.deb
To try out Rellic you can do the following, given a LLVM bitcode file of your choice.
# Create some sample bitcode or your own
clang-11 -emit-llvm -c ./tests/tools/decomp/issue_4.c -o ./tests/tools/decomp/issue_4.bc
./rellic-build/tools/rellic-decomp-11.0 --input ./tests/tools/decomp/issue_4.bc --output /dev/stdout
The Docker image should provide an environment which can set-up, build, and run rellic. The Docker images are parameterized by Ubuntu verison, LLVM version, and architecture.
To build the docker image using LLVM 11 for Ubuntu 18.04 on amd64 you can run the following command:
ARCH=amd64; UBUNTU=18.04; LLVM=11; docker build . \
-t rellic:llvm${LLVM}-ubuntu${UBUNTU}-${ARCH} \
-f Dockerfile \
--build-arg UBUNTU_VERSION=${UBUNTU} \
--build-arg ARCH=${ARCH} \
--build-arg LLVM_VERSION=${LLVM}
To run the decompiler, the entrypoint has already been set, but make sure the bitcode you are decompiling is the same LLVM version as the decompiler, and run:
# Get the bc file
clang-11 -emit-llvm -c ./tests/tools/decomp/issue_4.c -o ./tests/tools/decomp/issue_4.bc
# Decompile
docker run --rm -t -i \
-v $(pwd):/test -w /test \
-u $(id -u):$(id -g) \
rellic:llvm11-ubuntu18.04-amd64 --input ./tests/tools/decomp/issue_4.bc --output /dev/stdout
To explain the above command more:
# Mount current directory and change working directory
-v $(pwd):/test -w /test
and
# Set the user to current user to ensure correct permissions
-u $(id -u):$(id -g) \