-
Notifications
You must be signed in to change notification settings - Fork 7
/
test-u128.c
64 lines (45 loc) · 1.44 KB
/
test-u128.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
58
59
60
61
62
63
#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; \
\
}
typedef unsigned __int128 uint128_t;
int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
uint128_t *p128, v128, i;
uint8_t *p = (uint8_t *)&v128;
if (len < 48) bail("too short", 48);
for (i = 0; i < 2; i++) {
if (len < 16 + i * 16) bail("too short", i * 16);
p128 = (uint128_t *)(buf + i * 16);
memset((char *)&v128, 'A' + i * 5, sizeof(v128));
if (*p128 != v128) bail("wrong u128", (i * 16));
}
for (i = 0; i < sizeof(v128); i++)
p[i] = '0' + i * 2;
p128 = (uint128_t *)(buf + 32);
if (*p128 != v128) bail("wrong u128", 32);
abort();
return 0;
}
#ifdef __AFL_COMPILER
int main(int argc, char **argv) {
unsigned char buf[128];
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