Parolin 0.7.9 6796
Console (soon DLLs) to do a tar like job
Loading...
Searching...
No Matches
fuzz_data_producer.h
Go to the documentation of this file.
1/*
2 * Copyright (c) Meta Platforms, Inc. and affiliates.
3 * All rights reserved.
4 *
5 * This source code is licensed under both the BSD-style license (found in the
6 * LICENSE file in the root directory of this source tree) and the GPLv2 (found
7 * in the COPYING file in the root directory of this source tree).
8 * You may select, at your option, one of the above-listed licenses.
9 */
10
19#ifndef FUZZ_DATA_PRODUCER_H
20#define FUZZ_DATA_PRODUCER_H
21
22#include <stddef.h>
23#include <stdint.h>
24#include <stdio.h>
25#include <stdlib.h>
26
27
28/* Struct used for maintaining the state of the data */
30
31/* Returns a data producer state struct. Use for producer initialization. */
33
34/* Frees the data producer */
36
37/* Returns value between [min, max] */
38uint32_t FUZZ_dataProducer_uint32Range(FUZZ_dataProducer_t *producer, uint32_t min,
39 uint32_t max);
40
41/* Returns a uint32 value */
43
44/* Returns a signed value between [min, max] */
46 int32_t min, int32_t max);
47
48/* Returns the size of the remaining bytes of data in the producer */
50
51/* Rolls back the data producer state to have remainingBytes remaining */
52void FUZZ_dataProducer_rollBack(FUZZ_dataProducer_t *producer, size_t remainingBytes);
53
54/* Returns true if the data producer is out of bytes */
56
57/* Restricts the producer to only the last newSize bytes of data.
58If newSize > current data size, nothing happens. Returns the number of bytes
59the producer won't use anymore, after contracting. */
60size_t FUZZ_dataProducer_contract(FUZZ_dataProducer_t *producer, size_t newSize);
61
62/* Restricts the producer to use only the last X bytes of data, where X is
63 a random number in the interval [0, data_size]. Returns the size of the
64 remaining data the producer won't use anymore (the prefix). */
66#endif // FUZZ_DATA_PRODUCER_H
#define min(a, b)
Definition compress42.c:304
Definition fuzz_data_producer.c:3
Definition poolTests.c:28
uint32_t FUZZ_dataProducer_uint32Range(FUZZ_dataProducer_t *producer, uint32_t min, uint32_t max)
Definition fuzz_data_producer.c:28
void FUZZ_dataProducer_rollBack(FUZZ_dataProducer_t *producer, size_t remainingBytes)
Definition fuzz_data_producer.c:69
uint32_t FUZZ_dataProducer_uint32(FUZZ_dataProducer_t *producer)
Definition fuzz_data_producer.c:50
size_t FUZZ_dataProducer_contract(FUZZ_dataProducer_t *producer, size_t newSize)
Definition fuzz_data_producer.c:79
size_t FUZZ_dataProducer_reserveDataPrefix(FUZZ_dataProducer_t *producer)
Definition fuzz_data_producer.c:89
int32_t FUZZ_dataProducer_int32Range(FUZZ_dataProducer_t *producer, int32_t min, int32_t max)
Definition fuzz_data_producer.c:54
int FUZZ_dataProducer_empty(FUZZ_dataProducer_t *producer)
Definition fuzz_data_producer.c:75
size_t size
Definition platform.h:559
void FUZZ_dataProducer_free(FUZZ_dataProducer_t *producer)
Definition fuzz_data_producer.c:18
FUZZ_dataProducer_t * FUZZ_dataProducer_create(const uint8_t *data, size_t size)
Definition fuzz_data_producer.c:8
size_t FUZZ_dataProducer_remainingBytes(FUZZ_dataProducer_t *producer)
Definition fuzz_data_producer.c:75