summaryrefslogtreecommitdiffstats
path: root/ossfuzz/round_trip_hc_fuzzer.c
diff options
context:
space:
mode:
authorNick Terrell <terrelln@fb.com>2019-07-18 01:31:44 (GMT)
committerNick Terrell <terrelln@fb.com>2019-07-18 19:29:15 (GMT)
commit675ef9a9fc9899667d0fe9b7b2a66e402e870a6d (patch)
treec078d8a714009521b976ff07bbf77802f48e5c86 /ossfuzz/round_trip_hc_fuzzer.c
parent399a80d48e4352aeae99eb5cbd799bcee6978a3d (diff)
downloadlz4-675ef9a9fc9899667d0fe9b7b2a66e402e870a6d.zip
lz4-675ef9a9fc9899667d0fe9b7b2a66e402e870a6d.tar.gz
lz4-675ef9a9fc9899667d0fe9b7b2a66e402e870a6d.tar.bz2
[fuzz] Add HC fuzzers for round trip, compress, and streaming
Diffstat (limited to 'ossfuzz/round_trip_hc_fuzzer.c')
-rw-r--r--ossfuzz/round_trip_hc_fuzzer.c39
1 files changed, 39 insertions, 0 deletions
diff --git a/ossfuzz/round_trip_hc_fuzzer.c b/ossfuzz/round_trip_hc_fuzzer.c
new file mode 100644
index 0000000..325cdf0
--- /dev/null
+++ b/ossfuzz/round_trip_hc_fuzzer.c
@@ -0,0 +1,39 @@
+/**
+ * This fuzz target performs a lz4 round-trip test (compress & decompress),
+ * compares the result with the original, and calls abort() on corruption.
+ */
+
+#include <stddef.h>
+#include <stdint.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "fuzz_helpers.h"
+#include "lz4.h"
+#include "lz4hc.h"
+
+int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
+{
+ uint32_t seed = FUZZ_seed(&data, &size);
+ size_t const dstCapacity = LZ4_compressBound(size);
+ char* const dst = (char*)malloc(dstCapacity);
+ char* const rt = (char*)malloc(size);
+ int const level = FUZZ_rand32(&seed, LZ4HC_CLEVEL_MIN, LZ4HC_CLEVEL_MAX);
+
+ FUZZ_ASSERT(dst);
+ FUZZ_ASSERT(rt);
+
+ /* Compression must succeed and round trip correctly. */
+ int const dstSize = LZ4_compress_HC((const char*)data, dst, size,
+ dstCapacity, level);
+ FUZZ_ASSERT(dstSize > 0);
+
+ int const rtSize = LZ4_decompress_safe(dst, rt, dstSize, size);
+ FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size");
+ FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!");
+
+ free(dst);
+ free(rt);
+
+ return 0;
+}