Rizin
unix-like reverse engineering framework and cli tools
round_trip_fuzzer.c File Reference
#include <stddef.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include "fuzz_helpers.h"
#include "lz4.h"
#include "fuzz_data_producer.h"

Go to the source code of this file.

Functions

int LLVMFuzzerTestOneInput (const uint8_t *data, size_t size)
 

Function Documentation

◆ LLVMFuzzerTestOneInput()

int LLVMFuzzerTestOneInput ( const uint8_t data,
size_t  size 
)

This fuzz target performs a lz4 round-trip test (compress & decompress), compares the result with the original, and calls abort() on corruption.

Definition at line 15 of file round_trip_fuzzer.c.

16 {
18  size_t const partialCapacitySeed = FUZZ_dataProducer_retrieve32(producer);
20 
21  size_t const partialCapacity = FUZZ_getRange_from_uint32(partialCapacitySeed, 0, size);
22  size_t const dstCapacity = LZ4_compressBound(size);
23 
24  char* const dst = (char*)malloc(dstCapacity);
25  char* const rt = (char*)malloc(size);
26 
28  FUZZ_ASSERT(rt);
29 
30  /* Compression must succeed and round trip correctly. */
31  int const dstSize = LZ4_compress_default((const char*)data, dst,
32  size, dstCapacity);
33  FUZZ_ASSERT(dstSize > 0);
34 
35  int const rtSize = LZ4_decompress_safe(dst, rt, dstSize, size);
36  FUZZ_ASSERT_MSG(rtSize == size, "Incorrect size");
37  FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!");
38 
39  /* Partial decompression must succeed. */
40  {
41  char* const partial = (char*)malloc(partialCapacity);
42  FUZZ_ASSERT(partial);
43  int const partialSize = LZ4_decompress_safe_partial(
44  dst, partial, dstSize, partialCapacity, partialCapacity);
45  FUZZ_ASSERT(partialSize >= 0);
46  FUZZ_ASSERT_MSG(partialSize == partialCapacity, "Incorrect size");
47  FUZZ_ASSERT_MSG(!memcmp(data, partial, partialSize), "Corruption!");
48  free(partial);
49  }
50 
51 
52  free(dst);
53  free(rt);
54  FUZZ_dataProducer_free(producer);
55 
56  return 0;
57 }
void FUZZ_dataProducer_free(FUZZ_dataProducer_t *producer)
uint32_t FUZZ_getRange_from_uint32(uint32_t seed, uint32_t min, uint32_t max)
size_t FUZZ_dataProducer_remainingBytes(FUZZ_dataProducer_t *producer)
FUZZ_dataProducer_t * FUZZ_dataProducer_create(const uint8_t *data, size_t size)
uint32_t FUZZ_dataProducer_retrieve32(FUZZ_dataProducer_t *producer)
#define FUZZ_ASSERT(cond)
Definition: fuzz_helpers.h:46
#define FUZZ_ASSERT_MSG(cond, msg)
Definition: fuzz_helpers.h:41
RZ_API void Ht_() free(HtName_(Ht) *ht)
Definition: ht_inc.c:130
voidpf void uLong size
Definition: ioapi.h:138
void * malloc(size_t size)
Definition: malloc.c:123
int LZ4_compressBound(int isize)
Definition: lz4.c:674
int LZ4_compress_default(const char *src, char *dst, int srcSize, int maxOutputSize)
Definition: lz4.c:1373
LZ4_FORCE_O2 int LZ4_decompress_safe_partial(const char *src, char *dst, int compressedSize, int targetOutputSize, int dstCapacity)
Definition: lz4.c:2179
LZ4_FORCE_O2 int LZ4_decompress_safe(const char *source, char *dest, int compressedSize, int maxDecompressedSize)
Definition: lz4.c:2171
char * dst
Definition: lz4.h:724

References dst, free(), FUZZ_ASSERT, FUZZ_ASSERT_MSG, FUZZ_dataProducer_create(), FUZZ_dataProducer_free(), FUZZ_dataProducer_remainingBytes(), FUZZ_dataProducer_retrieve32(), FUZZ_getRange_from_uint32(), LZ4_compress_default(), LZ4_compressBound(), LZ4_decompress_safe(), LZ4_decompress_safe_partial(), and malloc().