2017-01-03 16:58:36 +00:00
|
|
|
/* radare - LGPL - Copyright 2009-2017 - nibble, pancake, dso */
|
2012-08-23 10:46:55 +00:00
|
|
|
|
2011-06-04 01:14:04 +00:00
|
|
|
#include "r_core.h"
|
2013-07-18 20:20:23 +00:00
|
|
|
#include "r_cons.h"
|
|
|
|
|
2013-11-06 01:10:53 +00:00
|
|
|
#define HASRETRY 1
|
2014-06-25 00:30:42 +00:00
|
|
|
#define HAVE_LOCALS 1
|
2015-10-29 22:37:51 +00:00
|
|
|
#define DEFAULT_NARGS 4
|
2013-10-27 01:20:36 +00:00
|
|
|
|
2015-12-17 19:18:50 +00:00
|
|
|
#define R_MIDFLAGS_SHOW 1
|
|
|
|
#define R_MIDFLAGS_REALIGN 2
|
2016-11-02 11:10:50 +00:00
|
|
|
#define R_MIDFLAGS_SYMALIGN 3
|
2015-12-17 19:18:50 +00:00
|
|
|
|
2015-11-02 11:38:08 +00:00
|
|
|
#define COLOR(ds, field) (ds->show_color ? ds->field : "")
|
|
|
|
#define COLOR_CONST(ds, color) (ds->show_color ? Color_ ## color : "")
|
|
|
|
#define COLOR_RESET(ds) COLOR_CONST(ds, RESET)
|
|
|
|
|
2016-04-08 10:18:28 +00:00
|
|
|
|
2013-09-11 21:41:40 +00:00
|
|
|
static const char* r_vline_a[] = {
|
2016-10-24 09:54:03 +00:00
|
|
|
"|", // LINE_VERT
|
2013-07-18 20:20:23 +00:00
|
|
|
"|-", // LINE_CROSS
|
2016-10-24 09:54:03 +00:00
|
|
|
"-", // LINE_HORIZ
|
|
|
|
"!", // LINE_UP
|
|
|
|
",", // LUP_CORNER
|
2013-07-18 20:20:23 +00:00
|
|
|
"\\", // RDWN_CORNER
|
2016-10-24 09:54:03 +00:00
|
|
|
"/", // RUP_CORNER
|
|
|
|
"`", // LDWN_CORNER
|
2013-07-18 20:20:23 +00:00
|
|
|
"->", // ARROW_RIGHT
|
|
|
|
"=<", // ARROW_LEFT
|
|
|
|
};
|
|
|
|
|
2013-09-11 21:41:40 +00:00
|
|
|
static const char* r_vline_u[] = {
|
2013-07-18 20:20:23 +00:00
|
|
|
"│", // LINE_VERT
|
|
|
|
"├", // LINE_CROSS
|
|
|
|
"─", // LINE_HORIZ
|
2014-03-08 01:36:33 +00:00
|
|
|
"↑", // LINE_UP
|
2017-05-08 18:21:06 +00:00
|
|
|
//"┌", // LUP_CORNER
|
|
|
|
"┘", // LUP_CORNER
|
2016-10-20 23:24:40 +00:00
|
|
|
"└", // RDWN_CORNER
|
|
|
|
"┌", // RUP_CORNER
|
|
|
|
"┐", // LDWN_CORNER
|
|
|
|
">", // ARROW_RIGHT
|
|
|
|
"<", // ARROW_LEFT
|
2013-07-18 20:20:23 +00:00
|
|
|
};
|
2011-06-04 01:14:04 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
// TODO: what about using bit shifting and enum for keys? see libr/util/bitmap.c
|
|
|
|
// the problem of this is that the fields will be more opaque to bindings, but we will earn some bits
|
2014-01-16 17:04:42 +00:00
|
|
|
typedef struct r_disam_options_t {
|
2016-03-03 23:33:24 +00:00
|
|
|
RCore *core;
|
2015-02-07 23:30:25 +00:00
|
|
|
char str[1024], strsub[1024];
|
2016-08-25 16:54:07 +00:00
|
|
|
bool use_esil;
|
|
|
|
bool show_color;
|
2016-08-25 18:27:52 +00:00
|
|
|
bool show_color_bytes;
|
2014-01-16 17:04:42 +00:00
|
|
|
int colorop;
|
|
|
|
int acase;
|
2016-11-04 02:56:42 +00:00
|
|
|
bool capitalize;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_flgoff;
|
2017-04-28 03:50:04 +00:00
|
|
|
bool hasMidflag;
|
2014-01-16 17:04:42 +00:00
|
|
|
int atabs;
|
2015-07-15 13:14:51 +00:00
|
|
|
int atabsonce;
|
2015-07-15 15:30:34 +00:00
|
|
|
int atabsoff;
|
2014-01-16 17:04:42 +00:00
|
|
|
int decode;
|
2017-03-20 22:43:34 +00:00
|
|
|
bool pseudo;
|
2014-01-16 17:04:42 +00:00
|
|
|
int filter;
|
2014-12-10 22:54:35 +00:00
|
|
|
int interactive;
|
2014-01-16 17:04:42 +00:00
|
|
|
int varsub;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_lines;
|
|
|
|
bool show_lines_ret;
|
|
|
|
bool show_lines_call;
|
2014-01-16 17:04:42 +00:00
|
|
|
int linesright;
|
2014-11-02 01:19:31 +00:00
|
|
|
int tracespace;
|
2014-11-02 02:06:52 +00:00
|
|
|
int cyclespace;
|
2015-06-01 23:04:10 +00:00
|
|
|
int cmtfold;
|
2014-08-05 03:37:48 +00:00
|
|
|
int show_indent;
|
2016-05-31 21:37:17 +00:00
|
|
|
bool show_dwarf;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_size;
|
|
|
|
bool show_trace;
|
|
|
|
bool show_family;
|
|
|
|
bool asm_describe;
|
2014-01-16 17:04:42 +00:00
|
|
|
int linesout;
|
|
|
|
int adistrick;
|
2014-09-24 01:01:18 +00:00
|
|
|
int asm_demangle;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_offset;
|
2016-11-01 22:30:36 +00:00
|
|
|
bool show_offdec; // dupe for r_print->flags
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_bbline;
|
|
|
|
bool show_emu;
|
|
|
|
bool show_emu_str;
|
|
|
|
bool show_emu_write;
|
|
|
|
bool show_section;
|
2016-04-08 00:56:42 +00:00
|
|
|
int show_section_col;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_symbols;
|
2016-04-08 00:56:42 +00:00
|
|
|
int show_symbols_col;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_offseg;
|
|
|
|
bool show_flags;
|
2017-05-05 12:53:19 +00:00
|
|
|
bool bblined;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_bytes;
|
|
|
|
bool show_reloff;
|
2016-08-25 18:17:55 +00:00
|
|
|
bool show_reloff_flags;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_comments;
|
|
|
|
bool show_jmphints;
|
2016-06-20 07:46:03 +00:00
|
|
|
bool show_leahints;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_slow;
|
2014-11-13 02:36:48 +00:00
|
|
|
int cmtcol;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_fcnlines;
|
|
|
|
bool show_calls;
|
|
|
|
bool show_cmtflgrefs;
|
|
|
|
bool show_cycles;
|
|
|
|
bool show_stackptr;
|
|
|
|
bool show_xrefs;
|
|
|
|
bool show_cmtrefs;
|
2017-05-29 00:44:45 +00:00
|
|
|
const char *show_cmtoff;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_functions;
|
|
|
|
bool show_fcncalls;
|
|
|
|
bool show_hints;
|
|
|
|
bool show_marks;
|
2017-07-02 07:46:59 +00:00
|
|
|
const char *strenc;
|
2014-01-16 17:04:42 +00:00
|
|
|
int cursor;
|
|
|
|
int show_comment_right_default;
|
|
|
|
int flagspace_ports;
|
2014-10-15 23:51:48 +00:00
|
|
|
int show_flag_in_bytes;
|
2014-01-16 17:04:42 +00:00
|
|
|
int lbytes;
|
|
|
|
int show_comment_right;
|
|
|
|
char *pre;
|
|
|
|
char *ocomment;
|
|
|
|
int linesopts;
|
|
|
|
int lastfail;
|
|
|
|
int ocols;
|
|
|
|
int lcols;
|
|
|
|
int nb, nbytes;
|
|
|
|
int show_utf8;
|
|
|
|
int lines;
|
|
|
|
int oplen;
|
2016-08-25 16:54:07 +00:00
|
|
|
bool show_varxs;
|
|
|
|
bool show_vars;
|
2017-04-07 19:09:33 +00:00
|
|
|
bool show_varsum;
|
2015-05-05 22:56:31 +00:00
|
|
|
int midflags;
|
2017-05-11 10:47:48 +00:00
|
|
|
bool midcursor;
|
2017-05-26 00:56:47 +00:00
|
|
|
bool show_noisy_comments;
|
2014-01-16 17:04:42 +00:00
|
|
|
const char *pal_comment;
|
|
|
|
const char *color_comment;
|
|
|
|
const char *color_fname;
|
|
|
|
const char *color_floc;
|
|
|
|
const char *color_fline;
|
|
|
|
const char *color_flow;
|
2017-01-15 23:41:31 +00:00
|
|
|
const char *color_flow2;
|
2014-01-16 17:04:42 +00:00
|
|
|
const char *color_flag;
|
|
|
|
const char *color_label;
|
|
|
|
const char *color_other;
|
|
|
|
const char *color_nop;
|
|
|
|
const char *color_bin;
|
|
|
|
const char *color_math;
|
|
|
|
const char *color_jmp;
|
|
|
|
const char *color_cjmp;
|
|
|
|
const char *color_call;
|
|
|
|
const char *color_cmp;
|
|
|
|
const char *color_swi;
|
|
|
|
const char *color_trap;
|
|
|
|
const char *color_ret;
|
|
|
|
const char *color_push;
|
|
|
|
const char *color_pop;
|
|
|
|
const char *color_reg;
|
|
|
|
const char *color_num;
|
2014-05-16 02:07:03 +00:00
|
|
|
const char *color_mov;
|
2014-01-16 17:04:42 +00:00
|
|
|
const char *color_invalid;
|
2014-12-06 11:25:02 +00:00
|
|
|
const char *color_gui_cflow;
|
|
|
|
const char *color_gui_dataoffset;
|
|
|
|
const char *color_gui_background;
|
|
|
|
const char *color_gui_alt_background;
|
|
|
|
const char *color_gui_border;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2015-01-12 09:45:41 +00:00
|
|
|
RFlagItem *lastflag;
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalHint *hint;
|
2016-05-30 10:35:39 +00:00
|
|
|
RPrint *print;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2016-06-08 19:16:00 +00:00
|
|
|
ut64 esil_old_pc;
|
|
|
|
ut8* esil_regstate;
|
2016-06-08 21:33:31 +00:00
|
|
|
bool esil_likely;
|
2016-06-08 19:16:00 +00:00
|
|
|
|
2014-01-16 17:04:42 +00:00
|
|
|
int l;
|
|
|
|
int middle;
|
2014-08-05 03:37:48 +00:00
|
|
|
int indent_level;
|
2015-08-12 08:40:24 +00:00
|
|
|
int indent_space;
|
2014-01-16 17:04:42 +00:00
|
|
|
char *line;
|
|
|
|
char *refline, *refline2;
|
|
|
|
char *comment;
|
|
|
|
char *opstr;
|
|
|
|
char *osl, *sl;
|
|
|
|
int stackptr, ostackptr;
|
|
|
|
int index;
|
2016-11-04 02:15:17 +00:00
|
|
|
ut64 at, vat, addr, dest;
|
2014-01-16 17:04:42 +00:00
|
|
|
int tries, cbytes, idx;
|
2017-01-16 14:07:11 +00:00
|
|
|
bool retry;
|
|
|
|
bool mi_found;
|
2014-01-16 17:04:42 +00:00
|
|
|
RAsmOp asmop;
|
|
|
|
RAnalOp analop;
|
2016-02-23 17:30:32 +00:00
|
|
|
RAnalFunction *fcn;
|
2014-01-16 17:04:42 +00:00
|
|
|
const ut8 *buf;
|
|
|
|
int len;
|
2014-09-23 08:15:19 +00:00
|
|
|
int maxrefs;
|
2016-01-10 21:30:10 +00:00
|
|
|
char *prev_ins;
|
|
|
|
bool prev_ins_eq;
|
2016-01-11 21:28:22 +00:00
|
|
|
int prev_ins_count;
|
2016-01-10 21:30:10 +00:00
|
|
|
bool show_nodup;
|
2016-08-16 10:19:02 +00:00
|
|
|
bool has_description;
|
2016-03-03 23:33:24 +00:00
|
|
|
// caches
|
|
|
|
char *_tabsbuf;
|
|
|
|
int _tabsoff;
|
2016-11-23 09:30:44 +00:00
|
|
|
bool dwarfFile;
|
|
|
|
bool dwarfAbspath;
|
2017-05-08 18:21:06 +00:00
|
|
|
bool showpayloads;
|
2017-05-23 21:54:11 +00:00
|
|
|
bool showrelocs;
|
2014-01-16 17:04:42 +00:00
|
|
|
} RDisasmState;
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_setup_print_pre(RDisasmState *ds, bool tail, bool middle);
|
|
|
|
static void ds_setup_pre(RDisasmState *ds, bool tail, bool middle);
|
|
|
|
static void ds_print_pre(RDisasmState *ds);
|
|
|
|
static void ds_beginline(RDisasmState *ds, RAnalFunction *f, bool nopre);
|
2017-01-18 21:02:30 +00:00
|
|
|
static void ds_print_esil_anal(RDisasmState *ds);
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_reflines_init(RDisasmState *ds);
|
|
|
|
static void ds_align_comment(RDisasmState *ds);
|
|
|
|
static RDisasmState * ds_init(RCore * core);
|
|
|
|
static void ds_set_pre(RDisasmState *ds, const char * str);
|
|
|
|
static void ds_build_op_str(RDisasmState *ds);
|
|
|
|
static void ds_pre_xrefs(RDisasmState *ds);
|
|
|
|
static void ds_show_xrefs(RDisasmState *ds);
|
|
|
|
static void ds_atabs_option(RDisasmState *ds);
|
|
|
|
static void ds_show_functions(RDisasmState *ds);
|
|
|
|
static void ds_show_comments_right(RDisasmState *ds);
|
|
|
|
static void ds_show_flags(RDisasmState *ds);
|
|
|
|
static void ds_update_ref_lines(RDisasmState *ds);
|
|
|
|
static int ds_disassemble(RDisasmState *ds, ut8 *buf, int len);
|
|
|
|
static void ds_control_flow_comments(RDisasmState *ds);
|
|
|
|
static void ds_print_lines_right(RDisasmState *ds);
|
|
|
|
static void ds_print_lines_left(RDisasmState *ds);
|
|
|
|
static void ds_print_cycles(RDisasmState *ds);
|
|
|
|
static void ds_print_family(RDisasmState *ds);
|
|
|
|
static void ds_print_stackptr(RDisasmState *ds);
|
|
|
|
static void ds_print_offset(RDisasmState *ds);
|
|
|
|
static void ds_print_op_size(RDisasmState *ds);
|
|
|
|
static void ds_print_trace(RDisasmState *ds);
|
|
|
|
static void ds_adistrick_comments(RDisasmState *ds);
|
|
|
|
static int ds_print_meta_infos(RDisasmState *ds, ut8* buf, int len, int idx );
|
|
|
|
static void ds_print_opstr(RDisasmState *ds);
|
|
|
|
static void ds_print_color_reset(RDisasmState *ds);
|
|
|
|
static int ds_print_middle(RDisasmState *ds, int ret);
|
|
|
|
static bool ds_print_labels(RDisasmState *ds, RAnalFunction *f);
|
|
|
|
static void ds_print_import_name(RDisasmState *ds);
|
|
|
|
static void ds_print_fcn_name(RDisasmState *ds);
|
|
|
|
static void ds_print_as_string(RDisasmState *ds);
|
|
|
|
static void ds_print_core_vmode(RDisasmState *ds);
|
|
|
|
static void ds_print_dwarf(RDisasmState *ds);
|
2017-05-08 18:21:06 +00:00
|
|
|
static void ds_print_asmop_payload(RDisasmState *ds, const ut8 *buf);
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_comments_right(RDisasmState *ds);
|
|
|
|
static void ds_print_ptr(RDisasmState *ds, int len, int idx);
|
2017-06-30 15:45:47 +00:00
|
|
|
static void ds_print_str(RDisasmState *ds, const char *str, int len);
|
2014-01-20 00:42:16 +00:00
|
|
|
|
2016-11-04 02:15:17 +00:00
|
|
|
static ut64 p2v(RDisasmState *ds, ut64 addr) {
|
|
|
|
if (ds->core->io->pava) {
|
|
|
|
ut64 at = r_io_section_get_vaddr (ds->core->io, addr);
|
|
|
|
if (at == UT64_MAX || (!at && ds->at)) {
|
|
|
|
addr = ds->at;
|
|
|
|
} else {
|
|
|
|
addr = at + addr;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return addr;
|
|
|
|
}
|
|
|
|
|
2016-04-27 20:17:19 +00:00
|
|
|
static int cmpaddr(const void *_a, const void *_b) {
|
2015-06-15 22:16:29 +00:00
|
|
|
const RAnalBlock *a = _a, *b = _b;
|
2014-01-23 04:55:48 +00:00
|
|
|
return (a->addr > b->addr);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
2016-03-15 10:47:13 +00:00
|
|
|
static void get_bits_comment(RCore *core, RAnalFunction *f, char *cmt, int cmt_size) {
|
2016-06-10 08:57:43 +00:00
|
|
|
if (core && f && cmt && cmt_size > 0 && f->bits && f->bits != core->assembler->bits) {
|
2016-06-02 01:19:31 +00:00
|
|
|
const char *asm_arch = r_config_get (core->config, "asm.arch");
|
|
|
|
if (asm_arch && *asm_arch && strstr (asm_arch, "arm")) {
|
2016-03-15 10:47:13 +00:00
|
|
|
switch (f->bits) {
|
|
|
|
case 16: strcpy (cmt, " (thumb)"); break;
|
|
|
|
case 32: strcpy (cmt, " (arm)"); break;
|
|
|
|
case 64: strcpy (cmt, " (aarch64)"); break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
snprintf (cmt, cmt_size, " (%d bits)", f->bits);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (cmt) {
|
|
|
|
cmt[0] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static const char * get_section_name(RCore *core, ut64 addr) {
|
2015-07-04 23:44:45 +00:00
|
|
|
static char section[128] = "";
|
2014-11-23 23:16:36 +00:00
|
|
|
static ut64 oaddr = UT64_MAX;
|
|
|
|
RIOSection *s;
|
2016-09-26 21:13:49 +00:00
|
|
|
if (oaddr == addr) {
|
2014-11-23 23:16:36 +00:00
|
|
|
return section;
|
2016-09-26 21:13:49 +00:00
|
|
|
}
|
2014-11-23 23:16:36 +00:00
|
|
|
s = r_io_section_vget (core->io, addr);
|
|
|
|
if (s) {
|
|
|
|
snprintf (section, sizeof (section)-1, "%10s ", s->name);
|
2015-06-01 13:22:03 +00:00
|
|
|
} else {
|
|
|
|
RListIter *iter;
|
|
|
|
RDebugMap *map;
|
|
|
|
*section = 0;
|
|
|
|
r_list_foreach (core->dbg->maps, iter, map) {
|
|
|
|
if (addr >= map->addr && addr < map->addr_end) {
|
2015-06-01 13:34:26 +00:00
|
|
|
const char *mn = r_str_lchr (map->name, '/');
|
|
|
|
if (mn) {
|
2016-09-26 21:13:49 +00:00
|
|
|
strncpy (section, mn + 1, sizeof (section) - 1);
|
2015-06-01 13:34:26 +00:00
|
|
|
} else {
|
2016-09-26 21:13:49 +00:00
|
|
|
strncpy (section, map->name, sizeof (section) - 1);
|
2015-06-01 13:34:26 +00:00
|
|
|
}
|
2015-06-01 13:22:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-11-23 23:16:36 +00:00
|
|
|
oaddr = addr;
|
|
|
|
return section;
|
|
|
|
}
|
|
|
|
|
2016-12-26 19:10:10 +00:00
|
|
|
// up means if this lines go up, it controls whether to insert `_
|
|
|
|
// nl if we have to insert new line, it controls whether to insert \n
|
|
|
|
static void _ds_comment_align_(RDisasmState *ds, bool up, bool nl) {
|
2016-12-24 17:16:54 +00:00
|
|
|
const char *sn;
|
|
|
|
if (ds->show_comment_right) {
|
2016-12-28 23:37:40 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf (ds->pal_comment);
|
|
|
|
}
|
2016-12-24 17:16:54 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-12-28 23:37:40 +00:00
|
|
|
//XXX fix this generate many dupes with section name
|
2016-12-24 17:16:54 +00:00
|
|
|
sn = ds->show_section ? get_section_name (ds->core, ds->at) : "";
|
|
|
|
ds_align_comment (ds);
|
|
|
|
r_cons_printf ("%s%s%s%s%s%s %s %s", nl? "\n": "", COLOR (ds, color_fline),
|
|
|
|
ds->pre, sn, ds->refline, COLOR_RESET (ds),
|
|
|
|
up? "": "`-", COLOR (ds, pal_comment));
|
|
|
|
}
|
2016-12-27 14:40:02 +00:00
|
|
|
#define ALIGN _ds_comment_align_ (ds, true, false)
|
|
|
|
|
2016-12-24 17:16:54 +00:00
|
|
|
static void ds_comment_lineup(RDisasmState *ds) {
|
2016-12-26 19:10:10 +00:00
|
|
|
_ds_comment_align_ (ds, true, false);
|
2016-12-24 17:16:54 +00:00
|
|
|
}
|
2016-12-26 16:21:00 +00:00
|
|
|
|
2017-03-09 15:54:31 +00:00
|
|
|
static void ds_comment(RDisasmState *ds, bool align, const char *format, ...) {
|
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
2017-05-08 18:21:06 +00:00
|
|
|
if (ds->show_comments && ds->show_comment_right && align) {
|
2016-12-26 16:21:00 +00:00
|
|
|
ds_align_comment (ds);
|
|
|
|
}
|
|
|
|
r_cons_printf_list (format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ds_comment_esil(RDisasmState *ds, bool up, bool end, const char *format, ...) {
|
2016-12-24 17:16:54 +00:00
|
|
|
va_list ap;
|
|
|
|
va_start (ap, format);
|
|
|
|
if (ds->show_comments && !ds->show_comment_right) {
|
2016-12-26 16:21:00 +00:00
|
|
|
if (up) {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_lineup (ds);
|
|
|
|
}
|
2017-01-31 09:00:24 +00:00
|
|
|
}
|
2016-12-24 17:16:54 +00:00
|
|
|
r_cons_printf_list (format, ap);
|
|
|
|
va_end (ap);
|
|
|
|
|
|
|
|
if (ds->show_comments && !ds->show_comment_right) {
|
|
|
|
if (end) {
|
|
|
|
r_cons_newline ();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static RDisasmState * ds_init(RCore *core) {
|
2015-01-12 09:45:41 +00:00
|
|
|
RDisasmState *ds = R_NEW0 (RDisasmState);
|
2016-08-10 16:49:44 +00:00
|
|
|
if (!ds) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2016-03-03 23:33:24 +00:00
|
|
|
ds->core = core;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->pal_comment = core->cons->pal.comment;
|
2014-01-16 17:04:42 +00:00
|
|
|
#define P(x) (core->cons && core->cons->pal.x)? core->cons->pal.x
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->color_comment = P(comment): Color_CYAN;
|
|
|
|
ds->color_fname = P(fname): Color_RED;
|
|
|
|
ds->color_floc = P(floc): Color_MAGENTA;
|
|
|
|
ds->color_fline = P(fline): Color_CYAN;
|
|
|
|
ds->color_flow = P(flow): Color_CYAN;
|
2017-01-15 23:41:31 +00:00
|
|
|
ds->color_flow2 = P(flow2): Color_CYAN;
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->color_flag = P(flag): Color_CYAN;
|
|
|
|
ds->color_label = P(label): Color_CYAN;
|
|
|
|
ds->color_other = P(other): Color_WHITE;
|
|
|
|
ds->color_nop = P(nop): Color_BLUE;
|
|
|
|
ds->color_bin = P(bin): Color_YELLOW;
|
|
|
|
ds->color_math = P(math): Color_YELLOW;
|
|
|
|
ds->color_jmp = P(jmp): Color_GREEN;
|
|
|
|
ds->color_cjmp = P(cjmp): Color_GREEN;
|
|
|
|
ds->color_call = P(call): Color_BGREEN;
|
|
|
|
ds->color_cmp = P(cmp): Color_MAGENTA;
|
|
|
|
ds->color_swi = P(swi): Color_MAGENTA;
|
|
|
|
ds->color_trap = P(trap): Color_BRED;
|
|
|
|
ds->color_ret = P(ret): Color_RED;
|
|
|
|
ds->color_push = P(push): Color_YELLOW;
|
|
|
|
ds->color_pop = P(pop): Color_BYELLOW;
|
|
|
|
ds->color_reg = P(reg): Color_YELLOW;
|
2015-06-14 00:42:39 +00:00
|
|
|
ds->color_num = P(num): Color_CYAN;
|
2014-10-27 10:55:52 +00:00
|
|
|
ds->color_mov = P(mov): Color_WHITE;
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->color_invalid = P(invalid): Color_BRED;
|
2014-12-06 11:25:02 +00:00
|
|
|
ds->color_gui_cflow = P(gui_cflow): Color_YELLOW;
|
|
|
|
ds->color_gui_dataoffset = P(gui_dataoffset): Color_YELLOW;
|
|
|
|
ds->color_gui_background = P(gui_background): Color_BLACK;
|
|
|
|
ds->color_gui_alt_background = P(gui_alt_background): Color_GRAY;
|
|
|
|
ds->color_gui_border = P(gui_border): Color_BGGRAY;
|
2014-10-27 10:55:52 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->use_esil = r_config_get_i (core->config, "asm.esil");
|
2016-03-03 23:33:24 +00:00
|
|
|
ds->show_flgoff = r_config_get_i (core->config, "asm.flgoff");
|
2016-01-10 21:30:10 +00:00
|
|
|
ds->show_nodup = r_config_get_i (core->config, "asm.nodup");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_color = r_config_get_i (core->config, "scr.color");
|
2016-08-25 18:27:52 +00:00
|
|
|
ds->show_color_bytes = r_config_get_i (core->config, "scr.color.bytes"); // maybe rename to asm.color.bytes
|
|
|
|
ds->colorop = r_config_get_i (core->config, "scr.color.ops"); // XXX confusing name // asm.color.inst (mnemonic + operands) ?
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_utf8 = r_config_get_i (core->config, "scr.utf8");
|
|
|
|
ds->acase = r_config_get_i (core->config, "asm.ucase");
|
2016-11-04 02:56:42 +00:00
|
|
|
ds->capitalize = r_config_get_i (core->config, "asm.capitalize");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->atabs = r_config_get_i (core->config, "asm.tabs");
|
2015-07-15 13:14:51 +00:00
|
|
|
ds->atabsonce = r_config_get_i (core->config, "asm.tabsonce");
|
2015-07-15 15:30:34 +00:00
|
|
|
ds->atabsoff = r_config_get_i (core->config, "asm.tabsoff");
|
2015-05-05 22:56:31 +00:00
|
|
|
ds->midflags = r_config_get_i (core->config, "asm.midflags");
|
2017-05-11 10:47:48 +00:00
|
|
|
ds->midcursor = r_config_get_i (core->config, "asm.midcursor");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->decode = r_config_get_i (core->config, "asm.decode");
|
|
|
|
ds->pseudo = r_config_get_i (core->config, "asm.pseudo");
|
2017-02-05 23:56:51 +00:00
|
|
|
if (ds->pseudo) {
|
|
|
|
ds->atabs = 0;
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->filter = r_config_get_i (core->config, "asm.filter");
|
2014-12-10 22:54:35 +00:00
|
|
|
ds->interactive = r_config_get_i (core->config, "scr.interactive");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->varsub = r_config_get_i (core->config, "asm.varsub");
|
2015-11-19 22:12:08 +00:00
|
|
|
core->parser->relsub = r_config_get_i (core->config, "asm.relsub");
|
2017-03-17 10:54:34 +00:00
|
|
|
core->parser->localvar_only = r_config_get_i (core->config, "asm.varsub_only");
|
2016-08-25 16:54:07 +00:00
|
|
|
ds->show_vars = r_config_get_i (core->config, "asm.vars");
|
2017-04-07 19:09:33 +00:00
|
|
|
ds->show_varsum = r_config_get_i (core->config, "asm.varsum");
|
2016-08-25 16:54:07 +00:00
|
|
|
ds->show_varxs = r_config_get_i (core->config, "asm.varxs");
|
2014-09-23 08:15:19 +00:00
|
|
|
ds->maxrefs = r_config_get_i (core->config, "asm.maxrefs");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_lines = r_config_get_i (core->config, "asm.lines");
|
|
|
|
ds->linesright = r_config_get_i (core->config, "asm.linesright");
|
2014-08-05 03:37:48 +00:00
|
|
|
ds->show_indent = r_config_get_i (core->config, "asm.indent");
|
2015-08-12 08:40:24 +00:00
|
|
|
ds->indent_space = r_config_get_i (core->config, "asm.indentspace");
|
2014-11-02 01:19:31 +00:00
|
|
|
ds->tracespace = r_config_get_i (core->config, "asm.tracespace");
|
2014-11-02 02:06:52 +00:00
|
|
|
ds->cyclespace = r_config_get_i (core->config, "asm.cyclespace");
|
2014-04-21 15:19:15 +00:00
|
|
|
ds->show_dwarf = r_config_get_i (core->config, "asm.dwarf");
|
2016-11-23 09:30:44 +00:00
|
|
|
ds->dwarfFile = r_config_get_i (ds->core->config, "asm.dwarf.file");
|
|
|
|
ds->dwarfAbspath = r_config_get_i (ds->core->config, "asm.dwarf.abspath");
|
2015-08-30 22:20:07 +00:00
|
|
|
ds->show_lines_call = r_config_get_i (core->config, "asm.lines.call");
|
|
|
|
ds->show_lines_ret = r_config_get_i (core->config, "asm.lines.ret");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_size = r_config_get_i (core->config, "asm.size");
|
|
|
|
ds->show_trace = r_config_get_i (core->config, "asm.trace");
|
|
|
|
ds->linesout = r_config_get_i (core->config, "asm.linesout");
|
|
|
|
ds->adistrick = r_config_get_i (core->config, "asm.middle"); // TODO: find better name
|
2014-09-24 01:01:18 +00:00
|
|
|
ds->asm_demangle = r_config_get_i (core->config, "asm.demangle");
|
2015-03-08 01:27:39 +00:00
|
|
|
ds->asm_describe = r_config_get_i (core->config, "asm.describe");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_offset = r_config_get_i (core->config, "asm.offset");
|
2016-11-01 22:30:36 +00:00
|
|
|
ds->show_offdec = r_config_get_i (core->config, "asm.decoff");
|
2015-11-23 00:40:35 +00:00
|
|
|
ds->show_bbline = r_config_get_i (core->config, "asm.bbline");
|
2014-11-22 04:39:52 +00:00
|
|
|
ds->show_section = r_config_get_i (core->config, "asm.section");
|
2016-04-08 00:56:42 +00:00
|
|
|
ds->show_section_col = r_config_get_i (core->config, "asm.section.col");
|
2016-03-29 00:03:17 +00:00
|
|
|
ds->show_symbols = r_config_get_i (core->config, "asm.symbol");
|
2016-04-08 00:56:42 +00:00
|
|
|
ds->show_symbols_col = r_config_get_i (core->config, "asm.symbol.col");
|
2015-09-11 21:46:09 +00:00
|
|
|
ds->show_emu = r_config_get_i (core->config, "asm.emu");
|
2016-01-14 23:17:15 +00:00
|
|
|
ds->show_emu_str = r_config_get_i (core->config, "asm.emustr");
|
2015-10-29 22:37:51 +00:00
|
|
|
ds->show_emu_write = r_config_get_i (core->config, "asm.emuwrite");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_offseg = r_config_get_i (core->config, "asm.segoff");
|
|
|
|
ds->show_flags = r_config_get_i (core->config, "asm.flags");
|
|
|
|
ds->show_bytes = r_config_get_i (core->config, "asm.bytes");
|
2015-01-12 09:45:41 +00:00
|
|
|
ds->show_reloff = r_config_get_i (core->config, "asm.reloff");
|
2016-08-25 18:17:55 +00:00
|
|
|
ds->show_reloff_flags = r_config_get_i (core->config, "asm.reloff.flags");
|
2014-07-21 02:18:27 +00:00
|
|
|
ds->show_fcnlines = r_config_get_i (core->config, "asm.fcnlines");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_comments = r_config_get_i (core->config, "asm.comments");
|
2016-01-27 01:25:25 +00:00
|
|
|
ds->show_jmphints = r_config_get_i (core->config, "asm.jmphints");
|
2016-06-20 07:46:03 +00:00
|
|
|
ds->show_leahints = r_config_get_i (core->config, "asm.leahints");
|
2015-08-26 01:27:34 +00:00
|
|
|
ds->show_slow = r_config_get_i (core->config, "asm.slow");
|
2014-11-23 23:16:36 +00:00
|
|
|
ds->show_calls = r_config_get_i (core->config, "asm.calls");
|
2015-10-03 11:52:52 +00:00
|
|
|
ds->show_family = r_config_get_i (core->config, "asm.family");
|
2014-11-13 02:36:48 +00:00
|
|
|
ds->cmtcol = r_config_get_i (core->config, "asm.cmtcol");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_cmtflgrefs = r_config_get_i (core->config, "asm.cmtflgrefs");
|
2014-02-10 22:01:19 +00:00
|
|
|
ds->show_cycles = r_config_get_i (core->config, "asm.cycles");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_stackptr = r_config_get_i (core->config, "asm.stackptr");
|
|
|
|
ds->show_xrefs = r_config_get_i (core->config, "asm.xrefs");
|
2016-08-25 16:41:49 +00:00
|
|
|
ds->show_cmtrefs = r_config_get_i (core->config, "asm.cmtrefs");
|
2015-06-01 23:04:10 +00:00
|
|
|
ds->cmtfold = r_config_get_i (core->config, "asm.cmtfold");
|
2017-05-29 00:44:45 +00:00
|
|
|
ds->show_cmtoff = r_config_get (core->config, "asm.cmtoff");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_functions = r_config_get_i (core->config, "asm.functions");
|
2015-01-28 16:05:18 +00:00
|
|
|
ds->show_fcncalls = r_config_get_i (core->config, "asm.fcncalls");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->nbytes = r_config_get_i (core->config, "asm.nbytes");
|
2017-07-02 07:46:59 +00:00
|
|
|
ds->strenc = r_config_get (core->config, "asm.strenc");
|
2014-02-25 00:35:23 +00:00
|
|
|
core->print->bytespace = r_config_get_i (core->config, "asm.bytespace");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->cursor = 0;
|
|
|
|
ds->nb = 0;
|
|
|
|
ds->flagspace_ports = r_flag_space_get (core->flags, "ports");
|
|
|
|
ds->lbytes = r_config_get_i (core->config, "asm.lbytes");
|
2014-12-10 22:54:35 +00:00
|
|
|
ds->show_comment_right_default = r_config_get_i (core->config, "asm.cmtright");
|
2017-03-20 22:43:34 +00:00
|
|
|
ds->show_comment_right = ds->show_comment_right_default;
|
2014-12-10 22:54:35 +00:00
|
|
|
ds->show_flag_in_bytes = r_config_get_i (core->config, "asm.flagsinbytes");
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
ds->show_hints = r_config_get_i (core->config, "asm.hints");
|
2015-07-14 22:22:20 +00:00
|
|
|
ds->show_marks = r_config_get_i (core->config, "asm.marks");
|
2017-05-26 00:56:47 +00:00
|
|
|
ds->show_noisy_comments = r_config_get_i (core->config, "asm.noisy");
|
2014-04-23 02:19:21 +00:00
|
|
|
ds->pre = strdup (" ");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->ocomment = NULL;
|
|
|
|
ds->linesopts = 0;
|
|
|
|
ds->lastfail = 0;
|
|
|
|
ds->ocols = 0;
|
|
|
|
ds->lcols = 0;
|
2016-05-30 02:18:48 +00:00
|
|
|
|
2016-06-08 19:16:00 +00:00
|
|
|
ds->esil_old_pc = UT64_MAX;
|
|
|
|
ds->esil_regstate = NULL;
|
2016-06-08 21:33:31 +00:00
|
|
|
ds->esil_likely = false;
|
2016-06-08 19:16:00 +00:00
|
|
|
|
2017-05-08 18:21:06 +00:00
|
|
|
ds->showpayloads = r_config_get_i (ds->core->config, "asm.payloads");
|
2017-05-23 21:54:11 +00:00
|
|
|
ds->showrelocs = r_config_get_i (core->config, "bin.relocs");
|
2017-05-08 18:21:06 +00:00
|
|
|
|
2014-10-16 00:16:52 +00:00
|
|
|
if (ds->show_flag_in_bytes) {
|
|
|
|
ds->show_flags = 0;
|
|
|
|
}
|
2015-09-08 21:21:35 +00:00
|
|
|
if (r_config_get_i (core->config, "asm.lineswide")) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_WIDE;
|
2015-09-08 21:21:35 +00:00
|
|
|
}
|
|
|
|
if (core->cons->vline) {
|
2016-08-16 11:38:40 +00:00
|
|
|
if (ds->show_utf8) {
|
2015-09-08 21:21:35 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_UTF8;
|
2016-08-16 11:38:40 +00:00
|
|
|
}
|
2015-09-08 21:21:35 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_lines) {
|
|
|
|
ds->ocols += 10; // XXX
|
|
|
|
}
|
|
|
|
if (ds->show_offset) {
|
|
|
|
ds->ocols += 14;
|
|
|
|
}
|
2016-10-20 23:24:40 +00:00
|
|
|
ds->lcols = ds->ocols + 2;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_bytes) {
|
|
|
|
ds->ocols += 20;
|
|
|
|
}
|
|
|
|
if (ds->show_trace) {
|
|
|
|
ds->ocols += 8;
|
|
|
|
}
|
|
|
|
if (ds->show_stackptr) {
|
|
|
|
ds->ocols += 4;
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
/* disasm */ ds->ocols += 20;
|
2016-10-20 23:24:40 +00:00
|
|
|
ds->nb = ds->nbytes? (1 + ds->nbytes * 2): 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->tries = 3;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (core->print->cur_enabled) {
|
2016-05-30 02:18:48 +00:00
|
|
|
if (core->print->cur < 0) {
|
2014-01-16 17:04:42 +00:00
|
|
|
core->print->cur = 0;
|
2016-05-30 02:18:48 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->cursor = core->print->cur;
|
2016-09-26 21:13:49 +00:00
|
|
|
} else {
|
|
|
|
ds->cursor = -1;
|
|
|
|
}
|
2015-09-08 21:21:35 +00:00
|
|
|
if (r_config_get_i (core->config, "asm.lineswide")) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_WIDE;
|
2015-09-08 21:21:35 +00:00
|
|
|
}
|
|
|
|
if (core->cons->vline) {
|
2016-10-20 23:24:40 +00:00
|
|
|
if (ds->show_utf8) {
|
2015-09-08 21:21:35 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_UTF8;
|
2016-09-26 21:13:49 +00:00
|
|
|
}
|
2015-09-08 21:21:35 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
return ds;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2015-09-08 21:21:35 +00:00
|
|
|
static ut64 lastaddr = UT64_MAX;
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_reflines_fini(RDisasmState *ds) {
|
|
|
|
RAnal *anal = ds->core->anal;
|
2016-04-03 21:52:36 +00:00
|
|
|
r_list_free (anal->reflines);
|
|
|
|
r_list_free (anal->reflines2);
|
|
|
|
anal->reflines = NULL;
|
|
|
|
anal->reflines2 = NULL;
|
2016-04-03 22:17:57 +00:00
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2016-04-03 21:52:36 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_reflines_init(RDisasmState *ds) {
|
|
|
|
RAnal *anal = ds->core->anal;
|
|
|
|
|
2015-09-08 21:21:35 +00:00
|
|
|
lastaddr = UT64_MAX;
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_lines) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_reflines_fini (ds);
|
2015-09-08 21:21:35 +00:00
|
|
|
anal->reflines = r_anal_reflines_get (anal,
|
2014-02-14 19:40:22 +00:00
|
|
|
ds->addr, ds->buf, ds->len, ds->l,
|
2015-08-30 22:20:07 +00:00
|
|
|
ds->linesout, ds->show_lines_call);
|
2015-09-08 21:21:35 +00:00
|
|
|
anal->reflines2 = r_anal_reflines_get (anal,
|
2014-02-14 19:40:22 +00:00
|
|
|
ds->addr, ds->buf, ds->len, ds->l,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->linesout, 1);
|
2016-04-03 22:52:45 +00:00
|
|
|
} else {
|
|
|
|
r_list_free (anal->reflines);
|
|
|
|
r_list_free (anal->reflines2);
|
|
|
|
anal->reflines = anal->reflines2 = NULL;
|
|
|
|
}
|
2015-09-08 21:21:35 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_reflines_fcn_init(RDisasmState *ds, RAnalFunction *fcn, const ut8* buf) {
|
|
|
|
RCore *core = ds->core;
|
2015-09-08 21:21:35 +00:00
|
|
|
RAnal *anal = core->anal;
|
2014-01-23 04:55:48 +00:00
|
|
|
if (ds->show_lines) {
|
2014-12-10 22:54:35 +00:00
|
|
|
// TODO: make anal->reflines implicit
|
2015-09-08 21:21:35 +00:00
|
|
|
free (anal->reflines); // TODO: leak
|
2016-09-23 14:28:48 +00:00
|
|
|
anal->reflines = r_anal_reflines_fcn_get (anal, fcn, -1, ds->linesout, ds->show_lines_call);
|
2015-09-08 21:21:35 +00:00
|
|
|
free (anal->reflines2); // TODO: leak
|
2016-09-23 14:28:48 +00:00
|
|
|
anal->reflines2 = r_anal_reflines_fcn_get (anal, fcn, -1, ds->linesout, 1);
|
2014-12-10 22:54:35 +00:00
|
|
|
} else {
|
2016-04-03 22:52:45 +00:00
|
|
|
r_list_free (anal->reflines);
|
|
|
|
r_list_free (anal->reflines2);
|
2015-09-08 21:21:35 +00:00
|
|
|
anal->reflines = anal->reflines2 = NULL;
|
2014-12-10 22:54:35 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_free(RDisasmState *ds) {
|
2017-01-22 08:44:35 +00:00
|
|
|
if (!ds) {
|
|
|
|
return;
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2015-09-28 09:21:23 +00:00
|
|
|
r_anal_hint_free (ds->hint);
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->comment);
|
|
|
|
free (ds->pre);
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
free (ds->opstr);
|
|
|
|
free (ds->osl);
|
|
|
|
free (ds->sl);
|
2016-03-03 23:33:24 +00:00
|
|
|
free (ds->_tabsbuf);
|
2016-11-15 18:34:22 +00:00
|
|
|
R_FREE (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_set_pre(RDisasmState *ds, const char * str) {
|
2014-07-21 02:18:27 +00:00
|
|
|
if (!ds->show_fcnlines) {
|
2016-05-04 15:13:44 +00:00
|
|
|
if (ds->pre && !*ds->pre) {
|
2014-07-21 02:18:27 +00:00
|
|
|
return;
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
|
|
|
str = "";
|
2014-07-21 02:18:27 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->pre);
|
|
|
|
ds->pre = strdup (str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-09-22 10:19:21 +00:00
|
|
|
/* XXX move to r_print */
|
2014-09-03 08:25:29 +00:00
|
|
|
static char *colorize_asm_string(RCore *core, RDisasmState *ds) {
|
2014-08-04 21:09:28 +00:00
|
|
|
char *spacer = NULL;
|
|
|
|
char *source = ds->opstr? ds->opstr: ds->asmop.buf_asm;
|
2017-06-20 20:48:46 +00:00
|
|
|
char *hlstr = r_meta_get_string (ds->core->anal, R_META_TYPE_HIGHLIGHT, ds->at);
|
|
|
|
bool partial_reset = hlstr ? (*hlstr?true:false):false;
|
2014-08-04 21:09:28 +00:00
|
|
|
|
2015-11-02 11:38:08 +00:00
|
|
|
if (!ds->show_color || !ds->colorop) {
|
2015-10-20 21:37:20 +00:00
|
|
|
return strdup (source);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2014-08-04 21:09:28 +00:00
|
|
|
|
|
|
|
r_cons_strcat (r_print_color_op_type (core->print, ds->analop.type));
|
|
|
|
|
|
|
|
// workaround dummy colorizer in case of paired commands (tms320 & friends)
|
|
|
|
|
2014-09-22 11:45:36 +00:00
|
|
|
spacer = strstr (source, "||");
|
2014-08-04 21:09:28 +00:00
|
|
|
if (spacer) {
|
2014-10-15 23:51:48 +00:00
|
|
|
char *scol1, *s1 = r_str_ndup (source, spacer - source);
|
2014-08-04 21:09:28 +00:00
|
|
|
char *scol2, *s2 = strdup (spacer + 2);
|
|
|
|
|
2017-06-20 20:48:46 +00:00
|
|
|
scol1 = r_print_colorize_opcode (ds->core->print, s1, ds->color_reg, ds->color_num, partial_reset);
|
2015-10-20 21:37:20 +00:00
|
|
|
free (s1);
|
2017-06-20 20:48:46 +00:00
|
|
|
scol2 = r_print_colorize_opcode (ds->core->print, s2, ds->color_reg, ds->color_num, partial_reset);
|
2015-10-20 21:37:20 +00:00
|
|
|
free (s2);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!scol1) {
|
|
|
|
scol1 = strdup ("");
|
|
|
|
}
|
|
|
|
if (!scol2) {
|
|
|
|
scol2 = strdup ("");
|
|
|
|
}
|
2014-08-04 21:09:28 +00:00
|
|
|
|
2016-10-26 23:42:00 +00:00
|
|
|
source = malloc (strlen (scol1) + strlen (scol2) + 2 + 1); // reuse source variable
|
2014-09-22 11:45:36 +00:00
|
|
|
sprintf (source, "%s||%s", scol1, scol2);
|
|
|
|
free (scol1);
|
|
|
|
free (scol2);
|
2014-08-04 21:09:28 +00:00
|
|
|
return source;
|
|
|
|
}
|
2017-06-20 20:48:46 +00:00
|
|
|
return r_print_colorize_opcode (ds->core->print, source, ds->color_reg, ds->color_num, partial_reset);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ds_highlight_word(RDisasmState * ds, char *word, char *color) {
|
|
|
|
char *source = ds->opstr? ds->opstr: ds->asmop.buf_asm;
|
|
|
|
char * asm_str = r_str_highlight (source, word, color);
|
|
|
|
ds->opstr = asm_str? asm_str:source;
|
2014-08-04 21:09:28 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_build_op_str(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2014-12-14 01:36:57 +00:00
|
|
|
if (!ds->opstr) {
|
2015-08-30 22:20:07 +00:00
|
|
|
ds->opstr = strdup (ds->asmop.buf_asm);
|
2014-12-14 01:36:57 +00:00
|
|
|
}
|
2015-09-27 23:00:06 +00:00
|
|
|
/* initialize */
|
|
|
|
core->parser->hint = ds->hint;
|
2017-03-27 02:48:55 +00:00
|
|
|
core->parser->relsub = r_config_get_i (core->config, "asm.relsub");
|
|
|
|
core->parser->relsub_addr = 0;
|
2014-12-13 17:06:01 +00:00
|
|
|
if (ds->varsub && ds->opstr) {
|
2016-11-04 02:15:17 +00:00
|
|
|
ut64 at = ds->vat;
|
|
|
|
RAnalFunction *f = r_anal_get_fcn_in (core->anal, at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
core->parser->varlist = r_anal_var_list_dynamic;
|
|
|
|
r_parse_varsub (core->parser, f, at, ds->analop.size,
|
|
|
|
ds->opstr, ds->strsub, sizeof (ds->strsub));
|
|
|
|
if (*ds->strsub) {
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->strsub);
|
|
|
|
}
|
2017-03-27 02:48:55 +00:00
|
|
|
if (core->parser->relsub) {
|
|
|
|
RList *list = r_anal_refs_get (core->anal, at);
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalRef *ref;
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
if ((ref->type == R_ANAL_REF_TYPE_DATA
|
|
|
|
|| ref->type == R_ANAL_REF_TYPE_STRING)
|
|
|
|
&& ds->analop.type == R_ANAL_OP_TYPE_LEA) {
|
|
|
|
core->parser->relsub_addr = ref->addr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-12-13 17:06:01 +00:00
|
|
|
}
|
2016-10-26 23:42:00 +00:00
|
|
|
char *asm_str = colorize_asm_string (core, ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->decode) {
|
|
|
|
char *tmpopstr = r_anal_op_to_string (core->anal, &ds->analop);
|
|
|
|
// TODO: Use data from code analysis..not raw ds->analop here
|
2014-01-16 17:04:42 +00:00
|
|
|
// if we want to get more information
|
2014-08-05 03:37:48 +00:00
|
|
|
ds->opstr = tmpopstr? tmpopstr: asm_str? strdup (asm_str): strdup ("");
|
2015-03-30 10:52:04 +00:00
|
|
|
} else {
|
|
|
|
if (ds->hint && ds->hint->opcode) {
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->hint->opcode);
|
|
|
|
}
|
|
|
|
if (ds->filter) {
|
|
|
|
int ofs = core->parser->flagspace;
|
|
|
|
int fs = ds->flagspace_ports;
|
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_IO) {
|
|
|
|
core->parser->notin_flagspace = -1;
|
2014-01-16 17:04:42 +00:00
|
|
|
core->parser->flagspace = fs;
|
|
|
|
} else {
|
2015-03-30 10:52:04 +00:00
|
|
|
if (fs != -1) {
|
|
|
|
core->parser->notin_flagspace = fs;
|
|
|
|
core->parser->flagspace = fs;
|
|
|
|
} else {
|
|
|
|
core->parser->notin_flagspace = -1;
|
|
|
|
core->parser->flagspace = -1;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2017-02-03 08:53:57 +00:00
|
|
|
if (ds->analop.refptr) {
|
|
|
|
ut64 num = r_io_read_i (core->io, ds->analop.ptr, 8);
|
2017-03-27 02:48:55 +00:00
|
|
|
if (core->parser->relsub_addr == 0) {
|
|
|
|
core->parser->relsub_addr = num;
|
|
|
|
}
|
2017-02-03 08:53:57 +00:00
|
|
|
}
|
2017-04-26 13:30:44 +00:00
|
|
|
r_parse_filter (core->parser, core->flags, asm_str, ds->str, sizeof (ds->str), core->print->big_endian);
|
2015-03-30 10:52:04 +00:00
|
|
|
core->parser->flagspace = ofs;
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->str);
|
|
|
|
} else {
|
2017-04-09 16:57:33 +00:00
|
|
|
free (ds->opstr);
|
2017-04-09 14:11:40 +00:00
|
|
|
ds->opstr = strdup (asm_str? asm_str: "");
|
2015-03-30 10:52:04 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2017-06-20 20:48:46 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
int i = 0;
|
|
|
|
char *word = NULL;
|
|
|
|
char *bgcolor = NULL;
|
|
|
|
char *wcdata = r_meta_get_string (ds->core->anal, R_META_TYPE_HIGHLIGHT, ds->at);
|
|
|
|
int argc = 0;
|
|
|
|
char **wc_array = r_str_argv (wcdata, &argc);
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
bgcolor = strchr (wc_array[i], '\x1b');
|
|
|
|
word = r_str_newlen (wc_array[i], bgcolor - wc_array[i]);
|
|
|
|
ds_highlight_word (ds, word, bgcolor);
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->use_esil) {
|
|
|
|
if (*R_STRBUF_SAFEGET (&ds->analop.esil)) {
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (R_STRBUF_SAFEGET (&ds->analop.esil));
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2016-06-10 17:09:13 +00:00
|
|
|
char *p = malloc (strlen (ds->opstr) + 6); /* What's up '\0' ? */
|
|
|
|
if (p) {
|
|
|
|
strcpy (p, "TODO,");
|
|
|
|
strcpy (p + 5, ds->opstr);
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = p;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-01 21:22:29 +00:00
|
|
|
free (asm_str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-08-10 16:49:44 +00:00
|
|
|
//removed hints bits from since r_anal_build_range_on_hints along with
|
|
|
|
//r_core_seek_archbits will be used instead. The ranges are built from hints
|
2016-04-27 20:17:19 +00:00
|
|
|
R_API RAnalHint *r_core_hint_begin(RCore *core, RAnalHint* hint, ut64 at) {
|
2013-01-24 02:48:24 +00:00
|
|
|
static char *hint_arch = NULL;
|
2015-05-09 22:12:33 +00:00
|
|
|
static char *hint_syntax = NULL;
|
2015-09-28 09:21:23 +00:00
|
|
|
r_anal_hint_free (hint);
|
2013-01-24 02:48:24 +00:00
|
|
|
hint = r_anal_hint_get (core->anal, at);
|
|
|
|
if (hint_arch) {
|
|
|
|
r_config_set (core->config, "asm.arch", hint_arch);
|
|
|
|
hint_arch = NULL;
|
|
|
|
}
|
2015-05-09 22:12:33 +00:00
|
|
|
if (hint_syntax) {
|
|
|
|
r_config_set (core->config, "asm.syntax", hint_syntax);
|
|
|
|
hint_syntax = NULL;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (hint) {
|
|
|
|
/* arch */
|
|
|
|
if (hint->arch) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!hint_arch) {
|
|
|
|
hint_arch = strdup (r_config_get (core->config, "asm.arch"));
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
r_config_set (core->config, "asm.arch", hint->arch);
|
|
|
|
}
|
2015-05-09 22:12:33 +00:00
|
|
|
/* arch */
|
|
|
|
if (hint->syntax) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!hint_syntax) {
|
|
|
|
hint_syntax = strdup (r_config_get (core->config, "asm.syntax"));
|
|
|
|
}
|
2015-05-09 22:12:33 +00:00
|
|
|
r_config_set (core->config, "asm.syntax", hint->syntax);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
return hint;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_beginline(RDisasmState *ds, RAnalFunction *f, bool nopre) {
|
2016-04-27 20:17:19 +00:00
|
|
|
const char *pre;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_setup_pre(ds, false, false);
|
2016-04-27 20:17:19 +00:00
|
|
|
pre = ds->pre;
|
2016-04-04 23:33:57 +00:00
|
|
|
if (nopre) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (*pre == '/' || *pre == '\\') {
|
2016-04-04 23:33:57 +00:00
|
|
|
pre = " ";
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2016-04-04 23:33:57 +00:00
|
|
|
}
|
2015-10-02 20:59:58 +00:00
|
|
|
if (ds->show_functions && ds->show_fcnlines) {
|
2016-05-04 15:13:44 +00:00
|
|
|
if (*pre == '\\') {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_set_pre (ds, ds->core->cons->vline[LINE_VERT]);
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_pre (ds);
|
2014-12-13 17:06:01 +00:00
|
|
|
}
|
2016-04-08 00:56:42 +00:00
|
|
|
char *tmp = ds->line;
|
|
|
|
ds->line = ds->refline2;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
2016-04-08 00:56:42 +00:00
|
|
|
ds->line = tmp;
|
2014-09-23 08:15:19 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_pre_xrefs(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2016-05-04 15:13:44 +00:00
|
|
|
if (ds->show_fcnlines) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_setup_pre (ds, false, false);
|
2017-01-24 01:19:12 +00:00
|
|
|
if (*ds->pre != ' ') {
|
2016-10-06 01:13:02 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[LINE_VERT]);
|
2017-03-16 21:29:49 +00:00
|
|
|
ds->pre = r_str_append (ds->pre, " ");
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
2016-04-27 20:17:19 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_pre (ds);
|
2016-04-27 20:17:19 +00:00
|
|
|
char *tmp = ds->line;
|
|
|
|
ds->line = ds->refline2;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
2016-04-27 20:17:19 +00:00
|
|
|
ds->line = tmp;
|
|
|
|
}
|
2016-05-04 15:13:44 +00:00
|
|
|
|
2016-08-25 16:41:49 +00:00
|
|
|
static void ds_show_refs(RDisasmState *ds) {
|
|
|
|
RList *list;
|
|
|
|
RAnalRef *ref;
|
|
|
|
RListIter *iter;
|
|
|
|
RFlagItem *flagi, *flagat;
|
2017-05-08 18:21:56 +00:00
|
|
|
char *nl = ds->show_comment_right ? "": "\n";
|
2016-08-25 16:41:49 +00:00
|
|
|
char *cmt;
|
|
|
|
|
|
|
|
if (!ds->show_cmtrefs) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
list = r_anal_xrefs_get_from (ds->core->anal, ds->at);
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
cmt = r_meta_get_string (ds->core->anal, R_META_TYPE_COMMENT, ref->addr);
|
|
|
|
flagi = r_flag_get_i (ds->core->flags, ref->addr);
|
2016-12-01 09:48:00 +00:00
|
|
|
flagat = r_flag_get_at (ds->core->flags, ref->addr, false);
|
2016-12-26 16:21:00 +00:00
|
|
|
//ds_align_comment (ds);
|
2016-08-25 16:41:49 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->color_comment);
|
|
|
|
}
|
|
|
|
if (flagi && flagat && (strcmp (flagi->name, flagat->name) != 0)) {
|
2016-12-27 14:40:02 +00:00
|
|
|
_ds_comment_align_ (ds, true, false);
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; (%s)%s", flagi->name, nl);
|
2016-08-25 16:41:49 +00:00
|
|
|
}
|
|
|
|
if (cmt) {
|
2016-12-27 14:40:02 +00:00
|
|
|
_ds_comment_align_ (ds, true, false);
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; (%s)%s", cmt, nl);
|
2016-08-25 16:41:49 +00:00
|
|
|
}
|
2016-09-26 21:13:49 +00:00
|
|
|
if (ref->type & R_ANAL_REF_TYPE_CALL) {
|
2016-09-12 16:41:11 +00:00
|
|
|
RAnalOp aop;
|
|
|
|
ut8 buf[12];
|
2016-09-26 21:13:49 +00:00
|
|
|
r_core_read_at (ds->core, ref->at, buf, sizeof (buf));
|
|
|
|
r_anal_op (ds->core->anal, &aop, ref->at, buf, sizeof (buf));
|
2016-09-22 16:06:10 +00:00
|
|
|
if ((aop.type & R_ANAL_OP_TYPE_MASK) == R_ANAL_OP_TYPE_UCALL) {
|
2016-09-26 21:13:49 +00:00
|
|
|
RAnalFunction * fcn = r_anal_get_fcn_at (ds->core->anal,
|
|
|
|
ref->addr, R_ANAL_FCN_TYPE_NULL);
|
2016-12-27 14:40:02 +00:00
|
|
|
_ds_comment_align_ (ds, true, false);
|
2016-09-12 16:41:11 +00:00
|
|
|
if (fcn) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s%s", fcn->name, nl);
|
2016-09-12 16:41:11 +00:00
|
|
|
} else {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; 0x%" PFMT64x"%s", ref->addr, nl);
|
2016-09-12 16:41:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-08-25 16:41:49 +00:00
|
|
|
ds_print_color_reset (ds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_show_xrefs(RDisasmState *ds) {
|
2015-07-25 01:31:17 +00:00
|
|
|
RList *xrefs;
|
|
|
|
RAnalRef *refi;
|
|
|
|
RListIter *iter;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2016-02-07 20:44:35 +00:00
|
|
|
bool demangle = r_config_get_i (core->config, "bin.demangle");
|
|
|
|
const char *lang = demangle ? r_config_get (core->config, "bin.lang") : NULL;
|
|
|
|
char *name, *tmp;
|
2015-07-25 01:31:17 +00:00
|
|
|
int count = 0;
|
2016-12-27 14:40:02 +00:00
|
|
|
if (!ds->show_xrefs || !ds->show_comments) {
|
2016-02-07 20:44:35 +00:00
|
|
|
return;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-07-25 01:31:17 +00:00
|
|
|
/* show xrefs */
|
|
|
|
xrefs = r_anal_xref_get (core->anal, ds->at);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!xrefs) {
|
|
|
|
return;
|
|
|
|
}
|
2015-07-25 01:31:17 +00:00
|
|
|
if (r_list_length (xrefs) > ds->maxrefs) {
|
2016-02-16 02:24:47 +00:00
|
|
|
int cols = r_cons_get_size (NULL);
|
|
|
|
cols -= 15;
|
|
|
|
cols /= 23;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_pre_xrefs (ds);
|
2016-12-26 19:10:10 +00:00
|
|
|
ds_comment (ds, false, " %s; XREFS: ", ds->show_color? ds->pal_comment: "");
|
2014-09-23 08:15:19 +00:00
|
|
|
r_list_foreach (xrefs, iter, refi) {
|
2016-12-26 16:21:00 +00:00
|
|
|
ds_comment (ds, false, "%s 0x%08"PFMT64x" ",
|
2015-07-25 01:31:17 +00:00
|
|
|
r_anal_xrefs_type_tostring (refi->type), refi->addr);
|
2016-02-16 02:24:47 +00:00
|
|
|
if (count == cols) {
|
2015-07-25 01:31:17 +00:00
|
|
|
if (iter->n) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2015-07-25 01:31:17 +00:00
|
|
|
r_cons_newline ();
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_pre_xrefs (ds);
|
2016-12-26 19:10:10 +00:00
|
|
|
ds_comment (ds, false, " %s; XREFS: ", ds->show_color? ds->pal_comment: "");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2015-07-25 01:31:17 +00:00
|
|
|
count = 0;
|
2016-09-23 14:28:48 +00:00
|
|
|
} else {
|
|
|
|
count++;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2015-07-25 01:31:17 +00:00
|
|
|
r_cons_newline ();
|
2014-09-23 08:15:19 +00:00
|
|
|
r_list_free (xrefs);
|
2015-07-25 01:31:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
r_list_foreach (xrefs, iter, refi) {
|
|
|
|
if (refi->at == ds->at) {
|
2017-01-24 00:41:12 +00:00
|
|
|
RAnalFunction *fun = r_anal_get_fcn_in (core->anal, refi->addr, -1);
|
|
|
|
if (fun) {
|
|
|
|
name = strdup (fun->name);
|
|
|
|
} else {
|
|
|
|
RFlagItem *f = r_flag_get_at (core->flags, refi->addr, true);
|
|
|
|
if (f) {
|
|
|
|
name = r_str_newf ("%s + %d", f->name, refi->addr - f->offset);
|
|
|
|
} else {
|
|
|
|
name = strdup ("unk");
|
|
|
|
}
|
|
|
|
}
|
2016-02-07 20:44:35 +00:00
|
|
|
if (demangle) {
|
2016-11-22 13:58:42 +00:00
|
|
|
tmp = r_bin_demangle (core->bin->cur, lang, name, refi->addr);
|
2016-02-07 20:44:35 +00:00
|
|
|
if (tmp) {
|
|
|
|
free (name);
|
2016-05-24 20:22:15 +00:00
|
|
|
name = tmp;
|
2016-02-07 20:44:35 +00:00
|
|
|
}
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_pre_xrefs (ds);
|
2016-12-26 19:10:10 +00:00
|
|
|
//those extra space to align
|
2017-01-31 09:00:24 +00:00
|
|
|
ds_comment (ds, false, " %s; %s XREF from 0x%08"PFMT64x" (%s)%s\n",
|
2017-05-08 18:21:06 +00:00
|
|
|
COLOR (ds, pal_comment), r_anal_xrefs_type_tostring (refi->type),
|
2016-12-26 19:10:10 +00:00
|
|
|
refi->addr, name, COLOR_RESET (ds));
|
2016-02-07 20:44:35 +00:00
|
|
|
R_FREE (name);
|
2015-07-25 01:31:17 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2015-07-25 01:31:17 +00:00
|
|
|
r_list_free (xrefs);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_atabs_option(RDisasmState *ds) {
|
2015-03-16 01:52:26 +00:00
|
|
|
int n, i = 0, comma = 0, word = 0;
|
|
|
|
int size, brackets = 0;
|
|
|
|
char *t, *b;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds || !ds->atabs) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2016-10-24 12:31:03 +00:00
|
|
|
size = strlen (ds->asmop.buf_asm) * (ds->atabs + 1) * 4;
|
2016-09-26 22:00:09 +00:00
|
|
|
if (size < 1 || size < strlen (ds->asmop.buf_asm)) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
free (ds->opstr);
|
2016-09-26 22:00:09 +00:00
|
|
|
ds->opstr = b = malloc (size + 1);
|
|
|
|
strncpy (b, ds->asmop.buf_asm, R_MIN (size, R_ASM_BUFSIZE));
|
|
|
|
b[size] = 0;
|
2015-03-16 01:52:26 +00:00
|
|
|
for (; *b; b++, i++) {
|
2016-09-26 22:00:09 +00:00
|
|
|
if (*b == '(' || *b == '[') {
|
2016-09-23 14:28:48 +00:00
|
|
|
brackets++;
|
|
|
|
}
|
2016-09-26 22:00:09 +00:00
|
|
|
if (*b == ')' || *b == ']') {
|
2016-09-23 14:28:48 +00:00
|
|
|
brackets--;
|
|
|
|
}
|
2016-09-26 22:00:09 +00:00
|
|
|
if (*b == ',') {
|
2016-09-23 14:28:48 +00:00
|
|
|
comma = 1;
|
|
|
|
}
|
2016-09-26 22:00:09 +00:00
|
|
|
if (*b != ' ') {
|
2016-09-23 14:28:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (word > 0 && !comma) {
|
|
|
|
continue; //&& b[1]=='[') continue;
|
|
|
|
}
|
|
|
|
if (brackets > 0) {
|
|
|
|
continue;
|
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
comma = 0;
|
|
|
|
brackets = 0;
|
|
|
|
n = (ds->atabs-i);
|
2016-09-26 22:00:09 +00:00
|
|
|
t = strdup (b + 1); //XXX slow!
|
2016-09-23 14:28:48 +00:00
|
|
|
if (n < 1) {
|
|
|
|
n = 1;
|
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
memset (b, ' ', n);
|
|
|
|
b += n;
|
|
|
|
strcpy (b, t);
|
|
|
|
free (t);
|
|
|
|
i = 0;
|
|
|
|
word++;
|
2015-07-15 13:14:51 +00:00
|
|
|
if (ds->atabsonce) {
|
|
|
|
break;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-28 01:23:29 +00:00
|
|
|
static int handleMidFlags(RCore *core, RDisasmState *ds, bool print) {
|
|
|
|
RFlagItem *fi;
|
|
|
|
int i;
|
2017-04-28 03:50:04 +00:00
|
|
|
ds->hasMidflag = false;
|
2017-05-11 10:47:48 +00:00
|
|
|
|
2017-05-11 10:49:03 +00:00
|
|
|
if (ds->midcursor && core->print->cur != -1) {
|
2017-05-11 10:47:48 +00:00
|
|
|
ut64 cur = core->offset + core->print->cur;
|
|
|
|
ut64 from = ds->at;
|
|
|
|
ut64 to = ds->at + ds->oplen;
|
|
|
|
if (cur > from && cur < to) {
|
|
|
|
return cur - from;
|
|
|
|
}
|
|
|
|
}
|
2015-11-28 01:23:29 +00:00
|
|
|
for (i = 1; i < ds->oplen; i++) {
|
|
|
|
fi = r_flag_get_i (core->flags, ds->at + i);
|
|
|
|
if (fi) {
|
2017-04-28 03:50:04 +00:00
|
|
|
if (ds->midflags == 2 && (fi->name[0] == '$' || fi->realname[0] == '$')) {
|
|
|
|
i = 0;
|
|
|
|
} else if (!strncmp (fi->name, "hit.", 4)) { // use search.prefix ?
|
|
|
|
i = 0;
|
|
|
|
} else if (!strncmp (fi->name, "str.", 4)) {
|
2016-06-13 23:52:46 +00:00
|
|
|
ds->midflags = R_MIDFLAGS_REALIGN;
|
2017-04-28 03:50:04 +00:00
|
|
|
} else if (!strncmp (fi->name, "reloc.", 6)) {
|
2015-11-28 01:23:29 +00:00
|
|
|
if (print) {
|
|
|
|
r_cons_printf ("(%s)\n", fi->name);
|
|
|
|
}
|
|
|
|
continue;
|
2017-04-28 03:50:04 +00:00
|
|
|
} else if (ds->midflags == R_MIDFLAGS_SYMALIGN) {
|
|
|
|
if (strncmp (fi->name, "sym.", 4)) {
|
|
|
|
continue;
|
2016-11-02 11:10:50 +00:00
|
|
|
}
|
|
|
|
}
|
2017-04-28 03:50:04 +00:00
|
|
|
ds->hasMidflag = true;
|
2015-11-28 01:23:29 +00:00
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_show_cursor(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2015-11-28 01:23:29 +00:00
|
|
|
char res[] = " ";
|
2015-07-25 01:31:17 +00:00
|
|
|
void *p;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds->show_marks) {
|
2015-07-25 01:31:17 +00:00
|
|
|
return;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2017-05-13 10:41:30 +00:00
|
|
|
int q = core->print->cur_enabled &&
|
2014-05-04 15:21:05 +00:00
|
|
|
ds->cursor >= ds->index &&
|
2015-11-27 15:16:44 +00:00
|
|
|
ds->cursor < (ds->index + ds->asmop.size);
|
2015-07-25 01:31:17 +00:00
|
|
|
p = r_bp_get_at (core->dbg->bp, ds->at);
|
2017-05-13 10:41:30 +00:00
|
|
|
if (ds->midflags) {
|
|
|
|
(void)handleMidFlags (core, ds, false);
|
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (p) {
|
|
|
|
res[0] = 'b';
|
|
|
|
}
|
2017-04-28 03:50:04 +00:00
|
|
|
if (ds->hasMidflag) {
|
2016-09-23 14:28:48 +00:00
|
|
|
res[1] = '~';
|
|
|
|
}
|
2015-11-27 15:16:44 +00:00
|
|
|
if (q) {
|
|
|
|
if (ds->cursor == ds->index) {
|
2015-11-28 01:23:29 +00:00
|
|
|
res[2] = '*';
|
2015-11-27 15:16:44 +00:00
|
|
|
} else {
|
2015-11-28 01:23:29 +00:00
|
|
|
int i = 2, diff = ds->cursor - ds->index;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (diff > 9) {
|
|
|
|
res[i++] = '0' + (diff / 10);
|
|
|
|
}
|
2015-11-27 15:16:44 +00:00
|
|
|
res[i] = '0' + (diff % 10);
|
|
|
|
}
|
|
|
|
}
|
2015-11-27 13:09:37 +00:00
|
|
|
r_cons_strcat (res);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-03-03 23:33:24 +00:00
|
|
|
static int var_comparator(const RAnalVar *a, const RAnalVar *b){
|
2016-09-23 14:28:48 +00:00
|
|
|
if (a && b) {
|
|
|
|
return a->delta > b->delta;
|
|
|
|
}
|
2015-09-14 10:35:38 +00:00
|
|
|
return false;
|
2015-03-30 14:03:11 +00:00
|
|
|
}
|
|
|
|
|
2016-09-09 17:28:47 +00:00
|
|
|
//TODO: this function is a temporary fix. All analysis should be based on realsize. However, now for same architectures realisze is not used
|
2016-09-13 22:22:43 +00:00
|
|
|
static ut32 tmp_get_realsize (RAnalFunction *f) {
|
2016-09-09 17:28:47 +00:00
|
|
|
ut32 size = r_anal_fcn_realsize (f);
|
2016-09-13 22:22:43 +00:00
|
|
|
return (size > 0) ? size : r_anal_fcn_size (f);
|
2016-09-09 17:28:47 +00:00
|
|
|
}
|
|
|
|
|
2017-03-17 10:54:34 +00:00
|
|
|
static void ds_show_functions_argvar(RDisasmState *ds, RAnalVar *var, const char *base, bool is_var, char sign) {
|
|
|
|
int delta = sign == '+' ? var->delta : -var->delta;
|
|
|
|
const char *arg_or_var = is_var ? "var" : "arg";
|
|
|
|
r_cons_printf ("%s %s %s @ %s%c0x%x", arg_or_var, var->type, var->name,
|
|
|
|
base, sign, delta);
|
|
|
|
}
|
|
|
|
|
2017-04-07 19:09:33 +00:00
|
|
|
static void printVarSummary(RDisasmState *ds, RList *list, const char *name) {
|
|
|
|
RAnalVar *var;
|
|
|
|
RListIter *iter;
|
|
|
|
int vars = 0;
|
|
|
|
int args = 0;
|
|
|
|
r_list_foreach (list, iter, var) {
|
|
|
|
if (var->delta > 0) {
|
|
|
|
args++;
|
|
|
|
} else {
|
|
|
|
vars++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_printf ("%s%s%s", COLOR (ds, color_fline), ds->pre, COLOR_RESET (ds));
|
|
|
|
r_cons_printf ("%s: %d (vars %d, args %d)\n", name, vars + args, vars, args);
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_show_functions(RDisasmState *ds) {
|
2015-03-16 01:52:26 +00:00
|
|
|
RAnalFunction *f;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2016-05-14 09:04:07 +00:00
|
|
|
bool demangle, call;
|
2016-02-16 01:08:09 +00:00
|
|
|
const char *lang;
|
2016-02-07 20:44:35 +00:00
|
|
|
char *fcn_name;
|
2015-03-16 01:52:26 +00:00
|
|
|
char *sign;
|
2016-05-04 15:13:44 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
if (!ds->show_functions) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
2016-02-16 01:08:09 +00:00
|
|
|
demangle = r_config_get_i (core->config, "bin.demangle");
|
2016-05-14 09:04:07 +00:00
|
|
|
call = r_config_get_i (core->config, "asm.calls");
|
2016-02-16 01:08:09 +00:00
|
|
|
lang = demangle ? r_config_get (core->config, "bin.lang") : NULL;
|
2015-03-16 01:52:26 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2016-05-04 15:13:44 +00:00
|
|
|
if (!f || (f->addr != ds->at)) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
2016-02-07 20:44:35 +00:00
|
|
|
if (demangle) {
|
2016-11-22 13:58:42 +00:00
|
|
|
fcn_name = r_bin_demangle (core->bin->cur, lang, f->name, f->addr);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!fcn_name) {
|
2016-02-07 20:44:35 +00:00
|
|
|
fcn_name = strdup (f->name);
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2016-02-07 20:44:35 +00:00
|
|
|
} else {
|
|
|
|
fcn_name = f->name;
|
2015-03-16 01:52:26 +00:00
|
|
|
}
|
|
|
|
sign = r_anal_fcn_to_string (core->anal, f);
|
|
|
|
if (f->type == R_ANAL_FCN_TYPE_LOC) {
|
2015-11-02 11:38:08 +00:00
|
|
|
r_cons_printf ("%s%s ", COLOR (ds, color_fline),
|
|
|
|
core->cons->vline[LINE_CROSS]); // |-
|
|
|
|
r_cons_printf ("%s%s%s %d\n", COLOR (ds, color_floc),
|
2016-05-15 12:37:22 +00:00
|
|
|
fcn_name, COLOR_RESET (ds), r_anal_fcn_size (f));
|
2015-03-16 01:52:26 +00:00
|
|
|
} else {
|
2015-11-02 11:38:08 +00:00
|
|
|
const char *space = ds->show_fcnlines ? " " : "";
|
|
|
|
const char *fcntype;
|
2016-03-15 10:47:13 +00:00
|
|
|
char cmt[32];
|
|
|
|
get_bits_comment (core, f, cmt, sizeof (cmt));
|
2015-11-02 11:38:08 +00:00
|
|
|
|
|
|
|
switch (f->type) {
|
|
|
|
case R_ANAL_FCN_TYPE_FCN:
|
|
|
|
case R_ANAL_FCN_TYPE_SYM:
|
|
|
|
fcntype = "fcn"; break;
|
|
|
|
case R_ANAL_FCN_TYPE_IMP:
|
|
|
|
fcntype = "imp"; break;
|
|
|
|
default:
|
|
|
|
fcntype = "loc"; break;
|
|
|
|
}
|
2014-12-14 22:08:05 +00:00
|
|
|
#if SLOW_BUT_OK
|
2015-11-02 11:38:08 +00:00
|
|
|
int corner = (f->size <= ds->analop.size) ? RDWN_CORNER : LINE_VERT;
|
2015-03-16 01:52:26 +00:00
|
|
|
corner = LINE_VERT; // 99% of cases
|
|
|
|
RFlagItem *item = r_flag_get_i (core->flags, f->addr);
|
2015-11-02 11:38:08 +00:00
|
|
|
corner = item ? LINE_VERT : RDWN_CORNER;
|
|
|
|
if (item) {
|
2015-03-16 01:52:26 +00:00
|
|
|
corner = 0;
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
#endif
|
2016-10-20 23:24:40 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[CORNER_TL]);
|
2016-03-03 23:33:24 +00:00
|
|
|
if (ds->show_flgoff) {
|
|
|
|
r_cons_printf ("%s%s", COLOR (ds, color_fline), ds->pre);
|
2016-03-09 09:08:53 +00:00
|
|
|
if (ds->show_fcnlines) {
|
2016-03-03 23:33:24 +00:00
|
|
|
r_cons_printf (" ");
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
|
|
|
ds_print_offset (ds);
|
2016-03-15 10:47:13 +00:00
|
|
|
r_cons_printf ("%s%s%s(%s) %s%s%s %d\n",
|
2016-03-03 23:33:24 +00:00
|
|
|
space, COLOR_RESET (ds), COLOR (ds, color_fname),
|
2016-09-09 17:28:47 +00:00
|
|
|
fcntype, fcn_name, cmt, COLOR_RESET (ds), tmp_get_realsize (f));
|
2016-03-03 23:33:24 +00:00
|
|
|
} else {
|
2016-03-15 10:47:13 +00:00
|
|
|
r_cons_printf ("%s%s%s%s%s(%s) %s%s%s %d\n",
|
2016-03-03 23:33:24 +00:00
|
|
|
COLOR (ds, color_fline), ds->pre,
|
|
|
|
space, COLOR_RESET (ds), COLOR (ds, color_fname),
|
2016-09-09 17:28:47 +00:00
|
|
|
fcntype, fcn_name, cmt, COLOR_RESET (ds), tmp_get_realsize (f));
|
2016-03-03 23:33:24 +00:00
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (sign) {
|
2016-02-07 20:44:35 +00:00
|
|
|
r_cons_printf ("// %s\n", sign);
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-07-25 01:31:17 +00:00
|
|
|
R_FREE (sign);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[LINE_VERT]);
|
2016-05-04 15:13:44 +00:00
|
|
|
if (ds->show_fcnlines) {
|
2017-03-16 21:29:49 +00:00
|
|
|
ds->pre = r_str_append (ds->pre, " ");
|
2016-05-04 15:13:44 +00:00
|
|
|
}
|
2017-01-31 09:00:24 +00:00
|
|
|
ds->stackptr = core->anal->stackptr;
|
2017-04-07 19:09:33 +00:00
|
|
|
if (ds->show_vars && ds->show_varsum) {
|
|
|
|
RList *bp_vars = r_anal_var_list (core->anal, f, 'b');
|
|
|
|
RList *rg_vars = r_anal_var_list (core->anal, f, 'r');
|
|
|
|
RList *sp_vars = r_anal_var_list (core->anal, f, 's');
|
|
|
|
printVarSummary (ds, bp_vars, "bp");
|
|
|
|
printVarSummary (ds, sp_vars, "sp");
|
|
|
|
printVarSummary (ds, rg_vars, "rg");
|
|
|
|
r_list_free (bp_vars);
|
|
|
|
r_list_free (rg_vars);
|
|
|
|
r_list_free (sp_vars);
|
|
|
|
} else if (ds->show_vars) {
|
2015-03-16 01:52:26 +00:00
|
|
|
char spaces[32];
|
2016-05-14 09:04:07 +00:00
|
|
|
RAnalVar *var;
|
|
|
|
RListIter *iter;
|
2016-07-01 14:15:29 +00:00
|
|
|
RList *args = r_anal_var_list (core->anal, f, 'b');
|
|
|
|
RList *regs = r_anal_var_list (core->anal, f, 'r');
|
|
|
|
RList *sp_vars = r_anal_var_list (core->anal, f, 's');
|
2015-03-30 22:49:45 +00:00
|
|
|
r_list_sort (args, (RListComparator)var_comparator);
|
2016-06-05 22:33:42 +00:00
|
|
|
r_list_sort (regs, (RListComparator)var_comparator);
|
2016-05-01 12:48:04 +00:00
|
|
|
r_list_sort (sp_vars, (RListComparator)var_comparator);
|
2016-05-14 09:04:07 +00:00
|
|
|
if (call) {
|
|
|
|
r_cons_printf ("%s%s%s %s %s%s (",
|
|
|
|
COLOR (ds, color_fline), ds->pre,
|
|
|
|
COLOR_RESET (ds), COLOR (ds, color_fname),
|
|
|
|
fcn_name, COLOR_RESET (ds));
|
2016-09-15 09:09:23 +00:00
|
|
|
bool comma = true;
|
|
|
|
bool arg_bp = false;
|
|
|
|
int tmp_len;
|
|
|
|
r_list_foreach (regs, iter, var) {
|
|
|
|
tmp_len = strlen (var->type);
|
|
|
|
r_cons_printf ("%s%s%s%s", var->type,
|
|
|
|
tmp_len && var->type[tmp_len - 1] == '*' ? "" : " ",
|
|
|
|
var->name, iter->n ? ", " : "");
|
|
|
|
}
|
2016-05-14 09:04:07 +00:00
|
|
|
r_list_foreach (args, iter, var) {
|
2016-09-15 09:09:23 +00:00
|
|
|
if (var->delta > 0) {
|
|
|
|
if (!r_list_empty (regs) && comma) {
|
|
|
|
r_cons_printf (", ");
|
|
|
|
comma = false;
|
|
|
|
}
|
|
|
|
arg_bp = true;
|
|
|
|
tmp_len = strlen (var->type);
|
|
|
|
r_cons_printf ("%s%s%s%s", var->type,
|
|
|
|
tmp_len && var->type[tmp_len - 1] =='*' ? "" : " ",
|
|
|
|
var->name, iter->n ? ", " : "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
comma = true;
|
|
|
|
r_list_foreach (sp_vars, iter, var) {
|
2017-03-09 12:23:41 +00:00
|
|
|
if (var->delta > f->maxstack) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if ((arg_bp || !r_list_empty (regs)) && comma) {
|
2016-09-15 09:09:23 +00:00
|
|
|
comma = false;
|
|
|
|
r_cons_printf (", ");
|
|
|
|
}
|
|
|
|
tmp_len = strlen (var->type);
|
|
|
|
r_cons_printf ("%s%s%s%s", var->type,
|
|
|
|
tmp_len && var->type[tmp_len - 1] =='*' ? "" : " ",
|
|
|
|
var->name, iter->n ? ", " : "");
|
|
|
|
}
|
2016-05-14 09:04:07 +00:00
|
|
|
}
|
|
|
|
r_cons_printf (");\n");
|
|
|
|
}
|
2016-06-05 22:33:42 +00:00
|
|
|
r_list_join (args, sp_vars);
|
|
|
|
r_list_join (args, regs);
|
2015-03-30 14:03:11 +00:00
|
|
|
r_list_foreach (args, iter, var) {
|
2016-05-18 23:22:43 +00:00
|
|
|
char *tmp;
|
2015-03-16 01:52:26 +00:00
|
|
|
int idx;
|
2016-06-05 22:33:42 +00:00
|
|
|
RAnal *anal = ds->core->anal;
|
2015-03-16 01:52:26 +00:00
|
|
|
memset (spaces, ' ', sizeof(spaces));
|
2015-11-02 11:38:08 +00:00
|
|
|
idx = 12 - strlen (var->name);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (idx < 0) {
|
|
|
|
idx = 0;
|
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
spaces[idx] = 0;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_setup_print_pre (ds, false, true);
|
2016-05-18 23:22:43 +00:00
|
|
|
|
|
|
|
tmp = ds->line;
|
|
|
|
ds->line = ds->refline2;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
2016-05-18 23:22:43 +00:00
|
|
|
ds->line = tmp;
|
|
|
|
|
2016-04-04 22:56:48 +00:00
|
|
|
if (ds->show_flgoff) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_offset (ds);
|
2016-04-04 23:33:57 +00:00
|
|
|
r_cons_printf (" ");
|
2016-04-04 22:56:48 +00:00
|
|
|
}
|
2016-04-10 18:59:11 +00:00
|
|
|
r_cons_printf ("%s; ", COLOR (ds, color_other));
|
|
|
|
switch (var->kind) {
|
2017-03-17 10:54:34 +00:00
|
|
|
case 'b': {
|
|
|
|
char sign = var->delta > 0 ? '+' : '-';
|
|
|
|
bool is_var = var->delta <= 0;
|
|
|
|
ds_show_functions_argvar (ds, var,
|
|
|
|
anal->reg->name[R_REG_NAME_BP], is_var, sign);
|
2016-06-05 22:33:42 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-07-01 14:15:29 +00:00
|
|
|
case 'r': {
|
2016-06-05 22:33:42 +00:00
|
|
|
RRegItem *i = r_reg_index_get (anal->reg, var->delta);
|
|
|
|
if (!i) {
|
|
|
|
eprintf("Register not found");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
r_cons_printf ("reg %s %s @ %s",
|
|
|
|
var->type, var->name, i->name);
|
2016-04-10 18:59:11 +00:00
|
|
|
}
|
|
|
|
break;
|
2017-03-17 10:54:34 +00:00
|
|
|
case 's': {
|
|
|
|
bool is_var = var->delta < f->maxstack;
|
|
|
|
ds_show_functions_argvar (ds, var,
|
|
|
|
anal->reg->name[R_REG_NAME_SP],
|
|
|
|
is_var, '+');
|
2016-06-05 22:33:42 +00:00
|
|
|
}
|
2016-05-01 12:48:04 +00:00
|
|
|
break;
|
2016-06-05 22:33:42 +00:00
|
|
|
}
|
2016-06-12 21:39:40 +00:00
|
|
|
char *comment = r_meta_get_var_comment (anal, var->kind, var->delta, f->addr);
|
2016-06-10 16:08:12 +00:00
|
|
|
if (comment) {
|
2016-12-13 12:06:22 +00:00
|
|
|
r_cons_printf (" %s; %s", COLOR(ds, color_comment), comment);
|
2016-06-10 16:08:12 +00:00
|
|
|
}
|
2016-06-26 04:51:17 +00:00
|
|
|
r_cons_println (COLOR_RESET (ds));
|
2014-12-18 11:54:36 +00:00
|
|
|
}
|
2016-06-05 22:33:42 +00:00
|
|
|
r_list_free (regs);
|
2015-03-16 01:52:26 +00:00
|
|
|
// it's already empty, but rlist instance is still there
|
|
|
|
r_list_free (args);
|
2016-06-05 22:33:42 +00:00
|
|
|
r_list_free (sp_vars);
|
2014-12-13 17:06:01 +00:00
|
|
|
}
|
2016-09-26 21:13:49 +00:00
|
|
|
if (demangle) {
|
2016-02-07 20:44:35 +00:00
|
|
|
free (fcn_name);
|
2016-09-26 21:13:49 +00:00
|
|
|
}
|
2014-12-13 17:06:01 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_setup_print_pre(RDisasmState *ds, bool tail, bool middle) {
|
|
|
|
ds_setup_pre (ds, tail, middle);
|
|
|
|
ds_print_pre (ds);
|
2016-04-27 20:17:19 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_setup_pre(RDisasmState *ds, bool tail, bool middle) {
|
|
|
|
RCore *core = ds->core;
|
2016-03-03 23:33:24 +00:00
|
|
|
RAnalFunction *f;
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds->show_functions) {
|
|
|
|
return;
|
|
|
|
}
|
2016-03-03 23:33:24 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
if (f) {
|
|
|
|
if (f->addr == ds->at) {
|
2016-05-18 23:22:43 +00:00
|
|
|
if (ds->analop.size == r_anal_fcn_size (f) && !middle) {
|
2016-10-20 23:24:40 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[CORNER_BL]);
|
2016-03-03 23:33:24 +00:00
|
|
|
} else {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[LINE_VERT]);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2016-05-15 12:37:22 +00:00
|
|
|
} else if (f->addr + r_anal_fcn_size (f) - ds->analop.size == ds->at) {
|
2016-10-20 23:24:40 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[CORNER_BL]);
|
2016-05-14 14:37:24 +00:00
|
|
|
} else if (r_anal_fcn_is_in_offset (f, ds->at)) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_set_pre (ds, core->cons->vline[LINE_VERT]);
|
2016-03-03 23:33:24 +00:00
|
|
|
}
|
|
|
|
if (ds->show_fcnlines) {
|
2017-03-16 21:29:49 +00:00
|
|
|
ds->pre = r_str_append (ds->pre, " ");
|
2016-03-03 23:33:24 +00:00
|
|
|
}
|
|
|
|
if (tail) {
|
|
|
|
r_str_replace_char (ds->pre, '\\', ' ');
|
|
|
|
r_str_replace_char (ds->pre, '|', '\\');
|
|
|
|
}
|
2016-04-27 20:17:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_pre(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2016-04-27 20:17:19 +00:00
|
|
|
RAnalFunction *f;
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2016-04-27 20:17:19 +00:00
|
|
|
if (!ds->show_functions) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
if (f) {
|
2016-03-03 23:33:24 +00:00
|
|
|
r_cons_printf ("%s%s%s", COLOR (ds, color_fline),
|
|
|
|
ds->pre, COLOR_RESET (ds));
|
|
|
|
} else {
|
|
|
|
if (ds->show_lines) {
|
|
|
|
r_cons_printf (" ");
|
|
|
|
} else if (ds->show_fcnlines) {
|
|
|
|
r_cons_printf (" ");
|
2015-03-27 12:16:40 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-24 17:17:25 +00:00
|
|
|
//XXX review this with asm.cmtright
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_show_comments_right(RDisasmState *ds) {
|
2015-06-04 22:19:41 +00:00
|
|
|
int linelen, maxclen ;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2015-03-16 01:52:26 +00:00
|
|
|
RFlagItem *item;
|
2014-01-16 17:04:42 +00:00
|
|
|
/* show comment at right? */
|
2015-06-04 22:19:41 +00:00
|
|
|
int scr = ds->show_comment_right;
|
2016-05-17 08:36:33 +00:00
|
|
|
if (!ds->show_comments) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-05-17 08:36:33 +00:00
|
|
|
}
|
2017-01-11 11:23:48 +00:00
|
|
|
//RAnalFunction *f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2015-03-16 01:52:26 +00:00
|
|
|
item = r_flag_get_i (core->flags, ds->at);
|
|
|
|
ds->comment = r_meta_get_string (core->anal, R_META_TYPE_COMMENT, ds->at);
|
2015-04-11 02:33:37 +00:00
|
|
|
if (!ds->comment && item && item->comment && *item->comment) {
|
2015-03-16 01:52:26 +00:00
|
|
|
ds->ocomment = item->comment;
|
|
|
|
ds->comment = strdup (item->comment);
|
|
|
|
}
|
2016-05-17 08:36:33 +00:00
|
|
|
if (!ds->comment) {
|
2015-03-16 01:52:26 +00:00
|
|
|
return;
|
2016-05-17 08:36:33 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
maxclen = strlen (ds->comment) + 5;
|
2015-03-16 01:52:26 +00:00
|
|
|
linelen = maxclen;
|
|
|
|
if (ds->show_comment_right_default) {
|
2016-12-24 17:17:25 +00:00
|
|
|
if (ds->ocols + maxclen < core->cons->columns) {
|
2016-12-26 19:10:10 +00:00
|
|
|
if (ds->comment && *ds->comment && strlen (ds->comment) < maxclen) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!strchr (ds->comment, '\n')) { // more than one line?
|
2015-03-16 01:52:26 +00:00
|
|
|
ds->show_comment_right = 1;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!ds->show_comment_right) {
|
2016-12-26 19:10:10 +00:00
|
|
|
int mycols = ds->lcols;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (mycols + linelen + 10 > core->cons->columns) {
|
2015-03-16 01:52:26 +00:00
|
|
|
mycols = 0;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
mycols /= 2;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2015-06-01 23:04:10 +00:00
|
|
|
/* print multiline comment */
|
|
|
|
if (ds->cmtfold) {
|
|
|
|
char * p = strdup (ds->comment);
|
2016-04-08 00:56:42 +00:00
|
|
|
char *q = strchr (p, '\n');
|
2015-06-01 23:04:10 +00:00
|
|
|
if (q) {
|
|
|
|
*q = 0;
|
|
|
|
r_cons_strcat (p);
|
|
|
|
r_cons_strcat (" ; [z] unfold");
|
|
|
|
}
|
|
|
|
free (p);
|
|
|
|
} else {
|
2016-12-26 19:10:10 +00:00
|
|
|
ds->comment = r_str_prefix_all (ds->comment, "; ");
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2016-12-26 19:10:10 +00:00
|
|
|
ds_comment (ds, false, ds->comment);
|
2015-06-01 23:04:10 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
ds_print_color_reset (ds);
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->comment);
|
2016-12-26 19:10:10 +00:00
|
|
|
r_cons_newline ();
|
2015-03-16 01:52:26 +00:00
|
|
|
/* flag one */
|
|
|
|
if (item && item->comment && ds->ocomment != item->comment) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2015-03-16 01:52:26 +00:00
|
|
|
r_cons_newline ();
|
|
|
|
r_cons_strcat (" ; ");
|
|
|
|
r_cons_strcat_justify (item->comment, mycols, ';');
|
|
|
|
r_cons_newline ();
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
ds_print_color_reset (ds);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2015-06-04 22:19:41 +00:00
|
|
|
ds->show_comment_right = scr;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_show_flags(RDisasmState *ds) {
|
2016-03-23 21:13:55 +00:00
|
|
|
//const char *beginch;
|
2016-03-03 23:33:24 +00:00
|
|
|
RFlagItem *flag;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalFunction *f;
|
|
|
|
const RList /*RFlagList*/ *flaglist;
|
|
|
|
if (!ds->show_flags) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2016-03-03 23:33:24 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
flaglist = r_flag_get_list (core->flags, ds->at);
|
|
|
|
r_list_foreach (flaglist, iter, flag) {
|
|
|
|
if (f && f->addr == flag->offset && !strcmp (flag->name, f->name)) {
|
|
|
|
// do not show flags that have the same name as the function
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (ds->show_flgoff) {
|
|
|
|
if (f) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_beginline (ds, f, false);
|
2015-01-17 00:56:20 +00:00
|
|
|
} else {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
2016-12-20 13:54:29 +00:00
|
|
|
if (ds->show_fcnlines) {
|
|
|
|
r_cons_printf (" ");
|
|
|
|
}
|
2016-03-03 23:33:24 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_offset (ds);
|
2016-03-03 23:33:24 +00:00
|
|
|
r_cons_printf (" ");
|
|
|
|
} else {
|
2016-12-24 17:17:25 +00:00
|
|
|
r_cons_printf ((f && ds->at > f->addr)? "| " : " ");
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_lines_left (ds);
|
2016-03-03 23:33:24 +00:00
|
|
|
r_cons_printf (";-- ");
|
|
|
|
}
|
2016-12-20 13:54:29 +00:00
|
|
|
if (ds->show_color) {
|
2016-03-03 23:33:24 +00:00
|
|
|
r_cons_strcat (ds->color_flag);
|
2016-12-20 13:54:29 +00:00
|
|
|
}
|
2016-08-23 11:11:30 +00:00
|
|
|
if (ds->asm_demangle && flag->realname) {
|
2016-03-03 23:33:24 +00:00
|
|
|
const char *lang = r_config_get (core->config, "bin.lang");
|
2016-11-22 13:58:42 +00:00
|
|
|
char *name = r_bin_demangle (core->bin->cur, lang, flag->realname, flag->offset);
|
2016-03-09 08:50:30 +00:00
|
|
|
r_cons_printf ("%s:\n", name? name: flag->realname);
|
2016-03-03 23:33:24 +00:00
|
|
|
R_FREE (name);
|
|
|
|
} else {
|
2016-03-09 08:50:30 +00:00
|
|
|
r_cons_printf ("%s:\n", flag->name);
|
2015-01-17 00:56:20 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_update_ref_lines(RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_lines) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->line = r_anal_reflines_str (ds->core, ds->at, ds->linesopts);
|
2017-01-15 23:41:31 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
char *newstr = r_str_newf ("%s%s%s", ds->color_flow2, "|", ds->color_flow);
|
|
|
|
ds->line = r_str_replace (ds->line, ds->core->cons->vline[LINE_UP], newstr, true);
|
|
|
|
free (newstr);
|
|
|
|
}
|
2016-04-03 22:17:57 +00:00
|
|
|
free (ds->refline);
|
2016-04-04 20:30:11 +00:00
|
|
|
ds->refline = ds->line? strdup (ds->line): NULL;
|
2016-04-03 22:17:57 +00:00
|
|
|
free (ds->refline2);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->refline2 = r_anal_reflines_str (ds->core, ds->at,
|
2015-11-06 14:46:14 +00:00
|
|
|
ds->linesopts | R_ANAL_REFLINE_TYPE_MIDDLE);
|
2015-08-30 21:34:21 +00:00
|
|
|
if (ds->line) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (strchr (ds->line, '<')) {
|
2015-08-30 21:34:21 +00:00
|
|
|
ds->indent_level++;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
|
|
|
if (strchr (ds->line, '>')) {
|
2015-08-30 21:34:21 +00:00
|
|
|
ds->indent_level--;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-08-30 21:34:21 +00:00
|
|
|
} else {
|
|
|
|
ds->indent_level = 0;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->line);
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->refline = strdup ("");
|
|
|
|
ds->refline2 = strdup ("");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static int ds_disassemble(RDisasmState *ds, ut8 *buf, int len) {
|
|
|
|
RCore *core = ds->core;
|
2016-04-20 23:38:08 +00:00
|
|
|
int ret;
|
2017-02-03 08:53:57 +00:00
|
|
|
const char *info;
|
2017-01-29 19:30:17 +00:00
|
|
|
Sdb *s = core->anal->sdb_meta;
|
|
|
|
char key[100];
|
2017-01-31 22:33:27 +00:00
|
|
|
ut64 mt_sz = UT64_MAX;
|
2017-01-29 19:30:17 +00:00
|
|
|
|
|
|
|
//handle meta info to fix ds->oplen
|
|
|
|
snprintf (key, sizeof (key) - 1, "meta.0x%"PFMT64x, ds->at);
|
|
|
|
info = sdb_const_get (s, key, 0);
|
|
|
|
if (info) {
|
|
|
|
for (;*info; info++) {
|
2017-01-31 22:33:27 +00:00
|
|
|
switch (*info) {
|
|
|
|
case R_META_TYPE_DATA:
|
|
|
|
case R_META_TYPE_STRING:
|
|
|
|
case R_META_TYPE_FORMAT:
|
|
|
|
case R_META_TYPE_MAGIC:
|
|
|
|
case R_META_TYPE_HIDE:
|
2017-02-03 08:53:57 +00:00
|
|
|
snprintf (key, sizeof (key) - 1,
|
2017-01-31 22:33:27 +00:00
|
|
|
"meta.%c.0x%"PFMT64x, *info, ds->at);
|
2017-02-03 08:53:57 +00:00
|
|
|
sdb_const_get (s, key, 0);
|
2017-01-31 22:33:27 +00:00
|
|
|
mt_sz = sdb_array_get_num (s, key, 0, 0);
|
|
|
|
if (mt_sz) {
|
|
|
|
break;
|
|
|
|
}
|
2017-01-29 19:30:17 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-04-20 23:38:08 +00:00
|
|
|
|
2016-05-30 02:18:48 +00:00
|
|
|
if (ds->hint && ds->hint->size) {
|
|
|
|
ds->oplen = ds->hint->size;
|
|
|
|
}
|
2016-04-20 23:38:08 +00:00
|
|
|
if (ds->hint && ds->hint->opcode) {
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->hint->opcode);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
ret = r_asm_disassemble (core->assembler, &ds->asmop, buf, len);
|
2016-08-10 16:49:44 +00:00
|
|
|
if (ds->asmop.size < 1) {
|
|
|
|
ds->asmop.size = 1;
|
|
|
|
}
|
2015-11-02 20:30:55 +00:00
|
|
|
|
2016-01-10 21:30:10 +00:00
|
|
|
if (ds->show_nodup) {
|
2016-01-11 21:28:22 +00:00
|
|
|
const char *opname = (ret < 1)? "invalid": ds->asmop.buf_asm;
|
|
|
|
if (ds->prev_ins && !strcmp (ds->prev_ins, opname)) {
|
2016-01-10 21:30:10 +00:00
|
|
|
if (!ds->prev_ins_eq) {
|
2016-01-11 21:28:22 +00:00
|
|
|
ds->prev_ins_eq = true;
|
|
|
|
r_cons_printf ("...");
|
2016-01-10 21:30:10 +00:00
|
|
|
}
|
2017-01-29 19:30:17 +00:00
|
|
|
ds->prev_ins_count++;
|
2016-01-10 21:30:10 +00:00
|
|
|
return -31337;
|
|
|
|
}
|
2016-01-11 21:28:22 +00:00
|
|
|
if (ds->prev_ins_eq) {
|
|
|
|
r_cons_printf ("dup (%d)\n", ds->prev_ins_count);
|
|
|
|
}
|
|
|
|
ds->prev_ins_count = 0;
|
2016-01-10 21:30:10 +00:00
|
|
|
ds->prev_ins_eq = false;
|
|
|
|
if (ds->prev_ins) {
|
|
|
|
R_FREE (ds->prev_ins);
|
|
|
|
}
|
|
|
|
ds->prev_ins = strdup (ds->asmop.buf_asm);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->oplen = ds->asmop.size;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2015-11-02 20:30:55 +00:00
|
|
|
if (ret < 1) {
|
2014-01-16 17:04:42 +00:00
|
|
|
ret = -1;
|
|
|
|
#if HASRETRY
|
2015-11-02 20:30:55 +00:00
|
|
|
if (!ds->cbytes && ds->tries > 0) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->addr = core->assembler->pc;
|
|
|
|
ds->tries--;
|
|
|
|
ds->idx = 0;
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->retry = true;
|
2014-01-16 17:04:42 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->lastfail = 1;
|
2016-09-23 14:28:48 +00:00
|
|
|
ds->asmop.size = (ds->hint && ds->hint->size) ? ds->hint->size : 1;
|
2016-05-30 02:18:48 +00:00
|
|
|
ds->oplen = ds->asmop.size;
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->lastfail = 0;
|
2017-02-03 08:53:57 +00:00
|
|
|
ds->asmop.size = (ds->hint && ds->hint->size)
|
|
|
|
? ds->hint->size
|
2017-01-29 19:30:17 +00:00
|
|
|
: r_asm_op_get_size (&ds->asmop);
|
2014-12-21 03:18:56 +00:00
|
|
|
ds->oplen = ds->asmop.size;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->pseudo) {
|
2017-02-03 08:53:57 +00:00
|
|
|
r_parse_parse (core->parser, ds->opstr
|
2017-05-08 18:21:06 +00:00
|
|
|
? ds->opstr
|
2017-02-03 08:53:57 +00:00
|
|
|
: ds->asmop.buf_asm,
|
2017-01-29 19:30:17 +00:00
|
|
|
ds->str);
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->acase) {
|
|
|
|
r_str_case (ds->asmop.buf_asm, 1);
|
2016-11-04 02:56:42 +00:00
|
|
|
} else if (ds->capitalize) {
|
|
|
|
ds->asmop.buf_asm[0] = toupper (ds->asmop.buf_asm[0]);
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2017-01-31 22:33:27 +00:00
|
|
|
if (info && mt_sz != UT64_MAX) {
|
2017-01-29 19:30:17 +00:00
|
|
|
ds->oplen = mt_sz;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_control_flow_comments(RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_comments && ds->show_cmtflgrefs) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RFlagItem *item;
|
2014-01-20 00:42:16 +00:00
|
|
|
switch (ds->analop.type) {
|
2014-01-16 17:04:42 +00:00
|
|
|
case R_ANAL_OP_TYPE_JMP:
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
2016-05-30 10:35:39 +00:00
|
|
|
item = r_flag_get_i (ds->core->flags, ds->analop.jump);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (item && item->comment) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_align_comment (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" ; ref to %s: %s\n", item->name, item->comment);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_lines_right(RDisasmState *ds){
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->linesright && ds->show_lines && ds->line) {
|
2015-11-02 11:38:08 +00:00
|
|
|
r_cons_printf ("%s%s%s", COLOR (ds, color_flow), ds->line, COLOR_RESET (ds));
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-12-21 03:18:56 +00:00
|
|
|
|
2016-04-27 20:17:19 +00:00
|
|
|
static void printCol(RDisasmState *ds, char *sect, int cols, const char *color) {
|
2016-04-08 00:56:42 +00:00
|
|
|
int pre, post;
|
|
|
|
if (cols < 8) cols = 8;
|
|
|
|
int outsz = cols + 32;
|
|
|
|
char *out = malloc (outsz);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!out) {
|
|
|
|
return;
|
|
|
|
}
|
2016-04-08 00:56:42 +00:00
|
|
|
memset (out, ' ', outsz);
|
|
|
|
int sect_len = strlen (sect);
|
|
|
|
|
|
|
|
if (sect_len > cols) {
|
|
|
|
sect[cols-2] = '.';
|
|
|
|
sect[cols-1] = '.';
|
|
|
|
sect[cols] = 0;
|
|
|
|
}
|
|
|
|
if (ds->show_color) {
|
|
|
|
pre = strlen (color) + 1;
|
|
|
|
post = strlen (color) + 1 + strlen (Color_RESET);
|
|
|
|
snprintf (out, outsz-pre, "%s %s", color, sect);
|
|
|
|
strcat (out, Color_RESET);
|
|
|
|
out[outsz-1] = 0;
|
|
|
|
} else {
|
|
|
|
strcpy (out + 1, sect);
|
|
|
|
pre = 1;
|
|
|
|
post = 0;
|
|
|
|
}
|
|
|
|
out[strlen (out)] = ' ';
|
|
|
|
out[cols + post] = 0;
|
|
|
|
r_cons_strcat (out);
|
|
|
|
free (out);
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_lines_left(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
|
|
|
|
2014-11-22 04:39:52 +00:00
|
|
|
if (ds->show_section) {
|
2016-05-30 10:35:39 +00:00
|
|
|
char *sect = strdup (get_section_name (core, ds->at));
|
2016-04-08 00:56:42 +00:00
|
|
|
printCol (ds, sect, ds->show_section_col, ds->color_reg);
|
|
|
|
free (sect);
|
2014-11-22 04:39:52 +00:00
|
|
|
}
|
2016-03-29 00:03:17 +00:00
|
|
|
if (ds->show_symbols) {
|
2017-03-25 01:30:00 +00:00
|
|
|
static RFlagItem sfi = R_EMPTY;
|
2016-03-29 00:03:17 +00:00
|
|
|
const char *name = "";
|
|
|
|
int delta = 0;
|
|
|
|
if (ds->fcn) {
|
|
|
|
sfi.offset = ds->fcn->addr;
|
|
|
|
sfi.name = ds->fcn->name;
|
|
|
|
ds->lastflag = &sfi;
|
|
|
|
} else {
|
2016-12-01 09:48:00 +00:00
|
|
|
RFlagItem *fi = r_flag_get_at (core->flags, ds->at, false);
|
2016-03-29 00:03:17 +00:00
|
|
|
if (fi) { // && (!ds->lastflag || fi->offset != ds->at)) {
|
|
|
|
sfi.offset = fi->offset;
|
|
|
|
sfi.name = fi->name;
|
|
|
|
ds->lastflag = &sfi;
|
|
|
|
}
|
|
|
|
}
|
2016-04-08 00:56:42 +00:00
|
|
|
if (ds->lastflag && ds->lastflag->name) {
|
2016-03-29 00:03:17 +00:00
|
|
|
name = ds->lastflag->name;
|
|
|
|
delta = ds->at - ds->lastflag->offset;
|
|
|
|
}
|
2016-04-08 00:56:42 +00:00
|
|
|
{
|
|
|
|
char * str = r_str_newf ("%s + %-4d", name, delta);
|
|
|
|
printCol (ds, str, ds->show_symbols_col, ds->color_num);
|
|
|
|
free (str);
|
|
|
|
}
|
2016-03-29 00:03:17 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->linesright && ds->show_lines && ds->line) {
|
2015-11-02 11:38:08 +00:00
|
|
|
r_cons_printf ("%s%s%s", COLOR (ds, color_flow), ds->line, COLOR_RESET (ds));
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_family(RDisasmState *ds) {
|
2015-10-03 11:52:52 +00:00
|
|
|
if (ds->show_family) {
|
|
|
|
const char *familystr = r_anal_op_family_to_string (ds->analop.family);
|
|
|
|
r_cons_printf ("%5s ", familystr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_cycles(RDisasmState *ds) {
|
2014-02-25 23:03:42 +00:00
|
|
|
if (ds->show_cycles) {
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds->analop.failcycles) {
|
2014-02-25 23:03:42 +00:00
|
|
|
r_cons_printf ("%3d ", ds->analop.cycles);
|
2016-09-23 14:28:48 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("%3d %3d ", ds->analop.cycles, ds->analop.failcycles);
|
|
|
|
}
|
2014-02-25 23:03:42 +00:00
|
|
|
}
|
2014-11-02 02:06:52 +00:00
|
|
|
if (ds->cyclespace) {
|
|
|
|
char spaces [32];
|
|
|
|
int times = R_MIN (ds->analop.cycles/4, 30); // limit to 30
|
|
|
|
memset (spaces, ' ', sizeof (spaces));
|
|
|
|
spaces[times] = 0;
|
|
|
|
r_cons_strcat (spaces);
|
|
|
|
}
|
2014-02-10 22:01:19 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_stackptr(RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_stackptr) {
|
2016-04-08 00:56:42 +00:00
|
|
|
r_cons_printf ("%5d%s", ds->stackptr,
|
2016-05-11 10:59:32 +00:00
|
|
|
ds->analop.type == R_ANAL_OP_TYPE_CALL?">":
|
2016-04-13 21:33:30 +00:00
|
|
|
ds->analop.stackop == R_ANAL_STACK_ALIGN? "=":
|
|
|
|
ds->stackptr > ds->ostackptr? "+":
|
|
|
|
ds->stackptr < ds->ostackptr? "-": " ");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->ostackptr = ds->stackptr;
|
2016-08-19 10:48:55 +00:00
|
|
|
switch (ds->analop.stackop) {
|
|
|
|
case R_ANAL_STACK_RESET:
|
2016-05-11 10:59:32 +00:00
|
|
|
ds->stackptr = 0;
|
2016-08-19 10:48:55 +00:00
|
|
|
break;
|
|
|
|
case R_ANAL_STACK_INC:
|
2016-05-11 10:59:32 +00:00
|
|
|
ds->stackptr += ds->analop.stackptr;
|
2016-08-19 10:48:55 +00:00
|
|
|
break;
|
2016-05-11 10:59:32 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
/* XXX if we reset the stackptr 'ret 0x4' has not effect.
|
|
|
|
* Use RAnalFunction->RAnalOp->stackptr? */
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_RET)
|
|
|
|
ds->stackptr = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_offset(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2016-11-04 02:15:17 +00:00
|
|
|
ut64 at = ds->vat;
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2016-11-04 00:30:35 +00:00
|
|
|
r_print_set_screenbounds (core->print, at);
|
2015-01-11 23:11:06 +00:00
|
|
|
if (ds->show_offset) {
|
2017-03-25 01:30:00 +00:00
|
|
|
static RFlagItem sfi = R_EMPTY;
|
2016-08-25 18:17:55 +00:00
|
|
|
const char *label = NULL;
|
2015-01-18 02:02:56 +00:00
|
|
|
RFlagItem *fi;
|
2016-08-25 18:17:55 +00:00
|
|
|
int delta = -1;
|
2017-06-06 08:00:57 +00:00
|
|
|
bool show_trace = false;
|
2015-01-12 09:45:41 +00:00
|
|
|
if (ds->show_reloff) {
|
2016-11-04 00:30:35 +00:00
|
|
|
RAnalFunction *f = r_anal_get_fcn_at (core->anal, at, R_ANAL_FCN_TYPE_NULL);
|
2016-08-25 18:17:55 +00:00
|
|
|
if (!f) {
|
2016-11-04 00:30:35 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, at, R_ANAL_FCN_TYPE_NULL);
|
2016-08-25 18:17:55 +00:00
|
|
|
}
|
2015-01-18 02:02:56 +00:00
|
|
|
if (f) {
|
2016-11-04 00:30:35 +00:00
|
|
|
delta = at - f->addr;
|
2016-03-29 00:03:17 +00:00
|
|
|
sfi.name = f->name;
|
2015-01-18 02:02:56 +00:00
|
|
|
sfi.offset = f->addr;
|
|
|
|
ds->lastflag = &sfi;
|
2016-08-25 18:17:55 +00:00
|
|
|
label = f->name;
|
2015-01-18 02:02:56 +00:00
|
|
|
} else {
|
2016-08-25 18:17:55 +00:00
|
|
|
if (ds->show_reloff_flags) {
|
|
|
|
/* XXX: this is wrong if starting to disasm after a flag */
|
2016-11-04 00:30:35 +00:00
|
|
|
fi = r_flag_get_i (core->flags, at);
|
2016-08-25 18:17:55 +00:00
|
|
|
if (fi) {
|
|
|
|
ds->lastflag = fi;
|
|
|
|
}
|
|
|
|
if (ds->lastflag) {
|
2016-11-04 00:30:35 +00:00
|
|
|
if (ds->lastflag->offset == at) {
|
2016-08-25 18:17:55 +00:00
|
|
|
delta = 0;
|
|
|
|
} else {
|
2016-11-04 00:30:35 +00:00
|
|
|
delta = at - ds->lastflag->offset;
|
2016-08-25 18:17:55 +00:00
|
|
|
}
|
2015-01-18 02:02:56 +00:00
|
|
|
} else {
|
2016-11-04 00:30:35 +00:00
|
|
|
delta = at - core->offset;
|
2016-08-25 18:17:55 +00:00
|
|
|
}
|
|
|
|
if (ds->lastflag) {
|
|
|
|
label = ds->lastflag->name;
|
2015-01-18 02:02:56 +00:00
|
|
|
}
|
2015-01-12 09:45:41 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-25 18:17:55 +00:00
|
|
|
if (!ds->lastflag) {
|
|
|
|
delta = 0;
|
|
|
|
}
|
2015-01-12 09:45:41 +00:00
|
|
|
}
|
2017-06-06 08:00:57 +00:00
|
|
|
if (ds->show_trace) {
|
|
|
|
RDebugTracepoint *tp = NULL;
|
|
|
|
tp = r_debug_trace_get (ds->core->dbg, ds->at);
|
|
|
|
show_trace = (tp?!!tp->count:false);
|
|
|
|
}
|
|
|
|
r_print_offset (core->print, at, (at == ds->dest) || show_trace,
|
2016-11-01 22:30:36 +00:00
|
|
|
ds->show_offseg, ds->show_offdec, delta, label);
|
2015-01-11 23:11:06 +00:00
|
|
|
}
|
2016-03-03 23:33:24 +00:00
|
|
|
if (ds->atabsoff > 0) {
|
|
|
|
if (ds->_tabsoff != ds->atabsoff) {
|
|
|
|
char *b = ds->_tabsbuf;
|
|
|
|
// TODO optimize to avoid down resizing
|
|
|
|
b = malloc (ds->atabsoff + 1);
|
|
|
|
if (b) {
|
|
|
|
memset (b, ' ', ds->atabsoff);
|
|
|
|
b[ds->atabsoff] = 0;
|
|
|
|
free (ds->_tabsbuf);
|
|
|
|
ds->_tabsbuf = b;
|
|
|
|
ds->_tabsoff = ds->atabsoff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_strcat (ds->_tabsbuf);
|
2015-07-15 15:30:34 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_op_size(RDisasmState *ds) {
|
2016-05-30 02:18:48 +00:00
|
|
|
if (ds->show_size) {
|
|
|
|
int size = ds->oplen;
|
|
|
|
r_cons_printf ("%d ", size); //ds->analop.size);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_trace(RDisasmState *ds) {
|
2014-11-02 02:06:52 +00:00
|
|
|
RDebugTracepoint *tp = NULL;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_trace) {
|
2016-05-30 10:35:39 +00:00
|
|
|
tp = r_debug_trace_get (ds->core->dbg, ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%02x:%04x ", tp?tp->times:0, tp?tp->count:0);
|
2014-11-02 02:06:52 +00:00
|
|
|
}
|
|
|
|
if (ds->tracespace) {
|
|
|
|
char spaces [32];
|
|
|
|
int times;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!tp) {
|
2016-05-30 10:35:39 +00:00
|
|
|
tp = r_debug_trace_get (ds->core->dbg, ds->at);
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2014-11-02 02:06:52 +00:00
|
|
|
if (tp) {
|
|
|
|
times = R_MIN (tp->times, 30); // limit to 30
|
2014-11-02 01:19:31 +00:00
|
|
|
memset (spaces, ' ', sizeof (spaces));
|
|
|
|
spaces[times] = 0;
|
|
|
|
r_cons_strcat (spaces);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_adistrick_comments(RDisasmState *ds) {
|
2015-11-06 14:46:14 +00:00
|
|
|
if (ds->adistrick) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->middle = r_anal_reflines_middle (ds->core->anal,
|
|
|
|
ds->core->anal->reflines, ds->at, ds->analop.size);
|
2015-11-06 14:46:14 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-21 17:47:49 +00:00
|
|
|
|
2017-03-10 17:09:23 +00:00
|
|
|
static bool ds_print_data_type(RDisasmState *ds, const ut8 *buf, int ib, int size) {
|
|
|
|
RCore *core = ds->core;
|
2016-05-21 17:47:49 +00:00
|
|
|
const char *type = NULL;
|
|
|
|
char msg[64];
|
|
|
|
const int isSigned = (ib == 1 || ib == 8 || ib == 10)? 1: 0;
|
|
|
|
switch (size) {
|
|
|
|
case 1: type = isSigned? ".char": ".byte"; break;
|
|
|
|
case 2: type = isSigned? ".int16": ".word"; break;
|
|
|
|
case 4: type = isSigned? ".int32": ".dword"; break;
|
|
|
|
case 8: type = isSigned? ".int64": ".qword"; break;
|
|
|
|
default: return false;
|
|
|
|
}
|
2016-05-24 20:22:15 +00:00
|
|
|
ut64 n = r_read_ble (buf, core->print->big_endian, size * 8);
|
2017-03-10 17:09:23 +00:00
|
|
|
{
|
|
|
|
int q = core->print->cur_enabled &&
|
|
|
|
ds->cursor >= ds->index &&
|
|
|
|
ds->cursor < (ds->index + size);
|
|
|
|
if (q) {
|
|
|
|
if (ds->cursor > ds->index) {
|
|
|
|
int diff = ds->cursor - ds->index;
|
|
|
|
r_cons_printf (" %d ", diff);
|
|
|
|
} else if (ds->cursor == ds->index) {
|
|
|
|
r_cons_printf (" * ");
|
|
|
|
} else {
|
|
|
|
r_cons_printf (" ");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
r_cons_printf (" ");
|
|
|
|
}
|
|
|
|
}
|
2016-05-21 17:47:49 +00:00
|
|
|
|
|
|
|
switch (ib) {
|
|
|
|
case 1:
|
|
|
|
r_str_bits (msg, buf, size * 8, NULL);
|
|
|
|
r_cons_printf ("%s %sb", type, msg);
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
r_cons_printf ("%s %oo", type, n);
|
|
|
|
break;
|
|
|
|
case 10:
|
|
|
|
r_cons_printf ("%s %d", type, n);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
switch (size) {
|
|
|
|
case 1:
|
|
|
|
r_cons_printf ("%s 0x%02x", type, n);
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
r_cons_printf ("%s 0x%04x", type, n);
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
r_cons_printf ("%s 0x%08x", type, n);
|
|
|
|
break;
|
|
|
|
case 8:
|
2016-09-20 22:58:06 +00:00
|
|
|
r_cons_printf ("%s 0x%016" PFMT64x, type, n);
|
2016-05-21 17:47:49 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size == 4 || size == 8) {
|
2017-03-24 00:07:42 +00:00
|
|
|
if (r_str_startswith (r_config_get (core->config, "asm.arch"), "arm")) {
|
|
|
|
ut64 bits = r_config_get_i (core->config, "asm.bits");
|
|
|
|
//adjust address for arm/thumb address
|
|
|
|
if (bits < 64) {
|
|
|
|
if (n & 1) {
|
|
|
|
n--;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-13 17:38:14 +00:00
|
|
|
const RList *flags = r_flag_get_list (core->flags, n);
|
|
|
|
RListIter *iter;
|
|
|
|
RFlagItem *fi;
|
|
|
|
r_list_foreach (flags, iter, fi) {
|
2016-09-22 16:06:10 +00:00
|
|
|
r_cons_printf (" ; %s", fi->name);
|
|
|
|
}
|
2016-05-21 17:47:49 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static int ds_print_meta_infos(RDisasmState *ds, ut8* buf, int len, int idx) {
|
2014-03-08 01:36:33 +00:00
|
|
|
int ret = 0;
|
|
|
|
const char *infos, *metas;
|
2015-06-15 08:55:05 +00:00
|
|
|
char key[100];
|
2014-03-08 01:36:33 +00:00
|
|
|
RAnalMetaItem MI, *mi = &MI;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore * core = ds->core;
|
2014-03-08 01:36:33 +00:00
|
|
|
Sdb *s = core->anal->sdb_meta;
|
|
|
|
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.0x%"PFMT64x, ds->at);
|
|
|
|
infos = sdb_const_get (s, key, 0);
|
2016-09-22 16:06:10 +00:00
|
|
|
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = false;
|
2016-09-22 16:06:10 +00:00
|
|
|
if (infos) {
|
|
|
|
for (;*infos; infos++) {
|
|
|
|
/* XXX wtf, must use anal.meta.deserialize() */
|
|
|
|
char *p, *q;
|
|
|
|
if (*infos == ',') {
|
2015-06-15 08:55:05 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-09-22 16:06:10 +00:00
|
|
|
snprintf (key, sizeof (key)-1, "meta.%c.0x%"PFMT64x, *infos, ds->at);
|
|
|
|
metas = sdb_const_get (s, key, 0);
|
|
|
|
MI.size = sdb_array_get_num (s, key, 0, 0);
|
|
|
|
MI.type = *infos;
|
|
|
|
MI.from = ds->at;
|
|
|
|
MI.to = ds->at + MI.size;
|
|
|
|
if (metas) {
|
|
|
|
p = strchr (metas, ',');
|
|
|
|
if (!p) {
|
|
|
|
continue;
|
2016-05-18 10:19:27 +00:00
|
|
|
}
|
2016-09-22 16:06:10 +00:00
|
|
|
MI.space = atoi (p + 1);
|
|
|
|
q = strchr (p + 1, ',');
|
|
|
|
if (!q) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
MI.str = (char*)sdb_decode (q + 1, 0);
|
|
|
|
} else {
|
|
|
|
MI.str = NULL;
|
|
|
|
}
|
|
|
|
// TODO: implement ranged meta find (if not at the begging of function..
|
|
|
|
char *out = NULL;
|
|
|
|
int hexlen;
|
|
|
|
int delta;
|
|
|
|
if (mi) {
|
|
|
|
switch (mi->type) {
|
|
|
|
case R_META_TYPE_STRING:
|
|
|
|
{
|
|
|
|
out = r_str_escape (mi->str);
|
|
|
|
r_cons_printf (" .string %s\"%s\"%s ; len=%"PFMT64d,
|
|
|
|
COLOR_CONST (ds, YELLOW), out, COLOR_RESET (ds),
|
|
|
|
mi->size);
|
|
|
|
free (out);
|
|
|
|
delta = ds->at - mi->from;
|
|
|
|
ds->oplen = mi->size - delta;
|
|
|
|
ds->asmop.size = (int)mi->size;
|
|
|
|
//i += mi->size-1; // wtf?
|
|
|
|
R_FREE (ds->line);
|
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = true;
|
2016-09-22 16:06:10 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case R_META_TYPE_HIDE:
|
|
|
|
r_cons_printf ("(%d bytes hidden)", mi->size);
|
|
|
|
ds->asmop.size = mi->size;
|
|
|
|
ds->oplen = mi->size;
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = true;
|
2016-09-22 16:06:10 +00:00
|
|
|
break;
|
2016-11-06 00:16:02 +00:00
|
|
|
case R_META_TYPE_RUN:
|
|
|
|
r_core_cmdf (core, "%s @ 0x%"PFMT64x, mi->str, ds->at);
|
|
|
|
ds->asmop.size = mi->size;
|
|
|
|
ds->oplen = mi->size;
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = true;
|
2016-11-06 00:16:02 +00:00
|
|
|
break;
|
2016-09-22 16:06:10 +00:00
|
|
|
case R_META_TYPE_DATA:
|
|
|
|
hexlen = len - idx;
|
2017-01-16 14:07:11 +00:00
|
|
|
delta = ds->at - mi->from;
|
2016-09-22 16:06:10 +00:00
|
|
|
if (mi->size < hexlen) {
|
|
|
|
hexlen = mi->size;
|
|
|
|
}
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->oplen = mi->size - delta;
|
2016-09-22 16:06:10 +00:00
|
|
|
core->print->flags &= ~R_PRINT_FLAGS_HEADER;
|
2017-03-10 17:09:23 +00:00
|
|
|
if (!ds_print_data_type (ds, buf + idx, ds->hint? ds->hint->immbase: 0, mi->size)) {
|
2016-09-22 16:06:10 +00:00
|
|
|
r_cons_printf ("hex length=%" PFMT64d " delta=%d\n", mi->size , delta);
|
2017-06-06 00:20:49 +00:00
|
|
|
r_print_hexdump (core->print, ds->at, buf+idx, hexlen-delta, 16, 1, 1);
|
2016-09-22 16:06:10 +00:00
|
|
|
}
|
2017-01-16 14:07:11 +00:00
|
|
|
core->inc = 16; // ds->oplen; //
|
2016-09-22 16:06:10 +00:00
|
|
|
core->print->flags |= R_PRINT_FLAGS_HEADER;
|
|
|
|
ds->asmop.size = ret = (int)mi->size; //-delta;
|
|
|
|
R_FREE (ds->line);
|
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = true;
|
2016-09-22 16:06:10 +00:00
|
|
|
break;
|
|
|
|
case R_META_TYPE_FORMAT:
|
|
|
|
r_cons_printf ("format %s {\n", mi->str);
|
|
|
|
r_print_format (core->print, ds->at, buf+idx, len-idx, mi->str, R_PRINT_MUSTSEE, NULL, NULL);
|
|
|
|
r_cons_printf ("} %d", mi->size);
|
|
|
|
ds->oplen = ds->asmop.size = ret = (int)mi->size;
|
|
|
|
R_FREE (ds->line);
|
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = true;
|
2016-09-22 16:06:10 +00:00
|
|
|
break;
|
2014-09-03 08:25:29 +00:00
|
|
|
}
|
2014-03-08 01:36:33 +00:00
|
|
|
}
|
2016-09-22 16:06:10 +00:00
|
|
|
if (MI.str) {
|
|
|
|
free (MI.str);
|
|
|
|
MI.str = NULL;
|
|
|
|
}
|
2014-05-04 15:21:05 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_instruction_mov_lea(RDisasmState *ds, int idx) {
|
|
|
|
RCore *core = ds->core;
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalValue *src;
|
2017-05-29 12:22:16 +00:00
|
|
|
char *nl = ds->show_comment_right ? "" : "\n";
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
switch (ds->analop.type) {
|
2015-03-23 23:08:48 +00:00
|
|
|
case R_ANAL_OP_TYPE_LENGTH:
|
|
|
|
case R_ANAL_OP_TYPE_CAST:
|
2015-10-18 20:14:06 +00:00
|
|
|
case R_ANAL_OP_TYPE_CMOV:
|
2014-01-16 17:04:42 +00:00
|
|
|
case R_ANAL_OP_TYPE_MOV:
|
2014-01-20 00:42:16 +00:00
|
|
|
src = ds->analop.src[0];
|
2014-01-16 17:04:42 +00:00
|
|
|
if (src && src->memref>0 && src->reg) {
|
2014-07-30 20:41:54 +00:00
|
|
|
if (core->anal->reg) {
|
2014-01-16 17:04:42 +00:00
|
|
|
const char *pc = core->anal->reg->name[R_REG_NAME_PC];
|
2014-01-20 00:42:16 +00:00
|
|
|
RAnalValue *dst = ds->analop.dst;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (dst && dst->reg && dst->reg->name) {
|
|
|
|
if (src->reg->name && pc && !strcmp (src->reg->name, pc)) {
|
|
|
|
RFlagItem *item;
|
|
|
|
ut8 b[8];
|
|
|
|
ut64 ptr = idx + ds->addr + src->delta + ds->analop.size;
|
|
|
|
ut64 off = 0LL;
|
|
|
|
r_core_read_at (core, ptr, b, src->memref);
|
|
|
|
off = r_mem_get_num (b, src->memref);
|
|
|
|
item = r_flag_get_i (core->flags, off);
|
|
|
|
//TODO: introduce env for this print?
|
|
|
|
r_cons_printf ("; MOV %s = [0x%"PFMT64x"] = 0x%"PFMT64x" %s\n",
|
|
|
|
dst->reg->name, ptr, off, item?item->name: "");
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
// TODO: get from meta anal?
|
|
|
|
case R_ANAL_OP_TYPE_LEA:
|
2014-01-20 00:42:16 +00:00
|
|
|
src = ds->analop.src[0];
|
2014-05-22 11:21:34 +00:00
|
|
|
if (src && src->reg && core->anal->reg && *(core->anal->reg->name)) {
|
2014-01-16 17:04:42 +00:00
|
|
|
const char *pc = core->anal->reg->name[R_REG_NAME_PC];
|
2014-01-20 00:42:16 +00:00
|
|
|
RAnalValue *dst = ds->analop.dst;
|
2016-09-07 18:06:36 +00:00
|
|
|
if (dst && dst->reg && src->reg->name && pc && !strcmp (src->reg->name, pc)) {
|
2014-01-18 00:55:03 +00:00
|
|
|
int index = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
int memref = core->assembler->bits/8;
|
|
|
|
RFlagItem *item;
|
|
|
|
ut8 b[64];
|
2014-01-20 00:42:16 +00:00
|
|
|
ut64 ptr = index+ds->addr+src->delta+ds->analop.size;
|
2014-01-16 17:04:42 +00:00
|
|
|
ut64 off = 0LL;
|
|
|
|
r_core_read_at (core, ptr, b, sizeof (b)); //memref);
|
2016-04-26 09:09:15 +00:00
|
|
|
off = r_mem_get_num (b, memref);
|
2014-01-16 17:04:42 +00:00
|
|
|
item = r_flag_get_i (core->flags, off);
|
2016-09-05 18:42:04 +00:00
|
|
|
if (ds->show_leahints) {
|
|
|
|
char s[64];
|
|
|
|
r_str_ncpy (s, (const char *)b, sizeof (s));
|
2017-05-29 12:22:16 +00:00
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; LEA %s = [0x%"PFMT64x"] = 0x%"PFMT64x" \"%s\"%s",
|
|
|
|
dst->reg->name, ptr, off, item?item->name: s, nl);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
static st64 revert_cdiv_magic(st64 magic) {
|
2016-08-30 13:44:52 +00:00
|
|
|
ut64 amagic = llabs (magic);
|
2016-06-16 21:48:01 +00:00
|
|
|
const st64 N = ST64_MAX;
|
2016-06-17 10:37:18 +00:00
|
|
|
st64 E, candidate;
|
|
|
|
short s;
|
|
|
|
|
2016-08-30 13:44:52 +00:00
|
|
|
if (amagic < 0xFFFFFF || amagic > UT32_MAX) {
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (magic < 0) {
|
2016-06-17 10:37:18 +00:00
|
|
|
magic += 1LL << 32;
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
}
|
2016-06-17 10:37:18 +00:00
|
|
|
for (s = 0; s < 16; s++) {
|
|
|
|
E = 1LL << (32 + s);
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
candidate = (E + magic - 1) / magic;
|
2016-08-30 13:44:52 +00:00
|
|
|
if (candidate > 0) {
|
|
|
|
if ( ((N * magic) >> (32 + s)) == (N / candidate) ) {
|
|
|
|
return candidate;
|
|
|
|
}
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void ds_cdiv_optimization(RDisasmState *ds) {
|
|
|
|
char *esil;
|
|
|
|
char *end, *comma;
|
|
|
|
st64 imm;
|
|
|
|
st64 divisor;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds->show_hints) {
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
return;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
switch (ds->analop.type) {
|
|
|
|
case R_ANAL_OP_TYPE_MOV:
|
|
|
|
case R_ANAL_OP_TYPE_MUL:
|
|
|
|
esil = R_STRBUF_SAFEGET (&ds->analop.esil);
|
|
|
|
while (esil) {
|
|
|
|
comma = strstr (esil, ",");
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!comma) {
|
|
|
|
break;
|
|
|
|
}
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
imm = strtol (esil, &end, 10);
|
|
|
|
if (comma && comma == end) {
|
|
|
|
divisor = revert_cdiv_magic (imm);
|
|
|
|
if (divisor) {
|
|
|
|
r_cons_printf (" ; CDIV: %lld * 2^n", divisor);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-08-30 13:44:52 +00:00
|
|
|
esil = comma + 1;
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
}
|
|
|
|
}
|
2016-07-05 20:44:53 +00:00
|
|
|
// /TODO: check following SHR instructions
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_show_bytes(RDisasmState *ds) {
|
|
|
|
RCore* core = ds->core;
|
2014-10-15 23:51:48 +00:00
|
|
|
char *nstr, *str = NULL, pad[64];
|
2015-01-17 00:56:20 +00:00
|
|
|
char *flagstr = NULL;
|
2016-08-25 18:27:52 +00:00
|
|
|
int oldFlags = core->print->flags;
|
2017-06-14 22:06:33 +00:00
|
|
|
char extra[128];
|
2016-08-25 18:27:52 +00:00
|
|
|
int j, k;
|
|
|
|
|
|
|
|
if (!ds->show_bytes || ds->nb < 1) {
|
2014-10-15 23:51:48 +00:00
|
|
|
return;
|
2016-06-29 14:17:41 +00:00
|
|
|
}
|
2016-08-25 18:27:52 +00:00
|
|
|
if (!ds->show_color_bytes) {
|
|
|
|
core->print->flags &= ~R_PRINT_FLAGS_COLOR;
|
2016-06-29 14:17:41 +00:00
|
|
|
}
|
2014-10-15 23:51:48 +00:00
|
|
|
strcpy (extra, " ");
|
2015-01-17 00:56:20 +00:00
|
|
|
if (ds->show_flag_in_bytes) {
|
|
|
|
flagstr = r_flag_get_liststr (core->flags, ds->at);
|
|
|
|
}
|
|
|
|
if (flagstr) {
|
|
|
|
str = flagstr;
|
2015-10-30 02:07:22 +00:00
|
|
|
if (ds->nb > 0) {
|
2016-08-25 18:27:52 +00:00
|
|
|
k = ds->nb-strlen (flagstr) - 1;
|
2016-06-09 16:17:51 +00:00
|
|
|
if (k < 0 || k > sizeof(pad)) k = 0;
|
2016-08-25 18:27:52 +00:00
|
|
|
for (j = 0; j < k; j++) {
|
2015-04-06 22:31:35 +00:00
|
|
|
pad[j] = ' ';
|
2016-08-25 18:27:52 +00:00
|
|
|
}
|
2015-04-06 22:31:35 +00:00
|
|
|
pad[j] = '\0';
|
2016-08-08 21:40:56 +00:00
|
|
|
} else {
|
2017-05-08 18:21:06 +00:00
|
|
|
pad[0] = 0;
|
2016-06-09 16:17:51 +00:00
|
|
|
}
|
2014-10-15 23:51:48 +00:00
|
|
|
} else {
|
|
|
|
if (ds->show_flag_in_bytes) {
|
2016-06-09 16:17:51 +00:00
|
|
|
k = ds->nb - 1;
|
2016-08-25 18:27:52 +00:00
|
|
|
if (k < 0 || k > sizeof (pad)) {
|
|
|
|
k = 0;
|
|
|
|
}
|
|
|
|
for (j = 0; j < k; j++) {
|
2014-10-15 23:51:48 +00:00
|
|
|
pad[j] = ' ';
|
2016-08-25 18:27:52 +00:00
|
|
|
}
|
2014-10-15 23:51:48 +00:00
|
|
|
pad[j] = '\0';
|
|
|
|
str = strdup ("");
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
str = strdup (ds->asmop.buf_hex);
|
|
|
|
if (r_str_ansi_len (str) > ds->nb) {
|
|
|
|
char *p = (char *)r_str_ansi_chrn (str, ds->nb);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (p) {
|
|
|
|
p[0] = '.';
|
|
|
|
p[1] = '\0';
|
|
|
|
}
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->print->cur_enabled = (ds->cursor != -1);
|
|
|
|
nstr = r_print_hexpair (ds->print, str, ds->index);
|
|
|
|
if (ds->print->bytespace) {
|
2016-01-08 00:23:33 +00:00
|
|
|
k = (ds->nb + (ds->nb / 2)) - r_str_ansi_len (nstr) + 2;
|
2014-02-25 00:35:23 +00:00
|
|
|
} else {
|
2016-08-25 18:27:52 +00:00
|
|
|
k = ds->nb - r_str_ansi_len (nstr) + 1;
|
2014-02-25 00:35:23 +00:00
|
|
|
}
|
2016-01-08 00:23:33 +00:00
|
|
|
if (k > 0) {
|
2016-06-29 14:17:41 +00:00
|
|
|
// setting to sizeof screw up the disasm
|
|
|
|
if (k > sizeof (pad)) {
|
|
|
|
k = 18;
|
|
|
|
}
|
2016-01-08 00:23:33 +00:00
|
|
|
for (j = 0; j < k; j++) {
|
2015-04-06 22:31:35 +00:00
|
|
|
pad[j] = ' ';
|
2016-01-08 00:23:33 +00:00
|
|
|
}
|
2015-04-06 22:31:35 +00:00
|
|
|
pad[j] = 0;
|
|
|
|
if (ds->lbytes) {
|
|
|
|
// hack to align bytes left
|
|
|
|
strcpy (extra, pad);
|
|
|
|
*pad = 0;
|
|
|
|
}
|
2015-04-08 20:28:21 +00:00
|
|
|
} else {
|
|
|
|
pad[0] = 0;
|
|
|
|
}
|
2014-02-25 00:35:23 +00:00
|
|
|
free (str);
|
|
|
|
str = nstr;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-28 23:37:40 +00:00
|
|
|
r_cons_printf ("%s%s %s", pad, str, extra);
|
2014-10-15 23:51:48 +00:00
|
|
|
free (str);
|
2016-08-25 18:27:52 +00:00
|
|
|
core->print->flags = oldFlags;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_indent(RDisasmState *ds) {
|
2014-08-05 03:37:48 +00:00
|
|
|
if (ds->show_indent) {
|
|
|
|
char indent[128];
|
2015-08-12 08:40:24 +00:00
|
|
|
int num = ds->indent_level * ds->indent_space;
|
2016-06-29 14:17:41 +00:00
|
|
|
if (num < 0) {
|
|
|
|
num = 0;
|
|
|
|
}
|
|
|
|
if (num >= sizeof (indent)) {
|
|
|
|
num = sizeof (indent) - 1;
|
|
|
|
}
|
2014-08-17 18:30:28 +00:00
|
|
|
memset (indent, ' ', num);
|
2014-08-05 03:37:48 +00:00
|
|
|
indent[num] = 0;
|
|
|
|
r_cons_strcat (indent);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_opstr(RDisasmState *ds) {
|
|
|
|
ds_print_indent (ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_strcat (ds->opstr);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_color_reset(RDisasmState *ds) {
|
2016-06-29 14:17:41 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (Color_RESET);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static int ds_print_middle(RDisasmState *ds, int ret) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->middle != 0) {
|
|
|
|
ret -= ds->middle;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_align_comment (ds);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2015-11-05 01:07:20 +00:00
|
|
|
r_cons_printf (" ; *middle* %d", ret);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (Color_RESET);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static bool ds_print_labels(RDisasmState *ds, RAnalFunction *f) {
|
|
|
|
RCore *core = ds->core;
|
2014-09-23 07:35:37 +00:00
|
|
|
const char *label;
|
2016-08-25 18:27:52 +00:00
|
|
|
if (!f) {
|
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, 0);
|
|
|
|
}
|
2014-09-23 07:35:37 +00:00
|
|
|
label = r_anal_fcn_label_at (core->anal, f, ds->at);
|
2016-08-25 18:27:52 +00:00
|
|
|
if (!label) {
|
2015-10-30 02:07:22 +00:00
|
|
|
return false;
|
2016-08-25 18:27:52 +00:00
|
|
|
}
|
2015-10-30 02:07:22 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->color_label);
|
|
|
|
r_cons_printf (" .%s:\n", label);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2015-11-02 11:38:08 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf (" .%s:\n", label);
|
|
|
|
}
|
2015-10-30 02:07:22 +00:00
|
|
|
return true;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_import_name(RDisasmState *ds) {
|
2014-04-02 20:30:39 +00:00
|
|
|
RListIter *iter = NULL;
|
|
|
|
RBinReloc *rel = NULL;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore * core = ds->core;
|
|
|
|
|
2014-04-02 20:30:39 +00:00
|
|
|
switch (ds->analop.type) {
|
2016-06-29 14:17:41 +00:00
|
|
|
case R_ANAL_OP_TYPE_JMP:
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
|
|
|
if (core->bin->cur->o->imports && core->bin->cur->o->relocs) {
|
|
|
|
r_list_foreach (core->bin->cur->o->relocs, iter, rel) {
|
|
|
|
if ((rel->vaddr == ds->analop.jump) &&
|
|
|
|
(rel->import != NULL)) {
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->color_fname);
|
2014-04-02 20:30:39 +00:00
|
|
|
}
|
2016-06-29 14:17:41 +00:00
|
|
|
// TODO: handle somehow ordinals import
|
|
|
|
ds_align_comment (ds);
|
|
|
|
r_cons_printf (" ; (imp.%s)", rel->import->name);
|
|
|
|
ds_print_color_reset (ds);
|
2014-04-02 20:30:39 +00:00
|
|
|
}
|
|
|
|
}
|
2016-06-29 14:17:41 +00:00
|
|
|
}
|
2014-04-02 20:30:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_fcn_name(RDisasmState *ds) {
|
2015-05-13 23:17:35 +00:00
|
|
|
int delta;
|
|
|
|
const char *label;
|
2016-12-27 14:40:02 +00:00
|
|
|
char *nl = ds->show_comment_right ? "" : "\n";
|
2014-06-25 00:30:42 +00:00
|
|
|
RAnalFunction *f;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2016-06-29 14:17:41 +00:00
|
|
|
if (!ds->show_comments) {
|
2014-11-18 22:53:27 +00:00
|
|
|
return;
|
2016-06-29 14:17:41 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
switch (ds->analop.type) {
|
2016-06-29 14:17:41 +00:00
|
|
|
case R_ANAL_OP_TYPE_IO:
|
|
|
|
{
|
|
|
|
const int imm = (int)ds->analop.val;
|
|
|
|
RSyscall *sc = ds->core->anal->syscall;
|
|
|
|
const char *ioname = r_syscall_get_io (sc, imm);
|
|
|
|
if (ioname && *ioname) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; IO %s%s", ioname, nl);
|
2016-08-16 10:19:02 +00:00
|
|
|
ds->has_description = true;
|
2016-06-29 14:17:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-05-13 23:17:35 +00:00
|
|
|
case R_ANAL_OP_TYPE_JMP:
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
2016-09-23 14:28:48 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->analop.jump, R_ANAL_FCN_TYPE_NULL);
|
2016-12-27 14:40:02 +00:00
|
|
|
if (f && f->name && ds->opstr && !strstr (ds->opstr, f->name)) {
|
2015-05-13 23:17:35 +00:00
|
|
|
//beginline (core, ds, f);
|
|
|
|
// print label
|
|
|
|
delta = ds->analop.jump - f->addr;
|
|
|
|
label = r_anal_fcn_label_at (core->anal, f, ds->analop.jump);
|
|
|
|
if (label) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s.%s%s", f->name, label, nl);
|
2015-05-13 23:17:35 +00:00
|
|
|
} else {
|
|
|
|
RAnalFunction *f2 = r_anal_get_fcn_in (core->anal, ds->at, 0);
|
|
|
|
if (f != f2) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (delta > 0) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s+0x%x%s", f->name, delta, nl);
|
2016-09-23 14:28:48 +00:00
|
|
|
} else if (delta < 0) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s-0x%x%s", f->name, -delta, nl);
|
2015-05-13 23:17:35 +00:00
|
|
|
} else {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s%s", f->name, nl);
|
2015-04-11 23:28:26 +00:00
|
|
|
}
|
2015-04-11 23:06:10 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2015-05-13 23:17:35 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_core_vmode(RDisasmState *ds) {
|
2016-05-12 10:29:00 +00:00
|
|
|
char *shortcut = NULL;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2015-10-08 18:00:31 +00:00
|
|
|
|
2016-06-20 07:46:03 +00:00
|
|
|
if (!ds->show_jmphints) {
|
|
|
|
return;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (core->vmode) {
|
2016-10-06 01:38:28 +00:00
|
|
|
switch (ds->analop.type) { // & R_ANAL_OP_TYPE_MASK) {
|
2016-05-30 00:12:17 +00:00
|
|
|
case R_ANAL_OP_TYPE_LEA:
|
2016-06-20 07:46:03 +00:00
|
|
|
if (ds->show_leahints) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_align_comment (ds);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2016-06-20 07:46:03 +00:00
|
|
|
shortcut = r_core_add_asmqjmp (core, ds->analop.ptr);
|
|
|
|
if (shortcut) {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_printf (";[%s]", shortcut);
|
2016-06-20 07:46:03 +00:00
|
|
|
free (shortcut);
|
|
|
|
} else {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_strcat (";[?]");
|
2016-06-20 07:46:03 +00:00
|
|
|
}
|
|
|
|
if (ds->show_color) r_cons_strcat (Color_RESET);
|
2016-05-30 00:12:17 +00:00
|
|
|
}
|
|
|
|
break;
|
2016-10-06 01:38:28 +00:00
|
|
|
case R_ANAL_OP_TYPE_UCALL:
|
|
|
|
case R_ANAL_OP_TYPE_UCALL | R_ANAL_OP_TYPE_REG | R_ANAL_OP_TYPE_IND:
|
|
|
|
case R_ANAL_OP_TYPE_UCALL | R_ANAL_OP_TYPE_IND:
|
2016-09-26 21:13:49 +00:00
|
|
|
ds_align_comment (ds);
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
|
|
|
shortcut = r_core_add_asmqjmp (core, ds->analop.ptr);
|
|
|
|
if (shortcut) {
|
2017-02-23 12:36:55 +00:00
|
|
|
if (core->is_asmqjmps_letter) {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_printf (";[g%s]", shortcut);
|
2017-03-27 02:48:55 +00:00
|
|
|
} else {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_printf (";[%s]", shortcut);
|
2017-02-23 12:36:55 +00:00
|
|
|
}
|
2016-09-26 21:13:49 +00:00
|
|
|
free (shortcut);
|
|
|
|
} else {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_strcat (";[?]");
|
2016-09-26 21:13:49 +00:00
|
|
|
}
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (Color_RESET);
|
|
|
|
}
|
|
|
|
break;
|
2016-10-06 01:38:28 +00:00
|
|
|
case R_ANAL_OP_TYPE_RCALL:
|
|
|
|
break;
|
2014-01-16 17:04:42 +00:00
|
|
|
case R_ANAL_OP_TYPE_JMP:
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
2014-09-22 15:00:18 +00:00
|
|
|
case R_ANAL_OP_TYPE_COND | R_ANAL_OP_TYPE_CALL:
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_align_comment (ds);
|
2016-09-26 21:13:49 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2016-05-12 10:29:00 +00:00
|
|
|
shortcut = r_core_add_asmqjmp (core, ds->analop.jump);
|
|
|
|
if (shortcut) {
|
2017-02-23 12:36:55 +00:00
|
|
|
if (core->is_asmqjmps_letter) {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_printf (";[g%s]", shortcut);
|
2017-02-23 12:36:55 +00:00
|
|
|
} else {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_printf (";[%s]", shortcut);
|
2017-02-23 12:36:55 +00:00
|
|
|
}
|
2016-05-12 10:29:00 +00:00
|
|
|
free (shortcut);
|
2015-10-08 18:00:31 +00:00
|
|
|
} else {
|
2017-05-12 22:40:50 +00:00
|
|
|
r_cons_strcat (";[?]");
|
2015-10-08 18:00:31 +00:00
|
|
|
}
|
2016-09-26 21:13:49 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (Color_RESET);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-13 02:36:48 +00:00
|
|
|
// align for comment
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_align_comment(RDisasmState *ds) {
|
2016-03-03 23:33:24 +00:00
|
|
|
if (ds->show_comment_right_default) {
|
2017-05-08 18:21:56 +00:00
|
|
|
const int cmtcol = ds->cmtcol - 1;
|
2017-01-23 21:42:27 +00:00
|
|
|
int cstrlen = 0;
|
|
|
|
char *ll = r_cons_lastline (&cstrlen);
|
2016-03-13 02:13:27 +00:00
|
|
|
if (ll) {
|
|
|
|
int cols, ansilen = r_str_ansi_len (ll);
|
|
|
|
int utf8len = r_utf8_strlen ((const ut8*)ll);
|
2016-09-23 14:28:48 +00:00
|
|
|
int cells = utf8len - (cstrlen - ansilen);
|
2017-01-24 01:19:12 +00:00
|
|
|
if (cstrlen < 20) {
|
|
|
|
ds_print_pre (ds);
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
cols = ds->interactive ? ds->core->cons->columns : 1024;
|
2017-01-24 10:36:02 +00:00
|
|
|
if (cells < cmtcol) {
|
2017-01-24 01:59:02 +00:00
|
|
|
int len = cmtcol - cells;
|
2017-01-24 10:36:02 +00:00
|
|
|
if (len < cols && len > 0) {
|
2016-03-13 02:13:27 +00:00
|
|
|
r_cons_memset (' ', len);
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2016-03-13 02:13:27 +00:00
|
|
|
}
|
2017-05-08 18:21:56 +00:00
|
|
|
r_cons_print (" ");
|
2014-11-13 02:36:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_dwarf(RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_dwarf) {
|
2017-03-20 22:43:34 +00:00
|
|
|
int len = ds->opstr? strlen (ds->opstr): 0;
|
2016-05-31 20:13:33 +00:00
|
|
|
if (len < 30) {
|
|
|
|
len = 30 - len;
|
|
|
|
}
|
2016-11-23 09:30:44 +00:00
|
|
|
// TODO: cache value in ds
|
|
|
|
int dwarfFile = (int)ds->dwarfFile + (int)ds->dwarfAbspath;
|
|
|
|
free (ds->sl);
|
2016-11-22 22:59:04 +00:00
|
|
|
ds->sl = r_bin_addr2text (ds->core->bin, ds->at, dwarfFile);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->sl) {
|
|
|
|
if ((!ds->osl || (ds->osl && strcmp (ds->sl, ds->osl)))) {
|
2016-05-31 20:13:33 +00:00
|
|
|
char *chopstr, *line = strdup (ds->sl);
|
|
|
|
if (!line) {
|
|
|
|
return;
|
|
|
|
}
|
2014-11-25 01:07:01 +00:00
|
|
|
r_str_replace_char (line, '\t', ' ');
|
|
|
|
r_str_replace_char (line, '\x1b', ' ');
|
|
|
|
r_str_replace_char (line, '\r', ' ');
|
|
|
|
r_str_replace_char (line, '\n', '\x00');
|
2016-05-31 20:13:33 +00:00
|
|
|
chopstr = r_str_chop (line);
|
|
|
|
if (!*chopstr) {
|
|
|
|
free (line);
|
|
|
|
return;
|
|
|
|
}
|
2014-12-18 11:54:36 +00:00
|
|
|
// handle_set_pre (ds, " ");
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_align_comment (ds);
|
2015-11-02 11:38:08 +00:00
|
|
|
if (ds->show_color) {
|
2017-05-08 18:21:56 +00:00
|
|
|
r_cons_printf ("%s; %s"Color_RESET, ds->pal_comment, chopstr);
|
2015-11-02 11:38:08 +00:00
|
|
|
} else {
|
2017-05-08 18:21:56 +00:00
|
|
|
r_cons_printf ("; %s", chopstr);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->osl);
|
|
|
|
ds->osl = ds->sl;
|
|
|
|
ds->sl = NULL;
|
2014-11-25 01:07:01 +00:00
|
|
|
free (line);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-08 18:21:06 +00:00
|
|
|
static void ds_print_asmop_payload(RDisasmState *ds, const ut8 *buf) {
|
2016-08-25 16:54:07 +00:00
|
|
|
if (ds->show_varxs) {
|
2015-01-11 03:29:15 +00:00
|
|
|
// XXX asume analop is filled
|
|
|
|
//r_anal_op (core->anal, &ds->analop, ds->at, core->block+i, core->blocksize-i);
|
|
|
|
int v = ds->analop.ptr;
|
|
|
|
switch (ds->analop.stackop) {
|
2015-11-05 01:07:20 +00:00
|
|
|
case R_ANAL_STACK_GET:
|
2016-09-23 14:28:48 +00:00
|
|
|
if (v < 0) {
|
2015-11-05 01:07:20 +00:00
|
|
|
r_cons_printf (" ; local.get %d", -v);
|
|
|
|
} else {
|
|
|
|
r_cons_printf (" ; arg.get %d", v);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R_ANAL_STACK_SET:
|
2016-09-23 14:28:48 +00:00
|
|
|
if (v < 0) {
|
2015-11-05 01:07:20 +00:00
|
|
|
r_cons_printf (" ; local.set %d", -v);
|
|
|
|
} else {
|
|
|
|
r_cons_printf (" ; arg.set %d", v);
|
|
|
|
}
|
|
|
|
break;
|
2015-01-11 03:29:15 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-08 18:21:06 +00:00
|
|
|
if (ds->asmop.payload != 0) {
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf ("\n; .. payload of %d bytes", ds->asmop.payload);
|
2017-05-08 18:21:06 +00:00
|
|
|
if (ds->showpayloads) {
|
2017-05-23 01:01:45 +00:00
|
|
|
int mod = ds->asmop.payload % ds->core->assembler->dataalign;
|
2017-05-08 18:21:06 +00:00
|
|
|
int x;
|
|
|
|
for (x = 0; x < ds->asmop.payload; ++x) {
|
2017-05-23 01:01:45 +00:00
|
|
|
r_cons_printf ("\n 0x%02x", buf[ds->oplen + x]);
|
|
|
|
}
|
|
|
|
for (x = 0; x < mod; ++x) {
|
|
|
|
r_cons_printf ("\n 0x%02x ; alignment", buf[ds->oplen + ds->asmop.payload + x]);
|
2017-05-08 18:21:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2017-06-30 15:45:47 +00:00
|
|
|
static void ds_print_str(RDisasmState *ds, const char *str, int len) {
|
2017-06-12 09:37:28 +00:00
|
|
|
const char *nl = ds->show_comment_right ? "" : "\n";
|
2017-07-04 16:56:14 +00:00
|
|
|
if (!strcmp (ds->strenc, "latin1")) {
|
|
|
|
char *escstr = r_str_escape_latin1 (str);
|
|
|
|
if (escstr) {
|
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; \"%s\"%s", escstr, nl);
|
|
|
|
free (escstr);
|
|
|
|
}
|
|
|
|
} else if (!strcmp (ds->strenc, "utf8")) {
|
2017-07-02 07:46:59 +00:00
|
|
|
char *escstr = r_str_escape_utf8 (str);
|
|
|
|
if (escstr) {
|
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; \"%s\"%s", escstr, nl);
|
|
|
|
free (escstr);
|
|
|
|
}
|
|
|
|
} else if (strlen (str) == 1) {
|
2017-06-12 09:37:28 +00:00
|
|
|
// could be a wide string
|
|
|
|
int i = 0;
|
|
|
|
ALIGN;
|
2017-06-19 17:29:13 +00:00
|
|
|
ds_comment (ds, true, "; %s\"", len > 2 && str[i+2] ? "u" : "");
|
2017-06-12 09:37:28 +00:00
|
|
|
for (i = 0; i < len; i+=2) {
|
|
|
|
if (!str[i]) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!str[i+1]) {
|
|
|
|
if (IS_PRINTABLE (str[i])
|
|
|
|
&& str[i] != '"' && str[i] != '\\') {
|
|
|
|
ds_comment (ds, false, "%c", str[i]);
|
|
|
|
} else {
|
2017-07-04 16:56:14 +00:00
|
|
|
char *escchar = r_str_escape_latin1 (&str[i]);
|
2017-06-12 09:37:28 +00:00
|
|
|
if (escchar) {
|
|
|
|
ds_comment (ds, false, "%s", escchar);
|
|
|
|
free (escchar);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2017-07-01 08:08:41 +00:00
|
|
|
ds_comment (ds, false, "\\u%02x%02x", (ut8)str[i+1], (ut8)str[i]);
|
2017-06-12 09:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
ds_comment (ds, false, "\"%s", nl);
|
|
|
|
} else {
|
2017-07-04 16:56:14 +00:00
|
|
|
char *escstr = r_str_escape_latin1 (str);
|
2017-06-30 15:45:47 +00:00
|
|
|
if (escstr) {
|
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; \"%s\"%s", escstr, nl);
|
|
|
|
free (escstr);
|
2017-06-12 09:37:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-26 00:56:47 +00:00
|
|
|
static inline bool is_filtered_flag(RDisasmState *ds, const char *name) {
|
|
|
|
if (ds->show_noisy_comments || strncmp (name, "str.", 4)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
ut64 refaddr = ds->analop.ptr;
|
|
|
|
char *anal_flag = r_meta_get_string (ds->core->anal, R_META_TYPE_STRING, refaddr);
|
|
|
|
if (anal_flag) {
|
|
|
|
anal_flag = strdup (anal_flag);
|
|
|
|
if (anal_flag) {
|
|
|
|
r_name_filter (anal_flag, -1);
|
|
|
|
if (!strcmp (&name[4], anal_flag)) {
|
|
|
|
free (anal_flag);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
free (anal_flag);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-09-05 12:52:21 +00:00
|
|
|
/* convert numeric value in opcode to ascii char or number */
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_ptr(RDisasmState *ds, int len, int idx) {
|
|
|
|
RCore *core = ds->core;
|
2014-09-04 22:11:28 +00:00
|
|
|
ut64 p = ds->analop.ptr;
|
2016-09-12 21:11:38 +00:00
|
|
|
ut64 v = ds->analop.val;
|
2017-03-27 02:48:55 +00:00
|
|
|
ut64 refaddr = p;
|
2017-05-02 13:18:59 +00:00
|
|
|
RFlagItem *f;
|
2016-12-27 14:40:02 +00:00
|
|
|
char *nl = ds->show_comment_right? "" : "\n";
|
2016-12-24 17:17:25 +00:00
|
|
|
if (!ds->show_comments || !ds->show_slow) {
|
2015-08-26 01:27:34 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
if (((char)v > 0) && v >= '!' && v <= '~') {
|
2016-09-12 21:11:38 +00:00
|
|
|
char ch = v;
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; '%c'%s", ch, nl);
|
2016-09-12 21:11:38 +00:00
|
|
|
}
|
2017-03-27 02:48:55 +00:00
|
|
|
RList *list = NULL;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalRef *ref;
|
|
|
|
list = r_anal_refs_get (core->anal, ds->at);
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
if (ref->type == R_ANAL_REF_TYPE_STRING || ref->type == R_ANAL_REF_TYPE_DATA) {
|
|
|
|
if ((f = r_flag_get_i (core->flags, ref->addr))) {
|
|
|
|
refaddr = ref->addr;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-05-01 08:49:41 +00:00
|
|
|
bool flag_printed = false;
|
2017-05-02 13:18:59 +00:00
|
|
|
bool refaddr_printed = false;
|
2017-06-30 15:45:47 +00:00
|
|
|
bool string_printed = false;
|
2014-11-06 23:41:29 +00:00
|
|
|
if (p == UT64_MAX) {
|
|
|
|
/* do nothing */
|
2017-03-27 02:48:55 +00:00
|
|
|
} else if (((st64)p) > 0 || ((st64)refaddr) > 0) {
|
2014-11-06 23:41:29 +00:00
|
|
|
const char *kind;
|
2016-06-10 17:09:13 +00:00
|
|
|
char *msg = calloc (sizeof (char), len);
|
2017-03-27 02:48:55 +00:00
|
|
|
if (((st64)p) > 0) {
|
|
|
|
f = r_flag_get_i (core->flags, p);
|
|
|
|
if (f) {
|
|
|
|
refaddr = p;
|
2017-05-26 00:56:47 +00:00
|
|
|
if (!flag_printed && !is_filtered_flag (ds, f->name)
|
|
|
|
&& (!ds->opstr || !strstr (ds->opstr, f->name))) {
|
2017-05-01 08:49:41 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; %s%s", f->name, nl);
|
2017-05-01 08:49:41 +00:00
|
|
|
flag_printed = true;
|
|
|
|
}
|
2017-03-27 02:48:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
r_io_read_at (core->io, refaddr, (ut8*)msg, len - 1);
|
2014-11-06 23:41:29 +00:00
|
|
|
if (ds->analop.refptr) {
|
2016-11-22 22:59:04 +00:00
|
|
|
ut64 num = r_read_ble (msg, core->print->big_endian, ds->analop.refptr * 8);
|
2016-05-04 15:13:44 +00:00
|
|
|
st64 n = (st64)num;
|
|
|
|
st32 n32 = (st32)(n & UT32_MAX);
|
2015-04-03 15:25:07 +00:00
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_LEA) {
|
2017-06-27 22:56:22 +00:00
|
|
|
char str[128] = {0};
|
2017-03-27 02:48:55 +00:00
|
|
|
f = r_flag_get_i (core->flags, refaddr);
|
2017-06-27 22:56:22 +00:00
|
|
|
if (!f && ds->show_slow) {
|
|
|
|
r_io_read_at (ds->core->io, ds->analop.ptr,
|
|
|
|
(ut8*)str, sizeof (str) - 1);
|
2016-11-30 17:00:23 +00:00
|
|
|
str[sizeof (str) - 1] = 0;
|
2017-06-30 15:45:47 +00:00
|
|
|
if (!string_printed && str[0] && r_str_is_printable_incl_newlines (str)) {
|
|
|
|
ds_print_str (ds, str, sizeof (str));
|
|
|
|
string_printed = true;
|
2016-11-30 17:00:23 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-04-03 15:25:07 +00:00
|
|
|
} else {
|
2015-07-17 09:33:16 +00:00
|
|
|
f = NULL;
|
2016-06-10 17:09:13 +00:00
|
|
|
if (n == UT32_MAX || n == UT64_MAX) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; [0x%" PFMT64x":%d]=-1%s",
|
|
|
|
refaddr, ds->analop.refptr, nl);
|
2016-12-24 17:17:25 +00:00
|
|
|
} else if (n == n32 && (n32 > -512 && n32 < 512)) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; [0x%" PFMT64x
|
|
|
|
":%d]=%"PFMT64d"%s", refaddr, ds->analop.refptr, n, nl);
|
2015-04-03 15:25:07 +00:00
|
|
|
} else {
|
2015-07-08 16:46:35 +00:00
|
|
|
const char *kind, *flag = "";
|
|
|
|
char *msg2 = NULL;
|
2015-04-03 15:25:07 +00:00
|
|
|
f = r_flag_get_i (core->flags, n);
|
2015-07-08 16:46:35 +00:00
|
|
|
if (f) {
|
|
|
|
flag = f->name;
|
|
|
|
} else {
|
2015-07-15 14:45:24 +00:00
|
|
|
msg2 = calloc (sizeof (char), len);
|
2016-06-02 01:19:31 +00:00
|
|
|
r_io_read_at (core->io, n, (ut8*)msg2, len - 1);
|
|
|
|
msg2[len-1] = 0;
|
2017-03-27 02:48:55 +00:00
|
|
|
kind = r_anal_data_kind (core->anal, refaddr, (const ut8*)msg2, len - 1);
|
2015-07-08 16:46:35 +00:00
|
|
|
if (kind && !strcmp (kind, "text")) {
|
|
|
|
r_str_filter (msg2, 0);
|
|
|
|
if (*msg2) {
|
|
|
|
char *lala = r_str_newf ("\"%s\"", msg2);
|
|
|
|
free (msg2);
|
|
|
|
flag = msg2 = lala;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-03-30 00:20:22 +00:00
|
|
|
{
|
|
|
|
const char *refptrstr = "";
|
|
|
|
if (core->print->flags & R_PRINT_FLAGS_SECSUB) {
|
|
|
|
RIOSection *s = core->print->iob.section_vget (core->print->iob.io, n);
|
|
|
|
if (s) {
|
|
|
|
refptrstr = s->name;
|
|
|
|
}
|
|
|
|
}
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; [0x%" PFMT64x":%d]=%s%s0x%" PFMT64x "%s%s%s",
|
|
|
|
refaddr, ds->analop.refptr, refptrstr, *refptrstr?".":"",
|
2017-03-30 00:20:22 +00:00
|
|
|
n, (flag && *flag) ? " " : "", flag, nl);
|
|
|
|
}
|
2015-07-08 16:46:35 +00:00
|
|
|
free (msg2);
|
2015-04-03 15:25:07 +00:00
|
|
|
}
|
2017-05-02 13:18:59 +00:00
|
|
|
refaddr_printed = true;
|
|
|
|
}
|
|
|
|
}
|
2017-05-29 00:44:45 +00:00
|
|
|
if (!strcmp (ds->show_cmtoff, "true")) {
|
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; 0x%" PFMT64x "%s", refaddr, nl);
|
|
|
|
refaddr_printed = true;
|
|
|
|
} else if (!refaddr_printed && strcmp (ds->show_cmtoff, "false")) {
|
2017-05-02 13:18:59 +00:00
|
|
|
char addrstr[sizeof (refaddr) * 2 + 3];
|
|
|
|
snprintf (addrstr, sizeof (addrstr), "0x%" PFMT64x, refaddr);
|
|
|
|
if (!ds->opstr || !strstr (ds->opstr, addrstr)) {
|
|
|
|
snprintf (addrstr, sizeof (addrstr), "0x%08" PFMT64x, refaddr);
|
|
|
|
if (!ds->opstr || !strstr (ds->opstr, addrstr)) {
|
|
|
|
bool print_refaddr = true;
|
|
|
|
if (refaddr < 10) {
|
|
|
|
snprintf (addrstr, sizeof (addrstr), "%" PFMT64u, refaddr);
|
|
|
|
if (ds->opstr && strstr (ds->opstr, addrstr)) {
|
|
|
|
print_refaddr = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (print_refaddr) {
|
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; 0x%" PFMT64x "%s", refaddr, nl);
|
2017-05-02 13:18:59 +00:00
|
|
|
refaddr_printed = true;
|
|
|
|
}
|
2015-07-15 14:45:24 +00:00
|
|
|
}
|
2014-11-06 23:41:29 +00:00
|
|
|
}
|
|
|
|
}
|
2014-11-14 02:42:07 +00:00
|
|
|
#if 1
|
2017-04-23 08:47:24 +00:00
|
|
|
if (!(IS_PRINTABLE (*msg) || ISWHITECHAR (*msg))) {
|
2014-11-14 02:42:07 +00:00
|
|
|
*msg = 0;
|
2016-09-22 16:06:10 +00:00
|
|
|
} else {
|
2016-12-09 16:05:19 +00:00
|
|
|
msg[len - 1] = 0;
|
2016-09-22 16:06:10 +00:00
|
|
|
}
|
2014-11-14 02:42:07 +00:00
|
|
|
#endif
|
2017-03-27 02:48:55 +00:00
|
|
|
f = r_flag_get_i (core->flags, refaddr);
|
2014-08-05 03:37:48 +00:00
|
|
|
if (f) {
|
2017-04-23 08:47:24 +00:00
|
|
|
if (strlen (msg) != 1) {
|
2017-05-14 07:50:01 +00:00
|
|
|
char *msg2 = r_str_new (msg);
|
|
|
|
if (msg2) {
|
|
|
|
r_str_filter (msg2, 0);
|
|
|
|
if (!strncmp (msg2, "UH..", 4)) {
|
|
|
|
*msg = 0;
|
|
|
|
}
|
|
|
|
free (msg2);
|
|
|
|
}
|
2016-12-26 03:06:33 +00:00
|
|
|
}
|
2014-11-10 18:26:09 +00:00
|
|
|
if (*msg) {
|
2017-06-30 15:45:47 +00:00
|
|
|
if (!string_printed) {
|
|
|
|
ds_print_str (ds, msg, len);
|
|
|
|
string_printed = true;
|
|
|
|
}
|
2017-05-26 00:56:47 +00:00
|
|
|
} else if (!flag_printed && (!ds->opstr || !strstr (ds->opstr, f->name))) {
|
|
|
|
ALIGN;
|
|
|
|
ds_comment (ds, true, "; %s%s", f->name, nl);
|
|
|
|
flag_printed = true;
|
2014-11-10 18:26:09 +00:00
|
|
|
}
|
2014-08-05 03:37:48 +00:00
|
|
|
} else {
|
2017-03-27 02:48:55 +00:00
|
|
|
if (refaddr == UT64_MAX || refaddr == UT32_MAX) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; -1%s", nl);
|
2017-03-27 02:48:55 +00:00
|
|
|
} else if (((char)refaddr > 0) && refaddr >= '!' && refaddr <= '~') {
|
|
|
|
char ch = refaddr;
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; '%c'%s", ch, nl);
|
2017-03-27 02:48:55 +00:00
|
|
|
} else if (refaddr > 10) {
|
|
|
|
if ((st64)refaddr < 0) {
|
2014-09-22 11:45:36 +00:00
|
|
|
// resolve local var if possible
|
2017-03-27 02:48:55 +00:00
|
|
|
RAnalVar *v = r_anal_var_get (core->anal, ds->at, 'v', 1, (int)refaddr);
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2014-09-22 11:45:36 +00:00
|
|
|
if (v) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; var %s%s", v->name, nl);
|
2014-09-22 11:45:36 +00:00
|
|
|
r_anal_var_free (v);
|
|
|
|
} else {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment (ds, true, "; var %d%s", (int)-refaddr, nl);
|
2014-09-22 11:45:36 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-03-27 02:48:55 +00:00
|
|
|
if (r_core_anal_address (core, refaddr) & R_ANAL_ADDR_TYPE_ASCII) {
|
2017-06-30 15:45:47 +00:00
|
|
|
if (!string_printed && *msg) {
|
|
|
|
ds_print_str (ds, msg, len);
|
|
|
|
string_printed = true;
|
2014-11-18 23:26:26 +00:00
|
|
|
}
|
2014-11-11 17:06:20 +00:00
|
|
|
}
|
2014-11-10 18:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
2016-12-24 17:17:25 +00:00
|
|
|
//XXX this should be refactored with along the above
|
2017-03-27 02:48:55 +00:00
|
|
|
kind = r_anal_data_kind (core->anal, refaddr, (const ut8*)msg, len - 1);
|
2014-11-10 18:26:09 +00:00
|
|
|
if (kind) {
|
|
|
|
if (!strcmp (kind, "text")) {
|
2017-06-30 15:45:47 +00:00
|
|
|
if (!string_printed && *msg) {
|
|
|
|
ds_print_str (ds, msg, len);
|
|
|
|
string_printed = true;
|
2014-11-10 18:26:09 +00:00
|
|
|
}
|
2016-11-09 01:52:26 +00:00
|
|
|
} else if (!strcmp (kind, "invalid")) {
|
2017-03-27 02:48:55 +00:00
|
|
|
int *n = (int*)&refaddr;
|
2017-02-24 01:33:11 +00:00
|
|
|
ut64 p = ds->analop.val;
|
|
|
|
if (p == UT64_MAX || p == UT32_MAX) {
|
|
|
|
p = ds->analop.ptr;
|
|
|
|
}
|
2016-11-09 01:52:26 +00:00
|
|
|
/* avoid double ; -1 */
|
|
|
|
if (p != UT64_MAX && p != UT32_MAX) {
|
|
|
|
if (*n > -0xfff && *n < 0xfff) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ALIGN;
|
2017-05-29 21:48:03 +00:00
|
|
|
ds_comment (ds, true, "; %"PFMT64d"%s", p, nl);
|
2016-11-09 01:52:26 +00:00
|
|
|
}
|
2014-11-13 02:59:51 +00:00
|
|
|
}
|
2014-11-10 18:26:09 +00:00
|
|
|
} else {
|
2016-11-09 01:52:26 +00:00
|
|
|
// r_cons_printf (" ; %s", kind);
|
2014-09-22 11:45:36 +00:00
|
|
|
}
|
2014-11-10 18:26:09 +00:00
|
|
|
// TODO: check for more data kinds
|
2014-09-04 22:11:28 +00:00
|
|
|
}
|
2014-08-05 03:37:48 +00:00
|
|
|
}
|
2015-03-05 23:56:10 +00:00
|
|
|
free (msg);
|
2016-09-21 09:00:52 +00:00
|
|
|
} else {
|
|
|
|
ds_print_as_string (ds);
|
|
|
|
}
|
2017-01-02 14:56:08 +00:00
|
|
|
#if DEADCODE
|
2016-09-21 09:00:52 +00:00
|
|
|
if (aligned && ds->show_color) {
|
|
|
|
r_cons_printf (Color_RESET);
|
|
|
|
}
|
2017-01-02 14:56:08 +00:00
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-11-03 15:24:04 +00:00
|
|
|
// TODO: Use sdb in rbin to accelerate this
|
|
|
|
// we shuold use aligned reloc addresses instead of iterating all of them
|
|
|
|
static RBinReloc *getreloc(RCore *core, ut64 addr, int size) {
|
|
|
|
RList *list;
|
|
|
|
RBinReloc *r;
|
|
|
|
RListIter *iter;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (size < 1 || addr == UT64_MAX) {
|
|
|
|
return NULL;
|
|
|
|
}
|
2014-11-03 15:24:04 +00:00
|
|
|
list = r_bin_get_relocs (core->bin);
|
|
|
|
r_list_foreach (list, iter, r) {
|
2016-12-24 17:17:25 +00:00
|
|
|
if ((r->vaddr >= addr) && (r->vaddr < (addr + size))) {
|
2014-11-03 15:24:04 +00:00
|
|
|
return r;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2014-11-03 15:24:04 +00:00
|
|
|
}
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_relocs(RDisasmState *ds) {
|
2017-05-23 21:54:11 +00:00
|
|
|
if (!ds->showrelocs || !ds->show_slow) {
|
|
|
|
return;
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2014-11-03 15:24:04 +00:00
|
|
|
RBinReloc *rel = getreloc (core, ds->at, ds->analop.size);
|
2016-05-30 10:35:39 +00:00
|
|
|
|
2014-11-03 15:24:04 +00:00
|
|
|
if (rel) {
|
2016-11-01 00:14:23 +00:00
|
|
|
const int cmtcol = ds->cmtcol;
|
2017-01-23 21:42:27 +00:00
|
|
|
int cstrlen = 0;
|
|
|
|
char *ll = r_cons_lastline (&cstrlen);
|
2016-11-04 02:15:17 +00:00
|
|
|
int ansilen = r_str_ansi_len (ll);
|
2016-11-01 00:14:23 +00:00
|
|
|
int utf8len = r_utf8_strlen ((const ut8*)ll);
|
|
|
|
int cells = utf8len - (cstrlen - ansilen);
|
|
|
|
int len = cmtcol - cells;
|
|
|
|
r_cons_memset (' ', len);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (rel->import) {
|
2014-11-06 23:41:29 +00:00
|
|
|
r_cons_printf (" ; RELOC %d %s", rel->type, rel->import->name);
|
2016-09-23 14:28:48 +00:00
|
|
|
} else if (rel->symbol) {
|
2014-11-06 23:41:29 +00:00
|
|
|
r_cons_printf (" ; RELOC %d %s", rel->type, rel->symbol->name);
|
2016-09-23 14:28:48 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf (" ; RELOC %d ", rel->type);
|
|
|
|
}
|
2014-11-03 15:24:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-29 22:37:51 +00:00
|
|
|
static int mymemwrite0(RAnalEsil *esil, ut64 addr, const ut8 *buf, int len) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int mymemwrite1(RAnalEsil *esil, ut64 addr, const ut8 *buf, int len) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2016-10-18 14:59:38 +00:00
|
|
|
static int myregwrite(RAnalEsil *esil, const char *name, ut64 *val) {
|
2015-09-10 20:28:04 +00:00
|
|
|
char str[64], *msg = NULL;
|
2015-09-10 02:20:09 +00:00
|
|
|
ut32 *n32 = (ut32*)str;
|
2016-11-15 18:34:22 +00:00
|
|
|
RDisasmState *ds = NULL;
|
|
|
|
if (!esil) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
ds = esil->user;
|
2016-06-08 21:33:31 +00:00
|
|
|
if (ds) {
|
|
|
|
ds->esil_likely = true;
|
|
|
|
if (!ds->show_slow) {
|
|
|
|
return 0;
|
|
|
|
}
|
2015-09-10 02:20:09 +00:00
|
|
|
}
|
|
|
|
memset (str, 0, sizeof (str));
|
2016-12-24 17:17:25 +00:00
|
|
|
if (*val) {
|
2016-10-18 14:59:38 +00:00
|
|
|
(void)r_io_read_at (esil->anal->iob.io, *val, (ut8*)str, sizeof (str)-1);
|
2016-06-10 17:09:13 +00:00
|
|
|
str[sizeof (str)-1] = 0;
|
|
|
|
if (*str && r_str_is_printable (str)) {
|
|
|
|
// do nothing
|
2016-12-26 16:21:00 +00:00
|
|
|
msg = r_str_newf ("\"%s\" ", str);
|
2016-06-10 17:09:13 +00:00
|
|
|
} else {
|
|
|
|
str[0] = 0;
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!*n32) {
|
2016-06-10 17:09:13 +00:00
|
|
|
// msg = strdup ("NULL");
|
|
|
|
} else if (*n32 == UT32_MAX) {
|
|
|
|
/* nothing */
|
|
|
|
} else {
|
|
|
|
if (ds && !ds->show_emu_str) {
|
2016-12-29 09:31:36 +00:00
|
|
|
msg = r_str_newf ("-> 0x%x ", *n32);
|
2016-06-10 17:09:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-10-18 14:59:38 +00:00
|
|
|
RFlagItem *fi = r_flag_get_i (esil->anal->flb.f, *val);
|
2016-06-10 17:09:13 +00:00
|
|
|
if (fi) {
|
2017-03-16 21:29:49 +00:00
|
|
|
msg = r_str_appendf (msg, "%s", fi->name);
|
2016-06-10 17:09:13 +00:00
|
|
|
}
|
2015-09-10 02:20:09 +00:00
|
|
|
}
|
2016-11-15 18:34:22 +00:00
|
|
|
if (ds) {
|
|
|
|
if (ds->show_emu_str) {
|
2017-01-18 21:02:30 +00:00
|
|
|
if (msg && *msg) {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment_esil (ds, true, false, "; %s", msg);
|
2016-12-24 17:16:54 +00:00
|
|
|
if (ds->show_comments && !ds->show_comment_right) {
|
|
|
|
r_cons_newline ();
|
|
|
|
}
|
2016-11-15 18:34:22 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-05-08 18:21:56 +00:00
|
|
|
ds_comment_esil (ds, true, false, "; %s=0x%"PFMT64x" %s", name, *val,
|
2017-01-18 21:02:30 +00:00
|
|
|
msg ? msg : "");
|
|
|
|
if (ds->show_comments && !ds->show_comment_right) {
|
|
|
|
r_cons_newline ();
|
2016-12-24 17:16:54 +00:00
|
|
|
}
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2016-11-20 16:37:27 +00:00
|
|
|
}
|
2015-09-10 02:20:09 +00:00
|
|
|
free (msg);
|
2015-09-09 22:34:21 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_esil_anal_init(RDisasmState *ds) {
|
|
|
|
RCore *core = ds->core;
|
2015-09-09 23:42:56 +00:00
|
|
|
const char *pc = r_reg_get_name (core->anal->reg, R_REG_NAME_PC);
|
2016-06-08 19:16:00 +00:00
|
|
|
ds->esil_old_pc = r_reg_getv (core->anal->reg, pc);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!ds->esil_old_pc || ds->esil_old_pc == UT64_MAX) {
|
|
|
|
ds->esil_old_pc = core->offset;
|
|
|
|
}
|
2015-09-11 21:46:09 +00:00
|
|
|
if (!ds->show_emu) {
|
2015-09-09 23:42:56 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!core->anal->esil) {
|
|
|
|
int iotrap = r_config_get_i (core->config, "esil.iotrap");
|
2017-03-27 01:39:13 +00:00
|
|
|
int esd = r_config_get_i (core->config, "esil.stack.depth");
|
|
|
|
if (!(core->anal->esil = r_anal_esil_new (esd, iotrap))) {
|
2016-06-08 19:16:00 +00:00
|
|
|
R_FREE (ds->esil_regstate);
|
2016-01-20 16:13:30 +00:00
|
|
|
return;
|
|
|
|
}
|
2016-08-05 11:35:44 +00:00
|
|
|
r_anal_esil_setup (core->anal->esil, core->anal, 0, 0, 1);
|
2015-09-09 23:42:56 +00:00
|
|
|
}
|
2016-06-10 14:14:07 +00:00
|
|
|
core->anal->esil->user = ds;
|
2016-06-08 19:16:00 +00:00
|
|
|
free (ds->esil_regstate);
|
2016-10-24 12:31:03 +00:00
|
|
|
R_FREE (core->anal->last_disasm_reg);
|
2016-04-21 00:25:49 +00:00
|
|
|
if (core->anal->gp) {
|
2016-05-27 11:24:42 +00:00
|
|
|
r_reg_setv (core->anal->reg, "gp", core->anal->gp);
|
2016-04-21 00:25:49 +00:00
|
|
|
}
|
2016-06-08 19:16:00 +00:00
|
|
|
ds->esil_regstate = r_reg_arena_peek (core->anal->reg);
|
2015-09-09 23:42:56 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_esil_anal_fini(RDisasmState *ds) {
|
2016-11-15 18:34:22 +00:00
|
|
|
RCore *core = ds->core;
|
2016-06-08 19:16:00 +00:00
|
|
|
if (ds->show_emu && ds->esil_regstate) {
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore* core = ds->core;
|
2016-10-24 12:31:03 +00:00
|
|
|
core->anal->last_disasm_reg = r_reg_arena_peek (core->anal->reg);
|
2015-11-23 23:58:03 +00:00
|
|
|
const char *pc = r_reg_get_name (core->anal->reg, R_REG_NAME_PC);
|
2016-06-08 19:16:00 +00:00
|
|
|
r_reg_arena_poke (core->anal->reg, ds->esil_regstate);
|
|
|
|
r_reg_setv (core->anal->reg, pc, ds->esil_old_pc);
|
|
|
|
R_FREE (ds->esil_regstate);
|
2015-11-23 23:58:03 +00:00
|
|
|
}
|
2016-11-15 18:34:22 +00:00
|
|
|
if (core && core->anal && core->anal->esil) {
|
|
|
|
//make sure to remove reference to ds to avoid UAF
|
|
|
|
core->anal->esil->user = NULL;
|
|
|
|
}
|
2015-09-09 23:42:56 +00:00
|
|
|
}
|
|
|
|
|
2017-05-20 12:37:51 +00:00
|
|
|
static void ds_print_bbline(RDisasmState *ds, bool force) {
|
|
|
|
if (ds->show_bbline && (force || (ds->fcn && r_anal_fcn_bbget (ds->fcn, ds->at)))) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_setup_print_pre (ds, false, false);
|
|
|
|
ds_update_ref_lines (ds);
|
2016-02-23 14:31:24 +00:00
|
|
|
if (!ds->linesright && ds->show_lines && ds->line) {
|
|
|
|
r_cons_printf ("%s%s%s", COLOR (ds, color_flow),
|
|
|
|
ds->refline2, COLOR_RESET (ds));
|
2015-11-23 00:40:35 +00:00
|
|
|
}
|
2017-05-20 12:37:51 +00:00
|
|
|
r_cons_printf ("\n");
|
2015-11-23 00:40:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-01 12:32:22 +00:00
|
|
|
static void get_fcn_args_info(RAnal *anal, const char *fcn_name, int arg_num, const char * cc, const char **name,
|
|
|
|
char **orig_c_type, char **c_type, const char **fmt, ut64 *size, const char **source) {
|
|
|
|
*name = r_anal_type_func_args_name (anal, fcn_name, arg_num);
|
|
|
|
*orig_c_type = r_anal_type_func_args_type (anal, fcn_name, arg_num);
|
2017-05-23 21:54:11 +00:00
|
|
|
if (!strncmp ("const ", *orig_c_type, 6)) {
|
2016-11-01 12:32:22 +00:00
|
|
|
*c_type = *orig_c_type+6;
|
|
|
|
} else {
|
|
|
|
*c_type = *orig_c_type;
|
|
|
|
}
|
|
|
|
const char *query = sdb_fmt (-1, "type.%s", *c_type);
|
|
|
|
*fmt = sdb_const_get (anal->sdb_types, query, 0);
|
|
|
|
const char *t_query = sdb_fmt (-1, "type.%s.size", *c_type);
|
|
|
|
*size = sdb_num_get (anal->sdb_types, t_query, 0) / 8;
|
|
|
|
*source = r_anal_cc_arg (anal, cc, arg_num+1);
|
|
|
|
}
|
|
|
|
|
2016-12-24 17:17:25 +00:00
|
|
|
static void print_fcn_arg(RCore *core, const char *type, const char *name,
|
|
|
|
const char *fmt, const ut64 addr,
|
|
|
|
const int on_stack) {
|
2016-11-01 12:32:22 +00:00
|
|
|
//r_cons_newline ();
|
|
|
|
r_cons_printf ("%s", type);
|
2016-12-24 17:17:25 +00:00
|
|
|
r_core_cmdf (core, "pf %s%s %s @ 0x%08" PFMT64x,
|
2017-05-08 18:21:06 +00:00
|
|
|
(on_stack == 1) ? "*" : "", fmt, name, addr);
|
2016-11-01 12:32:22 +00:00
|
|
|
r_cons_chop ();
|
|
|
|
r_cons_chop ();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void delete_last_comment(RDisasmState *ds) {
|
|
|
|
if (ds->show_comment_right_default) {
|
2017-01-23 21:42:27 +00:00
|
|
|
int len = 0;
|
|
|
|
char *ll = r_cons_lastline (&len);
|
2016-11-01 12:32:22 +00:00
|
|
|
if (ll) {
|
2017-01-23 23:50:22 +00:00
|
|
|
const char *begin = r_str_nstr (ll, "; ", len);
|
2016-11-01 12:32:22 +00:00
|
|
|
if (begin) {
|
2017-01-24 12:57:17 +00:00
|
|
|
// const int cstrlen = begin + len - ll;
|
2017-01-24 10:36:02 +00:00
|
|
|
// r_cons_drop (cstrlen - (int)(begin - ll));
|
|
|
|
r_cons_newline();
|
2016-11-01 12:32:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static char * resolve_fcn_name(RAnal *anal, const char * func_name) {
|
|
|
|
const char * name = NULL;
|
|
|
|
const char * str = func_name;
|
|
|
|
if (r_anal_type_func_exist (anal, func_name)) {
|
|
|
|
return strdup (func_name);
|
|
|
|
}
|
|
|
|
name = func_name;
|
|
|
|
while ((str = strchr (str, '.'))) {
|
2016-11-09 01:52:26 +00:00
|
|
|
name = str + 1;
|
2016-11-01 12:32:22 +00:00
|
|
|
str++;
|
|
|
|
}
|
|
|
|
if (r_anal_type_func_exist (anal, name)) {
|
|
|
|
return strdup (name);
|
|
|
|
}
|
|
|
|
return r_anal_type_func_guess (anal, (char*)func_name);
|
|
|
|
}
|
|
|
|
|
2016-11-20 16:37:27 +00:00
|
|
|
static bool can_emulate_metadata(RCore * core, ut64 at) {
|
|
|
|
const char *infos;
|
|
|
|
const char *emuskipmeta = r_config_get (core->config, "asm.emuskip");
|
|
|
|
char key[32];
|
|
|
|
Sdb *s = core->anal->sdb_meta;
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.0x%"PFMT64x, at);
|
|
|
|
infos = sdb_const_get (s, key, 0);
|
|
|
|
if (!infos) {
|
|
|
|
/* no metadata: let's emulate this */
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
for (; *infos; infos++) {
|
|
|
|
/*
|
|
|
|
* don't emulate if at least one metadata type
|
|
|
|
* can't be emulated
|
|
|
|
*/
|
|
|
|
if (*infos != ',' && strchr(emuskipmeta, *infos)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-11-23 23:58:03 +00:00
|
|
|
// modifies anal register state
|
2017-01-18 21:02:30 +00:00
|
|
|
static void ds_print_esil_anal(RDisasmState *ds) {
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
2015-09-09 22:34:21 +00:00
|
|
|
RAnalEsil *esil = core->anal->esil;
|
|
|
|
const char *pc;
|
2017-06-08 16:20:48 +00:00
|
|
|
int (*hook_mem_write)(RAnalEsil *esil, ut64 addr, const ut8 *buf, int len) = NULL;
|
2016-12-24 17:16:54 +00:00
|
|
|
int i, nargs;
|
2016-11-04 02:15:17 +00:00
|
|
|
ut64 at = p2v (ds, ds->at);
|
2017-01-18 21:02:30 +00:00
|
|
|
RConfigHold *hc = r_config_hold_new (core->config);
|
2016-08-07 17:05:55 +00:00
|
|
|
if (!esil) {
|
|
|
|
ds_print_esil_anal_init (ds);
|
|
|
|
esil = core->anal->esil;
|
|
|
|
}
|
2017-05-08 18:21:06 +00:00
|
|
|
if (!ds->show_emu) {
|
2016-03-03 23:33:24 +00:00
|
|
|
goto beach;
|
2015-09-09 22:41:19 +00:00
|
|
|
}
|
2016-11-20 16:37:27 +00:00
|
|
|
if (!can_emulate_metadata (core, at)) {
|
|
|
|
goto beach;
|
2016-04-11 08:16:47 +00:00
|
|
|
}
|
2016-10-06 01:42:49 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
2017-01-18 21:02:30 +00:00
|
|
|
ds_align_comment (ds);
|
2015-09-09 23:42:56 +00:00
|
|
|
esil = core->anal->esil;
|
2015-09-09 22:34:21 +00:00
|
|
|
pc = r_reg_get_name (core->anal->reg, R_REG_NAME_PC);
|
2016-11-04 00:30:35 +00:00
|
|
|
r_reg_setv (core->anal->reg, pc, at + ds->analop.size);
|
2016-12-24 17:16:54 +00:00
|
|
|
esil->cb.user = ds;
|
2015-09-09 23:42:56 +00:00
|
|
|
esil->cb.hook_reg_write = myregwrite;
|
2017-06-08 16:20:48 +00:00
|
|
|
hook_mem_write = esil->cb.hook_mem_write;
|
2015-10-29 22:37:51 +00:00
|
|
|
if (ds->show_emu_write) {
|
|
|
|
esil->cb.hook_mem_write = mymemwrite0;
|
|
|
|
} else {
|
|
|
|
esil->cb.hook_mem_write = mymemwrite1;
|
|
|
|
}
|
2016-06-08 19:16:00 +00:00
|
|
|
ds->esil_likely = 0;
|
2016-11-04 00:30:35 +00:00
|
|
|
r_anal_esil_set_pc (esil, at);
|
2015-09-09 22:34:21 +00:00
|
|
|
r_anal_esil_parse (esil, R_STRBUF_SAFEGET (&ds->analop.esil));
|
|
|
|
r_anal_esil_stack_free (esil);
|
2017-01-08 16:28:01 +00:00
|
|
|
hc = r_config_hold_new (core->config);
|
|
|
|
if (!hc) {
|
2017-06-12 09:28:54 +00:00
|
|
|
if (hook_mem_write) {
|
2017-06-08 16:20:48 +00:00
|
|
|
esil->cb.hook_mem_write = hook_mem_write;
|
|
|
|
}
|
2017-01-08 16:28:01 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
r_config_save_num (hc, "io.cache", NULL);
|
|
|
|
r_config_set (core->config, "io.cache", "true");
|
2017-01-19 20:44:48 +00:00
|
|
|
if (!ds->show_comments) {
|
2017-01-08 17:04:13 +00:00
|
|
|
goto beach;
|
|
|
|
}
|
2015-10-29 22:37:51 +00:00
|
|
|
switch (ds->analop.type) {
|
|
|
|
case R_ANAL_OP_TYPE_SWI: {
|
|
|
|
char *s = cmd_syscall_dostr (core, -1);
|
2015-10-29 10:22:49 +00:00
|
|
|
if (s) {
|
2017-06-04 20:30:09 +00:00
|
|
|
// XXX this should be shown in ds_comment_esil, for some reason it doesnt
|
|
|
|
r_cons_printf ("; ");
|
2017-01-18 21:02:30 +00:00
|
|
|
ds_comment_esil (ds, true, "; %s", s);
|
2015-10-29 10:22:49 +00:00
|
|
|
free (s);
|
|
|
|
}
|
2015-10-29 22:37:51 +00:00
|
|
|
} break;
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
2017-01-18 21:02:30 +00:00
|
|
|
ds_comment_esil (ds, true, true, ds->esil_likely? "; likely" : "; unlikely");
|
2015-10-29 22:37:51 +00:00
|
|
|
break;
|
|
|
|
case R_ANAL_OP_TYPE_UCALL:
|
2016-09-22 11:42:06 +00:00
|
|
|
case R_ANAL_OP_TYPE_ICALL:
|
|
|
|
case R_ANAL_OP_TYPE_RCALL:
|
|
|
|
case R_ANAL_OP_TYPE_IRCALL:
|
2015-10-29 22:37:51 +00:00
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
|
|
|
{
|
2016-04-03 16:13:12 +00:00
|
|
|
RAnalFunction *fcn;
|
2016-11-01 12:32:22 +00:00
|
|
|
const char *fcn_name = NULL;
|
2016-04-03 16:13:12 +00:00
|
|
|
ut64 pcv = ds->analop.jump;
|
|
|
|
if (pcv == UT64_MAX) {
|
2016-04-03 16:41:50 +00:00
|
|
|
pcv = ds->analop.ptr; // call [reloc-addr] // windows style
|
2016-12-24 17:16:54 +00:00
|
|
|
if (pcv == UT64_MAX || !pcv) {
|
2016-11-03 08:05:33 +00:00
|
|
|
r_anal_esil_reg_read (esil, "$jt", &pcv, NULL);
|
2016-12-24 17:16:54 +00:00
|
|
|
if (pcv == UT64_MAX || !pcv) {
|
2016-11-03 08:05:33 +00:00
|
|
|
pcv = r_reg_getv (core->anal->reg, pc);
|
|
|
|
}
|
2016-04-03 16:13:12 +00:00
|
|
|
}
|
2015-10-30 02:07:22 +00:00
|
|
|
}
|
2016-04-03 16:13:12 +00:00
|
|
|
fcn = r_anal_get_fcn_at (core->anal, pcv, 0);
|
2015-10-29 22:37:51 +00:00
|
|
|
if (fcn) {
|
2016-11-01 12:32:22 +00:00
|
|
|
fcn_name = fcn->name;
|
2015-10-29 22:37:51 +00:00
|
|
|
} else {
|
2015-10-30 02:07:22 +00:00
|
|
|
RFlagItem *item = r_flag_get_i (core->flags, pcv);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (item) {
|
2016-11-01 12:32:22 +00:00
|
|
|
fcn_name = item->name;
|
2016-09-23 14:28:48 +00:00
|
|
|
}
|
2015-10-30 02:07:22 +00:00
|
|
|
}
|
2016-11-01 12:32:22 +00:00
|
|
|
if (fcn_name) {
|
|
|
|
char * key = resolve_fcn_name (core->anal, fcn_name);
|
|
|
|
if (key) {
|
|
|
|
const char *sp = r_reg_get_name (core->anal->reg, R_REG_NAME_SP);
|
|
|
|
const char *fcn_type = r_anal_type_func_ret (core->anal, key);
|
|
|
|
const char * cc;
|
|
|
|
nargs = r_anal_type_func_args_count (core->anal, key);
|
|
|
|
// HACK: remove other comments
|
|
|
|
delete_last_comment (ds);
|
|
|
|
if (ds->show_color) {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, true, false, ds->pal_comment);
|
2016-11-01 12:32:22 +00:00
|
|
|
}
|
2016-12-26 19:10:10 +00:00
|
|
|
ds_align_comment (ds);
|
2017-01-31 09:00:24 +00:00
|
|
|
ds_comment_esil (ds, ds->show_color? false : true, false,
|
|
|
|
"; %s%s%s(", r_str_get (fcn_type), (fcn_type && *fcn_type &&
|
2016-12-24 17:16:54 +00:00
|
|
|
fcn_type[strlen (fcn_type) - 1] == '*') ? "" : " ",
|
2017-01-31 09:00:24 +00:00
|
|
|
r_str_get (key));
|
2016-12-24 17:16:54 +00:00
|
|
|
if (!nargs) {
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_comment_esil (ds, false, true, "void)");
|
2016-11-01 12:32:22 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
cc = r_anal_type_func_cc (core->anal, key);
|
|
|
|
if (!cc) {
|
|
|
|
// unsupported calling convention
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
ut64 spv = r_reg_getv (core->anal->reg, sp);
|
|
|
|
ut64 s_width = (core->anal->bits == 64)? 8: 4;
|
|
|
|
spv += s_width;
|
|
|
|
ut64 arg_addr = UT64_MAX;
|
2016-12-24 17:16:54 +00:00
|
|
|
//this should be taken out on its own function
|
2016-11-01 12:32:22 +00:00
|
|
|
for (i = 0; i < nargs; i++) {
|
|
|
|
const char *arg_name, *fmt, *cc_source;
|
|
|
|
char *arg_orig_c_type, *arg_c_type;
|
|
|
|
ut64 arg_size;
|
2016-12-24 17:16:54 +00:00
|
|
|
int on_stack = 0, warning = 0;
|
|
|
|
get_fcn_args_info (core->anal, key, i, cc, &arg_name,
|
|
|
|
&arg_orig_c_type, &arg_c_type, &fmt,
|
|
|
|
&arg_size, &cc_source);
|
2016-11-01 12:32:22 +00:00
|
|
|
if (!strcmp (cc_source, "stack_rev")) {
|
|
|
|
int j;
|
|
|
|
free (arg_orig_c_type);
|
|
|
|
on_stack = 1;
|
2016-12-24 17:16:54 +00:00
|
|
|
for (j = nargs - 1; j >= i; j--) {
|
2016-11-01 20:23:33 +00:00
|
|
|
warning = 0;
|
2016-12-24 17:16:54 +00:00
|
|
|
get_fcn_args_info (core->anal, key, j, cc,
|
|
|
|
&arg_name, &arg_orig_c_type, &arg_c_type,
|
|
|
|
&fmt, &arg_size, &cc_source);
|
2016-11-01 12:32:22 +00:00
|
|
|
arg_addr = spv;
|
2016-12-24 17:16:54 +00:00
|
|
|
if (!arg_size) {
|
|
|
|
ds_comment_esil (ds, false, "%s: unk_size", arg_c_type);
|
2016-11-01 20:23:33 +00:00
|
|
|
warning = 1;
|
2016-11-01 12:32:22 +00:00
|
|
|
arg_size = s_width;
|
|
|
|
}
|
2016-11-01 20:23:33 +00:00
|
|
|
spv += arg_size;
|
2016-11-01 12:32:22 +00:00
|
|
|
if (!fmt) {
|
2016-11-01 20:23:33 +00:00
|
|
|
if (!warning) {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, false, false, "%s : unk_format", arg_c_type);
|
2016-11-01 20:23:33 +00:00
|
|
|
} else {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, false, false, "_format");
|
2016-11-01 20:23:33 +00:00
|
|
|
}
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_comment_esil (ds, false, false, j!=i?", ":")");
|
2016-11-01 12:32:22 +00:00
|
|
|
free (arg_orig_c_type);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fmt) {
|
2016-12-24 17:16:54 +00:00
|
|
|
//print_fcn_arg may need ds_comment_esil
|
|
|
|
print_fcn_arg (core, arg_orig_c_type,
|
|
|
|
arg_name, fmt, arg_addr, on_stack);
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_comment_esil (ds, false, false, j!=i?", ":")");
|
2016-11-01 12:32:22 +00:00
|
|
|
}
|
|
|
|
free (arg_orig_c_type);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strncmp (cc_source, "stack", 5)) {
|
|
|
|
arg_addr = spv;
|
2016-12-24 17:16:54 +00:00
|
|
|
if (!arg_size) {
|
|
|
|
ds_comment_esil (ds, false, false, "%s: unk_size", arg_c_type);
|
2016-11-01 20:23:33 +00:00
|
|
|
warning = 1;
|
2016-11-01 12:32:22 +00:00
|
|
|
arg_size = s_width;
|
|
|
|
}
|
2016-11-01 20:23:33 +00:00
|
|
|
spv += arg_size;
|
2016-11-01 12:32:22 +00:00
|
|
|
on_stack = 1;
|
|
|
|
} else {
|
|
|
|
arg_addr = r_reg_getv (core->anal->reg, cc_source);
|
|
|
|
}
|
|
|
|
if (!fmt) {
|
2016-11-01 20:23:33 +00:00
|
|
|
if (!warning) {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, false, false, "%s : unk_format", arg_c_type);
|
2016-11-01 20:23:33 +00:00
|
|
|
} else {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, false, false, "_format");
|
2016-11-01 20:23:33 +00:00
|
|
|
}
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_comment_esil (ds, false, false, i!=(nargs-1)?", ":")");
|
2016-11-01 12:32:22 +00:00
|
|
|
free (arg_orig_c_type);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (fmt) {
|
2017-01-18 21:02:30 +00:00
|
|
|
//it may need ds_comment_esil
|
2017-01-31 09:00:24 +00:00
|
|
|
print_fcn_arg (core, arg_orig_c_type, arg_name,
|
|
|
|
fmt, arg_addr, on_stack);
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_comment_esil (ds, false, false, i!=(nargs - 1)?", ":")");
|
2016-11-01 12:32:22 +00:00
|
|
|
}
|
|
|
|
free (arg_orig_c_type);
|
|
|
|
}
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment_esil (ds, false, true, "");
|
2016-11-01 12:32:22 +00:00
|
|
|
free (key);
|
|
|
|
} else {
|
|
|
|
// function not in sdb
|
|
|
|
goto callfallback;
|
|
|
|
}
|
2015-10-30 02:07:22 +00:00
|
|
|
} else {
|
2016-11-01 12:32:22 +00:00
|
|
|
// function name not resolved
|
|
|
|
callfallback:
|
|
|
|
nargs = DEFAULT_NARGS;
|
|
|
|
if (fcn) {
|
|
|
|
nargs = fcn->nargs;
|
|
|
|
}
|
2016-12-26 19:10:10 +00:00
|
|
|
if (nargs > 0) {
|
|
|
|
ds_comment_esil (ds, true, false, "; CALL: ");
|
|
|
|
for (i = 0; i < nargs; i++) {
|
|
|
|
ut64 v = r_debug_arg_get (core->dbg, R_ANAL_CC_TYPE_STDCALL, i);
|
|
|
|
ds_comment_esil (ds, false, false, "%s0x%"PFMT64x, i?", ":"", v);
|
|
|
|
}
|
|
|
|
ds_comment_esil (ds, false, true, "");
|
2015-10-30 02:07:22 +00:00
|
|
|
}
|
2015-10-29 22:37:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-09-09 22:34:21 +00:00
|
|
|
}
|
2017-01-02 14:56:08 +00:00
|
|
|
beach:
|
2017-06-08 16:20:48 +00:00
|
|
|
if (esil) {
|
|
|
|
esil->cb.hook_mem_write = hook_mem_write;
|
|
|
|
}
|
2016-12-24 17:16:54 +00:00
|
|
|
r_config_restore (hc);
|
|
|
|
r_config_hold_free (hc);
|
2015-09-09 22:34:21 +00:00
|
|
|
}
|
2016-09-21 09:00:52 +00:00
|
|
|
|
2016-09-14 14:49:19 +00:00
|
|
|
static void ds_print_calls_hints(RDisasmState *ds) {
|
2016-11-01 12:32:22 +00:00
|
|
|
int emu = r_config_get_i (ds->core->config, "asm.emu");
|
|
|
|
int emuwrite = r_config_get_i (ds->core->config, "asm.emuwrite");
|
|
|
|
if (emu && emuwrite) {
|
|
|
|
// this is done by ESIL
|
|
|
|
return;
|
|
|
|
}
|
2016-09-14 14:49:19 +00:00
|
|
|
RAnal *anal = ds->core->anal;
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (anal, ds->analop.jump, -1);
|
|
|
|
char *name;
|
|
|
|
if (!fcn) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (r_anal_type_func_exist (anal, fcn->name)) {
|
|
|
|
name = strdup (fcn->name);
|
|
|
|
} else if (!(name = r_anal_type_func_guess (anal, fcn->name))) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->pal_comment);
|
|
|
|
}
|
|
|
|
ds_align_comment (ds);
|
2016-09-14 16:23:11 +00:00
|
|
|
const char *fcn_type = r_anal_type_func_ret (anal, name);
|
2016-11-15 19:33:43 +00:00
|
|
|
if (fcn_type && *fcn_type) {
|
2016-11-15 18:38:18 +00:00
|
|
|
r_cons_printf (
|
2017-05-08 18:21:56 +00:00
|
|
|
"; %s%s%s(", fcn_type,
|
2016-11-15 18:38:18 +00:00
|
|
|
fcn_type[strlen (fcn_type) - 1] == '*' ? "" : " ",
|
|
|
|
name);
|
|
|
|
}
|
2016-09-14 14:49:19 +00:00
|
|
|
int i, arg_max = r_anal_type_func_args_count (anal, name);
|
2016-09-23 14:28:48 +00:00
|
|
|
if (!arg_max) {
|
2016-12-27 14:40:02 +00:00
|
|
|
r_cons_printf ("void)");
|
2016-09-15 09:09:23 +00:00
|
|
|
} else {
|
|
|
|
for (i = 0; i < arg_max; i++) {
|
|
|
|
char *type = r_anal_type_func_args_type (anal, name, i);
|
2016-11-15 19:33:43 +00:00
|
|
|
if (type && *type) {
|
|
|
|
r_cons_printf ("%s%s%s%s%s", i == 0 ? "": " ", type,
|
|
|
|
type[strlen (type) -1] == '*' ? "": " ",
|
|
|
|
r_anal_type_func_args_name (anal, name, i),
|
2016-12-27 14:40:02 +00:00
|
|
|
i == arg_max - 1 ? ")": ",");
|
2016-11-15 19:33:43 +00:00
|
|
|
}
|
2016-09-15 09:09:23 +00:00
|
|
|
free (type);
|
|
|
|
}
|
2016-09-14 14:49:19 +00:00
|
|
|
}
|
|
|
|
free (name);
|
|
|
|
}
|
2016-09-21 09:00:52 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_comments_right(RDisasmState *ds) {
|
2015-03-08 01:27:39 +00:00
|
|
|
char *desc = NULL;
|
2016-05-30 10:35:39 +00:00
|
|
|
RCore *core = ds->core;
|
|
|
|
ds_print_relocs (ds);
|
2016-08-16 10:19:02 +00:00
|
|
|
if (ds->asm_describe && !ds->has_description) {
|
|
|
|
char *op, *locase = strdup (ds->asmop.buf_asm);
|
|
|
|
if (!locase) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
op = strchr (locase, ' ');
|
2016-12-24 17:17:25 +00:00
|
|
|
if (op) {
|
|
|
|
*op = 0;
|
|
|
|
}
|
2015-07-15 12:55:00 +00:00
|
|
|
r_str_case (locase, 0);
|
|
|
|
desc = r_asm_describe (core->assembler, locase);
|
|
|
|
free (locase);
|
2015-03-08 01:27:39 +00:00
|
|
|
}
|
|
|
|
if (ds->show_comments) {
|
2016-05-31 21:37:17 +00:00
|
|
|
if (desc && *desc) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_align_comment (ds);
|
2015-11-02 11:38:08 +00:00
|
|
|
if (ds->show_color) {
|
2015-03-08 01:27:39 +00:00
|
|
|
r_cons_strcat (ds->color_comment);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2017-06-19 17:00:53 +00:00
|
|
|
r_cons_strcat ("; ");
|
2015-03-08 01:27:39 +00:00
|
|
|
r_cons_strcat (desc);
|
|
|
|
}
|
|
|
|
if (ds->show_comment_right && ds->comment) {
|
2016-05-31 21:37:17 +00:00
|
|
|
char *comment = r_str_chop (ds->comment);
|
|
|
|
if (*comment) {
|
|
|
|
if (!desc) {
|
|
|
|
ds_align_comment (ds);
|
|
|
|
}
|
2015-11-02 11:38:08 +00:00
|
|
|
if (ds->show_color) {
|
2015-03-08 01:27:39 +00:00
|
|
|
r_cons_strcat (ds->color_comment);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2017-05-08 18:21:56 +00:00
|
|
|
r_cons_printf ("; %s", comment);
|
2015-03-08 01:27:39 +00:00
|
|
|
}
|
2016-05-31 21:37:17 +00:00
|
|
|
// r_cons_strcat_justify (comment, strlen (ds->refline) + 5, ';');
|
2015-11-02 11:38:08 +00:00
|
|
|
if (ds->show_color) {
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_color_reset (ds);
|
2015-11-02 11:38:08 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->comment);
|
2015-03-08 01:27:39 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2015-03-08 01:27:39 +00:00
|
|
|
free (desc);
|
2016-09-14 14:49:19 +00:00
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_CALL && ds->show_calls) {
|
|
|
|
ds_print_calls_hints (ds);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-06-18 23:11:53 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
static void ds_print_as_string(RDisasmState *ds) {
|
2016-10-06 09:24:39 +00:00
|
|
|
char *str = r_num_as_string (NULL, ds->analop.ptr, true);
|
2014-05-07 00:51:04 +00:00
|
|
|
if (str) {
|
2016-12-24 17:16:54 +00:00
|
|
|
ds_comment (ds, false, "%s; \"%s\"%s", COLOR (ds, pal_comment),
|
2015-11-02 11:38:08 +00:00
|
|
|
str, COLOR_RESET (ds));
|
2014-05-07 00:51:04 +00:00
|
|
|
}
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
|
2014-01-16 17:04:42 +00:00
|
|
|
// int l is for lines
|
|
|
|
R_API int r_core_print_disasm(RPrint *p, RCore *core, ut64 addr, ut8 *buf, int len, int l, int invbreak, int cbytes) {
|
|
|
|
int continueoninvbreak = (len == l) && invbreak;
|
2015-12-14 09:19:07 +00:00
|
|
|
RAnalFunction *of = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalFunction *f = NULL;
|
2016-02-22 22:45:36 +00:00
|
|
|
int ret, i, inc, skip_bytes = 0, idx = 0;
|
2015-12-14 09:19:07 +00:00
|
|
|
int dorepeat = 1;
|
2014-01-16 17:04:42 +00:00
|
|
|
ut8 *nbuf = NULL;
|
2014-01-20 00:42:16 +00:00
|
|
|
RDisasmState *ds;
|
2014-02-14 19:40:22 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
// TODO: All those ds must be print flags
|
2016-05-30 10:35:39 +00:00
|
|
|
ds = ds_init (core);
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->cbytes = cbytes;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->print = p;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->l = l;
|
|
|
|
ds->buf = buf;
|
|
|
|
ds->len = len;
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->addr = addr;
|
2015-09-28 09:21:23 +00:00
|
|
|
ds->hint = NULL;
|
2015-12-14 09:19:07 +00:00
|
|
|
//r_cons_printf ("len =%d l=%d ib=%d limit=%d\n", len, l, invbreak, p->limit);
|
|
|
|
// TODO: import values from debugger is possible
|
|
|
|
// TODO: allow to get those register snapshots from traces
|
|
|
|
// TODO: per-function register state trace
|
|
|
|
// XXX - is there a better way to reset a the analysis counter so that
|
|
|
|
// when code is disassembled, it can actually find the correct offsets
|
2016-06-10 14:14:07 +00:00
|
|
|
{ /* used by asm.emu */
|
2015-12-14 09:19:07 +00:00
|
|
|
r_reg_arena_push (core->anal->reg);
|
|
|
|
}
|
|
|
|
if (core->anal->cur && core->anal->cur->reset_counter) {
|
|
|
|
core->anal->cur->reset_counter (core->anal, addr);
|
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_reflines_init (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
core->inc = 0;
|
2015-10-08 18:00:31 +00:00
|
|
|
/* reset jmp table if not asked to keep it */
|
|
|
|
if (!core->keep_asmqjmps) { // hack
|
|
|
|
core->asmqjmps_count = 0;
|
|
|
|
core->asmqjmps_size = R_CORE_ASMQJMPS_NUM;
|
|
|
|
core->asmqjmps = realloc (core->asmqjmps, core->asmqjmps_size * sizeof (ut64));
|
|
|
|
if (core->asmqjmps) {
|
|
|
|
for (i = 0; i < R_CORE_ASMQJMPS_NUM; i++) {
|
|
|
|
core->asmqjmps[i] = UT64_MAX;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
toro:
|
|
|
|
// uhm... is this necesary? imho can be removed
|
2016-11-04 02:15:17 +00:00
|
|
|
r_asm_set_pc (core->assembler, p2v (ds, ds->addr + idx));
|
2016-08-10 16:49:44 +00:00
|
|
|
core->cons->vline = r_config_get_i (core->config, "scr.utf8") ? r_vline_u : r_vline_a;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
if (core->print->cur_enabled) {
|
|
|
|
// TODO: support in-the-middle-of-instruction too
|
2016-04-03 22:52:45 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2016-03-03 23:33:24 +00:00
|
|
|
if (r_anal_op (core->anal, &ds->analop, core->offset + core->print->cur,
|
2016-10-06 01:42:49 +00:00
|
|
|
buf + core->print->cur, (int)(len - core->print->cur))) {
|
2014-01-20 00:42:16 +00:00
|
|
|
// TODO: check for ds->analop.type and ret
|
|
|
|
ds->dest = ds->analop.jump;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* highlight eip */
|
|
|
|
const char *pc = core->anal->reg->name[R_REG_NAME_PC];
|
2016-03-03 23:33:24 +00:00
|
|
|
RFlagItem *item = r_flag_get (core->flags, pc);
|
2016-08-07 15:37:33 +00:00
|
|
|
if (item) {
|
|
|
|
ds->dest = item->offset;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_esil_anal_init (ds);
|
2016-02-22 22:45:36 +00:00
|
|
|
inc = 0;
|
2016-08-07 15:37:33 +00:00
|
|
|
if (!ds->l) {
|
2016-02-22 22:53:29 +00:00
|
|
|
len = ds->l = core->blocksize;
|
2016-02-22 22:45:36 +00:00
|
|
|
}
|
2016-08-10 16:49:44 +00:00
|
|
|
|
2017-01-31 09:00:24 +00:00
|
|
|
ds->stackptr = core->anal->stackptr;
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_push (NULL, NULL);
|
2017-01-18 21:02:30 +00:00
|
|
|
r_anal_build_range_on_hints (core->anal);
|
2016-09-22 16:06:10 +00:00
|
|
|
for (i = idx = ret = 0; idx < len && ds->lines < ds->l; idx += inc, i++, ds->index += inc, ds->lines++) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->at = ds->addr + idx;
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->vat = p2v (ds, ds->at);
|
2016-11-20 18:20:14 +00:00
|
|
|
if (r_cons_is_breaked ()) {
|
2014-11-01 22:54:51 +00:00
|
|
|
dorepeat = 0;
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2016-09-19 22:11:59 +00:00
|
|
|
return 0; //break;
|
2014-11-01 22:54:51 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_core_seek_archbits (core, ds->at); // slow but safe
|
2016-08-16 11:54:59 +00:00
|
|
|
ds->has_description = false;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->hint = r_core_hint_begin (core, ds->hint, ds->at);
|
|
|
|
r_asm_set_pc (core->assembler, ds->at);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_update_ref_lines (ds);
|
2014-09-26 13:40:17 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2016-02-23 17:30:32 +00:00
|
|
|
ds->fcn = f;
|
2016-05-14 14:37:24 +00:00
|
|
|
if (f && f->folded && r_anal_fcn_is_in_offset (f, ds->at)) {
|
2016-05-15 12:37:22 +00:00
|
|
|
int delta = (ds->at <= f->addr)? (ds->at - f->addr + r_anal_fcn_size (f)): 0;
|
2015-12-14 09:19:07 +00:00
|
|
|
if (of != f) {
|
2016-03-15 10:47:13 +00:00
|
|
|
char cmt[32];
|
2016-09-21 09:00:52 +00:00
|
|
|
get_bits_comment (core, f, cmt, sizeof (cmt));
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_comments_right (ds);
|
2016-03-15 10:47:13 +00:00
|
|
|
r_cons_printf ("%s%s%s (fcn) %s%s%s\n",
|
2016-10-20 23:24:40 +00:00
|
|
|
COLOR (ds, color_fline), core->cons->vline[CORNER_TL],
|
2016-03-15 10:47:13 +00:00
|
|
|
COLOR (ds, color_fname), f->name, cmt, COLOR_RESET (ds));
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_setup_print_pre (ds, true, false);
|
|
|
|
ds_print_lines_left (ds);
|
|
|
|
ds_print_offset (ds);
|
2016-05-15 12:37:22 +00:00
|
|
|
r_cons_printf ("(%d byte folded function)\n", r_anal_fcn_size (f));
|
2015-12-14 23:18:44 +00:00
|
|
|
//r_cons_printf ("%s%s%s\n", COLOR (ds, color_fline), core->cons->vline[RDWN_CORNER], COLOR_RESET (ds));
|
2016-08-07 15:37:33 +00:00
|
|
|
if (delta < 0) {
|
|
|
|
delta = -delta;
|
|
|
|
}
|
2015-12-14 23:18:44 +00:00
|
|
|
ds->addr += delta + idx;
|
2015-12-14 09:19:07 +00:00
|
|
|
r_io_read_at (core->io, ds->addr, buf, len);
|
|
|
|
inc = 0; //delta;
|
|
|
|
idx = 0;
|
|
|
|
of = f;
|
2016-08-07 15:37:33 +00:00
|
|
|
if (len == l) {
|
2015-12-16 14:30:13 +00:00
|
|
|
break;
|
2016-08-07 15:37:33 +00:00
|
|
|
}
|
2015-12-14 09:19:07 +00:00
|
|
|
continue;
|
|
|
|
} else {
|
|
|
|
ds->lines--;
|
2015-12-14 23:37:33 +00:00
|
|
|
ds->addr += 1;
|
|
|
|
r_io_read_at (core->io, ds->addr, buf, len);
|
|
|
|
inc = 0; //delta;
|
|
|
|
idx = 0;
|
2015-12-14 09:19:07 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_comments_right (ds);
|
2016-11-04 00:30:35 +00:00
|
|
|
// TRY adding here
|
2016-07-05 20:44:53 +00:00
|
|
|
char *link_key = sdb_fmt (-1, "link.%08"PFMT64x, ds->addr + idx);
|
|
|
|
const char *link_type = sdb_const_get (core->anal->sdb_types, link_key, 0);
|
|
|
|
if (link_type) {
|
|
|
|
char *fmt = r_anal_type_format (core->anal, link_type);
|
|
|
|
if (fmt) {
|
|
|
|
r_cons_printf ("(%s)\n", link_type);
|
2016-07-05 21:25:16 +00:00
|
|
|
r_core_cmdf (core, "pf %s @ 0x%08"PFMT64x"\n", fmt, ds->addr + idx);
|
|
|
|
inc += r_anal_type_get_size (core->anal, link_type) / 8;
|
|
|
|
free (fmt);
|
|
|
|
continue;
|
2016-07-05 20:44:53 +00:00
|
|
|
}
|
|
|
|
} else {
|
2017-06-05 10:42:11 +00:00
|
|
|
if (idx >= 0) {
|
|
|
|
ret = ds_disassemble (ds, buf + idx, len - idx);
|
|
|
|
if (ret == -31337) {
|
|
|
|
inc = ds->oplen;
|
|
|
|
continue;
|
|
|
|
}
|
2016-07-05 20:44:53 +00:00
|
|
|
}
|
2016-01-10 21:30:10 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->retry) {
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->retry = false;
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2014-01-16 17:04:42 +00:00
|
|
|
goto retry;
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_atabs_option (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
// TODO: store previous oplen in core->dec
|
2016-09-22 16:06:10 +00:00
|
|
|
if (!core->inc) {
|
2014-01-20 00:42:16 +00:00
|
|
|
core->inc = ds->oplen;
|
2015-11-02 20:30:55 +00:00
|
|
|
}
|
2016-04-03 23:03:31 +00:00
|
|
|
if (ds->analop.mnemonic || !ds->lastfail) {
|
2015-03-24 02:23:56 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
}
|
2015-11-02 20:30:55 +00:00
|
|
|
if (!ds->lastfail) {
|
2016-10-20 23:24:40 +00:00
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, buf+idx, (int)(len - idx));
|
2015-11-02 20:30:55 +00:00
|
|
|
}
|
|
|
|
if (ret < 1) {
|
2014-01-20 00:42:16 +00:00
|
|
|
r_strbuf_init (&ds->analop.esil);
|
|
|
|
ds->analop.type = R_ANAL_OP_TYPE_ILL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->hint) {
|
2016-08-10 16:49:44 +00:00
|
|
|
if (ds->hint->size) {
|
|
|
|
ds->analop.size = ds->hint->size;
|
|
|
|
}
|
|
|
|
if (ds->hint->ptr) {
|
|
|
|
ds->analop.ptr = ds->hint->ptr;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2017-05-20 12:37:51 +00:00
|
|
|
ds_print_bbline (ds, false);
|
2016-04-03 23:59:30 +00:00
|
|
|
if (ds->at >= addr) {
|
|
|
|
r_print_set_rowoff (core->print, ds->lines, ds->at - addr);
|
|
|
|
}
|
2015-12-17 19:18:50 +00:00
|
|
|
if (ds->midflags) {
|
|
|
|
skip_bytes = handleMidFlags (core, ds, true);
|
2016-06-13 23:52:46 +00:00
|
|
|
if (skip_bytes && ds->midflags == R_MIDFLAGS_SHOW) {
|
2015-12-17 19:18:50 +00:00
|
|
|
ds->at += skip_bytes;
|
2016-06-13 23:52:46 +00:00
|
|
|
}
|
2015-12-17 19:18:50 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_flags (ds);
|
2016-06-13 13:05:48 +00:00
|
|
|
if (skip_bytes && ds->midflags == R_MIDFLAGS_SHOW) {
|
2015-12-17 19:18:50 +00:00
|
|
|
ds->at -= skip_bytes;
|
2016-06-13 13:05:48 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_control_flow_comments (ds);
|
|
|
|
ds_adistrick_comments (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
/* XXX: This is really cpu consuming.. need to be fixed */
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_functions (ds);
|
|
|
|
ds_show_xrefs (ds);
|
2015-11-02 20:30:55 +00:00
|
|
|
|
2016-01-27 02:33:52 +00:00
|
|
|
if (ds->show_comments && !ds->show_comment_right) {
|
2017-05-29 12:22:16 +00:00
|
|
|
ds_instruction_mov_lea (ds, idx);
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_show_refs (ds);
|
2017-04-21 10:53:28 +00:00
|
|
|
ds_build_op_str (ds);
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_print_ptr (ds, len + 256, idx);
|
2017-04-03 10:01:07 +00:00
|
|
|
if (!ds->pseudo) {
|
|
|
|
R_FREE (ds->opstr);
|
|
|
|
}
|
2016-12-27 14:40:02 +00:00
|
|
|
ds_print_fcn_name (ds);
|
|
|
|
ds_print_color_reset (ds);
|
2016-01-27 02:33:52 +00:00
|
|
|
if (ds->show_emu) {
|
2017-01-18 21:02:30 +00:00
|
|
|
ds_print_esil_anal (ds);
|
2016-01-27 02:33:52 +00:00
|
|
|
}
|
2016-01-27 01:35:45 +00:00
|
|
|
}
|
2016-12-26 17:13:52 +00:00
|
|
|
ds_setup_print_pre (ds, false, false);
|
|
|
|
ds_print_lines_left (ds);
|
2015-11-02 20:30:55 +00:00
|
|
|
f = r_anal_get_fcn_in (core->anal, ds->addr, 0);
|
2016-05-30 10:35:39 +00:00
|
|
|
if (ds_print_labels (ds, f)) {
|
|
|
|
ds_show_functions (ds);
|
|
|
|
ds_show_xrefs (ds);
|
|
|
|
ds_setup_print_pre (ds, false, false);
|
|
|
|
ds_print_lines_left (ds);
|
|
|
|
}
|
|
|
|
ds_print_offset (ds);
|
|
|
|
ds_print_op_size (ds);
|
|
|
|
ds_print_trace (ds);
|
|
|
|
ds_print_cycles (ds);
|
|
|
|
ds_print_family (ds);
|
|
|
|
ds_print_stackptr (ds);
|
|
|
|
ret = ds_print_meta_infos (ds, buf, len, idx);
|
2014-12-21 03:18:56 +00:00
|
|
|
if (!ds->mi_found) {
|
|
|
|
/* show cursor */
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_show_cursor (ds);
|
|
|
|
ds_print_show_bytes (ds);
|
|
|
|
ds_print_lines_right (ds);
|
|
|
|
ds_build_op_str (ds);
|
|
|
|
ds_print_opstr (ds);
|
|
|
|
ds_print_dwarf (ds);
|
|
|
|
ret = ds_print_middle (ds, ret);
|
|
|
|
|
2017-05-08 18:21:06 +00:00
|
|
|
ds_print_asmop_payload (ds, buf + idx);
|
2014-12-21 03:18:56 +00:00
|
|
|
if (core->assembler->syntax != R_ASM_SYNTAX_INTEL) {
|
|
|
|
RAsmOp ao; /* disassemble for the vm .. */
|
|
|
|
int os = core->assembler->syntax;
|
|
|
|
r_asm_set_syntax (core->assembler, R_ASM_SYNTAX_INTEL);
|
2016-11-04 00:30:35 +00:00
|
|
|
r_asm_disassemble (core->assembler, &ao, buf + idx, len - idx + 5);
|
2014-12-21 03:18:56 +00:00
|
|
|
r_asm_set_syntax (core->assembler, os);
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_core_vmode (ds);
|
2016-11-04 00:30:35 +00:00
|
|
|
// ds_print_cc_update (ds);
|
2017-04-08 22:53:55 +00:00
|
|
|
|
|
|
|
ds_cdiv_optimization (ds);
|
|
|
|
if (ds->show_comments && ds->show_comment_right) {
|
2017-05-29 12:22:16 +00:00
|
|
|
ds_instruction_mov_lea (ds, idx);
|
2017-04-08 22:53:55 +00:00
|
|
|
ds_print_ptr (ds, len + 256, idx);
|
|
|
|
ds_print_fcn_name (ds);
|
|
|
|
ds_print_color_reset (ds);
|
|
|
|
ds_print_comments_right (ds);
|
|
|
|
ds_print_esil_anal (ds);
|
|
|
|
ds_show_refs (ds);
|
|
|
|
}
|
2014-12-21 03:18:56 +00:00
|
|
|
} else {
|
2017-04-08 22:53:55 +00:00
|
|
|
if (ds->show_comments && ds->show_comment_right) {
|
|
|
|
ds_print_color_reset (ds);
|
|
|
|
ds_print_comments_right (ds);
|
|
|
|
}
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = false;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-12-24 17:16:54 +00:00
|
|
|
|
|
|
|
r_cons_newline ();
|
2017-05-20 12:37:51 +00:00
|
|
|
if (ds->show_bbline && !ds->bblined && !ds->fcn) {
|
2017-05-05 12:53:19 +00:00
|
|
|
switch (ds->analop.type) {
|
|
|
|
case R_ANAL_OP_TYPE_MJMP:
|
|
|
|
case R_ANAL_OP_TYPE_UJMP:
|
|
|
|
case R_ANAL_OP_TYPE_IJMP:
|
|
|
|
case R_ANAL_OP_TYPE_RJMP:
|
|
|
|
case R_ANAL_OP_TYPE_IRJMP:
|
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
|
|
|
case R_ANAL_OP_TYPE_JMP:
|
|
|
|
case R_ANAL_OP_TYPE_RET:
|
2017-05-20 12:37:51 +00:00
|
|
|
ds_print_bbline (ds, true);
|
2017-05-05 12:53:19 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->line) {
|
2015-08-30 22:20:07 +00:00
|
|
|
if (ds->show_lines_ret && ds->analop.type == R_ANAL_OP_TYPE_RET) {
|
2015-11-02 11:38:08 +00:00
|
|
|
if (strchr (ds->line, '>')) {
|
2014-01-20 00:42:16 +00:00
|
|
|
memset (ds->line, ' ', r_str_len_utf8 (ds->line));
|
2015-09-02 08:01:53 +00:00
|
|
|
}
|
2015-11-02 11:38:08 +00:00
|
|
|
r_cons_printf ("%s%s%s%s; --------------------------------------\n",
|
|
|
|
ds->pre, COLOR (ds, color_flow), ds->line, COLOR_RESET (ds));
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-04-03 22:52:45 +00:00
|
|
|
R_FREE (ds->line);
|
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-01-10 21:30:10 +00:00
|
|
|
R_FREE (ds->opstr);
|
2015-05-05 22:56:31 +00:00
|
|
|
inc = ds->oplen;
|
2016-06-13 23:52:46 +00:00
|
|
|
|
|
|
|
if (ds->midflags == R_MIDFLAGS_REALIGN && skip_bytes) {
|
2015-12-17 19:18:50 +00:00
|
|
|
inc = skip_bytes;
|
2016-06-13 23:52:46 +00:00
|
|
|
}
|
|
|
|
if (inc < 1) {
|
2016-02-07 20:44:35 +00:00
|
|
|
inc = 1;
|
2016-06-13 23:52:46 +00:00
|
|
|
}
|
2017-05-23 01:01:45 +00:00
|
|
|
inc += ds->asmop.payload + (ds->asmop.payload % ds->core->assembler->dataalign);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2016-12-19 23:20:56 +00:00
|
|
|
R_FREE (nbuf);
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
#if HASRETRY
|
2016-09-22 16:06:10 +00:00
|
|
|
if (!ds->cbytes && ds->lines < ds->l && dorepeat) {
|
|
|
|
ds->addr = ds->at + inc;
|
2014-01-16 17:04:42 +00:00
|
|
|
retry:
|
2016-08-10 16:49:44 +00:00
|
|
|
if (len < 4) {
|
|
|
|
len = 4;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
buf = nbuf = malloc (len);
|
2016-07-05 21:25:16 +00:00
|
|
|
if (ds->tries > 0) {
|
2016-12-19 22:40:09 +00:00
|
|
|
if (r_core_read_at (core, ds->addr, buf, len)) {
|
2014-01-16 17:04:42 +00:00
|
|
|
goto toro;
|
|
|
|
}
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2016-07-05 21:25:16 +00:00
|
|
|
if (ds->lines < ds->l) {
|
2014-08-15 02:06:51 +00:00
|
|
|
//ds->addr += idx;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (r_core_read_at (core, ds->addr, buf, len) != len) {
|
|
|
|
//ds->tries = -1;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
goto toro;
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2016-06-10 14:14:07 +00:00
|
|
|
if (continueoninvbreak) {
|
2014-01-16 17:04:42 +00:00
|
|
|
goto toro;
|
2016-06-10 14:14:07 +00:00
|
|
|
}
|
2016-12-19 23:20:56 +00:00
|
|
|
R_FREE (nbuf);
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
#endif
|
2016-03-01 23:49:43 +00:00
|
|
|
r_print_set_rowoff (core->print, ds->lines, ds->at - addr);
|
2016-02-07 22:31:24 +00:00
|
|
|
r_print_set_rowoff (core->print, ds->lines + 1, UT32_MAX);
|
2015-09-12 17:12:57 +00:00
|
|
|
// TODO: this too (must review)
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_esil_anal_fini (ds);
|
|
|
|
ds_reflines_fini (ds);
|
|
|
|
ds_free (ds);
|
2016-12-20 01:13:33 +00:00
|
|
|
R_FREE (nbuf);
|
2016-07-05 21:25:16 +00:00
|
|
|
/* used by asm.emu */
|
|
|
|
r_reg_arena_pop (core->anal->reg);
|
2014-01-20 00:42:16 +00:00
|
|
|
return idx; //-ds->lastfail;
|
2013-08-11 13:38:42 +00:00
|
|
|
}
|
|
|
|
|
2014-08-23 05:23:55 +00:00
|
|
|
/* Disassemble either `nb_opcodes` instructions, or
|
|
|
|
* `nb_bytes` bytes; both can be negative.
|
|
|
|
* Set to 0 the parameter you don't use */
|
2016-08-10 16:49:44 +00:00
|
|
|
R_API int r_core_print_disasm_instructions(RCore *core, int nb_bytes, int nb_opcodes) {
|
2014-01-22 22:58:23 +00:00
|
|
|
RDisasmState *ds = NULL;
|
2016-06-06 08:36:09 +00:00
|
|
|
int i, j, ret, len = 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
char *tmpopstr;
|
2014-08-23 05:23:55 +00:00
|
|
|
const ut64 old_offset = core->offset;
|
2015-11-05 01:07:20 +00:00
|
|
|
bool hasanal = false;
|
2016-11-04 23:46:00 +00:00
|
|
|
int nbytes = 0;
|
2014-08-23 05:23:55 +00:00
|
|
|
|
2016-04-26 09:09:15 +00:00
|
|
|
r_reg_arena_push (core->anal->reg);
|
2014-08-23 05:23:55 +00:00
|
|
|
if (!nb_bytes) {
|
|
|
|
nb_bytes = core->blocksize;
|
|
|
|
if (nb_opcodes < 0) {
|
|
|
|
/* Backward disassembly or nb_opcodes opcodes
|
|
|
|
* - We compute the new starting offset
|
|
|
|
* - Read at the new offset */
|
|
|
|
nb_opcodes = -nb_opcodes;
|
2016-11-04 22:15:54 +00:00
|
|
|
|
|
|
|
// We have some anal_info.
|
|
|
|
if (r_core_prevop_addr (core, core->offset, nb_opcodes, &core->offset)) {
|
|
|
|
nbytes = old_offset - core->offset;
|
|
|
|
} else {
|
|
|
|
// core->offset is modified by r_core_prevop_addr
|
2017-01-04 23:11:57 +00:00
|
|
|
core->offset = old_offset;
|
2016-11-04 22:15:54 +00:00
|
|
|
r_core_asm_bwdis_len (core, &nbytes, &core->offset, nb_opcodes);
|
|
|
|
}
|
2017-02-11 12:05:25 +00:00
|
|
|
if (nbytes > core->blocksize) {
|
|
|
|
r_core_block_size (core, nbytes);
|
|
|
|
}
|
2016-11-04 22:15:54 +00:00
|
|
|
r_core_read_at (core, core->offset, core->block, nbytes);
|
2014-08-23 05:23:55 +00:00
|
|
|
}
|
2014-12-17 23:27:12 +00:00
|
|
|
} else {
|
2014-08-23 05:23:55 +00:00
|
|
|
if (nb_bytes < 0) { // Disassemble backward `nb_bytes` bytes
|
|
|
|
nb_bytes = -nb_bytes;
|
|
|
|
core->offset -= nb_bytes;
|
|
|
|
r_core_read_at (core, core->offset, core->block, nb_bytes);
|
2017-05-18 22:36:18 +00:00
|
|
|
} else {
|
|
|
|
if (nb_bytes > core->blocksize) {
|
|
|
|
r_core_block_size (core, nb_bytes);
|
|
|
|
r_core_read_at (core, core->offset, core->block, nb_bytes);
|
|
|
|
}
|
2014-08-23 05:23:55 +00:00
|
|
|
}
|
|
|
|
}
|
2013-11-07 01:07:10 +00:00
|
|
|
|
2014-02-14 19:40:22 +00:00
|
|
|
// XXX - is there a better way to reset a the analysis counter so that
|
|
|
|
// when code is disassembled, it can actually find the correct offsets
|
2016-07-05 03:25:29 +00:00
|
|
|
if (core->anal->cur && core->anal->cur->reset_counter) {
|
2014-02-14 19:40:22 +00:00
|
|
|
core->anal->cur->reset_counter (core->anal, core->offset);
|
2016-07-05 03:25:29 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds = ds_init (core);
|
2014-08-23 05:23:55 +00:00
|
|
|
ds->l = nb_opcodes;
|
2015-10-20 22:26:32 +00:00
|
|
|
ds->len = nb_opcodes * 8;
|
2011-06-04 01:14:04 +00:00
|
|
|
|
2015-10-20 23:51:34 +00:00
|
|
|
if (ds->len > core->blocksize) {
|
|
|
|
if (core->fixedblock) {
|
|
|
|
nb_bytes = ds->len = core->blocksize;
|
|
|
|
} else {
|
|
|
|
r_core_block_size (core, ds->len);
|
2016-08-15 18:56:23 +00:00
|
|
|
r_core_block_read (core);
|
2015-10-20 23:51:34 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-10 16:49:44 +00:00
|
|
|
if (!ds->l) {
|
2014-08-23 05:23:55 +00:00
|
|
|
ds->l = ds->len;
|
2016-07-05 21:25:16 +00:00
|
|
|
}
|
2016-08-10 16:49:44 +00:00
|
|
|
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_push (NULL, NULL);
|
2016-08-10 16:49:44 +00:00
|
|
|
//build ranges to map addr with bits
|
2017-01-18 21:02:30 +00:00
|
|
|
r_anal_build_range_on_hints (core->anal);
|
2015-10-20 22:26:32 +00:00
|
|
|
#define isTheEnd (nb_opcodes? j<nb_opcodes: i<nb_bytes)
|
|
|
|
for (i = j = 0; isTheEnd; i += ret, j++) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->at = core->offset +i;
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->vat = p2v (ds, ds->at);
|
2015-11-05 01:07:20 +00:00
|
|
|
hasanal = false;
|
2014-01-20 00:42:16 +00:00
|
|
|
r_core_seek_archbits (core, ds->at);
|
2016-11-20 18:20:14 +00:00
|
|
|
if (r_cons_is_breaked ()) {
|
2014-11-01 22:54:51 +00:00
|
|
|
break;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->hint = r_core_hint_begin (core, ds->hint, ds->at);
|
2016-08-16 11:54:59 +00:00
|
|
|
ds->has_description = false;
|
2014-01-20 00:42:16 +00:00
|
|
|
r_asm_set_pc (core->assembler, ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
// XXX copypasta from main disassembler function
|
2017-02-03 08:53:57 +00:00
|
|
|
r_anal_get_fcn_in (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2017-01-31 22:33:27 +00:00
|
|
|
ret = r_asm_disassemble (core->assembler, &ds->asmop,
|
|
|
|
core->block + i, core->blocksize - i);
|
2017-04-16 09:03:02 +00:00
|
|
|
ds->oplen = ret;
|
|
|
|
if (ds->midflags) {
|
|
|
|
int skip_bytes = handleMidFlags (core, ds, true);
|
|
|
|
if (skip_bytes && ds->midflags > R_MIDFLAGS_SHOW) {
|
|
|
|
ret = skip_bytes;
|
|
|
|
}
|
|
|
|
}
|
2016-04-03 22:17:57 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2015-06-04 11:05:02 +00:00
|
|
|
if (ds->show_color && !hasanal) {
|
2016-08-10 16:49:44 +00:00
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, core->block + i, core->blocksize - i);
|
2015-11-05 01:07:20 +00:00
|
|
|
hasanal = true;
|
2015-06-04 11:05:02 +00:00
|
|
|
}
|
2017-02-03 08:53:57 +00:00
|
|
|
//r_conf = s_printf ("0x%08"PFMT64x" ", core->offset+i);
|
2016-05-30 02:18:48 +00:00
|
|
|
if (ds->hint && ds->hint->size) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ret = ds->hint->size;
|
2016-05-30 02:18:48 +00:00
|
|
|
ds->oplen = ret;
|
|
|
|
ds->analop.size = ret;
|
|
|
|
ds->asmop.size = ret;
|
|
|
|
}
|
2017-02-10 11:03:28 +00:00
|
|
|
/* fix infinite loop */
|
|
|
|
if (ret < 1) {
|
|
|
|
ret = 1;
|
|
|
|
}
|
2016-06-06 08:36:09 +00:00
|
|
|
len += R_MAX (0, ret);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->hint && ds->hint->opcode) {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (ds->opstr);
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->opstr = strdup (ds->hint->opcode);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->use_esil) {
|
2015-06-04 11:05:02 +00:00
|
|
|
if (!hasanal) {
|
2015-11-05 01:07:20 +00:00
|
|
|
r_anal_op (core->anal, &ds->analop,
|
2017-01-18 21:02:30 +00:00
|
|
|
ds->at, core->block+i,
|
|
|
|
core->blocksize-i);
|
2015-11-05 01:07:20 +00:00
|
|
|
hasanal = true;
|
2015-06-04 11:05:02 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (*R_STRBUF_SAFEGET (&ds->analop.esil)) {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (ds->opstr);
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->opstr = strdup (R_STRBUF_SAFEGET (&ds->analop.esil));
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-11-07 03:27:57 +00:00
|
|
|
} else if (ds->filter) {
|
2015-10-20 21:37:20 +00:00
|
|
|
char *asm_str;
|
2014-11-07 03:27:57 +00:00
|
|
|
int ofs = core->parser->flagspace;
|
|
|
|
int fs = ds->flagspace_ports;
|
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_IO) {
|
|
|
|
core->parser->notin_flagspace = -1;
|
|
|
|
core->parser->flagspace = fs;
|
|
|
|
} else {
|
|
|
|
if (fs != -1) {
|
|
|
|
core->parser->notin_flagspace = fs;
|
|
|
|
core->parser->flagspace = fs;
|
|
|
|
} else {
|
|
|
|
core->parser->notin_flagspace = -1;
|
|
|
|
core->parser->flagspace = -1;
|
|
|
|
}
|
|
|
|
}
|
2015-10-20 21:37:20 +00:00
|
|
|
core->parser->hint = ds->hint;
|
2017-02-10 11:03:28 +00:00
|
|
|
r_parse_filter (core->parser, core->flags, ds->asmop.buf_asm, ds->str,
|
|
|
|
sizeof (ds->str), core->print->big_endian);
|
2015-10-20 21:37:20 +00:00
|
|
|
ds->opstr = strdup (ds->str);
|
|
|
|
asm_str = colorize_asm_string (core, ds);
|
2014-11-07 03:27:57 +00:00
|
|
|
core->parser->flagspace = ofs;
|
|
|
|
free (ds->opstr);
|
2015-10-20 21:37:20 +00:00
|
|
|
ds->opstr = asm_str;
|
2014-11-07 03:27:57 +00:00
|
|
|
core->parser->flagspace = ofs; // ???
|
2015-10-20 21:37:20 +00:00
|
|
|
} else {
|
|
|
|
ds->opstr = strdup (ds->asmop.buf_asm);
|
|
|
|
}
|
|
|
|
if (ds->decode) {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (ds->opstr);
|
2015-06-04 11:05:02 +00:00
|
|
|
if (!hasanal) {
|
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, core->block+i, core->blocksize-i);
|
2015-11-05 01:07:20 +00:00
|
|
|
hasanal = true;
|
2015-06-04 11:05:02 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
tmpopstr = r_anal_op_to_string (core->anal, &ds->analop);
|
|
|
|
ds->opstr = (tmpopstr)? tmpopstr: strdup (ds->asmop.buf_asm);
|
2013-07-04 01:34:28 +00:00
|
|
|
}
|
2013-07-03 15:43:20 +00:00
|
|
|
}
|
2015-11-02 17:57:01 +00:00
|
|
|
{
|
2015-06-04 11:05:02 +00:00
|
|
|
const char *opcolor = NULL;
|
|
|
|
if (ds->show_color) {
|
|
|
|
opcolor = r_print_color_op_type (core->print, ds->analop.type);
|
2015-08-09 20:16:17 +00:00
|
|
|
r_cons_printf ("%s%s" Color_RESET "\n", opcolor, ds->opstr);
|
|
|
|
} else {
|
2016-06-26 04:51:17 +00:00
|
|
|
r_cons_println (ds->opstr);
|
2015-06-04 11:05:02 +00:00
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->opstr);
|
2013-01-22 17:08:33 +00:00
|
|
|
}
|
2014-03-11 01:47:10 +00:00
|
|
|
if (ds->hint) {
|
|
|
|
r_anal_hint_free (ds->hint);
|
|
|
|
ds->hint = NULL;
|
|
|
|
}
|
2013-01-22 17:08:33 +00:00
|
|
|
}
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_free (ds);
|
2014-08-23 05:23:55 +00:00
|
|
|
core->offset = old_offset;
|
2016-06-06 08:36:09 +00:00
|
|
|
r_reg_arena_pop (core->anal->reg);
|
|
|
|
|
|
|
|
return len;
|
2013-01-22 17:08:33 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-08-23 05:23:55 +00:00
|
|
|
R_API int r_core_print_disasm_json(RCore *core, ut64 addr, ut8 *buf, int nb_bytes, int nb_opcodes) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RAsmOp asmop;
|
2014-12-05 13:08:53 +00:00
|
|
|
RDisasmState *ds;
|
|
|
|
RAnalFunction *f;
|
2016-03-09 10:59:17 +00:00
|
|
|
int i, j, k, oplen, ret, line;
|
2015-06-04 14:53:04 +00:00
|
|
|
ut64 old_offset = core->offset;
|
2014-12-17 20:25:24 +00:00
|
|
|
ut64 at;
|
|
|
|
int dis_opcodes = 0;
|
2017-02-05 00:24:50 +00:00
|
|
|
//r_cons_printf ("[");
|
2015-04-08 08:41:42 +00:00
|
|
|
int limit_by = 'b';
|
2014-02-14 19:40:22 +00:00
|
|
|
|
2015-04-08 08:41:42 +00:00
|
|
|
if (nb_opcodes != 0) {
|
|
|
|
limit_by = 'o';
|
|
|
|
}
|
2015-02-16 23:54:55 +00:00
|
|
|
if (nb_opcodes) { // Disassemble `nb_opcodes` opcodes.
|
2014-08-23 05:23:55 +00:00
|
|
|
if (nb_opcodes < 0) {
|
2015-02-16 23:54:55 +00:00
|
|
|
int count, nbytes = 0;
|
2016-06-28 21:21:46 +00:00
|
|
|
|
2014-08-23 05:23:55 +00:00
|
|
|
/* Backward disassembly of `nb_opcodes` opcodes:
|
|
|
|
* - We compute the new starting offset
|
|
|
|
* - Read at the new offset */
|
|
|
|
nb_opcodes = -nb_opcodes;
|
2015-06-04 14:53:04 +00:00
|
|
|
|
|
|
|
if (nb_opcodes > 0xffff) {
|
|
|
|
eprintf ("Too many backward instructions\n");
|
|
|
|
return 0;
|
|
|
|
}
|
2016-06-28 21:21:46 +00:00
|
|
|
|
|
|
|
if (r_core_prevop_addr (core, core->offset, nb_opcodes, &addr)) {
|
2016-11-04 22:15:54 +00:00
|
|
|
nbytes = old_offset - addr;
|
2016-06-28 21:21:46 +00:00
|
|
|
} else if (!r_core_asm_bwdis_len (core, &nbytes, &addr, nb_opcodes)) {
|
2015-06-04 14:53:04 +00:00
|
|
|
/* workaround to avoid empty arrays */
|
|
|
|
#define BWRETRY 0
|
|
|
|
#if BWRETRY
|
2016-08-16 11:54:59 +00:00
|
|
|
nb_opcodes ++;
|
2015-06-04 14:53:04 +00:00
|
|
|
if (!r_core_asm_bwdis_len (core, &nbytes, &addr, nb_opcodes)) {
|
|
|
|
#endif
|
|
|
|
r_cons_printf ("]");
|
2015-09-14 10:35:38 +00:00
|
|
|
return false;
|
2015-06-04 14:53:04 +00:00
|
|
|
#if BWRETRY
|
|
|
|
}
|
|
|
|
#endif
|
2016-08-16 11:54:59 +00:00
|
|
|
nb_opcodes --;
|
2014-12-19 19:44:44 +00:00
|
|
|
}
|
2015-02-16 23:54:55 +00:00
|
|
|
count = R_MIN (nb_bytes, nbytes);
|
2016-08-16 11:54:59 +00:00
|
|
|
if (count > 0) {
|
2015-02-16 23:54:55 +00:00
|
|
|
r_core_read_at (core, addr, buf, count);
|
|
|
|
r_core_read_at (core, addr+count, buf+count, nb_bytes-count);
|
|
|
|
} else {
|
2016-08-16 11:54:59 +00:00
|
|
|
if (nb_bytes > 0) {
|
2015-04-06 22:31:35 +00:00
|
|
|
memset (buf, 0xff, nb_bytes);
|
2016-08-16 11:54:59 +00:00
|
|
|
}
|
2015-02-16 23:54:55 +00:00
|
|
|
}
|
2014-12-17 20:25:24 +00:00
|
|
|
} else {
|
|
|
|
// If we are disassembling a positive number of lines, enable dis_opcodes
|
|
|
|
// to be used to finish the loop
|
|
|
|
// If we are disasembling a negative number of lines, we just calculate
|
|
|
|
// the equivalent addr and nb_size and scan a positive number of BYTES
|
|
|
|
// so keep dis_opcodes = 0;
|
|
|
|
dis_opcodes = 1;
|
2014-12-17 23:27:12 +00:00
|
|
|
r_core_read_at (core, addr, buf, nb_bytes);
|
2014-08-23 05:23:55 +00:00
|
|
|
}
|
2016-02-16 20:48:07 +00:00
|
|
|
} else { // Disassemble `nb_bytes` bytes
|
2014-08-23 05:23:55 +00:00
|
|
|
if (nb_bytes < 0) {
|
|
|
|
//Backward disassembly of `nb_bytes` bytes
|
|
|
|
nb_bytes = -nb_bytes;
|
|
|
|
addr -= nb_bytes;
|
|
|
|
r_core_read_at (core, addr, buf, nb_bytes);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
core->offset = addr;
|
|
|
|
|
2014-02-14 19:40:22 +00:00
|
|
|
// XXX - is there a better way to reset a the analysis counter so that
|
|
|
|
// when code is disassembled, it can actually find the correct offsets
|
2014-11-25 11:24:37 +00:00
|
|
|
if (core->anal && core->anal->cur && core->anal->cur->reset_counter) {
|
2014-02-14 19:40:22 +00:00
|
|
|
core->anal->cur->reset_counter (core->anal, addr);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
// TODO: add support for anal hints
|
2014-12-17 23:27:12 +00:00
|
|
|
// If using #bytes i = j
|
|
|
|
// If using #opcodes, j is the offset from start address. i is the
|
|
|
|
// offset in current disassembly buffer (256 by default)
|
2016-03-09 10:59:17 +00:00
|
|
|
i = k = j = line = 0;
|
2015-04-09 23:57:17 +00:00
|
|
|
// i = number of bytes
|
|
|
|
// j = number of instructions
|
2016-03-09 10:59:17 +00:00
|
|
|
// k = delta from addr
|
2016-09-28 14:47:16 +00:00
|
|
|
ds = ds_init (core);
|
2014-12-17 23:27:12 +00:00
|
|
|
for (;;) {
|
2016-03-09 10:59:17 +00:00
|
|
|
bool end_nbopcodes, end_nbbytes;
|
|
|
|
|
|
|
|
at = addr + k;
|
2014-01-16 17:04:42 +00:00
|
|
|
r_asm_set_pc (core->assembler, at);
|
2014-12-17 23:27:12 +00:00
|
|
|
// 32 is the biggest opcode length in intel
|
|
|
|
// Make sure we have room for it
|
2016-03-09 10:59:17 +00:00
|
|
|
if (dis_opcodes == 1 && i >= nb_bytes - 32) {
|
2014-12-17 23:27:12 +00:00
|
|
|
// Read another nb_bytes bytes into buf from current offset
|
2014-12-17 20:25:24 +00:00
|
|
|
r_core_read_at (core, at, buf, nb_bytes);
|
2016-03-09 10:59:17 +00:00
|
|
|
i = 0;
|
2014-12-17 20:25:24 +00:00
|
|
|
}
|
2016-03-09 10:59:17 +00:00
|
|
|
|
2015-04-08 08:41:42 +00:00
|
|
|
if (limit_by == 'o') {
|
2016-03-09 10:59:17 +00:00
|
|
|
if (j >= nb_opcodes) {
|
2015-04-08 08:41:42 +00:00
|
|
|
break;
|
|
|
|
}
|
2016-03-09 10:59:17 +00:00
|
|
|
} else if (i >= nb_bytes) {
|
|
|
|
break;
|
2015-04-08 01:20:11 +00:00
|
|
|
}
|
2016-03-09 10:59:17 +00:00
|
|
|
ret = r_asm_disassemble (core->assembler, &asmop, buf + i, nb_bytes - i);
|
|
|
|
if (ret < 1) {
|
|
|
|
r_cons_printf (j > 0 ? ",{" : "{");
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("\"offset\":%"PFMT64d, at);
|
|
|
|
r_cons_printf (",\"size\":1,\"type\":\"invalid\"}");
|
|
|
|
i++;
|
2016-03-09 10:59:17 +00:00
|
|
|
k++;
|
2014-12-17 23:27:12 +00:00
|
|
|
j++;
|
2014-01-16 17:04:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
2016-09-12 20:43:05 +00:00
|
|
|
|
2016-08-16 11:54:59 +00:00
|
|
|
ds->has_description = false;
|
2016-08-10 19:10:00 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
r_anal_op (core->anal, &ds->analop, at, buf + i, nb_bytes - i);
|
2016-09-12 20:43:05 +00:00
|
|
|
|
2016-08-02 23:17:27 +00:00
|
|
|
if (ds->pseudo) {
|
|
|
|
r_parse_parse (core->parser, asmop.buf_asm, asmop.buf_asm);
|
|
|
|
}
|
|
|
|
f = r_anal_get_fcn_in (core->anal, at, R_ANAL_FCN_TYPE_FCN | R_ANAL_FCN_TYPE_SYM);
|
2014-12-15 19:36:34 +00:00
|
|
|
if (ds->varsub && f) {
|
2016-09-12 20:43:05 +00:00
|
|
|
core->parser->varlist = r_anal_var_list_dynamic;
|
2015-11-19 22:12:08 +00:00
|
|
|
r_parse_varsub (core->parser, f, at, ds->analop.size,
|
2014-12-15 19:36:34 +00:00
|
|
|
asmop.buf_asm, asmop.buf_asm, sizeof (asmop.buf_asm));
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
oplen = r_asm_op_get_size (&asmop);
|
2017-04-16 09:03:11 +00:00
|
|
|
ds->oplen = oplen;
|
|
|
|
ds->at = at;
|
|
|
|
if (ds->midflags) {
|
|
|
|
int skip_bytes = handleMidFlags (core, ds, true);
|
|
|
|
if (skip_bytes && ds->midflags > R_MIDFLAGS_SHOW) {
|
|
|
|
oplen = ds->oplen = ret = skip_bytes;
|
|
|
|
}
|
|
|
|
}
|
2016-08-02 23:17:27 +00:00
|
|
|
r_cons_printf (j > 0 ? ",{" : "{");
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("\"offset\":%"PFMT64d, at);
|
2016-11-16 21:59:01 +00:00
|
|
|
if (ds->analop.ptr != UT64_MAX) {
|
|
|
|
r_cons_printf (",\"ptr\":%"PFMT64d, ds->analop.ptr);
|
|
|
|
}
|
|
|
|
if (ds->analop.val != UT64_MAX) {
|
|
|
|
r_cons_printf (",\"val\":%"PFMT64d, ds->analop.val);
|
|
|
|
}
|
|
|
|
r_cons_printf (",\"esil\":\"%s\"", R_STRBUF_SAFEGET (&ds->analop.esil));
|
|
|
|
r_cons_printf (",\"refptr\":%s", r_str_bool (ds->analop.refptr));
|
2014-12-05 12:29:33 +00:00
|
|
|
if (f) {
|
|
|
|
r_cons_printf (",\"fcn_addr\":%"PFMT64d, f->addr);
|
2016-05-15 12:37:22 +00:00
|
|
|
r_cons_printf (",\"fcn_last\":%"PFMT64d, f->addr + r_anal_fcn_size (f) - oplen);
|
2014-12-05 12:29:33 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf (",\"fcn_addr\":0");
|
|
|
|
r_cons_printf (",\"fcn_last\":0");
|
|
|
|
}
|
2017-04-16 09:20:16 +00:00
|
|
|
r_cons_printf (",\"size\":%d", ds->analop.size);
|
2014-12-19 16:49:42 +00:00
|
|
|
{
|
2015-06-15 03:04:29 +00:00
|
|
|
char *escaped_str = r_str_escape (asmop.buf_asm);
|
|
|
|
r_cons_printf (",\"opcode\":\"%s\"", escaped_str);
|
|
|
|
free (escaped_str);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (",\"bytes\":\"%s\"", asmop.buf_hex);
|
2015-10-08 15:02:22 +00:00
|
|
|
r_cons_printf (",\"family\":\"%s\"",
|
2016-08-10 19:10:00 +00:00
|
|
|
r_anal_op_family_to_string (ds->analop.family));
|
|
|
|
r_cons_printf (",\"type\":\"%s\"", r_anal_optype_to_string (ds->analop.type));
|
2014-08-10 03:39:50 +00:00
|
|
|
// wanted the numerical values of the type information
|
2016-08-10 19:10:00 +00:00
|
|
|
r_cons_printf (",\"type_num\":%"PFMT64d, ds->analop.type);
|
|
|
|
r_cons_printf (",\"type2_num\":%"PFMT64d, ds->analop.type2);
|
2014-08-10 03:39:50 +00:00
|
|
|
// handle switch statements
|
2016-08-10 19:10:00 +00:00
|
|
|
if (ds->analop.switch_op && r_list_length (ds->analop.switch_op->cases) > 0) {
|
2014-08-11 02:52:53 +00:00
|
|
|
// XXX - the java caseop will still be reported in the assembly,
|
|
|
|
// this is an artifact to make ensure the disassembly is properly
|
|
|
|
// represented during the analysis
|
2014-08-10 03:39:50 +00:00
|
|
|
RListIter *iter;
|
|
|
|
RAnalCaseOp *caseop;
|
2016-08-10 19:10:00 +00:00
|
|
|
int cnt = r_list_length (ds->analop.switch_op->cases);
|
2014-08-10 03:39:50 +00:00
|
|
|
r_cons_printf (", \"switch\":[");
|
2016-08-10 19:10:00 +00:00
|
|
|
r_list_foreach (ds->analop.switch_op->cases, iter, caseop ) {
|
2014-08-10 03:39:50 +00:00
|
|
|
cnt--;
|
|
|
|
r_cons_printf ("{");
|
|
|
|
r_cons_printf ("\"addr\":%"PFMT64d, caseop->addr);
|
|
|
|
r_cons_printf (", \"value\":%"PFMT64d, (st64) caseop->value);
|
|
|
|
r_cons_printf (", \"jump\":%"PFMT64d, caseop->jump);
|
|
|
|
r_cons_printf ("}");
|
2016-12-19 23:20:56 +00:00
|
|
|
if (cnt > 0) {
|
|
|
|
r_cons_printf (",");
|
|
|
|
}
|
2014-08-10 03:39:50 +00:00
|
|
|
}
|
|
|
|
r_cons_printf ("]");
|
|
|
|
}
|
2016-08-10 19:10:00 +00:00
|
|
|
if (ds->analop.jump != UT64_MAX ) {
|
|
|
|
r_cons_printf (",\"jump\":%"PFMT64d, ds->analop.jump);
|
|
|
|
if (ds->analop.fail != UT64_MAX) {
|
|
|
|
r_cons_printf (",\"fail\":%"PFMT64d, ds->analop.fail);
|
2016-03-09 10:59:17 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-11-20 00:14:47 +00:00
|
|
|
/* add flags */
|
|
|
|
{
|
|
|
|
const RList *flags = r_flag_get_list (core->flags, at);
|
|
|
|
RFlagItem *flag;
|
|
|
|
RListIter *iter;
|
|
|
|
if (flags && !r_list_empty (flags)) {
|
|
|
|
r_cons_printf (",\"flags\":[");
|
|
|
|
r_list_foreach (flags, iter, flag) {
|
|
|
|
r_cons_printf ("%s\"%s\"", iter->p?",":"",flag->name);
|
|
|
|
}
|
|
|
|
r_cons_printf ("]");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* add comments */
|
|
|
|
{
|
|
|
|
// TODO: slow because we are decoding and encoding b64
|
|
|
|
char *comment = r_meta_get_string (core->anal, R_META_TYPE_COMMENT, at);
|
|
|
|
if (comment) {
|
|
|
|
char *b64comment = sdb_encode ((const ut8*)comment, -1);
|
|
|
|
r_cons_printf (",\"comment\":\"%s\"", b64comment);
|
|
|
|
free (comment);
|
|
|
|
free (b64comment);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/* add xrefs */
|
|
|
|
{
|
|
|
|
RAnalRef *ref;
|
|
|
|
RListIter *iter;
|
|
|
|
RList *xrefs = r_anal_xref_get (core->anal, at);
|
|
|
|
if (xrefs && !r_list_empty (xrefs)) {
|
|
|
|
r_cons_printf (",\"xrefs\":[");
|
|
|
|
r_list_foreach (xrefs, iter, ref) {
|
|
|
|
r_cons_printf ("%s{\"addr\":%"PFMT64d",\"type\":\"%s\"}",
|
2014-12-05 12:29:33 +00:00
|
|
|
iter->p?",":"", ref->addr,
|
2014-11-20 00:14:47 +00:00
|
|
|
r_anal_xrefs_type_tostring (ref->type));
|
|
|
|
}
|
|
|
|
r_cons_printf ("]");
|
|
|
|
}
|
2015-01-15 23:56:54 +00:00
|
|
|
r_list_free (xrefs);
|
2014-11-20 00:14:47 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("}");
|
2017-05-23 01:01:45 +00:00
|
|
|
i += oplen + asmop.payload + (ds->asmop.payload % ds->core->assembler->dataalign); // bytes
|
|
|
|
k += oplen + asmop.payload + (ds->asmop.payload % ds->core->assembler->dataalign); // delta from addr
|
2016-03-09 10:59:17 +00:00
|
|
|
j++; // instructions
|
2014-08-21 22:39:31 +00:00
|
|
|
line++;
|
2016-03-09 10:59:17 +00:00
|
|
|
|
|
|
|
end_nbopcodes = dis_opcodes == 1 && nb_opcodes > 0 && line>=nb_opcodes;
|
|
|
|
end_nbbytes = dis_opcodes == 0 && nb_bytes > 0 && i>=nb_bytes;
|
2016-09-28 14:47:16 +00:00
|
|
|
if (end_nbopcodes || end_nbbytes) {
|
|
|
|
break;
|
|
|
|
}
|
2014-12-17 23:27:12 +00:00
|
|
|
}
|
2017-02-05 00:24:50 +00:00
|
|
|
// r_cons_printf ("]");
|
2014-08-23 05:23:55 +00:00
|
|
|
core->offset = old_offset;
|
2016-08-10 19:10:00 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2015-09-14 10:35:38 +00:00
|
|
|
return true;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
|
2016-06-25 01:09:30 +00:00
|
|
|
R_API int r_core_print_disasm_all(RCore *core, ut64 addr, int l, int len, int mode) {
|
|
|
|
const bool scr_color = r_config_get_i (core->config, "scr.color");
|
|
|
|
int i, ret, err = 0, count = 0;
|
|
|
|
ut8 *buf = core->block;
|
|
|
|
char str[128];
|
|
|
|
RAsmOp asmop;
|
|
|
|
if (l < 1) {
|
|
|
|
l = len;
|
|
|
|
}
|
2016-11-04 02:15:17 +00:00
|
|
|
RDisasmState *ds = ds_init (core);
|
2016-06-25 01:09:30 +00:00
|
|
|
if (l > core->blocksize || addr != core->offset) {
|
|
|
|
buf = malloc (l + 1);
|
|
|
|
r_core_read_at (core, addr, buf, l);
|
|
|
|
}
|
|
|
|
if (mode == 'j') {
|
|
|
|
r_cons_printf ("[");
|
|
|
|
}
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_push (NULL, NULL);
|
2016-06-25 01:09:30 +00:00
|
|
|
for (i = 0; i < l; i++) {
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->at = addr + i;
|
|
|
|
ds->vat = p2v (ds, ds->at);
|
|
|
|
r_asm_set_pc (core->assembler, ds->vat);
|
2016-11-20 18:20:14 +00:00
|
|
|
if (r_cons_is_breaked ()) {
|
2016-06-25 01:09:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
ret = r_asm_disassemble (core->assembler, &asmop, buf + i, l - i);
|
|
|
|
if (ret < 1) {
|
|
|
|
ret = err = 1;
|
|
|
|
switch (mode) {
|
|
|
|
case 'j':
|
|
|
|
case '=':
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
r_cons_printf ("???\n");
|
|
|
|
break;
|
|
|
|
default:
|
2016-11-04 02:15:17 +00:00
|
|
|
r_cons_printf ("0x%08"PFMT64x" ???\n", ds->vat);
|
2016-06-25 01:09:30 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
count ++;
|
|
|
|
switch (mode) {
|
|
|
|
case 'i':
|
|
|
|
r_parse_filter (core->parser, core->flags, asmop.buf_asm,
|
|
|
|
str, sizeof (str), core->print->big_endian);
|
|
|
|
if (scr_color) {
|
|
|
|
char *buf_asm;
|
|
|
|
RAnalOp aop;
|
|
|
|
r_anal_op (core->anal, &aop, addr, buf+i, l-i);
|
2017-03-28 20:55:58 +00:00
|
|
|
buf_asm = r_print_colorize_opcode (core->print, str,
|
2017-06-20 20:48:46 +00:00
|
|
|
core->cons->pal.reg, core->cons->pal.num, false);
|
2016-06-25 01:09:30 +00:00
|
|
|
r_cons_printf ("%s%s\n",
|
|
|
|
r_print_color_op_type (core->print, aop.type),
|
|
|
|
buf_asm);
|
|
|
|
free (buf_asm);
|
|
|
|
} else {
|
2016-06-26 04:51:17 +00:00
|
|
|
r_cons_println (asmop.buf_asm);
|
2016-06-25 01:09:30 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '=':
|
|
|
|
if (i < 28) {
|
|
|
|
char *str = r_str_newf ("0x%08"PFMT64x" %60s %s\n",
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->vat, "", asmop.buf_asm);
|
2016-06-25 01:09:30 +00:00
|
|
|
char *sp = strchr (str, ' ');
|
|
|
|
if (sp) {
|
|
|
|
char *end = sp + 60 + 1;
|
|
|
|
const char *src = asmop.buf_hex;
|
|
|
|
char *dst = sp + 1 + (i * 2);
|
|
|
|
int len = strlen (src);
|
|
|
|
if (dst < end) {
|
|
|
|
if (dst + len >= end) {
|
|
|
|
len = end - dst;
|
|
|
|
dst[len] = '.';
|
|
|
|
}
|
|
|
|
memcpy (dst, src, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_strcat (str);
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
r_cons_printf ("{\"addr\":%08"PFMT64d",\"bytes\":\"%s\",\"inst\":\"%s\"}%s",
|
|
|
|
addr + i, asmop.buf_hex, asmop.buf_asm, ",");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" %20s %s\n",
|
|
|
|
addr + i, asmop.buf_hex, asmop.buf_asm);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2016-06-25 01:09:30 +00:00
|
|
|
if (buf != core->block) {
|
|
|
|
free (buf);
|
|
|
|
}
|
|
|
|
if (mode == 'j') {
|
|
|
|
r_cons_printf ("{}]\n");
|
|
|
|
}
|
2016-11-04 02:15:17 +00:00
|
|
|
ds_free (ds);
|
2016-06-25 01:09:30 +00:00
|
|
|
return count;
|
|
|
|
}
|
|
|
|
|
2014-01-23 04:55:48 +00:00
|
|
|
R_API int r_core_print_fcn_disasm(RPrint *p, RCore *core, ut64 addr, int l, int invbreak, int cbytes) {
|
2014-09-26 13:40:17 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
|
2015-04-22 22:46:28 +00:00
|
|
|
ut32 cur_buf_sz = 0;
|
|
|
|
ut8 *buf = NULL;
|
|
|
|
ut32 len = 0;
|
2014-01-23 04:55:48 +00:00
|
|
|
int ret, idx = 0, i;
|
|
|
|
RListIter *bb_iter;
|
|
|
|
RAnalBlock *bb = NULL;
|
|
|
|
RDisasmState *ds;
|
2015-04-22 22:46:28 +00:00
|
|
|
RList *bb_list = NULL;
|
|
|
|
|
2016-09-22 16:06:10 +00:00
|
|
|
if (!fcn) {
|
2015-04-22 22:46:28 +00:00
|
|
|
return -1;
|
2016-09-22 16:06:10 +00:00
|
|
|
}
|
2015-04-22 22:46:28 +00:00
|
|
|
|
2016-05-15 12:37:22 +00:00
|
|
|
cur_buf_sz = r_anal_fcn_size (fcn) + 1;
|
2015-04-22 22:46:28 +00:00
|
|
|
buf = malloc (cur_buf_sz);
|
2016-09-22 16:06:10 +00:00
|
|
|
if (!buf) {
|
|
|
|
return -1;
|
|
|
|
}
|
2016-05-15 12:37:22 +00:00
|
|
|
len = r_anal_fcn_size (fcn);
|
2015-04-22 22:46:28 +00:00
|
|
|
bb_list = r_list_new();
|
2016-05-24 20:22:15 +00:00
|
|
|
if (!bb_list) {
|
|
|
|
free (buf);
|
|
|
|
return -1;
|
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
//r_cons_printf ("len =%d l=%d ib=%d limit=%d\n", len, l, invbreak, p->limit);
|
|
|
|
// TODO: import values from debugger is possible
|
|
|
|
// TODO: allow to get those register snapshots from traces
|
|
|
|
// TODO: per-function register state trace
|
|
|
|
idx = 0;
|
|
|
|
memset (buf, 0, cur_buf_sz);
|
|
|
|
|
2014-02-14 19:40:22 +00:00
|
|
|
// XXX - is there a better way to reset a the analysis counter so that
|
|
|
|
// when code is disassembled, it can actually find the correct offsets
|
2014-04-09 02:53:34 +00:00
|
|
|
if (core->anal->cur && core->anal->cur->reset_counter) {
|
2014-02-14 19:40:22 +00:00
|
|
|
core->anal->cur->reset_counter (core->anal, addr);
|
|
|
|
}
|
|
|
|
|
2014-01-23 04:55:48 +00:00
|
|
|
// TODO: All those ds must be print flags
|
2016-05-30 10:35:39 +00:00
|
|
|
ds = ds_init (core);
|
2014-01-23 04:55:48 +00:00
|
|
|
ds->cbytes = cbytes;
|
2016-05-30 10:35:39 +00:00
|
|
|
ds->print = p;
|
2014-01-23 04:55:48 +00:00
|
|
|
ds->l = l;
|
|
|
|
ds->buf = buf;
|
2016-05-15 12:37:22 +00:00
|
|
|
ds->len = r_anal_fcn_size (fcn);
|
2014-01-23 04:55:48 +00:00
|
|
|
ds->addr = fcn->addr;
|
2016-02-23 17:30:32 +00:00
|
|
|
ds->fcn = fcn;
|
2017-01-31 09:00:24 +00:00
|
|
|
ds->stackptr = core->anal->stackptr;
|
2014-01-23 04:55:48 +00:00
|
|
|
|
|
|
|
r_list_foreach (fcn->bbs, bb_iter, bb) {
|
|
|
|
r_list_add_sorted (bb_list, bb, cmpaddr);
|
|
|
|
}
|
|
|
|
// Premptively read the bb data locs for ref lines
|
|
|
|
r_list_foreach (bb_list, bb_iter, bb) {
|
2016-09-22 16:06:10 +00:00
|
|
|
if (idx >= cur_buf_sz) {
|
|
|
|
break;
|
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
r_core_read_at (core, bb->addr, buf+idx, bb->size);
|
|
|
|
//ret = r_asm_disassemble (core->assembler, &ds->asmop, buf+idx, bb->size);
|
|
|
|
//if (ret > 0) eprintf ("%s\n",ds->asmop.buf_asm);
|
|
|
|
idx += bb->size;
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_reflines_fcn_init (ds, fcn, buf);
|
2014-01-23 04:55:48 +00:00
|
|
|
core->inc = 0;
|
2016-09-22 16:06:10 +00:00
|
|
|
core->cons->vline = r_config_get_i (core->config, "scr.utf8")? r_vline_u: r_vline_a;
|
|
|
|
i = idx = 0;
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_push (NULL, NULL);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_esil_anal_init (ds);
|
2015-10-01 17:32:30 +00:00
|
|
|
|
2016-09-22 16:06:10 +00:00
|
|
|
if (core->io && core->io->debug) {
|
2015-10-01 17:32:30 +00:00
|
|
|
r_debug_map_sync (core->dbg);
|
2016-09-22 16:06:10 +00:00
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
r_list_foreach (bb_list, bb_iter, bb) {
|
|
|
|
ut32 bb_size_consumed = 0;
|
|
|
|
// internal loop to consume bb that contain case-like operations
|
|
|
|
ds->at = bb->addr;
|
2016-11-04 02:15:17 +00:00
|
|
|
ds->vat = p2v (ds, ds->at);
|
2014-01-23 04:55:48 +00:00
|
|
|
ds->addr = bb->addr;
|
|
|
|
len = bb->size;
|
|
|
|
|
|
|
|
if (len > cur_buf_sz) {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (buf);
|
2014-01-23 04:55:48 +00:00
|
|
|
cur_buf_sz = len;
|
|
|
|
buf = malloc (cur_buf_sz);
|
|
|
|
ds->buf = buf;
|
|
|
|
}
|
|
|
|
do {
|
|
|
|
// XXX - why is it necessary to set this everytime?
|
|
|
|
r_asm_set_pc (core->assembler, ds->at);
|
|
|
|
if (ds->lines >= ds->l) break;
|
2016-11-20 18:20:14 +00:00
|
|
|
if (r_cons_is_breaked ()) break;
|
2014-01-23 04:55:48 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_update_ref_lines (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
/* show type links */
|
|
|
|
r_core_cmdf (core, "tf 0x%08"PFMT64x, ds->at);
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_comments_right (ds);
|
|
|
|
ret = ds_disassemble (ds, buf+idx, len - bb_size_consumed);
|
|
|
|
ds_atabs_option (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
// TODO: store previous oplen in core->dec
|
2016-11-20 18:20:14 +00:00
|
|
|
if (!core->inc) {
|
2016-05-30 02:18:48 +00:00
|
|
|
core->inc = ds->oplen;
|
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2016-11-20 18:20:14 +00:00
|
|
|
if (!ds->lastfail) {
|
2014-02-20 02:08:12 +00:00
|
|
|
r_anal_op (core->anal, &ds->analop,
|
|
|
|
ds->at+bb_size_consumed, buf+idx,
|
|
|
|
len-bb_size_consumed);
|
2016-11-20 18:20:14 +00:00
|
|
|
}
|
2016-05-30 02:18:48 +00:00
|
|
|
if (ret < 1) {
|
2014-01-23 04:55:48 +00:00
|
|
|
r_strbuf_init (&ds->analop.esil);
|
|
|
|
ds->analop.type = R_ANAL_OP_TYPE_ILL;
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_instruction_mov_lea (ds, idx);
|
|
|
|
ds_control_flow_comments (ds);
|
|
|
|
ds_adistrick_comments (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
/* XXX: This is really cpu consuming.. need to be fixed */
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_show_functions (ds);
|
|
|
|
if (ds_print_labels (ds, fcn)) {
|
|
|
|
ds_show_functions (ds);
|
|
|
|
}
|
|
|
|
ds_show_xrefs (ds);
|
|
|
|
ds_show_flags (ds);
|
|
|
|
ds_setup_print_pre (ds, false, false);
|
|
|
|
ds_print_lines_left (ds);
|
|
|
|
ds_print_offset (ds);
|
|
|
|
ds_print_op_size (ds);
|
|
|
|
ds_print_trace (ds);
|
|
|
|
ds_print_cycles (ds);
|
|
|
|
ds_print_family (ds);
|
|
|
|
ds_print_stackptr (ds);
|
|
|
|
ret = ds_print_meta_infos (ds, buf, len, idx);
|
2014-01-23 04:55:48 +00:00
|
|
|
if (ds->mi_found) {
|
2017-01-16 14:07:11 +00:00
|
|
|
ds->mi_found = false;
|
2014-09-23 09:55:11 +00:00
|
|
|
continue;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
|
|
|
/* show cursor */
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_show_cursor (ds);
|
|
|
|
ds_print_show_bytes (ds);
|
|
|
|
ds_print_lines_right (ds);
|
|
|
|
ds_build_op_str (ds);
|
|
|
|
ds_print_opstr (ds);
|
|
|
|
ds_print_fcn_name (ds);
|
|
|
|
ds_print_import_name (ds);
|
|
|
|
ds_print_color_reset (ds);
|
|
|
|
ds_print_dwarf (ds);
|
|
|
|
ret = ds_print_middle (ds, ret);
|
2017-05-08 18:21:06 +00:00
|
|
|
ds_print_asmop_payload (ds, buf + idx);
|
2014-01-23 04:55:48 +00:00
|
|
|
if (core->assembler->syntax != R_ASM_SYNTAX_INTEL) {
|
|
|
|
RAsmOp ao; /* disassemble for the vm .. */
|
|
|
|
int os = core->assembler->syntax;
|
2014-02-20 02:08:12 +00:00
|
|
|
r_asm_set_syntax (core->assembler,
|
|
|
|
R_ASM_SYNTAX_INTEL);
|
|
|
|
r_asm_disassemble (core->assembler, &ao,
|
|
|
|
buf+idx, len-bb_size_consumed);
|
2014-01-23 04:55:48 +00:00
|
|
|
r_asm_set_syntax (core->assembler, os);
|
|
|
|
}
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_core_vmode (ds);
|
2016-07-27 11:50:14 +00:00
|
|
|
//ds_print_cc_update (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
/*if (ds->analop.refptr) {
|
2014-11-06 23:41:29 +00:00
|
|
|
handle_print_refptr (core, ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
} else {
|
2014-11-06 23:41:29 +00:00
|
|
|
handle_print_ptr (core, ds, len, idx);
|
2014-01-23 04:55:48 +00:00
|
|
|
}*/
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_ptr (ds, len, idx);
|
Add asm.hints and handle CDOV deoptimization
CDIV deoptimization
===================
This patch implements hints in the disassembler that
aim to assist the user in reading compiler-optimized divisions
by analysing the involved magic number.
Background
==========
Since integer divisions are usually very expensive on most architectures,
compilers try very hard to substitute them with cheaper operations.
One of the more advanced substitutions is described in the book __Hacker's Delight__,
chapter 10.
An actual implementation of the described algorithm in LLVM can be found in the
functions: `TargetLowering::BuildSDIV()` and `APInt::magic()`.
The optimization approximately transforms e.g.
```asm
xor edx, edx
idiv 39
```
into
```asm
mov eax, edi
mov edx, 0xd20d20d3
imul edx
lea eax, [rdx + rdi]
sar edi, 0x1f
sar eax, 5
sub eax, edi
```
Reading the optimized version and __seeing__ the constant 39 seems difficult.
Therefore I try to provide a small hint to the user.
Limitations
===========
* The current implementation only takes the magic number into account,
therefore it may result in false positives.
* Due to the nature of the optimization, the given hint may be off by a power of two.
Fixing this would require to analyse the following shift instructions.
* The hint is only shown in the line containing the magic number.
The user still has to know which of the following instructions belong to the optimization.
TODO
====
* Implement the corresponding analysis for unsigned integers
* Implement the corresponding analysis for 64-bit integers.
* Improve the heuristic by also looking at the next few instructions.
( I don't really know how to iterate over the instructions in the disassember
in a non-deprecated way. Maybe someone can drop me a hint? )
* Implement an exact analysis using the actual dataflow in radeco and use it
to revert the optimization. ( I suppose this is outside the scope of radare )
2016-06-15 13:18:04 +00:00
|
|
|
ds_cdiv_optimization (ds);
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_comments_right (ds);
|
2016-08-25 16:41:49 +00:00
|
|
|
ds_show_refs (ds);
|
2017-01-18 21:02:30 +00:00
|
|
|
ds_print_esil_anal (ds);
|
2016-11-20 18:20:14 +00:00
|
|
|
if (!(ds->show_comments && ds->show_comment_right && ds->comment)) {
|
2014-01-23 04:55:48 +00:00
|
|
|
r_cons_newline ();
|
2016-03-03 23:33:24 +00:00
|
|
|
}
|
2014-01-23 04:55:48 +00:00
|
|
|
if (ds->line) {
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->line);
|
|
|
|
R_FREE (ds->refline);
|
|
|
|
R_FREE (ds->refline2);
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
2017-05-20 12:37:51 +00:00
|
|
|
ds_print_bbline (ds, false);
|
2016-03-03 23:33:24 +00:00
|
|
|
|
2014-01-23 04:55:48 +00:00
|
|
|
bb_size_consumed += ds->oplen;
|
|
|
|
ds->index += ds->oplen;
|
|
|
|
idx += ds->oplen;
|
|
|
|
ds->at += ds->oplen;
|
|
|
|
ds->addr += ds->oplen;
|
|
|
|
ds->lines++;
|
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
R_FREE (ds->opstr);
|
2014-01-23 04:55:48 +00:00
|
|
|
} while (bb_size_consumed < len);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
free (buf);
|
2016-11-20 18:20:14 +00:00
|
|
|
r_cons_break_pop ();
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_print_esil_anal_fini (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
|
2016-05-30 10:35:39 +00:00
|
|
|
ds_free (ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
r_list_free (bb_list);
|
2014-01-27 00:12:16 +00:00
|
|
|
return idx;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
2017-04-16 09:12:41 +00:00
|
|
|
|
|
|
|
static inline bool pdi_check_end(int nb_opcodes, int nb_bytes, int i, int j) {
|
|
|
|
if (nb_opcodes) {
|
|
|
|
if (nb_bytes) {
|
|
|
|
return j < nb_opcodes && i < nb_bytes;
|
|
|
|
}
|
|
|
|
return j < nb_opcodes;
|
|
|
|
}
|
|
|
|
return i < nb_bytes;
|
|
|
|
}
|
|
|
|
|
|
|
|
R_API int r_core_disasm_pdi(RCore *core, int nb_opcodes, int nb_bytes, int fmt) {
|
|
|
|
int show_offset = r_config_get_i (core->config, "asm.offset");
|
|
|
|
int show_bytes = r_config_get_i (core->config, "asm.bytes");
|
|
|
|
int decode = r_config_get_i (core->config, "asm.decode");
|
|
|
|
int filter = r_config_get_i (core->config, "asm.filter");
|
|
|
|
int show_color = r_config_get_i (core->config, "scr.color");
|
|
|
|
bool asm_ucase = r_config_get_i (core->config, "asm.ucase");
|
|
|
|
int esil = r_config_get_i (core->config, "asm.esil");
|
|
|
|
int flags = r_config_get_i (core->config, "asm.flags");
|
|
|
|
int i = 0, j, ret, err = 0;
|
|
|
|
ut64 old_offset = core->offset;
|
|
|
|
RAsmOp asmop;
|
|
|
|
const char *color_reg = R_CONS_COLOR_DEF (reg, Color_YELLOW);
|
|
|
|
const char *color_num = R_CONS_COLOR_DEF (num, Color_CYAN);
|
|
|
|
|
|
|
|
if (fmt == 'e') {
|
|
|
|
show_bytes = 0;
|
|
|
|
decode = 1;
|
|
|
|
}
|
|
|
|
if (!nb_opcodes && !nb_bytes) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (!nb_opcodes) {
|
|
|
|
nb_opcodes = 0xffff;
|
|
|
|
if (nb_bytes < 0) {
|
|
|
|
// Backward disasm `nb_bytes` bytes
|
|
|
|
nb_bytes = -nb_bytes;
|
|
|
|
core->offset -= nb_bytes;
|
|
|
|
r_core_read_at (core, core->offset, core->block, nb_bytes);
|
|
|
|
}
|
|
|
|
} else if (!nb_bytes) {
|
|
|
|
if (nb_opcodes < 0) {
|
|
|
|
ut64 start;
|
|
|
|
/* Backward disassembly of `ilen` opcodes
|
|
|
|
* - We compute the new starting offset
|
|
|
|
* - Read at the new offset */
|
|
|
|
nb_opcodes = -nb_opcodes;
|
|
|
|
if (r_core_prevop_addr (core, core->offset, nb_opcodes, &start)) {
|
|
|
|
// We have some anal_info.
|
|
|
|
nb_bytes = core->offset - start;
|
|
|
|
} else {
|
|
|
|
// anal ignorance.
|
|
|
|
r_core_asm_bwdis_len (core, &nb_bytes, &core->offset,
|
|
|
|
nb_opcodes);
|
|
|
|
}
|
|
|
|
if (nb_bytes > core->blocksize) {
|
|
|
|
r_core_block_size (core, nb_bytes);
|
|
|
|
}
|
|
|
|
r_core_read_at (core, core->offset, core->block, nb_bytes);
|
|
|
|
} else {
|
|
|
|
// workaround for the `for` loop below
|
|
|
|
nb_bytes = core->blocksize;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// XXX - is there a better way to reset a the analysis counter so that
|
|
|
|
// when code is disassembled, it can actually find the correct offsets
|
|
|
|
if (core->anal && core->anal->cur && core->anal->cur->reset_counter) {
|
|
|
|
core->anal->cur->reset_counter (core->anal, core->offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
int len = (nb_opcodes + nb_bytes) * 5;
|
|
|
|
if (core->fixedblock) {
|
|
|
|
len = core->blocksize;
|
|
|
|
} else {
|
|
|
|
if (len > core->blocksize) {
|
|
|
|
r_core_block_size (core, len);
|
|
|
|
r_core_block_read (core);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_break_push (NULL, NULL);
|
|
|
|
|
|
|
|
int midflags = r_config_get_i (core->config, "asm.midflags");
|
|
|
|
for (i = j = 0; pdi_check_end (nb_opcodes, nb_bytes, i, j); j++) {
|
|
|
|
RFlagItem *item;
|
|
|
|
if (r_cons_is_breaked ()) {
|
|
|
|
err = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
RAnalMetaItem *meta = r_meta_find (core->anal, core->offset + i,
|
|
|
|
R_META_TYPE_ANY, R_META_WHERE_HERE);
|
|
|
|
if (meta && meta->size > 0) {
|
|
|
|
switch (meta->type) {
|
|
|
|
case R_META_TYPE_DATA:
|
|
|
|
r_cons_printf (".data: %s\n", meta->str);
|
|
|
|
i += meta->size;
|
|
|
|
continue;
|
|
|
|
case R_META_TYPE_STRING:
|
|
|
|
r_cons_printf (".string: %s\n", meta->str);
|
|
|
|
i += meta->size;
|
|
|
|
continue;
|
|
|
|
case R_META_TYPE_FORMAT:
|
|
|
|
r_cons_printf (".format : %s\n", meta->str);
|
|
|
|
i += meta->size;
|
|
|
|
continue;
|
|
|
|
case R_META_TYPE_MAGIC:
|
|
|
|
r_cons_printf (".magic : %s\n", meta->str);
|
|
|
|
i += meta->size;
|
|
|
|
continue;
|
|
|
|
case R_META_TYPE_RUN:
|
|
|
|
/* TODO */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_asm_set_pc (core->assembler, core->offset + i);
|
|
|
|
ret = r_asm_disassemble (core->assembler, &asmop, core->block + i,
|
|
|
|
core->blocksize - i);
|
|
|
|
if (midflags) {
|
|
|
|
RDisasmState ds = {
|
|
|
|
.oplen = ret,
|
|
|
|
.at = core->offset + i,
|
|
|
|
.midflags = midflags
|
|
|
|
};
|
|
|
|
int skip_bytes = handleMidFlags (core, &ds, true);
|
|
|
|
if (skip_bytes && midflags > R_MIDFLAGS_SHOW) {
|
|
|
|
ret = skip_bytes;
|
|
|
|
asmop.size = ret;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fmt == 'C') {
|
|
|
|
char *comment = r_meta_get_string (core->anal, R_META_TYPE_COMMENT, core->offset + i);
|
|
|
|
if (comment) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x " %s\n", core->offset + i, comment);
|
|
|
|
free (comment);
|
|
|
|
}
|
|
|
|
i += ret;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (flags) {
|
|
|
|
if (fmt != 'e') { // pie
|
|
|
|
item = r_flag_get_i (core->flags, core->offset + i);
|
|
|
|
if (item) {
|
|
|
|
if (show_offset) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x " ", core->offset + i);
|
|
|
|
}
|
|
|
|
r_cons_printf (" %s:\n", item->name);
|
|
|
|
}
|
|
|
|
} // do not show flags in pie
|
|
|
|
}
|
2017-04-27 13:18:37 +00:00
|
|
|
ut64 at = core->offset + i;
|
2017-04-16 09:12:41 +00:00
|
|
|
if (show_offset) {
|
|
|
|
const int show_offseg = (core->print->flags & R_PRINT_FLAGS_SEGOFF) != 0;
|
|
|
|
const int show_offdec = (core->print->flags & R_PRINT_FLAGS_ADDRDEC) != 0;
|
|
|
|
r_print_offset (core->print, at, 0, show_offseg, show_offdec, 0, NULL);
|
|
|
|
}
|
|
|
|
// r_cons_printf ("0x%08"PFMT64x" ", core->offset+i);
|
|
|
|
if (ret < 1) {
|
|
|
|
err = 1;
|
|
|
|
ret = asmop.size;
|
|
|
|
if (ret < 1) {
|
|
|
|
ret = 1;
|
|
|
|
}
|
|
|
|
if (show_bytes) {
|
2017-04-27 13:18:37 +00:00
|
|
|
r_cons_printf ("%18s%02x ", "", core->block[i]);
|
2017-04-16 09:12:41 +00:00
|
|
|
}
|
|
|
|
r_cons_println ("invalid"); // ???");
|
|
|
|
} else {
|
|
|
|
if (show_bytes) {
|
2017-04-27 13:18:37 +00:00
|
|
|
r_cons_printf ("%20s ", asmop.buf_hex);
|
2017-04-16 09:12:41 +00:00
|
|
|
}
|
|
|
|
ret = asmop.size;
|
|
|
|
if (decode || esil) {
|
|
|
|
RAnalOp analop = {
|
|
|
|
0
|
|
|
|
};
|
|
|
|
char *tmpopstr, *opstr = NULL;
|
|
|
|
r_anal_op (core->anal, &analop, core->offset + i,
|
|
|
|
core->block + i, core->blocksize - i);
|
|
|
|
tmpopstr = r_anal_op_to_string (core->anal, &analop);
|
|
|
|
if (fmt == 'e') { // pie
|
|
|
|
char *esil = (R_STRBUF_SAFEGET (&analop.esil));
|
|
|
|
r_cons_println (esil);
|
|
|
|
} else {
|
|
|
|
if (decode) {
|
|
|
|
opstr = (tmpopstr)? tmpopstr: (asmop.buf_asm);
|
|
|
|
} else if (esil) {
|
|
|
|
opstr = (R_STRBUF_SAFEGET (&analop.esil));
|
|
|
|
}
|
|
|
|
r_cons_println (opstr);
|
|
|
|
}
|
|
|
|
} else {
|
2017-04-26 17:07:11 +00:00
|
|
|
char opstr[128] = {
|
|
|
|
0
|
|
|
|
};
|
2017-04-27 13:18:37 +00:00
|
|
|
char *asm_str = (char *)&asmop.buf_asm;
|
2017-04-26 17:07:11 +00:00
|
|
|
|
2017-04-27 13:18:37 +00:00
|
|
|
if (asm_ucase) {
|
2017-04-26 17:07:11 +00:00
|
|
|
r_str_case (asm_str, 1);
|
|
|
|
}
|
|
|
|
|
2017-04-16 09:12:41 +00:00
|
|
|
if (filter) {
|
2017-04-27 13:18:37 +00:00
|
|
|
core->parser->hint = r_anal_hint_get (core->anal, at);
|
2017-04-26 17:07:11 +00:00
|
|
|
r_parse_filter (core->parser, core->flags,
|
|
|
|
asm_str, opstr, sizeof (opstr) - 1, core->print->big_endian);
|
2017-04-26 17:35:37 +00:00
|
|
|
asm_str = (char *)&opstr;
|
2017-04-26 17:07:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (show_color) {
|
|
|
|
RAnalOp aop = {
|
2017-04-16 09:12:41 +00:00
|
|
|
0
|
|
|
|
};
|
2017-04-26 17:07:11 +00:00
|
|
|
r_anal_op (core->anal, &aop, core->offset + i,
|
|
|
|
core->block + i, core->blocksize - i);
|
2017-06-20 20:48:46 +00:00
|
|
|
asm_str = r_print_colorize_opcode (core->print, asm_str, color_reg, color_num, false);
|
2017-04-26 17:07:11 +00:00
|
|
|
r_cons_printf ("%s%s"Color_RESET "\n",
|
|
|
|
r_print_color_op_type (core->print, aop.type),
|
|
|
|
asm_str);
|
2017-04-16 09:12:41 +00:00
|
|
|
} else {
|
2017-04-26 17:07:11 +00:00
|
|
|
r_cons_println (asm_str);
|
2017-04-16 09:12:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
i += ret;
|
|
|
|
#if 0
|
|
|
|
if ((nb_bytes && (nb_bytes <= i)) || (i >= core->blocksize)) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
r_cons_break_pop ();
|
|
|
|
core->offset = old_offset;
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|