Open source binary analysis tools.
Go to file
2024-11-21 11:36:13 -05:00
.github symbolic: Remove redundant unwrapping/rewrapping of register struct 2024-09-11 16:26:10 -07:00
base fix assertPred ignoring its boolean flag for equalities 2024-08-21 10:13:50 -07:00
deps x86-cli: A CLI for running macaw-x86-symbolic S-expression CFGs 2024-08-20 17:17:50 -04:00
doc Add some additional documentation (#303) 2022-08-09 18:40:55 -07:00
macaw-aarch32 Enable -Wno-orphans to fix warnings uncovered by GHC 9.8 2024-08-08 09:34:03 -04:00
macaw-aarch32-symbolic dump: Fix compilation with GHC 9.4 2024-10-16 11:45:43 -04:00
macaw-aarch32-syntax aarch32-syntax: Remove references to x86 2024-11-21 11:36:13 -05:00
macaw-dump More haddock fixes 2024-11-12 15:37:24 -05:00
macaw-ppc Enable -Wno-orphans to fix warnings uncovered by GHC 9.8 2024-08-08 09:34:03 -04:00
macaw-ppc-symbolic Revert "ppc-symbolic: Separate Dump CLIs for 32- and 64-bit" 2024-11-12 16:19:30 -05:00
macaw-riscv Enable -Wno-orphans to fix warnings uncovered by GHC 9.8 2024-08-08 09:34:03 -04:00
macaw-riscv-symbolic riscv-symbolic: Split 32-bit and 64-bit dump CLIs 2024-11-13 10:11:59 -05:00
macaw-semmc Bump submodules to allow building with what4-1.6.* 2024-06-13 04:25:12 -04:00
macaw-x86-cli x86-cli: Add detail to a TODO 2024-08-20 17:17:50 -04:00
macaw-x86-syntax x86-symbolic: Remove terse register names from top-level exports 2024-09-24 13:50:39 -04:00
refinement Change git:// url to https:// in macaw-refinement.cabal. 2024-11-01 23:27:45 -04:00
scripts Add a script for regenerating CI freeze files 2022-06-30 13:44:35 -07:00
symbolic More haddock fixes 2024-11-12 15:37:24 -05:00
symbolic-syntax Bump Crucible submodule, adapt to crucible-syntax changes 2023-12-08 09:46:20 -05:00
utils/compare-dwarfdump Cleanup compare-dwarfdump; bump submodules. 2021-05-26 07:25:51 -07:00
x86 x86-symbolic: Add mm* aliases for st* registers 2024-09-24 15:17:09 -04:00
x86_symbolic x86: dump executable 2024-11-12 15:09:43 -05:00
.gitignore Fix .gitignore update. 2021-04-03 18:16:25 -07:00
.gitmodules Update llvm-pretty submodule target 2024-05-23 16:23:39 -07:00
cabal.project.dist macaw-aarch32-syntax: Syntactic sugar for for AArch32 CFGs 2024-11-21 11:36:13 -05:00
cabal.project.freeze.ghc-9.4.8 CI: Test GHC 9.8, drop 9.2 2024-08-08 09:34:03 -04:00
cabal.project.freeze.ghc-9.6.6 CI: Test GHC 9.8, drop 9.2 2024-08-08 09:34:03 -04:00
cabal.project.freeze.ghc-9.8.2 CI: Test GHC 9.8, drop 9.2 2024-08-08 09:34:03 -04:00
cabal.project.werror macaw-symbolic-syntax: Concrete syntax for macaw-symbolic CFGs 2023-11-01 17:19:13 -04:00
LICENSE Update license dates 2020-11-12 23:43:38 -08:00
README.md Cite Macaw paper and blog post in the README 2024-07-16 13:17:44 -04:00

This is the main repository for the Macaw binary analysis framework with two key goals: binary code discovery and symbolic execution of machine code. This framework is implemented to offer extensible support for architectures (i.e., library clients can add their own architectures and opt in to the architecture support they need).

Overview

The code discovery algorithm is based on forced execution and is able to discovery code from one or more entry points. Symbols are optional but can significantly improve the quality of the results. Stripped binaries can pose a challenge for macaw (especially static stripped binaries). Macaw provides support for lifting discovered machine code into an IR suitable for symbolic execution via the Crucible library.

Currently, macaw supports:

  • x86-64
  • PowerPC (32 and 64 bit)
  • ARM (32 bit)
  • RISC-V

Repository Structure

The Macaw libraries are:

  • macaw-base -- The core architecture-independent operations and algorithms.
  • macaw-symbolic -- Library that provides symbolic simulation of Macaw programs via Crucible.
  • macaw-x86 -- Provides definitions enabling Macaw to be used on X86_64 programs.
  • macaw-x86-symbolic -- Adds Macaw-symbolic extensions needed to support x86.
  • macaw-semmc -- Contains the architecture-independent components of the translation from semmc semantics into macaw IR. This provides the shared infrastructure for all of our backends; this will include the Template Haskell function to create a state transformer function from learned semantics files provided by the semmc library.
  • macaw-arm -- Enables macaw for ARM (32-bit) binaries by reading the semantics files generated by semmc and using Template Haskell to generate a function that transforms machine states according to the learned semantics.
  • macaw-arm-symbolic -- Enables macaw/crucible symbolic simulation for ARM (32-bit) architectures.
  • macaw-ppc -- Enables macaw for PPC (32-bit and 64-bit) binaries by reading the semantics files generated by semmc and using Template Haskell to generate a function that transforms machine states according to the learned semantics.
  • macaw-ppc-symbolic -- Enables macaw/crucible symbolic simulation for PPC architectures
  • macaw-riscv -- Enables macaw for RISC-V (RV32GC and RV64GC variants) binaries.
  • macaw-refinement -- Enables additional architecture-independent refinement of code discovery. This can enable discovery of more functionality than is revealed by the analysis in macaw-base.

The libraries that make up Macaw are released under the BSD license.

These Macaw core libraries depend on a number of different supporting libraries, including:

  • elf-edit -- loading and parsing of ELF binary files
  • galois-dwarf -- retrieval of Dwarf debugging information from binary files
  • flexdis86 -- disassembly and semantics for x86 architectures
  • dismantle -- disassembly for ARM and PPC architectures
  • semmc -- semantics definitions for ARM and PPC architectures
  • crucible -- Symbolic execution and analysis
  • what4 -- Symbolic representation for the crucible backend
  • parameterized-utils -- utilities for working with parameterized types

Documentation

A set of high-level design documents can be found in the doc subdirectory. Documentation for individual API functions and data types can be found in the Haddock comments throughout the code.

We have also written some other resources about Macaw:

Building

Preparation

Dependencies for building Macaw that are not obtained from Hackage are supported via Git submodules:

$ git submodule update --init

Preparing Softfloat for RISC-V Backend

The RISC-V backend depends on softfloat-hs, which in turn depends on the softfloat library. Macaw's build system will automatically build softfloat, but the softfloat-hs repo must be recursively cloned to enable this. If you are not building macaw-riscv you can skip this step. To recursively clone softfloat-hs, run:

$ cd deps/softfloat-hs
$ git submodule update --init --recursive

Building with Cabal

The Macaw libraries can be individually built or collectively built with Cabal:

$ ln -s cabal.project.dist cabal.project
$ cabal configure
$ cabal build all

To build a single library, either specify that library name instaed of all, or change to that library's subdirectory before building:

$ cabal build macaw-refinement

or

$ cd refinement
$ cabal build

Notes on Freeze Files

We use the cabal.project.freeze.ghc-* files to constrain dependency versions in CI. To build with a known-working set of Hackage dependencies:

ln -s cabal.GHC-<VER>.config cabal.project.freeze

These freeze files were generated using the scripts/regenerate-freeze-files.sh script. Note that at present, these configuration files assume a Unix-like operating system, as we do not currently test Windows on CI. If you would like to use these configuration files on Windows, you will need to make some manual changes to remove certain packages and flags:

regex-posix
tasty +unix
unix
unix-compat

Note that if any of the macaw packages fail to build without the freeze files, it is a bug in the dependency version bounds specified in the .cabal files that should be reported (https://github.com/GaloisInc/macaw/issues).

License

This code is made available under the BSD3 license and without any support.