-
Notifications
You must be signed in to change notification settings - Fork 533
/
tinyinst_afl.cpp
165 lines (142 loc) · 4.16 KB
/
tinyinst_afl.cpp
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
/*
Copyright 2023 Google LLC
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
https ://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
#include "tinyinst_covmap.h"
#include "tinyinst_afl.h"
#include "common.h"
static TinyInstCovMap* instrumentation;
static bool persist;
static int num_iterations;
static int cur_iteration;
enum {
/* 00 */ FAULT_NONE,
/* 01 */ FAULT_TMOUT,
/* 02 */ FAULT_CRASH,
/* 03 */ FAULT_ERROR,
/* 04 */ FAULT_NOINST,
/* 05 */ FAULT_NOBITS
};
extern "C" int tinyinst_init(int argc, char** argv) {
int lastoption = -1;
for (int i = 1; i < argc; i++) {
if (strcmp(argv[i], "--") == 0) {
lastoption = i;
break;
}
}
if (lastoption <= 0) return 0;
instrumentation = new TinyInstCovMap();
instrumentation->Init(lastoption - 1, argv + 1);
persist = GetBinaryOption("-persist", lastoption - 1, argv + 1, false);
num_iterations = GetIntOption("-iterations", lastoption - 1, argv + 1, 1);
cur_iteration = 0;
return lastoption;
}
extern "C" void tinyinst_set_fuzzer_id(char *fuzzer_id) {
std::string shm_name = "afl_shm_default";
if (fuzzer_id) {
shm_name = std::string("afl_shm_") + std::string(fuzzer_id);
}
instrumentation->SetSHMName(shm_name);
}
int get_argc(char** argv) {
int argc = 0;
while (1) {
if (!(*argv)) break;
argv++;
argc++;
}
return argc;
}
extern "C" int tinyinst_run(char** argv, uint32_t timeout) {
uint32_t init_timeout = timeout;
DebuggerStatus status;
int ret = FAULT_ERROR;
if (instrumentation->IsTargetFunctionDefined()) {
if (cur_iteration == num_iterations) {
instrumentation->Kill();
cur_iteration = 0;
}
}
uint32_t timeout1 = timeout;
if (instrumentation->IsTargetFunctionDefined()) {
timeout1 = init_timeout;
}
if (instrumentation->IsTargetAlive() && persist) {
status = instrumentation->Continue(timeout1);
} else {
instrumentation->Kill();
cur_iteration = 0;
status = instrumentation->Run(get_argc(argv), argv, timeout1);
}
// if target function is defined,
// we should wait until it is hit
if (instrumentation->IsTargetFunctionDefined()) {
if (status != DEBUGGER_TARGET_START) {
// try again with a clean process
WARN("Target function not reached, retrying with a clean process\n");
instrumentation->Kill();
cur_iteration = 0;
status = instrumentation->Run(get_argc(argv), argv, init_timeout);
}
if (status != DEBUGGER_TARGET_START) {
switch (status) {
case DEBUGGER_CRASHED:
FATAL("Process crashed before reaching the target method\n");
break;
case DEBUGGER_HANGED:
FATAL("Process hanged before reaching the target method\n");
break;
case DEBUGGER_PROCESS_EXIT:
FATAL("Process exited before reaching the target method\n");
break;
default:
FATAL("An unknown problem occured before reaching the target method\n");
break;
}
}
status = instrumentation->Continue(timeout);
}
switch (status) {
case DEBUGGER_CRASHED:
ret = FAULT_CRASH;
instrumentation->Kill();
break;
case DEBUGGER_HANGED:
ret = FAULT_TMOUT;
instrumentation->Kill();
break;
case DEBUGGER_PROCESS_EXIT:
ret = FAULT_NONE;
if (instrumentation->IsTargetFunctionDefined()) {
WARN("Process exit during target function\n");
ret = FAULT_TMOUT;
}
break;
case DEBUGGER_TARGET_END:
if (instrumentation->IsTargetFunctionDefined()) {
ret = FAULT_NONE;
cur_iteration++;
}
else {
FATAL("Unexpected status received from the debugger\n");
}
break;
default:
FATAL("Unexpected status received from the debugger\n");
break;
}
return ret;
}
extern "C" void tinyinst_killtarget() {
instrumentation->Kill();
}