-
Notifications
You must be signed in to change notification settings - Fork 825
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
559: Initial commit of a fuzzer. Run with "cargo fuzz run simple_instantiate". r=nlewycky a=nlewycky Used to discover issue #558. We'll probably want to reconsider the default .gitignore of the artifacts and corpus directories. The fuzzer wastes a lot of time not having even a single exampel of a valid .wasm file to start with. Co-authored-by: Nick Lewycky <[email protected]> Co-authored-by: nlewycky <[email protected]>
- Loading branch information
Showing
4 changed files
with
76 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
target | ||
corpus | ||
artifacts |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
|
||
[package] | ||
name = "wasmer-fuzz" | ||
version = "0.0.1" | ||
authors = ["Automatically generated"] | ||
publish = false | ||
|
||
[package.metadata] | ||
cargo-fuzz = true | ||
|
||
[dependencies] | ||
wasmer-runtime = { path = "../lib/runtime" } | ||
libfuzzer-sys = { git = "https://github.com/rust-fuzz/libfuzzer-sys.git" } | ||
|
||
# Prevent this from interfering with workspaces | ||
[workspace] | ||
members = ["."] | ||
|
||
[[bin]] | ||
name = "simple_instantiate" | ||
path = "fuzz_targets/simple_instantiate.rs" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
This directory contains the fuzz tests for wasmer. To fuzz, we use the `cargo-fuzz` package. | ||
|
||
## Installation | ||
|
||
You may need to install the `cargo-fuzz` package to get the `cargo fuzz` subcommand. Use | ||
|
||
```sh | ||
$ cargo install cargo-fuzz | ||
``` | ||
|
||
`cargo-fuzz` is documented in the [Rust Fuzz Book](https://rust-fuzz.github.io/book/cargo-fuzz.html). | ||
|
||
## Running a fuzzer | ||
|
||
Once `cargo-fuzz` is installed, you can run the `simple_instantiate` fuzzer with | ||
```sh | ||
cargo fuzz run simple_instantiate | ||
``` | ||
|
||
You should see output that looks something like this: | ||
|
||
``` | ||
INFO: Seed: 3276026494 | ||
INFO: 8 files found in wasmer/fuzz/corpus/simple_instantiate | ||
INFO: -max_len is not provided; libFuzzer will not generate inputs larger than 4096 bytes | ||
INFO: seed corpus: files: 8 min: 1b max: 1b total: 8b rss: 133Mb | ||
#9 INITED ft: 3 corp: 3/3b lim: 4 exec/s: 0 rss: 142Mb | ||
#23 NEW ft: 4 corp: 4/5b lim: 4 exec/s: 0 rss: 142Mb L: 2/2 MS: 4 ChangeByte-InsertByte-ShuffleBytes-ChangeBit- | ||
#25 NEW ft: 5 corp: 5/6b lim: 4 exec/s: 0 rss: 142Mb L: 1/2 MS: 2 ChangeBinInt-ChangeBit- | ||
#27 NEW ft: 6 corp: 6/9b lim: 4 exec/s: 0 rss: 142Mb L: 3/3 MS: 2 InsertByte-ChangeByte- | ||
#190 REDUCE ft: 6 corp: 6/7b lim: 4 exec/s: 0 rss: 142Mb L: 1/2 MS: 3 ChangeBit-EraseBytes-CrossOver- | ||
#205 REDUCE ft: 7 corp: 7/11b lim: 4 exec/s: 0 rss: 142Mb L: 4/4 MS: 5 ShuffleBytes-CrossOver-InsertByte-ChangeBinInt-CrossOver- | ||
``` | ||
It will continue to generate random inputs forever, until it finds a bug or is terminated. The testcases for bugs it finds go into `fuzz/artifacts/simple_instantiate` and you can rerun the fuzzer on a single input by passing it on the command line `cargo fuzz run simple_instantiate my_testcase.wasm`. | ||
|
||
## Trophy case | ||
|
||
- [x] https://github.com/wasmerio/wasmer/issues/558 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#![no_main] | ||
#[macro_use] extern crate libfuzzer_sys; | ||
extern crate wasmer_runtime; | ||
|
||
use wasmer_runtime::{ | ||
instantiate, | ||
imports, | ||
}; | ||
|
||
fuzz_target!(|data: &[u8]| { | ||
let import_object = imports! {}; | ||
instantiate(data, &import_object); | ||
}); |