-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathTraceLog.cpp
More file actions
155 lines (139 loc) · 3.95 KB
/
TraceLog.cpp
File metadata and controls
155 lines (139 loc) · 3.95 KB
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
#include "TraceLog.h"
#include "Util.h"
#include <sstream>
void TraceLog::logCall(const ADDRINT prevModuleBase, const ADDRINT prevAddr, bool isRVA, const std::string &module, const std::string &func)
{
std::stringstream ss;
ADDRINT rva = (isRVA) ? prevAddr : prevAddr - prevModuleBase;
if (!isRVA) {
ss << "> " << prevModuleBase << "+";
}
ss <<
std::hex << rva
<< DELIMITER;
if (!m_shortLog) {
ss << "called: "
<< module;
}
else {
ss << util::getDllName(module);
}
if (func.length() > 0) {
ss << "." << func;
}
logLine(ss.str());
}
void TraceLog::logCall(const ADDRINT prevBase, const ADDRINT prevAddr, const ADDRINT calledPageBase, const ADDRINT callAddr)
{
std::stringstream ss;
if (prevBase) {
ss << "> " << prevBase << "+";
}
const ADDRINT rva = callAddr - calledPageBase;
ss <<
std::hex << prevAddr
<< DELIMITER
<< "called: ?? [" << calledPageBase << "+" << rva << "]";
logLine(ss.str());
}
void TraceLog::logCallRet(const ADDRINT prevBase, const ADDRINT prevAddr, const ADDRINT retPageBase, const ADDRINT retAddr, const std::string &module, const std::string &func)
{
std::stringstream ss;
ADDRINT retRva = retAddr;
if (retPageBase) {
retRva -= retPageBase;
ss << "> " << retPageBase << "+";
}
ss
<< std::hex << retRva
<< DELIMITER
<< "RET from: "
<< "[" << prevBase << "+" << prevAddr << "] -> "
<< util::getDllName(module);
if (func.length() > 0) {
ss << "." << func;
}
logLine(ss.str());
}
void TraceLog::logSectionChange(const ADDRINT prevAddr, std::string &name)
{
std::stringstream ss;
ss
<< std::hex << prevAddr
<< DELIMITER
<< "section: [" << name << "]";
logLine(ss.str());
}
void TraceLog::logIndirectCall(const ADDRINT prevModuleBase, const ADDRINT prevAddr, bool isRVA, const ADDRINT calledBase, const ADDRINT calledRVA, const char* disasm)
{
std::stringstream ss;
ADDRINT rva = (isRVA) ? prevAddr : prevAddr - prevModuleBase;
if (!isRVA) {
ss << "> " << prevModuleBase << "+";
}
ss
<< std::hex << rva
<< DELIMITER;
if (disasm) {
ss << "[" << disasm << "] ";
}
ss << "to: " << (calledBase + calledRVA) << " [" << calledBase << " + " << calledRVA << "]";
logLine(ss.str());
}
void TraceLog::logInstruction(const ADDRINT base, const ADDRINT rva, const std::string& mnem, const ADDRINT param)
{
std::stringstream ss;
if (base) {
ss << "> " << std::hex << base << "+";
}
ss
<< std::hex << rva
<< DELIMITER
<< mnem << ":"
<< std::hex << param;
logLine(ss.str());
}
void TraceLog::logInstruction(const ADDRINT base, const ADDRINT rva, const std::string& mnem)
{
std::stringstream ss;
if (base) {
ss << "> " << std::hex << base << "+";
}
ss
<< std::hex << rva
<< DELIMITER
<< mnem;
logLine(ss.str());
}
void TraceLog::logSyscall(const ADDRINT base, const ADDRINT rva, const ADDRINT param, const std::string& funcName)
{
std::stringstream ss;
if (base) {
ss << "> " << std::hex << base << "+";
}
ss
<< std::hex << rva
<< DELIMITER
<< "SYSCALL:0x"
<< std::hex << param;
if (!funcName.empty()) {
ss << "(" << funcName << ")";
}
logLine(ss.str());
}
void TraceLog::logLine(const std::string& str, bool forceFlush)
{
std::lock_guard<std::mutex> lock(m_fileMutex);
if (!createFile()) return;
m_traceFile << str << std::endl;
autoFlush(forceFlush);
}
void TraceLog::logNewSectionCalled(const ADDRINT prevAddr, const std::string &prevSection, const std::string &currSection)
{
std::stringstream ss;
ss
<< std::hex << prevAddr
<< DELIMITER
<< "[" << prevSection << "] -> [" << currSection << "]";
logLine(ss.str());
}