17 releases

0.4.7 Aug 10, 2023
0.4.6 Jan 26, 2023
0.4.5 Oct 18, 2022
0.4.3 Mar 3, 2022
0.1.1 Sep 10, 2019

#20 in Development tools

Download history 66924/week @ 2024-03-14 73771/week @ 2024-03-21 71759/week @ 2024-03-28 84112/week @ 2024-04-04 83518/week @ 2024-04-11 80668/week @ 2024-04-18 80257/week @ 2024-04-25 85963/week @ 2024-05-02 79655/week @ 2024-05-09 89904/week @ 2024-05-16 85071/week @ 2024-05-23 89739/week @ 2024-05-30 78443/week @ 2024-06-06 90965/week @ 2024-06-13 88605/week @ 2024-06-20 70354/week @ 2024-06-27

343,539 downloads per month
Used in 42 crates (11 directly)

MIT/Apache-2.0/NCSA

380KB
8K SLoC

C++ 8K SLoC // 0.1% comments Rust 195 SLoC // 0.2% comments Python 63 SLoC // 0.2% comments Shell 43 SLoC // 0.2% 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' \
    -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-libfuzzer.sh <github.com/llvm-mirror/llvm-project SHA1>

License

All files in libfuzzer directory are licensed NCSA.

Everything else is dual-licensed Apache 2.0 and MIT.

Dependencies

~115–450KB