-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdisasm-mips.cc
341 lines (296 loc) · 7.21 KB
/
disasm-mips.cc
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
#include <capstone/capstone.h>
#include "disasm-mips.h"
#include "log.h"
static int
is_cs_nop_ins(cs_insn *ins)
{
switch(ins->id) {
case MIPS_INS_NOP:
return 1;
default:
return 0;
}
}
static int
is_cs_trap_ins(cs_insn *ins)
{
switch(ins->id) {
/* XXX: todo */
default:
return 0;
}
}
static int
is_cs_cflow_ins(cs_insn *ins)
{
/* XXX: Capstone does not provide information for all generic groups
* for mips instructions, unlike x86, so we have to do it manually.
* Once this is implemented, it will suffice to check for the following groups:
* CS_GRP_JUMP, CS_GRP_CALL, CS_GRP_RET, CS_GRP_IRET */
switch(ins->id) {
case MIPS_INS_J:
case MIPS_INS_JR:
case MIPS_INS_B:
case MIPS_INS_BAL:
case MIPS_INS_JAL:
case MIPS_INS_JALR:
case MIPS_INS_BEQ:
case MIPS_INS_BNE:
case MIPS_INS_BGTZ:
case MIPS_INS_BGEZ:
case MIPS_INS_BNEZ:
case MIPS_INS_BEQZ:
case MIPS_INS_BLEZ:
case MIPS_INS_BLTZ:
return 1;
default:
return 0;
}
}
static int
is_cs_call_ins(cs_insn *ins)
{
switch(ins->id) {
case MIPS_INS_BAL:
case MIPS_INS_JAL:
case MIPS_INS_JALR:
return 1;
default:
return 0;
}
}
static int
is_cs_ret_ins(cs_insn *ins)
{
/* jr ra */
if(ins->id == MIPS_INS_JR
&& ins->detail->mips.operands[0].type == MIPS_OP_REG
&& ins->detail->mips.operands[0].reg == MIPS_REG_RA) {
return 1;
}
return 0;
}
static int
is_cs_unconditional_jmp_ins(cs_insn *ins)
{
switch(ins->id) {
case MIPS_INS_B:
case MIPS_INS_J:
return 1;
case MIPS_INS_JR:
if (ins->detail->mips.operands[0].reg != MIPS_REG_RA) {
return 1;
}
return 0;
default:
return 0;
}
}
static int
is_cs_conditional_cflow_ins(cs_insn *ins)
{
switch(ins->id) {
case MIPS_INS_BEQ:
case MIPS_INS_BNE:
case MIPS_INS_BGTZ:
case MIPS_INS_BGEZ:
case MIPS_INS_BNEZ:
case MIPS_INS_BEQZ:
case MIPS_INS_BLEZ:
case MIPS_INS_BLTZ:
return 1;
default:
return 0;
}
}
static int
is_cs_privileged_ins(cs_insn *ins)
{
switch(ins->id) {
/* XXX: todo */
default:
return 0;
}
}
static int
is_cs_indirect_ins(cs_insn *ins)
{
/* jr rN */
if(ins->id == MIPS_INS_JR
&& ins->detail->mips.operands[0].type == MIPS_OP_REG
&& ins->detail->mips.operands[0].reg != MIPS_REG_RA) {
return 1;
}
/* jalr rN */
if(ins->id == MIPS_INS_JALR) {
return 1;
}
return 0;
}
static uint8_t
cs_to_nucleus_op_type(mips_op_type op)
{
switch(op) {
case MIPS_OP_REG:
return Operand::OP_TYPE_REG;
case MIPS_OP_IMM:
return Operand::OP_TYPE_IMM;
case MIPS_OP_MEM:
return Operand::OP_TYPE_MEM;
case MIPS_OP_INVALID:
default:
return Operand::OP_TYPE_NONE;
}
}
int
nucleus_disasm_bb_mips(Binary *bin, DisasmSection *dis, BB *bb)
{
int init, ret, jmp, cflow, indir, cond, call, nop, only_nop, priv, trap, ndisassembled;
csh cs_dis;
cs_mode cs_mode_flags;
cs_insn *cs_ins;
cs_mips_op *cs_op;
const uint8_t *pc;
uint64_t pc_addr, offset;
size_t i, j, n;
Instruction *ins, *last_cflow;
Operand *op;
init = 0;
cs_ins = nullptr;
last_cflow = nullptr;
switch(bin->bits) {
case 64:
cs_mode_flags = (cs_mode)(CS_MODE_BIG_ENDIAN | CS_MODE_64);
break;
case 32:
cs_mode_flags = (cs_mode)(CS_MODE_BIG_ENDIAN | CS_MODE_32);
break;
case 16:
cs_mode_flags = (cs_mode)(CS_MODE_BIG_ENDIAN | CS_MODE_16);
break;
default:
print_err("unsupported bit width %u for architecture %s", bin->bits, bin->arch_str.c_str());
goto fail;
}
if(cs_open(CS_ARCH_MIPS, cs_mode_flags, &cs_dis) != CS_ERR_OK) {
print_err("failed to initialize libcapstone");
goto fail;
}
init = 1;
cs_option(cs_dis, CS_OPT_DETAIL, CS_OPT_ON);
cs_ins = cs_malloc(cs_dis);
if(!cs_ins) {
print_err("out of memory");
goto fail;
}
offset = bb->start - dis->section->vma;
if((bb->start < dis->section->vma) || (offset >= dis->section->size)) {
print_err("basic block address points outside of section '%s'", dis->section->name.c_str());
goto fail;
}
pc = dis->section->bytes + offset;
n = dis->section->size - offset;
pc_addr = bb->start;
bb->end = bb->start;
bb->section = dis->section;
ndisassembled = 0;
only_nop = 0;
while(cs_disasm_iter(cs_dis, &pc, &n, &pc_addr, cs_ins)) {
if(cs_ins->id == MIPS_INS_INVALID) {
bb->invalid = 1;
bb->end += 1;
break;
}
if(!cs_ins->size) {
break;
}
trap = is_cs_trap_ins(cs_ins);
nop = is_cs_nop_ins(cs_ins);
ret = is_cs_ret_ins(cs_ins);
jmp = is_cs_unconditional_jmp_ins(cs_ins) || is_cs_conditional_cflow_ins(cs_ins);
cond = is_cs_conditional_cflow_ins(cs_ins);
cflow = is_cs_cflow_ins(cs_ins);
call = is_cs_call_ins(cs_ins);
priv = is_cs_privileged_ins(cs_ins);
indir = is_cs_indirect_ins(cs_ins);
if(!ndisassembled && nop) only_nop = 1; /* group nop instructions together */
if(!last_cflow && !only_nop && nop) break;
if(!last_cflow && only_nop && !nop) break;
ndisassembled++;
bb->end += cs_ins->size;
bb->insns.push_back(Instruction());
if(priv) {
bb->privileged = true;
}
if(nop) {
bb->padding = true;
}
if(trap) {
bb->trap = true;
}
ins = &bb->insns.back();
ins->id = cs_ins->id;
ins->start = cs_ins->address;
ins->size = cs_ins->size;
ins->mnem = std::string(cs_ins->mnemonic);
ins->op_str = std::string(cs_ins->op_str);
ins->privileged = priv;
ins->trap = trap;
if(nop) ins->flags |= Instruction::INS_FLAG_NOP;
if(ret) ins->flags |= Instruction::INS_FLAG_RET;
if(jmp) ins->flags |= Instruction::INS_FLAG_JMP;
if(cond) ins->flags |= Instruction::INS_FLAG_COND;
if(cflow) ins->flags |= Instruction::INS_FLAG_CFLOW;
if(call) ins->flags |= Instruction::INS_FLAG_CALL;
if(indir) ins->flags |= Instruction::INS_FLAG_INDIRECT;
for(i = 0; i < cs_ins->detail->mips.op_count; i++) {
cs_op = &cs_ins->detail->mips.operands[i];
ins->operands.push_back(Operand());
op = &ins->operands.back();
op->type = cs_to_nucleus_op_type(cs_op->type);
if(op->type == Operand::OP_TYPE_IMM) {
op->mips_value.imm = cs_op->imm;
} else if(op->type == Operand::OP_TYPE_REG) {
op->mips_value.reg = (mips_reg)cs_op->reg;
} else if(op->type == Operand::OP_TYPE_MEM) {
op->mips_value.mem.base = cs_op->mem.base;
op->mips_value.mem.disp = cs_op->mem.disp;
if(cflow) ins->flags |= Instruction::INS_FLAG_INDIRECT;
}
}
if(cflow) {
for(j = 0; j < cs_ins->detail->mips.op_count; j++) {
cs_op = &cs_ins->detail->mips.operands[j];
if(cs_op->type == MIPS_OP_IMM) {
ins->target = cs_op->imm;
}
}
}
/* end of basic block occurs after delay slot of cflow instructions */
if(last_cflow) {
ins->flags = last_cflow->flags;
ins->target = last_cflow->target;
last_cflow->flags = 0;
break;
}
if(cflow) {
last_cflow = ins;
}
}
if(!ndisassembled) {
bb->invalid = 1;
bb->end += 1; /* ensure forward progress */
}
ret = ndisassembled;
goto cleanup;
fail:
ret = -1;
cleanup:
if(cs_ins) {
cs_free(cs_ins, 1);
}
if(init) {
cs_close(&cs_dis);
}
return ret;
}