2014-01-19 23:14:00 +00:00
|
|
|
/* radare - LGPL - Copyright 2009-2014 - 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
|
2013-10-27 01:20:36 +00:00
|
|
|
|
2013-09-11 21:41:40 +00:00
|
|
|
static const char* r_vline_a[] = {
|
2013-07-18 20:20:23 +00:00
|
|
|
"|", // LINE_VERT
|
|
|
|
"|-", // LINE_CROSS
|
|
|
|
"/", // RUP_CORNER
|
|
|
|
"\\", // RDWN_CORNER
|
|
|
|
"->", // ARROW_RIGHT
|
|
|
|
"=<", // ARROW_LEFT
|
|
|
|
"-", // LINE_HORIZ
|
|
|
|
",", // LUP_CORNER
|
|
|
|
"`", // LDWN_CORNER
|
2014-03-08 01:36:33 +00:00
|
|
|
"!", // LINE_UP
|
2013-07-18 20:20:23 +00:00
|
|
|
};
|
|
|
|
|
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
|
|
|
|
"╒", // RUP_CORNER
|
|
|
|
"╘", // RDWN_CORNER
|
|
|
|
">", // ARROW_RIGHT
|
|
|
|
"<", // ARROW_LEFT
|
|
|
|
"─", // LINE_HORIZ
|
|
|
|
"┌", // LUP_CORNER
|
|
|
|
"└", // LDWN_CORNER
|
2014-03-08 01:36:33 +00:00
|
|
|
"↑", // LINE_UP
|
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 {
|
|
|
|
char str[2048], strsub[2048];
|
|
|
|
int use_esil;
|
|
|
|
int show_color;
|
|
|
|
int colorop;
|
|
|
|
//int show_utf8;
|
|
|
|
int acase;
|
|
|
|
int atabs;
|
|
|
|
int decode;
|
|
|
|
int pseudo;
|
|
|
|
int filter;
|
|
|
|
int varsub;
|
|
|
|
int show_lines;
|
|
|
|
int linesright;
|
|
|
|
int show_dwarf;
|
|
|
|
int show_linescall;
|
|
|
|
int show_size;
|
|
|
|
int show_trace;
|
|
|
|
int linesout;
|
|
|
|
int adistrick;
|
|
|
|
int show_offset;
|
|
|
|
int show_offseg;
|
|
|
|
int show_flags;
|
|
|
|
int show_bytes;
|
|
|
|
int show_comments;
|
|
|
|
int show_cmtflgrefs;
|
2014-02-10 22:01:19 +00:00
|
|
|
int show_cycles;
|
2014-01-16 17:04:42 +00:00
|
|
|
int show_stackptr;
|
|
|
|
int show_xrefs;
|
|
|
|
int show_functions;
|
|
|
|
int cursor;
|
|
|
|
int show_comment_right_default;
|
|
|
|
int flagspace_ports;
|
|
|
|
int lbytes;
|
|
|
|
int show_comment_right;
|
|
|
|
char *pre;
|
|
|
|
char *ocomment;
|
|
|
|
int linesopts;
|
|
|
|
int lastfail;
|
|
|
|
int oldbits;
|
|
|
|
int ocols;
|
|
|
|
int lcols;
|
|
|
|
int nb, nbytes;
|
|
|
|
int show_utf8;
|
|
|
|
int lines;
|
|
|
|
int oplen;
|
|
|
|
const char *pal_comment;
|
|
|
|
const char *color_comment;
|
|
|
|
const char *color_fname;
|
|
|
|
const char *color_floc;
|
|
|
|
const char *color_fline;
|
|
|
|
const char *color_flow;
|
|
|
|
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;
|
|
|
|
|
|
|
|
RAnalHint *hint;
|
|
|
|
RPrint *p;
|
|
|
|
|
|
|
|
int l;
|
|
|
|
int middle;
|
|
|
|
char *line;
|
|
|
|
char *refline, *refline2;
|
|
|
|
char *comment;
|
|
|
|
char *opstr;
|
|
|
|
char *osl, *sl;
|
|
|
|
int stackptr, ostackptr;
|
|
|
|
int index;
|
|
|
|
ut64 at, addr, dest;
|
|
|
|
int tries, cbytes, idx;
|
|
|
|
ut8 mi_found, retry, toro;
|
|
|
|
RAsmOp asmop;
|
|
|
|
RAnalOp analop;
|
|
|
|
|
|
|
|
const ut8 *buf;
|
|
|
|
int len;
|
|
|
|
|
|
|
|
int counter;
|
|
|
|
} RDisasmState;
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_reflines_init (RCore *core, RDisasmState *ds);
|
|
|
|
static RDisasmState * handle_init_ds (RCore * core);
|
|
|
|
static void handle_set_pre (RDisasmState *ds, const char * str);
|
|
|
|
static void handle_build_op_str (RCore *core, RDisasmState *ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
static char *filter_refline2(RCore *core, const char *str);
|
|
|
|
static char *filter_refline(RCore *core, const char *str);
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_show_xrefs (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_atabs_option(RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_show_functions (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_show_comments_right (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_show_flags_option(RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_update_ref_lines (RCore *core, RDisasmState *ds);
|
|
|
|
static int perform_disassembly(RCore *core, RDisasmState *ds, ut8 *buf, int len);
|
|
|
|
static void handle_control_flow_comments (RCore * core, RDisasmState *ds);
|
|
|
|
static void handle_print_lines_right (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_lines_left (RCore *core, RDisasmState *ds);
|
2014-02-10 22:01:19 +00:00
|
|
|
static void handle_print_cycles(RCore *core, RDisasmState *ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_stackptr (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_offset (RCore *core, RDisasmState *ds );
|
|
|
|
static void handle_print_op_size (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_trace (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_adistrick_comments (RCore *core, RDisasmState *ds);
|
|
|
|
static int handle_print_meta_infos (RCore * core, RDisasmState *ds, ut8* buf, int len, int idx );
|
|
|
|
static void handle_print_opstr (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_color_reset (RCore *core, RDisasmState *ds);
|
|
|
|
static int handle_print_middle (RCore *core, RDisasmState *ds, int ret );
|
|
|
|
static int handle_print_fcn_locals (RCore *core, RDisasmState *ds, RAnalFunction *f, RAnalFunction *cf);
|
2014-04-02 20:30:39 +00:00
|
|
|
static void handle_print_import_name (RCore *core, RDisasmState *ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_fcn_name (RCore * core, RDisasmState *ds);
|
2014-05-07 00:51:04 +00:00
|
|
|
static void handle_print_as_string(RCore *core, RDisasmState *ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_core_vmode (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_cc_update (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_dwarf (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_asmop_payload (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_op_push_info (RCore *core, RDisasmState *ds);
|
|
|
|
static int handle_read_refptr (RCore *core, RDisasmState *ds, ut64 *word8, ut32 *word4);
|
|
|
|
static void handle_print_comments_right (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_refptr_meta_infos (RCore *core, RDisasmState *ds, ut64 word8 );
|
|
|
|
static void handle_print_refptr (RCore *core, RDisasmState *ds);
|
|
|
|
static void handle_print_ptr (RCore *core, RDisasmState *ds, int len, int idx);
|
|
|
|
|
|
|
|
|
2014-01-23 04:55:48 +00:00
|
|
|
static int cmpaddr (void *_a, void *_b) {
|
|
|
|
RAnalBlock *a = _a, *b = _b;
|
|
|
|
return (a->addr > b->addr);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
|
|
|
static RDisasmState * handle_init_ds (RCore * core) {
|
|
|
|
RDisasmState * ds = R_NEW0(RDisasmState);
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
ds->color_num = P(num): Color_YELLOW;
|
2014-05-16 02:07:03 +00:00
|
|
|
ds->color_mov = P(num): Color_WHITE;
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->color_invalid = P(invalid): Color_BRED;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->use_esil = r_config_get_i (core->config, "asm.esil");
|
|
|
|
ds->show_color = r_config_get_i (core->config, "scr.color");
|
|
|
|
ds->colorop = r_config_get_i (core->config, "scr.colorops");
|
|
|
|
ds->show_utf8 = r_config_get_i (core->config, "scr.utf8");
|
|
|
|
ds->acase = r_config_get_i (core->config, "asm.ucase");
|
|
|
|
ds->atabs = r_config_get_i (core->config, "asm.tabs");
|
|
|
|
ds->decode = r_config_get_i (core->config, "asm.decode");
|
|
|
|
ds->pseudo = r_config_get_i (core->config, "asm.pseudo");
|
|
|
|
ds->filter = r_config_get_i (core->config, "asm.filter");
|
|
|
|
ds->varsub = r_config_get_i (core->config, "asm.varsub");
|
|
|
|
ds->show_lines = r_config_get_i (core->config, "asm.lines");
|
|
|
|
ds->linesright = r_config_get_i (core->config, "asm.linesright");
|
2014-04-21 15:19:15 +00:00
|
|
|
ds->show_dwarf = r_config_get_i (core->config, "asm.dwarf");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_linescall = r_config_get_i (core->config, "asm.linescall");
|
|
|
|
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
|
|
|
|
ds->show_offset = r_config_get_i (core->config, "asm.offset");
|
|
|
|
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");
|
|
|
|
ds->show_comments = r_config_get_i (core->config, "asm.comments");
|
|
|
|
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");
|
|
|
|
ds->show_functions = r_config_get_i (core->config, "asm.functions");
|
|
|
|
ds->nbytes = r_config_get_i (core->config, "asm.nbytes");
|
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->show_comment_right_default = r_config_get_i (core->config, "asm.cmtright");
|
|
|
|
ds->flagspace_ports = r_flag_space_get (core->flags, "ports");
|
|
|
|
ds->lbytes = r_config_get_i (core->config, "asm.lbytes");
|
|
|
|
ds->show_comment_right = 0;
|
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->oldbits = 0;
|
|
|
|
ds->ocols = 0;
|
|
|
|
ds->lcols = 0;
|
2014-04-01 21:22:29 +00:00
|
|
|
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
if (r_config_get_i (core->config, "asm.linesstyle"))
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_STYLE;
|
2014-01-16 17:04:42 +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;
|
|
|
|
|
|
|
|
if (ds->show_lines) ds->ocols += 10; // XXX
|
|
|
|
if (ds->show_offset) ds->ocols += 14;
|
|
|
|
ds->lcols = ds->ocols+2;
|
|
|
|
if (ds->show_bytes) ds->ocols += 20;
|
|
|
|
if (ds->show_trace) ds->ocols += 8;
|
|
|
|
if (ds->show_stackptr) ds->ocols += 4;
|
|
|
|
/* disasm */ ds->ocols += 20;
|
|
|
|
ds->nb = (ds->nbytes*2);
|
|
|
|
ds->tries = 3;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
if (core->print->cur_enabled) {
|
|
|
|
if (core->print->cur<0)
|
|
|
|
core->print->cur = 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->cursor = core->print->cur;
|
|
|
|
} else ds->cursor = -1;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
if (r_config_get_i (core->config, "asm.linesstyle"))
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->linesopts |= R_ANAL_REFLINE_TYPE_STYLE;
|
2014-01-16 17:04:42 +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;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
return ds;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_reflines_init (RCore *core, RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_lines) {
|
2014-01-16 17:04:42 +00:00
|
|
|
// TODO: make anal->reflines implicit
|
|
|
|
free (core->reflines); // TODO: leak
|
|
|
|
free (core->reflines2); // TODO: leak
|
|
|
|
core->reflines = r_anal_reflines_get (core->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, ds->show_linescall);
|
2014-01-16 17:04:42 +00:00
|
|
|
core->reflines2 = r_anal_reflines_get (core->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);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else core->reflines = core->reflines2 = NULL;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_reflines_fcn_init (RCore *core, RDisasmState *ds, RAnalFunction *fcn, ut8* buf) {
|
2014-01-23 04:55:48 +00:00
|
|
|
if (ds->show_lines) {
|
|
|
|
// TODO: make anal->reflines implicit
|
|
|
|
free (core->reflines); // TODO: leak
|
|
|
|
free (core->reflines2); // TODO: leak
|
|
|
|
core->reflines = r_anal_reflines_fcn_get (core->anal,
|
|
|
|
fcn, -1, ds->linesout, ds->show_linescall);
|
|
|
|
core->reflines2 = r_anal_reflines_fcn_get (core->anal,
|
|
|
|
fcn, -1, ds->linesout, 1);
|
|
|
|
} else core->reflines = core->reflines2 = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_deinit_ds (RCore *core, RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds) return;
|
|
|
|
if (core && ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
if (ds->hint) r_anal_hint_free (ds->hint);
|
|
|
|
free (ds->comment);
|
|
|
|
free (ds->pre);
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
free (ds->opstr);
|
|
|
|
free (ds->osl);
|
|
|
|
free (ds->sl);
|
|
|
|
free (ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_set_pre (RDisasmState *ds, const char * str) {
|
|
|
|
free (ds->pre);
|
|
|
|
ds->pre = strdup (str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_build_op_str (RCore *core, RDisasmState *ds) {
|
2014-04-01 21:22:29 +00:00
|
|
|
char *asm_str = NULL;
|
|
|
|
|
|
|
|
if (ds->show_color && ds->colorop) {
|
|
|
|
r_cons_strcat (r_print_color_op_type (core->print, ds->analop.type));
|
|
|
|
asm_str = r_print_colorize_opcode (ds->asmop.buf_asm, ds->color_reg, ds->color_num);
|
|
|
|
} else
|
|
|
|
asm_str = strdup (ds->asmop.buf_asm);
|
|
|
|
|
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-04-01 21:22:29 +00:00
|
|
|
ds->opstr = tmpopstr? tmpopstr: strdup (asm_str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->hint && ds->hint->opcode) {
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->hint->opcode);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->filter) {
|
2014-01-16 17:04:42 +00:00
|
|
|
int ofs = core->parser->flagspace;
|
2014-01-20 00:42:16 +00:00
|
|
|
int fs = ds->flagspace_ports;
|
|
|
|
if (ds->analop.type == R_ANAL_OP_TYPE_IO) {
|
2014-01-16 17:04:42 +00:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2014-05-16 14:47:44 +00:00
|
|
|
#if 1
|
2014-01-16 17:04:42 +00:00
|
|
|
r_parse_filter (core->parser, core->flags,
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->opstr? ds->opstr: asm_str, ds->str, sizeof (ds->str));
|
2014-01-16 17:04:42 +00:00
|
|
|
core->parser->flagspace = ofs;
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->str);
|
2014-05-16 14:47:44 +00:00
|
|
|
#else
|
|
|
|
ds->opstr = strdup (asm_str);
|
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
core->parser->flagspace = ofs; // ???
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->opstr)
|
2014-04-01 21:22:29 +00:00
|
|
|
ds->opstr = strdup (asm_str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->varsub) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->at, R_ANAL_FCN_TYPE_NULL);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f) {
|
|
|
|
r_parse_varsub (core->parser, f,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->opstr, ds->strsub, sizeof (ds->strsub));
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->strsub);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
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 {
|
2014-01-20 00:42:16 +00:00
|
|
|
char *p = malloc (strlen (ds->opstr)+3); /* What's up '\0' ? */
|
2014-01-16 17:04:42 +00:00
|
|
|
strcpy (p, ": ");
|
2014-01-20 00:42:16 +00:00
|
|
|
strcpy (p+2, 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
|
|
|
}
|
|
|
|
|
2013-01-24 02:48:24 +00:00
|
|
|
R_API RAnalHint *r_core_hint_begin (RCore *core, RAnalHint* hint, ut64 at) {
|
|
|
|
// XXX not here
|
|
|
|
static char *hint_arch = NULL;
|
|
|
|
static int hint_bits = 0;
|
|
|
|
if (hint) {
|
|
|
|
r_anal_hint_free (hint);
|
|
|
|
hint = NULL;
|
|
|
|
}
|
|
|
|
hint = r_anal_hint_get (core->anal, at);
|
|
|
|
if (hint_arch) {
|
|
|
|
r_config_set (core->config, "asm.arch", hint_arch);
|
|
|
|
hint_arch = NULL;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (hint_bits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", hint_bits);
|
|
|
|
hint_bits = 0;
|
|
|
|
}
|
|
|
|
if (hint) {
|
|
|
|
/* arch */
|
|
|
|
if (hint->arch) {
|
|
|
|
if (!hint_arch) hint_arch = strdup (
|
|
|
|
r_config_get (core->config, "asm.arch"));
|
2014-03-11 01:47:10 +00:00
|
|
|
//eprintf ("ST ARCH\n");
|
2014-01-16 17:04:42 +00:00
|
|
|
r_config_set (core->config, "asm.arch", hint->arch);
|
|
|
|
}
|
|
|
|
/* bits */
|
|
|
|
if (hint->bits) {
|
|
|
|
if (!hint_bits) hint_bits =
|
|
|
|
r_config_get_i (core->config, "asm.bits");
|
|
|
|
r_config_set_i (core->config, "asm.bits", hint->bits);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return hint;
|
|
|
|
}
|
|
|
|
|
|
|
|
// this is another random hack for reflines.. crappy stuff
|
|
|
|
static char *filter_refline2(RCore *core, const char *str) {
|
2014-04-23 02:27:21 +00:00
|
|
|
char *p, *s = strdup (str);
|
|
|
|
for (p=s; *p; p++) {
|
|
|
|
switch (*p) {
|
|
|
|
case '`': *p = '|'; break;
|
|
|
|
case '-':
|
|
|
|
case '>':
|
|
|
|
case '<':
|
2014-05-25 01:28:54 +00:00
|
|
|
case '.':
|
2014-04-23 02:27:21 +00:00
|
|
|
case '=':
|
|
|
|
*p = ' '; break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-08 01:36:33 +00:00
|
|
|
// XXX fix this? or just deprecate this function?
|
|
|
|
#if 0
|
2014-05-04 15:21:05 +00:00
|
|
|
char *p;
|
2014-01-16 17:04:42 +00:00
|
|
|
char n = '|';
|
|
|
|
for (p=s; *p; p++) {
|
2014-03-08 01:36:33 +00:00
|
|
|
if (!strncmp (p, core->cons->vline[LINE_VERT],
|
|
|
|
strlen (core->cons->vline[LINE_VERT]))) {
|
|
|
|
p += strlen(core->cons->vline[LINE_VERT]) - 1;
|
|
|
|
continue;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
switch (*p) {
|
|
|
|
case '`':
|
|
|
|
case '|':
|
|
|
|
*p = n;
|
|
|
|
break;
|
|
|
|
case ',':
|
|
|
|
if (p[1]=='|') n = ' ';
|
|
|
|
default:
|
|
|
|
*p = ' ';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s = r_str_replace (s, "|", core->cons->vline[LINE_VERT], 1);
|
|
|
|
s = r_str_replace (s, "`", core->cons->vline[LINE_VERT], 1);
|
2014-03-08 01:36:33 +00:00
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2014-01-18 22:02:53 +00:00
|
|
|
static char *filter_refline(RCore *core, const char *str) {
|
2014-05-04 14:49:27 +00:00
|
|
|
char *p = strdup (str);
|
|
|
|
|
|
|
|
p = r_str_replace (p, "`",
|
|
|
|
core->cons->vline[LINE_VERT], 1); // "`" -> "|"
|
|
|
|
p = r_str_replace (p,
|
|
|
|
core->cons->vline[LINE_HORIZ], " ", 1); // "-" -> " "
|
|
|
|
p = r_str_replace (p,
|
|
|
|
core->cons->vline[LINE_HORIZ],
|
|
|
|
core->cons->vline[LINE_VERT], 1); // "=" -> "|"
|
|
|
|
p = r_str_replace (p, core->cons->vline[ARROW_RIGHT], " ", 0);
|
|
|
|
p = r_str_replace (p, core->cons->vline[ARROW_LEFT], " ", 0);
|
|
|
|
|
|
|
|
return p;
|
2014-01-18 22:02:53 +00:00
|
|
|
}
|
|
|
|
#if 0
|
2014-01-16 17:04:42 +00:00
|
|
|
static char *filter_refline(RCore *core, const char *str) {
|
|
|
|
char *p, *s = strdup (str);
|
|
|
|
p = s;
|
|
|
|
p = r_str_replace (strdup (p), "`",
|
|
|
|
core->cons->vline[LINE_VERT], 1); // "`" -> "|"
|
2014-01-18 22:02:53 +00:00
|
|
|
p = r_str_replace (p, core->cons->vline[LINE_HORIZ], " ", 1); // "-" -> " "
|
|
|
|
p = r_str_replace (p, core->cons->vline[LINE_HORIZ], core->cons->vline[LINE_VERT], 1); // "=" -> "|"
|
|
|
|
s = strstr (p, core->cons->vline[ARROW_RIGHT]);
|
|
|
|
if (s) p = r_str_replace (p, core->cons->vline[ARROW_RIGHT], " ", 0);
|
|
|
|
s = strstr (p, core->cons->vline[ARROW_LEFT]);
|
|
|
|
if (s) p = r_str_replace (p, core->cons->vline[ARROW_LEFT], " ", 0);
|
|
|
|
return p;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-18 22:02:53 +00:00
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_show_xrefs (RCore *core, RDisasmState *ds) {
|
2014-01-16 17:04:42 +00:00
|
|
|
// Show xrefs
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_xrefs) {
|
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2014-01-16 17:04:42 +00:00
|
|
|
RList *xrefs;
|
|
|
|
RAnalRef *refi;
|
|
|
|
RListIter *iter;
|
|
|
|
|
|
|
|
/* show reverse refs */
|
|
|
|
|
|
|
|
/* show xrefs */
|
2014-01-20 00:42:16 +00:00
|
|
|
if ((xrefs = r_anal_xref_get (core->anal, ds->at))) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_list_foreach (xrefs, iter, refi) {
|
|
|
|
#if 0
|
|
|
|
r_list_foreach (core->anal->refs, iter, refi)
|
|
|
|
#endif
|
2014-05-05 15:31:10 +00:00
|
|
|
if (refi->at == ds->at) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalFunction *fun = r_anal_fcn_find (
|
2014-05-05 15:31:10 +00:00
|
|
|
core->anal, refi->addr,
|
2014-01-16 17:04:42 +00:00
|
|
|
R_ANAL_FCN_TYPE_FCN |
|
|
|
|
R_ANAL_FCN_TYPE_ROOT);
|
|
|
|
#if 1
|
|
|
|
// THAT'S OK
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s "Color_RESET"%s%s"Color_RESET, ds->color_fline,
|
|
|
|
((f&&f->type==R_ANAL_FCN_TYPE_FCN)&&f->addr==ds->at)
|
|
|
|
?" ":core->cons->vline[LINE_VERT], ds->color_flow, ds->refline2);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("%s %s", ((f&&f->type==R_ANAL_FCN_TYPE_FCN)
|
2014-01-20 00:42:16 +00:00
|
|
|
&& f->addr==ds->at)?" ":core->cons->vline[LINE_VERT], ds->refline2);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-05-05 15:31:10 +00:00
|
|
|
|
|
|
|
char const * _xref_type = "UNKNOWN";
|
|
|
|
switch(refi->type)
|
|
|
|
{
|
|
|
|
case R_ANAL_REF_TYPE_NULL:
|
|
|
|
_xref_type = "UNKNOWN";
|
|
|
|
break;
|
|
|
|
case R_ANAL_REF_TYPE_CODE:
|
|
|
|
_xref_type = "JMP";
|
|
|
|
break;
|
|
|
|
case R_ANAL_REF_TYPE_CALL:
|
|
|
|
_xref_type = "CALL";
|
|
|
|
break;
|
|
|
|
case R_ANAL_REF_TYPE_DATA:
|
|
|
|
_xref_type = "DATA";
|
|
|
|
break;
|
|
|
|
case R_ANAL_REF_TYPE_STRING:
|
|
|
|
_xref_type = "STRING";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s; %s XREF from 0x%08"PFMT64x" (%s)"Color_RESET"\n",
|
2014-05-05 15:31:10 +00:00
|
|
|
ds->pal_comment,
|
|
|
|
_xref_type, refi->addr,
|
|
|
|
fun?fun->name:"unk");
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-05-05 15:31:10 +00:00
|
|
|
r_cons_printf ("; %s XREF from 0x%08"PFMT64x" (%s)\n",
|
|
|
|
_xref_type, refi->addr,
|
|
|
|
fun?fun->name: "unk");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-05-05 15:31:10 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
r_list_free (xrefs);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_atabs_option(RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->atabs) {
|
2014-01-16 17:04:42 +00:00
|
|
|
int n, i = 0, comma = 0, word = 0;
|
|
|
|
int brackets = 0;
|
|
|
|
char *t, *b;
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = b = malloc (strlen (ds->asmop.buf_asm)* (ds->atabs+1)*4);
|
|
|
|
strcpy (b, ds->asmop.buf_asm);
|
2014-01-16 17:04:42 +00:00
|
|
|
for (; *b; b++, i++) {
|
|
|
|
if (*b=='(' || *b=='[') brackets++;
|
|
|
|
if (*b==')' || *b==']') brackets--;
|
|
|
|
if (*b==',') comma = 1;
|
|
|
|
if (*b!=' ') continue;
|
|
|
|
if (word>0 && !comma) continue; //&& b[1]=='[') continue;
|
|
|
|
if (brackets>0) continue;
|
|
|
|
comma = 0;
|
|
|
|
brackets = 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
n = (ds->atabs-i);
|
2014-01-16 17:04:42 +00:00
|
|
|
t = strdup (b+1); //XXX slow!
|
|
|
|
if (n<1) n = 1;
|
|
|
|
memset (b, ' ', n);
|
|
|
|
b += n;
|
|
|
|
strcpy (b, t);
|
|
|
|
free (t);
|
|
|
|
i = 0;
|
|
|
|
word++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_print_show_cursor (RCore *core, RDisasmState *ds) {
|
2014-05-04 15:21:05 +00:00
|
|
|
int q = core->print->cur_enabled &&
|
|
|
|
ds->cursor >= ds->index &&
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->cursor < (ds->index+ds->asmop.size);
|
2014-05-04 15:21:05 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
void *p = r_bp_get (core->dbg->bp, ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (p&&q?"b*":p? "b ":q?"* ":" ");
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_show_functions (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_functions) {
|
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
//ds->pre = " ";
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f) {
|
2014-03-31 14:39:16 +00:00
|
|
|
#warning TODO list from anal->sdb_fcns/fcn.0x%%x.locals|args
|
|
|
|
|
2014-03-31 01:05:48 +00:00
|
|
|
#if 0
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f->locals != NULL) {
|
|
|
|
RAnalFcnLocal *f_loc;
|
|
|
|
RListIter *l_iter;
|
|
|
|
r_list_foreach (f->locals, l_iter, f_loc) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (f_loc && f_loc->addr == ds->at) {
|
|
|
|
handle_set_pre (ds, core->cons->vline[LINE_VERT]);
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s"Color_RESET, ds->color_fline, ds->pre); // "|"
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->pre = r_str_concat (ds->pre, " ");
|
|
|
|
r_cons_printf (ds->pre); //"| "
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_lines && ds->refline) {
|
2014-01-21 11:10:32 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s"Color_RESET, ds->color_flow, ds->refline);
|
|
|
|
} else r_cons_strcat (ds->refline);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_offset)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("; -- ");
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s %s"Color_RESET"\n",
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_label, f_loc->name?f_loc->name:"unk");
|
2014-01-16 17:04:42 +00:00
|
|
|
else r_cons_printf (" %s\n", f_loc->name?f_loc->name:"unk");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-03-31 01:05:48 +00:00
|
|
|
#endif
|
2014-01-20 00:42:16 +00:00
|
|
|
if (f->addr == ds->at) {
|
2014-01-16 17:04:42 +00:00
|
|
|
char *sign = r_anal_fcn_to_string (core->anal, f);
|
|
|
|
if (f->type == R_ANAL_FCN_TYPE_LOC) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s ", ds->color_fline,
|
2014-01-16 17:04:42 +00:00
|
|
|
core->cons->vline[LINE_CROSS]); // |-
|
|
|
|
r_cons_printf ("%s%s"Color_RESET" %d\n",
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_floc, f->name, f->size);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s%s "Color_RESET,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_fline, core->cons->vline[LINE_VERT]); // |
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-03-08 01:36:33 +00:00
|
|
|
r_cons_printf ("%s %s %d\n%s ", core->cons->vline[LINE_CROSS],
|
|
|
|
f->name, f->size, core->cons->vline[LINE_VERT]); // |-
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
const char *fmt = ds->show_color?
|
2014-01-16 17:04:42 +00:00
|
|
|
"%s%s "Color_RESET"%s(%s) %s"Color_RESET" %d\n":
|
|
|
|
"%s (%s) %s %d\n%s ";
|
2014-01-20 00:42:16 +00:00
|
|
|
int corner = (f->size <= ds->analop.size)? RDWN_CORNER: LINE_VERT;
|
|
|
|
corner = LINE_VERT; // 99% of cases
|
|
|
|
#if SLOW_BUT_OK
|
|
|
|
RFlagItem *item = r_flag_get_i (core->flags, f->addr);
|
|
|
|
corner = item? LINE_VERT: RDWN_CORNER;
|
|
|
|
if (item)
|
|
|
|
corner = 0;
|
|
|
|
#endif
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf (fmt, ds->color_fline,
|
|
|
|
core->cons->vline[RUP_CORNER], ds->color_fname,
|
2014-01-16 17:04:42 +00:00
|
|
|
(f->type==R_ANAL_FCN_TYPE_FCN || f->type==R_ANAL_FCN_TYPE_SYM)?"fcn":
|
|
|
|
(f->type==R_ANAL_FCN_TYPE_IMP)?"imp":"loc",
|
|
|
|
f->name, f->size, corner);
|
|
|
|
r_cons_printf ("%s%s "Color_RESET,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_fline, core->cons->vline[corner]);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf (fmt, core->cons->vline[RUP_CORNER],
|
|
|
|
(f->type==R_ANAL_FCN_TYPE_FCN||f->type==R_ANAL_FCN_TYPE_SYM)?"fcn":
|
|
|
|
(f->type==R_ANAL_FCN_TYPE_IMP)?"imp":"loc",
|
|
|
|
f->name, f->size, core->cons->vline[corner]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sign) r_cons_printf ("// %s\n", sign);
|
|
|
|
free (sign);
|
|
|
|
sign = NULL;
|
2014-01-20 00:42:16 +00:00
|
|
|
//ds->pre = "| "; // TOFIX!
|
|
|
|
handle_set_pre (ds, core->cons->vline[LINE_VERT]);
|
|
|
|
ds->pre = r_str_concat (ds->pre, " ");
|
|
|
|
ds->stackptr = 0;
|
|
|
|
} else if (f->addr+f->size-ds->analop.size== ds->at) {
|
|
|
|
if (ds->show_color) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s%s "Color_RESET,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_fline, core->cons->vline[RDWN_CORNER]);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("%s ", core->cons->vline[RDWN_CORNER]);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
} else if (ds->at > f->addr && ds->at < f->addr+f->size-1) {
|
|
|
|
if (ds->show_color) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s%s "Color_RESET,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_fline, core->cons->vline[LINE_VERT]);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("%s ", core->cons->vline[LINE_VERT]);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
//ds->pre = "| "; // TOFIX!
|
|
|
|
handle_set_pre (ds, core->cons->vline[LINE_VERT]);
|
|
|
|
ds->pre = r_str_concat (ds->pre, " ");
|
2014-01-16 17:04:42 +00:00
|
|
|
} else f = NULL;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (f && ds->at == f->addr+f->size-ds->analop.size) { // HACK
|
|
|
|
//ds->pre = R_LINE_BOTTOM_DCORNER" ";
|
|
|
|
handle_set_pre (ds, core->cons->vline[RDWN_CORNER]);
|
|
|
|
ds->pre = r_str_concat (ds->pre, " ");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
} else r_cons_printf (" ");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_show_comments_right (RCore *core, RDisasmState *ds) {
|
2014-01-16 17:04:42 +00:00
|
|
|
/* show comment at right? */
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_comment_right = 0;
|
|
|
|
if (ds->show_comments) {
|
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
RFlagItem *item = r_flag_get_i (core->flags, ds->at);
|
2014-01-23 02:47:20 +00:00
|
|
|
ds->comment = r_meta_get_string (core->anal, R_META_TYPE_COMMENT, ds->at);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->comment && item && item->comment) {
|
|
|
|
ds->ocomment = item->comment;
|
|
|
|
ds->comment = strdup (item->comment);
|
|
|
|
}
|
|
|
|
if (ds->comment) {
|
|
|
|
int linelen, maxclen = strlen (ds->comment)+5;
|
2014-01-16 17:04:42 +00:00
|
|
|
linelen = maxclen;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_comment_right_default)
|
|
|
|
if (ds->ocols+maxclen < core->cons->columns) {
|
|
|
|
if (ds->comment && *ds->comment && strlen (ds->comment)<maxclen) {
|
2014-03-08 20:03:59 +00:00
|
|
|
if (!strchr (ds->comment, '\n')) // more than one line?
|
|
|
|
ds->show_comment_right = 1;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->show_comment_right) {
|
|
|
|
int infun, mycols = ds->lcols;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (mycols + linelen + 10 > core->cons->columns)
|
|
|
|
mycols = 0;
|
|
|
|
mycols /= 2;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) r_cons_strcat (ds->pal_comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
#if OLD_COMMENTS
|
|
|
|
r_cons_strcat ("; ");
|
|
|
|
// XXX: always prefix with ; the comments
|
2014-01-20 00:42:16 +00:00
|
|
|
if (*ds->comment != ';') r_cons_strcat (" ; ");
|
|
|
|
r_cons_strcat_justify (ds->comment, mycols, ';');
|
2014-01-16 17:04:42 +00:00
|
|
|
#else
|
2014-01-20 00:42:16 +00:00
|
|
|
infun = f && (f->addr != ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (infun) {
|
2014-01-20 00:42:16 +00:00
|
|
|
char *str = strdup (ds->show_color?ds->color_fline: "");
|
2014-01-16 17:04:42 +00:00
|
|
|
str = r_str_concat (str, core->cons->vline[LINE_VERT]);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
|
|
|
str = r_str_concat (str, ds->color_flow);
|
2014-01-16 17:04:42 +00:00
|
|
|
// color refline
|
|
|
|
str = r_str_concat (str, " ");
|
2014-01-20 00:42:16 +00:00
|
|
|
str = r_str_concat (str, ds->refline2);
|
2014-01-16 17:04:42 +00:00
|
|
|
// color comment
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
|
|
|
str = r_str_concat (str, ds->color_comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
str = r_str_concat (str, "; ");
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->comment = r_str_prefix_all (ds->comment, str);
|
2014-01-16 17:04:42 +00:00
|
|
|
free (str);
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->comment = r_str_prefix_all (ds->comment, " ; ");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_strcat (ds->comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
#endif
|
2014-05-16 02:07:03 +00:00
|
|
|
if (ds->show_color) handle_print_color_reset (core, ds);
|
2014-03-06 22:42:01 +00:00
|
|
|
r_cons_newline ();
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->comment);
|
|
|
|
ds->comment = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
/* flag one */
|
2014-01-20 00:42:16 +00:00
|
|
|
if (item && item->comment && ds->ocomment != item->comment) {
|
|
|
|
if (ds->show_color) r_cons_strcat (ds->pal_comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_newline ();
|
|
|
|
r_cons_strcat (" ; ");
|
|
|
|
r_cons_strcat_justify (item->comment, mycols, ';');
|
|
|
|
r_cons_newline ();
|
2014-05-16 02:07:03 +00:00
|
|
|
if (ds->show_color) handle_print_color_reset (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_show_flags_option(RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_flags) {
|
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
RFlagItem *flag = r_flag_get_i (core->flags, ds->at);
|
|
|
|
if (flag && (!f || (f && strcmp (f->name, flag->name)))) {
|
|
|
|
if (ds->show_lines && ds->refline) {
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s"Color_RESET, ds->color_flow, ds->refline2);
|
|
|
|
} else r_cons_printf (ds->refline);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_offset) r_cons_printf (";-- ");
|
|
|
|
if (ds->show_color) r_cons_strcat (ds->color_flag);
|
|
|
|
if (ds->show_functions) r_cons_printf ("%s:\n", flag->name);
|
2014-01-16 17:04:42 +00:00
|
|
|
else r_cons_printf ("%s:\n", flag->name);
|
2014-01-20 00:42:16 +00:00
|
|
|
//handle_set_pre (ds, " ");
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf (Color_RESET"%s%s"Color_RESET, ds->color_fline,
|
|
|
|
f ? ds->pre : " ");
|
|
|
|
} else r_cons_printf (f ? ds->pre : " ");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_update_ref_lines (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_lines) {
|
|
|
|
ds->line = r_anal_reflines_str (core, ds->at, ds->linesopts);
|
|
|
|
ds->refline = filter_refline (core, ds->line);
|
|
|
|
ds->refline2 = filter_refline2 (core, ds->refline);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->refline = strdup ("");
|
|
|
|
ds->refline2 = strdup ("");
|
|
|
|
ds->line = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static int perform_disassembly(RCore *core, RDisasmState *ds, ut8 *buf, int len) {
|
2014-01-16 17:04:42 +00:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
// TODO : line analysis must respect data types! shouldnt be interpreted as code
|
2014-01-20 00:42:16 +00:00
|
|
|
ret = r_asm_disassemble (core->assembler, &ds->asmop, buf, len);
|
|
|
|
if (ds->asmop.size<1) ds->asmop.size = 1;
|
|
|
|
ds->oplen = ds->asmop.size;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
if (ret<1) { // XXX: move to r_asm_disassemble ()
|
|
|
|
ret = -1;
|
|
|
|
//eprintf ("** invalid opcode at 0x%08"PFMT64x" %d %d**\n",
|
|
|
|
// core->assembler->pc + ret, l, len);
|
|
|
|
#if HASRETRY
|
|
|
|
//eprintf ("~~~~~~LEN~~~~ %d %d %d\n", l, len, lines);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->cbytes && ds->tries>0) { //1||l < len)
|
2014-01-16 17:04:42 +00:00
|
|
|
//eprintf ("~~~~~~~~~~~~~ %d %d\n", idx, core->blocksize);
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->addr = core->assembler->pc;
|
|
|
|
ds->tries--;
|
|
|
|
//eprintf ("-- %d %d\n", len, r_core_read_at (core, ds->addr, buf, len));
|
|
|
|
//eprintf ("REtry 0x%llx -- %x %x\n", ds->addr, buf[0], buf[1]);
|
|
|
|
ds->idx = 0;
|
|
|
|
ds->retry = 1;
|
2014-01-16 17:04:42 +00:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
#endif
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->lastfail = 1;
|
|
|
|
strcpy (ds->asmop.buf_asm, "invalid");
|
2014-01-16 17:04:42 +00:00
|
|
|
// sprintf (asmop.buf_hex, "%02x", buf[idx]);
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->lastfail = 0;
|
|
|
|
ds->asmop.size = (ds->hint && ds->hint->size)?
|
|
|
|
ds->hint->size: r_asm_op_get_size (&ds->asmop);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->pseudo) {
|
|
|
|
r_parse_parse (core->parser, ds->opstr?
|
|
|
|
ds->opstr: ds->asmop.buf_asm, ds->str);
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = strdup (ds->str);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->acase)
|
|
|
|
r_str_case (ds->asmop.buf_asm, 1);
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_control_flow_comments (RCore * core, RDisasmState *ds) {
|
|
|
|
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:
|
2014-01-20 00:42:16 +00:00
|
|
|
item = r_flag_get_i (core->flags, ds->analop.jump);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (item && item->comment) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) r_cons_strcat (ds->pal_comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" ; ref to %s: %s\n", item->name, item->comment);
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_color_reset(core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-05-04 15:21:05 +00:00
|
|
|
static void handle_print_lines_right (RCore *core, RDisasmState *ds){
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->linesright && ds->show_lines && ds->line) {
|
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_printf ("%s%s"Color_RESET, ds->color_flow, ds->line);
|
|
|
|
} else r_cons_printf (ds->line);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_lines_left (RCore *core, RDisasmState *ds){
|
|
|
|
if (!ds->linesright && ds->show_lines && ds->line) {
|
|
|
|
if (ds->show_color) {
|
2014-01-16 17:04:42 +00:00
|
|
|
// XXX line is too long wtf
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf ("%s%s"Color_RESET, ds->color_flow, ds->line);
|
|
|
|
} else r_cons_printf (ds->line);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-10 22:01:19 +00:00
|
|
|
static void handle_print_cycles (RCore *core, RDisasmState *ds) {
|
2014-02-25 23:03:42 +00:00
|
|
|
if (ds->show_cycles) {
|
|
|
|
if (!ds->analop.failcycles)
|
|
|
|
r_cons_printf ("%3d ", ds->analop.cycles);
|
|
|
|
else r_cons_printf ("%3d %3d ", ds->analop.cycles, ds->analop.failcycles);
|
|
|
|
}
|
2014-02-10 22:01:19 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_stackptr (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_stackptr) {
|
|
|
|
r_cons_printf ("%3d%s", ds->stackptr,
|
|
|
|
ds->analop.type==R_ANAL_OP_TYPE_CALL?">":
|
|
|
|
ds->stackptr>ds->ostackptr?"+":ds->stackptr<ds->ostackptr?"-":" ");
|
|
|
|
ds->ostackptr = ds->stackptr;
|
|
|
|
ds->stackptr += ds->analop.stackptr;
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_offset (RCore *core, RDisasmState *ds ) {
|
|
|
|
if (ds->show_offset)
|
2014-05-04 15:21:05 +00:00
|
|
|
r_print_offset (core->print, ds->at, (ds->at==ds->dest),
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->show_offseg);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_op_size (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_size)
|
|
|
|
r_cons_printf ("%d ", ds->analop.size);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_trace (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_trace) {
|
|
|
|
RDebugTracepoint *tp = r_debug_trace_get (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-01-20 00:42:16 +00:00
|
|
|
static void handle_adistrick_comments (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->adistrick)
|
|
|
|
ds->middle = r_anal_reflines_middle (core->anal,
|
|
|
|
core->reflines, ds->at, ds->analop.size);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static int handle_print_meta_infos (RCore * core, RDisasmState *ds, ut8* buf, int len, int idx) {
|
2014-03-08 01:36:33 +00:00
|
|
|
int ret = 0;
|
|
|
|
const char *infos, *metas;
|
|
|
|
char *str, key[100];
|
|
|
|
RAnalMetaItem MI, *mi = &MI;
|
|
|
|
Sdb *s = core->anal->sdb_meta;
|
|
|
|
|
|
|
|
snprintf (key, sizeof (key)-1, "meta.0x%"PFMT64x, ds->at);
|
|
|
|
infos = sdb_const_get (s, key, 0);
|
|
|
|
if (infos)
|
|
|
|
for (;*infos; infos++) {
|
|
|
|
if (*infos==',')
|
|
|
|
continue;
|
|
|
|
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;
|
2014-05-01 03:00:54 +00:00
|
|
|
str = metas ? strchr (metas, ',') : NULL;
|
2014-03-08 01:36:33 +00:00
|
|
|
if (str) {
|
|
|
|
MI.str = (char*)sdb_decode (str+1, 0);
|
|
|
|
} else MI.str = NULL;
|
|
|
|
// sdb-get blah
|
|
|
|
// TODO: implement ranged meta find (if not at the begging of function..
|
|
|
|
#if 0
|
|
|
|
RAnalMetaItem *mi = r_meta_find (core->anal, ds->at,
|
|
|
|
R_META_TYPE_ANY, R_META_WHERE_HERE);
|
|
|
|
#endif
|
|
|
|
char *out = NULL;
|
|
|
|
int hexlen;
|
|
|
|
int delta;
|
|
|
|
ds->mi_found = 0;
|
|
|
|
if (mi) {
|
|
|
|
switch (mi->type) {
|
|
|
|
case R_META_TYPE_STRING:
|
|
|
|
out = r_str_escape (mi->str);
|
|
|
|
if (ds->show_color)
|
|
|
|
r_cons_printf (" .string "Color_YELLOW"\"%s\""
|
|
|
|
Color_RESET" ; len=%"PFMT64d"\n", out, mi->size);
|
|
|
|
else
|
|
|
|
r_cons_printf (" .string \"%s\" ; len=%"PFMT64d
|
|
|
|
"\n", out, 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?
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->line = ds->refline = ds->refline2 = NULL;
|
|
|
|
ds->mi_found = 1;
|
|
|
|
break;
|
|
|
|
case R_META_TYPE_HIDE:
|
|
|
|
r_cons_printf ("(%d bytes hidden)\n", mi->size);
|
|
|
|
ds->asmop.size = mi->size;
|
|
|
|
ds->oplen = mi->size;
|
|
|
|
ds->mi_found = 1;
|
|
|
|
break;
|
|
|
|
case R_META_TYPE_DATA:
|
|
|
|
hexlen = len - idx;
|
|
|
|
delta = ds->at-mi->from;
|
|
|
|
if (mi->size<hexlen) hexlen = mi->size;
|
|
|
|
ds->oplen = mi->size;
|
|
|
|
core->print->flags &= ~R_PRINT_FLAGS_HEADER;
|
|
|
|
r_cons_printf ("hex length=%lld delta=%d\n", mi->size , delta);
|
|
|
|
r_print_hexdump (core->print, ds->at, buf+idx, hexlen-delta, 16, 1);
|
|
|
|
core->inc = 16;
|
|
|
|
core->print->flags |= R_PRINT_FLAGS_HEADER;
|
|
|
|
ds->asmop.size = ret = (int)mi->size; //-delta;
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->line = ds->refline = ds->refline2 = NULL;
|
|
|
|
ds->mi_found = 1;
|
|
|
|
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, -1, NULL);
|
|
|
|
r_cons_printf ("} %d\n", mi->size);
|
|
|
|
ds->asmop.size = ret = (int)mi->size;
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->line = ds->refline = ds->refline2 = NULL;
|
|
|
|
ds->mi_found = 1;
|
|
|
|
break;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-05-04 15:21:05 +00:00
|
|
|
if (MI.str) {
|
|
|
|
free (MI.str);
|
|
|
|
MI.str = NULL;
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_instruction_mov_lea (RCore *core, RDisasmState *ds, int idx) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalValue *src;
|
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_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) {
|
|
|
|
if (core->anal->reg && core->anal->reg->name) {
|
|
|
|
const char *pc = core->anal->reg->name[R_REG_NAME_PC];
|
2014-01-20 00:42:16 +00:00
|
|
|
RAnalValue *dst = ds->analop.dst;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (dst && dst->reg && dst->reg->name)
|
|
|
|
if (!strcmp (src->reg->name, pc)) {
|
|
|
|
RFlagItem *item;
|
|
|
|
ut8 b[8];
|
2014-01-20 00:42:16 +00:00
|
|
|
ut64 ptr = idx+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, src->memref);
|
|
|
|
off = r_mem_get_num (b, src->memref, 1);
|
|
|
|
item = r_flag_get_i (core->flags, off);
|
|
|
|
r_cons_printf ("; MOV %s = [0x%"PFMT64x"] = 0x%"PFMT64x" %s\n",
|
|
|
|
dst->reg->name, ptr, off, item?item->name: "");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
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;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (dst && dst->reg && !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);
|
|
|
|
off = r_mem_get_num (b, memref, 1);
|
|
|
|
item = r_flag_get_i (core->flags, off);
|
|
|
|
{
|
|
|
|
char s[64];
|
|
|
|
r_str_ncpy (s, (const char *)b, sizeof (s));
|
|
|
|
r_cons_printf ("; LEA %s = [0x%"PFMT64x"] = 0x%"PFMT64x" \"%s\"\n",
|
|
|
|
dst->reg->name, ptr, off, item?item->name: s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_print_show_bytes (RCore * core, RDisasmState *ds) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_bytes) {
|
2014-02-24 09:55:15 +00:00
|
|
|
char *nstr, *str = NULL, pad[64];
|
2014-01-16 17:04:42 +00:00
|
|
|
char extra[64];
|
2014-02-24 09:55:15 +00:00
|
|
|
int j,k;
|
2014-01-16 17:04:42 +00:00
|
|
|
strcpy (extra, " ");
|
|
|
|
RFlagItem *flag = NULL;
|
|
|
|
if (!flag) {
|
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';
|
|
|
|
}
|
|
|
|
*extra = 0;
|
|
|
|
}
|
2014-02-25 00:35:23 +00:00
|
|
|
ds->p->cur_enabled = (ds->cursor != -1);
|
|
|
|
nstr = r_print_hexpair (ds->p, str, ds->index);
|
|
|
|
if (ds->p->bytespace) {
|
|
|
|
k = (ds->nb+ (ds->nb/2)) - r_str_ansi_len (nstr);
|
|
|
|
} else {
|
|
|
|
k = ds->nb - r_str_ansi_len (nstr);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (k<0) k = 0;
|
|
|
|
for (j=0; j<k; j++)
|
|
|
|
pad[j] = ' ';
|
|
|
|
pad[j] = 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->lbytes) {
|
2014-01-16 17:04:42 +00:00
|
|
|
// hack to align bytes left
|
|
|
|
strcpy (extra, pad);
|
|
|
|
*pad = 0;
|
|
|
|
}
|
2014-02-25 00:35:23 +00:00
|
|
|
free (str);
|
|
|
|
str = nstr;
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
str = strdup (flag->name);
|
2014-01-20 00:42:16 +00:00
|
|
|
k = ds->nb-strlen (str)-2;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (k<0) k = 0;
|
|
|
|
for (j=0; j<k; j++)
|
|
|
|
pad[j] = ' ';
|
|
|
|
pad[j] = '\0';
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s %s %s"Color_RESET, pad, str, extra);
|
|
|
|
else r_cons_printf ("%s %s %s", pad, str, extra);
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_opstr (RCore *core, RDisasmState *ds) {
|
|
|
|
r_cons_strcat (ds->opstr);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_color_reset (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_color)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_strcat (Color_RESET);
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static int handle_print_middle (RCore *core, RDisasmState *ds, int ret ){
|
|
|
|
if (ds->middle != 0) {
|
|
|
|
ret -= ds->middle;
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" ; *middle* %d", ret);
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static int handle_print_fcn_locals (RCore *core, RDisasmState *ds, RAnalFunction *f, RAnalFunction *cf) {
|
2014-01-16 17:04:42 +00:00
|
|
|
ut8 have_local = 0;
|
2014-03-31 01:05:48 +00:00
|
|
|
eprintf ("TODO: sdbize locals\n");
|
|
|
|
#if 0
|
2014-05-08 15:38:29 +00:00
|
|
|
RAnalFcnLocal *l;
|
|
|
|
RListIter *iter;
|
2014-01-16 17:04:42 +00:00
|
|
|
r_list_foreach (f->locals, iter, l) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->analop.jump == l->addr) {
|
2014-01-16 17:04:42 +00:00
|
|
|
if ((cf != NULL) && (f->addr == cf->addr)) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->color_label);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("; (%s)", l->name);
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_color_reset(core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("; (%s)", l->name);
|
|
|
|
}
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color) {
|
|
|
|
r_cons_strcat (ds->color_fname);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("; (%s", f->name);
|
2014-01-20 00:42:16 +00:00
|
|
|
//handle_print_color_reset(core, ds);
|
|
|
|
r_cons_strcat (ds->color_label);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (".%s)", l->name);
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_color_reset(core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("; (%s.%s)", f->name, l->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
have_local = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-03-31 01:05:48 +00:00
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
return have_local;
|
|
|
|
}
|
|
|
|
|
2014-04-02 20:30:39 +00:00
|
|
|
static void handle_print_import_name (RCore * core, RDisasmState *ds) {
|
|
|
|
RListIter *iter = NULL;
|
|
|
|
RBinReloc *rel = NULL;
|
|
|
|
switch (ds->analop.type) {
|
|
|
|
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) {
|
2014-05-21 01:18:00 +00:00
|
|
|
if ((rel->vaddr == ds->analop.jump) &&
|
2014-04-02 20:30:39 +00:00
|
|
|
(rel->import != NULL)) {
|
|
|
|
if (ds->show_color)
|
|
|
|
r_cons_strcat (ds->color_fname);
|
|
|
|
// TODO: handle somehow ordinals import
|
|
|
|
r_cons_printf (" ; (imp.%s)", rel->import->name);
|
|
|
|
handle_print_color_reset (core, ds);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_fcn_name (RCore * core, RDisasmState *ds) {
|
2014-01-16 17:04:42 +00:00
|
|
|
RAnalFunction *f, *cf;
|
|
|
|
int have_local = 0;
|
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:
|
2014-05-05 15:31:10 +00:00
|
|
|
case R_ANAL_OP_TYPE_CJMP:
|
2014-01-16 17:04:42 +00:00
|
|
|
case R_ANAL_OP_TYPE_CALL:
|
|
|
|
cf = r_anal_fcn_find (core->anal, /* current function */
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->at, R_ANAL_FCN_TYPE_NULL);
|
2014-01-16 17:04:42 +00:00
|
|
|
f = r_anal_fcn_find (core->anal,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->analop.jump, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
if (f && !strstr (ds->opstr, f->name)) {
|
2014-03-31 01:05:48 +00:00
|
|
|
#if 0
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f->locals != NULL) {
|
2014-01-20 00:42:16 +00:00
|
|
|
have_local = handle_print_fcn_locals (core, ds, f, cf);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-03-31 01:05:48 +00:00
|
|
|
#endif
|
2014-01-16 17:04:42 +00:00
|
|
|
if (!have_local) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
|
|
|
r_cons_strcat (ds->color_fname);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" ; (%s)", f->name);
|
2014-04-02 20:30:39 +00:00
|
|
|
handle_print_color_reset (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
|
|
|
static void handle_print_core_vmode (RCore *core, RDisasmState *ds) {
|
2014-02-18 15:07:21 +00:00
|
|
|
int i;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (core->vmode) {
|
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:
|
2014-02-18 15:07:21 +00:00
|
|
|
if (ds->counter<9) {
|
|
|
|
int found = 0;
|
|
|
|
for (i=0; i<ds->counter+1; i++) {
|
|
|
|
if (core->asmqjmps[i] == ds->analop.jump) {
|
|
|
|
found = 1;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!found)
|
|
|
|
i = ++ds->counter;
|
|
|
|
core->asmqjmps[i] = ds->analop.jump;
|
|
|
|
r_cons_printf (" ;[%d]", i);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else r_cons_strcat (" ;[?]");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_cc_update (RCore *core, RDisasmState *ds) {
|
2014-01-16 17:04:42 +00:00
|
|
|
// declare static since this variable is reused locally, and needs to maintain
|
|
|
|
// state
|
|
|
|
static RAnalCC cc = {0};
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!r_anal_cc_update (core->anal, &cc, &ds->analop)) {
|
|
|
|
if (ds->show_functions) {
|
|
|
|
RAnalFunction *f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
2014-01-16 17:04:42 +00:00
|
|
|
char tmp[128];
|
|
|
|
char *ccstr = r_anal_cc_to_string (core->anal, &cc);
|
|
|
|
tmp[0] = 0;
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_cc_update (core->anal, &cc, &ds->analop);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (ccstr) {
|
|
|
|
RFlagItem *flag = r_flag_get_at (core->flags, cc.jump);
|
|
|
|
if (flag && ccstr) {
|
|
|
|
int delta = 0;
|
|
|
|
if (f) { delta = cc.jump-flag->offset; }
|
|
|
|
if (!strncmp (flag->name, ccstr, strlen (flag->name))) {
|
|
|
|
if (ccstr[strlen (flag->name)] == '(') {
|
|
|
|
tmp[0] = 0;
|
|
|
|
} else {
|
|
|
|
if (delta)
|
|
|
|
snprintf (tmp, sizeof (tmp), " ; %s+%d", flag->name, delta);
|
|
|
|
else snprintf (tmp, sizeof (tmp), " ; %s", flag->name);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (delta)
|
|
|
|
snprintf (tmp, sizeof (tmp), " ; %s+%d", flag->name, delta);
|
|
|
|
else snprintf (tmp, sizeof (tmp), " ; %s", flag->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (f) {
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_set_pre (ds, core->cons->vline[LINE_VERT]);
|
|
|
|
ds->pre = r_str_concat (ds->pre, " ");
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_set_pre (ds, " ");
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_color)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("\n%s%s"Color_RESET"%s%s"Color_RESET" %s%s"Color_RESET,
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->color_fline, ds->pre, ds->color_flow, ds->refline, ccstr, tmp);
|
|
|
|
else r_cons_printf ("\n%s%s %s%s", ds->pre, ds->refline, ccstr, tmp);
|
2014-01-16 17:04:42 +00:00
|
|
|
free (ccstr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_anal_cc_reset (&cc);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_dwarf (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_dwarf) {
|
2014-03-10 01:27:32 +00:00
|
|
|
ds->sl = r_bin_addr2text (core->bin, ds->at);
|
2014-01-20 00:42:16 +00:00
|
|
|
int len = strlen (ds->opstr);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (len<30) len = 30-len;
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->sl) {
|
|
|
|
if ((!ds->osl || (ds->osl && strcmp (ds->sl, ds->osl)))) {
|
|
|
|
handle_set_pre (ds, " ");
|
|
|
|
if (ds->show_color)
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s ; %s"Color_RESET"%s",
|
2014-04-21 15:19:15 +00:00
|
|
|
ds->pal_comment, ds->sl, ds->pre);
|
2014-05-06 13:15:09 +00:00
|
|
|
else r_cons_printf (" ; %s%s", ds->sl, ds->pre);
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->osl);
|
|
|
|
ds->osl = ds->sl;
|
|
|
|
ds->sl = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_asmop_payload (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->asmop.payload != 0)
|
|
|
|
r_cons_printf ("\n; .. payload of %d bytes", ds->asmop.payload);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_op_push_info (RCore *core, RDisasmState *ds){
|
|
|
|
switch (ds->analop.type) {
|
2014-01-16 17:04:42 +00:00
|
|
|
case R_ANAL_OP_TYPE_PUSH:
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->analop.val) {
|
|
|
|
RFlagItem *flag = r_flag_get_i (core->flags, ds->analop.val);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (flag) r_cons_printf (" ; %s", flag->name);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static int handle_read_refptr (RCore *core, RDisasmState *ds, ut64 *word8, ut32 *word4) {
|
2014-01-16 17:04:42 +00:00
|
|
|
ut64 ret = 0;
|
|
|
|
if (core->assembler->bits==64) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ret = r_io_read_at (core->io, ds->analop.ptr, (void *)word8,
|
2014-01-16 17:04:42 +00:00
|
|
|
sizeof (ut64)) == sizeof (ut64);
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
ret = r_io_read_at (core->io, ds->analop.ptr,
|
2014-01-16 17:04:42 +00:00
|
|
|
(void *)word4, sizeof (ut32)) == sizeof (ut32);
|
|
|
|
*word8 = *word4;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-24 09:55:15 +00:00
|
|
|
static void handle_print_ptr (RCore *core, RDisasmState *ds, int len, int idx) {
|
2014-05-07 00:51:04 +00:00
|
|
|
handle_print_as_string (core, ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->analop.ptr != UT64_MAX && ds->analop.ptr) {
|
2014-01-16 17:04:42 +00:00
|
|
|
char msg[32];
|
|
|
|
int bsz = len - idx;
|
2014-02-24 09:55:15 +00:00
|
|
|
const char *kind = r_anal_data_kind (core->anal,
|
|
|
|
ds->analop.ptr, ds->buf, bsz);
|
2014-01-16 17:04:42 +00:00
|
|
|
*msg = 0;
|
|
|
|
if (kind && !strcmp (kind, "text")) {
|
|
|
|
*msg = '"';
|
2014-02-24 23:38:18 +00:00
|
|
|
snprintf (msg+1, sizeof (msg)-2, "%d", idx); //ds->buf+idx);
|
2014-01-16 17:04:42 +00:00
|
|
|
strcat (msg, "\"");
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf (" ; %s 0x%08"PFMT64x" ", msg, ds->analop.ptr);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_comments_right (RCore *core, RDisasmState *ds) {
|
|
|
|
if (ds->show_comments && ds->show_comment_right && ds->comment) {
|
2014-01-16 17:04:42 +00:00
|
|
|
int c = r_cons_get_column ();
|
2014-01-20 00:42:16 +00:00
|
|
|
if (c<ds->ocols)
|
|
|
|
r_cons_memset (' ', ds->ocols-c);
|
|
|
|
r_cons_strcat (ds->color_comment);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_strcat (" ; ");
|
2014-01-20 00:42:16 +00:00
|
|
|
//r_cons_strcat_justify (comment, strlen (ds->refline) + 5, ';');
|
|
|
|
r_cons_strcat (ds->comment);
|
|
|
|
handle_print_color_reset(core, ds);
|
|
|
|
free (ds->comment);
|
|
|
|
ds->comment = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-18 23:11:53 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_refptr_meta_infos (RCore *core, RDisasmState *ds, ut64 word8 ) {
|
2014-02-24 09:55:15 +00:00
|
|
|
RAnalMetaItem *mi2 = r_meta_find (core->anal, word8,
|
|
|
|
R_META_TYPE_ANY, R_META_WHERE_HERE);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (mi2) {
|
|
|
|
switch (mi2->type) {
|
|
|
|
case R_META_TYPE_STRING:
|
2014-02-23 00:56:26 +00:00
|
|
|
{ char *str = r_str_escape (mi2->str);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" (at=0x%08"PFMT64x") (len=%"PFMT64d
|
|
|
|
") \"%s\" ", word8, mi2->size, str);
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
r_cons_printf (" (data)");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("unknown type '%c'\n", mi2->type);
|
|
|
|
break;
|
2014-05-04 15:21:05 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-23 02:47:20 +00:00
|
|
|
mi2 = r_meta_find (core->anal, (ut64)ds->analop.ptr,
|
2014-01-16 17:04:42 +00:00
|
|
|
R_META_TYPE_ANY, R_META_WHERE_HERE);
|
|
|
|
if (mi2) {
|
2014-02-23 00:56:26 +00:00
|
|
|
char *str = r_str_escape (mi2->str);
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf (" \"%s\" @ 0x%08"PFMT64x":%"PFMT64d,
|
2014-01-20 00:42:16 +00:00
|
|
|
str, ds->analop.ptr, mi2->size);
|
2014-01-16 17:04:42 +00:00
|
|
|
free (str);
|
|
|
|
} else r_cons_printf (" ; 0x%08x [0x%"PFMT64x"]",
|
2014-01-20 00:42:16 +00:00
|
|
|
word8, ds->analop.ptr);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
2014-05-07 00:51:04 +00:00
|
|
|
static void handle_print_as_string(RCore *core, RDisasmState *ds) {
|
|
|
|
char *str = r_num_as_string (NULL, ds->analop.ptr);
|
|
|
|
if (str) {
|
|
|
|
r_cons_printf (" ; \"%s\"", str);
|
|
|
|
}
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
static void handle_print_refptr (RCore *core, RDisasmState *ds) {
|
2014-01-16 17:04:42 +00:00
|
|
|
ut64 word8 = 0;
|
|
|
|
ut32 word4 = 0;
|
|
|
|
int ret;
|
2014-01-20 00:42:16 +00:00
|
|
|
ret = handle_read_refptr (core, ds, &word8, &word4);
|
2014-01-16 17:04:42 +00:00
|
|
|
if (ret) {
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_refptr_meta_infos (core, ds, word8);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
st64 sref = ds->analop.ptr;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (sref>0)
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf (" ; 0x%08"PFMT64x"\n", ds->analop.ptr);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
|
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 ret, idx = 0, i;
|
|
|
|
int continueoninvbreak = (len == l) && invbreak;
|
|
|
|
RAnalFunction *f = NULL;
|
|
|
|
ut8 *nbuf = NULL;
|
2014-01-20 00:42:16 +00:00
|
|
|
RDisasmState *ds;
|
2014-01-16 17:04:42 +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
|
|
|
|
|
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-02-24 09:55:15 +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-20 00:42:16 +00:00
|
|
|
// TODO: All those ds must be print flags
|
|
|
|
ds = handle_init_ds (core);
|
|
|
|
ds->cbytes = cbytes;
|
|
|
|
ds->p = p;
|
|
|
|
ds->l = l;
|
|
|
|
ds->buf = buf;
|
|
|
|
ds->len = len;
|
|
|
|
ds->addr = addr;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_reflines_init (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
core->inc = 0;
|
|
|
|
/* reset jmp table if not a bad block */
|
2014-02-18 15:07:21 +00:00
|
|
|
ds->counter = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (buf[0] != 0xff) // hack
|
|
|
|
for (i=0; i<10; i++)
|
|
|
|
core->asmqjmps[i] = UT64_MAX;
|
|
|
|
toro:
|
|
|
|
// uhm... is this necesary? imho can be removed
|
2014-01-20 00:42:16 +00:00
|
|
|
r_asm_set_pc (core->assembler, ds->addr+idx);
|
2014-01-16 17:04:42 +00:00
|
|
|
#if 0
|
2014-01-20 00:42:16 +00:00
|
|
|
/* find last function else ds->stackptr=0 */
|
2014-01-16 17:04:42 +00:00
|
|
|
{
|
|
|
|
RAnalFunction *fcni;
|
|
|
|
RListIter *iter;
|
|
|
|
|
|
|
|
r_list_foreach (core->anal.fcns, iter, fcni) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->addr >= fcni->addr && ds->addr<(fcni->addr+fcni->size)) {
|
2014-01-16 17:04:42 +00:00
|
|
|
stack_ptr = fcni->stack;
|
|
|
|
r_cons_printf ("/* function: %s (%d) */\n", fcni->name, fcni->size, stack_ptr);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
core->cons->vline = r_config_get_i (core->config, "scr.utf8")?
|
|
|
|
r_vline_u: r_vline_a;
|
|
|
|
|
|
|
|
if (core->print->cur_enabled) {
|
|
|
|
// TODO: support in-the-middle-of-instruction too
|
2014-01-20 00:42:16 +00:00
|
|
|
if (r_anal_op (core->anal, &ds->analop, core->offset+core->print->cur,
|
2014-01-16 17:04:42 +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
|
|
|
#if 0
|
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_CALL:
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->dest = ds->analop.jump;
|
2014-01-16 17:04:42 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* highlight eip */
|
|
|
|
RFlagItem *item;
|
|
|
|
const char *pc = core->anal->reg->name[R_REG_NAME_PC];
|
|
|
|
item = r_flag_get (core->flags, pc);
|
|
|
|
if (item)
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->dest = item->offset;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
r_cons_break (NULL, NULL);
|
2014-02-24 09:55:15 +00:00
|
|
|
for (i=idx=ret=0; idx < len && ds->lines < ds->l;
|
|
|
|
idx+=ds->oplen,i++, ds->index+=ds->oplen,ds->lines++) {
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->at = ds->addr + idx;
|
2014-01-16 17:04:42 +00:00
|
|
|
if (r_cons_singleton ()->breaked)
|
|
|
|
break;
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
r_core_seek_archbits (core, ds->at); // slow but safe
|
|
|
|
ds->hint = r_core_hint_begin (core, ds->hint, ds->at);
|
|
|
|
//if (!ds->cbytes && idx>=l) { break; }
|
|
|
|
r_asm_set_pc (core->assembler, ds->at);
|
|
|
|
handle_update_ref_lines (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
/* show type links */
|
2014-01-20 00:42:16 +00:00
|
|
|
r_core_cmdf (core, "tf 0x%08"PFMT64x, ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
if (!ds->hint || !ds->hint->bits) {
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f) {
|
|
|
|
if (f->bits) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->oldbits)
|
|
|
|
ds->oldbits = r_config_get_i (core->config, "asm.bits");
|
|
|
|
if (ds->oldbits != f->bits) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_config_set_i (core->config, "asm.bits", f->bits);
|
|
|
|
}
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_show_xrefs (core, ds);
|
|
|
|
handle_show_comments_right (core, ds);
|
|
|
|
ret = perform_disassembly (core, ds, buf+idx, len-idx);
|
|
|
|
if (ds->retry) {
|
|
|
|
ds->retry = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
goto retry;
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_atabs_option (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
// TODO: store previous oplen in core->dec
|
|
|
|
if (core->inc == 0)
|
2014-01-20 00:42:16 +00:00
|
|
|
core->inc = ds->oplen;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->lastfail)
|
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, buf+idx, (int)(len-idx));
|
2014-01-16 17:04:42 +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) {
|
|
|
|
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
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_instruction_mov_lea (core, ds, idx);
|
|
|
|
handle_control_flow_comments (core, ds);
|
|
|
|
handle_adistrick_comments (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
/* XXX: This is really cpu consuming.. need to be fixed */
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_show_functions (core, ds);
|
|
|
|
handle_show_flags_option (core, ds);
|
|
|
|
handle_print_lines_left (core, ds);
|
|
|
|
handle_print_offset (core, ds);
|
|
|
|
handle_print_op_size (core, ds);
|
|
|
|
handle_print_trace (core, ds);
|
2014-02-10 22:01:19 +00:00
|
|
|
handle_print_cycles (core, ds);
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_stackptr (core, ds);
|
2014-04-09 02:53:34 +00:00
|
|
|
ret = handle_print_meta_infos (core, ds, buf, len, idx);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->mi_found) {
|
|
|
|
ds->mi_found = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
/* show cursor */
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_show_cursor (core, ds);
|
|
|
|
handle_print_show_bytes (core, ds);
|
|
|
|
handle_print_lines_right (core, ds);
|
|
|
|
handle_build_op_str (core, ds);
|
|
|
|
handle_print_opstr (core, ds);
|
|
|
|
handle_print_fcn_name (core, ds);
|
|
|
|
handle_print_color_reset (core, ds);
|
|
|
|
handle_print_dwarf (core, ds);
|
2014-04-09 02:53:34 +00:00
|
|
|
ret = handle_print_middle (core, ds, ret);
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_asmop_payload (core, ds);
|
2014-01-16 17:04:42 +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);
|
|
|
|
r_asm_disassemble (core->assembler, &ao, buf+idx, len-idx+5);
|
|
|
|
r_asm_set_syntax (core->assembler, os);
|
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_core_vmode (core, ds);
|
|
|
|
handle_print_cc_update (core, ds);
|
|
|
|
handle_print_op_push_info (core, ds);
|
|
|
|
if (ds->analop.refptr) {
|
|
|
|
handle_print_refptr (core, ds);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_ptr (core, ds, len, idx);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_print_comments_right (core, ds);
|
2014-05-04 15:21:05 +00:00
|
|
|
if ( !(ds->show_comments &&
|
|
|
|
ds->show_comment_right &&
|
|
|
|
ds->comment))
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_newline ();
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->line) {
|
2014-01-16 17:04:42 +00:00
|
|
|
#if 0
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->show_lines && ds->analop.type == R_ANAL_OP_TYPE_RET) {
|
|
|
|
if (strchr (ds->line, '>'))
|
|
|
|
memset (ds->line, ' ', r_str_len_utf8 (ds->line));
|
|
|
|
if (ds->show_color) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("%s %s%s"Color_RESET"; --\n",
|
2014-01-20 00:42:16 +00:00
|
|
|
core->cons->vline[LINE_VERT], ds->color_flow, ds->line);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf (" %s; --\n", ds->line);
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
#endif
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->line = ds->refline = ds->refline2 = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
if (nbuf == buf) {
|
|
|
|
free (buf);
|
|
|
|
buf = NULL;
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_break_end ();
|
|
|
|
|
|
|
|
#if HASRETRY
|
2014-01-20 00:42:16 +00:00
|
|
|
//if (!ds->cbytes && idx>=len) {// && (invbreak && !ds->lastfail)) {
|
|
|
|
if (!ds->cbytes && ds->lines<ds->l) {
|
2014-01-16 17:04:42 +00:00
|
|
|
retry:
|
|
|
|
if (len<4) len = 4;
|
|
|
|
buf = nbuf = malloc (len);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->tries>0) {
|
|
|
|
ds->addr += idx;
|
|
|
|
if (r_core_read_at (core, ds->addr, buf, len) ) {
|
2014-01-16 17:04:42 +00:00
|
|
|
idx = 0;
|
|
|
|
goto toro;
|
|
|
|
}
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->lines<ds->l) {
|
|
|
|
ds->addr += idx;
|
|
|
|
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
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (continueoninvbreak)
|
|
|
|
goto toro;
|
2013-01-24 02:48:24 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
#endif
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2013-08-11 13:38:42 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
handle_deinit_ds (core, ds);
|
|
|
|
return idx; //-ds->lastfail;
|
2013-08-11 13:38:42 +00:00
|
|
|
}
|
|
|
|
|
2014-01-16 17:04:42 +00:00
|
|
|
R_API int r_core_print_disasm_instructions (RCore *core, int len, int l) {
|
2014-01-22 22:58:23 +00:00
|
|
|
RDisasmState *ds = NULL;
|
2014-01-16 17:04:42 +00:00
|
|
|
const ut8 *buf = core->block;
|
|
|
|
int bs = core->blocksize;
|
|
|
|
int i, j, ret, err = 0;
|
|
|
|
RAnalFunction *f;
|
2014-01-20 00:42:16 +00:00
|
|
|
char *tmpopstr;
|
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
|
2014-02-20 02:08:12 +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);
|
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
ds = handle_init_ds (core);
|
|
|
|
ds->len = len;
|
|
|
|
ds->l = l;
|
2011-06-04 01:14:04 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->len>core->blocksize)
|
|
|
|
r_core_block_size (core, ds->len);
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->l==0) ds->l = ds->len;
|
2014-01-16 17:04:42 +00:00
|
|
|
|
2014-01-20 00:42:16 +00:00
|
|
|
for (i=j=0; i<bs && i<ds->len && j<ds->l; i+=ret, j++) {
|
|
|
|
ds->at = core->offset +i;
|
|
|
|
r_core_seek_archbits (core, ds->at);
|
|
|
|
if (ds->hint) {
|
|
|
|
r_anal_hint_free (ds->hint);
|
|
|
|
ds->hint = NULL;
|
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);
|
|
|
|
r_asm_set_pc (core->assembler, ds->at);
|
2014-01-16 17:04:42 +00:00
|
|
|
// XXX copypasta from main disassembler function
|
2014-01-20 00:42:16 +00:00
|
|
|
f = r_anal_fcn_find (core->anal, ds->at, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
if (!ds->hint || !ds->hint->bits) {
|
2014-01-16 17:04:42 +00:00
|
|
|
if (f) {
|
|
|
|
if (f->bits) {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (!ds->oldbits)
|
|
|
|
ds->oldbits = r_config_get_i (core->config, "asm.bits");
|
|
|
|
if (ds->oldbits != f->bits) {
|
2014-01-16 17:04:42 +00:00
|
|
|
r_config_set_i (core->config, "asm.bits", f->bits);
|
|
|
|
}
|
2013-09-30 10:56:00 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits != 0) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
2013-09-30 10:56:00 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2013-07-03 15:43:20 +00:00
|
|
|
}
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
}
|
|
|
|
ret = r_asm_disassemble (core->assembler,
|
2014-01-20 00:42:16 +00:00
|
|
|
&ds->asmop, buf+i, core->blocksize-i);
|
2014-01-16 17:04:42 +00:00
|
|
|
//r_cons_printf ("0x%08"PFMT64x" ", core->offset+i);
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->hint && ds->hint->size)
|
|
|
|
ret = ds->hint->size;
|
|
|
|
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) {
|
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, buf+i, core->blocksize-i);
|
|
|
|
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
|
|
|
}
|
|
|
|
} else
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->decode) {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (ds->opstr);
|
2014-01-20 00:42:16 +00:00
|
|
|
r_anal_op (core->anal, &ds->analop, ds->at, buf+i, core->blocksize-i);
|
|
|
|
tmpopstr = r_anal_op_to_string (core->anal, &ds->analop);
|
|
|
|
ds->opstr = (tmpopstr)? tmpopstr: strdup (ds->asmop.buf_asm);
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-05-09 15:40:28 +00:00
|
|
|
free (ds->opstr);
|
2014-01-20 00:42:16 +00:00
|
|
|
ds->opstr = strdup (ds->asmop.buf_asm);
|
2013-07-04 01:34:28 +00:00
|
|
|
}
|
2013-07-03 15:43:20 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
if (ret<1) {
|
|
|
|
err = 1;
|
|
|
|
ret = 1;
|
2014-05-09 08:47:11 +00:00
|
|
|
r_cons_printf ("invalid\n");//???\n");
|
2014-01-16 17:04:42 +00:00
|
|
|
} else {
|
2014-01-20 00:42:16 +00:00
|
|
|
r_cons_printf ("%s\n", ds->opstr);
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = NULL;
|
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
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
if (ds->oldbits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2013-05-24 00:53:15 +00:00
|
|
|
}
|
2014-01-20 00:42:16 +00:00
|
|
|
handle_deinit_ds (core, ds);
|
2013-01-24 02:48:24 +00:00
|
|
|
return 0;
|
2013-01-22 17:08:33 +00:00
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
|
|
|
|
R_API int r_core_print_disasm_json(RCore *core, ut64 addr, ut8 *buf, int len) {
|
|
|
|
RAsmOp asmop;
|
|
|
|
RAnalOp analop;
|
|
|
|
int i, oplen, ret;
|
|
|
|
r_cons_printf ("[");
|
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
|
|
|
|
if (core->anal && core->anal->cur && core->anal->cur->reset_counter ) {
|
|
|
|
core->anal->cur->reset_counter (core->anal, addr);
|
|
|
|
}
|
2014-01-16 17:04:42 +00:00
|
|
|
// TODO: add support for anal hints
|
|
|
|
for (i=0; i<len;) {
|
|
|
|
ut64 at = addr +i;
|
|
|
|
r_asm_set_pc (core->assembler, at);
|
|
|
|
ret = r_asm_disassemble (core->assembler, &asmop, buf+i, len-i+5);
|
|
|
|
if (ret<1) {
|
2014-01-24 01:37:14 +00:00
|
|
|
r_cons_printf (i>0? ",{": "{");
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("\"offset\":%"PFMT64d, at);
|
|
|
|
r_cons_printf (",\"size\":1,\"type\":\"invalid\"}");
|
|
|
|
i++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
r_anal_op (core->anal, &analop, at, buf+i, len-i+5);
|
|
|
|
|
|
|
|
oplen = r_asm_op_get_size (&asmop);
|
2014-01-24 01:37:14 +00:00
|
|
|
r_cons_printf (i>0? ",{": "{");
|
2014-01-16 17:04:42 +00:00
|
|
|
r_cons_printf ("\"offset\":%"PFMT64d, at);
|
|
|
|
r_cons_printf (",\"size\":%d", oplen);
|
|
|
|
r_cons_printf (",\"opcode\":\"%s\"", asmop.buf_asm);
|
|
|
|
r_cons_printf (",\"bytes\":\"%s\"", asmop.buf_hex);
|
|
|
|
//r_cons_printf (",\"family\":\"%s\"", asmop.family);
|
|
|
|
r_cons_printf (",\"type\":\"%s\"", r_anal_optype_to_string (analop.type));
|
|
|
|
if (analop.jump != UT64_MAX) {
|
|
|
|
r_cons_printf (",\"next\":%"PFMT64d, analop.jump);
|
|
|
|
if (analop.fail != UT64_MAX)
|
|
|
|
r_cons_printf (",\"fail\":%"PFMT64d, analop.fail);
|
|
|
|
}
|
|
|
|
r_cons_printf ("}");
|
|
|
|
i += oplen;
|
|
|
|
}
|
|
|
|
r_cons_printf ("]");
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
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) {
|
|
|
|
/* other */
|
|
|
|
//void *old_user = core->anal->user;
|
2014-01-27 00:12:16 +00:00
|
|
|
RAnalFunction *fcn = r_anal_fcn_find (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
|
2014-01-23 04:55:48 +00:00
|
|
|
ut32 cur_buf_sz = fcn->size+1;
|
|
|
|
ut8 *buf = malloc (cur_buf_sz);
|
|
|
|
ut32 len = fcn->size;
|
|
|
|
int ret, idx = 0, i;
|
|
|
|
RListIter *bb_iter;
|
|
|
|
RAnalBlock *bb = NULL;
|
|
|
|
RDisasmState *ds;
|
|
|
|
RList *bb_list = r_list_new();
|
|
|
|
//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
|
|
|
|
ds = handle_init_ds (core);
|
|
|
|
ds->cbytes = cbytes;
|
|
|
|
ds->p = p;
|
|
|
|
ds->l = l;
|
|
|
|
ds->buf = buf;
|
|
|
|
ds->len = fcn->size;
|
|
|
|
ds->addr = fcn->addr;
|
|
|
|
|
|
|
|
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) {
|
|
|
|
if (idx >= cur_buf_sz) break;
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_reflines_fcn_init (core, ds, fcn, buf);
|
|
|
|
core->inc = 0;
|
|
|
|
|
|
|
|
core->cons->vline = r_config_get_i (core->config, "scr.utf8")?
|
|
|
|
r_vline_u: r_vline_a;
|
|
|
|
|
|
|
|
r_cons_break (NULL, NULL);
|
|
|
|
i = 0;
|
|
|
|
idx = 0;
|
|
|
|
|
|
|
|
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;
|
|
|
|
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;
|
|
|
|
if (r_cons_singleton ()->breaked) break;
|
|
|
|
|
|
|
|
handle_update_ref_lines (core, ds);
|
|
|
|
/* show type links */
|
|
|
|
r_core_cmdf (core, "tf 0x%08"PFMT64x, ds->at);
|
|
|
|
|
|
|
|
handle_show_xrefs (core, ds);
|
|
|
|
handle_show_comments_right (core, ds);
|
|
|
|
ret = perform_disassembly (core, ds, buf+idx, len - bb_size_consumed);
|
|
|
|
handle_atabs_option (core, ds);
|
|
|
|
// TODO: store previous oplen in core->dec
|
|
|
|
if (core->inc == 0) core->inc = ds->oplen;
|
|
|
|
|
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
|
|
|
|
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);
|
2014-01-23 04:55:48 +00:00
|
|
|
|
|
|
|
if (ret<1) {
|
|
|
|
r_strbuf_init (&ds->analop.esil);
|
|
|
|
ds->analop.type = R_ANAL_OP_TYPE_ILL;
|
|
|
|
}
|
|
|
|
|
|
|
|
handle_instruction_mov_lea (core, ds, idx);
|
|
|
|
handle_control_flow_comments (core, ds);
|
|
|
|
handle_adistrick_comments (core, ds);
|
|
|
|
/* XXX: This is really cpu consuming.. need to be fixed */
|
|
|
|
handle_show_functions (core, ds);
|
|
|
|
handle_show_flags_option (core, ds);
|
|
|
|
handle_print_lines_left (core, ds);
|
|
|
|
handle_print_offset (core, ds);
|
|
|
|
handle_print_op_size (core, ds);
|
|
|
|
handle_print_trace (core, ds);
|
2014-02-25 23:03:42 +00:00
|
|
|
handle_print_cycles (core, ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
handle_print_stackptr (core, ds);
|
2014-02-20 02:08:12 +00:00
|
|
|
ret = handle_print_meta_infos (core, ds, buf, len, idx);
|
2014-01-23 04:55:48 +00:00
|
|
|
if (ds->mi_found) {
|
|
|
|
ds->mi_found = 0;
|
2014-01-26 00:06:17 +00:00
|
|
|
//continue;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
|
|
|
/* show cursor */
|
|
|
|
handle_print_show_cursor (core, ds);
|
|
|
|
handle_print_show_bytes (core, ds);
|
|
|
|
handle_print_lines_right (core, ds);
|
|
|
|
handle_build_op_str (core, ds);
|
|
|
|
handle_print_opstr (core, ds);
|
|
|
|
handle_print_fcn_name (core, ds);
|
2014-04-02 20:30:39 +00:00
|
|
|
handle_print_import_name (core, ds);
|
2014-02-20 02:08:12 +00:00
|
|
|
handle_print_color_reset (core, ds);
|
2014-01-23 04:55:48 +00:00
|
|
|
handle_print_dwarf (core, ds);
|
|
|
|
ret = handle_print_middle (core, ds, ret );
|
|
|
|
handle_print_asmop_payload (core, ds);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
handle_print_core_vmode (core, ds);
|
|
|
|
handle_print_cc_update (core, ds);
|
|
|
|
handle_print_op_push_info (core, ds);
|
|
|
|
/*if (ds->analop.refptr) {
|
|
|
|
handle_print_refptr (core, ds);
|
|
|
|
} else {
|
|
|
|
handle_print_ptr (core, ds, len, idx);
|
|
|
|
}*/
|
|
|
|
handle_print_comments_right (core, ds);
|
|
|
|
if ( !(ds->show_comments &&
|
|
|
|
ds->show_comment_right &&
|
|
|
|
ds->show_comment_right &&
|
|
|
|
ds->comment))
|
|
|
|
r_cons_newline ();
|
|
|
|
|
|
|
|
if (ds->line) {
|
|
|
|
free (ds->line);
|
|
|
|
free (ds->refline);
|
|
|
|
free (ds->refline2);
|
|
|
|
ds->line = ds->refline = ds->refline2 = NULL;
|
|
|
|
}
|
|
|
|
bb_size_consumed += ds->oplen;
|
|
|
|
ds->index += ds->oplen;
|
|
|
|
idx += ds->oplen;
|
|
|
|
ds->at += ds->oplen;
|
|
|
|
ds->addr += ds->oplen;
|
|
|
|
ds->lines++;
|
|
|
|
|
|
|
|
free (ds->opstr);
|
|
|
|
ds->opstr = NULL;
|
|
|
|
} while (bb_size_consumed < len);
|
|
|
|
i++;
|
|
|
|
}
|
|
|
|
free (buf);
|
|
|
|
r_cons_break_end ();
|
|
|
|
|
|
|
|
|
|
|
|
if (ds->oldbits) {
|
2014-02-20 02:08:12 +00:00
|
|
|
r_config_set_i (core->config, "asm.bits", ds->oldbits);
|
|
|
|
ds->oldbits = 0;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|
|
|
|
r_anal_op_fini (&ds->analop);
|
|
|
|
handle_deinit_ds (core, ds);
|
|
|
|
r_list_free (bb_list);
|
2014-01-27 00:12:16 +00:00
|
|
|
return idx;
|
2014-01-23 04:55:48 +00:00
|
|
|
}
|