-
Notifications
You must be signed in to change notification settings - Fork 7
/
test-u8.c
58 lines (44 loc) · 1.49 KB
/
test-u8.c
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
#include <stdio.h>
#include <unistd.h>
#include <string.h>
#include <strings.h>
#include <stdlib.h>
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#define bail(msg, pos) \
while (1) { \
\
fprintf(stderr, "%s at %u\n", (char *)msg, (uint32_t)pos); \
return 0; \
\
}
int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
if (len < 12) bail("too short", 0);
if (buf[0] != 'A') bail("wrong char", 0);
if (buf[1] != 'C') bail("wrong char", 1);
if (buf[2] != 'E') bail("wrong char", 2);
if (buf[3] != 'G') bail("wrong char", 3);
if (buf[4] != 'I') bail("wrong char", 4);
if (buf[5] != 'K') bail("wrong char", 5);
if (buf[6] != 'M') bail("wrong char", 6);
if (buf[7] != 'Z') bail("wrong char", 7);
if (buf[8] != 'Y') bail("wrong char", 8);
if (buf[9] != 0) bail("wrong char", 9);
if (buf[10] != 1) bail("wrong char", 10);
if (buf[11] != 128) bail("wrong char", 11);
abort();
return 0;
}
#ifdef __AFL_COMPILER
int main(int argc, char **argv) {
unsigned char buf[64];
ssize_t len;
int fd = 0;
if (argc > 1) fd = open(argv[1], O_RDONLY);
if ((len = read(fd, buf, sizeof(buf))) <= 0) exit(0);
LLVMFuzzerTestOneInput(buf, len);
exit(0);
}
#endif