2018-06-12 01:27:33 +00:00
|
|
|
#!/bin/bash -eu
|
|
|
|
# Copyright 2018 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.
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
|
|
|
# Build libaom
|
2018-07-17 22:41:08 +00:00
|
|
|
build_dir=$WORK/build
|
|
|
|
mkdir -p ${build_dir}
|
|
|
|
pushd ${build_dir}
|
|
|
|
# Remove files generated by the previous build.
|
2018-06-12 01:27:33 +00:00
|
|
|
rm -rf ./*
|
2018-07-03 00:31:39 +00:00
|
|
|
|
|
|
|
# oss-fuzz has 2 GB total memory allocation limit. So, we limit per-allocation
|
2018-07-24 00:52:16 +00:00
|
|
|
# limit in libaom to 1 GB to avoid OOM errors. A smaller per-allocation is
|
|
|
|
# needed for MemorySanitizer (see bug oss-fuzz:9497 and bug oss-fuzz:9499).
|
|
|
|
if [[ $CFLAGS = *sanitize=memory* ]]; then
|
|
|
|
extra_c_flags='-DAOM_MAX_ALLOCABLE_MEMORY=536870912'
|
|
|
|
else
|
|
|
|
extra_c_flags='-DAOM_MAX_ALLOCABLE_MEMORY=1073741824'
|
|
|
|
fi
|
|
|
|
# Also, enable DO_RANGE_CHECK_CLAMP to suppress the noise of integer overflows
|
|
|
|
# in the transform functions.
|
|
|
|
extra_c_flags+=' -DDO_RANGE_CHECK_CLAMP=1'
|
2018-07-03 00:31:39 +00:00
|
|
|
|
2018-07-18 00:41:55 +00:00
|
|
|
extra_cmake_flags=
|
|
|
|
# MemorySanitizer requires that all program code is instrumented. Therefore we
|
|
|
|
# need to replace all inline assembly code that writes to memory with pure C
|
|
|
|
# code. Disable all assembly code for MemorySanitizer.
|
|
|
|
if [[ $CFLAGS = *sanitize=memory* ]]; then
|
|
|
|
extra_cmake_flags+="-DAOM_TARGET_CPU=generic"
|
|
|
|
fi
|
|
|
|
|
2018-07-06 22:11:43 +00:00
|
|
|
cmake $SRC/aom -DCMAKE_BUILD_TYPE=Release -DCMAKE_C_FLAGS_RELEASE='-O3 -g' \
|
2019-06-14 15:29:20 +00:00
|
|
|
-DCMAKE_CXX_FLAGS_RELEASE='-O3 -g' -DCONFIG_PIC=1 -DCONFIG_LOWBITDEPTH=1 \
|
2018-07-19 02:31:55 +00:00
|
|
|
-DCONFIG_AV1_ENCODER=0 -DENABLE_EXAMPLES=0 -DENABLE_DOCS=0 -DENABLE_TESTS=0 \
|
2018-07-03 00:31:39 +00:00
|
|
|
-DCONFIG_SIZE_LIMIT=1 -DDECODE_HEIGHT_LIMIT=12288 -DDECODE_WIDTH_LIMIT=12288 \
|
2018-07-18 00:41:55 +00:00
|
|
|
-DAOM_EXTRA_C_FLAGS="${extra_c_flags}" \
|
|
|
|
-DAOM_EXTRA_CXX_FLAGS="${extra_c_flags}" ${extra_cmake_flags}
|
2018-06-12 01:27:33 +00:00
|
|
|
make -j$(nproc)
|
|
|
|
popd
|
|
|
|
|
2018-06-12 19:41:00 +00:00
|
|
|
# build fuzzers
|
2018-06-12 20:00:26 +00:00
|
|
|
fuzzer_src_name=av1_dec_fuzzer
|
2019-06-14 15:29:20 +00:00
|
|
|
fuzzer_name=${fuzzer_src_name}
|
2018-06-12 01:27:33 +00:00
|
|
|
|
2019-06-14 15:29:20 +00:00
|
|
|
$CXX $CXXFLAGS -std=c++11 \
|
|
|
|
-I$SRC/aom \
|
|
|
|
-I${build_dir} \
|
|
|
|
-Wl,--start-group \
|
|
|
|
$LIB_FUZZING_ENGINE \
|
|
|
|
$SRC/aom/examples/${fuzzer_src_name}.cc -o $OUT/${fuzzer_name} \
|
|
|
|
${build_dir}/libaom.a -Wl,--end-group
|
2018-06-12 19:41:00 +00:00
|
|
|
|
2019-06-14 15:29:20 +00:00
|
|
|
# copy seed corpus.
|
|
|
|
cp $SRC/dec_fuzzer_seed_corpus.zip $OUT/${fuzzer_name}_seed_corpus.zip
|
|
|
|
cp $SRC/av1_dec_fuzzer.dict $OUT/${fuzzer_name}.dict
|
2018-06-12 01:27:33 +00:00
|
|
|
|