-
Notifications
You must be signed in to change notification settings - Fork 7
/
test-double.c
74 lines (55 loc) · 1.79 KB
/
test-double.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
64
65
66
67
68
69
70
71
72
73
#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>
#include <math.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) {
double *p64, lesser, greater;
if (len < 40) bail("too short", 0);
p64 = (double *)(buf);
lesser = 1000000.01;
greater = 1000010.99;
if (*p64 < lesser || *p64 > greater) bail("wrong double", 0);
if (!isnormal(*p64)) bail("not normal", 0);
p64 = (double *)(buf + 8);
lesser = 101.9;
greater = 109.0;
if (*p64 < lesser || *p64 > greater) bail("wrong double", 8);
if (!isnormal(*p64)) bail("not normal", 8);
p64 = (double *)(buf + 16);
lesser = 22222221.9;
greater = 22222225.1;
if (*p64 < lesser || *p64 > greater) bail("wrong double", 16);
if (!isnormal(*p64)) bail("not normal", 16);
// no fuzzer can solve double arithmetic, so we leave the harder
// testcases out
// exact
p64 = (double *)(buf + 24);
if (*p64 != 3.141592653589793116) bail("wrong double", 24);
if (!isnormal(*p64)) bail("not normal", 24);
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