summaryrefslogtreecommitdiffstats
path: root/ossfuzz/round_trip_frame_fuzzer.c
blob: 149542de5a147dd079492d3f3f64f0e71649efe2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/**
 * 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 "lz4frame.h"
#include "lz4_helpers.h"
#include "fuzz_data_producer.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
    FUZZ_dataProducer_t* producer = FUZZ_dataProducer_create(data, size);
    LZ4F_preferences_t const prefs = FUZZ_dataProducer_preferences(producer);
    size = FUZZ_dataProducer_remainingBytes(producer);

    size_t const dstCapacity = LZ4F_compressFrameBound(LZ4_compressBound(size), &prefs);
    char* const dst = (char*)malloc(dstCapacity);
    char* const rt = (char*)malloc(FUZZ_dataProducer_remainingBytes(producer));

    FUZZ_ASSERT(dst);
    FUZZ_ASSERT(rt);

    /* Compression must succeed and round trip correctly. */
    size_t const dstSize =
            LZ4F_compressFrame(dst, dstCapacity, data, size, &prefs);
    FUZZ_ASSERT(!LZ4F_isError(dstSize));
    size_t const rtSize = FUZZ_decompressFrame(rt, size, dst, dstSize);
    FUZZ_ASSERT_MSG(rtSize == size, "Incorrect regenerated size");
    FUZZ_ASSERT_MSG(!memcmp(data, rt, size), "Corruption!");

    free(dst);
    free(rt);
    FUZZ_dataProducer_free(producer);

    return 0;
}