-
Notifications
You must be signed in to change notification settings - Fork 1
/
disasm-aarch64.cc
319 lines (277 loc) · 6.67 KB
/
disasm-aarch64.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
#include <capstone/capstone.h>
#include "disasm-aarch64.h"
#include "log.h"
static int
is_cs_nop_ins(cs_insn *ins)
{
switch(ins->id) {
case ARM64_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 aarch64 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 ARM64_INS_B:
case ARM64_INS_BR:
case ARM64_INS_BL:
case ARM64_INS_BLR:
case ARM64_INS_CBNZ:
case ARM64_INS_CBZ:
case ARM64_INS_TBNZ:
case ARM64_INS_TBZ:
case ARM64_INS_RET:
return 1;
default:
return 0;
}
}
static int
is_cs_call_ins(cs_insn *ins)
{
switch(ins->id) {
case ARM64_INS_BL:
case ARM64_INS_BLR:
return 1;
default:
return 0;
}
}
static int
is_cs_ret_ins(cs_insn *ins)
{
/* ret */
if(ins->id == ARM64_INS_RET) {
return 1;
}
return 0;
}
static int
is_cs_unconditional_jmp_ins(cs_insn *ins)
{
switch(ins->id) {
case ARM64_INS_B:
if(ins->detail->arm64.cc != ARM64_CC_INVALID &&
ins->detail->arm64.cc != ARM64_CC_AL) {
return 0;
}
return 1;
case ARM64_INS_BR:
return 1;
default:
return 0;
}
}
static int
is_cs_conditional_cflow_ins(cs_insn *ins)
{
switch(ins->id) {
case ARM64_INS_B:
if (ins->detail->arm64.cc != ARM64_CC_AL) {
return 1;
}
return 0;
case ARM64_INS_CBNZ:
case ARM64_INS_CBZ:
case ARM64_INS_TBNZ:
case ARM64_INS_TBZ:
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)
{
switch(ins->id) {
case ARM64_INS_BR:
case ARM64_INS_BLR:
return 1;
default:
return 0;
}
}
static uint8_t
cs_to_nucleus_op_type(arm64_op_type op)
{
switch(op) {
case ARM64_OP_REG:
return Operand::OP_TYPE_REG;
case ARM64_OP_IMM:
return Operand::OP_TYPE_IMM;
case ARM64_OP_MEM:
return Operand::OP_TYPE_MEM;
case ARM64_OP_FP:
return Operand::OP_TYPE_FP;
case ARM64_OP_INVALID:
default:
return Operand::OP_TYPE_NONE;
}
}
int
nucleus_disasm_bb_aarch64(Binary *bin, DisasmSection *dis, BB *bb)
{
int init, ret, jmp, indir, cflow, cond, call, nop, only_nop, priv, trap, ndisassembled;
csh cs_dis;
cs_mode cs_mode_flags;
cs_insn *cs_ins;
cs_arm64_op *cs_op;
const uint8_t *pc;
uint64_t pc_addr, offset;
size_t i, j, n;
Instruction *ins;
Operand *op;
init = 0;
cs_ins = NULL;
switch(bin->bits) {
case 64:
cs_mode_flags = (cs_mode)(CS_MODE_ARM);
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_ARM64, 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 == ARM64_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(!only_nop && nop) break;
if(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->arm64.op_count; i++) {
cs_op = &cs_ins->detail->arm64.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->aarch64_value.imm = cs_op->imm;
} else if(op->type == Operand::OP_TYPE_REG) {
op->aarch64_value.reg = (arm64_reg)cs_op->reg;
} else if(op->type == Operand::OP_TYPE_FP) {
op->aarch64_value.fp = cs_op->fp;
} else if(op->type == Operand::OP_TYPE_MEM) {
op->aarch64_value.mem.base = cs_op->mem.base;
op->aarch64_value.mem.index = cs_op->mem.index;
op->aarch64_value.mem.disp = cs_op->mem.disp;
if(cflow) ins->flags |= Instruction::INS_FLAG_INDIRECT;
}
}
if(cflow) {
for(j = 0; j < cs_ins->detail->arm64.op_count; j++) {
cs_op = &cs_ins->detail->arm64.operands[j];
if(cs_op->type == ARM64_OP_IMM) {
ins->target = cs_op->imm;
}
}
}
if(cflow) {
/* end of basic block */
break;
}
}
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;
}