You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
276 lines
9.2 KiB
276 lines
9.2 KiB
#ifndef __CS_H__ |
|
#define __CS_H__ |
|
|
|
/* Capstone Disassembler Engine */ |
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013> */ |
|
|
|
#ifdef __cplusplus |
|
extern "C" { |
|
#endif |
|
|
|
#include <stdint.h> |
|
#include <stdbool.h> |
|
|
|
// Handle using with all API |
|
typedef size_t csh; |
|
|
|
// Architecture type |
|
typedef enum cs_arch { |
|
CS_ARCH_ARM = 0, // ARM architecture (including Thumb, Thumb-2) |
|
CS_ARCH_ARM64, // ARM-64, also called AArch64 |
|
CS_ARCH_MIPS, // Mips architecture |
|
CS_ARCH_X86, // X86 architecture (including x86 & x86-64) |
|
CS_ARCH_MAX, |
|
} cs_arch; |
|
|
|
// Mode type |
|
typedef enum cs_mode { |
|
CS_MODE_LITTLE_ENDIAN = 0, // little endian mode (default mode) |
|
CS_MODE_SYNTAX_INTEL = 0, // Intel X86 asm syntax (CS_ARCH_X86 architecture) |
|
CS_MODE_ARM = 0, // 32-bit ARM |
|
CS_MODE_16 = 1 << 1, // 16-bit mode |
|
CS_MODE_32 = 1 << 2, // 32-bit mode |
|
CS_MODE_64 = 1 << 3, // 64-bit mode |
|
CS_MODE_THUMB = 1 << 4, // ARM's Thumb mode, including Thumb-2 |
|
CS_MODE_MICRO = 1 << 4, // MicroMips mode (MIPS architecture) |
|
CS_MODE_N64 = 1 << 5, // Nintendo-64 mode (MIPS architecture) |
|
CS_MODE_SYNTAX_ATT = 1 << 30, // ATT asm syntax (CS_ARCH_X86 architecture) |
|
|
|
CS_MODE_BIG_ENDIAN = 1 << 31 // big endian mode |
|
} cs_mode; |
|
|
|
#include "arm.h" |
|
#include "arm64.h" |
|
#include "mips.h" |
|
#include "x86.h" |
|
|
|
// Detail information of disassembled instruction |
|
typedef struct cs_insn { |
|
// Instruction ID |
|
// Find the instruction id from header file of corresponding architecture, |
|
// such as arm.h for ARM, x86.h for X86, etc... |
|
unsigned int id; |
|
|
|
// Offset address of this instruction |
|
size_t address; |
|
|
|
// Size of this instruction |
|
uint16_t size; |
|
|
|
// Ascii text of instruction mnemonic |
|
char mnemonic[32]; |
|
|
|
// Ascii text of instruction operands |
|
char op_str[96]; |
|
|
|
unsigned int regs_read[32]; // list of implicit registers read by this instruction |
|
unsigned int regs_write[32]; // list of implicit registers modified by this instruction |
|
unsigned int groups[8]; // list of group this instruction belong to |
|
|
|
// Architecture-specific instruction info |
|
union { |
|
cs_x86 x86; // X86 architecture, including 16-bit, 32-bit & 64-bit mode |
|
cs_arm64 arm64; // ARM64 architecture (aka AArch64) |
|
cs_arm arm; // ARM architecture (including Thumb/Thumb2) |
|
cs_mips mips; // MIPS architecture |
|
}; |
|
} cs_insn; |
|
|
|
// All type of errors encountered by Capstone API. |
|
// These are values returned by cs_errno() |
|
typedef enum cs_err { |
|
CS_ERR_OK = 0, // No error: everything was fine |
|
CS_ERR_MEM, // Out-Of-Memory error |
|
CS_ERR_ARCH, // Unsupported architecture |
|
CS_ERR_HANDLE, // Invalid handle |
|
CS_ERR_CSH, // Invalid csh argument |
|
CS_ERR_MODE, // Invalid/unsupported mode |
|
} cs_err; |
|
|
|
/* |
|
Return API version in major and minor numbers. |
|
|
|
@major: major number of API version (for ex: 1) |
|
@minor: minor number of API version (for ex: 0) |
|
|
|
For example, first API version would return 1 in @major, and 0 in @minor |
|
*/ |
|
void cs_version(int *major, int *minor); |
|
|
|
/* |
|
Initialize CS handle: this must be done before any usage of CS. |
|
|
|
@arch: architecture type (CS_ARCH_*) |
|
@mode: hardware mode. This is combined of CS_MODE_* |
|
@handle: pointer to handle, which will be updated at return time |
|
|
|
@return CS_ERR_OK on success, or other value on failure (refer to cs_err enum |
|
for detailed error). |
|
*/ |
|
cs_err cs_open(cs_arch arch, cs_mode mode, csh *handle); |
|
|
|
/* |
|
Close CS handle: MUST do to release the handle when it is not used anymore. |
|
|
|
@handle: handle returned by cs_open() |
|
|
|
@return CS_ERR_OK on success, or other value on failure (refer to cs_err enum |
|
for detailed error). |
|
*/ |
|
cs_err cs_close(csh handle); |
|
|
|
/* |
|
Report the last error number when some API function fail. |
|
Like glibc's errno, cs_errno might not retain its old value once accessed. |
|
|
|
@handle: handle returned by cs_open() |
|
|
|
@return: error code of cs_err enum type (CS_ERR_*, see above) |
|
*/ |
|
cs_err cs_errno(csh handle); |
|
|
|
/* |
|
Disasm the binary code in @buffer. |
|
Disassembled instructions will be put into @insn |
|
NOTE: this API requires the pre-allocated buffer in @insn |
|
|
|
@handle: handle returned by cs_open() |
|
@code: buffer containing raw binary code to be disassembled |
|
@code_size: size of above code |
|
@offset: offset of the first insn in given raw code buffer |
|
@insn: array of insn filled in by this function |
|
NOTE: @insn size must be at least @count to avoid buffer overflow |
|
@count: number of instrutions to be disassembled, or 0 to get all of them |
|
@return: the number of succesfully disassembled instructions, |
|
or 0 if this function failed to disassemble the given code |
|
*/ |
|
size_t cs_disasm(csh handle, |
|
unsigned char *code, size_t code_size, |
|
size_t offset, |
|
size_t count, |
|
cs_insn *insn); |
|
|
|
/* |
|
Dynamicly allocate memory to contain disasm insn |
|
Disassembled instructions will be put into @*insn |
|
|
|
NOTE 1: this API will automatically determine memory needed to contain |
|
output disassembled instructions in @insn. |
|
NOTE 2: caller must free() the allocated memory itself to avoid memory leaking |
|
|
|
@handle: handle returned by cs_open() |
|
@code: buffer containing raw binary code to be disassembled |
|
@code_size: size of above code |
|
@offset: offset of the first insn in given raw code buffer |
|
@insn: array of insn filled in by this function |
|
NOTE: @insn will be allocated by this function |
|
@count: number of instrutions to be disassembled, or 0 to get all of them |
|
@return: the number of succesfully disassembled instructions, |
|
or 0 if this function failed to disassemble the given code |
|
*/ |
|
size_t cs_disasm_dyn(csh handle, |
|
unsigned char *code, size_t code_size, |
|
size_t offset, |
|
size_t count, |
|
cs_insn **insn); |
|
|
|
/* |
|
Free memory allocated in @insn of cs_disasm_dyn() |
|
|
|
@mem: pointer returned by @insn argument in cs_disasm_dyn() |
|
*/ |
|
void cs_free(void *mem); |
|
|
|
/* |
|
Return friendly name of regiser in a string |
|
Find the instruction id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
|
|
@handle: handle returned by cs_open() |
|
@reg: register id |
|
@return: string name of the register, or NULL if @reg_id is invalid. |
|
*/ |
|
char *cs_reg_name(csh handle, unsigned int reg_id); |
|
|
|
/* |
|
Return friendly name of an instruction in a string |
|
Find the instruction id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
|
|
@handle: handle returned by cs_open() |
|
@insn: instruction id |
|
|
|
@return: string name of the instruction, or NULL if @insn_id is invalid. |
|
*/ |
|
char *cs_insn_name(csh handle, unsigned int insn_id); |
|
|
|
/* |
|
Check if a disassembled instruction belong to a particular group. |
|
Find the group id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
Internally, this simply verifies if @group_id matches any member of insn->groups array. |
|
|
|
@handle: handle returned by cs_open() |
|
@insn: disassembled instruction structure received from cs_disasm() or cs_disasm_dyn() |
|
@group_id: group that you want to check if this instruction belong to. |
|
|
|
@return: true if this instruction indeed belongs to aboved group, or false otherwise. |
|
*/ |
|
bool cs_insn_group(csh handle, cs_insn *insn, unsigned int group_id); |
|
|
|
/* |
|
Check if a disassembled instruction IMPLICITLY used a particular register. |
|
Find the register id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
Internally, this simply verifies if @reg_id matches any member of insn->regs_read array. |
|
|
|
@insn: disassembled instruction structure received from cs_disasm() or cs_disasm_dyn() |
|
@reg_id: register that you want to check if this instruction used it. |
|
|
|
@return: true if this instruction indeed implicitly used aboved register, or false otherwise. |
|
*/ |
|
bool cs_reg_read(csh handle, cs_insn *insn, unsigned int reg_id); |
|
|
|
/* |
|
Check if a disassembled instruction IMPLICITLY modified a particular register. |
|
Find the register id from header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
Internally, this simply verifies if @reg_id matches any member of insn->regs_write array. |
|
|
|
@insn: disassembled instruction structure received from cs_disasm() or cs_disasm_dyn() |
|
@reg_id: register that you want to check if this instruction modified it. |
|
|
|
@return: true if this instruction indeed implicitly modified aboved register, or false otherwise. |
|
*/ |
|
bool cs_reg_write(csh handle, cs_insn *insn, unsigned int reg_id); |
|
|
|
/* |
|
Count the number of operands of a given type. |
|
Find the operand type in header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
|
|
@handle: handle returned by cs_open() |
|
@insn: disassembled instruction structure received from cs_disasm() or cs_disasm_dyn() |
|
@op_type: Operand type to be found. |
|
|
|
@return: number of operands of given type @op_type in instruction @insn, |
|
or -1 on failure. |
|
*/ |
|
int cs_op_count(csh handle, cs_insn *insn, unsigned int op_type); |
|
|
|
/* |
|
Retrieve the position of operand of given type in arch.op_info[] array. |
|
Later, the operand can be accessed using the returned position. |
|
Find the operand type in header file of corresponding architecture (arm.h for ARM, x86.h for X86, ...) |
|
|
|
@handle: handle returned by cs_open() |
|
@insn: disassembled instruction structure received from cs_disasm() or cs_disasm_dyn() |
|
@op_type: Operand type to be found. |
|
@position: position of the operand to be found. This must be in the range |
|
[1, cs_op_count(handle, insn, op_type)] |
|
|
|
@return: index of operand of given type @op_type in arch.op_info[] array |
|
in instruction @insn, or -1 on failure. |
|
*/ |
|
int cs_op_index(csh handle, cs_insn *insn, unsigned int op_type, |
|
unsigned int position); |
|
|
|
#ifdef __cplusplus |
|
} |
|
#endif |
|
|
|
#endif
|
|
|