2017-09-14 14:41:49 -07:00
|
|
|
/*
|
2020-03-26 15:19:05 -07:00
|
|
|
* Copyright (c) 2016-2020, Facebook, Inc.
|
2017-09-14 14:41:49 -07:00
|
|
|
* 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).
|
2020-03-26 15:19:05 -07:00
|
|
|
* You may select, at your option, one of the above-listed licenses.
|
2017-09-14 14:41:49 -07:00
|
|
|
*/
|
|
|
|
/**
|
|
|
|
* Helper functions for fuzzing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef ZSTD_HELPERS_H
|
|
|
|
#define ZSTD_HELPERS_H
|
|
|
|
|
2019-04-08 21:07:28 -07:00
|
|
|
#define ZSTD_STATIC_LINKING_ONLY
|
|
|
|
|
2017-09-14 14:41:49 -07:00
|
|
|
#include "zstd.h"
|
2019-09-10 16:14:43 -07:00
|
|
|
#include "fuzz_data_producer.h"
|
2017-09-14 14:41:49 -07:00
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2019-09-12 12:40:12 -07:00
|
|
|
extern const int kMinClevel;
|
|
|
|
extern const int kMaxClevel;
|
|
|
|
|
2019-09-10 16:14:43 -07:00
|
|
|
void FUZZ_setRandomParameters(ZSTD_CCtx *cctx, size_t srcSize, FUZZ_dataProducer_t *producer);
|
2017-09-26 14:03:43 -07:00
|
|
|
|
2019-09-10 16:14:43 -07:00
|
|
|
ZSTD_compressionParameters FUZZ_randomCParams(size_t srcSize, FUZZ_dataProducer_t *producer);
|
|
|
|
ZSTD_frameParameters FUZZ_randomFParams(FUZZ_dataProducer_t *producer);
|
|
|
|
ZSTD_parameters FUZZ_randomParams(size_t srcSize, FUZZ_dataProducer_t *producer);
|
2017-09-14 14:41:49 -07:00
|
|
|
|
2019-04-08 21:07:28 -07:00
|
|
|
typedef struct {
|
|
|
|
void* buff;
|
|
|
|
size_t size;
|
|
|
|
} FUZZ_dict_t;
|
|
|
|
|
|
|
|
/* Quickly train a dictionary from a source for fuzzing.
|
|
|
|
* NOTE: Don't use this to train production dictionaries, it is only optimized
|
|
|
|
* for speed, and doesn't care about dictionary quality.
|
|
|
|
*/
|
2019-09-10 16:14:43 -07:00
|
|
|
FUZZ_dict_t FUZZ_train(void const* src, size_t srcSize, FUZZ_dataProducer_t *producer);
|
2019-04-08 21:07:28 -07:00
|
|
|
|
2017-09-14 14:41:49 -07:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif /* ZSTD_HELPERS_H */
|