blob: 284d31e97e4f24d1ae1fd1972c2a18eaeac6e839 [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
41bool cs_support(cs_arch arch)
42{
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)";
82 }
83}
84
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080085cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
86{
danghvu2b192962013-12-19 22:40:28 -060087 cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080088
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +080089 ud = my_calloc(1, sizeof(*ud));
danghvu2b192962013-12-19 22:40:28 -060090 if (!ud) {
91 // memory insufficient
92 return CS_ERR_MEM;
93 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080094
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +080095 if (arch < CS_ARCH_MAX && arch_init[ud->arch]) {
96 ud->errnum = CS_ERR_OK;
97 ud->arch = arch;
98 ud->mode = mode;
99 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
100 ud->reg_name = NULL;
101 ud->detail = CS_OPT_ON; // by default break instruction into details
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800102
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800103 arch_init[ud->arch](ud);
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800104 } else {
105 *handle = 0;
106 return CS_ERR_ARCH;
107 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800108
danghvu2b192962013-12-19 22:40:28 -0600109 *handle = (uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800110
danghvu2b192962013-12-19 22:40:28 -0600111 return CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112}
113
114cs_err cs_close(csh handle)
115{
116 if (!handle)
117 return CS_ERR_CSH;
118
119 cs_struct *ud = (cs_struct *)(uintptr_t)handle;
120
121 switch (ud->arch) {
122 case CS_ARCH_X86:
123 break;
124 case CS_ARCH_ARM:
125 case CS_ARCH_MIPS:
126 case CS_ARCH_ARM64:
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800127 case CS_ARCH_PPC:
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800128 my_free(ud->printer_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800129 break;
130 default: // unsupported architecture
131 return CS_ERR_HANDLE;
132 }
133
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +0800134 if (arch_destroy[ud->arch])
135 arch_destroy[ud->arch](ud);
136
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800137 memset(ud, 0, sizeof(*ud));
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800138 my_free(ud);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800139
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800140 return CS_ERR_OK;
141}
142
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800143#define MIN(x, y) ((x) < (y) ? (x) : (y))
144
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800145// fill insn with mnemonic & operands info
146static void fill_insn(cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800147 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800148{
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800149 if (handle->detail) {
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800150 // avoiding copy insn->detail
151 memcpy(insn, &mci->flat_insn, sizeof(*insn) - sizeof(insn->detail));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800152
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800153 // NOTE: copy details in 2 chunks, since union is always put at address divisible by 8
154 // copy from @regs_read until @arm
155 memcpy(insn->detail, (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, regs_read),
156 offsetof(cs_detail, arm) - offsetof(cs_detail, regs_read));
157 // then copy from @arm until end
158 memcpy((void *)(insn->detail) + offsetof(cs_detail, arm), (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, arm),
159 sizeof(cs_detail) - offsetof(cs_detail, arm));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800160 } else {
161 insn->address = mci->address;
162 insn->size = mci->insn_size;
163 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800164
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800165 // fill the instruction bytes
166 memcpy(insn->bytes, code, MIN(sizeof(insn->bytes), insn->size));
167
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800168 // map internal instruction opcode to public insn ID
169 if (handle->insn_id)
170 handle->insn_id(insn, MCInst_getOpcode(mci), handle->detail);
171
172 // alias instruction might have ID saved in OpcodePub
173 if (MCInst_getOpcodePub(mci))
174 insn->id = MCInst_getOpcodePub(mci);
175
176 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800177 if (postprinter)
178 postprinter((csh)handle, insn, buffer);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800179
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800180 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800181 // find first space or tab
182 char *sp = buffer;
183 for (sp = buffer; *sp; sp++)
184 if (*sp == ' '||*sp == '\t')
185 break;
186 if (*sp) {
187 *sp = '\0';
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800188 // find the next non-space char
189 sp++;
190 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
191 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800192 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
193 } else
194 insn->op_str[0] = '\0';
195
196 strncpy(insn->mnemonic, buffer, sizeof(insn->mnemonic) - 1);
197 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
198}
199
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800200cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800201{
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800202 // cs_option() can be called with NULL handle just for CS_OPT_MEM
203 // This is supposed to be executed before all other APIs (even cs_open())
204 if (type == CS_OPT_MEM) {
205 cs_opt_mem *mem = (cs_opt_mem *)value;
206
207 my_malloc = mem->malloc;
208 my_calloc = mem->calloc;
209 my_realloc = mem->realloc;
210 my_free = mem->free;
211
212 return CS_ERR_OK;
213 }
214
danghvu2b192962013-12-19 22:40:28 -0600215 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
216 if (!handle)
217 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800218
danghvu0b6ea042013-12-19 23:07:26 -0600219 if (type == CS_OPT_DETAIL) {
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800220 handle->detail = value;
221 return CS_ERR_OK;
222 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800223
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800224 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800225}
226
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800227// dynamicly allocate memory to contain disasm insn
228// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800229size_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 +0800230{
231 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
232 MCInst mci;
233 uint16_t insn_size;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800234 size_t c = 0, f = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800235 cs_insn insn_cache[64];
236 void *total = NULL;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800237 size_t total_size = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800238
239 if (!handle) {
240 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800241 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800242 return 0;
243 }
244
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800245 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800246
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800247 memset(insn_cache, 0, sizeof(insn_cache));
248
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800249 while (size > 0) {
danghvu2b192962013-12-19 22:40:28 -0600250 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800251 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800252
253 bool r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
254 if (r) {
255 SStream ss;
256 SStream_Init(&ss);
257
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800258 // relative branches need to know the address & size of current insn
259 mci.insn_size = insn_size;
260 mci.address = offset;
261
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800262 if (handle->detail) {
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800263 // save all the information for non-detailed mode
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800264 mci.flat_insn.address = offset;
265 mci.flat_insn.size = insn_size;
266 // allocate memory for @detail pointer
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800267 insn_cache[f].detail = my_calloc(1, sizeof(cs_detail));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800268 }
269
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800270 handle->printer(&mci, &ss, handle->printer_info);
271
Joxean114df0e2013-12-04 07:11:32 +0100272 fill_insn(handle, &insn_cache[f], ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800273
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800274 f++;
275
276 if (f == ARR_SIZE(insn_cache)) {
277 // resize total to contain newly disasm insns
278 total_size += sizeof(insn_cache);
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800279 void *tmp = my_realloc(total, total_size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800280 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800281 my_free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800282 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800283 return 0;
284 }
285
286 total = tmp;
287 memcpy(total + total_size - sizeof(insn_cache), insn_cache, sizeof(insn_cache));
288 // reset f back to 0
289 f = 0;
290 }
291
292 c++;
293 buffer += insn_size;
294 size -= insn_size;
295 offset += insn_size;
296
297 if (count > 0 && c == count)
298 break;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800299 } else {
300 // encounter a broken instruction
301 // XXX: TODO: JOXEAN continue here
302 break;
303 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800304 }
305
306 if (f) {
307 // resize total to contain newly disasm insns
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800308 void *tmp = my_realloc(total, total_size + f * sizeof(insn_cache[0]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800309 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800310 my_free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800311 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800312 return 0;
313 }
314
315 total = tmp;
316 memcpy(total + total_size, insn_cache, f * sizeof(insn_cache[0]));
317 }
318
319 *insn = total;
320
321 return c;
322}
323
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800324void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800325{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800326 size_t i;
327
328 // free all detail pointers
329 for (i = 0; i < count; i++)
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800330 my_free(insn[i].detail);
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800331
332 // then free pointer to cs_insn array
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800333 my_free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800334}
335
336// return friendly name of regiser in a string
pancakef0e4eed2013-12-11 22:14:42 +0100337const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800338{
339 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
340
341 if (!handle || handle->reg_name == NULL) {
342 return NULL;
343 }
344
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800345 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800346}
347
pancakef0e4eed2013-12-11 22:14:42 +0100348const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800349{
350 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
351
352 if (!handle || handle->insn_name == NULL) {
353 return NULL;
354 }
355
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800356 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800357}
358
Nguyen Anh Quynh70083562013-12-20 22:02:20 +0800359static bool arr_exist(unsigned char *arr, unsigned char max, unsigned int id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800360{
361 int i;
362
363 for (i = 0; i < max; i++) {
364 if (arr[i] == id)
365 return true;
366 }
367
368 return false;
369}
370
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800371bool cs_insn_group(csh ud, cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800372{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800373 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800374 return false;
375
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800376 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
377
378 if (!handle->detail) {
379 handle->errnum = CS_ERR_DETAIL;
380 return false;
381 }
382
383 return arr_exist(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800384}
385
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800386bool cs_reg_read(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800387{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800388 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800389 return false;
390
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800391 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
392
393 if (!handle->detail) {
394 handle->errnum = CS_ERR_DETAIL;
395 return false;
396 }
397
398 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800399}
400
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800401bool cs_reg_write(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800402{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800403 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800404 return false;
405
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800406 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
407
408 if (!handle->detail) {
409 handle->errnum = CS_ERR_DETAIL;
410 return false;
411 }
412
413 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800414}
415
416int cs_op_count(csh ud, cs_insn *insn, unsigned int op_type)
417{
418 if (!ud)
419 return -1;
420
421 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
422 unsigned int count = 0, i;
423
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800424 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800425
426 switch (handle->arch) {
427 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800428 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800429 return -1;
430 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800431 for (i = 0; i < insn->detail->arm.op_count; i++)
432 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800433 count++;
434 break;
435 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800436 for (i = 0; i < insn->detail->arm64.op_count; i++)
437 if (insn->detail->arm64.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800438 count++;
439 break;
440 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800441 for (i = 0; i < insn->detail->x86.op_count; i++)
442 if (insn->detail->x86.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800443 count++;
444 break;
445 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800446 for (i = 0; i < insn->detail->mips.op_count; i++)
447 if (insn->detail->mips.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800448 count++;
449 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800450 case CS_ARCH_PPC:
451 for (i = 0; i < insn->detail->ppc.op_count; i++)
452 if (insn->detail->ppc.operands[i].type == op_type)
453 count++;
454 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800455 }
456
457 return count;
458}
459
460int cs_op_index(csh ud, cs_insn *insn, unsigned int op_type,
461 unsigned int post)
462{
463 if (!ud)
464 return -1;
465
466 cs_struct *handle = (cs_struct *)(uintptr_t)ud;
467 unsigned int count = 0, i;
468
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800469 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800470
471 switch (handle->arch) {
472 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800473 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800474 return -1;
475 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800476 for (i = 0; i < insn->detail->arm.op_count; i++) {
477 if (insn->detail->arm.operands[i].type == op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800478 count++;
479 if (count == post)
480 return i;
481 }
482 break;
483 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800484 for (i = 0; i < insn->detail->arm64.op_count; i++) {
485 if (insn->detail->arm64.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_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800492 for (i = 0; i < insn->detail->x86.op_count; i++) {
493 if (insn->detail->x86.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_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800500 for (i = 0; i < insn->detail->mips.op_count; i++) {
501 if (insn->detail->mips.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;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800507 case CS_ARCH_PPC:
508 for (i = 0; i < insn->detail->ppc.op_count; i++) {
509 if (insn->detail->ppc.operands[i].type == op_type)
510 count++;
511 if (count == post)
512 return i;
513 }
514 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800515 }
516
517 return -1;
518}