forked from taviso/loadlibrary
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdeepcover.cpp
105 lines (82 loc) · 2.61 KB
/
deepcover.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
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <assert.h>
#include <iostream>
#include "pin.H"
extern "C" {
#include "xed-interface.h"
#include "instrument.h"
#include "tree.h"
}
static uintptr_t blacklist[] = {
#include "blacklist.h"
};
static int compare_block_address(const void *a, const void *b)
{
uintptr_t x = (uintptr_t ) a;
uintptr_t y = *(uintptr_t *) b;
if (x > y) return +1;
if (x < y) return -1;
return 0;
}
ADDRINT TraceImageStart;
ADDRINT TraceImageSize;
VOID SetImageParameters(ADDRINT ImageStart, ADDRINT ImageSize)
{
TraceImageStart = ImageStart;
TraceImageSize = ImageSize;
}
// Pin calls this function every time a new basic block is encountered
VOID trace(TRACE trace, VOID *ptr)
{
if (!TraceImageStart)
return;
// Visit every basic block in the trace
for (BBL bbl = TRACE_BblHead(trace); BBL_Valid(bbl); bbl = BBL_Next(bbl)) {
if (BBL_Address(bbl) < TraceImageStart || BBL_Address(bbl) > TraceImageStart + TraceImageSize)
continue;
// Check if this block is in our blacklist...
if (bsearch((const void *)(BBL_Address(bbl) - TraceImageStart),
blacklist,
sizeof blacklist / sizeof blacklist[0],
sizeof blacklist[0],
compare_block_address)) {
continue;
}
// Insert a call in every bbl, passing the address of the basic block
BBL_InsertCall(bbl, IPOINT_ANYWHERE, AFUNPTR(instrument_basic_block),
IARG_FAST_ANALYSIS_CALL,
IARG_ADDRINT, BBL_Address(bbl) - TraceImageStart,
IARG_UINT32, BBL_NumIns(bbl),
IARG_END);
}
}
VOID loadimage(IMG img, VOID *ptr)
{
RTN Callback = RTN_FindByName(img, "InstrumentationCallback");
if (RTN_Valid(Callback)) {
RTN_Open(Callback);
RTN_InsertCall(Callback, IPOINT_BEFORE, (AFUNPTR) SetImageParameters,
IARG_FUNCARG_ENTRYPOINT_VALUE, 0,
IARG_FUNCARG_ENTRYPOINT_VALUE, 1,
IARG_END);
RTN_Close(Callback);
}
}
int main(int argc, char **argv)
{
// Initialize pin
PIN_Init(argc, argv);
// Initialize Symbols
PIN_InitSymbols();
// Monitor Image loads
IMG_AddInstrumentFunction(loadimage, NULL);
// Register Instruction to be called to instrument instructions
TRACE_AddInstrumentFunction(trace, NULL);
// Register Fini to be called when the application exits
PIN_AddFiniFunction(instrument_fini_callback, NULL);
// Start the program, never returns
PIN_StartProgram();
return 0;
}