Sha256: de83016ba8915c929933967c86395dabb3563e2c0b47638c29f4bc81f6a81fca
Contents?: true
Size: 1.11 KB
Versions: 1
Compression:
Stored size: 1.11 KB
Contents
/** * 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; }
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
extlz4-0.3.1 | contrib/lz4/ossfuzz/round_trip_hc_fuzzer.c |