This directory contains the fuzz tests for wasmer. To fuzz, we use the cargo-fuzz
package.
You may need to install the cargo-fuzz
package to get the cargo fuzz
subcommand. Use
$ cargo install cargo-fuzz
cargo-fuzz
is documented in the Rust Fuzz Book.
Once cargo-fuzz
is installed, you can run the validate
fuzzer with
cargo fuzz run validate
or the jit_cranelift
fuzzer
cargo fuzz run jit_cranelift
See the fuzz/fuzz_targets directory for the full list of targets.
You should see output that looks something like this:
#1408022 NEW cov: 115073 ft: 503843 corp: 4659/1807Kb lim: 4096 exec/s: 889 rss: 857Mb L: 2588/4096 MS: 1 ChangeASCIIInt-
#1408273 NEW cov: 115073 ft: 503844 corp: 4660/1808Kb lim: 4096 exec/s: 888 rss: 857Mb L: 1197/4096 MS: 1 ShuffleBytes-
#1408534 NEW cov: 115073 ft: 503866 corp: 4661/1809Kb lim: 4096 exec/s: 886 rss: 857Mb L: 977/4096 MS: 1 ShuffleBytes-
#1408540 NEW cov: 115073 ft: 503869 corp: 4662/1811Kb lim: 4096 exec/s: 886 rss: 857Mb L: 2067/4096 MS: 1 ChangeBit-
#1408831 NEW cov: 115073 ft: 503945 corp: 4663/1811Kb lim: 4096 exec/s: 885 rss: 857Mb L: 460/4096 MS: 1 CMP- DE: "\x16\x00\x00\x00\x00\x00\x00\x00"-
#1408977 NEW cov: 115073 ft: 503946 corp: 4664/1813Kb lim: 4096 exec/s: 885 rss: 857Mb L: 1972/4096 MS: 1 ShuffleBytes-
#1408999 NEW cov: 115073 ft: 503949 corp: 4665/1814Kb lim: 4096 exec/s: 884 rss: 857Mb L: 964/4096 MS: 2 ChangeBit-ShuffleBytes-
#1409040 NEW cov: 115073 ft: 503950 corp: 4666/1814Kb lim: 4096 exec/s: 884 rss: 857Mb L: 90/4096 MS: 1 ChangeBit-
#1409042 NEW cov: 115073 ft: 503951 corp: 4667/1814Kb lim: 4096 exec/s: 884 rss: 857Mb L: 174/4096 MS: 2 ChangeByte-ChangeASCIIInt-
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/jit_cranelift
and you can rerun the fuzzer on a single input by passing it on the command line cargo fuzz run jit_cranelift /path/to/testcase
.
Each fuzzer has an individual corpus under fuzz/corpus/test_name, created on first run if not already present. The validate fuzzer works directly with .wasm
files as bytes and works best if seeded with examples of small Wasm file. Using wast2json
from wabt, we can easily produce .wasm
files out of the WebAssembly spec tests.
mkdir spec-test-corpus
for i in `find tests/ -name "*.wast"`; do wast2json --enable-all $i -o spec-test-corpus/$(basename $i).json; done
mv spec-test-corpus/*.wasm fuzz/corpus/validate/
rm -r spec-test-corpus
The others fuzzers use wasm-smith
which means that the testcase files are the input to the wasm generator, not the valid .wasm
bytes themselves. In order to debug a testcase, you may find that you need to convert it into a .wasm
file. Using the standalone wasm-smith
tool doesn't work for this purpose because we use a custom configuration to our wasm_smith::Module
. Instead, add some code to the fuzzer target:
use std::fs::File;
use std::io::Write;
let mut file = File::create("/tmp/crash.wasm").unwrap();
file.write_all(&wasm_bytes).unwrap();
and run it over just the one testcase.