Skip to content

Commit 85c54a5

Browse files
committed
Add simple fuzzing
Add infrastructure to automatically run fuzzers in CI, and implement a simple fuzzing test based on triggering all (most) public APIs in a randimized way. As far as I was able to try it catches the previous unsoundness issues in a matter of seconds. This can be tried by changing the `path = "../"` dependency to `version = "=0.6.3"` etc. and running the fuzzer manually. (Note: You'll need to tweak the `Cargo.lock` to allow downloading the yanked versions). Related to #124
1 parent b2c9c65 commit 85c54a5

File tree

7 files changed

+521
-7
lines changed

7 files changed

+521
-7
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
target
2-
Cargo.lock
2+
./Cargo.lock

.travis.yml

+28-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,24 @@
11
language: rust
2-
rust:
3-
- 1.36.0
4-
- nightly
5-
- beta
6-
- stable
2+
addons:
3+
apt:
4+
update: true
5+
packages:
6+
- binutils-dev
7+
- libunwind8-dev
8+
- libcurl4-openssl-dev
9+
- libelf-dev
10+
- libdw-dev
11+
- cmake
12+
- gcc
13+
- libiberty-dev
14+
matrix:
15+
include:
16+
- rust: 1.36.0
17+
- rust: nightly
18+
- rust: beta
19+
env: DO_FUZZ=true
20+
- rust: stable
21+
env: DO_FUZZ=true
722
script: |
823
cargo build --verbose &&
924
cargo test --verbose &&
@@ -12,4 +27,11 @@ script: |
1227
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --features union) &&
1328
([ $TRAVIS_RUST_VERSION != nightly ] || cargo test --verbose --all-features) &&
1429
([ $TRAVIS_RUST_VERSION != nightly ] || cargo bench --verbose bench) &&
15-
([ $TRAVIS_RUST_VERSION != nightly ] || bash ./scripts/run_miri.sh)
30+
([ $TRAVIS_RUST_VERSION != nightly ] || bash ./scripts/run_miri.sh) &&
31+
if [ "$DO_FUZZ" = true ]
32+
then
33+
(
34+
cd fuzz
35+
./travis-fuzz.sh
36+
)
37+
fi

fuzz/Cargo.lock

+192
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

fuzz/Cargo.toml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
name = "smallvec-fuzz"
3+
version = "0.1.0"
4+
authors = ["Dawid Ciężarkiewicz <[email protected]>"]
5+
edition = "2018"
6+
publish = false
7+
8+
[package.metadata]
9+
cargo-fuzz = true
10+
11+
[features]
12+
afl_fuzz = ["afl"]
13+
honggfuzz_fuzz = ["honggfuzz"]
14+
15+
16+
[dependencies]
17+
honggfuzz = { version = "0.5.45", optional = true }
18+
afl = { version = "0.4", optional = true }
19+
smallvec = { path = ".." }
20+
21+
[workspace]
22+
members = ["."]
23+
24+
[[bin]]
25+
name = "smallvec_ops"
26+
path = "fuzz_targets/smallvec_ops.rs"

fuzz/README.md

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Fuzzer for smallvec
2+
3+
Based on fuzzing in [rust-bitcoin](https://github.com/rust-bitcoin/rust-bitcoin/tree/c8ac25219a09bf9d017f1b05abe3e746e2136f73/fuzz)
4+
5+
## Running manually with afl
6+
7+
```
8+
cargo afl build --release --bin smallvec_ops --features afl && cargo afl fuzz -i in -o out target/release/smallvec_ops
9+
```
10+
11+
# Useful links:
12+
* https://rust-fuzz.github.io/book/afl.html

0 commit comments

Comments
 (0)