-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpatchmacros.inc
338 lines (285 loc) · 5.6 KB
/
patchmacros.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
macro _invoke proc,[arg]
{ common
if ~ arg eq
reverse
pushd arg
common
end if
call dword [proc] }
macro _invoke_cdecl proc,[arg]
{
common
.args_c=0
if ~ arg eq
reverse
pushd arg
.args_c = .args_c+1
common
end if
call dword [proc]
if .args_c > 0
add esp, .args_c*4
end if }
macro _call_cdecl proc,[arg]
{
common
.args_c=0
if ~ arg eq
reverse
pushd arg
.args_c = .args_c+1
common
end if
call proc
if .args_c > 0
add esp, .args_c*4
end if }
; === Patching macros ===
p_savedorg = 0
p_sectionset = 0
macro pushorg value*
{
p_wasorg = $
org value
p_inorg = $
p_savedorg = 1
}
macro poporg
{
local orgsize
orgsize = $ - p_inorg
org p_wasorg + orgsize
p_savedorg = 0
}
macro patchsection value*
{
p_sectionset = 1
p_sectionorg = value
}
macro patchsetsection value*, address*
{
patchsection value
patchatfixed address
}
macro patchfile name*
{
virtual
@@:
file name
p_filesize = $ - @b
end virtual
p_start = $
p_pointer = 0
p_filename equ name
}
macro patchatfixed address*
{
if p_savedorg = 1
poporg
end if
p_pointer = p_pointer - p_start + $
p_toadd = address - $
if address >= 0
if p_toadd >= 0
if p_pointer + p_toadd <= p_filesize
file p_filename: p_pointer, p_toadd
else
p_addpart = 0
if p_pointer < p_filesize
p_addpart = p_filesize - p_pointer
file p_filename: p_pointer, p_addpart
end if
rb p_toadd - p_addpart
end if
else
"Error: can't move backwards."
end if
else
"Error: invalid address, must be >= 0."
end if
p_start = $
p_pointer = p_pointer + p_toadd
if p_sectionset = 1
pushorg p_sectionorg + address
end if
}
; Completes a function patch - fills unused space with NOPs
; makes an error if the code has exceeded the length
macro patchtillfixed endAddress*
{
pt_curAddress = $
; Calculation of the address
if p_sectionset = 1
pt_curAddress = pt_curAddress - p_sectionorg
end if
; checking and error output
if pt_curAddress > endAddress
_print_int "***ERROR*** Patch overflow error, expecting end of patch at", endAddress
_print_int "***ERROR*** but current offset is", pt_curAddress
error ABORTING COMPILATION
end if
; fill with NOPs
if pt_curAddress < endAddress
db (endAddress - pt_curAddress) dup (090h)
end if
}
macro patchat address*
{
address2 = address - p_sectionorg
patchatfixed address2
}
macro patchtill address*
{
address2 = address - p_sectionorg
patchtillfixed address2
}
macro patchend
{
if p_savedorg
poporg
end if
p_pointer = p_pointer - p_start + $
p_toadd = p_filesize - $
if p_toadd >= 0
if p_pointer + p_toadd <= p_filesize
file p_filename: p_pointer, p_toadd
else
p_addpart = 0
if p_pointer < p_filesize
p_addpart = p_filesize - p_pointer
file p_filename: p_pointer, p_addpart
end if
db p_toadd - p_addpart dup 0
end if
end if
}
macro patchend2 endAddress*
{
if p_savedorg
poporg
end if
p_pointer = p_pointer - p_start + $
p_toadd = p_filesize - $
if p_toadd >= 0
if p_pointer + p_toadd <= p_filesize
file p_filename: p_pointer, p_toadd
else
p_addpart = 0
if p_pointer < p_filesize
p_addpart = p_filesize - p_pointer
file p_filename: p_pointer, p_addpart
end if
db p_toadd - p_addpart dup 0
end if
end if
if pt_curAddress < endAddress
db (endAddress - pt_curAddress) dup (000h)
end if
}
macro _print_int header*, integer*, usebits
{
if usebits + 1 = 1
bits = 32
else
bits = usebits
end if
display header
display " "
repeat bits/4
d = '0' + integer shr (bits-%*4) and 0Fh
if d > '9'
d = d + 'A'-'9'-1
end if
display d
end repeat
display 13,10
}
macro _assertEqual got*, expected* {
if got <> expected
_print_int "Got", got
_print_int "Expected", expected
error "not equal values"
end if
}
; vim:ft=fasm
macro quickpatchpushfixed address*, target*
{
patchatfixed (address)
push target
patchtillfixed (address + 5)
}
macro quickpatchbytefixed address*, val
{
patchatfixed (address)
db val
patchtillfixed (address + 1)
}
macro quickpatchshortfixed address*, val
{
patchatfixed (address)
dw val
patchtillfixed (address + 2)
}
macro quickpatchlongfixed address*, val
{
patchatfixed (address)
dq val
patchtillfixed (address + 2)
}
macro quickpatchintfixed address*, val
{
patchatfixed (address)
dd val
patchtillfixed (address + 4)
}
macro quickpatchpush address*, target*
{
address2 = address - p_sectionorg
quickpatchpushfixed address2, target
}
macro quickpatchshort address*, val
{
address2 = address - p_sectionorg
quickpatchshortfixed address2, val
}
macro quickpatchlong address*, val
{
address2 = address - p_sectionorg
quickpatchlongfixed address2, val
}
macro quickpatchint address*, val
{
address2 = address - p_sectionorg
quickpatchintfixed address2, val
}
macro quickpatchfloat address*, val
{
address2 = address - p_sectionorg
quickpatchintfixed address2, val
}
macro quickpatchbyte address*, val
{
address2 = address - p_sectionorg
quickpatchbytefixed address2, val
}
macro quickzerodw address*
{
address2 = address - p_sectionorg
patchatfixed (address)
db 0,0
patchtillfixed (address + 2)
}
macro pushall
{
push eax
push ebx
push ecx
push edx
}
macro popall
{
pop edx
pop ecx
pop ebx
pop eax
}