aboutsummaryrefslogtreecommitdiff
path: root/fuzz/fuzz_process_packet.c
diff options
context:
space:
mode:
authorLuca <deri@ntop.org>2019-10-31 08:58:03 +0100
committerLuca <deri@ntop.org>2019-10-31 08:58:03 +0100
commitcb79d89f833f4a4d8b4ef237a504a7a79d3f6bd1 (patch)
tree06da9b79b3eaa6a6dfbd6f8c2ca7b2a45e30a3dd /fuzz/fuzz_process_packet.c
parent2e178d0f05761f9363edcbb9e1185fa6b224c366 (diff)
parentedf0b171e22764a263c053f4eda2561b5520ec1a (diff)
Merge branch 'dev' of https://github.com/ntop/nDPI into dev
Diffstat (limited to 'fuzz/fuzz_process_packet.c')
-rw-r--r--fuzz/fuzz_process_packet.c28
1 files changed, 28 insertions, 0 deletions
diff --git a/fuzz/fuzz_process_packet.c b/fuzz/fuzz_process_packet.c
new file mode 100644
index 000000000..88319b419
--- /dev/null
+++ b/fuzz/fuzz_process_packet.c
@@ -0,0 +1,28 @@
+#include "ndpi_api.h"
+
+#include <stdint.h>
+#include <stdio.h>
+
+struct ndpi_detection_module_struct *ndpi_info_mod = NULL;
+struct ndpi_flow_struct *ndpi_flow;
+struct ndpi_id_struct *src;
+struct ndpi_id_struct *dst;
+
+int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
+ if (ndpi_info_mod == NULL) {
+ ndpi_info_mod = ndpi_init_detection_module();
+ NDPI_PROTOCOL_BITMASK all;
+ NDPI_BITMASK_SET_ALL(all);
+ ndpi_set_protocol_detection_bitmask2(ndpi_info_mod, &all);
+ ndpi_flow = ndpi_flow_malloc(SIZEOF_FLOW_STRUCT);
+ src = ndpi_malloc(SIZEOF_ID_STRUCT);
+ dst = ndpi_malloc(SIZEOF_ID_STRUCT);
+ }
+
+ memset(ndpi_flow, 0, SIZEOF_FLOW_STRUCT);
+ memset(src, 0, SIZEOF_ID_STRUCT);
+ memset(dst, 0, SIZEOF_ID_STRUCT);
+ ndpi_detection_process_packet(ndpi_info_mod, ndpi_flow, Data, Size, 0, src, dst);
+
+ return 0;
+}