2017-08-31 12:11:57 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2016-present, Facebook, Inc.
|
2017-06-29 16:53:52 -07:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
2017-08-31 12:11:57 -07:00
|
|
|
* This source code is licensed under both the BSD-style license (found in the
|
|
|
|
* LICENSE file in the root directory of this source tree) and the GPLv2 (found
|
|
|
|
* in the COPYING file in the root directory of this source tree).
|
2017-06-29 16:53:52 -07:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This fuzz target attempts to decompress the fuzzed data with the simple
|
|
|
|
* decompression function to ensure the decompressor never crashes.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define ZSTD_STATIC_LINKING_ONLY
|
|
|
|
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include "fuzz_helpers.h"
|
|
|
|
#include "zstd.h"
|
2019-09-10 16:14:43 -07:00
|
|
|
#include "fuzz_data_producer.h"
|
2017-06-29 16:53:52 -07:00
|
|
|
|
2017-09-01 00:35:43 -07:00
|
|
|
static size_t const kBufSize = ZSTD_BLOCKSIZE_MAX;
|
2017-06-29 16:53:52 -07:00
|
|
|
|
|
|
|
static ZSTD_DStream *dstream = NULL;
|
|
|
|
static void* buf = NULL;
|
|
|
|
uint32_t seed;
|
|
|
|
|
2019-09-10 16:14:43 -07:00
|
|
|
static ZSTD_outBuffer makeOutBuffer(FUZZ_dataProducer_t *producer)
|
2017-06-29 16:53:52 -07:00
|
|
|
{
|
|
|
|
ZSTD_outBuffer buffer = { buf, 0, 0 };
|
|
|
|
|
2019-09-12 12:40:12 -07:00
|
|
|
buffer.size = (FUZZ_dataProducer_uint32Range(producer, 1, kBufSize));
|
2017-06-29 16:53:52 -07:00
|
|
|
FUZZ_ASSERT(buffer.size <= kBufSize);
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
2019-09-10 16:14:43 -07:00
|
|
|
static ZSTD_inBuffer makeInBuffer(const uint8_t **src, size_t *size,
|
|
|
|
FUZZ_dataProducer_t *producer)
|
2017-06-29 16:53:52 -07:00
|
|
|
{
|
|
|
|
ZSTD_inBuffer buffer = { *src, 0, 0 };
|
|
|
|
|
|
|
|
FUZZ_ASSERT(*size > 0);
|
2019-09-12 12:40:12 -07:00
|
|
|
buffer.size = (FUZZ_dataProducer_uint32Range(producer, 1, *size));
|
2017-06-29 16:53:52 -07:00
|
|
|
FUZZ_ASSERT(buffer.size <= *size);
|
|
|
|
*src += buffer.size;
|
|
|
|
*size -= buffer.size;
|
|
|
|
|
|
|
|
return buffer;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *src, size_t size)
|
|
|
|
{
|
2019-09-10 16:14:43 -07:00
|
|
|
/* Give a random portion of src data to the producer, to use for
|
|
|
|
parameter generation. The rest will be used for (de)compression */
|
|
|
|
FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(src, size);
|
2019-09-11 10:09:29 -07:00
|
|
|
size = FUZZ_dataProducer_reserveDataPrefix(producer);
|
2017-06-29 16:53:52 -07:00
|
|
|
|
|
|
|
/* Allocate all buffers and contexts if not already allocated */
|
|
|
|
if (!buf) {
|
|
|
|
buf = malloc(kBufSize);
|
2019-09-10 16:14:43 -07:00
|
|
|
FUZZ_ASSERT(buf);
|
|
|
|
}
|
2017-06-29 16:53:52 -07:00
|
|
|
|
|
|
|
if (!dstream) {
|
|
|
|
dstream = ZSTD_createDStream();
|
|
|
|
FUZZ_ASSERT(dstream);
|
|
|
|
} else {
|
2019-04-08 20:01:38 -07:00
|
|
|
FUZZ_ZASSERT(ZSTD_DCtx_reset(dstream, ZSTD_reset_session_only));
|
2017-06-29 16:53:52 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
while (size > 0) {
|
2019-09-10 16:14:43 -07:00
|
|
|
ZSTD_inBuffer in = makeInBuffer(&src, &size, producer);
|
2017-06-29 16:53:52 -07:00
|
|
|
while (in.pos != in.size) {
|
2019-09-10 16:14:43 -07:00
|
|
|
ZSTD_outBuffer out = makeOutBuffer(producer);
|
2017-06-29 16:53:52 -07:00
|
|
|
size_t const rc = ZSTD_decompressStream(dstream, &out, &in);
|
|
|
|
if (ZSTD_isError(rc)) goto error;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
error:
|
2017-09-12 20:20:27 -07:00
|
|
|
#ifndef STATEFUL_FUZZING
|
2017-06-29 16:53:52 -07:00
|
|
|
ZSTD_freeDStream(dstream); dstream = NULL;
|
|
|
|
#endif
|
2019-09-10 16:14:43 -07:00
|
|
|
FUZZ_dataProducer_free(producer);
|
2017-06-29 16:53:52 -07:00
|
|
|
return 0;
|
|
|
|
}
|