minizip-ng/test/fuzz/standalone.c

92 lines
2.4 KiB
C
Raw Permalink Normal View History

2018-11-19 22:12:23 -08:00
/* standalone.c - Standalone fuzzer tester
2021-01-23 16:18:11 -08:00
part of the minizip-ng project
2018-11-12 10:12:22 -08:00
2023-02-16 13:14:21 -08:00
Copyright (C) Nathan Moinvaziri
https://github.com/zlib-ng/minizip-ng
2018-11-12 10:12:22 -08:00
Copyright (C) 2018 sebpop
https://github.com/sebpop
This program is distributed under the terms of the same license as zlib.
See the accompanying LICENSE file for the full text of the license.
*/
#include "mz.h"
#include "mz_strm.h"
#include "mz_strm_os.h"
#include <stdio.h> /* printf */
2018-11-12 10:12:22 -08:00
#ifdef __cplusplus
extern "C" {
#endif
/***************************************************************************/
extern int LLVMFuzzerTestOneInput(const unsigned char *data, size_t size);
/***************************************************************************/
2023-02-19 16:04:32 -08:00
int main(int argc, char **argv) {
2018-11-12 10:12:22 -08:00
void *stream = NULL;
int64_t file_size = 0;
uint8_t *buf = NULL;
int32_t buf_length = 0;
int32_t err = MZ_OK;
int32_t read = 0;
int32_t i = 0;
2023-02-19 16:04:32 -08:00
if (argc < 1) {
printf("Must specify an input file\n");
return 1;
}
2023-02-19 16:04:32 -08:00
printf("Running %" PRId32 " inputs\n", argc - 1);
2018-11-12 10:12:22 -08:00
2023-02-19 16:04:32 -08:00
for (i = 1; (i < argc) && (err == MZ_OK); i++) {
2018-11-12 10:12:22 -08:00
read = 0;
stream = mz_stream_os_create();
2018-11-12 10:12:22 -08:00
err = mz_stream_os_open(stream, argv[i], MZ_OPEN_MODE_READ);
2023-02-19 16:04:32 -08:00
if (err != MZ_OK) {
printf("Skipping %s (%" PRId32 ")\n", argv[i], err);
} else {
mz_stream_os_seek(stream, 0, MZ_SEEK_END);
2018-11-12 10:12:22 -08:00
file_size = mz_stream_os_tell(stream);
if (file_size > INT32_MAX)
2023-02-19 16:04:32 -08:00
printf("File size is too large (%" PRId64 ")\n", file_size);
2018-11-12 10:12:22 -08:00
else
buf_length = (int32_t)file_size;
mz_stream_os_seek(stream, 0, MZ_SEEK_SET);
2018-11-12 10:12:22 -08:00
2018-12-01 08:59:21 -08:00
buf = NULL;
2018-11-12 10:12:22 -08:00
if (buf_length > 0)
buf = malloc(buf_length);
2018-11-12 10:12:22 -08:00
2023-02-19 16:04:32 -08:00
if (buf) {
printf("Running %s %" PRId32 "\n", argv[i], buf_length);
2018-11-12 10:12:22 -08:00
read = mz_stream_os_read(stream, buf, buf_length);
if (read == buf_length)
LLVMFuzzerTestOneInput(buf, buf_length);
else
err = MZ_BUF_ERROR;
free(buf);
2018-11-12 10:12:22 -08:00
}
mz_stream_os_close(stream);
}
mz_stream_os_delete(&stream);
2023-02-19 16:04:32 -08:00
printf("Done %s (%" PRId32 ")\n", argv[i], err);
2018-11-12 10:12:22 -08:00
}
return 0;
}
/***************************************************************************/
#ifdef __cplusplus
}
#endif