#!/bin/bash -eu # Copyright 2020 Google Inc. # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # ################################################################################ ORIG_DIR=$(pwd) wget -qO- https://botan.randombit.net/releases/Botan-2.12.1.tar.xz | tar xvJ cd Botan-2.12.1 ./configure.py --prefix=/usr --cc-bin=$CXX --cc-abi-flags="$CXXFLAGS" \ --disable-modules=locking_allocator \ --unsafe-fuzzer-mode --build-fuzzers=libfuzzer \ --with-fuzzer-lib='FuzzingEngine' make make install cd $ORIG_DIR mkdir fuzzing_corpus cd rnp/src/tests/data find . -type f -print0 | xargs -0 -I bob -- cp bob $ORIG_DIR/fuzzing_corpus/ cd $ORIG_DIR # -DENABLE_SANITIZERS=0 because oss-fuzz will add the sanitizer flags in CFLAGS # See https://github.com/google/oss-fuzz/pull/4189 to explain CMAKE_C_LINK_EXECUTABLE mkdir rnp-build cd rnp-build cmake \ -DENABLE_SANITIZERS=0 \ -DENABLE_FUZZERS=1 \ -DCMAKE_C_COMPILER=$CC \ -DCMAKE_CXX_COMPILER=$CXX \ -DCMAKE_C_LINK_EXECUTABLE="$CXX -o " \ -DCMAKE_INSTALL_PREFIX=/usr \ -DBUILD_SHARED_LIBS=on \ -DBUILD_TESTING=off \ -DCMAKE_VERBOSE_MAKEFILE:BOOL=ON \ ../rnp/ make FUZZERS="fuzz_dump fuzz_keyring" for f in $FUZZERS; do cp src/fuzzing/$f "${OUT}/" chrpath -r '$ORIGIN/lib' "${OUT}/$f" zip -j -r "${OUT}/${f}_seed_corpus.zip" $ORIG_DIR/fuzzing_corpus/ done mkdir -p "${OUT}/lib" cp src/lib/librnp-0.so.0 "${OUT}/lib/" cp /usr/lib/libbotan-2.so.12 "${OUT}/lib/" cp /lib/x86_64-linux-gnu/libjson-c.so.2 "${OUT}/lib/"