blob: aef12281b8c7807c78c950c8cc703837fcfc80a3 [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>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08006
tandasat45e5eab2016-05-11 21:48:32 -07007#include <capstone/platform.h>
pancake9c10ace2015-02-24 04:55:55 +01008#include <capstone/capstone.h>
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08009
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:
tandasat45e5eab2016-05-11 21:48:32 -070054 printf("\t\toperands[%u].type: IMM = 0x%" PRIx64 "\n", i, op->imm);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080055 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"
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +080083#define MIPS_32R6M "\x00\x07\x00\x07\x00\x11\x93\x7c\x01\x8c\x8b\x7c\x00\xc7\x48\xd0"
84#define MIPS_32R6 "\xec\x80\x00\x19\x7c\x43\x22\xa0"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080085
86 struct platform platforms[] = {
87 {
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010088 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +080089 (cs_mode)(CS_MODE_MIPS32 + CS_MODE_BIG_ENDIAN),
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010090 (unsigned char *)MIPS_CODE,
91 sizeof(MIPS_CODE) - 1,
92 "MIPS-32 (Big-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080093 },
94 {
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010095 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +080096 (cs_mode)(CS_MODE_MIPS64 + CS_MODE_LITTLE_ENDIAN),
Axel 0vercl0k Soucheta0724592014-05-09 21:14:19 +010097 (unsigned char *)MIPS_CODE2,
98 sizeof(MIPS_CODE2) - 1,
99 "MIPS-64-EL (Little-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800100 },
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800101 {
102 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800103 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_MICRO + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800104 (unsigned char*)MIPS_32R6M,
105 sizeof(MIPS_32R6M) - 1,
106 "MIPS-32R6 | Micro (Big-endian)"
107 },
108 {
109 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800110 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800111 (unsigned char*)MIPS_32R6,
112 sizeof(MIPS_32R6) - 1,
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800113 "MIPS-32R6 (Big-endian)"
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800114 },
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800115 };
116
Nguyen Anh Quynh5df9e4b2013-12-03 15:02:12 +0800117 uint64_t address = 0x1000;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800118 cs_insn *insn;
119 int i;
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800120 size_t count;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800121
122 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) {
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800123 cs_err err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
124 if (err) {
125 printf("Failed on cs_open() with error returned: %u\n", err);
Yegor Derevenets50c352c2015-05-30 21:10:23 +0200126 abort();
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800127 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800128
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800129 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON);
130
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800131 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800132 if (count) {
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800133 size_t j;
134
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800135 printf("****************\n");
136 printf("Platform: %s\n", platforms[i].comment);
137 print_string_hex("Code:", platforms[i].code, platforms[i].size);
138 printf("Disasm:\n");
139
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800140 for (j = 0; j < count; j++) {
tandasat45e5eab2016-05-11 21:48:32 -0700141 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 +0800142 print_insn_detail(&insn[j]);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800143 }
tandasat45e5eab2016-05-11 21:48:32 -0700144 printf("0x%" PRIx64 ":\n", insn[j-1].address + insn[j-1].size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800145
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800146 // free memory allocated by cs_disasm()
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800147 cs_free(insn, count);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800148 } else {
149 printf("****************\n");
150 printf("Platform: %s\n", platforms[i].comment);
151 print_string_hex("Code:", platforms[i].code, platforms[i].size);
152 printf("ERROR: Failed to disasm given code!\n");
Yegor Derevenets50c352c2015-05-30 21:10:23 +0200153 abort();
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800154 }
155
156 printf("\n");
157
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800158 cs_close(&handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800159 }
160}
161
162int main()
163{
164 test();
165
166 return 0;
167}