ossfuzz: add fuzzers

This commit is contained in:
Randy
2020-07-07 13:08:22 +02:00
parent 4159f8c8c3
commit 436d915546
5 changed files with 216 additions and 0 deletions

52
tests/fuzz_main.c Normal file
View File

@@ -0,0 +1,52 @@
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
/* Fuzz target entry point for building without libFuzzer */
int main(int argc, char **argv)
{
FILE *f;
char *buf = NULL;
long siz_buf;
if(argc < 2)
{
fprintf(stderr, "no input file\n");
goto err;
}
f = fopen(argv[1], "rb");
if(f == NULL)
{
fprintf(stderr, "error opening input file %s\n", argv[1]);
goto err;
}
fseek(f, 0, SEEK_END);
siz_buf = ftell(f);
rewind(f);
if(siz_buf < 1) goto err;
buf = (char*)malloc(siz_buf);
if(buf == NULL)
{
fprintf(stderr, "malloc() failed\n");
goto err;
}
if(fread(buf, siz_buf, 1, f) != 1)
{
fprintf(stderr, "fread() failed\n");
goto err;
}
(void)LLVMFuzzerTestOneInput((uint8_t*)buf, siz_buf);
err:
free(buf);
return 0;
}