fuzz: Dump error file as hex instead of using cat (#1054)

* Dump file as hex instead of using cat

* Give better instructions of what to do
This commit is contained in:
Jon Cinque 2021-01-11 23:04:11 +01:00 committed by GitHub
parent 608b75a115
commit da71944406
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 4 deletions

View File

@ -22,8 +22,6 @@ if [[ -z $2 ]]; then
usage "No runtime provided"
fi
set -x
HFUZZ_RUN_ARGS="--run_time $run_time --exit_upon_crash" cargo hfuzz run $fuzz_target
# Until https://github.com/rust-fuzz/honggfuzz-rs/issues/16 is resolved,
@ -32,8 +30,15 @@ exit_status=0
for crash_file in ./hfuzz_workspace/"$fuzz_target"/*.fuzz; do
# Check if the glob gets expanded to existing files.
if [[ -e "$crash_file" ]]; then
echo ".fuzz file $crash_file found, meaning some error occurred, try to reproduce locall with the contents of the file:"
cat "$crash_file"
echo "Error: .fuzz file $crash_file found, reproduce locally with the hexdump:"
od -t x1 "$crash_file"
crash_file_base=$(basename $crash_file)
hex_output_filename=hex_"$crash_file_base"
echo "Copy / paste this output into a normal file (e.g. $hex_output_filename)"
echo "Reconstruct the binary file using:"
echo "xxd -r $hex_output_filename > $crash_file_base"
echo "To reproduce the problem, run:"
echo "cargo hfuzz run-debug $fuzz_target $crash_file_base"
exit_status=1
fi
done