diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2024-04-02 04:42:06 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2024-04-02 04:42:06 +0200 |
commit | f25e290be0b6bd40553c33bd0e3fb8ec3234ba91 (patch) | |
tree | cfc5f796cb9212feb77f0666a5111bd5a4e7910a /fuzz/fuzz_ds_bitmap64_fuse.cpp | |
parent | 21572635ab15a993600c4efd1246ac0691968a75 (diff) | |
parent | 599cc0f4b83a96c247a92aaaa3f39acfec9e1dbe (diff) |
Merge remote-tracking branch 'origin/dev' into fix/unused-params-and-fnsfix/unused-params-and-fns
Diffstat (limited to 'fuzz/fuzz_ds_bitmap64_fuse.cpp')
-rw-r--r-- | fuzz/fuzz_ds_bitmap64_fuse.cpp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/fuzz/fuzz_ds_bitmap64_fuse.cpp b/fuzz/fuzz_ds_bitmap64_fuse.cpp new file mode 100644 index 000000000..381c16b5c --- /dev/null +++ b/fuzz/fuzz_ds_bitmap64_fuse.cpp @@ -0,0 +1,54 @@ +#include "ndpi_api.h" +#include "fuzz_common_code.h" + +#include <stdint.h> +#include "fuzzer/FuzzedDataProvider.h" + +extern "C" int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size) { + FuzzedDataProvider fuzzed_data(data, size); + u_int16_t i, num_iteration, is_added = 0; + ndpi_bitmap64_fuse *b; + bool rc; + u_int64_t value, value_added; + + /* To allow memory allocation failures */ + fuzz_set_alloc_callbacks_and_seed(size); + + b = ndpi_bitmap64_fuse_alloc(); + + if(fuzzed_data.ConsumeBool()) + ndpi_bitmap64_fuse_compress(b); + + num_iteration = fuzzed_data.ConsumeIntegral<u_int16_t>(); + for (i = 0; i < num_iteration; i++) { + value = fuzzed_data.ConsumeIntegral<u_int64_t>(); + + rc = ndpi_bitmap64_fuse_set(b, value); + /* Keep one random entry really added */ + if (rc == true && is_added == 0 && fuzzed_data.ConsumeBool()) { + value_added = value; + is_added = 1; + } + } + + if(fuzzed_data.ConsumeBool()) + ndpi_bitmap64_fuse_compress(b); + + /* "Random" search */ + num_iteration = fuzzed_data.ConsumeIntegral<u_int8_t>(); + for (i = 0; i < num_iteration; i++) { + value = fuzzed_data.ConsumeIntegral<u_int64_t>(); + + ndpi_bitmap64_fuse_isset(b, value); + } + /* Search of an added entry */ + if (is_added) { + ndpi_bitmap64_fuse_isset(b, value_added); + } + + ndpi_bitmap64_fuse_size(b); + + ndpi_bitmap64_fuse_free(b); + + return 0; +} |