-
Notifications
You must be signed in to change notification settings - Fork 60
/
aflCall.c
95 lines (81 loc) · 1.58 KB
/
aflCall.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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/*
* AFL hypercalls
*
* Compile with -DTEST to take inputs from stdin without using hypercalls.
*/
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <unistd.h>
#include <sys/mman.h>
#include "drv.h"
int aflTestMode = 0;
#define SZ 4096
static u_long bufsz;
static char *buf;
static u_int64_t *arr;
static void
aflInit(void)
{
static int aflInit = 0;
char *pg;
if(aflInit)
return;
pg = mmap(NULL, SZ, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_ANONYMOUS | MAP_LOCKED, -1, 0);
if(pg == (void*)-1) {
perror("mmap");
exit(1);
}
memset(pg, 0, SZ); // touch all the bits!
arr = (u_int64_t *)pg;
buf = pg + 2 * sizeof arr[0];
bufsz = SZ - 2 * sizeof arr[0];
aflInit = 1;
}
static inline u_long
aflCall(u_long a0, u_long a1, u_long a2)
{
u_long ret;
asm(".byte 0x0f, 0x24"
: "=a"(ret)
: "D"(a0), "S"(a1), "d"(a2)
);
return ret;
}
int
startForkserver(int ticks)
{
aflInit();
if(aflTestMode)
return 0;
return aflCall(1, ticks, 0);
}
char *
getWork(u_long *sizep)
{
aflInit();
if(aflTestMode)
*sizep = read(0, buf, bufsz);
else
*sizep = aflCall(2, (u_long)buf, bufsz);
return buf;
}
/* buf should point to u_int64_t[2] */
int
startWork(u_int64_t start, u_int64_t end)
{
aflInit();
if(aflTestMode)
return 0;
arr[0] = start;
arr[1] = end;
return aflCall(3, (u_long)arr, 0);
}
int
doneWork(int val)
{
aflInit();
if(aflTestMode)
return 0;
return aflCall(4, (u_long)val, 0);
}