| Crates.io | aptos-fuzzer |
| lib.rs | aptos-fuzzer |
| version | 0.2.7 |
| created_at | 2022-06-06 20:26:13.850316+00 |
| updated_at | 2022-08-16 07:57:32.154385+00 |
| description | Aptos fuzzer |
| homepage | https://aptoslabs.com |
| repository | https://github.com/aptos-labs/aptos-core |
| max_upload_size | |
| id | 600980 |
| size | 254,391 |
This crate contains support for fuzzing Aptos targets. This support sincludes:
proptestcargo testInstall cargo-fuzz if not already available: cargo install cargo-fuzz.
First, switch to the directory this README is in: cd testsuite/aptos-fuzzer.
To list out known fuzz targets, run cargo run --bin aptos-fuzzer list.
To be effective, fuzzing requires a corpus of existing inputs. This
crate contains support for generating corpuses with proptest. Generate
a corpus with cargo run --bin aptos-fuzzer generate <target>.
Once a corpus has been generated, the fuzzer is ready to use, simply run:
RUSTC_BOOTSTRAP=1 cargo run --bin aptos-fuzzer --release fuzz <target>
For more options, run cargo run --bin aptos-fuzzer -- --help. Note that RUSTC_BOOTSTRAP=1 is
required as cargo fuzz uses unstable compiler flags.
Fuzz targets go in src/fuzz_targets/. Adding a new target involves
creating a new type and implementing FuzzTargetImpl for it.
For examples, see the existing implementations in src/fuzz_targets/.
Remember to add your target to ALL_TARGETS in src/fuzz_targets.rs.
Once that has been done, cargo run --bin aptos-fuzzer list should list your new target.
If the fuzzer finds a failing artifact, it will save the artifact to a
file inside the fuzz directory and print its path. To add this
artifact to the test suite, copy it to a file inside
artifacts/<target>/.
cargo test will now test the deserializer against the new artifact.
The test will likely fail at first use.
Note that cargo test runs each test in a separate process by default
to isolate failures and memory usage; if you're attaching a debugger and
are running a single test, set NO_FORK=1 to disable forking.
Once the deserializer has been fixed, check the artifact into the
artifacts/<target>/ directory. The artifact will then act as a
regression test in cargo test runs.
There are two ways to reproduce an issue to investigate a finding:
The following command (with your own artifact contained in a similar path) will run the harness test with your input:
cargo run --bin investigate -- -i artifacts/compiled_module/crash-5d7f403f
The following command will run libfuzzer on the relevant target with your input:
# build single fuzzer for target using instruction in the 'google oss-fuzz integration' section
./fuzzer input
Note that this should work out of the box for crashes,
but timeouts might need a -timeout 25 argument to libfuzzer,
and out of memory might need a -rss_limit_mb=2560 argumnent to libfuzzer.
See Google OSS-Fuzz's documentation on reproducing bugs as well.
To obtain a flamegraph of a harness test, run the following command:
FUZZ_TARGET=compiled_module cargo flamegraph -p aptos-fuzzer --bin flamegraph
It is good to first generate some corpus and run the fuzzer over it for a bit (to find new corpus). The larger corpus, the better flamegraph you will obtain.
To test coverage of our fuzzers you can run the following command with grcov:
RUSTFLAGS='--cfg feature="fuzzing"' CORPUS_PATH=fuzz/corpus cargo xtest --html-cov-dir <some path for html output> -p aptos-fuzzer -- --test-threads 1 --ignored coverage
To integrate our fuzzers with Google OSS-Fuzz project, we need to have one binary per fuzzer. This can also be handy when you want to analyze a fuzzer with tools like Instruments. For this, build.rs can create a fuzzer binary based on an environement variable. Use it as such:
cd aptos-core/testsuite/aptos-fuzzer
fuzz/google-oss-fuzz/build_fuzzer.sh ConsensusProposal .
./ConsensusProposal
You need to use llvm-symbolizer, see https://github.com/rust-fuzz/cargo-fuzz/issues/160
cc failedMake sure Xcode is updated to the latest version. Remeber to actually
xcode-select the new app folder and cargo clean before rebuilding again.
sudo xcode-select -s /Applications/Xcode_X.Y.Z.app
If you get a linker error like
$ RUSTC_BOOTSTRAP=1 cargo run --bin aptos-fuzzer --release fuzz <target>
# ...
error: linking with `cc` failed: exit code: 1
|
= note: "cc" "-m64" "-L" "/Users/philiphayes/.rustup/toolchains/nightly-x86_64-apple-darwin/lib/rustlib/x86_64-apple-darwin/lib" # ...
= note: Undefined symbols for architecture x86_64:
"_CFMutableAttributedStringGetTypeID", referenced from:
_$LT$core_foundation..attributed_string..CFMutableAttributedString$u20$as$u20$core_foundation..base..TCFType$GT$::type_id::h9f6f71bdd347aca0 # ...
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
error: aborting due to previous error
This is probably due to an issue in core-foundation-rs (https://github.com/servo/core-foundation-rs/pull/357)
that was fixed in the latest version, but one of our transitive dependencies
native-tls only has the update in its master branch. To fix this problem, add
the following to the end of aptos-core/Cargo.toml:
[patch.crates-io]
native-tls = { git = "https://github.com/sfackler/rust-native-tls" }