diff options
author | Ivan Nardi <12729895+IvanNardi@users.noreply.github.com> | 2022-12-06 17:41:58 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-06 17:41:58 +0100 |
commit | ada4fe4aa8f88300cfc0dbe6ee965975274b1c40 (patch) | |
tree | 08010d2055d0159330ded8e5c15113deb0c41c3b /.gitignore | |
parent | 946c3dba0f6c393c2e41b98103cec3e7308fbf2c (diff) |
fuzz: add a new fuzzer testing memory allocation failures (#1818)
Try to fuzz error paths triggered by allocation errors.
Fix some errors already found by this new fuzzer.
Basic idea taken from: https://github.com/harfbuzz/harfbuzz/pull/2566/files
`FUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION` is a standard define used to
(not)compile specific code in fuzzing builds.
See: https://llvm.org/docs/LibFuzzer.html
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index d58335884..217610788 100644 --- a/.gitignore +++ b/.gitignore @@ -52,7 +52,11 @@ /fuzz/Makefile /fuzz/fuzz_ndpi_reader /fuzz/fuzz_process_packet +/fuzz/fuzz_ndpi_reader_alloc_fail /fuzz/fuzz_quic_get_crypto_data +/fuzz/fuzz_ndpi_reader_alloc_fail_seed_corpus.zip +/fuzz/fuzz_ndpi_reader_seed_corpus.zip +/fuzz/fuzz_quic_get_crypto_data_seed_corpus.zip /influxdb/Makefile /install-sh /libndpi.pc |