-
Notifications
You must be signed in to change notification settings - Fork 1
/
mcode_emu.hpp
344 lines (306 loc) · 10.5 KB
/
mcode_emu.hpp
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
/*
* Copyright (c) 2023 by Hex-Rays, [email protected]
* ALL RIGHTS RESERVED.
*
* gooMBA plugin for Hex-Rays Decompiler.
* This file implements a simple microcode emulator class
*
*/
#pragma once
#include <hexrays.hpp>
//-------------------------------------------------------------------------
// truncate v to w bytes
inline uint64 trunc(uint64 v, int w)
{
QASSERT(30660, w == 1 || w == 2 || w == 4 || w == 8);
return v & make_mask<uint64>(w * 8);
}
//-------------------------------------------------------------------------
struct mcode_val_t
{
uint64 val;
int size; // in bytes
//-------------------------------------------------------------------------
void check_size_equal(const mcode_val_t &o) const
{
QASSERT(30661, size == o.size);
}
//-------------------------------------------------------------------------
mcode_val_t(uint64 v, int s) : val(trunc(v, s)), size(s) {}
//-------------------------------------------------------------------------
int64 signed_val() const
{
return extend_sign(val, size, true);
}
//-------------------------------------------------------------------------
mcode_val_t sext(int target_sz) const
{
QASSERT(30662, target_sz >= size);
return mcode_val_t(signed_val(), target_sz);
}
//-------------------------------------------------------------------------
mcode_val_t zext(int target_sz) const
{
QASSERT(30663, target_sz >= size);
return mcode_val_t(val, target_sz);
}
//-------------------------------------------------------------------------
mcode_val_t low(int target_sz) const
{
QASSERT(30664, target_sz <= size);
return mcode_val_t(val, target_sz);
}
//-------------------------------------------------------------------------
mcode_val_t high(int target_sz) const
{
QASSERT(30665, target_sz <= size);
int bytes_to_remove = size - target_sz;
return mcode_val_t(right_ushift<uint64>(val, 8 * bytes_to_remove), target_sz);
}
//-------------------------------------------------------------------------
bool operator==(const mcode_val_t &o) const
{
return size == o.size && val == o.val;
}
//-------------------------------------------------------------------------
bool operator!=(const mcode_val_t &o) const
{
return !(*this == o);
}
//-------------------------------------------------------------------------
bool operator<(const mcode_val_t &o) const
{
QASSERT(30702, size == o.size);
return val < o.val;
}
//-------------------------------------------------------------------------
mcode_val_t operator+(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val + o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator-(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val - o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator*(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val * o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator/(const mcode_val_t &o) const
{
check_size_equal(o);
if ( o.val == 0 )
throw "division by zero occurred when emulating instruction";
return mcode_val_t(val / o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t sdiv(const mcode_val_t &o) const
{
check_size_equal(o);
if ( o.val == 0 )
throw "division by zero occurred when emulating instruction";
int64 res;
uint64 l = val;
uint64 r = o.val;
switch ( size )
{
case 1: res = int8(l) / int8(r); break;
case 2: res = int16(l) / int16(r); break;
case 4: res = int32(l) / int32(r); break;
case 8: res = int64(l) / int64(r); break;
default: INTERR(30666);
}
return mcode_val_t(res, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator%(const mcode_val_t &o) const
{
check_size_equal(o);
if ( o.val == 0 )
throw "division by zero occurred when emulating instruction";
return mcode_val_t(val % o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t smod(const mcode_val_t &o) const
{
check_size_equal(o);
if ( o.val == 0 )
throw "division by zero occurred when emulating instruction";
int64 res = -1;
uint64 l = val;
uint64 r = o.val;
switch ( size )
{
case 1: res = int8(l) % int8(r); break;
case 2: res = int16(l) % int16(r); break;
case 4: res = int32(l) % int32(r); break;
case 8: res = int64(l) % int64(r); break;
default: QASSERT(30667, false);
}
return mcode_val_t(res, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator<<(const mcode_val_t &o) const
{
return mcode_val_t(left_shift<uint64>(val, o.val), size);
}
//-------------------------------------------------------------------------
mcode_val_t operator>>(const mcode_val_t &o) const
{
return mcode_val_t(right_ushift<uint64>(val, o.val), size);
}
//-------------------------------------------------------------------------
mcode_val_t sar(const mcode_val_t &o) const
{
return mcode_val_t(right_sshift<int64>(signed_val(), o.val), size);
}
//-------------------------------------------------------------------------
mcode_val_t operator|(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val | o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator&(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val & o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator^(const mcode_val_t &o) const
{
check_size_equal(o);
return mcode_val_t(val ^ o.val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator-() const
{
return mcode_val_t(-val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator!() const
{
return mcode_val_t(!val, size);
}
//-------------------------------------------------------------------------
mcode_val_t operator~() const
{
return mcode_val_t(~val, size);
}
};
//-------------------------------------------------------------------------
class mcode_emulator_t
{
public:
// base classes with virtual functions should have a virtual dtr
virtual ~mcode_emulator_t() {}
// returns the value assigned to a register, stack, global, or local variable
virtual mcode_val_t get_var_val(const mop_t &mop) = 0;
//-------------------------------------------------------------------------
mcode_val_t mop_value(const mop_t &mop)
{
if ( mop.size > 8 )
throw "too big mop size in mcode emulator";
switch ( mop.t )
{
case mop_n:
return mcode_val_t(mop.nnn->value, mop.size);
case mop_d:
return minsn_value(*mop.d);
case mop_a:// pointer variable
case mop_r: // register
case mop_S: // stack variable
case mop_v: // global variable
case mop_l:
return get_var_val(mop);
default:
throw "unhandled mop type in mcode emulator";
}
}
//-------------------------------------------------------------------------
mcode_val_t minsn_value(const minsn_t &insn)
{
if ( insn.is_fpinsn() )
{
msg("Emulator does not support floating point\n");
throw "Emulator does not support floating point";
}
switch ( insn.opcode )
{
case m_ldc:
case m_mov:
return mop_value(insn.l);
case m_neg:
return -mop_value(insn.l);
case m_lnot:
return !mop_value(insn.l);
case m_bnot:
return ~mop_value(insn.l);
case m_xds:
return mop_value(insn.l).sext(insn.d.size);
case m_xdu:
return mop_value(insn.l).zext(insn.d.size);
case m_low:
return mop_value(insn.l).low(insn.d.size);
case m_high:
return mop_value(insn.l).high(insn.d.size);
case m_add:
return mop_value(insn.l) + mop_value(insn.r);
case m_sub:
return mop_value(insn.l) - mop_value(insn.r);
case m_mul:
return mop_value(insn.l) * mop_value(insn.r);
case m_udiv:
return mop_value(insn.l) / mop_value(insn.r);
case m_sdiv:
return mop_value(insn.l).sdiv(mop_value(insn.r));
case m_umod:
return mop_value(insn.l) & mop_value(insn.r);
case m_smod:
return mop_value(insn.l).smod(mop_value(insn.r));
case m_or:
return mop_value(insn.l) | mop_value(insn.r);
case m_and:
return mop_value(insn.l) & mop_value(insn.r);
case m_xor:
return mop_value(insn.l) ^ mop_value(insn.r);
case m_shl:
return mop_value(insn.l) << mop_value(insn.r);
case m_shr:
return mop_value(insn.l) >> mop_value(insn.r);
case m_sar:
return mop_value(insn.l).sar(mop_value(insn.r));
case m_sets:
return mcode_val_t(mop_value(insn.l).signed_val() < 0, insn.d.size);
case m_setnz:
return mcode_val_t(mop_value(insn.l) != mop_value(insn.r), insn.d.size);
case m_setz:
return mcode_val_t(mop_value(insn.l) == mop_value(insn.r), insn.d.size);
case m_setae:
return mcode_val_t(mop_value(insn.l).val >= mop_value(insn.r).val, insn.d.size);
case m_setb:
return mcode_val_t(mop_value(insn.l).val < mop_value(insn.r).val, insn.d.size);
case m_seta:
return mcode_val_t(mop_value(insn.l).val > mop_value(insn.r).val, insn.d.size);
case m_setbe:
return mcode_val_t(mop_value(insn.l).val <= mop_value(insn.r).val, insn.d.size);
case m_setg:
return mcode_val_t(mop_value(insn.l).signed_val() > mop_value(insn.r).signed_val(), insn.d.size);
case m_setge:
return mcode_val_t(mop_value(insn.l).signed_val() >= mop_value(insn.r).signed_val(), insn.d.size);
case m_setl:
return mcode_val_t(mop_value(insn.l).signed_val() < mop_value(insn.r).signed_val(), insn.d.size);
case m_setle:
return mcode_val_t(mop_value(insn.l).signed_val() <= mop_value(insn.r).signed_val(), insn.d.size);
default:
msg("Unhandled opcode in emulator %d\n", insn.opcode);
throw "Unhandled opcode";
}
}
};