forked from spinpx/aflpin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
aflpin.cpp
191 lines (152 loc) · 5.81 KB
/
aflpin.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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
#include <pin.H>
#include <cstdlib>
#include <unistd.h>
#include <iostream>
#include <sys/shm.h>
#include <sys/wait.h>
#include "colors.hpp"
// 65536
#define MAP_SIZE (1 << 16)
#define FORKSRV_FD 198
// CLI options -----------------------------------------------------------
KNOB<BOOL> Knob_debug(KNOB_MODE_WRITEONCE, "pintool",
"debug", "0", "Enable debug mode");
// Global Vars -----------------------------------------------------------
ADDRINT min_addr = 0;
ADDRINT max_addr = 0;
unsigned char bitmap[MAP_SIZE];
uint8_t *bitmap_shm = 0;
ADDRINT last_id = 0;
// inlined functions -----------------------------------------------------
inline ADDRINT valid_addr(ADDRINT addr)
{
if ( addr >= min_addr && addr <= max_addr )
return true;
return false;
}
// Inserted functions ----------------------------------------------------
// Unused currently but could become a fast call in the future once I have tested it more.
VOID TrackBranch(ADDRINT cur_addr)
{
ADDRINT cur_id = cur_addr - min_addr;
// if (Knob_debug) {
// std::cout << "\nCURADDR: 0x" << cur_addr << std::endl;
// std::cout << "rel_addr: 0x" << (cur_addr - min_addr) << std::endl;
// std::cout << "cur_id: " << cur_id << std::endl;
// std::cout << "index: " << ((cur_id ^ last_id) % MAP_SIZE) << std::endl;
// }
if (bitmap_shm != 0){
bitmap_shm[((cur_id ^ last_id) % MAP_SIZE)]++;
}
else {
bitmap[((cur_id ^ last_id) % MAP_SIZE)]++;
}
last_id = cur_id;
}
// Analysis functions ----------------------------------------------------
VOID Trace(TRACE trace, VOID *v)
{
for (BBL bbl = TRACE_BblHead(trace); BBL_Valid(bbl); bbl = BBL_Next(bbl))
{
for (INS ins = BBL_InsHead(bbl); INS_Valid(ins); ins = INS_Next(ins))
{
// make sure it is in a segment we want to instrument!
if (valid_addr(INS_Address(ins)))
{
if (INS_IsBranch(ins)) {
// As per afl-as.c we only care about conditional branches (so no JMP instructions)
if (INS_HasFallThrough(ins) || INS_IsCall(ins))
{
if (Knob_debug) {
std::cout << "BRACH: 0x" << std::hex << INS_Address(ins) << ":\t" << INS_Disassemble(ins) << std::endl;
}
// Instrument the code.
INS_InsertCall(ins, IPOINT_BEFORE, (AFUNPTR)TrackBranch,
IARG_INST_PTR,
IARG_END);
}
}
}
}
}
}
VOID entry_point(VOID *ptr)
{
/* Much like the original instrumentation from AFL we only want to instrument the segments of code
* from the actual application and not the link and PIN setup itself.
*
* Inspired by: http://joxeankoret.com/blog/2012/11/04/a-simple-pin-tool-unpacker-for-the-linux-version-of-skype/
*/
IMG img = APP_ImgHead();
for(SEC sec= IMG_SecHead(img); SEC_Valid(sec); sec = SEC_Next(sec))
{
// lets sanity check the exec flag
// TODO: the check for .text name might be too much, there could be other executable segments we
// need to instrument but maybe not things like the .plt or .fini/init
// IF this changes, we need to change the code in the instrumentation code, save all the base addresses.
if (SEC_IsExecutable(sec) && SEC_Name(sec) == ".text")
{
ADDRINT sec_addr = SEC_Address(sec);
UINT64 sec_size = SEC_Size(sec);
if (Knob_debug)
{
std::cout << "Name: " << SEC_Name(sec) << std::endl;
std::cout << "Addr: 0x" << std::hex << sec_addr << std::endl;
std::cout << "Size: " << sec_size << std::endl << std::endl;
}
if (sec_addr != 0)
{
ADDRINT high_addr = sec_addr + sec_size;
if (sec_addr > min_addr || min_addr == 0)
min_addr = sec_addr;
// Now check and set the max_addr.
if (sec_addr > max_addr || max_addr == 0)
max_addr = sec_addr;
if (high_addr > max_addr)
max_addr = high_addr;
}
}
}
if (Knob_debug)
{
std::cout << "min_addr:\t0x" << std::hex << min_addr << std::endl;
std::cout << "max_addr:\t0x" << std::hex << max_addr << std::endl << std::endl;
}
}
// Main functions ------------------------------------------------
INT32 Usage()
{
std::cerr << "AFLPIN -- A pin tool to enable blackbox binaries to be fuzzed with AFL on Linux" << std::endl;
std::cerr << " -debug -- prints extra debug information." << std::endl;
return -1;
}
bool setup_shm() {
if (char *shm_id_str = getenv("__AFL_SHM_ID")) {
int shm_id;
shm_id = std::atoi(shm_id_str);
std::cout << "shm_id: " << shm_id << std::endl;
bitmap_shm = reinterpret_cast<uint8_t*>(shmat(shm_id, 0, 0));
if (bitmap_shm == reinterpret_cast<void *>(-1)) {
std::cout << red << "failed to get shm addr from shmmat()" << cend << std::endl;
return false;
}
}
else {
std::cout << red << "failed to get shm_id envvar" << cend << std::endl;
return false;
}
return true;
}
int main(int argc, char *argv[])
{
if(PIN_Init(argc, argv)){
return Usage();
}
setup_shm();
PIN_SetSyntaxIntel();
TRACE_AddInstrumentFunction(Trace, 0);
PIN_AddApplicationStartFunction(entry_point, 0);
PIN_StartProgram();
// AFL_NO_FORKSRV=1
// We could use this main function to talk to the fork server's fd and then enable the fork server with this tool...
}