• Home
Name Date Size #Lines LOC

..--

.github/workflows/06-Sep-2024-2718

ci/06-Sep-2024-3425

libfuzzer/06-Sep-2024-13,46410,317

src/06-Sep-2024-527155

.cargo_vcs_info.jsonD06-Sep-202494 66

.gitignoreD06-Sep-202425 43

Android.bpD06-Sep-20241.9 KiB5955

CHANGELOG.mdD06-Sep-20246.1 KiB248142

Cargo.tomlD06-Sep-20241.1 KiB4234

Cargo.toml.origD06-Sep-2024662 3327

LICENSED06-Sep-202427.1 KiB501407

LICENSE-APACHED06-Sep-202410.6 KiB202169

LICENSE-MITD06-Sep-20241 KiB2622

METADATAD06-Sep-2024636 2119

MODULE_LICENSE_APACHE2D06-Sep-20240

MODULE_LICENSE_MITD06-Sep-20240

NOTICED06-Sep-202427.1 KiB501407

OWNERSD06-Sep-202462 32

README.mdD06-Sep-20242.3 KiB9864

build.rsD06-Sep-20241.7 KiB4740

cargo_embargo.jsonD06-Sep-2024218 1615

rust-toolchainD06-Sep-20248 21

update-libfuzzer.shD06-Sep-2024425 229

README.md

1# The `libfuzzer-sys` Crate
2
3Barebones wrapper around LLVM's libFuzzer runtime library.
4
5The CPP parts are extracted from compiler-rt git repository with `git filter-branch`.
6
7libFuzzer 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.
8
9## Usage
10
11### Use `cargo fuzz`!
12
13[The recommended way to use this crate with `cargo fuzz`!][cargo-fuzz].
14
15[cargo-fuzz]: https://github.com/rust-fuzz/cargo-fuzz
16
17### Manual Usage
18
19This crate can also be used manually as following:
20
21First create a new cargo project:
22
23```
24$ cargo new --bin fuzzed
25$ cd fuzzed
26```
27
28Then add a dependency on the `fuzzer-sys` crate and your own crate:
29
30```toml
31[dependencies]
32libfuzzer-sys = "0.4.0"
33your_crate = { path = "../path/to/your/crate" }
34```
35
36Change the `fuzzed/src/main.rs` to fuzz your code:
37
38```rust
39#![no_main]
40
41use libfuzzer_sys::fuzz_target;
42
43fuzz_target!(|data: &[u8]| {
44    // code to fuzz goes here
45});
46```
47
48Build by running the following command:
49
50```sh
51$ cargo rustc -- \
52    -C passes='sancov' \
53    -C llvm-args='-sanitizer-coverage-level=3' \
54    -C llvm-args='-sanitizer-coverage-inline-8bit-counters' \
55    -Z sanitizer=address
56```
57
58And finally, run the fuzzer:
59
60```sh
61$ ./target/debug/fuzzed
62```
63
64### Linking to a local libfuzzer
65
66When using `libfuzzer-sys`, you can provide your own `libfuzzer` runtime in two ways.
67
68If you are developing a fuzzer, you can set the `CUSTOM_LIBFUZZER_PATH` environment variable to the path of your local
69`libfuzzer` runtime, which will then be linked instead of building libfuzzer as part of the build stage of `libfuzzer-sys`.
70For an example, to link to a prebuilt LLVM 16 `libfuzzer`, you could use:
71
72```bash
73$ export CUSTOM_LIBFUZZER_PATH=/usr/lib64/clang/16/lib/libclang_rt.fuzzer-x86_64.a
74$ cargo fuzz run ...
75```
76
77Alternatively, you may also disable the default `link_libfuzzer` feature:
78
79In `Cargo.toml`:
80```toml
81[dependencies]
82libfuzzer-sys = { path = "../../libfuzzer", default-features = false }
83```
84
85Then link to your own runtime in your `build.rs`.
86
87## Updating libfuzzer from upstream
88
89```
90./update-libfuzzer.sh <github.com/llvm-mirror/llvm-project SHA1>
91```
92
93## License
94
95All files in `libfuzzer` directory are licensed NCSA.
96
97Everything else is dual-licensed Apache 2.0 and MIT.
98