2018-12-21 23:10:13 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# build libpng using the upstream-provided build.sh.
|
|
|
|
# it will also build the vanilla (non-proto) fuzz target,
|
|
|
|
# but we discard it.
|
|
|
|
(cd libpng/ && contrib/oss-fuzz/build.sh && rm $OUT/*)
|
|
|
|
|
|
|
|
# Compile png_fuzz_proto.proto; should produce two files in genfiles/:
|
|
|
|
# png_fuzz_proto.pb.cc png_fuzz_proto.pb.h
|
|
|
|
rm -rf genfiles && mkdir genfiles && LPM/external.protobuf/bin/protoc png_fuzz_proto.proto --cpp_out=genfiles
|
|
|
|
|
|
|
|
# compile the upstream-provided vanilla fuzz target
|
|
|
|
# but replace LLVMFuzzerTestOneInput with FuzzPNG so that
|
|
|
|
# png_proto_fuzzer_example.cc can call FuzzPNG from its own
|
|
|
|
# LLVMFuzzerTestOneInput.
|
|
|
|
$CXX $CXXFLAGS -c -DLLVMFuzzerTestOneInput=FuzzPNG libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc -I libpng
|
|
|
|
|
|
|
|
# compile & link the rest
|
|
|
|
$CXX $CXXFLAGS png_proto_fuzzer_example.cc libpng_read_fuzzer.o genfiles/png_fuzz_proto.pb.cc \
|
|
|
|
-I genfiles -I. -I libprotobuf-mutator/ -I LPM/external.protobuf/include \
|
|
|
|
-lz \
|
|
|
|
LPM/src/libfuzzer/libprotobuf-mutator-libfuzzer.a \
|
|
|
|
LPM/src/libprotobuf-mutator.a \
|
|
|
|
LPM/external.protobuf/lib/libprotobuf.a \
|
|
|
|
libpng/.libs/libpng16.a \
|
|
|
|
$LIB_FUZZING_ENGINE \
|
|
|
|
-o $OUT/png_proto_fuzzer_example
|
|
|
|
|
2019-01-24 01:59:58 +00:00
|
|
|
|
|
|
|
echo > dummy.cc
|
|
|
|
|
|
|
|
# Also compile another target, w/o protos but with a specialized custom mutator.
|
|
|
|
$CXX $CXXFLAGS -c libpng/contrib/oss-fuzz/libpng_read_fuzzer.cc -I libpng
|
|
|
|
$CXX $CXXFLAGS dummy.cc \
|
|
|
|
-include fuzzer-test-suite/libpng-1.2.56/png_mutator.h \
|
|
|
|
-D PNG_MUTATOR_DEFINE_LIBFUZZER_CUSTOM_MUTATOR \
|
|
|
|
libpng_read_fuzzer.o \
|
|
|
|
-lz \
|
|
|
|
libpng/.libs/libpng16.a \
|
|
|
|
$LIB_FUZZING_ENGINE \
|
|
|
|
-o $OUT/png_custom_mutator_fuzzer_example
|
|
|
|
|