19 releases

new 0.4.9 Jan 28, 2025
0.4.8 Nov 7, 2024
0.4.7 Aug 10, 2023
0.4.6 Jan 26, 2023
0.1.1 Sep 10, 2019

#19 in Development tools

Download history 126816/week @ 2024-10-09 138274/week @ 2024-10-16 129157/week @ 2024-10-23 137935/week @ 2024-10-30 133028/week @ 2024-11-06 170684/week @ 2024-11-13 151137/week @ 2024-11-20 136714/week @ 2024-11-27 154420/week @ 2024-12-04 155980/week @ 2024-12-11 105022/week @ 2024-12-18 63719/week @ 2024-12-25 114461/week @ 2025-01-01 182895/week @ 2025-01-08 195664/week @ 2025-01-15 221038/week @ 2025-01-22

724,479 downloads per month
Used in 105 crates (18 directly)

(MIT OR Apache-2.0) AND NCSA

395KB
9K SLoC

C++ 8K SLoC // 0.1% comments Rust 266 SLoC // 0.2% comments Python 63 SLoC // 0.2% comments Shell 57 SLoC // 0.1% comments C 25 SLoC // 0.4% comments

The libfuzzer-sys Crate

Barebones wrapper around LLVM's libFuzzer runtime library.

The CPP parts are extracted from compiler-rt git repository with git filter-branch.

libFuzzer relies on LLVM sanitizer support. The Rust compiler has built-in support for LLVM sanitizer support, for now, it's limited to Linux. As a result, libfuzzer-sys only works on Linux.

Usage

Use cargo fuzz!

The recommended way to use this crate with cargo fuzz!.

Manual Usage

This crate can also be used manually as following:

First create a new cargo project:

$ cargo new --bin fuzzed
$ cd fuzzed

Then add a dependency on the fuzzer-sys crate and your own crate:

[dependencies]
libfuzzer-sys = "0.4.0"
your_crate = { path = "../path/to/your/crate" }

Change the fuzzed/src/main.rs to fuzz your code:

#![no_main]

use libfuzzer_sys::fuzz_target;

fuzz_target!(|data: &[u8]| {
    // code to fuzz goes here
});

Build by running the following command:

$ cargo rustc -- \
    -C passes='sancov-module' \
    -C llvm-args='-sanitizer-coverage-level=3' \
    -C llvm-args='-sanitizer-coverage-inline-8bit-counters' \
    -Z sanitizer=address

And finally, run the fuzzer:

$ ./target/debug/fuzzed

Linking to a local libfuzzer

When using libfuzzer-sys, you can provide your own libfuzzer runtime in two ways.

If you are developing a fuzzer, you can set the CUSTOM_LIBFUZZER_PATH environment variable to the path of your local libfuzzer runtime, which will then be linked instead of building libfuzzer as part of the build stage of libfuzzer-sys. For an example, to link to a prebuilt LLVM 16 libfuzzer, you could use:

$ export CUSTOM_LIBFUZZER_PATH=/usr/lib64/clang/16/lib/libclang_rt.fuzzer-x86_64.a
$ cargo fuzz run ...

Alternatively, you may also disable the default link_libfuzzer feature:

In Cargo.toml:

[dependencies]
libfuzzer-sys = { path = "../../libfuzzer", default-features = false }

Then link to your own runtime in your build.rs.

Updating libfuzzer from upstream

  • Update the COMMIT=... variable in ./update-libfuzzer.sh with the new commit hash from llvm-mirror/llvm-project that you are vendoring.

  • Re-run the script:

    $ ./update-libfuzzer.sh <github.com/llvm-mirror/llvm-project SHA1>
    

License

All files in the libfuzzer directory are licensed NCSA.

Everything else is dual-licensed Apache 2.0 and MIT.

Dependencies

~105–520KB
~11K SLoC