blob: a6abb99766d78d5b25f5b8a7745ff8068e0a7042 [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 Quynh8aba4cd2015-08-09 10:52:18 -0700184 case CS_ERR_X86_ATT:
185 return "AT&T syntax is unavailable (CS_ERR_X86_ATT)";
186 case CS_ERR_X86_INTEL:
187 return "INTEL syntax is unavailable (CS_ERR_X86_INTEL)";
188 case CS_ERR_X86_MASM:
189 return "MASM syntax is unavailable (CS_ERR_X86_MASM)";
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800190 }
191}
192
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800193CAPSTONE_EXPORT
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800194cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
195{
Nguyen Anh Quynh42706a32014-05-09 07:33:35 +0800196 cs_err err;
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800197 struct cs_struct *ud;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800198 if (!cs_mem_malloc || !cs_mem_calloc || !cs_mem_realloc || !cs_mem_free || !cs_vsnprintf)
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +0800199 // Error: before cs_open(), dynamic memory management must be initialized
200 // with cs_option(CS_OPT_MEM)
201 return CS_ERR_MEMSETUP;
202
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +0800203 archs_enable();
204
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800205 if (arch < CS_ARCH_MAX && arch_init[arch]) {
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800206 ud = cs_mem_calloc(1, sizeof(*ud));
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800207 if (!ud) {
208 // memory insufficient
209 return CS_ERR_MEM;
210 }
211
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800212 ud->errnum = CS_ERR_OK;
213 ud->arch = arch;
214 ud->mode = mode;
215 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800216 // by default, do not break instruction into details
217 ud->detail = CS_OPT_OFF;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800218
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800219 // default skipdata setup
220 ud->skipdata_setup.mnemonic = SKIPDATA_MNEM;
221
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100222 err = arch_init[ud->arch](ud);
Nguyen Anh Quynh06b3c052014-01-21 15:26:02 +0800223 if (err) {
224 cs_mem_free(ud);
225 *handle = 0;
226 return err;
227 }
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800228
229 *handle = (uintptr_t)ud;
230
231 return CS_ERR_OK;
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800232 } else {
233 *handle = 0;
234 return CS_ERR_ARCH;
235 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800236}
237
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800238CAPSTONE_EXPORT
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800239cs_err cs_close(csh *handle)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800240{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800241 struct cs_struct *ud;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800242 struct insn_mnem *next, *tmp;
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800243
Nguyen Anh Quynhef3d04d2014-02-27 23:42:49 +0800244 if (*handle == 0)
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800245 // invalid handle
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800246 return CS_ERR_CSH;
247
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100248 ud = (struct cs_struct *)(*handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800249
Nguyen Anh Quynhfbe10a52014-02-27 23:59:08 +0800250 if (ud->printer_info)
251 cs_mem_free(ud->printer_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800252
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800253 // free the linked list of customized mnemonic
254 tmp = ud->mnem_list;
255 while(tmp) {
256 next = tmp->next;
257 cs_mem_free(tmp);
258 tmp = next;
259 }
260
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800261 cs_mem_free(ud->insn_cache);
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800262
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800263 memset(ud, 0, sizeof(*ud));
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800264 cs_mem_free(ud);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800265
Nguyen Anh Quynhc8e07852014-02-28 09:38:11 +0800266 // invalidate this handle by ZERO out its value.
267 // this is to make sure it is unusable after cs_close()
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800268 *handle = 0;
269
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800270 return CS_ERR_OK;
271}
272
273// fill insn with mnemonic & operands info
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800274static void fill_insn(struct cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800275 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800276{
Nguyen Anh Quynh8c2e2db2014-05-14 07:32:56 +0800277#ifndef CAPSTONE_DIET
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700278 char *sp, *mnem;
Nguyen Anh Quynh8c2e2db2014-05-14 07:32:56 +0800279#endif
Nguyen Anh Quynh6c0dd632014-10-30 20:34:22 +0800280 unsigned int copy_size = MIN(sizeof(insn->bytes), insn->size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800281
Nguyen Anh Quynh6c0dd632014-10-30 20:34:22 +0800282 // fill the instruction bytes.
283 // we might skip some redundant bytes in front in the case of X86
284 memcpy(insn->bytes, code + insn->size - copy_size, copy_size);
285 insn->size = copy_size;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800286
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800287 // alias instruction might have ID saved in OpcodePub
288 if (MCInst_getOpcodePub(mci))
289 insn->id = MCInst_getOpcodePub(mci);
290
291 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800292 if (postprinter)
Nguyen Anh Quynh64564812014-05-19 16:46:31 +0800293 postprinter((csh)handle, insn, buffer, mci);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800294
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800295#ifndef CAPSTONE_DIET
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800296 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800297 // find first space or tab
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100298 sp = buffer;
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800299 mnem = insn->mnemonic;
Nguyen Anh Quynh25b7f762014-07-02 12:22:39 +0800300 for (sp = buffer; *sp; sp++) {
301 if (*sp == ' '|| *sp == '\t')
302 break;
303 if (*sp == '|') // lock|rep prefix for x86
304 *sp = ' ';
305 // copy to @mnemonic
306 *mnem = *sp;
307 mnem++;
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800308 }
309
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800310 *mnem = '\0';
311
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800312 // we might have customized mnemonic
313 if (handle->mnem_list) {
314 struct insn_mnem *tmp = handle->mnem_list;
315 while(tmp) {
316 if (tmp->insn.id == insn->id) {
317 // found this instruction, so copy its mnemonic
318 (void)strncpy(insn->mnemonic, tmp->insn.mnemonic, sizeof(insn->mnemonic) - 1);
319 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
320 break;
321 }
322 tmp = tmp->next;
323 }
324 }
325
Nguyen Anh Quynh7566a2d2014-06-08 22:09:31 +0800326 // copy @op_str
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800327 if (*sp) {
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800328 // find the next non-space char
329 sp++;
330 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
331 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800332 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
333 } else
334 insn->op_str[0] = '\0';
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800335#endif
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800336}
337
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800338// how many bytes will we skip when encountering data (CS_OPT_SKIPDATA)?
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800339// this very much depends on instruction alignment requirement of each arch.
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800340static uint8_t skipdata_size(cs_struct *handle)
341{
342 switch(handle->arch) {
343 default:
344 // should never reach
345 return -1;
346 case CS_ARCH_ARM:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800347 // skip 2 bytes on Thumb mode.
348 if (handle->mode & CS_MODE_THUMB)
349 return 2;
350 // otherwise, skip 4 bytes
351 return 4;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800352 case CS_ARCH_ARM64:
353 case CS_ARCH_MIPS:
354 case CS_ARCH_PPC:
355 case CS_ARCH_SPARC:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800356 // skip 4 bytes
357 return 4;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800358 case CS_ARCH_SYSZ:
Nguyen Anh Quynha89383e2014-04-10 11:53:46 +0800359 // SystemZ instruction's length can be 2, 4 or 6 bytes,
360 // so we just skip 2 bytes
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800361 return 2;
362 case CS_ARCH_X86:
363 // X86 has no restriction on instruction alignment
364 return 1;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +0800365 case CS_ARCH_XCORE:
366 // XCore instruction's length can be 2 or 4 bytes,
367 // so we just skip 2 bytes
368 return 2;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800369 }
370}
371
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800372CAPSTONE_EXPORT
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800373cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800374{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800375 struct cs_struct *handle;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800376 cs_opt_mnem *opt;
377
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +0800378 archs_enable();
379
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800380 // cs_option() can be called with NULL handle just for CS_OPT_MEM
381 // This is supposed to be executed before all other APIs (even cs_open())
382 if (type == CS_OPT_MEM) {
383 cs_opt_mem *mem = (cs_opt_mem *)value;
384
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800385 cs_mem_malloc = mem->malloc;
386 cs_mem_calloc = mem->calloc;
387 cs_mem_realloc = mem->realloc;
388 cs_mem_free = mem->free;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800389 cs_vsnprintf = mem->vsnprintf;
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800390
391 return CS_ERR_OK;
392 }
393
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100394 handle = (struct cs_struct *)(uintptr_t)ud;
danghvu2b192962013-12-19 22:40:28 -0600395 if (!handle)
396 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800397
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800398 switch(type) {
399 default:
400 break;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800401
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800402 case CS_OPT_DETAIL:
Félix Cloutier3973d8b2015-03-02 22:06:56 -0500403 handle->detail = (cs_opt_value)value;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800404 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800405
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800406 case CS_OPT_SKIPDATA:
407 handle->skipdata = (value == CS_OPT_ON);
408 if (handle->skipdata) {
409 if (handle->skipdata_size == 0) {
410 // set the default skipdata size
411 handle->skipdata_size = skipdata_size(handle);
412 }
413 }
414 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800415
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800416 case CS_OPT_SKIPDATA_SETUP:
417 if (value)
418 handle->skipdata_setup = *((cs_opt_skipdata *)value);
419 return CS_ERR_OK;
Nguyen Anh Quynh0b965452015-04-26 22:54:41 +0800420
421 case CS_OPT_MNEMONIC:
422 opt = (cs_opt_mnem *)value;
423 if (opt->id) {
424 if (opt->mnemonic) {
425 struct insn_mnem *tmp;
426
427 // add new instruction, or replace existing instruction
428 // 1. find if we already had this insn in the linked list
429 tmp = handle->mnem_list;
430 while(tmp) {
431 if (tmp->insn.id == opt->id) {
432 // found this instruction, so replace its mnemonic
433 (void)strncpy(tmp->insn.mnemonic, opt->mnemonic, sizeof(tmp->insn.mnemonic) - 1);
434 tmp->insn.mnemonic[sizeof(tmp->insn.mnemonic) - 1] = '\0';
435 break;
436 }
437 tmp = tmp->next;
438 }
439
440 // 2. add this instruction if we have not had it yet
441 if (!tmp) {
442 tmp = cs_mem_malloc(sizeof(*tmp));
443 tmp->insn.id = opt->id;
444 (void)strncpy(tmp->insn.mnemonic, opt->mnemonic, sizeof(tmp->insn.mnemonic) - 1);
445 tmp->insn.mnemonic[sizeof(tmp->insn.mnemonic) - 1] = '\0';
446 // this new instruction is heading the list
447 tmp->next = handle->mnem_list;
448 handle->mnem_list = tmp;
449 }
450 return CS_ERR_OK;
451 } else {
452 struct insn_mnem *prev, *tmp;
453
454 // we want to delete an existing instruction
455 // iterate the list to find the instruction to remove it
456 tmp = handle->mnem_list;
457 prev = tmp;
458 while(tmp) {
459 if (tmp->insn.id == opt->id) {
460 // delete this instruction
461 if (tmp == prev) {
462 // head of the list
463 handle->mnem_list = tmp->next;
464 } else {
465 prev->next = tmp->next;
466 }
467 cs_mem_free(tmp);
468 break;
469 }
470 prev = tmp;
471 tmp = tmp->next;
472 }
473 }
474 }
475 return CS_ERR_OK;
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800476 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800477
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800478 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800479}
480
Nguyen Anh Quynh07ffd642014-04-10 14:36:08 +0800481// generate @op_str for data instruction of SKIPDATA
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800482static void skipdata_opstr(char *opstr, const uint8_t *buffer, size_t size)
483{
484 char *p = opstr;
485 int len;
486 size_t i;
487
488 if (!size) {
489 opstr[0] = '\0';
490 return;
491 }
492
493 len = sprintf(p, "0x%02x", buffer[0]);
494 p+= len;
495
496 for(i = 1; i < size; i++) {
497 len = sprintf(p, ", 0x%02x", buffer[i]);
498 p+= len;
499 }
500}
501
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800502// dynamicly allocate memory to contain disasm insn
503// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800504CAPSTONE_EXPORT
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800505size_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 +0800506{
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800507 struct cs_struct *handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800508 MCInst mci;
509 uint16_t insn_size;
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800510 size_t c = 0, i;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800511 unsigned int f = 0; // index of the next instruction in the cache
512 cs_insn *insn_cache; // cache contains disassembled instructions
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800513 void *total = NULL;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800514 size_t total_size = 0; // total size of output buffer containing all insns
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800515 bool r;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800516 void *tmp;
517 size_t skipdata_bytes;
Nguyen Anh Quynh523ca992014-10-01 10:46:37 +0800518 uint64_t offset_org; // save all the original info of the buffer
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800519 size_t size_org;
520 const uint8_t *buffer_org;
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800521 unsigned int cache_size = INSN_CACHE_SIZE;
danghvu0d1aad12014-10-01 23:12:18 -0500522 size_t next_offset;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800523
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800524 handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh5848aaa2014-02-27 11:10:41 +0800525 if (!handle) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800526 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800527 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800528 return 0;
529 }
530
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800531 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800532
Nguyen Anh Quynh50eeba22014-09-30 13:28:02 +0800533#ifdef CAPSTONE_USE_SYS_DYN_MEM
Nguyen Anh Quynh16f330c2014-10-02 10:09:59 +0800534 if (count > 0 && count <= INSN_CACHE_SIZE)
flyingsymbolsd91f9642014-10-22 03:21:43 -0400535 cache_size = (unsigned int) count;
Nguyen Anh Quynh50eeba22014-09-30 13:28:02 +0800536#endif
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800537
Nguyen Anh Quynh2cff6f62014-04-28 11:19:44 +0800538 // save the original offset for SKIPDATA
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800539 buffer_org = buffer;
Nguyen Anh Quynh07ffd642014-04-10 14:36:08 +0800540 offset_org = offset;
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800541 size_org = size;
Nguyen Anh Quynh523ca992014-10-01 10:46:37 +0800542
543 total_size = sizeof(cs_insn) * cache_size;
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700544 total = cs_mem_malloc(total_size);
Nguyen Anh Quynh611b0c52014-12-15 11:22:46 +0800545 if (total == NULL) {
546 // insufficient memory
Edward Williamsonf1e49752014-12-14 20:45:19 -0500547 handle->errnum = CS_ERR_MEM;
548 return 0;
549 }
Nguyen Anh Quynh611b0c52014-12-15 11:22:46 +0800550
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700551 insn_cache = total;
Nguyen Anh Quynh2cff6f62014-04-28 11:19:44 +0800552
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800553 while (size > 0) {
Nguyen Anh Quynh495295e2014-06-16 15:54:32 +0800554 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800555 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800556
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700557 // relative branches need to know the address & size of current insn
558 mci.address = offset;
559
560 if (handle->detail) {
561 // allocate memory for @detail pointer
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700562 insn_cache->detail = cs_mem_malloc(sizeof(cs_detail));
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700563 } else {
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700564 insn_cache->detail = NULL;
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700565 }
566
567 // save all the information for non-detailed mode
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700568 mci.flat_insn = insn_cache;
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700569 mci.flat_insn->address = offset;
Nguyen Anh Quynh0c07cc92014-08-27 22:31:54 +0800570#ifdef CAPSTONE_DIET
571 // zero out mnemonic & op_str
572 mci.flat_insn->mnemonic[0] = '\0';
573 mci.flat_insn->op_str[0] = '\0';
574#endif
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700575
Nguyen Anh Quynha5ffdc32014-05-07 08:25:24 +0800576 r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800577 if (r) {
578 SStream ss;
579 SStream_Init(&ss);
580
Nguyen Anh Quynh5329a6f2014-06-08 23:35:52 +0700581 mci.flat_insn->size = insn_size;
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800582
583 // map internal instruction opcode to public insn ID
584 handle->insn_id(handle, insn_cache, mci.Opcode);
585
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800586 handle->printer(&mci, &ss, handle->printer_info);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800587
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700588 fill_insn(handle, insn_cache, ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800589
danghvu0d1aad12014-10-01 23:12:18 -0500590 next_offset = insn_size;
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800591 } else {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800592 // encounter a broken instruction
593
594 // free memory of @detail pointer
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800595 if (handle->detail) {
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800596 cs_mem_free(insn_cache->detail);
597 }
598
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800599 // if there is no request to skip data, or remaining data is too small,
600 // then bail out
601 if (!handle->skipdata || handle->skipdata_size > size)
602 break;
603
604 if (handle->skipdata_setup.callback) {
Nguyen Anh Quynh0df7e932014-07-10 15:42:16 +0800605 skipdata_bytes = handle->skipdata_setup.callback(buffer_org, size_org,
Nguyen Anh Quynh4b6b15f2014-08-26 15:57:04 +0800606 (size_t)(offset - offset_org), handle->skipdata_setup.user_data);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800607 if (skipdata_bytes > size)
608 // remaining data is not enough
609 break;
610
611 if (!skipdata_bytes)
612 // user requested not to skip data, so bail out
613 break;
614 } else
615 skipdata_bytes = handle->skipdata_size;
616
617 // we have to skip some amount of data, depending on arch & mode
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700618 insn_cache->id = 0; // invalid ID for this "data" instruction
619 insn_cache->address = offset;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800620 insn_cache->size = (uint16_t)skipdata_bytes;
Nguyen Anh Quynhee583942014-06-09 00:13:31 +0700621 memcpy(insn_cache->bytes, buffer, skipdata_bytes);
622 strncpy(insn_cache->mnemonic, handle->skipdata_setup.mnemonic,
623 sizeof(insn_cache->mnemonic) - 1);
624 skipdata_opstr(insn_cache->op_str, buffer, skipdata_bytes);
625 insn_cache->detail = NULL;
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800626
danghvu0d1aad12014-10-01 23:12:18 -0500627 next_offset = skipdata_bytes;
628 }
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800629
danghvu0d1aad12014-10-01 23:12:18 -0500630 // one more instruction entering the cache
631 f++;
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800632
danghvu0d1aad12014-10-01 23:12:18 -0500633 // one more instruction disassembled
634 c++;
635 if (count > 0 && c == count)
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800636 // already got requested number of instructions
danghvu0d1aad12014-10-01 23:12:18 -0500637 break;
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800638
danghvu0d1aad12014-10-01 23:12:18 -0500639 if (f == cache_size) {
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800640 // full cache, so expand the cache to contain incoming insns
danghvu2fb7c8e2014-10-02 07:38:24 -0500641 cache_size = cache_size * 8 / 5; // * 1.6 ~ golden ratio
danghvu0d1aad12014-10-01 23:12:18 -0500642 total_size += (sizeof(cs_insn) * cache_size);
643 tmp = cs_mem_realloc(total, total_size);
644 if (tmp == NULL) { // insufficient memory
645 if (handle->detail) {
646 insn_cache = (cs_insn *)total;
647 for (i = 0; i < c; i++, insn_cache++)
648 cs_mem_free(insn_cache->detail);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800649 }
650
danghvu0d1aad12014-10-01 23:12:18 -0500651 cs_mem_free(total);
652 *insn = NULL;
653 handle->errnum = CS_ERR_MEM;
654 return 0;
655 }
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800656
danghvu0d1aad12014-10-01 23:12:18 -0500657 total = tmp;
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800658 // continue to fill in the cache after the last instruction
659 insn_cache = (cs_insn *)((char *)total + sizeof(cs_insn) * c);
Nguyen Anh Quynhd3ffe372014-04-09 23:49:30 +0800660
Nguyen Anh Quynh4d3ccf42014-10-03 00:39:56 +0800661 // reset f back to 0, so we fill in the cache from begining
danghvu0d1aad12014-10-01 23:12:18 -0500662 f = 0;
663 } else
664 insn_cache++;
665
666 buffer += next_offset;
667 size -= next_offset;
668 offset += next_offset;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800669 }
670
Nguyen Anh Quynh27a4a082014-10-02 10:31:37 +0800671 if (!c) {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800672 // we did not disassemble any instruction
Nguyen Anh Quynh27a4a082014-10-02 10:31:37 +0800673 cs_mem_free(total);
674 total = NULL;
675 } else if (f != cache_size) {
Nguyen Anh Quynhf9d8a892014-10-02 12:37:32 +0800676 // total did not fully use the last cache, so downsize it
Nguyen Anh Quynhac98ca02014-09-30 13:17:36 +0800677 void *tmp = cs_mem_realloc(total, total_size - (cache_size - f) * sizeof(*insn_cache));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800678 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800679 // free all detail pointers
680 if (handle->detail) {
681 insn_cache = (cs_insn *)total;
682 for (i = 0; i < c; i++, insn_cache++)
683 cs_mem_free(insn_cache->detail);
684 }
685
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800686 cs_mem_free(total);
Nguyen Anh Quynhdab17fd2014-06-19 11:15:18 +0800687 *insn = NULL;
Nguyen Anh Quynh6c182ae2014-06-18 21:50:25 +0800688
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800689 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800690 return 0;
691 }
692
693 total = tmp;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800694 }
695
696 *insn = total;
697
698 return c;
699}
700
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800701CAPSTONE_EXPORT
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800702CAPSTONE_DEPRECATED
703size_t cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
704{
705 return cs_disasm(ud, buffer, size, offset, count, insn);
706}
707
708CAPSTONE_EXPORT
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800709void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800710{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800711 size_t i;
712
713 // free all detail pointers
714 for (i = 0; i < count; i++)
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800715 cs_mem_free(insn[i].detail);
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800716
717 // then free pointer to cs_insn array
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800718 cs_mem_free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800719}
720
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800721CAPSTONE_EXPORT
722cs_insn *cs_malloc(csh ud)
723{
724 cs_insn *insn;
725 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
726
727 insn = cs_mem_malloc(sizeof(cs_insn));
728 if (!insn) {
729 // insufficient memory
730 handle->errnum = CS_ERR_MEM;
731 return NULL;
732 } else {
733 if (handle->detail) {
734 // allocate memory for @detail pointer
735 insn->detail = cs_mem_malloc(sizeof(cs_detail));
736 if (insn->detail == NULL) { // insufficient memory
737 cs_mem_free(insn);
738 handle->errnum = CS_ERR_MEM;
739 return NULL;
740 }
741 } else
742 insn->detail = NULL;
743 }
744
745 return insn;
746}
747
hlide993f3622014-10-05 18:14:40 +0200748// iterator for instruction "single-stepping"
749CAPSTONE_EXPORT
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800750bool cs_disasm_iter(csh ud, const uint8_t **code, size_t *size,
751 uint64_t *address, cs_insn *insn)
hlide993f3622014-10-05 18:14:40 +0200752{
753 struct cs_struct *handle;
hlide993f3622014-10-05 18:14:40 +0200754 uint16_t insn_size;
755 MCInst mci;
756 bool r;
757
758 handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800759 if (!handle) {
Nguyen Anh Quynh29ce6c32014-10-12 15:28:34 +0800760 return false;
hlide993f3622014-10-05 18:14:40 +0200761 }
762
763 handle->errnum = CS_ERR_OK;
764
hlide993f3622014-10-05 18:14:40 +0200765 MCInst_Init(&mci);
766 mci.csh = handle;
767
768 // relative branches need to know the address & size of current insn
769 mci.address = *address;
770
771 // save all the information for non-detailed mode
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800772 mci.flat_insn = insn;
hlide993f3622014-10-05 18:14:40 +0200773 mci.flat_insn->address = *address;
774#ifdef CAPSTONE_DIET
775 // zero out mnemonic & op_str
776 mci.flat_insn->mnemonic[0] = '\0';
777 mci.flat_insn->op_str[0] = '\0';
778#endif
779
780 r = handle->disasm(ud, *code, *size, &mci, &insn_size, *address, handle->getinsn_info);
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800781 if (r) {
hlide993f3622014-10-05 18:14:40 +0200782 SStream ss;
783 SStream_Init(&ss);
784
785 mci.flat_insn->size = insn_size;
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800786
787 // map internal instruction opcode to public insn ID
788 handle->insn_id(handle, insn, mci.Opcode);
789
hlide993f3622014-10-05 18:14:40 +0200790 handle->printer(&mci, &ss, handle->printer_info);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800791
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800792 fill_insn(handle, insn, ss.buffer, &mci, handle->post_printer, *code);
Nguyen Anh Quynhff7bba32014-11-03 16:32:06 +0800793
hlide993f3622014-10-05 18:14:40 +0200794 *code += insn_size;
795 *size -= insn_size;
796 *address += insn_size;
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800797 } else { // encounter a broken instruction
798 size_t skipdata_bytes;
799
800 // if there is no request to skip data, or remaining data is too small,
801 // then bail out
802 if (!handle->skipdata || handle->skipdata_size > *size)
803 return false;
804
805 if (handle->skipdata_setup.callback) {
806 skipdata_bytes = handle->skipdata_setup.callback(*code, *size,
807 0, handle->skipdata_setup.user_data);
808 if (skipdata_bytes > *size)
809 // remaining data is not enough
810 return false;
811
812 if (!skipdata_bytes)
813 // user requested not to skip data, so bail out
814 return false;
815 } else
816 skipdata_bytes = handle->skipdata_size;
817
818 // we have to skip some amount of data, depending on arch & mode
819 insn->id = 0; // invalid ID for this "data" instruction
820 insn->address = *address;
821 insn->size = (uint16_t)skipdata_bytes;
822 memcpy(insn->bytes, *code, skipdata_bytes);
823 strncpy(insn->mnemonic, handle->skipdata_setup.mnemonic,
824 sizeof(insn->mnemonic) - 1);
825 skipdata_opstr(insn->op_str, *code, skipdata_bytes);
826
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800827 *code += skipdata_bytes;
828 *size -= skipdata_bytes;
829 *address += skipdata_bytes;
hlide993f3622014-10-05 18:14:40 +0200830 }
Nguyen Anh Quynh0a2eca72014-10-11 00:36:16 +0800831
832 return true;
hlide993f3622014-10-05 18:14:40 +0200833}
834
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800835// return friendly name of regiser in a string
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800836CAPSTONE_EXPORT
pancakef0e4eed2013-12-11 22:14:42 +0100837const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800838{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800839 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800840
841 if (!handle || handle->reg_name == NULL) {
842 return NULL;
843 }
844
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800845 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800846}
847
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800848CAPSTONE_EXPORT
pancakef0e4eed2013-12-11 22:14:42 +0100849const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800850{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800851 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800852
853 if (!handle || handle->insn_name == NULL) {
854 return NULL;
855 }
856
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800857 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800858}
859
Nguyen Anh Quynh650f96c2014-07-08 08:59:27 +0800860CAPSTONE_EXPORT
861const char *cs_group_name(csh ud, unsigned int group)
862{
863 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
864
865 if (!handle || handle->group_name == NULL) {
866 return NULL;
867 }
868
869 return handle->group_name(ud, group);
870}
871
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800872CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200873bool cs_insn_group(csh ud, const cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800874{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800875 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800876 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800877 return false;
878
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100879 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200880
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800881 if (!handle->detail) {
882 handle->errnum = CS_ERR_DETAIL;
883 return false;
884 }
885
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800886 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200887 handle->errnum = CS_ERR_SKIPDATA;
888 return false;
889 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200890
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800891 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200892 handle->errnum = CS_ERR_DETAIL;
893 return false;
894 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200895
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800896 return arr_exist8(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800897}
898
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800899CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200900bool cs_reg_read(csh ud, const cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800901{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800902 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800903 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800904 return false;
905
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100906 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200907
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800908 if (!handle->detail) {
909 handle->errnum = CS_ERR_DETAIL;
910 return false;
911 }
912
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800913 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200914 handle->errnum = CS_ERR_SKIPDATA;
915 return false;
916 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200917
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800918 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200919 handle->errnum = CS_ERR_DETAIL;
920 return false;
921 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200922
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800923 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800924}
925
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800926CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200927bool cs_reg_write(csh ud, const cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800928{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800929 struct cs_struct *handle;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800930 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800931 return false;
932
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100933 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condello95657e02014-05-07 17:31:27 +0200934
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800935 if (!handle->detail) {
936 handle->errnum = CS_ERR_DETAIL;
937 return false;
938 }
939
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800940 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200941 handle->errnum = CS_ERR_SKIPDATA;
942 return false;
943 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200944
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800945 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200946 handle->errnum = CS_ERR_DETAIL;
947 return false;
948 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200949
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800950 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800951}
952
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +0800953CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +0200954int cs_op_count(csh ud, const cs_insn *insn, unsigned int op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800955{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +0800956 struct cs_struct *handle;
957 unsigned int count = 0, i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800958 if (!ud)
959 return -1;
960
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +0100961 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +0200962
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +0800963 if (!handle->detail) {
964 handle->errnum = CS_ERR_DETAIL;
965 return -1;
966 }
967
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800968 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200969 handle->errnum = CS_ERR_SKIPDATA;
970 return -1;
971 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200972
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +0800973 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +0200974 handle->errnum = CS_ERR_DETAIL;
975 return -1;
976 }
Giovanni Condelloa715df12014-05-07 17:25:38 +0200977
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800978 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800979
980 switch (handle->arch) {
981 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800982 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800983 return -1;
984 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800985 for (i = 0; i < insn->detail->arm.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800986 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800987 count++;
988 break;
989 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800990 for (i = 0; i < insn->detail->arm64.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800991 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800992 count++;
993 break;
994 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800995 for (i = 0; i < insn->detail->x86.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800996 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800997 count++;
998 break;
999 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001000 for (i = 0; i < insn->detail->mips.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -08001001 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001002 count++;
1003 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001004 case CS_ARCH_PPC:
1005 for (i = 0; i < insn->detail->ppc.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -08001006 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001007 count++;
1008 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +08001009 case CS_ARCH_SPARC:
1010 for (i = 0; i < insn->detail->sparc.op_count; i++)
1011 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
1012 count++;
1013 break;
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +08001014 case CS_ARCH_SYSZ:
1015 for (i = 0; i < insn->detail->sysz.op_count; i++)
1016 if (insn->detail->sysz.operands[i].type == (sysz_op_type)op_type)
1017 count++;
1018 break;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +08001019 case CS_ARCH_XCORE:
1020 for (i = 0; i < insn->detail->xcore.op_count; i++)
1021 if (insn->detail->xcore.operands[i].type == (xcore_op_type)op_type)
1022 count++;
1023 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001024 }
1025
1026 return count;
1027}
1028
Nguyen Anh Quynh07c36932014-06-03 18:33:15 +08001029CAPSTONE_EXPORT
obs876b6b62014-08-21 00:57:04 +02001030int cs_op_index(csh ud, const cs_insn *insn, unsigned int op_type,
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001031 unsigned int post)
1032{
Nguyen Anh Quynhbb0744d2014-05-12 13:41:49 +08001033 struct cs_struct *handle;
1034 unsigned int count = 0, i;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001035 if (!ud)
1036 return -1;
1037
Axel 0vercl0k Souchet779d4c72014-05-08 23:44:49 +01001038 handle = (struct cs_struct *)(uintptr_t)ud;
Giovanni Condelloa715df12014-05-07 17:25:38 +02001039
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +08001040 if (!handle->detail) {
1041 handle->errnum = CS_ERR_DETAIL;
1042 return -1;
1043 }
1044
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001045 if (!insn->id) {
Giovanni Condello95657e02014-05-07 17:31:27 +02001046 handle->errnum = CS_ERR_SKIPDATA;
1047 return -1;
1048 }
Giovanni Condelloa715df12014-05-07 17:25:38 +02001049
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001050 if (!insn->detail) {
Giovanni Condello95657e02014-05-07 17:31:27 +02001051 handle->errnum = CS_ERR_DETAIL;
1052 return -1;
1053 }
Giovanni Condelloa715df12014-05-07 17:25:38 +02001054
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +08001055 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001056
1057 switch (handle->arch) {
1058 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +08001059 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001060 return -1;
1061 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001062 for (i = 0; i < insn->detail->arm.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001063 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001064 count++;
1065 if (count == post)
1066 return i;
1067 }
1068 break;
1069 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001070 for (i = 0; i < insn->detail->arm64.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001071 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001072 count++;
1073 if (count == post)
1074 return i;
1075 }
1076 break;
1077 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001078 for (i = 0; i < insn->detail->x86.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001079 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001080 count++;
1081 if (count == post)
1082 return i;
1083 }
1084 break;
1085 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08001086 for (i = 0; i < insn->detail->mips.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001087 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001088 count++;
1089 if (count == post)
1090 return i;
1091 }
1092 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001093 case CS_ARCH_PPC:
1094 for (i = 0; i < insn->detail->ppc.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -08001095 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +08001096 count++;
1097 if (count == post)
1098 return i;
1099 }
1100 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +08001101 case CS_ARCH_SPARC:
1102 for (i = 0; i < insn->detail->sparc.op_count; i++) {
1103 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
1104 count++;
1105 if (count == post)
1106 return i;
1107 }
1108 break;
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +08001109 case CS_ARCH_SYSZ:
1110 for (i = 0; i < insn->detail->sysz.op_count; i++) {
1111 if (insn->detail->sysz.operands[i].type == (sysz_op_type)op_type)
1112 count++;
1113 if (count == post)
1114 return i;
1115 }
1116 break;
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +08001117 case CS_ARCH_XCORE:
1118 for (i = 0; i < insn->detail->xcore.op_count; i++) {
1119 if (insn->detail->xcore.operands[i].type == (xcore_op_type)op_type)
1120 count++;
1121 if (count == post)
1122 return i;
1123 }
1124 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001125 }
1126
1127 return -1;
1128}
Nguyen Anh Quynhefffe782015-03-25 15:02:13 +08001129
1130CAPSTONE_EXPORT
1131cs_err cs_regs_access(csh ud, const cs_insn *insn,
1132 cs_regs regs_read, uint8_t *regs_read_count,
1133 cs_regs regs_write, uint8_t *regs_write_count)
1134{
1135 struct cs_struct *handle;
1136
1137 if (!ud)
1138 return -1;
1139
1140 handle = (struct cs_struct *)(uintptr_t)ud;
1141
1142#ifdef CAPSTONE_DIET
1143 // This API does not work in DIET mode
1144 handle->errnum = CS_ERR_DIET;
1145 return CS_ERR_DIET;
1146#else
1147 if (!handle->detail) {
1148 handle->errnum = CS_ERR_DETAIL;
1149 return CS_ERR_DETAIL;
1150 }
1151
1152 if (!insn->id) {
1153 handle->errnum = CS_ERR_SKIPDATA;
1154 return CS_ERR_SKIPDATA;
1155 }
1156
1157 if (!insn->detail) {
1158 handle->errnum = CS_ERR_DETAIL;
1159 return CS_ERR_DETAIL;
1160 }
1161
1162 if (handle->reg_access) {
1163 handle->reg_access(insn, regs_read, regs_read_count, regs_write, regs_write_count);
1164 } else {
1165 // this arch is unsupported yet
1166 handle->errnum = CS_ERR_ARCH;
1167 return CS_ERR_ARCH;
1168 }
1169
1170 return CS_ERR_OK;
1171#endif
1172}