31 lines
872 B
Bash
Executable File
31 lines
872 B
Bash
Executable File
#!/bin/bash
|
|
######################################################################
|
|
# DESCRIPTION: Fuzzer setup to be run as a normal user
|
|
#
|
|
# SPDX-FileCopyrightText: 2019 Eric Rippey
|
|
# SPDX-License-Identifier: LGPL-3.0-only OR Artistic-2.0
|
|
######################################################################
|
|
|
|
# This is the portion of the setup for fuzzing that does not require root access.
|
|
|
|
set -e
|
|
|
|
# Build instrumented version of verilator
|
|
pushd ../..
|
|
autoconf
|
|
AFL_HARDEN=1 CXX=afl-g++ ./configure $(cd ..; pwd)
|
|
make clean
|
|
make -j $(ncpus)
|
|
popd
|
|
|
|
# Create a listing of likely snippets for the fuzzer to use.
|
|
# Not essential, but makes things likely to be found faster.
|
|
./generate_dictionary
|
|
|
|
# Set up input directory
|
|
mkdir in1
|
|
echo "module m; initial \$display(\"Hello world!\n\"); endmodule" > in1/1.v
|
|
|
|
# Compile wrapper program
|
|
AFL_HARDEN=1 CXX=afl-g++ make wrapper
|