plugin: more aggressive name change to avoid conflicts
[ia32rtools.git] / ida / saveasm / saveasm.cpp
CommitLineData
fc1c61f5 1/*
2 * ia32rtools
ee554c95 3 * (C) notaz, 2013-2015
fc1c61f5 4 *
5 * This work is licensed under the terms of 3-clause BSD license.
6 * See COPYING file in the top-level directory.
7 */
8
d8891fcc 9#define NO_OBSOLETE_FUNCS
10#include <ida.hpp>
11#include <idp.hpp>
12#include <bytes.hpp>
13#include <loader.hpp>
14#include <kernwin.hpp>
15
16#include <name.hpp>
17#include <frame.hpp>
18#include <struct.hpp>
fc1c61f5 19#include <offset.hpp>
d8891fcc 20#include <auto.hpp>
15c7b2a4 21#include <intel.hpp>
d8891fcc 22
23#define IS_START(w, y) !strncmp(w, y, strlen(y))
24#define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
25
97609f07 26static char **name_cache;
27static size_t name_cache_size;
28
15c7b2a4 29// non-local branch targets
30static ea_t *nonlocal_bt;
31static int nonlocal_bt_alloc;
32static int nonlocal_bt_cnt;
33
d8891fcc 34//--------------------------------------------------------------------------
35static int idaapi init(void)
36{
37 return PLUGIN_OK;
38}
39
40//--------------------------------------------------------------------------
41static void idaapi term(void)
42{
97609f07 43 size_t i;
44
15c7b2a4 45 if (nonlocal_bt != NULL) {
46 free(nonlocal_bt);
47 nonlocal_bt = NULL;
48 }
49 nonlocal_bt_alloc = 0;
97609f07 50
51 if (name_cache != NULL) {
52 for (i = 0; i < name_cache_size; i++)
53 free(name_cache[i]);
54 free(name_cache);
55 name_cache = NULL;
56 }
57 name_cache_size = 0;
d8891fcc 58}
59
60//--------------------------------------------------------------------------
61
62static const char *reserved_names[] = {
63 "name",
b587e6ae 64 "type",
d8891fcc 65 "offset",
b587e6ae 66 "aam",
e74324f9 67 "aas",
1402b79d 68 "text",
de8a204c 69 "size",
70 "c",
97609f07 71 "align",
e74324f9 72 "addr",
d8891fcc 73};
74
75static int is_name_reserved(const char *name)
76{
77 int i;
78 for (i = 0; i < ARRAY_SIZE(reserved_names); i++)
79 if (strcasecmp(name, reserved_names[i]) == 0)
80 return 1;
81
82 return 0;
83}
84
ee554c95 85/* these tend to cause linker conflicts */
86static const char *useless_names[] = {
87 "target", "addend", "lpMem", "Locale", "lpfn",
88 "CodePage", "uNumber", "Caption", "Default", "SubKey",
89 "ValueName", "OutputString", "LibFileName", "AppName",
90 "Buffer", "ClassName", "dwProcessId", "FileName",
91 "aExp", "aLog10", "aDelete", "aFont",
92 "lpCriticalSection", "CriticalSection", "lpAddress",
93 "lpBuffer", "lpClassName", "lpName",
94 "hHeap", "hEvent", "hHandle", "hObject",
95 "hLibModule", "hInstance",
96};
97
98static int is_name_useless(const char *name)
99{
100 int i;
101 for (i = 0; i < ARRAY_SIZE(useless_names); i++)
102 if (strcasecmp(name, useless_names[i]) == 0)
103 return 1;
104
105 return 0;
106}
107
15c7b2a4 108static int nonlocal_bt_cmp(const void *p1, const void *p2)
109{
110 const ea_t *e1 = (const ea_t *)p1, *e2 = (const ea_t *)p2;
111 return *e1 - *e2;
112}
113
114static void nonlocal_add(ea_t ea)
115{
116 if (nonlocal_bt_cnt >= nonlocal_bt_alloc) {
117 nonlocal_bt_alloc += nonlocal_bt_alloc * 2 + 64;
118 nonlocal_bt = (ea_t *)realloc(nonlocal_bt,
119 nonlocal_bt_alloc * sizeof(nonlocal_bt[0]));
120 if (nonlocal_bt == NULL) {
121 msg("OOM\n");
122 return;
123 }
124 }
125 nonlocal_bt[nonlocal_bt_cnt++] = ea;
126}
127
b587e6ae 128// is instruction a (un)conditional jump (not call)?
129static int is_insn_jmp(uint16 itype)
130{
131 return itype == NN_jmp || (NN_ja <= itype && itype <= NN_jz);
132}
133
d53d4cc7 134static void do_def_line(char *buf, size_t buf_size, const char *line,
e74324f9 135 ea_t ea, func_t *func)
d8891fcc 136{
e74324f9 137 char func_name[256] = "<nf>";
138 int is_libfunc = 0;
139 int global_label;
d53d4cc7 140 ea_t *ea_ret;
e74324f9 141 int i, len;
d53d4cc7 142 char *p;
d8891fcc 143
144 tag_remove(line, buf, buf_size); // remove color codes
145 len = strlen(buf);
146 if (len < 9) {
147 buf[0] = 0;
148 return;
149 }
150 memmove(buf, buf + 9, len - 9 + 1); // rm address
15c7b2a4 151
d53d4cc7 152 p = buf;
153 while (*p && *p != ' ' && *p != ':')
154 p++;
155 if (*p == ':') {
156 ea_ret = (ea_t *)bsearch(&ea, nonlocal_bt, nonlocal_bt_cnt,
157 sizeof(nonlocal_bt[0]), nonlocal_bt_cmp);
e74324f9 158 global_label = (ea_ret != NULL);
159 if (!global_label) {
160 if (func != NULL) {
161 get_func_name(ea, func_name, sizeof(func_name));
162 is_libfunc = func->flags & FUNC_LIB;
163 }
164 for (i = 0; i < get_item_size(ea); i++) {
165 xrefblk_t xb;
166 if (xb.first_to(ea + i, XREF_DATA)) {
167 if (!is_libfunc && xb.type == dr_O)
168 msg("%x: offset xref in %s\n", ea, func_name);
169 global_label = 1;
170 }
171 }
172 }
173 if (global_label) {
d53d4cc7 174 if (p[1] != ' ')
175 msg("no trailing blank in '%s'\n", buf);
176 else
177 p[1] = ':';
15c7b2a4 178 }
179 }
d8891fcc 180}
181
97609f07 182static int name_cache_cmp(const void *p1, const void *p2)
183{
184 // masm ignores case, so do we
185 return stricmp(*(char * const *)p1, *(char * const *)p2);
186}
187
188static void rebuild_name_cache(void)
189{
190 size_t i, newsize;
191 void *tmp;
192
193 // build a sorted name cache
194 newsize = get_nlist_size();
195 if (newsize > name_cache_size) {
196 tmp = realloc(name_cache, newsize * sizeof(name_cache[0]));
197 if (tmp == NULL) {
198 msg("OOM for name cache\n");
199 return;
200 }
201 name_cache = (char **)tmp;
202 }
203 for (i = 0; i < name_cache_size; i++)
204 free(name_cache[i]);
205 for (i = 0; i < newsize; i++)
206 name_cache[i] = strdup(get_nlist_name(i));
207
208 name_cache_size = newsize;
209 qsort(name_cache, name_cache_size, sizeof(name_cache[0]),
210 name_cache_cmp);
211}
212
213static void my_rename(ea_t ea, char *name)
214{
215 char buf[256];
216 char *p, **pp;
217 int n = 0;
218
219 qsnprintf(buf, sizeof(buf), "%s", name);
220 do {
221 p = buf;
222 pp = (char **)bsearch(&p, name_cache, name_cache_size,
223 sizeof(name_cache[0]), name_cache_cmp);
224 if (pp == NULL)
225 break;
226
227 qsnprintf(buf, sizeof(buf), "%s_g%d", name, n);
228 n++;
229 }
230 while (n < 100);
231
232 if (n == 100)
233 msg("rename failure? '%s'\n", name);
234
235 do_name_anyway(ea, buf);
236 rebuild_name_cache();
237}
238
ee8e1bea 239static void make_align(ea_t ea)
240{
241 ea_t tmp_ea;
242 int n;
243
244 tmp_ea = next_head(ea, inf.maxEA);
245 if ((tmp_ea & 0x03) == 0) {
246 n = calc_max_align(tmp_ea);
247 if (n > 4) // masm doesn't like more..
248 n = 4;
249 msg("%x: align %d\n", ea, 1 << n);
250 do_unknown(ea, DOUNK_SIMPLE);
251 doAlign(ea, tmp_ea - ea, n);
252 }
253}
254
d8891fcc 255static void idaapi run(int /*arg*/)
256{
15c7b2a4 257 // isEnabled(ea) // address belongs to disassembly
d8891fcc 258 // ea_t ea = get_screen_ea();
ee8e1bea 259 // extern foo;
15c7b2a4 260 // foo = DecodeInstruction(ScreenEA());
d8891fcc 261 FILE *fout = NULL;
262 int fout_line = 0;
263 char buf[MAXSTR];
1caf86bb 264 char buf2[MAXSTR];
b587e6ae 265 const char *name;
3a0df310 266 const char *cp;
d8891fcc 267 struc_t *frame;
268 func_t *func;
15c7b2a4 269 ea_t ui_ea_block = 0, ea_size;
270 ea_t tmp_ea, target_ea;
d8891fcc 271 ea_t ea;
b587e6ae 272 flags_t ea_flags;
1caf86bb 273 uval_t idx;
d8891fcc 274 int i, o, m, n;
275 int ret;
97609f07 276 char **pp;
d8891fcc 277 char *p;
278
15c7b2a4 279 nonlocal_bt_cnt = 0;
280
1caf86bb 281 // get rid of structs, masm doesn't understand them
282 idx = get_first_struc_idx();
283 while (idx != BADNODE) {
284 tid_t tid = get_struc_by_idx(idx);
285 struc_t *struc = get_struc(tid);
286 get_struc_name(tid, buf, sizeof(buf));
287 msg("removing struct '%s'\n", buf);
288 //del_struc_members(struc, 0, get_max_offset(struc));
289 del_struc(struc);
290
291 idx = get_first_struc_idx();
292 }
293
97609f07 294 rebuild_name_cache();
295
15c7b2a4 296 // 1st pass: walk through all funcs
97609f07 297 ea = inf.minEA;
298 func = get_func(ea);
d8891fcc 299 while (func != NULL)
300 {
15c7b2a4 301 func_tail_iterator_t fti(func);
302 if (!fti.main()) {
303 msg("%x: func_tail_iterator_t main failed\n", ea);
304 return;
305 }
306 const area_t &f_area = fti.chunk();
307 ea = f_area.startEA;
308
309 // rename global syms which conflict with frame member names
d8891fcc 310 frame = get_frame(func);
311 if (frame != NULL)
312 {
313 for (m = 0; m < (int)frame->memqty; m++)
314 {
315 ret = get_member_name(frame->members[m].id, buf, sizeof(buf));
316 if (ret <= 0) {
317 msg("%x: member has no name?\n", ea);
318 return;
319 }
320 if (buf[0] == ' ') // what's this?
321 continue;
322 if (IS_START(buf, "arg_") || IS_START(buf, "var_"))
323 continue;
324
1caf86bb 325 // check for dupe names
326 int m1, dupe = 0;
327 for (m1 = 0; m1 < m; m1++) {
328 get_member_name(frame->members[m1].id, buf2, sizeof(buf2));
329 if (stricmp(buf, buf2) == 0)
330 dupe = 1;
331 }
332
333 if (is_name_reserved(buf) || dupe) {
d8891fcc 334 msg("%x: renaming '%s'\n", ea, buf);
335 qstrncat(buf, "_", sizeof(buf));
336 ret = set_member_name(frame, frame->members[m].soff, buf);
337 if (!ret) {
338 msg("%x: renaming failed\n", ea);
339 return;
340 }
341 }
342
97609f07 343 p = buf;
344 pp = (char **)bsearch(&p, name_cache, name_cache_size,
345 sizeof(name_cache[0]), name_cache_cmp);
346 if (pp == NULL)
d8891fcc 347 continue;
348
97609f07 349 tmp_ea = get_name_ea(BADADDR, *pp);
350 msg("%x: renaming '%s' because of '%s' at %x\n",
351 tmp_ea, *pp, buf, ea);
352 my_rename(tmp_ea, *pp);
d8891fcc 353 }
354 }
355
a84bddd1 356 // detect tailcalls to next func with 'jmp $+5' (offset 0)
357 if (f_area.endEA - f_area.startEA >= 5
358 && decode_insn(f_area.endEA - 5) && cmd.itype == NN_jmp
359 && cmd.Operands[0].type == o_near
360 && cmd.Operands[0].addr == f_area.endEA
361 && get_name(BADADDR, f_area.endEA, buf, sizeof(buf))
362 && get_cmt(f_area.endEA - 5, false, buf2, sizeof(buf2)) <= 0)
363 {
364 qsnprintf(buf2, sizeof(buf2), "sctpatch: jmp %s", buf);
365 set_cmt(f_area.endEA - 5, buf2, false);
366 }
367
d8891fcc 368 func = get_next_func(ea);
15c7b2a4 369 }
370
b587e6ae 371 // 2nd pass over whole .text and .(ro)data segments
15c7b2a4 372 for (ea = inf.minEA; ea != BADADDR; ea = next_head(ea, inf.maxEA))
373 {
374 segment_t *seg = getseg(ea);
b587e6ae 375 if (!seg)
376 break;
377 if (seg->type == SEG_XTRN)
378 continue;
379 if (seg->type != SEG_CODE && seg->type != SEG_DATA)
15c7b2a4 380 break;
381
b587e6ae 382 ea_flags = get_flags_novalue(ea);
15c7b2a4 383 func = get_func(ea);
384 if (isCode(ea_flags))
385 {
386 if (!decode_insn(ea)) {
387 msg("%x: decode_insn() failed\n", ea);
388 continue;
389 }
390
b587e6ae 391 // masm doesn't understand IDA's float/xmm types
392 if (cmd.itype == NN_fld || cmd.itype == NN_fst
393 || cmd.itype == NN_movapd || cmd.itype == NN_movlpd)
394 {
395 for (o = 0; o < UA_MAXOP; o++) {
396 if (cmd.Operands[o].type == o_void)
397 break;
398
399 if (cmd.Operands[o].type == o_mem) {
400 tmp_ea = cmd.Operands[o].addr;
11437ea1 401 flags_t tmp_flg = get_flags_novalue(tmp_ea);
402 buf[0] = 0;
403 if (isDouble(tmp_flg))
feb0ee5d 404 {
b587e6ae 405 get_name(ea, tmp_ea, buf, sizeof(buf));
11437ea1 406 msg("%x: converting dbl %x '%s'\n", ea, tmp_ea, buf);
407 doQwrd(tmp_ea, 8);
408 }
409 if (isOwrd(tmp_flg) || isYwrd(tmp_flg) || isTbyt(tmp_flg))
410 {
411 get_name(ea, tmp_ea, buf, sizeof(buf));
412 msg("%x: undefining lrg %x '%s'\n", ea, tmp_ea, buf);
b587e6ae 413 do_unknown(tmp_ea, DOUNK_EXPAND);
414 }
415 }
416 }
417 }
1caf86bb 418 else if (cmd.itype == NN_lea) {
fc1c61f5 419 // detect code alignment
1caf86bb 420 if (cmd.Operands[0].reg == cmd.Operands[1].reg
421 && cmd.Operands[1].type == o_displ
422 && cmd.Operands[1].addr == 0)
423 {
ee8e1bea 424 // lea eax, [eax+0]
425 make_align(ea);
1caf86bb 426 }
fc1c61f5 427 else if (!isDefArg1(ea_flags)
428 && cmd.Operands[1].type == o_mem // why o_mem?
429 && cmd.Operands[1].dtyp == dt_dword)
430 {
431 if (inf.minEA <= cmd.Operands[1].addr
432 && cmd.Operands[1].addr < inf.maxEA)
433 {
434 // lea to segments, like ds:58D6A8h[edx*8]
435 msg("%x: lea offset to %x\n", ea, cmd.Operands[1].addr);
436 op_offset(ea, 1, REF_OFF32);
437 }
438 else
439 {
440 // ds:0[eax*8] -> [eax*8+0]
441 msg("%x: dropping ds: for %x\n", ea, cmd.Operands[1].addr);
442 op_hex(ea, 1);
443 }
444 }
1caf86bb 445 }
ee8e1bea 446 else if (cmd.itype == NN_mov && cmd.segpref == 0x1e // 2e?
447 && cmd.Operands[0].type == o_reg
448 && cmd.Operands[1].type == o_reg
449 && cmd.Operands[0].dtyp == cmd.Operands[1].dtyp
450 && cmd.Operands[0].reg == cmd.Operands[1].reg)
451 {
452 // db 2Eh; mov eax, eax
453 make_align(ea);
454 }
b587e6ae 455
15c7b2a4 456 // find non-local branches
b587e6ae 457 if (is_insn_jmp(cmd.itype) && cmd.Operands[0].type == o_near)
15c7b2a4 458 {
459 target_ea = cmd.Operands[0].addr;
460 if (func == NULL)
461 nonlocal_add(target_ea);
462 else {
463 ret = get_func_chunknum(func, target_ea);
464 if (ret != 0) {
465 // a jump to another func or chunk
466 // check if it lands on func start
467 if (!isFunc(get_flags_novalue(target_ea)))
468 nonlocal_add(target_ea);
469 }
470 }
471 }
472 }
473 else { // not code
1caf86bb 474 int do_undef = 0;
475 ea_size = get_item_size(ea);
476
15c7b2a4 477 if (func == NULL && isOff0(ea_flags)) {
15c7b2a4 478 for (tmp_ea = 0; tmp_ea < ea_size; tmp_ea += 4)
479 nonlocal_add(get_long(ea + tmp_ea));
480 }
b587e6ae 481
482 // IDA vs masm float/mmx/xmm type incompatibility
11437ea1 483 if (isDouble(ea_flags))
484 {
485 msg("%x: converting double\n", ea);
486 doQwrd(ea, 8);
487 }
488 else if (isTbyt(ea_flags) || isPackReal(ea_flags))
b587e6ae 489 {
1caf86bb 490 do_undef = 1;
491 }
492 else if (isOwrd(ea_flags)) {
b587e6ae 493 buf[0] = 0;
494 get_name(BADADDR, ea, buf, sizeof(buf));
1caf86bb 495 if (IS_START(buf, "xmm"))
496 do_undef = 1;
497 }
498 // masm doesn't understand IDA's unicode
499 else if (isASCII(ea_flags) && ea_size >= 4
500 && (get_long(ea) & 0xff00ff00) == 0) // lame..
501 {
502 do_undef = 1;
503 }
504 // masm doesn't understand large aligns
e74324f9 505 else if (isAlign(ea_flags) && ea_size >= 0x10)
506 {
1caf86bb 507 msg("%x: undefining align %d\n", ea, ea_size);
b587e6ae 508 do_unknown(ea, DOUNK_EXPAND);
509 }
1caf86bb 510
511 if (do_undef) {
b587e6ae 512 buf[0] = 0;
513 get_name(BADADDR, ea, buf, sizeof(buf));
1caf86bb 514 msg("%x: undefining '%s'\n", ea, buf);
515 do_unknown(ea, DOUNK_EXPAND);
b587e6ae 516 }
517 }
518 }
519
e74324f9 520 // check namelist for reserved names and
ee554c95 521 // matching names with different case (masm ignores case)
b587e6ae 522 n = get_nlist_size();
523 for (i = 0; i < n; i++) {
ee554c95 524 int need_rename = 0;
525
b587e6ae 526 ea = get_nlist_ea(i);
ee554c95 527 ea_flags = get_flags_novalue(ea);
b587e6ae 528 name = get_nlist_name(i);
529 if (name == NULL) {
530 msg("%x: null name?\n", ea);
531 continue;
532 }
ee554c95 533
e74324f9 534 qsnprintf(buf, sizeof(buf), "%s", name);
535
ee554c95 536 // for short names, give them a postfix to solve link dupe problem
537 if (!isCode(ea_flags) && strlen(name) <= 4) {
538 qsnprintf(buf, sizeof(buf), "%s_%06X", name, ea);
539 need_rename = 1;
540 }
541 else {
542 qsnprintf(buf2, sizeof(buf2), "%s", name);
543 if ((p = strchr(buf2, '_')))
544 *p = 0;
545 if (is_name_useless(buf2)) {
546 msg("%x: removing name '%s'\n", ea, name);
547 ret = set_name(ea, "", SN_AUTO);
548 if (ret) {
549 n = get_nlist_size();
550 i--;
551 continue;
552 }
553 }
554 }
555
556 need_rename |= is_name_reserved(name);
e74324f9 557 if (!need_rename) {
558 p = buf;
559 pp = (char **)bsearch(&p, name_cache, name_cache_size,
560 sizeof(name_cache[0]), name_cache_cmp);
561 if (pp != NULL) {
562 if (pp > name_cache && stricmp(pp[-1], pp[0]) == 0)
563 need_rename = 1;
564 else if (pp < name_cache + name_cache_size - 1
565 && stricmp(pp[0], pp[1]) == 0)
566 {
567 need_rename = 1;
568 }
569 }
570 }
b587e6ae 571
b25f320a 572 // rename vars with '?@' (funcs are ok)
573 int change_qat = 0;
3a0df310 574 if (!isCode(ea_flags)) {
9bbecbfb 575 if (IS_START(name, "__imp_"))
ee554c95 576 need_rename = 0; /* some import */
9bbecbfb 577 else if (name[0] == '?' && strstr(name, "@@"))
ee554c95 578 need_rename = 0; /* c++ import */
9bbecbfb 579 else if (strchr(name, '?'))
3a0df310 580 change_qat = 1;
581 else if ((cp = strchr(name, '@'))) {
582 char *endp = NULL;
583 strtol(cp + 1, &endp, 10);
584 if (endp == NULL || *endp != 0)
585 change_qat = 1;
586 }
587 }
b25f320a 588
e74324f9 589 if (need_rename || change_qat) {
b587e6ae 590 msg("%x: renaming name '%s'\n", ea, name);
b25f320a 591
592 if (change_qat) {
593 for (p = buf; *p != 0; p++) {
594 if (*p == '?' || *p == '@') {
595 qsnprintf(buf2, sizeof(buf2), "%02x", (unsigned char)*p);
596 memmove(p + 1, p, strlen(p) + 1);
597 memcpy(p, buf2, 2);
598 }
599 }
600 }
601
97609f07 602 my_rename(ea, buf);
15c7b2a4 603 }
604 }
605
606 if (nonlocal_bt_cnt > 1) {
607 qsort(nonlocal_bt, nonlocal_bt_cnt,
608 sizeof(nonlocal_bt[0]), nonlocal_bt_cmp);
d8891fcc 609 }
610
611 char *fname = askfile_c(1, NULL, "Save asm file");
612 if (fname == NULL)
613 return;
614 fout = qfopen(fname, "w");
615 if (fout == NULL) {
616 msg("couldn't open '%s'\n", fname);
617 return;
618 }
619
620 show_wait_box("Saving..");
621
622 // deal with the beginning
623 ea = inf.minEA;
624 int flags = 0; // calc_default_idaplace_flags();
625 linearray_t ln(&flags);
626 idaplace_t pl;
627 pl.ea = ea;
628 pl.lnnum = 0;
629 ln.set_place(&pl);
630 n = ln.get_linecnt();
631 for (i = 0; i < n - 1; i++) {
e74324f9 632 do_def_line(buf, sizeof(buf), ln.down(), ea, NULL);
d8891fcc 633 if (strstr(buf, "include"))
634 continue;
635
636 fout_line++;
637 qfprintf(fout, "%s\n", buf);
638 p = strstr(buf, ".mmx");
639 if (p != NULL) {
640 memcpy(p, ".xmm", 4);
641 fout_line++;
642 qfprintf(fout, "%s\n", buf);
1402b79d 643 continue;
644 }
645 p = strstr(buf, ".model");
646 if (p != NULL) {
647 qstrncpy(p, "include imports.inc", sizeof(buf) - (p - buf));
648 fout_line++;
649 qfprintf(fout, "\n%s\n", buf);
de8a204c 650 i++;
651 break;
d8891fcc 652 }
653 }
b587e6ae 654 pl.lnnum = i;
d8891fcc 655
656 for (;;)
657 {
94cd6e34 658 int drop_large = 0, do_rva = 0, set_scale = 0, jmp_near = 0;
ed6ebb48 659 int word_imm = 0, dword_imm = 0, do_pushf = 0, do_nops = 0;
15c7b2a4 660
d8891fcc 661 if ((ea >> 14) != ui_ea_block) {
662 ui_ea_block = ea >> 14;
663 showAddr(ea);
664 if (wasBreak())
665 break;
666 }
667
e74324f9 668 func = get_func(ea);
669
d8891fcc 670 segment_t *seg = getseg(ea);
b587e6ae 671 if (!seg || (seg->type != SEG_CODE && seg->type != SEG_DATA))
d8891fcc 672 goto pass;
673
b587e6ae 674 ea_flags = get_flags_novalue(ea);
675 if (isCode(ea_flags))
676 {
677 if (!decode_insn(ea))
678 goto pass;
d8891fcc 679
1caf86bb 680 if (is_insn_jmp(cmd.itype) && cmd.Operands[0].type == o_near
681 && cmd.Operands[0].dtyp == dt_dword)
682 {
683 jmp_near = 1;
684 }
685 else if ((cmd.itype == NN_pushf || cmd.itype == NN_popf)
686 && natop())
687 {
688 do_pushf = 1;
689 }
690
b587e6ae 691 for (o = 0; o < UA_MAXOP; o++) {
1caf86bb 692 const op_t &opr = cmd.Operands[o];
693 if (opr.type == o_void)
b587e6ae 694 break;
d8891fcc 695
1caf86bb 696 // correct?
697 if (opr.type == o_mem && opr.specval_shorts.high == 0x21)
b587e6ae 698 drop_large = 1;
1caf86bb 699 if (opr.hasSIB && x86_scale(opr) == 0
700 && x86_index(opr) != INDEX_NONE)
701 {
702 set_scale = 1;
703 }
704 // annoying alignment variant..
705 if (opr.type == o_imm && opr.dtyp == dt_dword
706 && (opr.value < 0x80 || opr.value > 0xffffff80)
707 && cmd.size >= opr.offb + 4)
708 {
709 if (get_long(ea + opr.offb) == opr.value)
710 dword_imm = 1;
711 }
712 else if (opr.type == o_imm && opr.dtyp == dt_word
713 && (opr.value < 0x80 || opr.value > 0xff80)
714 && cmd.size >= opr.offb + 2)
715 {
716 if (get_word(ea + opr.offb) == (ushort)opr.value)
717 word_imm = 1;
15c7b2a4 718 }
ed6ebb48 719 else if (opr.type == o_displ && opr.addr == 0
720 && opr.offb != 0 && opr.hasSIB && opr.sib == 0x24)
721 {
722 // uses [esp+0] with 0 encoded into op
723 do_nops++;
724 }
15c7b2a4 725 }
b587e6ae 726 }
727 else { // not code
728 if (isOff0(ea_flags))
94cd6e34 729 do_rva = 1;
d8891fcc 730 }
731
732pass:
b587e6ae 733 n = ln.get_linecnt();
734 for (i = pl.lnnum; i < n; i++) {
e74324f9 735 do_def_line(buf, sizeof(buf), ln.down(), ea, func);
15c7b2a4 736
1402b79d 737 char *fw;
738 for (fw = buf; *fw != 0 && *fw == ' '; )
739 fw++;
740
1caf86bb 741 // patches..
b587e6ae 742 if (drop_large) {
1402b79d 743 p = strstr(fw, "large ");
b587e6ae 744 if (p != NULL)
745 memmove(p, p + 6, strlen(p + 6) + 1);
746 }
94cd6e34 747 while (do_rva) {
1402b79d 748 p = strstr(fw, " rva ");
b587e6ae 749 if (p == NULL)
750 break;
94cd6e34 751 memmove(p + 4 + 3, p + 4, strlen(p + 4) + 1);
752 memcpy(p + 1, "offset", 6);
b587e6ae 753 }
1caf86bb 754 if (set_scale) {
1402b79d 755 p = strchr(fw, '[');
1caf86bb 756 if (p != NULL)
757 p = strchr(p, '+');
758 if (p != NULL && p[1] == 'e') {
759 p += 4;
760 // scale is 1, must specify it explicitly so that
761 // masm chooses the right scaled reg
762 memmove(p + 2, p, strlen(p) + 1);
763 memcpy(p, "*1", 2);
764 }
765 }
766 else if (jmp_near) {
9aaf1dcf 767 p = NULL;
768 if (fw != buf && fw[0] == 'j')
769 p = fw;
1caf86bb 770 while (p && *p != ' ')
771 p++;
772 while (p && *p == ' ')
773 p++;
774 if (p != NULL) {
775 memmove(p + 9, p, strlen(p) + 1);
776 memcpy(p, "near ptr ", 9);
9aaf1dcf 777 jmp_near = 0;
1caf86bb 778 }
779 }
780 if (word_imm) {
1402b79d 781 p = strstr(fw, ", ");
1caf86bb 782 if (p != NULL && '0' <= p[2] && p[2] <= '9') {
783 p += 2;
784 memmove(p + 9, p, strlen(p) + 1);
785 memcpy(p, "word ptr ", 9);
786 }
787 }
788 else if (dword_imm) {
1402b79d 789 p = strstr(fw, ", ");
1caf86bb 790 if (p != NULL && '0' <= p[2] && p[2] <= '9') {
791 p += 2;
792 memmove(p + 10, p, strlen(p) + 1);
793 memcpy(p, "dword ptr ", 10);
794 }
795 }
796 else if (do_pushf) {
1402b79d 797 p = strstr(fw, "pushf");
1caf86bb 798 if (p == NULL)
1402b79d 799 p = strstr(fw, "popf");
1caf86bb 800 if (p != NULL) {
801 p = strchr(p, 'f') + 1;
802 memmove(p + 1, p, strlen(p) + 1);
803 *p = 'd';
804 }
805 }
b587e6ae 806
de8a204c 807 if (fw[0] == 'a' && IS_START(fw, "assume cs")) {
808 // "assume cs" causes problems with ext syms
809 memmove(fw + 1, fw, strlen(fw) + 1);
810 *fw = ';';
811 }
812 else if (fw[0] == 'e' && IS_START(fw, "end") && fw[3] == ' ') {
1402b79d 813 fout_line++;
814 qfprintf(fout, "include public.inc\n\n");
815
816 // kill entry point
817 fw[3] = 0;
818 }
819
b587e6ae 820 fout_line++;
821 qfprintf(fout, "%s\n", buf);
822 }
d8891fcc 823
ed6ebb48 824 while (do_nops-- > 0)
825 qfprintf(fout, " nop ; adj\n");
826
15c7b2a4 827 // note: next_head skips some undefined stuff
d8891fcc 828 ea = next_not_tail(ea); // correct?
15c7b2a4 829 if (ea == BADADDR)
d8891fcc 830 break;
831
832 pl.ea = ea;
833 pl.lnnum = 0;
834 ln.set_place(&pl);
d8891fcc 835 }
836
837 if (fout != NULL)
838 qfclose(fout);
15c7b2a4 839 if (fname != NULL)
840 qfree(fname);
d8891fcc 841
842 hide_wait_box();
843 msg("%d lines saved.\n", fout_line);
844}
845
846//--------------------------------------------------------------------------
847
3682b4b1 848static const char comment[] = "Generate disassembly for nasm";
d8891fcc 849static const char help[] = "Generate asm file\n";
850static const char wanted_name[] = "Save asm";
3682b4b1 851static const char wanted_hotkey[] = "Shift-S";
d8891fcc 852
853//--------------------------------------------------------------------------
854//
855// PLUGIN DESCRIPTION BLOCK
856//
857//--------------------------------------------------------------------------
858plugin_t PLUGIN =
859{
860 IDP_INTERFACE_VERSION,
861 0, // plugin flags
862 init, // initialize
863 term, // terminate. this pointer may be NULL.
864 run, // invoke plugin
865 comment, // long comment about the plugin
866 // it could appear in the status line
867 // or as a hint
868 help, // multiline help about the plugin
869 wanted_name, // the preferred short name of the plugin
870 wanted_hotkey // the preferred hotkey to run the plugin
871};
872
873// vim:ts=2:shiftwidth=2:expandtab