1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
#include "suricata-common.h"
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size);
static int runOneFile(const char *fname)
{
// opens the file, get its size, and reads it into a buffer
uint8_t *data;
size_t size;
FILE *fp = fopen(fname, "rb");
if (fp == NULL) {
return 2;
}
if (fseek(fp, 0L, SEEK_END) != 0) {
fclose(fp);
return 2;
}
size = ftell(fp);
if (size == (size_t) -1) {
fclose(fp);
return 2;
}
if (fseek(fp, 0L, SEEK_SET) != 0) {
fclose(fp);
return 2;
}
data = malloc(size);
if (data == NULL) {
fclose(fp);
return 2;
}
if (fread(data, size, 1, fp) != 1) {
fclose(fp);
free(data);
return 2;
}
// launch fuzzer
LLVMFuzzerTestOneInput(data, size);
free(data);
fclose(fp);
return 0;
}
int main(int argc, char **argv)
{
DIR *d;
struct dirent *dir;
int r;
if (argc != 2) {
return 1;
}
#ifdef AFLFUZZ_PERSISTENT_MODE
while (__AFL_LOOP(1000)) {
#endif /* AFLFUZZ_PERSISTENT_MODE */
d = opendir(argv[1]);
if (d == NULL) {
// run one file
r = runOneFile(argv[1]);
if (r != 0) {
return r;
}
} else {
// run every file in one directory
if (chdir(argv[1]) != 0) {
closedir(d);
printf("Invalid directory\n");
return 2;
}
while ((dir = readdir(d)) != NULL) {
if (dir->d_type != DT_REG) {
continue;
}
r = runOneFile(dir->d_name);
if (r != 0) {
return r;
}
}
closedir(d);
}
#ifdef AFLFUZZ_PERSISTENT_MODE
}
#endif /* AFLFUZZ_PERSISTENT_MODE */
return 0;
}
|