blob: c7293e53e033420a4e97770198ffe81e37080de3 [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
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080010#include "utils.h"
Nguyen Anh Quynhc7404072014-01-05 11:35:47 +080011#include "MCRegisterInfo.h"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080012
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080013cs_err (*arch_init[MAX_ARCH])(cs_struct *) = { NULL };
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +080014cs_err (*arch_option[MAX_ARCH]) (cs_struct *, cs_opt_type, size_t value) = { NULL };
15void (*arch_destroy[MAX_ARCH]) (cs_struct *) = { NULL };
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080016
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080017unsigned int all_arch = 0;
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080018
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080019#ifdef USE_SYS_DYN_MEM
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +080020malloc_t my_malloc = malloc;
21calloc_t my_calloc = calloc;
22realloc_t my_realloc = realloc;
23free_t my_free = free;
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080024#else
25malloc_t my_malloc = NULL;
26calloc_t my_calloc = NULL;
27realloc_t my_realloc = NULL;
28free_t my_free = NULL;
29#endif
Nguyen Anh Quynhb8806782013-12-22 15:20:07 +080030
Nguyen Anh Quynhb90cb992013-12-28 13:59:09 +080031unsigned int cs_version(int *major, int *minor)
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080032{
Nguyen Anh Quynh08777472013-12-22 14:16:28 +080033 if (major != NULL && minor != NULL) {
34 *major = CS_API_MAJOR;
35 *minor = CS_API_MINOR;
36 }
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080037
38 return (CS_API_MAJOR << 8) + CS_API_MINOR;
39}
40
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +080041bool cs_support(int arch)
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080042{
43 if (arch == CS_ARCH_ALL)
44 return all_arch == ((1 << CS_ARCH_ARM) | (1 << CS_ARCH_ARM64) |
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080045 (1 << CS_ARCH_MIPS) | (1 << CS_ARCH_X86) |
46 (1 << CS_ARCH_PPC));
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080047
48 return all_arch & (1 << arch);
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080049}
50
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080051cs_err cs_errno(csh handle)
52{
53 if (!handle)
54 return CS_ERR_CSH;
55
56 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
57
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +080058 return ud->errnum;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080059}
60
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +080061const char *cs_strerror(cs_err code)
62{
63 switch(code) {
64 default:
65 return "Unknown error code";
66 case CS_ERR_OK:
67 return "OK (CS_ERR_OK)";
68 case CS_ERR_MEM:
69 return "Out of memory (CS_ERR_MEM)";
70 case CS_ERR_ARCH:
71 return "Invalid architecture (CS_ERR_ARCH)";
72 case CS_ERR_HANDLE:
73 return "Invalid handle (CS_ERR_HANDLE)";
74 case CS_ERR_CSH:
75 return "Invalid csh (CS_ERR_CSH)";
76 case CS_ERR_MODE:
77 return "Invalid mode (CS_ERR_MODE)";
78 case CS_ERR_OPTION:
79 return "Invalid option (CS_ERR_OPTION)";
80 case CS_ERR_DETAIL:
81 return "Details are unavailable (CS_ERR_DETAIL)";
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +080082 case CS_ERR_MEMSETUP:
83 return "Dynamic memory management uninitialized (CS_ERR_MEMSETUP)";
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +080084 }
85}
86
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080087cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
88{
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +080089 if (!my_malloc || !my_calloc || !my_realloc || !my_free)
90 // Error: before cs_open(), dynamic memory management must be initialized
91 // with cs_option(CS_OPT_MEM)
92 return CS_ERR_MEMSETUP;
93
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +080094 if (arch < CS_ARCH_MAX && arch_init[arch]) {
95 cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080096
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +080097 ud = my_calloc(1, sizeof(*ud));
98 if (!ud) {
99 // memory insufficient
100 return CS_ERR_MEM;
101 }
102
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800103 ud->errnum = CS_ERR_OK;
104 ud->arch = arch;
105 ud->mode = mode;
106 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
107 ud->reg_name = NULL;
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800108 // by default, do not break instruction into details
109 ud->detail = CS_OPT_OFF;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800110
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800111 arch_init[ud->arch](ud);
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800112
113 *handle = (uintptr_t)ud;
114
115 return CS_ERR_OK;
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800116 } else {
117 *handle = 0;
118 return CS_ERR_ARCH;
119 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800120}
121
122cs_err cs_close(csh handle)
123{
124 if (!handle)
125 return CS_ERR_CSH;
126
127 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
128
129 switch (ud->arch) {
130 case CS_ARCH_X86:
131 break;
132 case CS_ARCH_ARM:
133 case CS_ARCH_MIPS:
134 case CS_ARCH_ARM64:
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800135 case CS_ARCH_PPC:
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800136 my_free(ud->printer_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800137 break;
138 default: // unsupported architecture
139 return CS_ERR_HANDLE;
140 }
141
Nguyen Anh Quynh9fac5122014-01-07 10:56:04 +0800142 // arch_destroy[ud->arch](ud);
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +0800143
Nguyen Anh Quynh9fac5122014-01-07 10:56:04 +0800144 my_free(ud->insn_cache);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800145 memset(ud, 0, sizeof(*ud));
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800146 my_free(ud);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800147
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800148 return CS_ERR_OK;
149}
150
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800151#define MIN(x, y) ((x) < (y) ? (x) : (y))
152
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800153// fill insn with mnemonic & operands info
154static void fill_insn(cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800155 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800156{
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800157 if (handle->detail) {
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800158 // avoiding copy insn->detail
159 memcpy(insn, &mci->flat_insn, sizeof(*insn) - sizeof(insn->detail));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800160
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800161 // NOTE: copy details in 2 chunks, since union is always put at address divisible by 8
162 // copy from @regs_read until @arm
163 memcpy(insn->detail, (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, regs_read),
164 offsetof(cs_detail, arm) - offsetof(cs_detail, regs_read));
165 // then copy from @arm until end
166 memcpy((void *)(insn->detail) + offsetof(cs_detail, arm), (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, arm),
167 sizeof(cs_detail) - offsetof(cs_detail, arm));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800168 } else {
169 insn->address = mci->address;
170 insn->size = mci->insn_size;
171 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800172
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800173 // fill the instruction bytes
174 memcpy(insn->bytes, code, MIN(sizeof(insn->bytes), insn->size));
175
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800176 // map internal instruction opcode to public insn ID
177 if (handle->insn_id)
Nguyen Anh Quynh1acfd0b2014-01-06 10:56:59 +0800178 handle->insn_id(handle, insn, MCInst_getOpcode(mci));
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800179
180 // alias instruction might have ID saved in OpcodePub
181 if (MCInst_getOpcodePub(mci))
182 insn->id = MCInst_getOpcodePub(mci);
183
184 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800185 if (postprinter)
186 postprinter((csh)handle, insn, buffer);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800187
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800188 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800189 // find first space or tab
190 char *sp = buffer;
191 for (sp = buffer; *sp; sp++)
192 if (*sp == ' '||*sp == '\t')
193 break;
194 if (*sp) {
195 *sp = '\0';
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800196 // find the next non-space char
197 sp++;
198 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
199 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800200 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
201 } else
202 insn->op_str[0] = '\0';
203
204 strncpy(insn->mnemonic, buffer, sizeof(insn->mnemonic) - 1);
205 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
206}
207
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800208cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800209{
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800210 // cs_option() can be called with NULL handle just for CS_OPT_MEM
211 // This is supposed to be executed before all other APIs (even cs_open())
212 if (type == CS_OPT_MEM) {
213 cs_opt_mem *mem = (cs_opt_mem *)value;
214
215 my_malloc = mem->malloc;
216 my_calloc = mem->calloc;
217 my_realloc = mem->realloc;
218 my_free = mem->free;
219
220 return CS_ERR_OK;
221 }
222
danghvu2b192962013-12-19 22:40:28 -0600223 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
224 if (!handle)
225 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800226
danghvu0b6ea042013-12-19 23:07:26 -0600227 if (type == CS_OPT_DETAIL) {
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800228 handle->detail = value;
229 return CS_ERR_OK;
230 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800231
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800232 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800233}
234
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800235// dynamicly allocate memory to contain disasm insn
236// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800237size_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 +0800238{
239 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
240 MCInst mci;
241 uint16_t insn_size;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800242 size_t c = 0, f = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800243 cs_insn insn_cache[64];
244 void *total = NULL;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800245 size_t total_size = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800246
247 if (!handle) {
248 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800249 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800250 return 0;
251 }
252
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800253 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800254
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800255 memset(insn_cache, 0, sizeof(insn_cache));
256
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800257 while (size > 0) {
danghvu2b192962013-12-19 22:40:28 -0600258 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800259 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800260
261 bool r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
262 if (r) {
263 SStream ss;
264 SStream_Init(&ss);
265
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800266 // relative branches need to know the address & size of current insn
267 mci.insn_size = insn_size;
268 mci.address = offset;
269
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800270 if (handle->detail) {
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800271 // save all the information for non-detailed mode
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800272 mci.flat_insn.address = offset;
273 mci.flat_insn.size = insn_size;
274 // allocate memory for @detail pointer
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800275 insn_cache[f].detail = my_calloc(1, sizeof(cs_detail));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800276 }
277
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800278 handle->printer(&mci, &ss, handle->printer_info);
279
Joxean114df0e2013-12-04 07:11:32 +0100280 fill_insn(handle, &insn_cache[f], ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800281
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800282 f++;
283
284 if (f == ARR_SIZE(insn_cache)) {
285 // resize total to contain newly disasm insns
286 total_size += sizeof(insn_cache);
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800287 void *tmp = my_realloc(total, total_size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800288 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800289 my_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 - sizeof(insn_cache), insn_cache, sizeof(insn_cache));
296 // reset f back to 0
297 f = 0;
298 }
299
300 c++;
301 buffer += insn_size;
302 size -= insn_size;
303 offset += insn_size;
304
305 if (count > 0 && c == count)
306 break;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800307 } else {
308 // encounter a broken instruction
309 // XXX: TODO: JOXEAN continue here
310 break;
311 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800312 }
313
314 if (f) {
315 // resize total to contain newly disasm insns
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800316 void *tmp = my_realloc(total, total_size + f * sizeof(insn_cache[0]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800317 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800318 my_free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800319 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800320 return 0;
321 }
322
323 total = tmp;
324 memcpy(total + total_size, insn_cache, f * sizeof(insn_cache[0]));
325 }
326
327 *insn = total;
328
329 return c;
330}
331
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800332void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800333{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800334 size_t i;
335
336 // free all detail pointers
337 for (i = 0; i < count; i++)
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800338 my_free(insn[i].detail);
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800339
340 // then free pointer to cs_insn array
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800341 my_free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800342}
343
344// return friendly name of regiser in a string
pancakef0e4eed2013-12-11 22:14:42 +0100345const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800346{
347 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
348
349 if (!handle || handle->reg_name == NULL) {
350 return NULL;
351 }
352
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800353 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800354}
355
pancakef0e4eed2013-12-11 22:14:42 +0100356const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800357{
358 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
359
360 if (!handle || handle->insn_name == NULL) {
361 return NULL;
362 }
363
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800364 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800365}
366
Nguyen Anh Quynh70083562013-12-20 22:02:20 +0800367static bool arr_exist(unsigned char *arr, unsigned char max, unsigned int id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800368{
369 int i;
370
371 for (i = 0; i < max; i++) {
372 if (arr[i] == id)
373 return true;
374 }
375
376 return false;
377}
378
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800379bool cs_insn_group(csh ud, cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800380{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800381 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800382 return false;
383
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800384 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
385
386 if (!handle->detail) {
387 handle->errnum = CS_ERR_DETAIL;
388 return false;
389 }
390
391 return arr_exist(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800392}
393
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800394bool cs_reg_read(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800395{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800396 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800397 return false;
398
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800399 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
400
401 if (!handle->detail) {
402 handle->errnum = CS_ERR_DETAIL;
403 return false;
404 }
405
406 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800407}
408
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800409bool cs_reg_write(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800410{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800411 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800412 return false;
413
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800414 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
415
416 if (!handle->detail) {
417 handle->errnum = CS_ERR_DETAIL;
418 return false;
419 }
420
421 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800422}
423
424int cs_op_count(csh ud, cs_insn *insn, unsigned int op_type)
425{
426 if (!ud)
427 return -1;
428
429 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
430 unsigned int count = 0, i;
431
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800432 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800433
434 switch (handle->arch) {
435 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800436 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800437 return -1;
438 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800439 for (i = 0; i < insn->detail->arm.op_count; i++)
440 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800441 count++;
442 break;
443 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800444 for (i = 0; i < insn->detail->arm64.op_count; i++)
445 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800446 count++;
447 break;
448 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800449 for (i = 0; i < insn->detail->x86.op_count; i++)
450 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800451 count++;
452 break;
453 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800454 for (i = 0; i < insn->detail->mips.op_count; i++)
455 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800456 count++;
457 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800458 case CS_ARCH_PPC:
459 for (i = 0; i < insn->detail->ppc.op_count; i++)
460 if (insn->detail->ppc.operands[i].type == op_type)
461 count++;
462 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800463 }
464
465 return count;
466}
467
468int cs_op_index(csh ud, cs_insn *insn, unsigned int op_type,
469 unsigned int post)
470{
471 if (!ud)
472 return -1;
473
474 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
475 unsigned int count = 0, i;
476
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800477 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800478
479 switch (handle->arch) {
480 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800481 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800482 return -1;
483 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800484 for (i = 0; i < insn->detail->arm.op_count; i++) {
485 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800486 count++;
487 if (count == post)
488 return i;
489 }
490 break;
491 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800492 for (i = 0; i < insn->detail->arm64.op_count; i++) {
493 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800494 count++;
495 if (count == post)
496 return i;
497 }
498 break;
499 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800500 for (i = 0; i < insn->detail->x86.op_count; i++) {
501 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800502 count++;
503 if (count == post)
504 return i;
505 }
506 break;
507 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800508 for (i = 0; i < insn->detail->mips.op_count; i++) {
509 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800510 count++;
511 if (count == post)
512 return i;
513 }
514 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800515 case CS_ARCH_PPC:
516 for (i = 0; i < insn->detail->ppc.op_count; i++) {
517 if (insn->detail->ppc.operands[i].type == op_type)
518 count++;
519 if (count == post)
520 return i;
521 }
522 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800523 }
524
525 return -1;
526}