-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathMapReader.cpp
More file actions
267 lines (202 loc) · 4.42 KB
/
MapReader.cpp
File metadata and controls
267 lines (202 loc) · 4.42 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
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
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
#include "Map.h"
MapFile::MapFile()
{
m_FileHandle = INVALID_HANDLE_VALUE;
m_FileDataBase = nullptr;
m_FileData = nullptr;
m_Segments.reserve(20);
m_Symbols.reserve(5000);
}
MapFile::~MapFile()
{
if (m_FileHandle != INVALID_HANDLE_VALUE)
CloseHandle(m_FileHandle);
if (m_FileDataBase)
VirtualFree(m_FileDataBase, 0, MEM_RELEASE);
m_Segments.clear();
m_Symbols.clear();
}
bool MapFile::Load(const char *Path)
{
m_FileHandle = CreateFileA(Path, GENERIC_READ, FILE_SHARE_READ, nullptr, OPEN_EXISTING, FILE_ATTRIBUTE_NORMAL, nullptr);
if (m_FileHandle == INVALID_HANDLE_VALUE)
{
msg("Unable to open file\n");
return false;
}
DWORD fileSize = GetFileSize(m_FileHandle, nullptr);
if (fileSize <= 0)
{
msg("No data in file\n");
return false;
}
m_FileDataBase = (char *)VirtualAlloc(nullptr, fileSize, MEM_COMMIT, PAGE_READWRITE);
m_FileData = m_FileDataBase;
if (!m_FileDataBase)
{
msg("Failed to allocate memory\n");
return false;
}
if (!ReadFile(m_FileHandle, m_FileData, fileSize, &fileSize, nullptr))
{
msg("Failed to read file data\n");
return false;
}
if (!LoadSegments())
return false;
if (!LoadSymbols())
return false;
return true;
}
std::vector<MapFileSegment>& MapFile::GetSegments()
{
return m_Segments;
}
std::vector<MapFileSymbol>& MapFile::GetSymbols()
{
return m_Symbols;
}
bool MapFile::EnumerateLines(char *Start, int Type)
{
int line = 0;
char *ptr = Start;
char *eol = nullptr;
for (; *ptr; ptr++)
{
switch (*ptr)
{
case '\n':
line++;
case '\r':
case ' ':
case '\t':
continue;
}
// Line #0 is the heading
if (line < 1)
continue;
// Terminate the line
eol = strchr(ptr, '\r');
if (!eol)
eol = strchr(ptr, '\n');
if (eol)
*eol = '\0';
// If the delimiter is not present, the line is not valid
if (!strchr(ptr, ':'))
break;
if (Type == 'SEGM' && !LoadSegment(ptr))
break;
if (Type == 'SYMB' && !LoadSymbol(ptr))
break;
if (eol)
ptr = eol + 1;
}
if (eol)
*eol = '\r';
m_FileData = ptr;
return true;
}
bool MapFile::LoadSegments()
{
/*
Start Length Name Class
0001:00000000 000000030H .init CODE
*/
char *startPos = strstr(m_FileData, "Start");
if (!startPos)
{
msg("Couldn't find starting position for segments\n");
return false;
}
return EnumerateLines(startPos, 'SEGM');
}
char *GrabToken(char *Dest, char *Src)
{
// Skip spaces
while (*Src == ' ' || *Src == '\t')
Src++;
char *bufEnd = strchr(Src, ' ');
// Case with ':'
{
char *delim = strchr(Src, ':');
if (delim && (delim < bufEnd))
bufEnd = delim;
}
if (bufEnd)
*bufEnd = '\0';
strcpy(Dest, Src);
return ((bufEnd) ? (bufEnd + 1) : nullptr);
}
bool MapFile::LoadSegment(char *Line)
{
// ID:BASE LENGTH NAME CLASS
char tokens[8][256];
memset(tokens, 0, sizeof(tokens));
// Skip spaces and make a copy
while (*Line == ' ' || *Line == '\t')
Line++;
char buf[256];
strncpy_s(buf, Line, 255);
// Parse each token
char *bufPtr = buf;
int tokenIndex = 0;
for (int i = 0; i < ARRAYSIZE(tokens); i++)
{
bufPtr = GrabToken(tokens[i], bufPtr);
if (!bufPtr)
break;
}
MapFileSegment segdef;
strcpy_s(segdef.Name, tokens[3]);
strcpy_s(segdef.Class, tokens[4]);
if (sscanf_s(tokens[0], "%x", &segdef.Id) <= 0)
return false;
if (sscanf_s(tokens[1], "%llx", &segdef.Start) <= 0)
return false;
if (sscanf_s(tokens[2], "%llxH", &segdef.Length) <= 0)
return false;
m_Segments.push_back(segdef);
return true;
}
bool MapFile::LoadSymbols()
{
/*
Address Publics by Value
0001:00000000 _init_proc
*/
char *startPos = strstr(m_FileData, "Address");
if (!startPos)
{
msg("Couldn't find starting position for symbols\n");
return false;
}
return EnumerateLines(startPos, 'SYMB');
}
bool MapFile::LoadSymbol(char *Line)
{
// ID:OFFSET NAME
char tokens[5][256];
memset(tokens, 0, sizeof(tokens));
// Skip spaces and make a copy
while (*Line == ' ' || *Line == '\t')
Line++;
char buf[256];
strncpy_s(buf, Line, 255);
// Parse each token
char *bufPtr = buf;
int tokenIndex = 0;
for (int i = 0; i < ARRAYSIZE(tokens); i++)
{
bufPtr = GrabToken(tokens[i], bufPtr);
if (!bufPtr)
break;
}
MapFileSymbol symdef;
strcpy_s(symdef.Name, tokens[2]);
if (sscanf_s(tokens[0], "%x", &symdef.Id) <= 0)
return false;
if (sscanf_s(tokens[1], "%llx", &symdef.Offset) <= 0)
return false;
m_Symbols.push_back(symdef);
return true;
}