-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdisasm.inc
513 lines (446 loc) · 13.2 KB
/
disasm.inc
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
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
// Copyright (C) 2012 Zeex
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
// OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
#if defined DISASM_INC
#endinput
#endif
#define DISASM_INC
/**
* <library name="amx_assembly disasm" summary="AMX Assembly Library: Disassemble compiled code.">
* <summary pawndoc="true">
* This library uses the enhanced <em>pawndoc.xsl</em> from
* <a href="https://github.com/pawn-lang/pawndoc">pawn-lang/pawndoc</a>.
* This XSL has features such as library and markdown support, and will not
* render this message when used.
* </summary>
* </library>
*/
/// <p/>
#include <string>
#include <file>
#include "amx_base"
#include "amx_header"
#include "amx_memory"
#include "opcode"
#define DISASM_MAX_PUBLIC_NAME 64
#define DISASM_MAX_NATIVE_NAME 100
/// <p/>
/// <library>amx_assembly disasm</library>
enum DisasmContext {
DisasmContext_start_ip,
DisasmContext_end_ip,
DisasmContext_nip,
DisasmContext_cip,
Opcode:DisasmContext_opcode
}
/// <library>amx_assembly disasm</library>
const DisasmContext:DisasmContext__ = DisasmContext;
/// <p/>
/// <library>amx_assembly disasm</library>
enum DisasmResult {
DISASM_DONE = 0,
DISASM_NOP = 1,
DISASM_OK = 2
}
/// <library>amx_assembly disasm</library>
const DisasmResult:DisasmResult__ = DisasmResult;
/// <library>amx_assembly disasm</library>
static stock gCodBase = 0;
/// <library>amx_assembly disasm</library>
stock DisasmInit(ctx[DisasmContext], start = 0, end = 0) {
new hdr[AMX_HDR];
GetAmxHeader(hdr);
RelocateOpcode(OP_NOP);
gCodBase = GetAmxBaseAddress() + hdr[AMX_HDR_COD];
new dat = hdr[AMX_HDR_DAT];
new cod = hdr[AMX_HDR_COD];
new code_base = cod - dat;
start += code_base;
ctx[DisasmContext_nip] = start;
ctx[DisasmContext_cip] = start;
ctx[DisasmContext_start_ip] = start;
if (end != 0) {
ctx[DisasmContext_end_ip] = code_base + end;
} else {
// code_base + (dat - cod)
// = (cod - dat) + (dat - cod)
// = cod - dat + dat - cod
// = cod - cod + dat - dat
// = 0
ctx[DisasmContext_end_ip] = 0;
}
}
/// <library>amx_assembly disasm</library>
stock bool:DisasmDecodeInsn(ctx[DisasmContext]) {
new ip = ctx[DisasmContext_nip];
if (ip >= 0) {
return false;
}
new Opcode:opcode = UnsafeUnrelocateOpcode(Opcode:ReadAmxMemory(ip));
if (opcode <= OP_NONE || _:opcode >= NUM_OPCODES) {
return false;
}
ctx[DisasmContext_cip] = ip,
ctx[DisasmContext_opcode] = opcode;
if (opcode == OP_CASETBL) {
ip += cellbytes,
ip += ReadAmxMemory(ip) * (2 * cellbytes);
}
return
ctx[DisasmContext_nip] = ip + gAMXOpcodeBaseSizes[_:opcode],
true;
}
/// <library>amx_assembly disasm</library>
stock DisasmResult:DisasmNext(ctx[DisasmContext]) {
// This function is just a slightly more consistent wrapper around
// "DisasmDecodeInsn". I wanted to change that function, but that would
// cause breaking changes. This returns non-zero while there is still data
// being read, even if that data is not a valid opcode. For invalid code,
// it skips the current cell and returns an invalid opcode. It also now
// checks the end point correctly.
if (ctx[DisasmContext_nip] >= ctx[DisasmContext_end_ip]) {
return DISASM_DONE;
} else if (DisasmDecodeInsn(ctx)) {
return DISASM_OK;
} else {
ctx[DisasmContext_cip] = ctx[DisasmContext_nip],
ctx[DisasmContext_nip] += cellbytes,
ctx[DisasmContext_opcode] = Opcode:NUM_OPCODES;
return DISASM_NOP;
}
}
/// <library>amx_assembly disasm</library>
stock Opcode:DisasmNextInsn(ctx[DisasmContext]) {
if (DisasmDecodeInsn(ctx)) {
return ctx[DisasmContext_opcode];
}
return OP_NONE;
}
/// <library>amx_assembly disasm</library>
stock Opcode:DisasmGetOpcode(const ctx[DisasmContext]) {
return ctx[DisasmContext_opcode];
}
/// <library>amx_assembly disasm</library>
stock DisasmGetOperand(const ctx[DisasmContext], index = 0) {
return ReadAmxMemory(ctx[DisasmContext_cip] + (index + 1) * cellbytes);
}
/// <library>amx_assembly disasm</library>
stock DisasmGetNumOperands(const ctx[DisasmContext]) {
new Opcode:opcode = ctx[DisasmContext_opcode];
if (opcode == OP_CASETBL) {
return ReadAmxMemory(ctx[DisasmContext_cip] + cellbytes);
} else {
return gAMXOpcodeParameterCounts[_:opcode];
}
}
/// <library>amx_assembly disasm</library>
stock bool:DisasmNeedReloc(const ctx[DisasmContext]) {
return HasReloc() && GetOpcodeInstructionRelocatable(ctx[DisasmContext_opcode]);
}
/// <library>amx_assembly disasm</library>
stock DisasmReloc(addr) {
return addr - gCodBase;
}
/// <library>amx_assembly disasm</library>
stock DisasmGetNextIp(const ctx[DisasmContext]) {
return ctx[DisasmContext_nip];
}
/// <library>amx_assembly disasm</library>
stock DisasmGetCurIp(const ctx[DisasmContext]) {
return ctx[DisasmContext_cip];
}
/// <library>amx_assembly disasm</library>
stock DisasmGetRemaining(const ctx[DisasmContext]) {
return ctx[DisasmContext_end_ip] - ctx[DisasmContext_nip];
}
/// <library>amx_assembly disasm</library>
stock DisasmGetInsnName(const ctx[DisasmContext], name[], size = sizeof(name)) {
name[0] = '\0';
strcat(name, GetOpcodeInstructionName(ctx[DisasmContext_opcode]), size);
}
/// <library>amx_assembly disasm</library>
stock DisasmGetOperandReloc(const ctx[DisasmContext], index = 0) {
new param = ReadAmxMemory(ctx[DisasmContext_cip] + (index + 1) * cellbytes);
new Opcode:op = ctx[DisasmContext_opcode];
// Needs special code for dealing with "CASETBL", which has multiple
// parameters - not all of them to be relocated. If the opcode is NOT that,
// then check if it is any other opcode requiring relocation. This does
// result in the odd pattern of having a triadic operator in a conditional,
// but the alternative would be:
//
// if (ctx[DisasmContext_opcode == OP_CASETBL) {
// if (index & 1) {
// return param - base;
// }
// } else if (DisasmNeedReloc(ctx)) {
// return param - base;
// }
// return param;
//
// Or:
//
// if ((ctx[DisasmContext_opcode == OP_CASETBL && (index & 1)) ||
// (ctx[DisasmContext_opcode != OP_CASETBL && DisasmNeedReloc(ctx))) {
// return param - base;
// } else {
// return param;
// }
//
// I think the conditional ends up nicer in this rare case.
if ((op == OP_CASETBL) ? (index & 1) : _:gAMXOpcodeNeedsReloc[_:op]) {
return param - gCodBase;
} else {
return param;
}
}
/// <library>amx_assembly disasm</library>
static stock ToHexStr(x) {
new s[11];
new i = 0;
new j = 0;
while (i < sizeof(s) && j < cellbytes * 2) {
new n = x >> (cellbytes * 2 - 1 - j) * 4 & 0xF;
switch (n) {
case 0x0..0x9:
s[i] = n + '0';
case 0xA..0xF:
s[i] = n + 'a' - 0xA;
}
i++;
j++;
}
return s;
}
/// <library>amx_assembly disasm</library>
static stock bool:IsPrintableAscii(c) {
return 32 <= c <= 126;
}
/// <library>amx_assembly disasm</library>
static stock ToPrintableAscii(c) {
return IsPrintableAscii(c) ? c : ' ';
}
/// <library>amx_assembly disasm</library>
stock DisasmWriteCode(File:file) {
new ctx[DisasmContext];
DisasmInit(ctx);
new hdr[AMX_HDR];
GetAmxHeader(hdr);
new dat = hdr[AMX_HDR_DAT];
new cod = hdr[AMX_HDR_COD];
fwrite(file, "; CODE\n\n");
while (DisasmGetNextIp(ctx) < ctx[DisasmContext_end_ip])
{
if (!DisasmDecodeInsn(ctx)) {
new cip = DisasmGetNextIp(ctx);
ctx[DisasmContext_nip] += cellbytes;
fwrite(file, ToHexStr(cip + dat - cod));
fwrite(file, " ???? ");
fwrite(file, ToHexStr(ReadAmxMemory(cip)));
fwrite(file, "\n");
continue;
}
new cip = DisasmGetCurIp(ctx);
new Opcode:opcode = DisasmGetOpcode(ctx);
if (opcode == OP_PROC) {
fwrite(file, "\n");
}
new insn_name[OPCODE_MAX_INSN_NAME];
DisasmGetInsnName(ctx, insn_name);
fwrite(file, ToHexStr(cip + dat - cod));
fwrite(file, " ");
fwrite(file, insn_name);
fwrite(file, " ");
switch (opcode) {
case OP_PROC: {
new name[DISASM_MAX_PUBLIC_NAME];
new address = cip + dat - cod;
if (address == hdr[AMX_HDR_CIP]) {
strcat(name, "main");
} else {
new index = GetPublicIndexFromAddress(address);
if (index >= 0) {
GetPublicNameFromIndex(index, name);
}
}
if (strlen(name) != 0) {
fwrite(file, "; ");
fwrite(file, name);
}
}
case OP_CASETBL: {
new num = DisasmGetNumOperands(ctx);
fwrite(file, ToHexStr(num));
fwrite(file, " ");
new rel_addr = DisasmGetOperand(ctx, 1) - gCodBase;
fwrite(file, ToHexStr(rel_addr));
for (new i = 1; i <= num; i++) {
fwrite(file, "\n case ");
new val = DisasmGetOperand(ctx, i * 2);
fwrite(file, ToHexStr(val));
fwrite(file, " ");
rel_addr = DisasmGetOperand(ctx, i * 2 + 1) - gCodBase;
fwrite(file, ToHexStr(rel_addr));
}
}
case OP_CALL: {
new name[DISASM_MAX_PUBLIC_NAME];
new address = DisasmGetOperand(ctx) - gCodBase;
if (address == hdr[AMX_HDR_CIP]) {
strcat(name, "main");
} else {
new index = GetPublicIndexFromAddress(address);
if (index >= 0) {
GetPublicNameFromIndex(index, name);
}
}
fwrite(file, ToHexStr(address));
if (strlen(name) > 0) {
fwrite(file, "; ");
fwrite(file, name);
}
}
case OP_SYSREQ_C, OP_SYSREQ_D: {
new name[DISASM_MAX_NATIVE_NAME];
new address = DisasmGetOperand(ctx);
if (opcode == OP_SYSREQ_C) {
new index = DisasmGetOperand(ctx);
GetNativeNameFromIndex(index, name);
} else {
new index = GetNativeIndexFromAddress(address);
if (index >= 0) {
GetNativeNameFromIndex(index, name);
}
}
fwrite(file, ToHexStr(address));
if (strlen(name) > 0) {
fwrite(file, "; ");
fwrite(file, name);
}
}
#if OPCODE_HAS_O2
case OP_SYSREQ_N: {
// sysreq.n
new name[DISASM_MAX_NATIVE_NAME];
new address = DisasmGetOperand(ctx);
new index = GetNativeIndexFromAddress(address);
if (index >= 0) {
GetNativeNameFromIndex(index, name);
}
fwrite(file, ToHexStr(address));
fwrite(file, " ");
fwrite(file, ToHexStr(DisasmGetOperand(ctx, 1)));
if (strlen(name) > 0) {
fwrite(file, "; ");
fwrite(file, name);
}
}
#endif
default: {
new n = DisasmGetNumOperands(ctx);
for (new i = 0; i < n; i++) {
new operand = DisasmGetOperandReloc(ctx, i);
fwrite(file, ToHexStr(operand));
fwrite(file, " ");
}
}
}
fwrite(file, "\n");
}
}
/// <library>amx_assembly disasm</library>
stock DisasmWriteDataRowChar(File:file, start, num, max) {
new cur = start;
new end = start + num * cellbytes;
while (cur < max) {
new p[cellbytes char + 1];
p[0] = ReadAmxMemory(cur);
new u[cellbytes + 1];
u[0] = ToPrintableAscii(p{0});
u[1] = ToPrintableAscii(p{1});
u[2] = ToPrintableAscii(p{2});
u[3] = ToPrintableAscii(p{3});
#if cellbits == 32
u[4] = '\0';
#elseif cellbits == 64
u[4] = ToPrintableAscii(p{4});
u[5] = ToPrintableAscii(p{5});
u[6] = ToPrintableAscii(p{6});
u[7] = ToPrintableAscii(p{7});
u[8] = '\0';
#else
#error Unsupported `cellbits`.
#endif
if (cur < end) {
fwrite(file, u);
} else {
fwrite(file, " ");
}
cur += cellbytes;
}
}
/// <library>amx_assembly disasm</library>
stock DisasmWriteDataRowHex(File:file, start, num, max) {
new cur = start;
new end = start + num * cellbytes;
while (cur < max) {
if (cur < end) {
fwrite(file, ToHexStr(ReadAmxMemory(cur)));
} else {
fwrite(file, " ");
}
fwrite(file, " ");
cur += cellbytes;
}
}
/// <library>amx_assembly disasm</library>
stock DisasmWriteData(File:file) {
fwrite(file, "\n\n; DATA\n");
new hdr[AMX_HDR];
GetAmxHeader(hdr);
new dat = hdr[AMX_HDR_DAT];
new hea = hdr[AMX_HDR_HEA];
new data_end = hea - dat;
for (new i = 0; i < data_end; i += 4 * cellbytes) {
fwrite(file, ToHexStr(i));
fwrite(file, " ");
DisasmWriteDataRowHex(file, i, 4, min(i + 4 * cellbytes, data_end));
fwrite(file, " ");
DisasmWriteDataRowChar(file, i, 4, min(i + 4 * cellbytes, data_end));
fwrite(file, "\n");
}
}
/// <library>amx_assembly disasm</library>
stock DisasmWriteFile(File:file) {
DisasmWriteCode(file);
DisasmWriteData(file);
}
/// <library>amx_assembly disasm</library>
stock bool:DisasmWrite(const filename[]) {
new File:file = fopen(filename, io_write);
if (file) {
DisasmWriteFile(file);
fclose(file);
return true;
}
return false;
}
/// <library>amx_assembly disasm</library>
stock DisasmDump(const filename[]) {
DisasmWrite(filename);
}