blob: 1d602911b14f5d1f5d321a021ace3b38c786d7f8 [file] [log] [blame]
Nguyen Anh Quynh6023ef72014-04-29 11:21:04 +08001/* Capstone Disassembly Engine */
Nguyen Anh Quynhbfcaba52015-03-04 17:45:23 +08002/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
Axel 0vercl0k Souchet605faf12014-05-09 20:40:00 +01003#if defined (WIN32) || defined (WIN64) || defined (_WIN32) || defined (_WIN64)
4#pragma warning(disable:4996)
5#endif
reverser160e1982015-04-09 18:28:19 +01006#if defined(CAPSTONE_HAS_OSXKERNEL)
7#include <libkern/libkern.h>
8#else
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08009#include <stddef.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080010#include <stdio.h>
11#include <stdlib.h>
reverser160e1982015-04-09 18:28:19 +010012#endif
13
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080014#include <string.h>
pancake9c10ace2015-02-24 04:55:55 +010015#include <capstone/capstone.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080016
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080017#include "utils.h"
Nguyen Anh Quynhc7404072014-01-05 11:35:47 +080018#include "MCRegisterInfo.h"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080019
Axel 0vercl0k Souchet84fecf22014-05-10 09:49:29 +010020#ifdef CAPSTONE_USE_SYS_DYN_MEM
Nguyen Anh Quynh472a4a42014-03-06 09:13:04 +080021#define INSN_CACHE_SIZE 32
Nguyen Anh Quynha836b752014-03-06 03:36:03 +080022#else
Nguyen Anh Quynh5ee2b452014-03-07 08:40:35 +080023// reduce stack variable size for kernel/firmware
Nguyen Anh Quynha836b752014-03-06 03:36:03 +080024#define INSN_CACHE_SIZE 8
25#endif
Nguyen Anh Quynhc34959b2014-01-22 09:46:42 +080026
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +080027// default SKIPDATA mnemonic
Nguyen Anh Quynhc75a9092014-04-10 10:26:49 +080028#define SKIPDATA_MNEM ".byte"
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +080029
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080030cs_err (*arch_init[MAX_ARCH])(cs_struct *) = { NULL };
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +080031cs_err (*arch_option[MAX_ARCH]) (cs_struct *, cs_opt_type, size_t value) = { NULL };
32void (*arch_destroy[MAX_ARCH]) (cs_struct *) = { NULL };
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080033
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080034extern void ARM_enable(void);
35extern void AArch64_enable(void);
36extern void Mips_enable(void);
37extern void X86_enable(void);
38extern void PPC_enable(void);
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080039extern void Sparc_enable(void);
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +080040extern void SystemZ_enable(void);
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +080041extern void XCore_enable(void);
danghvu701b8502014-01-09 11:06:44 +070042
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080043static void archs_enable(void)
Nguyen Anh Quynh625b5bc2014-01-09 14:33:56 +080044{
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080045 static bool initialized = false;
46
47 if (initialized)
48 return;
49
danghvub33bd2c2014-01-09 12:22:56 +070050#ifdef CAPSTONE_HAS_ARM
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080051 ARM_enable();
danghvub33bd2c2014-01-09 12:22:56 +070052#endif
53#ifdef CAPSTONE_HAS_ARM64
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080054 AArch64_enable();
danghvub33bd2c2014-01-09 12:22:56 +070055#endif
56#ifdef CAPSTONE_HAS_MIPS
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080057 Mips_enable();
danghvub33bd2c2014-01-09 12:22:56 +070058#endif
danghvub33bd2c2014-01-09 12:22:56 +070059#ifdef CAPSTONE_HAS_POWERPC
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080060 PPC_enable();
danghvub33bd2c2014-01-09 12:22:56 +070061#endif
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080062#ifdef CAPSTONE_HAS_SPARC
63 Sparc_enable();
64#endif
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +080065#ifdef CAPSTONE_HAS_SYSZ
66 SystemZ_enable();
67#endif
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080068#ifdef CAPSTONE_HAS_X86
69 X86_enable();
70#endif
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +080071#ifdef CAPSTONE_HAS_XCORE
72 XCore_enable();
73#endif
74
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080075
76 initialized = true;
danghvub33bd2c2014-01-09 12:22:56 +070077}
78
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080079unsigned int all_arch = 0;
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080080
Axel 0vercl0k Souchet84fecf22014-05-10 09:49:29 +010081#ifdef CAPSTONE_USE_SYS_DYN_MEM
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +080082cs_malloc_t cs_mem_malloc = malloc;
83cs_calloc_t cs_mem_calloc = calloc;
84cs_realloc_t cs_mem_realloc = realloc;
85cs_free_t cs_mem_free = free;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +080086cs_vsnprintf_t cs_vsnprintf = vsnprintf;
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080087#else
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +080088cs_malloc_t cs_mem_malloc = NULL;
89cs_calloc_t cs_mem_calloc = NULL;
90cs_realloc_t cs_mem_realloc = NULL;
91cs_free_t cs_mem_free = NULL;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +080092cs_vsnprintf_t cs_vsnprintf = NULL;
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080093#endif
Nguyen Anh Quynhb8806782013-12-22 15:20:07 +080094
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +080095CAPSTONE_EXPORT
Nguyen Anh Quynhb90cb992013-12-28 13:59:09 +080096unsigned int cs_version(int *major, int *minor)
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080097{
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +080098 archs_enable();
99
Nguyen Anh Quynh08777472013-12-22 14:16:28 +0800100 if (major != NULL && minor != NULL) {
101 *major = CS_API_MAJOR;
102 *minor = CS_API_MINOR;
103 }
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +0800104
105 return (CS_API_MAJOR << 8) + CS_API_MINOR;
106}
107
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800108CAPSTONE_EXPORT
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +0800109bool cs_support(int query)
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +0800110{
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +0800111 archs_enable();
112
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +0800113 if (query == CS_ARCH_ALL)
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +0800114 return all_arch == ((1 << CS_ARCH_ARM) | (1 << CS_ARCH_ARM64) |
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800115 (1 << CS_ARCH_MIPS) | (1 << CS_ARCH_X86) |
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800116 (1 << CS_ARCH_PPC) | (1 << CS_ARCH_SPARC) |
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +0800117 (1 << CS_ARCH_SYSZ) | (1 << CS_ARCH_XCORE));
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +0800118
Nguyen Anh Quynh48d58322014-02-27 13:54:28 +0800119 if ((unsigned int)query < CS_ARCH_MAX)
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +0800120 return all_arch & (1 << query);
121
122 if (query == CS_SUPPORT_DIET) {
123#ifdef CAPSTONE_DIET
124 return true;
125#else
126 return false;
127#endif
128 }
129
Nguyen Anh Quynh59b54892014-03-27 10:54:44 +0800130 if (query == CS_SUPPORT_X86_REDUCE) {
131#if defined(CAPSTONE_HAS_X86) && defined(CAPSTONE_X86_REDUCE)
Nguyen Anh Quynh95181482014-03-25 23:20:41 +0800132 return true;
133#else
134 return false;
135#endif
136 }
137
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +0800138 // unsupported query
139 return false;
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +0800140}
141
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800142CAPSTONE_EXPORT
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800143cs_err cs_errno(csh handle)
144{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800145 struct cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800146 if (!handle)
147 return CS_ERR_CSH;
148
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100149 ud = (struct cs_struct *)(uintptr_t)handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800150
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800151 return ud->errnum;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800152}
153
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800154CAPSTONE_EXPORT
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800155const char *cs_strerror(cs_err code)
156{
157 switch(code) {
158 default:
159 return "Unknown error code";
160 case CS_ERR_OK:
161 return "OK (CS_ERR_OK)";
162 case CS_ERR_MEM:
163 return "Out of memory (CS_ERR_MEM)";
164 case CS_ERR_ARCH:
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800165 return "Invalid/unsupported architecture(CS_ERR_ARCH)";
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800166 case CS_ERR_HANDLE:
167 return "Invalid handle (CS_ERR_HANDLE)";
168 case CS_ERR_CSH:
169 return "Invalid csh (CS_ERR_CSH)";
170 case CS_ERR_MODE:
171 return "Invalid mode (CS_ERR_MODE)";
172 case CS_ERR_OPTION:
173 return "Invalid option (CS_ERR_OPTION)";
174 case CS_ERR_DETAIL:
175 return "Details are unavailable (CS_ERR_DETAIL)";
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +0800176 case CS_ERR_MEMSETUP:
177 return "Dynamic memory management uninitialized (CS_ERR_MEMSETUP)";
Nguyen Anh Quynh4f220282014-02-09 00:19:15 +0800178 case CS_ERR_VERSION:
179 return "Different API version between core & binding (CS_ERR_VERSION)";
Nguyen Anh Quynhf7cdbdf2014-02-24 16:47:36 +0800180 case CS_ERR_DIET:
181 return "Information irrelevant in diet engine (CS_ERR_DIET)";
Nguyen Anh Quynh11ec8812014-04-10 17:20:01 +0800182 case CS_ERR_SKIPDATA:
183 return "Information irrelevant for 'data' instruction in SKIPDATA mode (CS_ERR_SKIPDATA)";
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800184 }
185}
186
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800187CAPSTONE_EXPORT
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800188cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
189{
Nguyen Anh Quynh42706a32014-05-09 07:33:35 +0800190 cs_err err;
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800191 struct cs_struct *ud;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800192 if (!cs_mem_malloc || !cs_mem_calloc || !cs_mem_realloc || !cs_mem_free || !cs_vsnprintf)
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +0800193 // Error: before cs_open(), dynamic memory management must be initialized
194 // with cs_option(CS_OPT_MEM)
195 return CS_ERR_MEMSETUP;
196
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +0800197 archs_enable();
198
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800199 if (arch < CS_ARCH_MAX && arch_init[arch]) {
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800200 ud = cs_mem_calloc(1, sizeof(*ud));
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800201 if (!ud) {
202 // memory insufficient
203 return CS_ERR_MEM;
204 }
205
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800206 ud->errnum = CS_ERR_OK;
207 ud->arch = arch;
208 ud->mode = mode;
209 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800210 // by default, do not break instruction into details
211 ud->detail = CS_OPT_OFF;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800212
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800213 // default skipdata setup
214 ud->skipdata_setup.mnemonic = SKIPDATA_MNEM;
215
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100216 err = arch_init[ud->arch](ud);
Nguyen Anh Quynh06b3c052014-01-21 15:26:02 +0800217 if (err) {
218 cs_mem_free(ud);
219 *handle = 0;
220 return err;
221 }
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800222
223 *handle = (uintptr_t)ud;
224
225 return CS_ERR_OK;
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800226 } else {
227 *handle = 0;
228 return CS_ERR_ARCH;
229 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800230}
231
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800232CAPSTONE_EXPORT
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800233cs_err cs_close(csh *handle)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800234{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800235 struct cs_struct *ud;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800236 struct insn_mnem *next, *tmp;
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800237
Nguyen Anh Quynhef3d04d2014-02-27 23:42:49 +0800238 if (*handle == 0)
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800239 // invalid handle
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800240 return CS_ERR_CSH;
241
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100242 ud = (struct cs_struct *)(*handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800243
Nguyen Anh Quynhfbe10a52014-02-27 23:59:08 +0800244 if (ud->printer_info)
245 cs_mem_free(ud->printer_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800246
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800247 // free the linked list of customized mnemonic
248 tmp = ud->mnem_list;
249 while(tmp) {
250 next = tmp->next;
251 cs_mem_free(tmp);
252 tmp = next;
253 }
254
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800255 cs_mem_free(ud->insn_cache);
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800256
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800257 memset(ud, 0, sizeof(*ud));
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800258 cs_mem_free(ud);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800259
Nguyen Anh Quynhc8e07852014-02-28 09:38:11 +0800260 // invalidate this handle by ZERO out its value.
261 // this is to make sure it is unusable after cs_close()
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800262 *handle = 0;
263
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800264 return CS_ERR_OK;
265}
266
267// fill insn with mnemonic & operands info
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800268static void fill_insn(struct cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800269 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800270{
Nguyen Anh Quynh8c2e2db2014-05-14 07:32:56 +0800271#ifndef CAPSTONE_DIET
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700272 char *sp, *mnem;
Nguyen Anh Quynh8c2e2db2014-05-14 07:32:56 +0800273#endif
Nguyen Anh Quynh6c0dd632014-10-30 20:34:22 +0800274 unsigned int copy_size = MIN(sizeof(insn->bytes), insn->size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800275
Nguyen Anh Quynh6c0dd632014-10-30 20:34:22 +0800276 // fill the instruction bytes.
277 // we might skip some redundant bytes in front in the case of X86
278 memcpy(insn->bytes, code + insn->size - copy_size, copy_size);
279 insn->size = copy_size;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800280
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800281 // alias instruction might have ID saved in OpcodePub
282 if (MCInst_getOpcodePub(mci))
283 insn->id = MCInst_getOpcodePub(mci);
284
285 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800286 if (postprinter)
Nguyen Anh Quynh64564812014-05-19 16:46:31 +0800287 postprinter((csh)handle, insn, buffer, mci);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800288
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800289#ifndef CAPSTONE_DIET
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800290 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800291 // find first space or tab
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100292 sp = buffer;
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800293 mnem = insn->mnemonic;
Nguyen Anh Quynh25b7f762014-07-02 12:22:39 +0800294 for (sp = buffer; *sp; sp++) {
295 if (*sp == ' '|| *sp == '\t')
296 break;
297 if (*sp == '|') // lock|rep prefix for x86
298 *sp = ' ';
299 // copy to @mnemonic
300 *mnem = *sp;
301 mnem++;
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800302 }
303
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800304 *mnem = '\0';
305
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800306 // we might have customized mnemonic
307 if (handle->mnem_list) {
308 struct insn_mnem *tmp = handle->mnem_list;
309 while(tmp) {
310 if (tmp->insn.id == insn->id) {
311 // found this instruction, so copy its mnemonic
312 (void)strncpy(insn->mnemonic, tmp->insn.mnemonic, sizeof(insn->mnemonic) - 1);
313 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
314 break;
315 }
316 tmp = tmp->next;
317 }
318 }
319
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800320 // copy @op_str
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800321 if (*sp) {
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800322 // find the next non-space char
323 sp++;
324 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
325 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800326 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
327 } else
328 insn->op_str[0] = '\0';
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800329#endif
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800330}
331
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800332// how many bytes will we skip when encountering data (CS_OPT_SKIPDATA)?
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800333// this very much depends on instruction alignment requirement of each arch.
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800334static uint8_t skipdata_size(cs_struct *handle)
335{
336 switch(handle->arch) {
337 default:
338 // should never reach
339 return -1;
340 case CS_ARCH_ARM:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800341 // skip 2 bytes on Thumb mode.
342 if (handle->mode & CS_MODE_THUMB)
343 return 2;
344 // otherwise, skip 4 bytes
345 return 4;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800346 case CS_ARCH_ARM64:
347 case CS_ARCH_MIPS:
348 case CS_ARCH_PPC:
349 case CS_ARCH_SPARC:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800350 // skip 4 bytes
351 return 4;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800352 case CS_ARCH_SYSZ:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800353 // SystemZ instruction's length can be 2, 4 or 6 bytes,
354 // so we just skip 2 bytes
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800355 return 2;
356 case CS_ARCH_X86:
357 // X86 has no restriction on instruction alignment
358 return 1;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +0800359 case CS_ARCH_XCORE:
360 // XCore instruction's length can be 2 or 4 bytes,
361 // so we just skip 2 bytes
362 return 2;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800363 }
364}
365
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800366CAPSTONE_EXPORT
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800367cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800368{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800369 struct cs_struct *handle;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800370 cs_opt_mnem *opt;
371
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +0800372 archs_enable();
373
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800374 // cs_option() can be called with NULL handle just for CS_OPT_MEM
375 // This is supposed to be executed before all other APIs (even cs_open())
376 if (type == CS_OPT_MEM) {
377 cs_opt_mem *mem = (cs_opt_mem *)value;
378
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800379 cs_mem_malloc = mem->malloc;
380 cs_mem_calloc = mem->calloc;
381 cs_mem_realloc = mem->realloc;
382 cs_mem_free = mem->free;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800383 cs_vsnprintf = mem->vsnprintf;
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800384
385 return CS_ERR_OK;
386 }
387
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100388 handle = (struct cs_struct *)(uintptr_t)ud;
danghvu2b192962013-12-19 22:40:28 -0600389 if (!handle)
390 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800391
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800392 switch(type) {
393 default:
394 break;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800395
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800396 case CS_OPT_DETAIL:
Félix Cloutier3973d8b2015-03-02 22:06:56 -0500397 handle->detail = (cs_opt_value)value;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800398 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800399
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800400 case CS_OPT_SKIPDATA:
401 handle->skipdata = (value == CS_OPT_ON);
402 if (handle->skipdata) {
403 if (handle->skipdata_size == 0) {
404 // set the default skipdata size
405 handle->skipdata_size = skipdata_size(handle);
406 }
407 }
408 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800409
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800410 case CS_OPT_SKIPDATA_SETUP:
411 if (value)
412 handle->skipdata_setup = *((cs_opt_skipdata *)value);
413 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800414
415 case CS_OPT_MNEMONIC:
416 opt = (cs_opt_mnem *)value;
417 if (opt->id) {
418 if (opt->mnemonic) {
419 struct insn_mnem *tmp;
420
421 // add new instruction, or replace existing instruction
422 // 1. find if we already had this insn in the linked list
423 tmp = handle->mnem_list;
424 while(tmp) {
425 if (tmp->insn.id == opt->id) {
426 // found this instruction, so replace its mnemonic
427 (void)strncpy(tmp->insn.mnemonic, opt->mnemonic, sizeof(tmp->insn.mnemonic) - 1);
428 tmp->insn.mnemonic[sizeof(tmp->insn.mnemonic) - 1] = '\0';
429 break;
430 }
431 tmp = tmp->next;
432 }
433
434 // 2. add this instruction if we have not had it yet
435 if (!tmp) {
436 tmp = cs_mem_malloc(sizeof(*tmp));
437 tmp->insn.id = opt->id;
438 (void)strncpy(tmp->insn.mnemonic, opt->mnemonic, sizeof(tmp->insn.mnemonic) - 1);
439 tmp->insn.mnemonic[sizeof(tmp->insn.mnemonic) - 1] = '\0';
440 // this new instruction is heading the list
441 tmp->next = handle->mnem_list;
442 handle->mnem_list = tmp;
443 }
444 return CS_ERR_OK;
445 } else {
446 struct insn_mnem *prev, *tmp;
447
448 // we want to delete an existing instruction
449 // iterate the list to find the instruction to remove it
450 tmp = handle->mnem_list;
451 prev = tmp;
452 while(tmp) {
453 if (tmp->insn.id == opt->id) {
454 // delete this instruction
455 if (tmp == prev) {
456 // head of the list
457 handle->mnem_list = tmp->next;
458 } else {
459 prev->next = tmp->next;
460 }
461 cs_mem_free(tmp);
462 break;
463 }
464 prev = tmp;
465 tmp = tmp->next;
466 }
467 }
468 }
469 return CS_ERR_OK;
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800470 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800471
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800472 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800473}
474
Nguyen Anh Quynh07ffd642014-04-10 14:36:08 +0800475// generate @op_str for data instruction of SKIPDATA
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800476static void skipdata_opstr(char *opstr, const uint8_t *buffer, size_t size)
477{
478 char *p = opstr;
479 int len;
480 size_t i;
481
482 if (!size) {
483 opstr[0] = '\0';
484 return;
485 }
486
487 len = sprintf(p, "0x%02x", buffer[0]);
488 p+= len;
489
490 for(i = 1; i < size; i++) {
491 len = sprintf(p, ", 0x%02x", buffer[i]);
492 p+= len;
493 }
494}
495
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800496// dynamicly allocate memory to contain disasm insn
497// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800498CAPSTONE_EXPORT
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800499size_t cs_disasm(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 +0800500{
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800501 struct cs_struct *handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800502 MCInst mci;
503 uint16_t insn_size;
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800504 size_t c = 0, i;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800505 unsigned int f = 0; // index of the next instruction in the cache
506 cs_insn *insn_cache; // cache contains disassembled instructions
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800507 void *total = NULL;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800508 size_t total_size = 0; // total size of output buffer containing all insns
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800509 bool r;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800510 void *tmp;
511 size_t skipdata_bytes;
Nguyen Anh Quynh523ca992014-10-01 10:46:37 +0800512 uint64_t offset_org; // save all the original info of the buffer
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800513 size_t size_org;
514 const uint8_t *buffer_org;
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800515 unsigned int cache_size = INSN_CACHE_SIZE;
danghvu0d1aad12014-10-01 23:12:18 -0500516 size_t next_offset;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800517
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800518 handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh5848aaa2014-02-27 11:10:41 +0800519 if (!handle) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800520 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800521 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800522 return 0;
523 }
524
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800525 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800526
Nguyen Anh Quynh50eeba22014-09-30 13:28:02 +0800527#ifdef CAPSTONE_USE_SYS_DYN_MEM
Nguyen Anh Quynh16f330c2014-10-02 10:09:59 +0800528 if (count > 0 && count <= INSN_CACHE_SIZE)
flyingsymbolsd91f9642014-10-22 03:21:43 -0400529 cache_size = (unsigned int) count;
Nguyen Anh Quynh50eeba22014-09-30 13:28:02 +0800530#endif
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800531
Nguyen Anh Quynh2cff6f62014-04-28 11:19:44 +0800532 // save the original offset for SKIPDATA
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800533 buffer_org = buffer;
Nguyen Anh Quynh07ffd642014-04-10 14:36:08 +0800534 offset_org = offset;
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800535 size_org = size;
Nguyen Anh Quynh523ca992014-10-01 10:46:37 +0800536
537 total_size = sizeof(cs_insn) * cache_size;
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700538 total = cs_mem_malloc(total_size);
Nguyen Anh Quynh611b0c52014-12-15 11:22:46 +0800539 if (total == NULL) {
540 // insufficient memory
Edward Williamsonf1e49752014-12-14 20:45:19 -0500541 handle->errnum = CS_ERR_MEM;
542 return 0;
543 }
Nguyen Anh Quynh611b0c52014-12-15 11:22:46 +0800544
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700545 insn_cache = total;
Nguyen Anh Quynh2cff6f62014-04-28 11:19:44 +0800546
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800547 while (size > 0) {
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +0800548 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800549 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800550
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700551 // relative branches need to know the address & size of current insn
552 mci.address = offset;
553
554 if (handle->detail) {
555 // allocate memory for @detail pointer
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700556 insn_cache->detail = cs_mem_malloc(sizeof(cs_detail));
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700557 } else {
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700558 insn_cache->detail = NULL;
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700559 }
560
561 // save all the information for non-detailed mode
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700562 mci.flat_insn = insn_cache;
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700563 mci.flat_insn->address = offset;
Nguyen Anh Quynh0c07cc92014-08-27 22:31:54 +0800564#ifdef CAPSTONE_DIET
565 // zero out mnemonic & op_str
566 mci.flat_insn->mnemonic[0] = '\0';
567 mci.flat_insn->op_str[0] = '\0';
568#endif
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700569
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800570 r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800571 if (r) {
572 SStream ss;
573 SStream_Init(&ss);
574
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700575 mci.flat_insn->size = insn_size;
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800576
577 // map internal instruction opcode to public insn ID
578 handle->insn_id(handle, insn_cache, mci.Opcode);
579
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800580 handle->printer(&mci, &ss, handle->printer_info);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800581
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700582 fill_insn(handle, insn_cache, ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800583
danghvu0d1aad12014-10-01 23:12:18 -0500584 next_offset = insn_size;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800585 } else {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800586 // encounter a broken instruction
587
588 // free memory of @detail pointer
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800589 if (handle->detail) {
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800590 cs_mem_free(insn_cache->detail);
591 }
592
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800593 // if there is no request to skip data, or remaining data is too small,
594 // then bail out
595 if (!handle->skipdata || handle->skipdata_size > size)
596 break;
597
598 if (handle->skipdata_setup.callback) {
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800599 skipdata_bytes = handle->skipdata_setup.callback(buffer_org, size_org,
Nguyen Anh Quynh4b6b15f2014-08-26 15:57:04 +0800600 (size_t)(offset - offset_org), handle->skipdata_setup.user_data);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800601 if (skipdata_bytes > size)
602 // remaining data is not enough
603 break;
604
605 if (!skipdata_bytes)
606 // user requested not to skip data, so bail out
607 break;
608 } else
609 skipdata_bytes = handle->skipdata_size;
610
611 // we have to skip some amount of data, depending on arch & mode
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700612 insn_cache->id = 0; // invalid ID for this "data" instruction
613 insn_cache->address = offset;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800614 insn_cache->size = (uint16_t)skipdata_bytes;
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700615 memcpy(insn_cache->bytes, buffer, skipdata_bytes);
616 strncpy(insn_cache->mnemonic, handle->skipdata_setup.mnemonic,
617 sizeof(insn_cache->mnemonic) - 1);
618 skipdata_opstr(insn_cache->op_str, buffer, skipdata_bytes);
619 insn_cache->detail = NULL;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800620
danghvu0d1aad12014-10-01 23:12:18 -0500621 next_offset = skipdata_bytes;
622 }
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800623
danghvu0d1aad12014-10-01 23:12:18 -0500624 // one more instruction entering the cache
625 f++;
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800626
danghvu0d1aad12014-10-01 23:12:18 -0500627 // one more instruction disassembled
628 c++;
629 if (count > 0 && c == count)
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800630 // already got requested number of instructions
danghvu0d1aad12014-10-01 23:12:18 -0500631 break;
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800632
danghvu0d1aad12014-10-01 23:12:18 -0500633 if (f == cache_size) {
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800634 // full cache, so expand the cache to contain incoming insns
danghvu2fb7c8e2014-10-02 07:38:24 -0500635 cache_size = cache_size * 8 / 5; // * 1.6 ~ golden ratio
danghvu0d1aad12014-10-01 23:12:18 -0500636 total_size += (sizeof(cs_insn) * cache_size);
637 tmp = cs_mem_realloc(total, total_size);
638 if (tmp == NULL) { // insufficient memory
639 if (handle->detail) {
640 insn_cache = (cs_insn *)total;
641 for (i = 0; i < c; i++, insn_cache++)
642 cs_mem_free(insn_cache->detail);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800643 }
644
danghvu0d1aad12014-10-01 23:12:18 -0500645 cs_mem_free(total);
646 *insn = NULL;
647 handle->errnum = CS_ERR_MEM;
648 return 0;
649 }
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800650
danghvu0d1aad12014-10-01 23:12:18 -0500651 total = tmp;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800652 // continue to fill in the cache after the last instruction
653 insn_cache = (cs_insn *)((char *)total + sizeof(cs_insn) * c);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800654
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800655 // reset f back to 0, so we fill in the cache from begining
danghvu0d1aad12014-10-01 23:12:18 -0500656 f = 0;
657 } else
658 insn_cache++;
659
660 buffer += next_offset;
661 size -= next_offset;
662 offset += next_offset;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800663 }
664
Nguyen Anh Quynh27a4a082014-10-02 10:31:37 +0800665 if (!c) {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800666 // we did not disassemble any instruction
Nguyen Anh Quynh27a4a082014-10-02 10:31:37 +0800667 cs_mem_free(total);
668 total = NULL;
669 } else if (f != cache_size) {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800670 // total did not fully use the last cache, so downsize it
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800671 void *tmp = cs_mem_realloc(total, total_size - (cache_size - f) * sizeof(*insn_cache));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800672 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800673 // free all detail pointers
674 if (handle->detail) {
675 insn_cache = (cs_insn *)total;
676 for (i = 0; i < c; i++, insn_cache++)
677 cs_mem_free(insn_cache->detail);
678 }
679
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800680 cs_mem_free(total);
Nguyen Anh Quynhdab17fd2014-06-19 11:15:18 +0800681 *insn = NULL;
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800682
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800683 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800684 return 0;
685 }
686
687 total = tmp;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800688 }
689
690 *insn = total;
691
692 return c;
693}
694
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800695CAPSTONE_EXPORT
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800696CAPSTONE_DEPRECATED
697size_t cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
698{
699 return cs_disasm(ud, buffer, size, offset, count, insn);
700}
701
702CAPSTONE_EXPORT
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800703void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800704{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800705 size_t i;
706
707 // free all detail pointers
708 for (i = 0; i < count; i++)
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800709 cs_mem_free(insn[i].detail);
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800710
711 // then free pointer to cs_insn array
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800712 cs_mem_free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800713}
714
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800715CAPSTONE_EXPORT
716cs_insn *cs_malloc(csh ud)
717{
718 cs_insn *insn;
719 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
720
721 insn = cs_mem_malloc(sizeof(cs_insn));
722 if (!insn) {
723 // insufficient memory
724 handle->errnum = CS_ERR_MEM;
725 return NULL;
726 } else {
727 if (handle->detail) {
728 // allocate memory for @detail pointer
729 insn->detail = cs_mem_malloc(sizeof(cs_detail));
730 if (insn->detail == NULL) { // insufficient memory
731 cs_mem_free(insn);
732 handle->errnum = CS_ERR_MEM;
733 return NULL;
734 }
735 } else
736 insn->detail = NULL;
737 }
738
739 return insn;
740}
741
hlide993f3622014-10-05 18:14:40 +0200742// iterator for instruction "single-stepping"
743CAPSTONE_EXPORT
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800744bool cs_disasm_iter(csh ud, const uint8_t **code, size_t *size,
745 uint64_t *address, cs_insn *insn)
hlide993f3622014-10-05 18:14:40 +0200746{
747 struct cs_struct *handle;
hlide993f3622014-10-05 18:14:40 +0200748 uint16_t insn_size;
749 MCInst mci;
750 bool r;
751
752 handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800753 if (!handle) {
Nguyen Anh Quynh29ce6c32014-10-12 15:28:34 +0800754 return false;
hlide993f3622014-10-05 18:14:40 +0200755 }
756
757 handle->errnum = CS_ERR_OK;
758
hlide993f3622014-10-05 18:14:40 +0200759 MCInst_Init(&mci);
760 mci.csh = handle;
761
762 // relative branches need to know the address & size of current insn
763 mci.address = *address;
764
765 // save all the information for non-detailed mode
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800766 mci.flat_insn = insn;
hlide993f3622014-10-05 18:14:40 +0200767 mci.flat_insn->address = *address;
768#ifdef CAPSTONE_DIET
769 // zero out mnemonic & op_str
770 mci.flat_insn->mnemonic[0] = '\0';
771 mci.flat_insn->op_str[0] = '\0';
772#endif
773
774 r = handle->disasm(ud, *code, *size, &mci, &insn_size, *address, handle->getinsn_info);
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800775 if (r) {
hlide993f3622014-10-05 18:14:40 +0200776 SStream ss;
777 SStream_Init(&ss);
778
779 mci.flat_insn->size = insn_size;
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800780
781 // map internal instruction opcode to public insn ID
782 handle->insn_id(handle, insn, mci.Opcode);
783
hlide993f3622014-10-05 18:14:40 +0200784 handle->printer(&mci, &ss, handle->printer_info);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800785
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800786 fill_insn(handle, insn, ss.buffer, &mci, handle->post_printer, *code);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800787
hlide993f3622014-10-05 18:14:40 +0200788 *code += insn_size;
789 *size -= insn_size;
790 *address += insn_size;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800791 } else { // encounter a broken instruction
792 size_t skipdata_bytes;
793
794 // if there is no request to skip data, or remaining data is too small,
795 // then bail out
796 if (!handle->skipdata || handle->skipdata_size > *size)
797 return false;
798
799 if (handle->skipdata_setup.callback) {
800 skipdata_bytes = handle->skipdata_setup.callback(*code, *size,
801 0, handle->skipdata_setup.user_data);
802 if (skipdata_bytes > *size)
803 // remaining data is not enough
804 return false;
805
806 if (!skipdata_bytes)
807 // user requested not to skip data, so bail out
808 return false;
809 } else
810 skipdata_bytes = handle->skipdata_size;
811
812 // we have to skip some amount of data, depending on arch & mode
813 insn->id = 0; // invalid ID for this "data" instruction
814 insn->address = *address;
815 insn->size = (uint16_t)skipdata_bytes;
816 memcpy(insn->bytes, *code, skipdata_bytes);
817 strncpy(insn->mnemonic, handle->skipdata_setup.mnemonic,
818 sizeof(insn->mnemonic) - 1);
819 skipdata_opstr(insn->op_str, *code, skipdata_bytes);
820
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800821 *code += skipdata_bytes;
822 *size -= skipdata_bytes;
823 *address += skipdata_bytes;
hlide993f3622014-10-05 18:14:40 +0200824 }
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800825
826 return true;
hlide993f3622014-10-05 18:14:40 +0200827}
828
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800829// return friendly name of regiser in a string
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800830CAPSTONE_EXPORT
pancakef0e4eed2013-12-11 22:14:42 +0100831const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800832{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800833 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800834
835 if (!handle || handle->reg_name == NULL) {
836 return NULL;
837 }
838
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800839 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800840}
841
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800842CAPSTONE_EXPORT
pancakef0e4eed2013-12-11 22:14:42 +0100843const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800844{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800845 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800846
847 if (!handle || handle->insn_name == NULL) {
848 return NULL;
849 }
850
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800851 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800852}
853
Nguyen Anh Quynh650f96c2014-07-08 08:59:27 +0800854CAPSTONE_EXPORT
855const char *cs_group_name(csh ud, unsigned int group)
856{
857 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
858
859 if (!handle || handle->group_name == NULL) {
860 return NULL;
861 }
862
863 return handle->group_name(ud, group);
864}
865
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800866CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200867bool cs_insn_group(csh ud, const cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800868{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800869 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800870 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800871 return false;
872
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100873 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200874
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800875 if (!handle->detail) {
876 handle->errnum = CS_ERR_DETAIL;
877 return false;
878 }
879
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800880 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200881 handle->errnum = CS_ERR_SKIPDATA;
882 return false;
883 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200884
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800885 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200886 handle->errnum = CS_ERR_DETAIL;
887 return false;
888 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200889
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800890 return arr_exist8(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800891}
892
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800893CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200894bool cs_reg_read(csh ud, const cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800895{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800896 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800897 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800898 return false;
899
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100900 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200901
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800902 if (!handle->detail) {
903 handle->errnum = CS_ERR_DETAIL;
904 return false;
905 }
906
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800907 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200908 handle->errnum = CS_ERR_SKIPDATA;
909 return false;
910 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200911
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800912 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200913 handle->errnum = CS_ERR_DETAIL;
914 return false;
915 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200916
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800917 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800918}
919
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800920CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200921bool cs_reg_write(csh ud, const cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800922{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800923 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800924 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800925 return false;
926
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100927 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condello95657e02014-05-07 17:31:27 +0200928
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800929 if (!handle->detail) {
930 handle->errnum = CS_ERR_DETAIL;
931 return false;
932 }
933
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800934 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200935 handle->errnum = CS_ERR_SKIPDATA;
936 return false;
937 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200938
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800939 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200940 handle->errnum = CS_ERR_DETAIL;
941 return false;
942 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200943
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800944 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800945}
946
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800947CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200948int cs_op_count(csh ud, const cs_insn *insn, unsigned int op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800949{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800950 struct cs_struct *handle;
951 unsigned int count = 0, i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800952 if (!ud)
953 return -1;
954
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100955 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200956
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +0800957 if (!handle->detail) {
958 handle->errnum = CS_ERR_DETAIL;
959 return -1;
960 }
961
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800962 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200963 handle->errnum = CS_ERR_SKIPDATA;
964 return -1;
965 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200966
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800967 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200968 handle->errnum = CS_ERR_DETAIL;
969 return -1;
970 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200971
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800972 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800973
974 switch (handle->arch) {
975 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800976 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800977 return -1;
978 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800979 for (i = 0; i < insn->detail->arm.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800980 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800981 count++;
982 break;
983 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800984 for (i = 0; i < insn->detail->arm64.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800985 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800986 count++;
987 break;
988 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800989 for (i = 0; i < insn->detail->x86.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800990 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800991 count++;
992 break;
993 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800994 for (i = 0; i < insn->detail->mips.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800995 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800996 count++;
997 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800998 case CS_ARCH_PPC:
999 for (i = 0; i < insn->detail->ppc.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -08001000 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001001 count++;
1002 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +08001003 case CS_ARCH_SPARC:
1004 for (i = 0; i < insn->detail->sparc.op_count; i++)
1005 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
1006 count++;
1007 break;
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +08001008 case CS_ARCH_SYSZ:
1009 for (i = 0; i < insn->detail->sysz.op_count; i++)
1010 if (insn->detail->sysz.operands[i].type == (sysz_op_type)op_type)
1011 count++;
1012 break;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +08001013 case CS_ARCH_XCORE:
1014 for (i = 0; i < insn->detail->xcore.op_count; i++)
1015 if (insn->detail->xcore.operands[i].type == (xcore_op_type)op_type)
1016 count++;
1017 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001018 }
1019
1020 return count;
1021}
1022
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +08001023CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +02001024int cs_op_index(csh ud, const cs_insn *insn, unsigned int op_type,
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001025 unsigned int post)
1026{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +08001027 struct cs_struct *handle;
1028 unsigned int count = 0, i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001029 if (!ud)
1030 return -1;
1031
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +01001032 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +02001033
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +08001034 if (!handle->detail) {
1035 handle->errnum = CS_ERR_DETAIL;
1036 return -1;
1037 }
1038
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001039 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +02001040 handle->errnum = CS_ERR_SKIPDATA;
1041 return -1;
1042 }
Giovanni Condelloa715df12014-05-07 17:25:38 +02001043
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001044 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +02001045 handle->errnum = CS_ERR_DETAIL;
1046 return -1;
1047 }
Giovanni Condelloa715df12014-05-07 17:25:38 +02001048
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +08001049 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001050
1051 switch (handle->arch) {
1052 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +08001053 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001054 return -1;
1055 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001056 for (i = 0; i < insn->detail->arm.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001057 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001058 count++;
1059 if (count == post)
1060 return i;
1061 }
1062 break;
1063 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001064 for (i = 0; i < insn->detail->arm64.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001065 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001066 count++;
1067 if (count == post)
1068 return i;
1069 }
1070 break;
1071 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001072 for (i = 0; i < insn->detail->x86.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001073 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001074 count++;
1075 if (count == post)
1076 return i;
1077 }
1078 break;
1079 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001080 for (i = 0; i < insn->detail->mips.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001081 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001082 count++;
1083 if (count == post)
1084 return i;
1085 }
1086 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001087 case CS_ARCH_PPC:
1088 for (i = 0; i < insn->detail->ppc.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001089 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001090 count++;
1091 if (count == post)
1092 return i;
1093 }
1094 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +08001095 case CS_ARCH_SPARC:
1096 for (i = 0; i < insn->detail->sparc.op_count; i++) {
1097 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
1098 count++;
1099 if (count == post)
1100 return i;
1101 }
1102 break;
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +08001103 case CS_ARCH_SYSZ:
1104 for (i = 0; i < insn->detail->sysz.op_count; i++) {
1105 if (insn->detail->sysz.operands[i].type == (sysz_op_type)op_type)
1106 count++;
1107 if (count == post)
1108 return i;
1109 }
1110 break;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +08001111 case CS_ARCH_XCORE:
1112 for (i = 0; i < insn->detail->xcore.op_count; i++) {
1113 if (insn->detail->xcore.operands[i].type == (xcore_op_type)op_type)
1114 count++;
1115 if (count == post)
1116 return i;
1117 }
1118 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001119 }
1120
1121 return -1;
1122}
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001123
1124CAPSTONE_EXPORT
1125cs_err cs_regs_access(csh ud, const cs_insn *insn,
1126 cs_regs regs_read, uint8_t *regs_read_count,
1127 cs_regs regs_write, uint8_t *regs_write_count)
1128{
1129 struct cs_struct *handle;
1130
1131 if (!ud)
1132 return -1;
1133
1134 handle = (struct cs_struct *)(uintptr_t)ud;
1135
1136#ifdef CAPSTONE_DIET
1137 // This API does not work in DIET mode
1138 handle->errnum = CS_ERR_DIET;
1139 return CS_ERR_DIET;
1140#else
1141 if (!handle->detail) {
1142 handle->errnum = CS_ERR_DETAIL;
1143 return CS_ERR_DETAIL;
1144 }
1145
1146 if (!insn->id) {
1147 handle->errnum = CS_ERR_SKIPDATA;
1148 return CS_ERR_SKIPDATA;
1149 }
1150
1151 if (!insn->detail) {
1152 handle->errnum = CS_ERR_DETAIL;
1153 return CS_ERR_DETAIL;
1154 }
1155
1156 if (handle->reg_access) {
1157 handle->reg_access(insn, regs_read, regs_read_count, regs_write, regs_write_count);
1158 } else {
1159 // this arch is unsupported yet
1160 handle->errnum = CS_ERR_ARCH;
1161 return CS_ERR_ARCH;
1162 }
1163
1164 return CS_ERR_OK;
1165#endif
1166}