blob: 6eac9330e9aa3b0f94cae4b554eb1b950819ff84 [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001/* Capstone Disassembler Engine */
2/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */
3
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +08004#include <stddef.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08005#include <stdio.h>
6#include <stdlib.h>
7#include <string.h>
8#include <capstone.h>
9
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080010#include "utils.h"
Nguyen Anh Quynhc7404072014-01-05 11:35:47 +080011#include "MCRegisterInfo.h"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080012
Nguyen Anh Quynh5ee2b452014-03-07 08:40:35 +080013#ifdef USE_SYS_DYN_MEM
Nguyen Anh Quynh472a4a42014-03-06 09:13:04 +080014#define INSN_CACHE_SIZE 32
Nguyen Anh Quynha836b752014-03-06 03:36:03 +080015#else
Nguyen Anh Quynh5ee2b452014-03-07 08:40:35 +080016// reduce stack variable size for kernel/firmware
Nguyen Anh Quynha836b752014-03-06 03:36:03 +080017#define INSN_CACHE_SIZE 8
18#endif
Nguyen Anh Quynhc34959b2014-01-22 09:46:42 +080019
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080020cs_err (*arch_init[MAX_ARCH])(cs_struct *) = { NULL };
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +080021cs_err (*arch_option[MAX_ARCH]) (cs_struct *, cs_opt_type, size_t value) = { NULL };
22void (*arch_destroy[MAX_ARCH]) (cs_struct *) = { NULL };
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080023
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080024extern void ARM_enable(void);
25extern void AArch64_enable(void);
26extern void Mips_enable(void);
27extern void X86_enable(void);
28extern void PPC_enable(void);
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080029extern void Sparc_enable(void);
danghvu701b8502014-01-09 11:06:44 +070030
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080031static void archs_enable(void)
Nguyen Anh Quynh625b5bc2014-01-09 14:33:56 +080032{
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080033 static bool initialized = false;
34
35 if (initialized)
36 return;
37
danghvub33bd2c2014-01-09 12:22:56 +070038#ifdef CAPSTONE_HAS_ARM
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080039 ARM_enable();
danghvub33bd2c2014-01-09 12:22:56 +070040#endif
41#ifdef CAPSTONE_HAS_ARM64
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080042 AArch64_enable();
danghvub33bd2c2014-01-09 12:22:56 +070043#endif
44#ifdef CAPSTONE_HAS_MIPS
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080045 Mips_enable();
danghvub33bd2c2014-01-09 12:22:56 +070046#endif
danghvub33bd2c2014-01-09 12:22:56 +070047#ifdef CAPSTONE_HAS_POWERPC
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080048 PPC_enable();
danghvub33bd2c2014-01-09 12:22:56 +070049#endif
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080050#ifdef CAPSTONE_HAS_SPARC
51 Sparc_enable();
52#endif
53#ifdef CAPSTONE_HAS_X86
54 X86_enable();
55#endif
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +080056
57 initialized = true;
danghvub33bd2c2014-01-09 12:22:56 +070058}
59
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080060unsigned int all_arch = 0;
Nguyen Anh Quynhf1851802013-12-21 12:16:47 +080061
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080062#ifdef USE_SYS_DYN_MEM
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +080063cs_malloc_t cs_mem_malloc = malloc;
64cs_calloc_t cs_mem_calloc = calloc;
65cs_realloc_t cs_mem_realloc = realloc;
66cs_free_t cs_mem_free = free;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +080067cs_vsnprintf_t cs_vsnprintf = vsnprintf;
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080068#else
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +080069cs_malloc_t cs_mem_malloc = NULL;
70cs_calloc_t cs_mem_calloc = NULL;
71cs_realloc_t cs_mem_realloc = NULL;
72cs_free_t cs_mem_free = NULL;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +080073cs_vsnprintf_t cs_vsnprintf = NULL;
Nguyen Anh Quynh59492c22014-01-05 23:41:31 +080074#endif
Nguyen Anh Quynhb8806782013-12-22 15:20:07 +080075
Nguyen Anh Quynhb90cb992013-12-28 13:59:09 +080076unsigned int cs_version(int *major, int *minor)
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +080077{
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +080078 archs_enable();
79
Nguyen Anh Quynh08777472013-12-22 14:16:28 +080080 if (major != NULL && minor != NULL) {
81 *major = CS_API_MAJOR;
82 *minor = CS_API_MINOR;
83 }
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080084
85 return (CS_API_MAJOR << 8) + CS_API_MINOR;
86}
87
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +080088bool cs_support(int query)
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080089{
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +080090 archs_enable();
91
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +080092 if (query == CS_ARCH_ALL)
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080093 return all_arch == ((1 << CS_ARCH_ARM) | (1 << CS_ARCH_ARM64) |
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +080094 (1 << CS_ARCH_MIPS) | (1 << CS_ARCH_X86) |
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080095 (1 << CS_ARCH_PPC) | (1 << CS_ARCH_SPARC));
Nguyen Anh Quynh39a42ed2013-12-22 10:40:58 +080096
Nguyen Anh Quynh48d58322014-02-27 13:54:28 +080097 if ((unsigned int)query < CS_ARCH_MAX)
Nguyen Anh Quynhb2870e42014-02-22 23:41:16 +080098 return all_arch & (1 << query);
99
100 if (query == CS_SUPPORT_DIET) {
101#ifdef CAPSTONE_DIET
102 return true;
103#else
104 return false;
105#endif
106 }
107
108 // unsupported query
109 return false;
Nguyen Anh Quynh36df4bb2013-12-10 13:31:20 +0800110}
111
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112cs_err cs_errno(csh handle)
113{
114 if (!handle)
115 return CS_ERR_CSH;
116
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800117 struct cs_struct *ud = (struct cs_struct *)(uintptr_t)handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800118
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800119 return ud->errnum;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800120}
121
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800122const char *cs_strerror(cs_err code)
123{
124 switch(code) {
125 default:
126 return "Unknown error code";
127 case CS_ERR_OK:
128 return "OK (CS_ERR_OK)";
129 case CS_ERR_MEM:
130 return "Out of memory (CS_ERR_MEM)";
131 case CS_ERR_ARCH:
132 return "Invalid architecture (CS_ERR_ARCH)";
133 case CS_ERR_HANDLE:
134 return "Invalid handle (CS_ERR_HANDLE)";
135 case CS_ERR_CSH:
136 return "Invalid csh (CS_ERR_CSH)";
137 case CS_ERR_MODE:
138 return "Invalid mode (CS_ERR_MODE)";
139 case CS_ERR_OPTION:
140 return "Invalid option (CS_ERR_OPTION)";
141 case CS_ERR_DETAIL:
142 return "Details are unavailable (CS_ERR_DETAIL)";
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +0800143 case CS_ERR_MEMSETUP:
144 return "Dynamic memory management uninitialized (CS_ERR_MEMSETUP)";
Nguyen Anh Quynh4f220282014-02-09 00:19:15 +0800145 case CS_ERR_VERSION:
146 return "Different API version between core & binding (CS_ERR_VERSION)";
Nguyen Anh Quynhf7cdbdf2014-02-24 16:47:36 +0800147 case CS_ERR_DIET:
148 return "Information irrelevant in diet engine (CS_ERR_DIET)";
Nguyen Anh Quynh34f96382014-01-03 22:49:07 +0800149 }
150}
151
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800152cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle)
153{
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800154 if (!cs_mem_malloc || !cs_mem_calloc || !cs_mem_realloc || !cs_mem_free || !cs_vsnprintf)
Nguyen Anh Quynhc52352d2014-01-06 09:06:30 +0800155 // Error: before cs_open(), dynamic memory management must be initialized
156 // with cs_option(CS_OPT_MEM)
157 return CS_ERR_MEMSETUP;
158
Nguyen Anh Quynhc272e9d2014-01-19 12:03:22 +0800159 archs_enable();
160
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800161 if (arch < CS_ARCH_MAX && arch_init[arch]) {
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800162 struct cs_struct *ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800163
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800164 ud = cs_mem_calloc(1, sizeof(*ud));
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800165 if (!ud) {
166 // memory insufficient
167 return CS_ERR_MEM;
168 }
169
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800170 ud->errnum = CS_ERR_OK;
171 ud->arch = arch;
172 ud->mode = mode;
173 ud->big_endian = mode & CS_MODE_BIG_ENDIAN;
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800174 // by default, do not break instruction into details
175 ud->detail = CS_OPT_OFF;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800176
Nguyen Anh Quynh06b3c052014-01-21 15:26:02 +0800177 cs_err err = arch_init[ud->arch](ud);
178 if (err) {
179 cs_mem_free(ud);
180 *handle = 0;
181 return err;
182 }
Nguyen Anh Quynh8f7ab492014-01-06 09:52:57 +0800183
184 *handle = (uintptr_t)ud;
185
186 return CS_ERR_OK;
Nguyen Anh Quynh9a197b32013-12-22 13:41:38 +0800187 } else {
188 *handle = 0;
189 return CS_ERR_ARCH;
190 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800191}
192
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800193cs_err cs_close(csh *handle)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800194{
Nguyen Anh Quynhef3d04d2014-02-27 23:42:49 +0800195 if (*handle == 0)
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800196 // invalid handle
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800197 return CS_ERR_CSH;
198
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800199 struct cs_struct *ud = (struct cs_struct *)(*handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800200
Nguyen Anh Quynhfbe10a52014-02-27 23:59:08 +0800201 if (ud->printer_info)
202 cs_mem_free(ud->printer_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800203
Nguyen Anh Quynh9fac5122014-01-07 10:56:04 +0800204 // arch_destroy[ud->arch](ud);
Nguyen Anh Quynhb2654062014-01-03 17:08:58 +0800205
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800206 cs_mem_free(ud->insn_cache);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800207 memset(ud, 0, sizeof(*ud));
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800208 cs_mem_free(ud);
Nguyen Anh Quynhee143c82014-01-03 21:51:59 +0800209
Nguyen Anh Quynhc8e07852014-02-28 09:38:11 +0800210 // invalidate this handle by ZERO out its value.
211 // this is to make sure it is unusable after cs_close()
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800212 *handle = 0;
213
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800214 return CS_ERR_OK;
215}
216
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800217#define MIN(x, y) ((x) < (y) ? (x) : (y))
218
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800219// fill insn with mnemonic & operands info
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800220static void fill_insn(struct cs_struct *handle, cs_insn *insn, char *buffer, MCInst *mci,
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800221 PostPrinter_t postprinter, const uint8_t *code)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800222{
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800223 if (handle->detail) {
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800224 // avoiding copy insn->detail
225 memcpy(insn, &mci->flat_insn, sizeof(*insn) - sizeof(insn->detail));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800226
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800227 // NOTE: copy details in 2 chunks, since union is always put at address divisible by 8
228 // copy from @regs_read until @arm
229 memcpy(insn->detail, (void *)(&(mci->flat_insn)) + offsetof(cs_insn_flat, regs_read),
230 offsetof(cs_detail, arm) - offsetof(cs_detail, regs_read));
231 // then copy from @arm until end
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800232 memcpy((void *)((uintptr_t)(insn->detail) + offsetof(cs_detail, arm)),
233 (void *)((uintptr_t)(&(mci->flat_insn)) + offsetof(cs_insn_flat, arm)),
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800234 sizeof(cs_detail) - offsetof(cs_detail, arm));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800235 } else {
236 insn->address = mci->address;
Alex Ionescu46018db2014-01-22 09:45:00 -0800237 insn->size = (uint16_t)mci->insn_size;
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800238 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800239
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800240 // fill the instruction bytes
241 memcpy(insn->bytes, code, MIN(sizeof(insn->bytes), insn->size));
242
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800243 // map internal instruction opcode to public insn ID
244 if (handle->insn_id)
Nguyen Anh Quynh1acfd0b2014-01-06 10:56:59 +0800245 handle->insn_id(handle, insn, MCInst_getOpcode(mci));
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800246
247 // alias instruction might have ID saved in OpcodePub
248 if (MCInst_getOpcodePub(mci))
249 insn->id = MCInst_getOpcodePub(mci);
250
251 // post printer handles some corner cases (hacky)
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800252 if (postprinter)
253 postprinter((csh)handle, insn, buffer);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800254
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800255#ifndef CAPSTONE_DIET
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800256 // fill in mnemonic & operands
Nguyen Anh Quynhdefb9bc2013-12-12 14:00:12 +0800257 // find first space or tab
258 char *sp = buffer;
259 for (sp = buffer; *sp; sp++)
260 if (*sp == ' '||*sp == '\t')
261 break;
262 if (*sp) {
263 *sp = '\0';
Nguyen Anh Quynh86dc3932013-12-12 14:43:39 +0800264 // find the next non-space char
265 sp++;
266 for (; ((*sp == ' ') || (*sp == '\t')); sp++);
267 strncpy(insn->op_str, sp, sizeof(insn->op_str) - 1);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800268 insn->op_str[sizeof(insn->op_str) - 1] = '\0';
269 } else
270 insn->op_str[0] = '\0';
271
272 strncpy(insn->mnemonic, buffer, sizeof(insn->mnemonic) - 1);
273 insn->mnemonic[sizeof(insn->mnemonic) - 1] = '\0';
Nguyen Anh Quynhfc83a432014-02-22 23:26:27 +0800274#endif
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800275}
276
Nguyen Anh Quynhda8adad2013-12-04 09:44:07 +0800277cs_err cs_option(csh ud, cs_opt_type type, size_t value)
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800278{
Nguyen Anh Quynhc46c35d2014-03-05 00:21:53 +0800279 archs_enable();
280
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800281 // cs_option() can be called with NULL handle just for CS_OPT_MEM
282 // This is supposed to be executed before all other APIs (even cs_open())
283 if (type == CS_OPT_MEM) {
284 cs_opt_mem *mem = (cs_opt_mem *)value;
285
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800286 cs_mem_malloc = mem->malloc;
287 cs_mem_calloc = mem->calloc;
288 cs_mem_realloc = mem->realloc;
289 cs_mem_free = mem->free;
Nguyen Anh Quynhedeeb042014-01-15 20:44:03 +0800290 cs_vsnprintf = mem->vsnprintf;
Nguyen Anh Quynh24bf0d92014-01-05 11:19:04 +0800291
292 return CS_ERR_OK;
293 }
294
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800295 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
danghvu2b192962013-12-19 22:40:28 -0600296 if (!handle)
297 return CS_ERR_CSH;
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800298
danghvu0b6ea042013-12-19 23:07:26 -0600299 if (type == CS_OPT_DETAIL) {
Nguyen Anh Quynh7d02c922013-12-21 09:59:31 +0800300 handle->detail = value;
301 return CS_ERR_OK;
302 }
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800303
Nguyen Anh Quynhd3458392013-12-22 11:10:56 +0800304 return arch_option[handle->arch](handle, type, value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800305}
306
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800307// get previous instruction, which can be in the cache, or in total buffer
308static cs_insn *get_prev_insn(cs_insn *cache, unsigned int f, void *total, size_t total_size)
309{
310 if (f == 0) {
311 if (total == NULL)
312 return NULL;
Nguyen Anh Quynhc34959b2014-01-22 09:46:42 +0800313 // get the trailing insn from total buffer, which is at
314 // the end of the latest cache trunk
Alex Ionescu46018db2014-01-22 09:45:00 -0800315 return (cs_insn *)((void*)((uintptr_t)total + total_size - sizeof(cs_insn)));
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800316 } else
317 return &cache[f - 1];
318}
319
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800320// dynamicly allocate memory to contain disasm insn
321// NOTE: caller must free() the allocated memory itself to avoid memory leaking
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800322size_t cs_disasm_ex(csh ud, const uint8_t *buffer, size_t size, uint64_t offset, size_t count, cs_insn **insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800323{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800324 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800325 MCInst mci;
326 uint16_t insn_size;
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800327 size_t c = 0;
328 unsigned int f = 0;
Nguyen Anh Quynhc34959b2014-01-22 09:46:42 +0800329 cs_insn insn_cache[INSN_CACHE_SIZE];
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800330 void *total = NULL;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +0800331 size_t total_size = 0;
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800332 bool r;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800333
Nguyen Anh Quynh5848aaa2014-02-27 11:10:41 +0800334 if (!handle) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800335 // FIXME: how to handle this case:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800336 // handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800337 return 0;
338 }
339
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800340 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800341
Nguyen Anh Quynh11b05192014-01-22 11:04:25 +0800342 // reset previous prefix for X86
343 handle->prev_prefix = 0;
344
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800345 memset(insn_cache, 0, sizeof(insn_cache));
346
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800347 while (size > 0) {
danghvu2b192962013-12-19 22:40:28 -0600348 MCInst_Init(&mci);
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800349 mci.csh = handle;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800350
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800351 r = handle->disasm(ud, buffer, size, &mci, &insn_size, offset, handle->getinsn_info);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800352 if (r) {
353 SStream ss;
354 SStream_Init(&ss);
355
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800356 // relative branches need to know the address & size of current insn
357 mci.insn_size = insn_size;
358 mci.address = offset;
359
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800360 if (handle->detail) {
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800361 // save all the information for non-detailed mode
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800362 mci.flat_insn.address = offset;
363 mci.flat_insn.size = insn_size;
364 // allocate memory for @detail pointer
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800365 insn_cache[f].detail = cs_mem_calloc(1, sizeof(cs_detail));
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800366 }
367
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800368 handle->printer(&mci, &ss, handle->printer_info);
369
Joxean114df0e2013-12-04 07:11:32 +0100370 fill_insn(handle, &insn_cache[f], ss.buffer, &mci, handle->post_printer, buffer);
Nguyen Anh Quynha209e672013-12-14 00:23:41 +0800371
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800372 if (!handle->check_combine || !handle->check_combine(handle, &insn_cache[f])) {
373 f++;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800374
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800375 if (f == ARR_SIZE(insn_cache)) {
376 // resize total to contain newly disasm insns
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800377 void *tmp;
378
Nguyen Anh Quynhc34959b2014-01-22 09:46:42 +0800379 total_size += (sizeof(cs_insn) * INSN_CACHE_SIZE);
Nguyen Anh Quynh034a7482014-03-06 22:40:08 +0800380 tmp = cs_mem_realloc(total, total_size);
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800381 if (tmp == NULL) { // insufficient memory
382 cs_mem_free(total);
383 handle->errnum = CS_ERR_MEM;
384 return 0;
385 }
386
387 total = tmp;
Alex Ionescu46018db2014-01-22 09:45:00 -0800388 memcpy((void*)((uintptr_t)total + total_size - sizeof(insn_cache)), insn_cache, sizeof(insn_cache));
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800389
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800390 // reset f back to 0
391 f = 0;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800392 }
393
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800394 c++;
395 } else {
Nguyen Anh Quynh94020d82014-01-25 14:22:15 +0800396 // combine this instruction with previous prefix "instruction"
Nguyen Anh Quynh7772d852014-01-21 11:49:25 +0800397 cs_insn *prev = get_prev_insn(insn_cache, f, total, total_size);
398 handle->combine(handle, &insn_cache[f], prev);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800399 }
400
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800401 buffer += insn_size;
402 size -= insn_size;
403 offset += insn_size;
404
Nguyen Anh Quynh94020d82014-01-25 14:22:15 +0800405 if (count > 0) {
406 // x86 hacky
407 if (!handle->prev_prefix) {
408 if (c == count)
409 break;
410 } else {
411 // only combine 1 prefix with regular instruction
Nguyen Anh Quynh8ce50e42014-01-27 18:15:28 +0800412 if (c == count + 1) {
413 // the last insn is redundant
414 c--;
415 f--;
416 // free allocated detail pointer of the last redundant instruction
417 if (handle->detail)
418 cs_mem_free(insn_cache[f].detail);
419
Nguyen Anh Quynh94020d82014-01-25 14:22:15 +0800420 break;
Nguyen Anh Quynh8ce50e42014-01-27 18:15:28 +0800421 }
Nguyen Anh Quynh94020d82014-01-25 14:22:15 +0800422 }
423 }
Nguyen Anh Quynh8f13f3c2013-12-04 22:57:04 +0800424 } else {
425 // encounter a broken instruction
426 // XXX: TODO: JOXEAN continue here
427 break;
428 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800429 }
430
431 if (f) {
432 // resize total to contain newly disasm insns
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800433 void *tmp = cs_mem_realloc(total, total_size + f * sizeof(insn_cache[0]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800434 if (tmp == NULL) { // insufficient memory
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800435 cs_mem_free(total);
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800436 handle->errnum = CS_ERR_MEM;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800437 return 0;
438 }
439
440 total = tmp;
Alex Ionescu46018db2014-01-22 09:45:00 -0800441 memcpy((void*)((uintptr_t)total + total_size), insn_cache, f * sizeof(insn_cache[0]));
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800442
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800443 }
444
445 *insn = total;
446
447 return c;
448}
449
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800450void cs_free(cs_insn *insn, size_t count)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800451{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800452 size_t i;
453
454 // free all detail pointers
455 for (i = 0; i < count; i++)
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800456 cs_mem_free(insn[i].detail);
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800457
458 // then free pointer to cs_insn array
Nguyen Anh Quynha8eb7a52014-01-11 12:55:31 +0800459 cs_mem_free(insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800460}
461
462// return friendly name of regiser in a string
pancakef0e4eed2013-12-11 22:14:42 +0100463const char *cs_reg_name(csh ud, unsigned int reg)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800464{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800465 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800466
467 if (!handle || handle->reg_name == NULL) {
468 return NULL;
469 }
470
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800471 return handle->reg_name(ud, reg);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800472}
473
pancakef0e4eed2013-12-11 22:14:42 +0100474const char *cs_insn_name(csh ud, unsigned int insn)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800475{
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800476 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800477
478 if (!handle || handle->insn_name == NULL) {
479 return NULL;
480 }
481
Nguyen Anh Quynha253c7a2013-12-09 10:26:18 +0800482 return handle->insn_name(ud, insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800483}
484
Nguyen Anh Quynh70083562013-12-20 22:02:20 +0800485static bool arr_exist(unsigned char *arr, unsigned char max, unsigned int id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800486{
487 int i;
488
489 for (i = 0; i < max; i++) {
490 if (arr[i] == id)
491 return true;
492 }
493
494 return false;
495}
496
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800497bool cs_insn_group(csh ud, cs_insn *insn, unsigned int group_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800498{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800499 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800500 return false;
501
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800502 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800503 if (!handle->detail) {
504 handle->errnum = CS_ERR_DETAIL;
505 return false;
506 }
507
508 return arr_exist(insn->detail->groups, insn->detail->groups_count, group_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800509}
510
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800511bool cs_reg_read(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800512{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800513 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800514 return false;
515
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800516 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800517 if (!handle->detail) {
518 handle->errnum = CS_ERR_DETAIL;
519 return false;
520 }
521
522 return arr_exist(insn->detail->regs_read, insn->detail->regs_read_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800523}
524
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800525bool cs_reg_write(csh ud, cs_insn *insn, unsigned int reg_id)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800526{
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800527 if (!ud)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800528 return false;
529
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800530 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800531 if (!handle->detail) {
532 handle->errnum = CS_ERR_DETAIL;
533 return false;
534 }
535
536 return arr_exist(insn->detail->regs_write, insn->detail->regs_write_count, reg_id);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800537}
538
539int cs_op_count(csh ud, cs_insn *insn, unsigned int op_type)
540{
541 if (!ud)
542 return -1;
543
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800544 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +0800545 if (!handle->detail) {
546 handle->errnum = CS_ERR_DETAIL;
547 return -1;
548 }
549
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800550 unsigned int count = 0, i;
551
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800552 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800553
554 switch (handle->arch) {
555 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800556 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800557 return -1;
558 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800559 for (i = 0; i < insn->detail->arm.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800560 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800561 count++;
562 break;
563 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800564 for (i = 0; i < insn->detail->arm64.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800565 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800566 count++;
567 break;
568 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800569 for (i = 0; i < insn->detail->x86.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800570 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800571 count++;
572 break;
573 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800574 for (i = 0; i < insn->detail->mips.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800575 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800576 count++;
577 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800578 case CS_ARCH_PPC:
579 for (i = 0; i < insn->detail->ppc.op_count; i++)
Alex Ionescu46018db2014-01-22 09:45:00 -0800580 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800581 count++;
582 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800583 case CS_ARCH_SPARC:
584 for (i = 0; i < insn->detail->sparc.op_count; i++)
585 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
586 count++;
587 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800588 }
589
590 return count;
591}
592
593int cs_op_index(csh ud, cs_insn *insn, unsigned int op_type,
594 unsigned int post)
595{
596 if (!ud)
597 return -1;
598
Nguyen Anh Quynha82a0892014-01-23 23:42:40 +0800599 struct cs_struct *handle = (struct cs_struct *)(uintptr_t)ud;
Nguyen Anh Quynh24e12272014-01-15 21:27:23 +0800600 if (!handle->detail) {
601 handle->errnum = CS_ERR_DETAIL;
602 return -1;
603 }
604
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800605 unsigned int count = 0, i;
606
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800607 handle->errnum = CS_ERR_OK;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800608
609 switch (handle->arch) {
610 default:
Nguyen Anh Quynh3eb9ac92013-11-27 15:24:47 +0800611 handle->errnum = CS_ERR_HANDLE;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800612 return -1;
613 case CS_ARCH_ARM:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800614 for (i = 0; i < insn->detail->arm.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -0800615 if (insn->detail->arm.operands[i].type == (arm_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800616 count++;
617 if (count == post)
618 return i;
619 }
620 break;
621 case CS_ARCH_ARM64:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800622 for (i = 0; i < insn->detail->arm64.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -0800623 if (insn->detail->arm64.operands[i].type == (arm64_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800624 count++;
625 if (count == post)
626 return i;
627 }
628 break;
629 case CS_ARCH_X86:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800630 for (i = 0; i < insn->detail->x86.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -0800631 if (insn->detail->x86.operands[i].type == (x86_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800632 count++;
633 if (count == post)
634 return i;
635 }
636 break;
637 case CS_ARCH_MIPS:
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800638 for (i = 0; i < insn->detail->mips.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -0800639 if (insn->detail->mips.operands[i].type == (mips_op_type)op_type)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800640 count++;
641 if (count == post)
642 return i;
643 }
644 break;
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800645 case CS_ARCH_PPC:
646 for (i = 0; i < insn->detail->ppc.op_count; i++) {
Alex Ionescu46018db2014-01-22 09:45:00 -0800647 if (insn->detail->ppc.operands[i].type == (ppc_op_type)op_type)
Nguyen Anh Quynh42c6b1a2013-12-30 00:15:25 +0800648 count++;
649 if (count == post)
650 return i;
651 }
652 break;
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800653 case CS_ARCH_SPARC:
654 for (i = 0; i < insn->detail->sparc.op_count; i++) {
655 if (insn->detail->sparc.operands[i].type == (sparc_op_type)op_type)
656 count++;
657 if (count == post)
658 return i;
659 }
660 break;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800661 }
662
663 return -1;
664}