blob: ded7cffdd48761c8a7eb6c0cacb9ea6b9707342a [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001/* Capstone Disassembler Engine */
2/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
3
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08004#include <stddef.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08005#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <capstone.h>
9
10#include "cs_priv.h"
11
12#include "MCRegisterInfo.h"
13
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080014#include "utils.h"
15
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080016cs_err (*arch_init[MAX_ARCH])(cs_struct *) = { NULL };
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +080017cs_err (*arch_option[MAX_ARCH]) (cs_struct *, cs_opt_type, size_t value) = { NULL };
18void (*arch_destroy[MAX_ARCH]) (cs_struct *) = { NULL };
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080019
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080020unsigned int all_arch = 0;
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080021
Nguyen Anh Quynhb8806782013-12-22 15:20:07 +080022
Nguyen Anh Quynhb90cb992013-12-28 13:59:09 +080023unsigned int cs_version(int *major, int *minor)
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080024{
Nguyen Anh Quynh08777472013-12-22 14:16:28 +080025 if (major != NULL && minor != NULL) {
26 *major = CS_API_MAJOR;
27 *minor = CS_API_MINOR;
28 }
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080029
30 return (CS_API_MAJOR << 8) + CS_API_MINOR;
31}
32
33bool cs_support(cs_arch arch)
34{
35 if (arch == CS_ARCH_ALL)
36 return all_arch == ((1 << CS_ARCH_ARM) | (1 << CS_ARCH_ARM64) |
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080037 (1 << CS_ARCH_MIPS) | (1 << CS_ARCH_X86) |
38 (1 << CS_ARCH_PPC));
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080039
40 return all_arch & (1 << arch);
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080041}
42
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080043cs_err cs_errno(csh handle)
44{
45 if (!handle)
46 return CS_ERR_CSH;
47
48 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
49
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +080050 return ud->errnum;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080051}
52
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +080053const char *cs_strerror(cs_err code)
54{
55 switch(code) {
56 default:
57 return "Unknown error code";
58 case CS_ERR_OK:
59 return "OK (CS_ERR_OK)";
60 case CS_ERR_MEM:
61 return "Out of memory (CS_ERR_MEM)";
62 case CS_ERR_ARCH:
63 return "Invalid architecture (CS_ERR_ARCH)";
64 case CS_ERR_HANDLE:
65 return "Invalid handle (CS_ERR_HANDLE)";
66 case CS_ERR_CSH:
67 return "Invalid csh (CS_ERR_CSH)";
68 case CS_ERR_MODE:
69 return "Invalid mode (CS_ERR_MODE)";
70 case CS_ERR_OPTION:
71 return "Invalid option (CS_ERR_OPTION)";
72 case CS_ERR_DETAIL:
73 return "Details are unavailable (CS_ERR_DETAIL)";
74 }
75}
76
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080077cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
78{
danghvu2b192962013-12-19 22:40:28 -060079 cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080080
danghvu2b192962013-12-19 22:40:28 -060081 ud = calloc(1, sizeof(*ud));
82 if (!ud) {
83 // memory insufficient
84 return CS_ERR_MEM;
85 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080086
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +080087 if (arch < CS_ARCH_MAX && arch_init[ud->arch]) {
88 ud->errnum = CS_ERR_OK;
89 ud->arch = arch;
90 ud->mode = mode;
91 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
92 ud->reg_name = NULL;
93 ud->detail = CS_OPT_ON; // by default break instruction into details
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080094
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +080095 arch_init[ud->arch](ud);
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +080096 } else {
97 *handle = 0;
98 return CS_ERR_ARCH;
99 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800100
danghvu2b192962013-12-19 22:40:28 -0600101 *handle = (uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800102
danghvu2b192962013-12-19 22:40:28 -0600103 return CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800104}
105
106cs_err cs_close(csh handle)
107{
108 if (!handle)
109 return CS_ERR_CSH;
110
111 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
112
113 switch (ud->arch) {
114 case CS_ARCH_X86:
115 break;
116 case CS_ARCH_ARM:
117 case CS_ARCH_MIPS:
118 case CS_ARCH_ARM64:
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800119 case CS_ARCH_PPC:
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800120 free(ud->printer_info);
121 break;
122 default: // unsupported architecture
123 return CS_ERR_HANDLE;
124 }
125
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +0800126 if (arch_destroy[ud->arch])
127 arch_destroy[ud->arch](ud);
128
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800129 memset(ud, 0, sizeof(*ud));
130 free(ud);
131
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800132 return CS_ERR_OK;
133}
134
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800135#define MIN(x, y) ((x) < (y) ? (x) : (y))
136
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800137// fill insn with mnemonic & operands info
138static void fill_insn(cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800139 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800140{
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800141 if (handle->detail) {
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800142 // avoiding copy insn->detail
143 memcpy(insn, &mci->flat_insn, sizeof(*insn) - sizeof(insn->detail));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800144
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800145 // NOTE: copy details in 2 chunks, since union is always put at address divisible by 8
146 // copy from @regs_read until @arm
147 memcpy(insn->detail, (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, regs_read),
148 offsetof(cs_detail, arm) - offsetof(cs_detail, regs_read));
149 // then copy from @arm until end
150 memcpy((void *)(insn->detail) + offsetof(cs_detail, arm), (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, arm),
151 sizeof(cs_detail) - offsetof(cs_detail, arm));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800152 } else {
153 insn->address = mci->address;
154 insn->size = mci->insn_size;
155 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800156
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800157 // fill the instruction bytes
158 memcpy(insn->bytes, code, MIN(sizeof(insn->bytes), insn->size));
159
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800160 // map internal instruction opcode to public insn ID
161 if (handle->insn_id)
162 handle->insn_id(insn, MCInst_getOpcode(mci), handle->detail);
163
164 // alias instruction might have ID saved in OpcodePub
165 if (MCInst_getOpcodePub(mci))
166 insn->id = MCInst_getOpcodePub(mci);
167
168 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800169 if (postprinter)
170 postprinter((csh)handle, insn, buffer);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800171
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800172 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800173 // find first space or tab
174 char *sp = buffer;
175 for (sp = buffer; *sp; sp++)
176 if (*sp == ' '||*sp == '\t')
177 break;
178 if (*sp) {
179 *sp = '\0';
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800180 // find the next non-space char
181 sp++;
182 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
183 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800184 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
185 } else
186 insn->op_str[0] = '\0';
187
188 strncpy(insn->mnemonic, buffer, sizeof(insn->mnemonic) - 1);
189 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
190}
191
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800192cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800193{
danghvu2b192962013-12-19 22:40:28 -0600194 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
195 if (!handle)
196 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800197
danghvu0b6ea042013-12-19 23:07:26 -0600198 if (type == CS_OPT_DETAIL) {
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800199 handle->detail = value;
200 return CS_ERR_OK;
201 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800202
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800203 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800204}
205
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800206// dynamicly allocate memory to contain disasm insn
207// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800208size_t cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800209{
210 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
211 MCInst mci;
212 uint16_t insn_size;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800213 size_t c = 0, f = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800214 cs_insn insn_cache[64];
215 void *total = NULL;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800216 size_t total_size = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800217
218 if (!handle) {
219 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800220 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800221 return 0;
222 }
223
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800224 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800225
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800226 memset(insn_cache, 0, sizeof(insn_cache));
227
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800228 while (size > 0) {
danghvu2b192962013-12-19 22:40:28 -0600229 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800230 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800231
232 bool r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
233 if (r) {
234 SStream ss;
235 SStream_Init(&ss);
236
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800237 // relative branches need to know the address & size of current insn
238 mci.insn_size = insn_size;
239 mci.address = offset;
240
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800241 if (handle->detail) {
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800242 // save all the information for non-detailed mode
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800243 mci.flat_insn.address = offset;
244 mci.flat_insn.size = insn_size;
245 // allocate memory for @detail pointer
246 insn_cache[f].detail = calloc(1, sizeof(cs_detail));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800247 }
248
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800249 handle->printer(&mci, &ss, handle->printer_info);
250
Joxean114df0e2013-12-04 07:11:32 +0100251 fill_insn(handle, &insn_cache[f], ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800252
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800253 f++;
254
255 if (f == ARR_SIZE(insn_cache)) {
256 // resize total to contain newly disasm insns
257 total_size += sizeof(insn_cache);
258 void *tmp = realloc(total, total_size);
259 if (tmp == NULL) { // insufficient memory
260 free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800261 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800262 return 0;
263 }
264
265 total = tmp;
266 memcpy(total + total_size - sizeof(insn_cache), insn_cache, sizeof(insn_cache));
267 // reset f back to 0
268 f = 0;
269 }
270
271 c++;
272 buffer += insn_size;
273 size -= insn_size;
274 offset += insn_size;
275
276 if (count > 0 && c == count)
277 break;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800278 } else {
279 // encounter a broken instruction
280 // XXX: TODO: JOXEAN continue here
281 break;
282 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800283 }
284
285 if (f) {
286 // resize total to contain newly disasm insns
287 void *tmp = realloc(total, total_size + f * sizeof(insn_cache[0]));
288 if (tmp == NULL) { // insufficient memory
289 free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800290 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800291 return 0;
292 }
293
294 total = tmp;
295 memcpy(total + total_size, insn_cache, f * sizeof(insn_cache[0]));
296 }
297
298 *insn = total;
299
300 return c;
301}
302
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800303void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800304{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800305 size_t i;
306
307 // free all detail pointers
308 for (i = 0; i < count; i++)
309 free(insn[i].detail);
310
311 // then free pointer to cs_insn array
312 free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800313}
314
315// return friendly name of regiser in a string
pancakef0e4eed2013-12-11 22:14:42 +0100316const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800317{
318 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
319
320 if (!handle || handle->reg_name == NULL) {
321 return NULL;
322 }
323
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800324 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800325}
326
pancakef0e4eed2013-12-11 22:14:42 +0100327const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800328{
329 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
330
331 if (!handle || handle->insn_name == NULL) {
332 return NULL;
333 }
334
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800335 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800336}
337
Nguyen Anh Quynh70083562013-12-20 22:02:20 +0800338static bool arr_exist(unsigned char *arr, unsigned char max, unsigned int id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800339{
340 int i;
341
342 for (i = 0; i < max; i++) {
343 if (arr[i] == id)
344 return true;
345 }
346
347 return false;
348}
349
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800350bool cs_insn_group(csh ud, cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800351{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800352 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800353 return false;
354
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800355 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
356
357 if (!handle->detail) {
358 handle->errnum = CS_ERR_DETAIL;
359 return false;
360 }
361
362 return arr_exist(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800363}
364
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800365bool cs_reg_read(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800366{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800367 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800368 return false;
369
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800370 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
371
372 if (!handle->detail) {
373 handle->errnum = CS_ERR_DETAIL;
374 return false;
375 }
376
377 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800378}
379
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800380bool cs_reg_write(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800381{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800382 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800383 return false;
384
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800385 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
386
387 if (!handle->detail) {
388 handle->errnum = CS_ERR_DETAIL;
389 return false;
390 }
391
392 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800393}
394
395int cs_op_count(csh ud, cs_insn *insn, unsigned int op_type)
396{
397 if (!ud)
398 return -1;
399
400 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
401 unsigned int count = 0, i;
402
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800403 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800404
405 switch (handle->arch) {
406 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800407 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800408 return -1;
409 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800410 for (i = 0; i < insn->detail->arm.op_count; i++)
411 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800412 count++;
413 break;
414 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800415 for (i = 0; i < insn->detail->arm64.op_count; i++)
416 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800417 count++;
418 break;
419 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800420 for (i = 0; i < insn->detail->x86.op_count; i++)
421 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800422 count++;
423 break;
424 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800425 for (i = 0; i < insn->detail->mips.op_count; i++)
426 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800427 count++;
428 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800429 case CS_ARCH_PPC:
430 for (i = 0; i < insn->detail->ppc.op_count; i++)
431 if (insn->detail->ppc.operands[i].type == op_type)
432 count++;
433 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800434 }
435
436 return count;
437}
438
439int cs_op_index(csh ud, cs_insn *insn, unsigned int op_type,
440 unsigned int post)
441{
442 if (!ud)
443 return -1;
444
445 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
446 unsigned int count = 0, i;
447
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800448 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800449
450 switch (handle->arch) {
451 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800452 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800453 return -1;
454 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800455 for (i = 0; i < insn->detail->arm.op_count; i++) {
456 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800457 count++;
458 if (count == post)
459 return i;
460 }
461 break;
462 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800463 for (i = 0; i < insn->detail->arm64.op_count; i++) {
464 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800465 count++;
466 if (count == post)
467 return i;
468 }
469 break;
470 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800471 for (i = 0; i < insn->detail->x86.op_count; i++) {
472 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800473 count++;
474 if (count == post)
475 return i;
476 }
477 break;
478 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800479 for (i = 0; i < insn->detail->mips.op_count; i++) {
480 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800481 count++;
482 if (count == post)
483 return i;
484 }
485 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800486 case CS_ARCH_PPC:
487 for (i = 0; i < insn->detail->ppc.op_count; i++) {
488 if (insn->detail->ppc.operands[i].type == op_type)
489 count++;
490 if (count == post)
491 return i;
492 }
493 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800494 }
495
496 return -1;
497}