aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Boccassi <bluca@debian.org>2020-05-20 06:56:49 +0100
committerGitHub <noreply@github.com>2020-05-19 22:56:49 -0700
commit8ca308e0db5269a0d944e1765872ac872fa0f5c9 (patch)
tree1d3273d4c7ae23ff2a656eff2b6aed32805a3ebb
parente8ef6095687d74cdb21bb53531a9667f4f502764 (diff)
downloadoss-fuzz-8ca308e0db5269a0d944e1765872ac872fa0f5c9.tar.gz
libzmq: add maintainer, add UBSAN (#3829)
* Add another maintainer to libzmq's CC list * Enable UBSAN for libzmq * libzmq: disable afl fuzzer, CI fails * libsodium: do not let libsodium's autogen.sh download files from gnu.org There is no sanity check and if the download fails because gnu.org is down the build fails with unhelpful errors
-rwxr-xr-xprojects/libzmq/build.sh2
-rw-r--r--projects/libzmq/project.yaml4
2 files changed, 5 insertions, 1 deletions
diff --git a/projects/libzmq/build.sh b/projects/libzmq/build.sh
index 8dce7ea8f..76758d2a8 100755
--- a/projects/libzmq/build.sh
+++ b/projects/libzmq/build.sh
@@ -18,7 +18,7 @@
# build project and dependencies
cd "${SRC}/libsodium"
-./autogen.sh
+DO_NOT_UPDATE_CONFIG_SCRIPTS=1 ./autogen.sh
./configure --disable-shared
make -j$(nproc) V=1 install DESTDIR=/tmp/zmq_install_dir
diff --git a/projects/libzmq/project.yaml b/projects/libzmq/project.yaml
index 59b178c3a..e2a811558 100644
--- a/projects/libzmq/project.yaml
+++ b/projects/libzmq/project.yaml
@@ -4,9 +4,13 @@ primary_contact: "bluca@debian.org"
auto_ccs:
- "luca.boccassi@gmail.com"
- "somdoron@gmail.com"
+ - "simon.giesecke@gmail.com"
+fuzzing_engines:
+ - libfuzzer
sanitizers:
- address
- memory
+ - undefined
architectures:
- x86_64
- i386