52f1115571
Add glyphs U+F030-U+F039 (in Private Use Area) as references to U+0030-U+0039 (digits 0-9), because font Symbol.ttf has these glyphs and they are necessary for compatibility with MS Office file formats. Change-Id: If66ac3ee6fda9c161b36fd6eb459c99646e87541 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/105997 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Tested-by: Jenkins
55 lines
1.7 KiB
Bash
Executable file
55 lines
1.7 KiB
Bash
Executable file
#!/bin/bash -e
|
|
|
|
if [ -z "${OUT}" ] || [ -z "${SRC}" ] || [ -z "${WORK}" ]; then
|
|
echo "OUT, SRC or WORK not set - script expects to be called inside oss-fuzz build env"
|
|
exit 1
|
|
fi
|
|
|
|
#shuffle CXXFLAGS -stdlib=libc++ arg into CXX as well because we use
|
|
#the CXX as the linker and need to pass -stdlib=libc++ to build
|
|
export CXX="$CXX -stdlib=libc++ -fsanitize-blacklist=$SRC/libreoffice/bin/sanitize-excludelist.txt"
|
|
#similarly force the -fsanitize etc args in as well as pthread to get
|
|
#things to link successfully during the build
|
|
export LDFLAGS="$CFLAGS -Wl,--compress-debug-sections,zlib -lpthread"
|
|
|
|
df -h $OUT $WORK
|
|
|
|
cd $WORK
|
|
$SRC/libreoffice/autogen.sh --with-distro=LibreOfficeOssFuzz --with-external-tar=$SRC
|
|
|
|
make clean
|
|
|
|
#build-time rsc tool leaks a titch
|
|
export ASAN_OPTIONS="detect_leaks=0"
|
|
|
|
make fuzzers
|
|
|
|
pushd instdir/program
|
|
head -c -14 services.rdb > templateservices.rdb
|
|
tail -c +85 ./services/services.rdb >> templateservices.rdb
|
|
for a in *fuzzer; do
|
|
#some minimal fonts required
|
|
mv $a $OUT
|
|
mkdir -p $OUT/$a.fonts
|
|
cp $SRC/f543e6e2d7275557a839a164941c0a86e5f2c3f2a0042bfc434c88c6dde9e140-opens___.ttf ../share/fonts/truetype/Liberation* $OUT/$a.fonts
|
|
#minimal runtime requirements
|
|
cp templateservices.rdb $OUT/$a.services.rdb
|
|
cp types.rdb $OUT/$a.types.rdb
|
|
cp types/offapi.rdb $OUT/$a.moretypes.rdb
|
|
cat > $OUT/$a.unorc << EOF
|
|
[Bootstrap]
|
|
URE_INTERNAL_LIB_DIR=\${ORIGIN}
|
|
UNO_TYPES=\${ORIGIN}/$a.types.rdb \${ORIGIN}/$a.moretypes.rdb
|
|
UNO_SERVICES=\${ORIGIN}/$a.services.rdb
|
|
EOF
|
|
done
|
|
popd
|
|
|
|
df -h $OUT $WORK
|
|
|
|
#starting corpuses
|
|
cp $SRC/*_seed_corpus.zip $OUT
|
|
#fuzzing dictionaries
|
|
cp $SRC/*.dict $OUT
|
|
#options files
|
|
cp $SRC/libreoffice/vcl/workben/*.options $OUT
|