]> git.ipfire.org Git - thirdparty/systemd.git/blame - tools/oss-fuzz.sh
test: make coverage runs happy with capsule@.service
[thirdparty/systemd.git] / tools / oss-fuzz.sh
CommitLineData
ff12a795 1#!/usr/bin/env bash
db9ecf05 2# SPDX-License-Identifier: LGPL-2.1-or-later
7db7d5b7
JR
3
4set -ex
5
6export LC_CTYPE=C.UTF-8
7
36cd9913
ZJS
8export CC=${CC:-clang}
9export CXX=${CXX:-clang++}
10clang_version="$($CC --version | sed -nr 's/.*version ([^ ]+?) .*/\1/p' | sed -r 's/-$//')"
11
31e57a35 12SANITIZER=${SANITIZER:-address -fsanitize-address-use-after-scope}
85ed9124 13flags="-O1 -fno-omit-frame-pointer -g -DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION -fsanitize=$SANITIZER"
31e57a35 14
36cd9913
ZJS
15clang_lib="/usr/lib64/clang/${clang_version}/lib/linux"
16[ -d "$clang_lib" ] || clang_lib="/usr/lib/clang/${clang_version}/lib/linux"
17
31e57a35
JR
18export CFLAGS=${CFLAGS:-$flags}
19export CXXFLAGS=${CXXFLAGS:-$flags}
36cd9913
ZJS
20export LDFLAGS=${LDFLAGS:--L${clang_lib}}
21
31e57a35
JR
22export WORK=${WORK:-$(pwd)}
23export OUT=${OUT:-$(pwd)/out}
f7e0d22d 24mkdir -p "$OUT"
31e57a35 25
f7e0d22d
FS
26build="$WORK/build"
27rm -rf "$build"
28mkdir -p "$build"
7d941c06 29
7f9a0d6d
JJ
30meson_args=("-Db_lundef=false")
31
31e57a35 32if [ -z "$FUZZING_ENGINE" ]; then
7f9a0d6d 33 meson_args+=("-Dllvm-fuzz=true")
1f034000 34else
7f9a0d6d 35 meson_args+=("-Doss-fuzz=true" "--auto-features=disabled")
2fd1beb3
EV
36
37 apt-get update
38 apt-get install -y gperf m4 gettext python3-pip \
b22f5ed5 39 libcap-dev libmount-dev \
dfca5587 40 pkg-config wget python3-jinja2 zipmerge zstd
4b65fc87 41
b22f5ed5
EV
42 if [[ "$ARCHITECTURE" == i386 ]]; then
43 apt-get install -y pkg-config:i386 libcap-dev:i386 libmount-dev:i386
44 fi
45
4997d1b9
EV
46 pip3 install -r .github/workflows/requirements.txt --require-hashes
47
48 # https://github.com/google/oss-fuzz/issues/6868
49 ORIG_PYTHONPATH=$(python3 -c 'import sys;print(":".join(sys.path[1:]))')
50 export PYTHONPATH="$ORIG_PYTHONPATH:/usr/lib/python3/dist-packages/"
2fd1beb3 51
1f034000 52 if [[ "$SANITIZER" == undefined ]]; then
c84059f1
EV
53 additional_ubsan_checks=pointer-overflow,alignment
54 UBSAN_FLAGS="-fsanitize=$additional_ubsan_checks -fno-sanitize-recover=$additional_ubsan_checks"
1f034000
EV
55 CFLAGS="$CFLAGS $UBSAN_FLAGS"
56 CXXFLAGS="$CXXFLAGS $UBSAN_FLAGS"
57 fi
ebd4541e
EV
58
59 if [[ "$SANITIZER" == introspector ]]; then
60 # fuzz-introspector passes -fuse-ld=gold and -flto using CFLAGS/LDFLAGS and due to
61 # https://github.com/mesonbuild/meson/issues/6377#issuecomment-575977919 and
62 # https://github.com/mesonbuild/meson/issues/6377 it doesn't mix well with meson.
63 # It's possible to build systemd with duct tape there using something like
64 # https://github.com/google/oss-fuzz/pull/7583#issuecomment-1104011067 but
65 # apparently even with gold and lto some parts of systemd are missing from
66 # reports (presumably due to https://github.com/google/oss-fuzz/issues/7598).
67 # Let's just fail here for now to make it clear that fuzz-introspector isn't supported.
68 exit 1
69 fi
31e57a35
JR
70fi
71
7f9a0d6d 72if ! meson setup "$build" "${meson_args[@]}"; then
f7e0d22d 73 cat "$build/meson-logs/meson-log.txt"
77591e97
EV
74 exit 1
75fi
76
f7e0d22d 77ninja -v -C "$build" fuzzers
7db7d5b7 78
4b65fc87
EV
79# Compressed BCD files are kept in test/test-bcd so let's unpack them
80# and put them all in the seed corpus.
81bcd=$(mktemp -d)
82for i in test/test-bcd/*.zst; do
83 unzstd "$i" -o "$bcd/$(basename "${i%.zst}")";
84done
85zip -jqr "$OUT/fuzz-bcd_seed_corpus.zip" "$bcd"
86rm -rf "$bcd"
87
e0ec0450
EV
88hosts=$(mktemp)
89wget -O "$hosts" https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts
90zip -jq "$OUT/fuzz-etc-hosts_seed_corpus.zip" "$hosts"
91rm -rf "$hosts"
92
93b575b2
ZJS
93# The seed corpus is a separate flat archive for each fuzzer,
94# with a fixed name ${fuzzer}_seed_corpus.zip.
81f84a2c 95for d in test/fuzz/fuzz-*; do
bef8d18b
FS
96 fuzzer="$(basename "$d")"
97 # Include the build-generated corpora if any as well
98 readarray -t generated < <(find "$build/test/fuzz" -maxdepth 1 -name "${fuzzer}*" -type f)
99 zip -jqr "$OUT/${fuzzer}_seed_corpus.zip" "$d" "${generated[@]}"
2bd37c5b
JR
100done
101
102# get fuzz-dns-packet corpus
f7e0d22d
FS
103df="$build/dns-fuzzing"
104git clone --depth 1 https://github.com/CZ-NIC/dns-fuzzing "$df"
105zip -jqr "$OUT/fuzz-dns-packet_seed_corpus.zip" "$df/packet"
7db7d5b7 106
4287c855
ZJS
107install -Dt "$OUT/src/shared/" \
108 "$build"/src/shared/libsystemd-shared-*.so \
109 "$build"/src/core/libsystemd-core-*.so
7db7d5b7 110
b22f5ed5
EV
111# Most i386 libraries have to be brought to the runtime environment somehow. Ideally they
112# should be linked statically but since it isn't possible another way to keep them close
113# to the fuzz targets is used here. The dependencies are copied to "$OUT/src/shared" and
e11c9ba7 114# then 'rpath' is tweaked to make it possible for the linker to find them there. "$OUT/src/shared"
b22f5ed5
EV
115# is chosen because the runtime search path of all the fuzz targets already points to it
116# to load "libsystemd-shared" and "libsystemd-core". Stuff like that should be avoided on
117# x86_64 because it tends to break coverage reports, fuzz-introspector, CIFuzz and so on.
118if [[ "$ARCHITECTURE" == i386 ]]; then
e11c9ba7 119 for lib_path in $(ldd "$OUT"/src/shared/libsystemd-shared-*.so | awk '/=> \/lib/ { print $3 }'); do
b22f5ed5
EV
120 lib_name=$(basename "$lib_path")
121 cp "$lib_path" "$OUT/src/shared"
122 patchelf --set-rpath \$ORIGIN "$OUT/src/shared/$lib_name"
123 done
124 patchelf --set-rpath \$ORIGIN "$OUT"/src/shared/libsystemd-shared-*.so
125fi
126
f7e0d22d 127wget -O "$OUT/fuzz-json.dict" https://raw.githubusercontent.com/rc0r/afl-fuzz/master/dictionaries/json.dict
6315d12b 128
f7e0d22d
FS
129find "$build" -maxdepth 1 -type f -executable -name "fuzz-*" -exec mv {} "$OUT" \;
130find src -type f -name "fuzz-*.dict" -exec cp {} "$OUT" \;
131cp src/fuzz/*.options "$OUT"
69aa4982
EV
132
133if [[ "$MERGE_WITH_OSS_FUZZ_CORPORA" == "yes" ]]; then
134 for f in "$OUT/"fuzz-*; do
135 [[ -x "$f" ]] || continue
136 fuzzer=$(basename "$f")
137 t=$(mktemp)
138 if wget -O "$t" "https://storage.googleapis.com/systemd-backup.clusterfuzz-external.appspot.com/corpus/libFuzzer/systemd_${fuzzer}/public.zip"; then
139 zipmerge "$OUT/${fuzzer}_seed_corpus.zip" "$t"
140 fi
141 rm -rf "$t"
142 done
143fi