tests: add libFuzzer based tests
authorPetr Štetiar <ynezz@true.cz>
Sun, 8 Dec 2019 14:11:02 +0000 (15:11 +0100)
committerPetr Štetiar <ynezz@true.cz>
Wed, 25 Dec 2019 09:31:58 +0000 (10:31 +0100)
LibFuzzer is in-process, coverage-guided, evolutionary fuzzing engine.

LibFuzzer is linked with the library under test, and feeds fuzzed inputs
to the library via a specific fuzzing entrypoint (aka "target
function"); the fuzzer then tracks which areas of the code are reached,
and generates mutations on the corpus of input data in order to maximize
the code coverage.

Lets use libFuzzer to fuzz blob and blobmsg parsing for the start.

Ref: https://llvm.org/docs/LibFuzzer.html
Signed-off-by: Petr Štetiar <ynezz@true.cz>
tests/CMakeLists.txt
tests/fuzz/CMakeLists.txt [new file with mode: 0644]
tests/fuzz/corpus/71520a5c4b5ca73903216857abbad54a8002d44a [new file with mode: 0644]
tests/fuzz/corpus/c1dfd96eea8cc2b62785275bca38ac261256e278 [new file with mode: 0644]
tests/fuzz/corpus/c42ac1c46f1d4e211c735cc7dfad4ff8391110e9 [new file with mode: 0644]
tests/fuzz/corpus/valid-blobmsg.bin [new file with mode: 0644]
tests/fuzz/test-fuzz.c [new file with mode: 0644]

index bd2205743318e09b47a5e2d352f610ea1edef536..0cb33427e45a5c5e24c5eb99893563e0fe42979e 100644 (file)
@@ -12,3 +12,7 @@ FOREACH(test_case ${test_cases})
   ADD_UNIT_TEST(${test_case})
   ADD_UNIT_TEST_SAN(${test_case})
 ENDFOREACH(test_case)
+
+IF(CMAKE_C_COMPILER_ID STREQUAL "Clang")
+  ADD_SUBDIRECTORY(fuzz)
+ENDIF()
diff --git a/tests/fuzz/CMakeLists.txt b/tests/fuzz/CMakeLists.txt
new file mode 100644 (file)
index 0000000..cca74fd
--- /dev/null
@@ -0,0 +1,18 @@
+FILE(GLOB test_cases "test-*.c")
+
+MACRO(ADD_FUZZER_TEST name)
+  ADD_EXECUTABLE(${name} ${name}.c)
+  TARGET_COMPILE_OPTIONS(${name} PRIVATE -g -O1 -fno-omit-frame-pointer -fsanitize=fuzzer,address,leak,undefined)
+  TARGET_INCLUDE_DIRECTORIES(${name} PRIVATE ${PROJECT_SOURCE_DIR})
+  TARGET_LINK_OPTIONS(${name} PRIVATE -stdlib=libc++ -fsanitize=fuzzer,address,leak,undefined)
+  TARGET_LINK_LIBRARIES(${name} ubox blobmsg_json json_script ${json})
+  ADD_TEST(
+    NAME ${name}
+    COMMAND ${name} -max_len=256 -timeout=10 -max_total_time=300 ${CMAKE_CURRENT_SOURCE_DIR}/corpus
+  )
+ENDMACRO(ADD_FUZZER_TEST)
+
+FOREACH(test_case ${test_cases})
+  GET_FILENAME_COMPONENT(test_case ${test_case} NAME_WE)
+  ADD_FUZZER_TEST(${test_case})
+ENDFOREACH(test_case)
diff --git a/tests/fuzz/corpus/71520a5c4b5ca73903216857abbad54a8002d44a b/tests/fuzz/corpus/71520a5c4b5ca73903216857abbad54a8002d44a
new file mode 100644 (file)
index 0000000..b4e009d
Binary files /dev/null and b/tests/fuzz/corpus/71520a5c4b5ca73903216857abbad54a8002d44a differ
diff --git a/tests/fuzz/corpus/c1dfd96eea8cc2b62785275bca38ac261256e278 b/tests/fuzz/corpus/c1dfd96eea8cc2b62785275bca38ac261256e278
new file mode 100644 (file)
index 0000000..62f9457
--- /dev/null
@@ -0,0 +1 @@
+6
\ No newline at end of file
diff --git a/tests/fuzz/corpus/c42ac1c46f1d4e211c735cc7dfad4ff8391110e9 b/tests/fuzz/corpus/c42ac1c46f1d4e211c735cc7dfad4ff8391110e9
new file mode 100644 (file)
index 0000000..3d70d85
Binary files /dev/null and b/tests/fuzz/corpus/c42ac1c46f1d4e211c735cc7dfad4ff8391110e9 differ
diff --git a/tests/fuzz/corpus/valid-blobmsg.bin b/tests/fuzz/corpus/valid-blobmsg.bin
new file mode 100644 (file)
index 0000000..2d0c68e
Binary files /dev/null and b/tests/fuzz/corpus/valid-blobmsg.bin differ
diff --git a/tests/fuzz/test-fuzz.c b/tests/fuzz/test-fuzz.c
new file mode 100644 (file)
index 0000000..7153847
--- /dev/null
@@ -0,0 +1,76 @@
+#include <stdio.h>
+#include <stdint.h>
+#include <stddef.h>
+
+#include "blob.h"
+#include "blobmsg.h"
+
+static void fuzz_blobmsg_parse(const uint8_t *data, size_t size)
+{
+       enum {
+               FOO_MESSAGE,
+               FOO_LIST,
+               FOO_TESTDATA,
+               __FOO_MAX
+       };
+
+       static const struct blobmsg_policy foo_policy[] = {
+               [FOO_MESSAGE] = {
+                       .name = "message",
+                       .type = BLOBMSG_TYPE_STRING,
+               },
+               [FOO_LIST] = {
+                       .name = "list",
+                       .type = BLOBMSG_TYPE_ARRAY,
+               },
+               [FOO_TESTDATA] = {
+                       .name = "testdata",
+                       .type = BLOBMSG_TYPE_TABLE,
+               },
+       };
+
+       struct blob_attr *tb[__FOO_MAX];
+
+       blobmsg_parse(foo_policy, __FOO_MAX, tb, (uint8_t *)data, size);
+       blobmsg_parse_array(foo_policy, __FOO_MAX, tb, (uint8_t *)data, size);
+}
+
+static void fuzz_blob_parse(const uint8_t *data, size_t size)
+{
+       enum {
+               FOO_ATTR_NESTED,
+               FOO_ATTR_BINARY,
+               FOO_ATTR_STRING,
+               FOO_ATTR_INT8,
+               FOO_ATTR_INT16,
+               FOO_ATTR_INT32,
+               FOO_ATTR_INT64,
+               FOO_ATTR_DOUBLE,
+               __FOO_ATTR_MAX
+       };
+
+
+       static const struct blob_attr_info foo_policy[__FOO_ATTR_MAX] = {
+               [FOO_ATTR_NESTED] = { .type = BLOB_ATTR_NESTED },
+               [FOO_ATTR_BINARY] = { .type = BLOB_ATTR_BINARY },
+               [FOO_ATTR_STRING] = { .type = BLOB_ATTR_STRING },
+               [FOO_ATTR_INT8] = { .type = BLOB_ATTR_INT8 },
+               [FOO_ATTR_INT16] = { .type = BLOB_ATTR_INT16 },
+               [FOO_ATTR_INT32] = { .type = BLOB_ATTR_INT32 },
+               [FOO_ATTR_INT64] = { .type = BLOB_ATTR_INT64 },
+               [FOO_ATTR_DOUBLE] = { .type = BLOB_ATTR_DOUBLE },
+       };
+
+       struct blob_attr *foo[__FOO_ATTR_MAX];
+       struct blob_attr *buf = (struct blob_attr *)data;
+
+       blob_parse(buf, foo, foo_policy, __FOO_ATTR_MAX);
+}
+
+int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
+{
+       fuzz_blob_parse(data, size);
+       fuzz_blobmsg_parse(data, size);
+
+       return 0;
+}