blob: 577da9719f49e920b84985e9ec23093c1b767ceb [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>
Cr4sh19ee2d12015-03-29 18:29:06 +08006#include "../myinttypes.h"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +08007
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;
Nguyen Anh Quynhb8ce68e2013-12-03 23:45:08 +080016 cs_opt_type opt_type;
17 cs_opt_value opt_value;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080018};
19
Mr. eXoDia9be1f932014-08-26 12:46:15 +020020static void print_string_hex(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("Code: ");
25 for (c = str; c < str + len; c++) {
26 printf("0x%02x ", *c & 0xff);
27 }
28 printf("\n");
29}
30
31static void test()
32{
33#define X86_CODE16 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
34#define X86_CODE32 "\x8d\x4c\x32\x08\x01\xd8\x81\xc6\x34\x12\x00\x00"
Nguyen Anh Quynhb4ce3832013-12-06 08:06:21 +080035//#define X86_CODE32 "\x0f\xa7\xc0" // xstorerng
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080036#define X86_CODE64 "\x55\x48\x8b\x05\xb8\x13\x00\x00"
37//#define ARM_CODE "\x04\xe0\x2d\xe5"
38#define ARM_CODE "\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"
39#define ARM_CODE2 "\x10\xf1\x10\xe7\x11\xf2\x31\xe7\xdc\xa1\x2e\xf3\xe8\x4e\x62\xf3"
40#define THUMB_CODE "\x70\x47\xeb\x46\x83\xb0\xc9\x68"
41#define THUMB_CODE2 "\x4f\xf0\x00\x01\xbd\xe8\x00\x88\xd1\xe8\x00\xf0"
Nguyen Anh Quynh83466d42014-11-11 21:44:42 +080042#define THUMB_MCLASS "\xef\xf3\x02\x80"
43#define ARMV8 "\xe0\x3b\xb2\xee\x42\x00\x01\xe1\x51\xf0\x7f\xf5"
Nguyen Anh Quynh54f8cef2014-09-24 22:53:54 +080044#define MIPS_CODE "\x0C\x10\x00\x97\x00\x00\x00\x00\x24\x02\x00\x0c\x8f\xa2\x00\x00\x34\x21\x34\x56\x00\x80\x04\x08"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080045//#define MIPS_CODE "\x21\x38\x00\x01"
46//#define MIPS_CODE "\x21\x30\xe6\x70"
Nguyen Anh Quynh9d946512013-12-11 18:00:19 +080047//#define MIPS_CODE "\x1c\x00\x40\x14"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080048#define MIPS_CODE2 "\x56\x34\x21\x34\xc2\x17\x01\x00"
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +080049#define MIPS_32R6M "\x00\x07\x00\x07\x00\x11\x93\x7c\x01\x8c\x8b\x7c\x00\xc7\x48\xd0"
50#define MIPS_32R6 "\xec\x80\x00\x19\x7c\x43\x22\xa0"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080051//#define ARM64_CODE "\xe1\x0b\x40\xb9" // ldr w1, [sp, #0x8]
52//#define ARM64_CODE "\x00\x40\x21\x4b" // sub w0, w0, w1, uxtw
53//#define ARM64_CODE "\x21\x7c\x02\x9b" // mul x1, x1, x2
54//#define ARM64_CODE "\x20\x74\x0b\xd5" // dc zva, x0
Nguyen Anh Quynhad61c492013-11-30 16:23:31 +080055//#define ARM64_CODE "\x20\xfc\x02\x9b" // mneg x0, x1, x2
Nguyen Anh Quynh46a74e52014-08-25 16:47:12 +080056//#define ARM64_CODE "\x21\x7c\x02\x9b\x21\x7c\x00\x53\x00\x40\x21\x4b\xe1\x0b\x40\xb9\x10\x20\x21\x1e"
57//#define ARM64_CODE "\x21\x7c\x00\x53"
58#define ARM64_CODE "\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"
Nguyen Anh Quynhf1c2eee2013-12-02 12:29:07 +080059//#define THUMB_CODE "\x0a\xbf" // itet eq
Nguyen Anh Quynhec0ed8e2013-12-02 13:55:38 +080060//#define X86_CODE32 "\x77\x04" // ja +6
Nguyen Anh Quynh7e57e792014-09-21 13:04:50 +080061#define PPC_CODE "\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\x40\x82\x00\x14"
Nguyen Anh Quynhb8ffb862015-03-12 16:52:31 +080062#define PPC_CODE2 "\x10\x60\x2a\x10\x10\x64\x28\x88\x7c\x4a\x5d\x0f"
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +080063#define SPARC_CODE "\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"
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +080064#define SPARCV9_CODE "\x81\xa8\x0a\x24\x89\xa0\x10\x20\x89\xa0\x1a\x60\x89\xa0\x00\xe0"
Nguyen Anh Quynhda1e8332014-03-23 11:12:07 +080065#define SYSZ_CODE "\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 Quynhc80d8402014-05-26 23:02:48 +080066#define XCORE_CODE "\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 Quynhea9f4b12014-03-10 20:38:01 +080067
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080068 struct platform platforms[] = {
69 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +010070 CS_ARCH_X86,
71 CS_MODE_16,
72 (unsigned char *)X86_CODE16,
73 sizeof(X86_CODE32) - 1,
74 "X86 16bit (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080075 },
76 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +010077 CS_ARCH_X86,
78 CS_MODE_32,
79 (unsigned char *)X86_CODE32,
80 sizeof(X86_CODE32) - 1,
81 "X86 32bit (ATT syntax)",
82 CS_OPT_SYNTAX,
83 CS_OPT_SYNTAX_ATT,
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080084 },
85 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +010086 CS_ARCH_X86,
87 CS_MODE_32,
88 (unsigned char *)X86_CODE32,
89 sizeof(X86_CODE32) - 1,
90 "X86 32 (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080091 },
92 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +010093 CS_ARCH_X86,
94 CS_MODE_64,
95 (unsigned char *)X86_CODE64,
96 sizeof(X86_CODE64) - 1,
97 "X86 64 (Intel syntax)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +080098 },
99 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100100 CS_ARCH_ARM,
101 CS_MODE_ARM,
102 (unsigned char *)ARM_CODE,
103 sizeof(ARM_CODE) - 1,
104 "ARM"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800105 },
106 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100107 CS_ARCH_ARM,
108 CS_MODE_THUMB,
109 (unsigned char *)THUMB_CODE2,
110 sizeof(THUMB_CODE2) - 1,
111 "THUMB-2"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800112 },
113 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100114 CS_ARCH_ARM,
115 CS_MODE_ARM,
116 (unsigned char *)ARM_CODE2,
117 sizeof(ARM_CODE2) - 1,
118 "ARM: Cortex-A15 + NEON"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800119 },
120 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100121 CS_ARCH_ARM,
122 CS_MODE_THUMB,
123 (unsigned char *)THUMB_CODE,
124 sizeof(THUMB_CODE) - 1,
125 "THUMB"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800126 },
127 {
Nguyen Anh Quynh83466d42014-11-11 21:44:42 +0800128 CS_ARCH_ARM,
129 (cs_mode)(CS_MODE_THUMB + CS_MODE_MCLASS),
130 (unsigned char*)THUMB_MCLASS,
131 sizeof(THUMB_MCLASS) - 1,
132 "Thumb-MClass"
133 },
134 {
135 CS_ARCH_ARM,
136 (cs_mode)(CS_MODE_ARM + CS_MODE_V8),
137 (unsigned char*)ARMV8,
138 sizeof(ARMV8) - 1,
139 "Arm-V8"
140 },
141 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100142 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +0800143 (cs_mode)(CS_MODE_MIPS32 + CS_MODE_BIG_ENDIAN),
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100144 (unsigned char *)MIPS_CODE,
145 sizeof(MIPS_CODE) - 1,
146 "MIPS-32 (Big-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800147 },
148 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100149 CS_ARCH_MIPS,
Nguyen Anh Quynh84df6002014-11-13 11:27:51 +0800150 (cs_mode)(CS_MODE_MIPS64 + CS_MODE_LITTLE_ENDIAN),
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100151 (unsigned char *)MIPS_CODE2,
152 sizeof(MIPS_CODE2) - 1,
153 "MIPS-64-EL (Little-endian)"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800154 },
155 {
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800156 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800157 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_MICRO + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800158 (unsigned char*)MIPS_32R6M,
159 sizeof(MIPS_32R6M) - 1,
160 "MIPS-32R6 | Micro (Big-endian)"
161 },
162 {
163 CS_ARCH_MIPS,
Nguyen Anh Quynh0d97a3b2014-11-13 11:12:52 +0800164 (cs_mode)(CS_MODE_MIPS32R6 + CS_MODE_BIG_ENDIAN),
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800165 (unsigned char*)MIPS_32R6,
166 sizeof(MIPS_32R6) - 1,
Nguyen Anh Quynh248519e2014-11-09 14:07:07 +0800167 "MIPS-32R6 (Big-endian)"
Nguyen Anh Quynh5720cb72014-10-29 22:35:02 +0800168 },
169 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100170 CS_ARCH_ARM64,
171 CS_MODE_ARM,
172 (unsigned char *)ARM64_CODE,
173 sizeof(ARM64_CODE) - 1,
174 "ARM-64"
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800175 },
Nguyen Anh Quynhf1d489b2014-01-05 00:00:05 +0800176 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100177 CS_ARCH_PPC,
178 CS_MODE_BIG_ENDIAN,
179 (unsigned char*)PPC_CODE,
180 sizeof(PPC_CODE) - 1,
181 "PPC-64"
Nguyen Anh Quynhf1d489b2014-01-05 00:00:05 +0800182 },
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800183 {
Nguyen Anh Quynhb8ffb862015-03-12 16:52:31 +0800184 CS_ARCH_PPC,
185 CS_MODE_BIG_ENDIAN + CS_MODE_QPX,
186 (unsigned char*)PPC_CODE2,
187 sizeof(PPC_CODE2) - 1,
188 "PPC-64 + QPX",
189 },
190 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100191 CS_ARCH_SPARC,
192 CS_MODE_BIG_ENDIAN,
193 (unsigned char*)SPARC_CODE,
194 sizeof(SPARC_CODE) - 1,
195 "Sparc"
Nguyen Anh Quynh05e27132014-03-10 11:58:57 +0800196 },
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +0800197 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100198 CS_ARCH_SPARC,
199 (cs_mode)(CS_MODE_BIG_ENDIAN + CS_MODE_V9),
200 (unsigned char*)SPARCV9_CODE,
201 sizeof(SPARCV9_CODE) - 1,
202 "SparcV9"
Nguyen Anh Quynhea9f4b12014-03-10 20:38:01 +0800203 },
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800204 {
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100205 CS_ARCH_SYSZ,
206 (cs_mode)0,
207 (unsigned char*)SYSZ_CODE,
208 sizeof(SYSZ_CODE) - 1,
209 "SystemZ"
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800210 },
Nguyen Anh Quynhc80d8402014-05-26 23:02:48 +0800211 {
212 CS_ARCH_XCORE,
213 (cs_mode)0,
214 (unsigned char*)XCORE_CODE,
215 sizeof(XCORE_CODE) - 1,
216 "XCore"
217 },
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800218 };
219
220 csh handle;
Nguyen Anh Quynh5df9e4b2013-12-03 15:02:12 +0800221 uint64_t address = 0x1000;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800222 cs_insn *all_insn;
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100223 cs_detail *detail;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800224 int i;
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800225 size_t count;
Nguyen Anh Quynh655c7022014-04-11 12:15:33 +0800226 cs_err err;
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800227
228 for (i = 0; i < sizeof(platforms)/sizeof(platforms[0]); i++) {
Nguyen Anh Quynh48a14ca2014-03-23 08:35:45 +0800229 printf("****************\n");
230 printf("Platform: %s\n", platforms[i].comment);
Nguyen Anh Quynh655c7022014-04-11 12:15:33 +0800231 err = cs_open(platforms[i].arch, platforms[i].mode, &handle);
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800232 if (err) {
233 printf("Failed on cs_open() with error returned: %u\n", err);
Nguyen Anh Quynh49146912014-02-22 16:54:44 +0800234 continue;
Nguyen Anh Quynhceae16d2014-01-19 16:04:23 +0800235 }
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800236
Nguyen Anh Quynhb8ce68e2013-12-03 23:45:08 +0800237 if (platforms[i].opt_type)
238 cs_option(handle, platforms[i].opt_type, platforms[i].opt_value);
Nguyen Anh Quynh01aba002013-12-03 21:00:09 +0800239
Nguyen Anh Quynh39b812d2014-01-07 23:36:26 +0800240 cs_option(handle, CS_OPT_DETAIL, CS_OPT_ON);
Nguyen Anh Quynh4d3e8522013-12-14 10:45:09 +0800241
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800242 count = cs_disasm(handle, platforms[i].code, platforms[i].size, address, 0, &all_insn);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800243 if (count) {
Nguyen Anh Quynh5b556e52014-04-11 10:15:26 +0800244 size_t j;
245 int n;
246
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800247 print_string_hex(platforms[i].code, platforms[i].size);
248 printf("Disasm:\n");
249
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800250 for (j = 0; j < count; j++) {
251 cs_insn *i = &(all_insn[j]);
Nguyen Anh Quynh723687e2013-11-29 22:36:45 +0800252 printf("0x%"PRIx64":\t%s\t\t%s // insn-ID: %u, insn-mnem: %s\n",
Nguyen Anh Quynh7b7b40c2013-12-03 12:24:06 +0800253 i->address, i->mnemonic, i->op_str,
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800254 i->id, cs_insn_name(handle, i->id));
255
256 // print implicit registers used by this instruction
Axel 0vercl0k Souchetd3eb98b2014-05-09 21:28:07 +0100257 detail = i->detail;
Nguyen Anh Quynh54015f42014-04-10 00:02:04 +0800258
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800259 if (detail->regs_read_count > 0) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800260 printf("\tImplicit registers read: ");
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800261 for (n = 0; n < detail->regs_read_count; n++) {
262 printf("%s ", cs_reg_name(handle, detail->regs_read[n]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800263 }
264 printf("\n");
265 }
266
267 // print implicit registers modified by this instruction
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800268 if (detail->regs_write_count > 0) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800269 printf("\tImplicit registers modified: ");
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800270 for (n = 0; n < detail->regs_write_count; n++) {
271 printf("%s ", cs_reg_name(handle, detail->regs_write[n]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800272 }
273 printf("\n");
274 }
275
276 // print the groups this instruction belong to
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800277 if (detail->groups_count > 0) {
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800278 printf("\tThis instruction belongs to groups: ");
Nguyen Anh Quynhf122ae02014-01-05 21:45:30 +0800279 for (n = 0; n < detail->groups_count; n++) {
Nguyen Anh Quynh839890b2014-10-01 10:51:18 +0800280 printf("%s ", cs_group_name(handle, detail->groups[n]));
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800281 }
282 printf("\n");
283 }
284 }
285
286 // print out the next offset, after the last insn
Nguyen Anh Quynh7b7b40c2013-12-03 12:24:06 +0800287 printf("0x%"PRIx64":\n", all_insn[j-1].address + all_insn[j-1].size);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800288
Nguyen Anh Quynh0beb0d42014-08-27 22:55:29 +0800289 // free memory allocated by cs_disasm()
Nguyen Anh Quynh4fe224b2013-12-24 16:49:36 +0800290 cs_free(all_insn, count);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800291 } else {
292 printf("****************\n");
293 printf("Platform: %s\n", platforms[i].comment);
294 print_string_hex(platforms[i].code, platforms[i].size);
295 printf("ERROR: Failed to disasm given code!\n");
296 }
297
298 printf("\n");
299
Nguyen Anh Quynh226d7dc2014-02-27 22:20:39 +0800300 cs_close(&handle);
Nguyen Anh Quynh26ee41a2013-11-27 12:11:31 +0800301 }
302}
303
304int main()
305{
306 test();
307
308 return 0;
309}