blob: 696b1d6602f0df0d18c1432169a2bd48ebd0b7cb [file] [log] [blame]
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08001#!/usr/bin/env python
2
3# Capstone Python bindings, by Nguyen Anh Quynnh <aquynh@gmail.com>
fenuks110ab1d2014-04-11 11:00:33 +02004from __future__ import print_function
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08005from capstone import *
6
Nguyen Anh Quynh10983292014-05-17 09:51:15 +08007
fenuks110ab1d2014-04-11 11:00:33 +02008X86_CODE16 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
9X86_CODE32 = b"\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
10X86_CODE64 = b"\x55\x48\x8b\x05\xb8\x13\x00\x00"
11ARM_CODE = b"\xED\xFF\xFF\xEB\x04\xe0\x2d\xe5\x00\x00\x00\x00\xe0\x83\x22\xe5\xf1\x02\x03\x0e\x00\x00\xa0\xe3\x02\x30\xc1\xe7\x00\x00\x53\xe3"
12ARM_CODE2 = b"\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3"
13THUMB_CODE = b"\x70\x47\xeb\x46\x83\xb0\xc9\x68"
14THUMB_CODE2 = b"\x4f\xf0\x00\x01\xbd\xe8\x00\x88"
Nguyen Anh Quynh2e40e692014-11-11 21:54:22 +080015THUMB_MCLASS = b"\xef\xf3\x02\x80"
16ARMV8 = b"\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5"
fenuks110ab1d2014-04-11 11:00:33 +020017MIPS_CODE = b"\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56"
18MIPS_CODE2 = b"\x56\x34\x21\x34\xc2\x17\x01\x00"
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +080019MIPS_32R6M = b"\x00\x07\x00\x07\x00\x11\x93\x7c\x01\x8c\x8b\x7c\x00\xc7\x48\xd0"
20MIPS_32R6 = b"\xec\x80\x00\x19\x7c\x43\x22\xa0"
Nguyen Anh Quynh51662362014-08-25 17:28:34 +080021ARM64_CODE = b"\x09\x00\x38\xd5\xbf\x40\x00\xd5\x0c\x05\x13\xd5\x20\x50\x02\x0e\x20\xe4\x3d\x0f\x00\x18\xa0\x5f\xa2\x00\xae\x9e\x9f\x37\x03\xd5\xbf\x33\x03\xd5\xdf\x3f\x03\xd5\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9\x20\x04\x81\xda\x20\x08\x02\x8b\x10\x5b\xe8\x3c"
fenuks110ab1d2014-04-11 11:00:33 +020022PPC_CODE = b"\x80\x20\x00\x00\x80\x3f\x00\x00\x10\x43\x23\x0e\xd0\x44\x00\x80\x4c\x43\x22\x02\x2d\x03\x00\x80\x7c\x43\x20\x14\x7c\x43\x20\x93\x4f\x20\x00\x21\x4c\xc8\x00\x21"
Nguyen Anh Quynh749046b2014-04-12 01:15:10 +080023SPARC_CODE = b"\x80\xa0\x40\x02\x85\xc2\x60\x08\x85\xe8\x20\x01\x81\xe8\x00\x00\x90\x10\x20\x01\xd5\xf6\x10\x16\x21\x00\x00\x0a\x86\x00\x40\x02\x01\x00\x00\x00\x12\xbf\xff\xff\x10\xbf\xff\xff\xa0\x02\x00\x09\x0d\xbf\xff\xff\xd4\x20\x60\x00\xd4\x4e\x00\x16\x2a\xc2\x80\x03"
24SPARCV9_CODE = b"\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0"
25SYSZ_CODE = b"\xed\x00\x00\x00\x00\x1a\x5a\x0f\x1f\xff\xc2\x09\x80\x00\x00\x00\x07\xf7\xeb\x2a\xff\xff\x7f\x57\xe3\x01\xff\xff\x7f\x57\xeb\x00\xf0\x00\x00\x24\xb2\x4f\x00\x78"
Nguyen Anh Quynh553bb482014-05-26 23:47:04 +080026XCORE_CODE = b"\xfe\x0f\xfe\x17\x13\x17\xc6\xfe\xec\x17\x97\xf8\xec\x4f\x1f\xfd\xec\x37\x07\xf2\x45\x5b\xf9\xfa\x02\x06\x1b\x10"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080027
28all_tests = (
Nguyen Anh Quynh46490712013-12-06 00:44:44 +080029 (CS_ARCH_X86, CS_MODE_16, X86_CODE16, "X86 16bit (Intel syntax)", 0),
30 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32bit (ATT syntax)", CS_OPT_SYNTAX_ATT),
31 (CS_ARCH_X86, CS_MODE_32, X86_CODE32, "X86 32 (Intel syntax)", 0),
32 (CS_ARCH_X86, CS_MODE_64, X86_CODE64, "X86 64 (Intel syntax)", 0),
33 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE, "ARM", 0),
34 (CS_ARCH_ARM, CS_MODE_ARM, ARM_CODE2, "ARM: Cortex-A15 + NEON", 0),
35 (CS_ARCH_ARM, CS_MODE_THUMB, THUMB_CODE, "THUMB", 0),
36 (CS_ARCH_ARM, CS_MODE_THUMB, THUMB_CODE2, "THUMB-2", 0),
Nguyen Anh Quynh2e40e692014-11-11 21:54:22 +080037 (CS_ARCH_ARM, CS_MODE_THUMB + CS_MODE_MCLASS, THUMB_MCLASS, "Thumb-MClass", 0),
38 (CS_ARCH_ARM, CS_MODE_ARM + CS_MODE_V8, ARMV8, "Arm-V8", 0),
Nguyen Anh Quynh46490712013-12-06 00:44:44 +080039 (CS_ARCH_ARM64, CS_MODE_ARM, ARM64_CODE, "ARM-64", 0),
Nguyen Anh Quynhec58a022014-11-13 11:42:38 +080040 (CS_ARCH_MIPS, CS_MODE_MIPS32 + CS_MODE_BIG_ENDIAN, MIPS_CODE, "MIPS-32 (Big-endian)", 0),
41 (CS_ARCH_MIPS, CS_MODE_MIPS64 + CS_MODE_LITTLE_ENDIAN, MIPS_CODE2, "MIPS-64-EL (Little-endian)", 0),
Nguyen Anh Quynh7e75ca62014-11-13 11:17:38 +080042 (CS_ARCH_MIPS, CS_MODE_MIPS32R6 + CS_MODE_MICRO + CS_MODE_BIG_ENDIAN, MIPS_32R6M, "MIPS-32R6 | Micro (Big-endian)", 0),
43 (CS_ARCH_MIPS, CS_MODE_MIPS32R6 + CS_MODE_BIG_ENDIAN, MIPS_32R6, "MIPS-32R6 (Big-endian)", 0),
Nguyen Anh Quynh5cd6b342014-01-05 01:07:14 +080044 (CS_ARCH_PPC, CS_MODE_BIG_ENDIAN, PPC_CODE, "PPC-64", 0),
Nguyen Anh Quynh30a9d542014-03-10 14:40:48 +080045 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN, SPARC_CODE, "Sparc", 0),
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +080046 (CS_ARCH_SPARC, CS_MODE_BIG_ENDIAN + CS_MODE_V9, SPARCV9_CODE, "SparcV9", 0),
Nguyen Anh Quynh1c8405d2014-03-23 11:17:24 +080047 (CS_ARCH_SYSZ, 0, SYSZ_CODE, "SystemZ", 0),
Nguyen Anh Quynh553bb482014-05-26 23:47:04 +080048 (CS_ARCH_XCORE, 0, XCORE_CODE, "XCore", 0),
Nguyen Anh Quynh749046b2014-04-12 01:15:10 +080049)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080050
51
Nguyen Anh Quynh7e229362014-06-03 13:14:34 +070052def print_detail(insn):
Nguyen Anh Quynh0de67832014-06-24 23:00:16 +080053 print("0x%x:\t%s\t%s // insn-ID: %u, insn-mnem: %s" \
54 % (insn.address, insn.mnemonic, insn.op_str, insn.id, \
55 insn.insn_name()))
56
Nguyen Anh Quynh7e229362014-06-03 13:14:34 +070057 # "data" instruction generated by SKIPDATA option has no detail
58 if insn.id == 0:
59 return
60
61 if len(insn.regs_read) > 0:
62 print("\tImplicit registers read: ", end=''),
63 for m in insn.regs_read:
64 print("%s " % insn.reg_name(m), end=''),
65 print()
66
67 if len(insn.regs_write) > 0:
68 print("\tImplicit registers modified: ", end=''),
69 for m in insn.regs_write:
70 print("%s " % insn.reg_name(m), end=''),
71 print()
72
73 if len(insn.groups) > 0:
Nguyen Anh Quynh4fe59952014-06-17 13:59:08 +080074 print("\tThis instruction belongs to groups: ", end=''),
Nguyen Anh Quynh7e229362014-06-03 13:14:34 +070075 for m in insn.groups:
Nguyen Anh Quynh839890b2014-10-01 10:51:18 +080076 print("%s " % insn.group_name(m), end=''),
Nguyen Anh Quynh7e229362014-06-03 13:14:34 +070077 print()
78
79
fenuks110ab1d2014-04-11 11:00:33 +020080# ## Test class Cs
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080081def test_class():
Nguyen Anh Quynh46490712013-12-06 00:44:44 +080082 for (arch, mode, code, comment, syntax) in all_tests:
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080083 print('*' * 40)
fenuks110ab1d2014-04-11 11:00:33 +020084 print("Platform: %s" % comment)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080085 print("Disasm:")
fenuks110ab1d2014-04-11 11:00:33 +020086
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080087 try:
Nguyen Anh Quynh520c3612013-12-06 15:26:07 +080088 md = Cs(arch, mode)
Nguyen Anh Quynh428fdcd2014-01-07 23:39:40 +080089 md.detail = True
Nguyen Anh Quynhc618db42013-12-04 00:05:04 +080090
Nguyen Anh Quynh46490712013-12-06 00:44:44 +080091 if syntax != 0:
92 md.syntax = syntax
Nguyen Anh Quynhc618db42013-12-04 00:05:04 +080093
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080094 for insn in md.disasm(code, 0x1000):
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080095 print_detail(insn)
96
fenuks110ab1d2014-04-11 11:00:33 +020097 print()
Nguyen Anh Quynhf1618bc2013-12-06 20:58:04 +080098 except CsError as e:
fenuks110ab1d2014-04-11 11:00:33 +020099 print("ERROR: %s" % e)
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800100
fenuks110ab1d2014-04-11 11:00:33 +0200101if __name__ == '__main__':
102 test_class()