2016-12-09 15:36:42 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
# Copyright 2016 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
export DEPS_PATH=$SRC/deps
|
|
|
|
export PKG_CONFIG_PATH=$DEPS_PATH/lib/pkgconfig
|
|
|
|
export CPPFLAGS="-I$DEPS_PATH/include"
|
|
|
|
export LDFLAGS="-L$DEPS_PATH/lib"
|
|
|
|
export GNULIB_SRCDIR=$SRC/gnulib
|
|
|
|
|
|
|
|
cd $SRC/libunistring
|
|
|
|
./autogen.sh
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 \
|
|
|
|
./configure --enable-static --disable-shared --prefix=$DEPS_PATH
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
|
|
|
|
|
|
|
cd $SRC/libidn2
|
|
|
|
./bootstrap
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 \
|
|
|
|
./configure --enable-static --disable-shared --disable-doc --disable-gcc-warnings --prefix=$DEPS_PATH
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
|
|
|
|
2018-02-09 18:18:29 +00:00
|
|
|
# always disable assembly in GMP to avoid issues due to SIGILL
|
|
|
|
# https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3119
|
|
|
|
# https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=3159
|
|
|
|
GMP_CONFIGURE_FLAGS="--disable-assembly --disable-fat"
|
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
cd $SRC/gmp
|
|
|
|
bash .bootstrap
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 \
|
2017-08-19 19:08:50 +00:00
|
|
|
./configure --disable-shared --prefix=$DEPS_PATH $GMP_CONFIGURE_FLAGS
|
2017-08-16 15:09:27 +00:00
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
2017-05-09 12:11:19 +00:00
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
cd $SRC/libtasn1
|
|
|
|
CFGFLAGS="--disable-gcc-warnings --disable-gtk-doc --disable-gtk-doc-pdf --disable-doc \
|
|
|
|
--disable-shared --enable-static --prefix=$DEPS_PATH" \
|
|
|
|
make bootstrap
|
|
|
|
make -j$(nproc)
|
|
|
|
make install
|
2017-06-08 14:22:41 +00:00
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
NETTLE_CONFIGURE_FLAGS=""
|
|
|
|
if [[ $CFLAGS = *sanitize=memory* ]]; then
|
|
|
|
NETTLE_CONFIGURE_FLAGS="--disable-assembler --disable-fat"
|
|
|
|
fi
|
|
|
|
cd $SRC/nettle
|
2017-06-08 14:22:41 +00:00
|
|
|
bash .bootstrap
|
2017-08-16 15:09:27 +00:00
|
|
|
ASAN_OPTIONS=detect_leaks=0 \
|
|
|
|
./configure --enable-static --disable-shared --disable-documentation --prefix=$DEPS_PATH $NETTLE_CONFIGURE_FLAGS
|
|
|
|
( make -j$(nproc) || make -j$(nproc) ) && make install
|
|
|
|
if test $? != 0; then
|
|
|
|
echo "Failed to compile nettle"
|
|
|
|
exit 1
|
2017-06-08 14:22:41 +00:00
|
|
|
fi
|
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
|
|
|
|
GNUTLS_CONFIGURE_FLAGS=""
|
|
|
|
if [[ $CFLAGS = *sanitize=memory* ]]; then
|
|
|
|
GNUTLS_CONFIGURE_FLAGS="--disable-hardware-acceleration"
|
|
|
|
fi
|
|
|
|
cd $SRC/gnutls
|
|
|
|
make autoreconf
|
|
|
|
ASAN_OPTIONS=detect_leaks=0 LIBS="-lunistring" CXXFLAGS="$CXXFLAGS -L$DEPS_PATH/lib" \
|
2017-08-18 14:43:58 +00:00
|
|
|
./configure --enable-fuzzer-target --disable-gcc-warnings --enable-static --disable-shared --disable-doc --disable-tests \
|
2017-08-16 15:09:27 +00:00
|
|
|
--disable-tools --disable-cxx --disable-maintainer-mode --disable-libdane --without-p11-kit $GNUTLS_CONFIGURE_FLAGS
|
2017-08-08 13:57:04 +00:00
|
|
|
|
|
|
|
# Do not use the syscall interface for randomness in oss-fuzz, it seems
|
|
|
|
# to confuse memory sanitizer.
|
|
|
|
sed -i 's|include <sys/syscall.h>|include <sys/syscall.h>\n#undef SYS_getrandom|' lib/nettle/sysrng-linux.c
|
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
make -j$(nproc) -C gl
|
|
|
|
make -j$(nproc) -C lib
|
2016-12-09 15:36:42 +00:00
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
cd fuzz
|
|
|
|
make oss-fuzz
|
|
|
|
find . -name '*_fuzzer' -exec cp -v '{}' $OUT ';'
|
|
|
|
find . -name '*_fuzzer.dict' -exec cp -v '{}' $OUT ';'
|
|
|
|
find . -name '*_fuzzer.options' -exec cp -v '{}' $OUT ';'
|
2016-12-09 15:36:42 +00:00
|
|
|
|
2017-08-16 15:09:27 +00:00
|
|
|
for dir in *_fuzzer.in; do
|
|
|
|
fuzzer=$(basename $dir .in)
|
|
|
|
zip -rj "$OUT/${fuzzer}_seed_corpus.zip" "${dir}/"
|
2016-12-10 17:28:26 +00:00
|
|
|
done
|