23 lines
864 B
Bash
Executable File
23 lines
864 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Copyright (c) 2016-2021 The Hush developers
|
|
# Distributed under the GPLv3 software license, see the accompanying
|
|
# file COPYING or https://www.gnu.org/licenses/gpl-3.0.en.html
|
|
# A wrapper around ./util/build.sh for instrumenting the build with AFL:
|
|
# ./util/afl/afl-build.sh <directory where AFL is installed> <fuzz case>
|
|
# You may obtain a copy of AFL using ./util/afl/afl-get.sh.
|
|
|
|
set -eu -o pipefail
|
|
|
|
export AFL_INSTALL_DIR=$(realpath "$1")
|
|
FUZZ_CASE="$2"
|
|
shift 2
|
|
export AFL_LOG_DIR="$(pwd)"
|
|
export UTIL=$(realpath "./util")
|
|
|
|
cp "./src/fuzzing/$FUZZ_CASE/fuzz.cpp" src/fuzz.cpp
|
|
|
|
CONFIGURE_FLAGS="--enable-tests=no --enable-fuzz-main" "$UTIL/build.sh" "CC=$UTIL/afl/hush-wrapper-gcc" "CXX=$UTIL/afl/hush-wrapper-g++" AFL_HARDEN=1 "$@"
|
|
|
|
echo "You can now run AFL as follows:"
|
|
echo "$ ./util/afl/afl-run.sh '$AFL_INSTALL_DIR' '$FUZZ_CASE'"
|