You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker 7ee447c011
v811_spc009_project
7 months ago
..
ci v811_spc009_project 7 months ago
libfuzzer v811_spc009_project 7 months ago
patches v811_spc009_project 7 months ago
src v811_spc009_project 7 months ago
.cargo_vcs_info.json v811_spc009_project 7 months ago
Android.bp v811_spc009_project 7 months ago
CHANGELOG.md v811_spc009_project 7 months ago
Cargo.toml v811_spc009_project 7 months ago
Cargo.toml.orig v811_spc009_project 7 months ago
LICENSE v811_spc009_project 7 months ago
METADATA v811_spc009_project 7 months ago
MODULE_LICENSE_APACHE2 v811_spc009_project 7 months ago
MODULE_LICENSE_MIT v811_spc009_project 7 months ago
NOTICE v811_spc009_project 7 months ago
OWNERS v811_spc009_project 7 months ago
README.md v811_spc009_project 7 months ago
build.rs v811_spc009_project 7 months ago
rust-toolchain v811_spc009_project 7 months ago
update-libfuzzer.sh v811_spc009_project 7 months ago

README.md

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.3.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

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.