blob: 19eb7ee50ce9d4d62c5e767c799cf57fcfd4d54f [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
4#include <stdio.h>
5#include <stdlib.h>
6#include <inttypes.h>
7
8#include <capstone.h>
9
10struct platform {
11 cs_arch arch;
12 cs_mode mode;
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +080013 unsigned char *code;
14 size_t size;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080015 char *comment;
16};
17
18static csh handle;
19
Mr. eXoDia9be1f932014-08-26 12:46:15 +020020static void print_string_hex(char *comment, unsigned char *str, size_t len)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080021{
Nguyen Anh Quynhb42a6572013-11-29 17:40:07 +080022 unsigned char *c;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080023
24 printf("%s", comment);
25 for (c = str; c < str + len; c++) {
26 printf("0x%02x ", *c & 0xff);
27 }
28
29 printf("\n");
30}
31
Nguyen Anh Quynh397d0de2013-12-16 23:37:08 +080032static void print_insn_detail(cs_insn *ins)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080033{
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +080034 int i;
Nguyen Anh Quynh54015f42014-04-10 00:02:04 +080035 cs_mips *mips;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080036
Nguyen Anh Quynh54015f42014-04-10 00:02:04 +080037 // detail can be NULL on "data" instruction if SKIPDATA option is turned ON
38 if (ins->detail == NULL)
39 return;
40
41 mips = &(ins->detail->mips);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080042 if (mips->op_count)
43 printf("\top_count: %u\n", mips->op_count);
44
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080045 for (i = 0; i < mips->op_count; i++) {
46 cs_mips_op *op = &(mips->operands[i]);
47 switch((int)op->type) {
48 default:
49 break;
50 case MIPS_OP_REG:
51 printf("\t\toperands[%u].type: REG = %s\n", i, cs_reg_name(handle, op->reg));
52 break;
53 case MIPS_OP_IMM:
54 printf("\t\toperands[%u].type: IMM = 0x%"PRIx64 "\n", i, op->imm);
55 break;
56 case MIPS_OP_MEM:
57 printf("\t\toperands[%u].type: MEM\n", i);
58 if (op->mem.base != X86_REG_INVALID)
59 printf("\t\t\toperands[%u].mem.base: REG = %s\n",
60 i, cs_reg_name(handle, op->mem.base));
61 if (op->mem.disp != 0)
62 printf("\t\t\toperands[%u].mem.disp: 0x%" PRIx64 "\n", i, op->mem.disp);
63
64 break;
65 }
66
67 }
68
69 printf("\n");
70}
71
72static void test()
73{
74//#define MIPS_CODE "\x8f\xa2\x00\x00"
75//#define MIPS_CODE "\x00\x00\xa7\xac\x10\x00\xa2\x8f"
76//#define MIPS_CODE "\x21\x30\xe6\x70" // clo $6, $7
77//#define MIPS_CODE "\x00\x00\x00\x00" // nop
78//#define MIPS_CODE "\xc6\x23\xe9\xe4" // swc1 $f9, 0x23c6($7)
79//#define MIPS_CODE "\x21\x38\x00\x01" // move $7, $8
80#define MIPS_CODE "\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56"
Nguyen Anh Quynh9f523d12013-12-06 13:49:23 +080081//#define MIPS_CODE "\x04\x11\x00\x01" // bal 0x8
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080082#define MIPS_CODE2 "\x56\x34\x21\x34\xc2\x17\x01\x00"
83
84 struct platform platforms[] = {
85 {
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010086 CS_ARCH_MIPS,
87 (cs_mode)(CS_MODE_32 + CS_MODE_BIG_ENDIAN),
88 (unsigned char *)MIPS_CODE,
89 sizeof(MIPS_CODE) - 1,
90 "MIPS-32 (Big-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080091 },
92 {
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010093 CS_ARCH_MIPS,
94 (cs_mode)(CS_MODE_64 + CS_MODE_LITTLE_ENDIAN),
95 (unsigned char *)MIPS_CODE2,
96 sizeof(MIPS_CODE2) - 1,
97 "MIPS-64-EL (Little-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080098 },
99 };
100
Nguyen Anh Quynh5df9e4b2013-12-03 15:02:12 +0800101 uint64_t address = 0x1000;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800102 cs_insn *insn;
103 int i;
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800104 size_t count;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800105
106 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) {
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800107 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
108 if (err) {
109 printf("Failed on cs_open() with error returned: %u\n", err);
Nguyen Anh Quynh49146912014-02-22 16:54:44 +0800110 continue;
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800111 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800113 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON);
114
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800115 count = cs_disasm_ex(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800116 if (count) {
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800117 size_t j;
118
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800119 printf("****************\n");
120 printf("Platform: %s\n", platforms[i].comment);
121 print_string_hex("Code:", platforms[i].code, platforms[i].size);
122 printf("Disasm:\n");
123
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800124 for (j = 0; j < count; j++) {
Nguyen Anh Quynh7b7b40c2013-12-03 12:24:06 +0800125 printf("0x%"PRIx64":\t%s\t%s\n", insn[j].address, insn[j].mnemonic, insn[j].op_str);
Nguyen Anh Quynh397d0de2013-12-16 23:37:08 +0800126 print_insn_detail(&insn[j]);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800127 }
Nguyen Anh Quynh7b7b40c2013-12-03 12:24:06 +0800128 printf("0x%"PRIx64":\n", insn[j-1].address + insn[j-1].size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800129
Nguyen Anh Quynh04c19be2013-12-25 13:26:22 +0800130 // free memory allocated by cs_disasm_ex()
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800131 cs_free(insn, count);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800132 } else {
133 printf("****************\n");
134 printf("Platform: %s\n", platforms[i].comment);
135 print_string_hex("Code:", platforms[i].code, platforms[i].size);
136 printf("ERROR: Failed to disasm given code!\n");
137 }
138
139 printf("\n");
140
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800141 cs_close(&handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800142 }
143}
144
145int main()
146{
147 test();
148
149 return 0;
150}