Commit 3478ec69c1196766a49325edd355656eb660214e

DavidKorczynski 2021-02-23T14:01:31

Added fuzzer for oss-fuzz integration. (#151)

diff --git a/test/fuzzers/fuzz-mdhtml.c b/test/fuzzers/fuzz-mdhtml.c
new file mode 100644
index 0000000..62428c8
--- /dev/null
+++ b/test/fuzzers/fuzz-mdhtml.c
@@ -0,0 +1,28 @@
+#include <stdint.h>
+#include <stdlib.h>
+#include "md4c-html.h"
+
+static void
+process_output(const MD_CHAR* text, MD_SIZE size, void* userdata)
+{
+   /* This is  dummy function because we dont need any processing on the data */
+   return;
+}
+
+int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size){
+    if (size < 8) {
+        return 0;
+    }
+
+    unsigned int parser_flags = *(unsigned int*)data;
+    data += 4; size -= 4;
+    unsigned int renderer_flags = *(unsigned int*)data;
+    data += 4; size -= 4;
+
+    /* Allocate enough space */
+    char *out = malloc(size*3);
+    md_html(data, size, process_output, out, parser_flags, renderer_flags);
+    free(out);
+
+    return 0;
+}