Fix & fuzz ZSTD_generateSequences
This function was seriously flawed: * It didn't do output bounds checks * It produced invalid sequences when an uncompressed or RLE block was emitted * It produced invalid sequences when the block splitter was enabled * It produced invalid sequences when ZSTD_c_targetCBlockSize was enabled I've attempted to fix these issues, but this function is just a bad idea, so I've marked it as deprecated and unsafe. We should replace it with `ZSTD_extractSequences()` which operates on a compressed frame.
This commit is contained in:
+6
-2
@@ -125,7 +125,8 @@ FUZZ_TARGETS := \
|
||||
seekable_roundtrip \
|
||||
huf_round_trip \
|
||||
huf_decompress \
|
||||
decompress_cross_format
|
||||
decompress_cross_format \
|
||||
generate_sequences
|
||||
|
||||
all: libregression.a $(FUZZ_TARGETS)
|
||||
|
||||
@@ -239,10 +240,13 @@ huf_round_trip: $(FUZZ_HEADERS) $(FUZZ_ROUND_TRIP_OBJ) rt_fuzz_huf_round_trip.o
|
||||
|
||||
huf_decompress: $(FUZZ_HEADERS) $(FUZZ_DECOMPRESS_OBJ) d_fuzz_huf_decompress.o
|
||||
$(CXX) $(FUZZ_TARGET_FLAGS) $(FUZZ_DECOMPRESS_OBJ) d_fuzz_huf_decompress.o $(LIB_FUZZING_ENGINE) -o $@
|
||||
|
||||
|
||||
decompress_cross_format: $(FUZZ_HEADERS) $(FUZZ_DECOMPRESS_OBJ) d_fuzz_decompress_cross_format.o
|
||||
$(CXX) $(FUZZ_TARGET_FLAGS) $(FUZZ_DECOMPRESS_OBJ) d_fuzz_decompress_cross_format.o $(LIB_FUZZING_ENGINE) -o $@
|
||||
|
||||
generate_sequences: $(FUZZ_HEADERS) $(FUZZ_ROUND_TRIP_OBJ) rt_fuzz_generate_sequences.o
|
||||
$(CXX) $(FUZZ_TARGET_FLAGS) $(FUZZ_ROUND_TRIP_OBJ) rt_fuzz_generate_sequences.o $(LIB_FUZZING_ENGINE) -o $@
|
||||
|
||||
libregression.a: $(FUZZ_HEADERS) $(PRGDIR)/util.h $(PRGDIR)/util.c d_fuzz_regression_driver.o
|
||||
$(AR) $(FUZZ_ARFLAGS) $@ d_fuzz_regression_driver.o
|
||||
|
||||
|
||||
@@ -66,6 +66,7 @@ TARGET_INFO = {
|
||||
'huf_round_trip': TargetInfo(InputType.RAW_DATA),
|
||||
'huf_decompress': TargetInfo(InputType.RAW_DATA),
|
||||
'decompress_cross_format': TargetInfo(InputType.RAW_DATA),
|
||||
'generate_sequences': TargetInfo(InputType.RAW_DATA),
|
||||
}
|
||||
TARGETS = list(TARGET_INFO.keys())
|
||||
ALL_TARGETS = TARGETS + ['all']
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
/*
|
||||
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
||||
* All rights reserved.
|
||||
*
|
||||
* 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).
|
||||
* You may select, at your option, one of the above-listed licenses.
|
||||
*/
|
||||
|
||||
#define ZSTD_STATIC_LINKING_ONLY
|
||||
|
||||
#include <stddef.h>
|
||||
#include <stdint.h>
|
||||
#include <string.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
#include "fuzz_data_producer.h"
|
||||
#include "fuzz_helpers.h"
|
||||
#include "zstd_helpers.h"
|
||||
|
||||
/**
|
||||
* This fuzz target ensures that ZSTD_generateSequences() does not crash and
|
||||
* if it succeeds that ZSTD_compressSequences() round trips.
|
||||
*/
|
||||
|
||||
static void testRoundTrip(ZSTD_CCtx* cctx, ZSTD_Sequence const* seqs, size_t nbSeqs, const void* src, size_t srcSize) {
|
||||
/* Compress the sequences with block delimiters */
|
||||
const size_t compressBound = ZSTD_compressBound(srcSize);
|
||||
void* dst = FUZZ_malloc(compressBound);
|
||||
FUZZ_ASSERT(dst);
|
||||
|
||||
size_t compressedSize = ZSTD_compressSequences(cctx, dst, compressBound, seqs, nbSeqs, src, srcSize);
|
||||
FUZZ_ZASSERT(compressedSize);
|
||||
|
||||
void* decompressed = FUZZ_malloc(srcSize);
|
||||
FUZZ_ASSERT(srcSize == 0 || decompressed);
|
||||
size_t decompressedSize = ZSTD_decompress(decompressed, srcSize, dst, compressedSize);
|
||||
FUZZ_ZASSERT(decompressedSize);
|
||||
FUZZ_ASSERT(decompressedSize == srcSize);
|
||||
if (srcSize != 0) {
|
||||
FUZZ_ASSERT(!memcmp(src, decompressed, srcSize));
|
||||
}
|
||||
|
||||
free(decompressed);
|
||||
free(dst);
|
||||
}
|
||||
|
||||
int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
|
||||
|
||||
FUZZ_dataProducer_t *producer = FUZZ_dataProducer_create(data, size);
|
||||
size = FUZZ_dataProducer_reserveDataPrefix(producer);
|
||||
|
||||
ZSTD_CCtx* cctx = ZSTD_createCCtx();
|
||||
FUZZ_ASSERT(cctx);
|
||||
|
||||
const size_t seqsCapacity = FUZZ_dataProducer_uint32Range(producer, 0, 2 * ZSTD_sequenceBound(size));
|
||||
ZSTD_Sequence* seqs = (ZSTD_Sequence*)FUZZ_malloc(sizeof(ZSTD_Sequence) * seqsCapacity);
|
||||
FUZZ_ASSERT(seqsCapacity == 0 || seqs);
|
||||
|
||||
FUZZ_setRandomParameters(cctx, size, producer);
|
||||
FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_targetCBlockSize, 0));
|
||||
FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_nbWorkers, 0));
|
||||
|
||||
const size_t nbSeqs = ZSTD_generateSequences(cctx, seqs, seqsCapacity, data, size);
|
||||
if (ZSTD_isError(nbSeqs)) {
|
||||
/* Allowed to error if the destination is too small */
|
||||
if (ZSTD_getErrorCode(nbSeqs) == ZSTD_error_dstSize_tooSmall) {
|
||||
FUZZ_ASSERT(seqsCapacity < ZSTD_sequenceBound(size));
|
||||
}
|
||||
} else {
|
||||
/* Ensure we round trip with and without block delimiters*/
|
||||
|
||||
FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_blockDelimiters, ZSTD_sf_explicitBlockDelimiters));
|
||||
testRoundTrip(cctx, seqs, nbSeqs, data, size);
|
||||
|
||||
const size_t nbMergedSeqs = ZSTD_mergeBlockDelimiters(seqs, nbSeqs);
|
||||
FUZZ_ASSERT(nbMergedSeqs <= nbSeqs);
|
||||
FUZZ_ZASSERT(ZSTD_CCtx_reset(cctx, ZSTD_reset_session_only));
|
||||
FUZZ_ZASSERT(ZSTD_CCtx_setParameter(cctx, ZSTD_c_blockDelimiters, ZSTD_sf_noBlockDelimiters));
|
||||
testRoundTrip(cctx, seqs, nbMergedSeqs, data, size);
|
||||
}
|
||||
|
||||
free(seqs);
|
||||
ZSTD_freeCCtx(cctx);
|
||||
FUZZ_dataProducer_free(producer);
|
||||
return 0;
|
||||
}
|
||||
@@ -3701,6 +3701,31 @@ static int basicUnitTests(U32 const seed, double compressibility)
|
||||
}
|
||||
DISPLAYLEVEL(3, "OK \n");
|
||||
|
||||
DISPLAYLEVEL(3, "test%3i : ZSTD_generateSequences too small output buffer : ", testNb++);
|
||||
{
|
||||
const size_t seqsCapacity = 10;
|
||||
const size_t srcSize = 150 KB;
|
||||
const BYTE* src = (BYTE*)CNBuffer;
|
||||
|
||||
ZSTD_CCtx* const cctx = ZSTD_createCCtx();
|
||||
ZSTD_Sequence* const seqs = (ZSTD_Sequence*)malloc(seqsCapacity * sizeof(ZSTD_Sequence));
|
||||
|
||||
if (seqs == NULL) goto _output_error;
|
||||
if (cctx == NULL) goto _output_error;
|
||||
/* Populate src with random data */
|
||||
RDG_genBuffer(CNBuffer, srcSize, compressibility, 0.5, seed);
|
||||
|
||||
/* Test with block delimiters roundtrip */
|
||||
{
|
||||
size_t const seqsSize = ZSTD_generateSequences(cctx, seqs, seqsCapacity, src, srcSize);
|
||||
if (!ZSTD_isError(seqsSize)) goto _output_error;
|
||||
}
|
||||
|
||||
ZSTD_freeCCtx(cctx);
|
||||
free(seqs);
|
||||
}
|
||||
DISPLAYLEVEL(3, "OK \n");
|
||||
|
||||
DISPLAYLEVEL(3, "test%3i : ZSTD_getSequences followed by ZSTD_compressSequences : ", testNb++);
|
||||
{
|
||||
const size_t srcSize = 500 KB;
|
||||
|
||||
Reference in New Issue
Block a user