-
Notifications
You must be signed in to change notification settings - Fork 1
/
namefunc.cpp
459 lines (379 loc) · 11.6 KB
/
namefunc.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
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
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
///////////////////////////////////////////////////////////////////////////////////////////////
//
// -- GNU -- open source
// Please read and agree to the mb_gnu_license.txt file
// (the file is located in the marine_bot source folder)
// before editing or distributing this source code.
// This source code is free for use under the rules of the GNU General Public License.
// For more information goto:: http://www.gnu.org/licenses/
//
// (http://planethalflife.com/botman/)
// credits to - valve, botman.
//
// Marine Bot - code by Frank McNeil, Kota@, Mav, Shrike.
//
// (http://marinebot.xf.cz)
//
//
// namefunc.cpp
//
////////////////////////////////////////////////////////////////////////////////////////////////
#if defined(WIN32)
#pragma warning(disable: 4005 91)
#endif
#include "defines.h"
#include "extdll.h"
#include "util.h"
#include "enginecallback.h"
#include "cbase.h"
#include "bot.h"
#define MAX_SYMBOLS 1000 /* max exported symbols */
#define DOS_SIGNATURE 0x5A4D /* MZ */
#define NT_SIGNATURE 0x00004550 /* PE00 */
//extern GIVEFNPTRSTODLL other_GiveFnptrsToDll;
#ifndef __linux__
extern HINSTANCE h_Library;
#else
extern void *h_Library;
#endif
// globals
WORD *p_Ordinals = nullptr;
DWORD *p_Functions = nullptr;
DWORD *p_Names = nullptr;
char *p_FunctionNames[MAX_SYMBOLS];
int num_ordinals;
unsigned long base_offset;
typedef struct { // DOS .EXE header
WORD e_magic; // Magic number
WORD e_cblp; // Bytes on last page of file
WORD e_cp; // Pages in file
WORD e_crlc; // Relocations
WORD e_cparhdr; // Size of header in paragraphs
WORD e_minalloc; // Minimum extra paragraphs needed
WORD e_maxalloc; // Maximum extra paragraphs needed
WORD e_ss; // Initial (relative) SS value
WORD e_sp; // Initial SP value
WORD e_csum; // Checksum
WORD e_ip; // Initial IP value
WORD e_cs; // Initial (relative) CS value
WORD e_lfarlc; // File address of relocation table
WORD e_ovno; // Overlay number
WORD e_res[4]; // Reserved words
WORD e_oemid; // OEM identifier (for e_oeminfo)
WORD e_oeminfo; // OEM information; e_oemid specific
WORD e_res2[10]; // Reserved words
LONG e_lfanew; // File address of new exe header
} DOS_HEADER, *P_DOS_HEADER;
typedef struct {
WORD Machine;
WORD NumberOfSections;
DWORD TimeDateStamp;
DWORD PointerToSymbolTable;
DWORD NumberOfSymbols;
WORD SizeOfOptionalHeader;
WORD Characteristics;
} PE_HEADER, *P_PE_HEADER;
#define SIZEOF_SHORT_NAME 8
typedef struct {
BYTE Name[SIZEOF_SHORT_NAME];
union {
DWORD PhysicalAddress;
DWORD VirtualSize;
} Misc;
DWORD VirtualAddress;
DWORD SizeOfRawData;
DWORD PointerToRawData;
DWORD PointerToRelocations;
DWORD PointerToLinenumbers;
WORD NumberOfRelocations;
WORD NumberOfLinenumbers;
DWORD Characteristics;
} SECTION_HEADER, *P_SECTION_HEADER;
typedef struct {
DWORD VirtualAddress;
DWORD Size;
} DATA_DIRECTORY, *P_DATA_DIRECTORY;
#define NUMBEROF_DIRECTORY_ENTRIES 16
typedef struct {
WORD Magic;
BYTE MajorLinkerVersion;
BYTE MinorLinkerVersion;
DWORD SizeOfCode;
DWORD SizeOfInitializedData;
DWORD SizeOfUninitializedData;
DWORD AddressOfEntryPoint;
DWORD BaseOfCode;
DWORD BaseOfData;
DWORD ImageBase;
DWORD SectionAlignment;
DWORD FileAlignment;
WORD MajorOperatingSystemVersion;
WORD MinorOperatingSystemVersion;
WORD MajorImageVersion;
WORD MinorImageVersion;
WORD MajorSubsystemVersion;
WORD MinorSubsystemVersion;
DWORD Win32VersionValue;
DWORD SizeOfImage;
DWORD SizeOfHeaders;
DWORD CheckSum;
WORD Subsystem;
WORD DllCharacteristics;
DWORD SizeOfStackReserve;
DWORD SizeOfStackCommit;
DWORD SizeOfHeapReserve;
DWORD SizeOfHeapCommit;
DWORD LoaderFlags;
DWORD NumberOfRvaAndSizes;
DATA_DIRECTORY DataDirectory[NUMBEROF_DIRECTORY_ENTRIES];
} OPTIONAL_HEADER, *P_OPTIONAL_HEADER;
typedef struct {
DWORD Characteristics;
DWORD TimeDateStamp;
WORD MajorVersion;
WORD MinorVersion;
DWORD Name;
DWORD Base;
DWORD NumberOfFunctions;
DWORD NumberOfNames;
DWORD AddressOfFunctions; // RVA from base of image
DWORD AddressOfNames; // RVA from base of image
DWORD AddressOfNameOrdinals; // RVA from base of image
} EXPORT_DIRECTORY, *P_EXPORT_DIRECTORY;
void FgetString(char *str, FILE *bfp)
{
char ch;
while ((ch = fgetc(bfp)) != EOF)
{
*str++ = ch;
if (ch == 0)
break;
}
}
void FreeNameFuncGlobals()
{
if (p_Ordinals)
free(p_Ordinals);
if (p_Functions)
free(p_Functions);
if (p_Names)
free(p_Names);
for (int i=0; i < num_ordinals; i++)
{
if (p_FunctionNames[i])
free(p_FunctionNames[i]);
}
}
void getMSVCName(char *out_name, char *in_name)
{
char *pos;
if (in_name[0] == '?') // is this a MSVC C++ mangled name?
{
if ((pos = strstr(in_name, "@@")) != nullptr)
{
const int len = pos - in_name;
strcpy(out_name, &in_name[1]); // strip off the leading '?'
out_name[len-1] = 0; // terminate string at the "@@"
return;
}
}
strcpy(out_name, in_name);
}
void LoadSymbols(char *filename)
{
FILE *bfp;
DOS_HEADER dos_header;
LONG nt_signature;
PE_HEADER pe_header;
SECTION_HEADER section_header;
BOOL edata_found;
OPTIONAL_HEADER optional_header;
LONG edata_offset;
LONG edata_delta;
EXPORT_DIRECTORY export_directory;
LONG name_offset;
LONG ordinal_offset;
LONG function_offset;
char function_name[256];
int i, index;
BOOL error;
char msg[80];
for (i=0; i < num_ordinals; i++)
p_FunctionNames[i] = nullptr;
if ((bfp=fopen(filename, "rb")) == nullptr)
{
sprintf(msg, "DLL file %s not found!", filename);
ALERT(at_error, msg);
return;
}
if (fread(&dos_header, sizeof(dos_header), 1, bfp) != 1)
{
sprintf(msg, "%s is NOT a valid DLL file!", filename);
ALERT(at_error, msg);
return;
}
if (dos_header.e_magic != DOS_SIGNATURE)
{
ALERT(at_error, "file does not have a valid DLL signature!");
return;
}
if (fseek(bfp, dos_header.e_lfanew, SEEK_SET) == -1)
{
ALERT(at_error, "error seeking to new exe header!");
return;
}
if (fread(&nt_signature, sizeof(nt_signature), 1, bfp) != 1)
{
ALERT(at_error, "file does not have a valid NT signature!");
return;
}
if (nt_signature != NT_SIGNATURE)
{
ALERT(at_error, "file does not have a valid NT signature!");
return;
}
if (fread(&pe_header, sizeof(pe_header), 1, bfp) != 1)
{
ALERT(at_error, "file does not have a valid PE header!");
return;
}
if (pe_header.SizeOfOptionalHeader == 0)
{
ALERT(at_error, "file does not have an optional header!");
return;
}
if (fread(&optional_header, sizeof(optional_header), 1, bfp) != 1)
{
ALERT(at_error, "file does not have a valid optional header!");
return;
}
edata_found = FALSE;
for (i=0; i < pe_header.NumberOfSections; i++)
{
if (fread(§ion_header, sizeof(section_header), 1, bfp) != 1)
{
ALERT(at_error, "error reading section header!");
return;
}
if (strcmp(reinterpret_cast<char*>(section_header.Name), ".edata") == 0)
{
edata_found = TRUE;
break;
}
}
if (edata_found)
{
edata_offset = section_header.PointerToRawData;
edata_delta = section_header.VirtualAddress - section_header.PointerToRawData;
}
else
{
edata_offset = optional_header.DataDirectory[0].VirtualAddress;
edata_delta = 0L;
}
if (fseek(bfp, edata_offset, SEEK_SET) == -1)
{
ALERT(at_error, "file does not have a valid exports section!");
return;
}
if (fread(&export_directory, sizeof(export_directory), 1, bfp) != 1)
{
ALERT(at_error, "file does not have a valid optional header!");
return;
}
num_ordinals = export_directory.NumberOfNames; // also number of ordinals
if (num_ordinals > MAX_SYMBOLS)
{
ALERT(at_error, "too many symbols to process. make MAX_SYMBOLS bigger.");
return;
}
ordinal_offset = export_directory.AddressOfNameOrdinals - edata_delta;
if (fseek(bfp, ordinal_offset, SEEK_SET) == -1)
{
ALERT(at_error, "file does not have a valid ordinals section!");
return;
}
if ((p_Ordinals = (WORD *)malloc(num_ordinals * sizeof(WORD))) == nullptr)
{
ALERT(at_error, "error allocating memory for ordinals section!");
return;
}
if (fread(p_Ordinals, num_ordinals * sizeof(WORD), 1, bfp) != 1)
{
FreeNameFuncGlobals();
ALERT(at_error, "error reading ordinals table!");
return;
}
function_offset = export_directory.AddressOfFunctions - edata_delta;
if (fseek(bfp, function_offset, SEEK_SET) == -1)
{
ALERT(at_error, "file does not have a valid export address section!");
return;
}
if ((p_Functions = (DWORD *)malloc(num_ordinals * sizeof(DWORD))) == nullptr)
{
ALERT(at_error, "error allocating memory for export address section!");
return;
}
if (fread(p_Functions, num_ordinals * sizeof(DWORD), 1, bfp) != 1)
{
FreeNameFuncGlobals();
ALERT(at_error, "error reading export address section!");
return;
}
name_offset = export_directory.AddressOfNames - edata_delta;
if (fseek(bfp, name_offset, SEEK_SET) == -1)
{
FreeNameFuncGlobals();
ALERT(at_error, "file does not have a valid names section!");
return;
}
if ((p_Names = (DWORD *)malloc(num_ordinals * sizeof(DWORD))) == nullptr)
{
FreeNameFuncGlobals();
ALERT(at_error, "error allocating memory for names section!");
return;
}
if (fread(p_Names, num_ordinals * sizeof(DWORD), 1, bfp) != 1)
{
FreeNameFuncGlobals();
ALERT(at_error, "error reading names table!");
return;
}
error = FALSE;
for (i=0; (i < num_ordinals) && (error==FALSE); i++)
{
name_offset = p_Names[i] - edata_delta;
if (name_offset != 0)
{
if (fseek(bfp, name_offset, SEEK_SET) == -1)
error = TRUE;
else
{
FgetString(function_name, bfp);
if ((p_FunctionNames[i] = static_cast<char*>(malloc(strlen(function_name) + 1))) == nullptr)
error = TRUE;
else
getMSVCName(p_FunctionNames[i], function_name);
}
}
}
if (error)
{
FreeNameFuncGlobals();
ALERT(at_error, "error in loading names section!");
return;
}
fclose(bfp);
void *game_GiveFnptrsToDll;
for (i=0; i < num_ordinals; i++)
{
if (strcmp("GiveFnptrsToDll", p_FunctionNames[i]) == 0)
{
index = p_Ordinals[i];
game_GiveFnptrsToDll = (void *)GetProcAddress(h_Library, "GiveFnptrsToDll");
base_offset = reinterpret_cast<unsigned long>(game_GiveFnptrsToDll) - p_Functions[index];
break;
}
}
}