2015-01-31 03:13:59 +00:00
|
|
|
/* radare - LGPL - Copyright 2009-2015 - pancake */
|
2012-02-27 01:40:27 +00:00
|
|
|
|
2015-01-27 04:47:27 +00:00
|
|
|
#include "r_util.h"
|
|
|
|
|
2014-04-21 11:50:38 +00:00
|
|
|
static void find_refs(RCore *core, const char *glob) {
|
|
|
|
char cmd[128];
|
|
|
|
ut64 curseek = core->offset;
|
|
|
|
while (*glob==' ') glob++;
|
2015-02-19 11:57:58 +00:00
|
|
|
if (!*glob)
|
2014-04-21 11:50:38 +00:00
|
|
|
glob = "str.";
|
|
|
|
if (*glob == '?') {
|
|
|
|
eprintf ("Usage: arf [flag-str-filter]\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
eprintf ("Finding references of flags matching '%s'...\n", glob);
|
|
|
|
snprintf (cmd, sizeof (cmd)-1, ".(findstref) @@= `f~%s[0]`", glob);
|
|
|
|
r_core_cmd0 (core, "(findstref,f here=$$,s entry0,/r here,f-here)");
|
|
|
|
r_core_cmd0 (core, cmd);
|
|
|
|
r_core_cmd0 (core, "(-findstref)");
|
|
|
|
r_core_seek (core, curseek, 1);
|
|
|
|
}
|
|
|
|
|
2014-09-02 00:48:41 +00:00
|
|
|
static void var_help(RCore *core, char ch) {
|
2015-03-18 00:56:55 +00:00
|
|
|
const char* help_msg[] = {
|
2014-09-02 00:48:41 +00:00
|
|
|
"Usage:", "af[aAv]", " [idx] [type] [name]",
|
2014-09-22 02:22:47 +00:00
|
|
|
"afa", "", "list function arguments",
|
2015-05-31 21:46:32 +00:00
|
|
|
"afa*", "", "list function arguments in commands",
|
2014-09-22 02:22:47 +00:00
|
|
|
"afa", " [idx] [name] ([type])", "define argument N with name and type",
|
2014-12-13 17:06:01 +00:00
|
|
|
"afan", " [old_name] [new_name]", "rename function argument",
|
|
|
|
"afaj", "", "return list of function arguments in JSON format",
|
2014-09-22 11:45:36 +00:00
|
|
|
"afa-", " [idx]", "delete argument at the given index",
|
2014-09-22 02:22:47 +00:00
|
|
|
"afag", " [idx] [addr]", "define var get reference",
|
|
|
|
"afas", " [idx] [addr]", "define var set reference",
|
|
|
|
"afv", "", "list function local variables",
|
|
|
|
"afv", " [idx] [name] ([type])", "define variable N with name and type",
|
2014-12-13 17:06:01 +00:00
|
|
|
"afvn", " [old_name] [new_name]", "rename local variable",
|
|
|
|
"afvj", "", "return list of function local variables in JSON format",
|
2014-09-22 11:45:36 +00:00
|
|
|
"afv-", " [idx]", "delete variable at the given index",
|
2014-09-22 02:22:47 +00:00
|
|
|
"afvg", " [idx] [addr]", "define var get reference",
|
|
|
|
"afvs", " [idx] [addr]", "define var set reference",
|
2014-09-02 00:48:41 +00:00
|
|
|
NULL};
|
2015-03-18 00:56:55 +00:00
|
|
|
if (ch=='a' || ch=='A' || ch=='v') {
|
|
|
|
r_core_cmd_help (core, help_msg);
|
2014-05-13 15:32:01 +00:00
|
|
|
} else {
|
|
|
|
eprintf ("See afv? and afa?\n");
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int var_cmd(RCore *core, const char *str) {
|
2014-09-26 13:40:17 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, -1);
|
2014-09-22 15:23:17 +00:00
|
|
|
char *p, *ostr;
|
2014-09-26 12:24:33 +00:00
|
|
|
int delta, type = *str;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
|
|
|
ostr = p = strdup (str);
|
|
|
|
str = (const char *)ostr;
|
|
|
|
|
2014-09-22 02:22:47 +00:00
|
|
|
switch (type) {
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'V': // show vars in human readable format
|
2015-05-31 21:46:32 +00:00
|
|
|
r_anal_var_list_show (core->anal, fcn, 'v', 0);
|
|
|
|
r_anal_var_list_show (core->anal, fcn, 'a', 0);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case '?':
|
2014-09-02 00:48:41 +00:00
|
|
|
var_help (core, 0);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 'v': // frame variable
|
|
|
|
case 'a': // stack arg
|
|
|
|
case 'A': // fastcall arg
|
|
|
|
// XXX nested dup
|
|
|
|
/* Variable access CFvs = set fun var */
|
|
|
|
switch (str[1]) {
|
2014-04-28 23:31:46 +00:00
|
|
|
case '\0':
|
2015-05-31 21:46:32 +00:00
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
r_anal_var_list_show (core->anal, fcn, type, str[1]);
|
2014-04-28 23:31:46 +00:00
|
|
|
goto end;
|
|
|
|
case '?':
|
2014-09-02 00:48:41 +00:00
|
|
|
var_help (core, *str);
|
2014-04-28 23:31:46 +00:00
|
|
|
goto end;
|
|
|
|
case '.':
|
2015-05-31 21:46:32 +00:00
|
|
|
r_anal_var_list_show (core->anal, fcn, core->offset, 0);
|
2014-04-28 23:31:46 +00:00
|
|
|
goto end;
|
2014-09-22 11:45:36 +00:00
|
|
|
case '-':
|
2015-04-16 15:57:36 +00:00
|
|
|
if (fcn) {
|
|
|
|
r_anal_var_delete (core->anal, fcn->addr,
|
|
|
|
type, 1, (int)
|
|
|
|
r_num_math (core->num, str+1));
|
|
|
|
} else {
|
|
|
|
eprintf ("Cnnot find function here\n");
|
|
|
|
}
|
2014-09-22 11:45:36 +00:00
|
|
|
goto end;
|
2014-12-13 17:06:01 +00:00
|
|
|
case 'n':
|
|
|
|
str++;
|
|
|
|
for (str++;*str==' ';) str++;
|
|
|
|
char *new_name = strchr (str, ' ');
|
|
|
|
if (!new_name) {
|
|
|
|
var_help (core, type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*new_name++ = 0;
|
|
|
|
char *old_name = strdup (str);
|
|
|
|
r_str_split(old_name, ' ');
|
2015-03-23 23:16:00 +00:00
|
|
|
r_anal_var_rename (core->anal, fcn->addr,
|
|
|
|
R_ANAL_VAR_SCOPE_LOCAL, (char)type,
|
|
|
|
old_name, new_name);
|
2015-01-14 01:53:34 +00:00
|
|
|
free (old_name);
|
2014-12-13 17:06:01 +00:00
|
|
|
goto end;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 's':
|
|
|
|
case 'g':
|
|
|
|
if (str[2]!='\0') {
|
|
|
|
if (fcn != NULL) {
|
2014-04-04 01:42:22 +00:00
|
|
|
int rw = 0; // 0 = read, 1 = write
|
|
|
|
RAnalVar *var = r_anal_var_get (core->anal, fcn->addr,
|
2015-02-05 12:07:25 +00:00
|
|
|
(char)type, atoi (str+2), R_ANAL_VAR_SCOPE_LOCAL);
|
2014-04-04 01:42:22 +00:00
|
|
|
if (var != NULL) {
|
|
|
|
int scope = (str[1]=='g')?0: 1;
|
2015-02-05 12:07:25 +00:00
|
|
|
r_anal_var_access (core->anal, fcn->addr, (char)type,
|
2014-04-04 01:42:22 +00:00
|
|
|
scope, atoi (str+2), rw, core->offset);
|
|
|
|
r_anal_var_free (var);
|
2014-04-28 23:31:46 +00:00
|
|
|
goto end;
|
2014-04-04 01:42:22 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
eprintf ("Can not find variable in: '%s'\n", str);
|
|
|
|
} else eprintf ("Unknown variable in: '%s'\n", str);
|
2014-04-28 23:31:46 +00:00
|
|
|
free (ostr);
|
2012-02-27 01:40:27 +00:00
|
|
|
return R_FALSE;
|
|
|
|
} else eprintf ("Missing argument\n");
|
|
|
|
break;
|
2014-09-22 02:22:47 +00:00
|
|
|
case ' ':
|
|
|
|
for (str++;*str==' ';) str++;
|
|
|
|
p = strchr (str, ' ');
|
|
|
|
if (!p) {
|
|
|
|
var_help (core, type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
*p++ = 0;
|
|
|
|
delta = r_num_math (core->num, str);
|
|
|
|
{
|
|
|
|
int size = 4;
|
|
|
|
int scope = 1; // 0 = global, 1 = LOCAL;
|
|
|
|
const char *name = p;
|
|
|
|
char *vartype = strchr (name, ' ');
|
|
|
|
if (vartype) {
|
|
|
|
*vartype++ = 0;
|
|
|
|
}
|
|
|
|
if (fcn) {
|
|
|
|
r_anal_var_add (core->anal, fcn->addr,
|
|
|
|
scope, delta, type,
|
2014-09-26 13:40:17 +00:00
|
|
|
vartype, size, name);
|
2014-09-22 02:22:47 +00:00
|
|
|
} else eprintf ("Cannot find function\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2014-09-02 00:48:41 +00:00
|
|
|
var_help (core, *str);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
end:
|
2012-02-27 01:40:27 +00:00
|
|
|
free (ostr);
|
2014-04-28 23:31:46 +00:00
|
|
|
return R_TRUE;
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
|
2014-12-05 17:56:33 +00:00
|
|
|
static void print_trampolines(RCore *core, ut64 a, ut64 b, size_t element_size) {
|
|
|
|
int i;
|
|
|
|
for (i=0; i<core->blocksize; i+=element_size) {
|
|
|
|
ut32 n;
|
|
|
|
memcpy (&n, core->block+i, sizeof(ut32));
|
|
|
|
if (n>=a && n<=b) {
|
|
|
|
if (element_size == 4)
|
|
|
|
r_cons_printf ("f trampoline.%x @ 0x%"PFMT64x"\n", n, core->offset+i);
|
|
|
|
else
|
|
|
|
r_cons_printf ("f trampoline.%"PFMT64x" @ 0x%"PFMT64x"\n", n, core->offset+i);
|
|
|
|
|
|
|
|
r_cons_printf ("Cd %u @ 0x%"PFMT64x":%u\n", element_size, core->offset+i, element_size);
|
|
|
|
// TODO: add data xrefs
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-20 02:59:00 +00:00
|
|
|
static void cmd_anal_trampoline (RCore *core, const char *input) {
|
2014-12-05 17:56:33 +00:00
|
|
|
int bits = r_config_get_i (core->config, "asm.bits");
|
2012-11-20 02:59:00 +00:00
|
|
|
char *p, *inp = strdup (input);
|
|
|
|
p = strchr (inp, ' ');
|
|
|
|
if (p) *p=0;
|
|
|
|
ut64 a = r_num_math (core->num, inp);
|
|
|
|
ut64 b = p?r_num_math (core->num, p+1):0;
|
|
|
|
free (inp);
|
2014-12-05 17:56:33 +00:00
|
|
|
|
2012-11-20 02:59:00 +00:00
|
|
|
switch (bits) {
|
2013-02-21 10:31:04 +00:00
|
|
|
case 32:
|
2014-12-05 17:56:33 +00:00
|
|
|
print_trampolines(core, a, b, 4);
|
2013-02-21 10:31:04 +00:00
|
|
|
break;
|
|
|
|
case 64:
|
2014-12-05 17:56:33 +00:00
|
|
|
print_trampolines(core, a, b, 8);
|
2013-02-21 10:31:04 +00:00
|
|
|
break;
|
2012-11-20 02:59:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
static void cmd_syscall_do(RCore *core, int num) {
|
|
|
|
int i;
|
|
|
|
char str[64];
|
|
|
|
RSyscallItem *item = r_syscall_get (core->anal->syscall, num, -1);
|
|
|
|
if (item == NULL) {
|
|
|
|
r_cons_printf ("%d = unknown ()", num);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
r_cons_printf ("%d = %s (", item->num, item->name);
|
|
|
|
// TODO: move this to r_syscall
|
|
|
|
for (i=0; i<item->args; i++) {
|
|
|
|
ut64 arg = r_debug_arg_get (core->dbg, R_TRUE, i+1);
|
|
|
|
if (item->sargs==NULL)
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"", arg);
|
|
|
|
else
|
2014-06-16 03:58:00 +00:00
|
|
|
switch (item->sargs[i]) {
|
|
|
|
case 'p': // pointer
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"", arg);
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
r_cons_printf ("%"PFMT64d"", arg);
|
|
|
|
break;
|
|
|
|
case 'z':
|
|
|
|
r_io_read_at (core->io, arg, (ut8*)str, sizeof (str));
|
|
|
|
// TODO: filter zero terminated string
|
|
|
|
str[63] = '\0';
|
|
|
|
r_str_filter (str, strlen (str));
|
|
|
|
r_cons_printf ("\"%s\"", str);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"", arg);
|
|
|
|
break;
|
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
if (i+1<item->args)
|
|
|
|
r_cons_printf (", ");
|
|
|
|
}
|
|
|
|
r_cons_printf (")\n");
|
|
|
|
}
|
|
|
|
|
2014-12-05 17:56:33 +00:00
|
|
|
static void core_anal_bytes (RCore *core, const ut8 *buf, int len, int nops, int fmt) {
|
2013-11-26 02:25:31 +00:00
|
|
|
int ret, i, j, idx, size;
|
2013-05-04 00:35:52 +00:00
|
|
|
RAsmOp asmop;
|
2012-02-27 01:40:27 +00:00
|
|
|
RAnalOp op;
|
2013-06-17 01:26:48 +00:00
|
|
|
ut64 addr;
|
|
|
|
RAnalHint *hint;
|
2014-10-16 23:15:17 +00:00
|
|
|
int use_color = core->print->flags & R_PRINT_FLAGS_COLOR;
|
|
|
|
const char *color = "";
|
|
|
|
if (use_color)
|
|
|
|
color = core->cons->pal.label;
|
|
|
|
if (fmt=='j')
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("[");
|
2013-02-25 01:35:16 +00:00
|
|
|
for (i=idx=ret=0; idx<len && (!nops|| (nops&&i<nops)); i++, idx+=ret) {
|
2013-06-17 01:26:48 +00:00
|
|
|
addr = core->offset+idx;
|
2014-06-16 03:58:00 +00:00
|
|
|
// TODO: use more anal hints
|
|
|
|
hint = r_anal_hint_get (core->anal, addr);
|
2013-06-17 01:26:48 +00:00
|
|
|
r_asm_set_pc (core->assembler, addr);
|
2013-05-04 00:35:52 +00:00
|
|
|
ret = r_asm_disassemble (core->assembler, &asmop, buf+idx, len-idx);
|
|
|
|
ret = r_anal_op (core->anal, &op, core->offset+idx, buf + idx, len-idx);
|
2015-01-27 04:47:27 +00:00
|
|
|
if (ret<1 && fmt!='d') {
|
2012-02-27 01:40:27 +00:00
|
|
|
eprintf ("Oops at 0x%08"PFMT64x" (%02x %02x %02x ...)\n",
|
2014-06-16 03:58:00 +00:00
|
|
|
core->offset+idx, buf[idx],
|
|
|
|
buf[idx+1], buf[idx+2]);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2013-12-06 04:31:54 +00:00
|
|
|
size = (hint&&hint->size)? hint->size: op.size;
|
2015-01-27 04:47:27 +00:00
|
|
|
if (fmt=='d') {
|
|
|
|
char *opname = strdup (asmop.buf_asm);
|
|
|
|
r_str_split (opname, ' ');
|
|
|
|
char *d = r_asm_describe (core->assembler, opname);
|
|
|
|
if (d && *d) {
|
|
|
|
r_cons_printf ("%s: %s\n", opname, d);
|
|
|
|
free (d);
|
|
|
|
} else r_cons_printf ("Unknown opcode\n");
|
|
|
|
free(opname);
|
|
|
|
} else if (fmt=='j') {
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("{\"opcode\": \"%s\",", asmop.buf_asm);
|
|
|
|
if (hint && hint->opcode)
|
|
|
|
r_cons_printf ("\"ophint\": \"%s\",", hint->opcode);
|
2014-10-16 23:15:17 +00:00
|
|
|
r_cons_printf ("\"prefix\": %"PFMT64d",", op.prefix);
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("\"addr\": %"PFMT64d",", core->offset+idx);
|
|
|
|
r_cons_printf ("\"bytes\": \"");
|
|
|
|
for (j=0; j<size; j++)
|
|
|
|
r_cons_printf ("%02x", buf[j]);
|
|
|
|
r_cons_printf("\",");
|
|
|
|
if (op.val != UT64_MAX)
|
|
|
|
r_cons_printf ("\"val\": %"PFMT64d",", op.val);
|
|
|
|
if (op.ptr != UT64_MAX)
|
|
|
|
r_cons_printf ("\"ptr\": %"PFMT64d",", op.ptr);
|
|
|
|
r_cons_printf ("\"size\": %d,", size);
|
|
|
|
r_cons_printf ("\"type\": \"%s\",",
|
|
|
|
r_anal_optype_to_string (op.type));
|
|
|
|
if (*R_STRBUF_SAFEGET (&op.esil))
|
|
|
|
r_cons_printf ("\"esil\": \"%s\",",
|
|
|
|
R_STRBUF_SAFEGET (&op.esil));
|
|
|
|
if (hint && hint->jump != UT64_MAX)
|
|
|
|
op.jump = hint->jump;
|
|
|
|
if (op.jump != UT64_MAX)
|
|
|
|
r_cons_printf ("\"jump\":%"PFMT64d",", op.jump);
|
|
|
|
if (hint && hint->fail != UT64_MAX)
|
|
|
|
op.fail = hint->fail;
|
2014-11-07 02:48:27 +00:00
|
|
|
if (op.refptr != -1)
|
2015-03-25 02:03:34 +00:00
|
|
|
r_cons_printf ("\"refptr\":%d,", op.refptr);
|
2013-12-14 03:15:01 +00:00
|
|
|
if (op.fail != UT64_MAX)
|
|
|
|
r_cons_printf ("\"fail\":%"PFMT64d",", op.fail);
|
2013-10-25 00:06:00 +00:00
|
|
|
|
2014-08-08 11:50:16 +00:00
|
|
|
r_cons_printf ("\"cycles\":%d,", op.cycles);
|
2014-02-25 23:03:42 +00:00
|
|
|
if (op.failcycles)
|
2015-06-20 19:40:14 +00:00
|
|
|
r_cons_printf ("\"failcycles\":%d,", op.failcycles);
|
2015-06-20 19:39:52 +00:00
|
|
|
r_cons_printf ("\"delay\":%d,", op.delay);
|
2015-06-01 14:02:40 +00:00
|
|
|
r_cons_printf ("\"stack\":\"%s\",", r_anal_stackop_tostring (op.stackop));
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("\"cond\":%d,",
|
|
|
|
(op.type &R_ANAL_OP_TYPE_COND)?1: op.cond);
|
2014-12-01 23:36:42 +00:00
|
|
|
r_cons_printf ("\"family\":\"%s\"}", r_anal_op_family_to_string (op.family));
|
2013-12-14 03:15:01 +00:00
|
|
|
} else {
|
2014-10-16 23:15:17 +00:00
|
|
|
#define printline(k,fmt,arg) {\
|
|
|
|
if (use_color) r_cons_printf ("%s%s: "Color_RESET, color, k); \
|
|
|
|
else r_cons_printf ("%s: ", k); \
|
|
|
|
if (fmt) r_cons_printf (fmt, arg); \
|
|
|
|
}
|
|
|
|
printline ("opcode", "%s\n", asmop.buf_asm);
|
|
|
|
if (hint) {
|
|
|
|
if (hint->opcode)
|
|
|
|
printline ("ophint", "%s\n", hint->opcode);
|
|
|
|
printline ("addr", "0x%08"PFMT64x"\n", (hint->addr+idx));
|
|
|
|
}
|
|
|
|
printline ("prefix", "%"PFMT64d"\n", op.prefix);
|
|
|
|
printline ("bytes", NULL, 0);
|
2013-12-14 03:15:01 +00:00
|
|
|
for (j=0; j<size; j++)
|
|
|
|
r_cons_printf ("%02x", buf[j]);
|
|
|
|
r_cons_newline ();
|
|
|
|
if (op.val != UT64_MAX)
|
2014-10-18 04:30:51 +00:00
|
|
|
printline ("val","0x%08"PFMT64x"\n", op.val);
|
2013-12-14 03:15:01 +00:00
|
|
|
if (op.ptr != UT64_MAX)
|
2014-10-18 04:30:51 +00:00
|
|
|
printline ("ptr","0x%08"PFMT64x"\n", op.ptr);
|
2014-11-07 02:48:27 +00:00
|
|
|
if (op.refptr != -1)
|
|
|
|
printline ("refptr","%d\n", op.refptr);
|
2014-10-16 23:15:17 +00:00
|
|
|
printline ("size", "%d\n", size);
|
|
|
|
printline ("type","%s\n", r_anal_optype_to_string (op.type));
|
2013-12-14 03:15:01 +00:00
|
|
|
if (*R_STRBUF_SAFEGET (&op.esil))
|
2014-10-16 23:15:17 +00:00
|
|
|
printline ("esil", "%s\n", R_STRBUF_SAFEGET (&op.esil));
|
2013-12-14 03:15:01 +00:00
|
|
|
if (hint && hint->jump != UT64_MAX)
|
|
|
|
op.jump = hint->jump;
|
|
|
|
if (op.jump != UT64_MAX)
|
2014-10-16 23:15:17 +00:00
|
|
|
printline ("jump","0x%08"PFMT64x"\n", op.jump);
|
2013-10-25 00:06:00 +00:00
|
|
|
|
2013-12-14 03:15:01 +00:00
|
|
|
if (hint && hint->fail != UT64_MAX)
|
|
|
|
op.fail = hint->fail;
|
|
|
|
if (op.fail != UT64_MAX)
|
2014-10-18 04:30:51 +00:00
|
|
|
printline ("fail","0x%08"PFMT64x"\n", op.fail);
|
2013-10-25 00:06:00 +00:00
|
|
|
|
2014-10-16 23:15:17 +00:00
|
|
|
printline ("stack","%s\n", r_anal_stackop_tostring (op.stackop));
|
|
|
|
printline ("cond","%d\n", (op.type &R_ANAL_OP_TYPE_COND)?1: op.cond);
|
2014-12-01 23:36:42 +00:00
|
|
|
printline ("family","%s\n", r_anal_op_family_to_string (op.family));
|
2013-12-14 03:15:01 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
//r_cons_printf ("false: 0x%08"PFMT64x"\n", core->offset+idx);
|
2014-03-29 01:49:49 +00:00
|
|
|
//free (hint);
|
|
|
|
r_anal_hint_free (hint);
|
2013-12-14 03:15:01 +00:00
|
|
|
if (((idx+ret)<len) && (!nops||(i+1)<nops))
|
|
|
|
r_cons_printf (",");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (fmt=='j') {
|
|
|
|
r_cons_printf ("]");
|
|
|
|
r_cons_newline ();
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-15 22:16:29 +00:00
|
|
|
static int bb_cmp(const void *a, const void *b) {
|
|
|
|
const RAnalBlock *ba = a;
|
|
|
|
const RAnalBlock *bb = b;
|
2015-01-31 03:13:59 +00:00
|
|
|
return ba->addr - bb->addr;
|
|
|
|
}
|
|
|
|
|
2015-01-29 12:33:33 +00:00
|
|
|
static int anal_fcn_list_bb (RCore *core, const char *input) {
|
2015-01-29 23:36:15 +00:00
|
|
|
RDebugTracepoint *tp = NULL;
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalBlock *b;
|
2015-01-29 12:33:33 +00:00
|
|
|
int mode = 0;
|
|
|
|
ut64 addr;
|
2015-01-29 23:36:15 +00:00
|
|
|
|
2015-01-29 12:33:33 +00:00
|
|
|
if (*input && (input[1]==' ' || !input[1])) {
|
2015-01-29 12:41:38 +00:00
|
|
|
if (*input == 'r')
|
|
|
|
mode = '*';
|
|
|
|
else mode = *input;
|
2015-01-29 12:33:33 +00:00
|
|
|
input++;
|
|
|
|
}
|
|
|
|
if (input && *input) {
|
|
|
|
addr = r_num_math (core->num, input);
|
|
|
|
} else {
|
|
|
|
addr = core->offset;
|
|
|
|
}
|
|
|
|
fcn = r_anal_get_fcn_in (core->anal, addr, 0);
|
|
|
|
if (!fcn)
|
|
|
|
return R_FALSE;
|
|
|
|
switch (mode) {
|
|
|
|
case 'j':
|
|
|
|
r_cons_printf ("[");
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
r_cons_printf ("fs blocks\n");
|
|
|
|
break;
|
|
|
|
}
|
2015-01-31 03:13:59 +00:00
|
|
|
r_list_sort (fcn->bbs, bb_cmp);
|
2015-01-29 12:33:33 +00:00
|
|
|
r_list_foreach (fcn->bbs, iter, b) {
|
|
|
|
switch (mode) {
|
|
|
|
case '*':
|
2015-01-29 12:41:38 +00:00
|
|
|
r_cons_printf ("f bb.%05"PFMT64x" = 0x%08"PFMT64x"\n",
|
|
|
|
b->addr & 0xFFFFF, b->addr);
|
2015-01-29 12:33:33 +00:00
|
|
|
break;
|
|
|
|
case 'q':
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"\n", b->addr);
|
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
r_cons_printf ("%"PFMT64d"%s", b->addr, iter->n?",":"");
|
|
|
|
break;
|
|
|
|
default:
|
2015-01-29 23:36:15 +00:00
|
|
|
tp = r_debug_trace_get (core->dbg, b->addr);
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" 0x%08"PFMT64x" %02X:%04X %d",
|
|
|
|
b->addr, b->addr + b->size,
|
|
|
|
tp?tp->times:0, tp?tp->count:0,
|
|
|
|
b->size);
|
2015-01-29 12:33:33 +00:00
|
|
|
if (b->jump != UT64_MAX) {
|
|
|
|
r_cons_printf (" j 0x%08"PFMT64x, b->jump);
|
|
|
|
}
|
|
|
|
if (b->fail != UT64_MAX) {
|
|
|
|
r_cons_printf (" f 0x%08"PFMT64x, b->fail);
|
|
|
|
}
|
|
|
|
r_cons_newline ();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (mode=='j') {
|
|
|
|
r_cons_printf ("]");
|
|
|
|
}
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
|
|
|
|
2013-05-24 00:53:15 +00:00
|
|
|
static int anal_fcn_add_bb (RCore *core, const char *input) {
|
2014-11-13 10:17:43 +00:00
|
|
|
// fcn_addr bb_addr bb_size [jump] [fail]
|
|
|
|
char *ptr;
|
2013-05-24 00:53:15 +00:00
|
|
|
const char *ptr2 = NULL;
|
|
|
|
ut64 fcnaddr = -1LL, addr = -1LL;
|
|
|
|
ut64 size = 0LL;
|
2013-10-25 00:06:00 +00:00
|
|
|
ut64 jump = UT64_MAX;
|
|
|
|
ut64 fail = UT64_MAX;
|
2013-05-24 00:53:15 +00:00
|
|
|
int type = R_ANAL_BB_TYPE_NULL;
|
|
|
|
RAnalFunction *fcn = NULL;
|
|
|
|
RAnalDiff *diff = NULL;
|
|
|
|
|
2014-11-13 10:17:43 +00:00
|
|
|
while (*input==' ') input++;
|
|
|
|
ptr = strdup (input);
|
|
|
|
|
2013-10-25 00:06:00 +00:00
|
|
|
switch (r_str_word_set0 (ptr)) {
|
2014-06-16 03:58:00 +00:00
|
|
|
case 7:
|
|
|
|
ptr2 = r_str_word_get0 (ptr, 6);
|
|
|
|
if (!(diff = r_anal_diff_new ())) {
|
|
|
|
eprintf ("error: Cannot init RAnalDiff\n");
|
|
|
|
free (ptr);
|
|
|
|
return R_FALSE;
|
|
|
|
}
|
|
|
|
if (ptr2[0] == 'm')
|
|
|
|
diff->type = R_ANAL_DIFF_TYPE_MATCH;
|
|
|
|
else if (ptr2[0] == 'u')
|
|
|
|
diff->type = R_ANAL_DIFF_TYPE_UNMATCH;
|
|
|
|
case 6:
|
|
|
|
ptr2 = r_str_word_get0 (ptr, 5);
|
|
|
|
if (strchr (ptr2, 'h'))
|
|
|
|
type |= R_ANAL_BB_TYPE_HEAD;
|
|
|
|
if (strchr (ptr2, 'b'))
|
|
|
|
type |= R_ANAL_BB_TYPE_BODY;
|
|
|
|
if (strchr (ptr2, 'l'))
|
|
|
|
type |= R_ANAL_BB_TYPE_LAST;
|
|
|
|
if (strchr (ptr2, 'f'))
|
|
|
|
type |= R_ANAL_BB_TYPE_FOOT;
|
|
|
|
case 5: // get fail
|
|
|
|
fail = r_num_math (core->num, r_str_word_get0 (ptr, 4));
|
|
|
|
case 4: // get jump
|
|
|
|
jump = r_num_math (core->num, r_str_word_get0 (ptr, 3));
|
|
|
|
case 3: // get size
|
|
|
|
size = r_num_math (core->num, r_str_word_get0 (ptr, 2));
|
|
|
|
case 2: // get addr
|
|
|
|
addr = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
case 1: // get fcnaddr
|
|
|
|
fcnaddr = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
2013-05-24 00:53:15 +00:00
|
|
|
}
|
2014-12-14 00:49:04 +00:00
|
|
|
fcn = r_anal_get_fcn_in (core->anal, fcnaddr, 0);
|
|
|
|
if (fcn) {
|
2015-03-16 01:52:26 +00:00
|
|
|
int ret = r_anal_fcn_add_bb (core->anal, fcn, addr,
|
|
|
|
size, jump, fail, type, diff);
|
2014-12-14 00:49:04 +00:00
|
|
|
if (!ret) {
|
|
|
|
eprintf ("Cannot add basic block\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
eprintf ("Cannot find function at 0x%"PFMT64x"\n", fcnaddr);
|
2013-05-24 00:53:15 +00:00
|
|
|
}
|
|
|
|
r_anal_diff_free (diff);
|
|
|
|
free (ptr);
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
2014-11-13 10:17:43 +00:00
|
|
|
|
2014-11-08 00:03:04 +00:00
|
|
|
static int setFunctionName(RCore *core, ut64 off, const char *name) {
|
2015-03-16 01:52:26 +00:00
|
|
|
char *oname;
|
2014-11-08 00:03:04 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, off,
|
2015-03-16 01:52:26 +00:00
|
|
|
R_ANAL_FCN_TYPE_FCN|R_ANAL_FCN_TYPE_SYM|R_ANAL_FCN_TYPE_LOC);
|
2014-11-08 00:03:04 +00:00
|
|
|
if (!fcn)
|
|
|
|
return 0;
|
|
|
|
//r_cons_printf ("fr %s %s@ 0x%"PFMT64x"\n",
|
|
|
|
// fcn->name, name, off);
|
|
|
|
r_core_cmdf (core, "fr %s %s@ 0x%"PFMT64x,
|
2015-03-16 01:52:26 +00:00
|
|
|
fcn->name, name, off);
|
|
|
|
oname = fcn->name;
|
2014-11-08 00:03:04 +00:00
|
|
|
fcn->name = strdup (name);
|
2015-03-16 01:52:26 +00:00
|
|
|
if (core->anal->cb.on_fcn_rename) {
|
|
|
|
core->anal->cb.on_fcn_rename (core->anal, core->anal->user, fcn, oname);
|
|
|
|
}
|
|
|
|
free (oname);
|
2014-11-08 00:03:04 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2013-05-24 00:53:15 +00:00
|
|
|
|
2014-01-23 01:31:51 +00:00
|
|
|
static int cmd_anal_fcn(RCore *core, const char *input) {
|
|
|
|
switch (input[1]) {
|
2014-09-02 00:41:40 +00:00
|
|
|
case 'f':
|
|
|
|
r_anal_fcn_fit_overlaps (core->anal, NULL);
|
|
|
|
break;
|
2014-01-23 01:31:51 +00:00
|
|
|
case '-':
|
2014-06-16 03:58:00 +00:00
|
|
|
{
|
|
|
|
ut64 addr = input[2]?
|
2014-01-23 01:31:51 +00:00
|
|
|
r_num_math (core->num, input+2): core->offset;
|
2014-06-16 03:58:00 +00:00
|
|
|
r_anal_fcn_del_locs (core->anal, addr);
|
|
|
|
r_anal_fcn_del (core->anal, addr);
|
|
|
|
}
|
2014-01-23 01:31:51 +00:00
|
|
|
break;
|
2014-11-26 12:25:23 +00:00
|
|
|
case 'u':
|
|
|
|
{
|
|
|
|
ut64 addr = core->offset;
|
|
|
|
ut64 addr_end = r_num_math (core->num, input+2);
|
2015-03-16 01:52:26 +00:00
|
|
|
if (addr_end < addr) {
|
2014-11-26 12:25:23 +00:00
|
|
|
eprintf ("Invalid address ranges\n");
|
|
|
|
} else {
|
|
|
|
int depth = 1;
|
|
|
|
ut64 a, b;
|
2014-11-26 12:34:23 +00:00
|
|
|
const char *c;
|
2014-11-26 12:25:23 +00:00
|
|
|
a = r_config_get_i (core->config, "anal.from");
|
|
|
|
b = r_config_get_i (core->config, "anal.to");
|
2014-11-26 12:34:23 +00:00
|
|
|
c = r_config_get (core->config, "anal.limits");
|
2014-11-26 12:25:23 +00:00
|
|
|
r_config_set_i (core->config, "anal.from", addr);
|
|
|
|
r_config_set_i (core->config, "anal.to", addr_end);
|
2014-11-26 12:34:23 +00:00
|
|
|
r_config_set (core->config, "anal.limits", "true");
|
2014-11-26 12:25:23 +00:00
|
|
|
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, addr, 0);
|
|
|
|
if (fcn) r_anal_fcn_resize (fcn, addr_end-addr);
|
|
|
|
r_core_anal_fcn (core, addr, UT64_MAX,
|
|
|
|
R_ANAL_REF_TYPE_NULL, depth);
|
|
|
|
fcn = r_anal_get_fcn_in (core->anal, addr, 0);
|
|
|
|
if (fcn) r_anal_fcn_resize (fcn, addr_end-addr);
|
|
|
|
|
|
|
|
r_config_set_i (core->config, "anal.from", a);
|
|
|
|
r_config_set_i (core->config, "anal.to", b);
|
2014-11-26 12:34:23 +00:00
|
|
|
r_config_set (core->config, "anal.limits", c?c:"");
|
2014-11-26 12:25:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2014-01-23 01:31:51 +00:00
|
|
|
case '+':
|
2014-06-16 03:58:00 +00:00
|
|
|
{
|
|
|
|
char *ptr = strdup (input+3);
|
|
|
|
const char *ptr2;
|
|
|
|
int n = r_str_word_set0 (ptr);
|
|
|
|
const char *name = NULL;
|
|
|
|
ut64 addr = -1LL;
|
|
|
|
ut64 size = 0LL;
|
|
|
|
RAnalDiff *diff = NULL;
|
|
|
|
int type = R_ANAL_FCN_TYPE_FCN;
|
|
|
|
if (n > 2) {
|
|
|
|
switch(n) {
|
|
|
|
case 5:
|
|
|
|
ptr2 = r_str_word_get0 (ptr, 4);
|
|
|
|
if (!(diff = r_anal_diff_new ())) {
|
|
|
|
eprintf ("error: Cannot init RAnalDiff\n");
|
|
|
|
free (ptr);
|
|
|
|
return R_FALSE;
|
|
|
|
}
|
|
|
|
if (ptr2[0] == 'm')
|
|
|
|
diff->type = R_ANAL_DIFF_TYPE_MATCH;
|
|
|
|
else if (ptr2[0] == 'u')
|
|
|
|
diff->type = R_ANAL_DIFF_TYPE_UNMATCH;
|
|
|
|
case 4:
|
|
|
|
ptr2 = r_str_word_get0 (ptr, 3);
|
|
|
|
if (strchr (ptr2, 'l'))
|
|
|
|
type = R_ANAL_FCN_TYPE_LOC;
|
|
|
|
else if (strchr (ptr2, 'i'))
|
|
|
|
type = R_ANAL_FCN_TYPE_IMP;
|
|
|
|
else if (strchr (ptr2, 's'))
|
|
|
|
type = R_ANAL_FCN_TYPE_SYM;
|
|
|
|
else type = R_ANAL_FCN_TYPE_FCN;
|
|
|
|
case 3:
|
|
|
|
name = r_str_word_get0 (ptr, 2);
|
|
|
|
case 2:
|
|
|
|
size = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
case 1:
|
|
|
|
addr = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
2014-01-23 01:31:51 +00:00
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
if (!r_anal_fcn_add (core->anal, addr, size, name, type, diff))
|
|
|
|
eprintf ("Cannot add function (duplicated)\n");
|
2014-01-23 01:31:51 +00:00
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
r_anal_diff_free (diff);
|
|
|
|
free (ptr);
|
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-10-29 09:41:43 +00:00
|
|
|
case 'o': // "afo"
|
2014-06-16 03:58:00 +00:00
|
|
|
{
|
2014-10-29 09:41:43 +00:00
|
|
|
RAnalFunction *fcn;
|
2014-06-16 03:58:00 +00:00
|
|
|
ut64 addr = core->offset;
|
|
|
|
if (input[2]==' ')
|
2014-10-29 09:41:43 +00:00
|
|
|
addr = r_num_math (core->num, input+3);
|
|
|
|
if (addr == 0LL) {
|
|
|
|
fcn = r_anal_fcn_find_name (core->anal, input+3);
|
|
|
|
} else {
|
|
|
|
fcn = r_anal_get_fcn_in (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
|
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
if (fcn) r_cons_printf ("0x%08"PFMT64x"\n", fcn->addr);
|
|
|
|
}
|
2014-01-23 01:31:51 +00:00
|
|
|
break;
|
2014-10-20 23:07:25 +00:00
|
|
|
case 'i': // "afi"
|
|
|
|
switch (input[2]) {
|
2015-02-04 00:25:53 +00:00
|
|
|
case '?': eprintf ("Usage: afi[j*] <addr>\n"); break;
|
2014-10-20 23:07:25 +00:00
|
|
|
case 'j': r_core_anal_fcn_list (core, input+3, 'j'); break; // "afij"
|
|
|
|
case '*': r_core_anal_fcn_list (core, input+3, 1); break; // "afi*"
|
|
|
|
default: r_core_anal_fcn_list (core, input+2, 0); break;
|
|
|
|
}
|
2014-08-08 12:40:50 +00:00
|
|
|
break;
|
2015-01-31 18:24:18 +00:00
|
|
|
case 'l': // "afl"
|
|
|
|
switch (input[2]) {
|
2015-05-31 21:46:32 +00:00
|
|
|
case '?':
|
|
|
|
eprintf ("Usage: afl[ajq*] <addr>\n");
|
|
|
|
eprintf ("List all functions in quiet, commands or json format\n");
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
case 'q':
|
|
|
|
r_core_anal_fcn_list (core, NULL, input[2]);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_core_anal_fcn_list (core, NULL, 'q');
|
|
|
|
break;
|
2015-01-31 18:24:18 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-10-15 14:05:47 +00:00
|
|
|
case 's': { // "afs"
|
2014-06-16 03:58:00 +00:00
|
|
|
ut64 addr;
|
|
|
|
RAnalFunction *f;
|
|
|
|
const char *arg = input+3;
|
|
|
|
if (input[2] && (addr = r_num_math (core->num, arg))) {
|
|
|
|
arg = strchr (arg, ' ');
|
|
|
|
if (arg) arg++;
|
|
|
|
} else addr = core->offset;
|
2014-09-26 13:40:17 +00:00
|
|
|
if ((f = r_anal_get_fcn_in (core->anal, addr, R_ANAL_FCN_TYPE_NULL))) {
|
2014-06-16 03:58:00 +00:00
|
|
|
if (arg && *arg) {
|
|
|
|
r_anal_str_to_fcn (core->anal, f, arg);
|
|
|
|
} else {
|
|
|
|
char *str = r_anal_fcn_to_string (core->anal, f);
|
|
|
|
r_cons_printf ("%s\n", str);
|
|
|
|
free (str);
|
|
|
|
}
|
|
|
|
} else eprintf("No function defined at 0x%08"PFMT64x"\n", addr);
|
|
|
|
}
|
|
|
|
break;
|
2014-11-15 01:07:08 +00:00
|
|
|
case 'm': // "afm" - merge two functions
|
|
|
|
r_core_anal_fcn_merge (core,
|
|
|
|
core->offset, r_num_math (core->num, input+2));
|
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'a': // "afa"
|
|
|
|
case 'A': // "afA"
|
|
|
|
case 'v': // "afv"
|
2014-06-16 03:58:00 +00:00
|
|
|
var_cmd (core, input+1);
|
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'c': // "afc"
|
2014-06-16 03:58:00 +00:00
|
|
|
{
|
|
|
|
RAnalFunction *fcn;
|
2014-09-26 16:10:33 +00:00
|
|
|
if ((fcn = r_anal_get_fcn_in (core->anal, core->offset, 0)) != NULL) {
|
2014-06-18 23:11:53 +00:00
|
|
|
r_cons_printf ("%i\n", r_anal_fcn_cc (fcn));
|
2014-06-19 08:27:02 +00:00
|
|
|
} else eprintf ("Error: Cannot find function at 0x08%"PFMT64x"\n", core->offset);
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'C': // "afC"
|
2014-10-14 15:09:42 +00:00
|
|
|
if (input[2]=='?') {
|
|
|
|
int i;
|
|
|
|
for (i=0; ; i++) {
|
|
|
|
const char *s = r_anal_cc_type2str (i);
|
|
|
|
if (!s) break;
|
|
|
|
r_cons_printf ("%s\n", s);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, 0);
|
|
|
|
if (fcn) {
|
|
|
|
if (input[2]=='a') {
|
|
|
|
eprintf ("TODO: analyze function to guess its calling convention\n");
|
|
|
|
} else
|
|
|
|
if (input[2]==' ') {
|
|
|
|
int type = r_anal_cc_str2type (input+3);
|
|
|
|
if (type == -1) {
|
|
|
|
eprintf ("Unknown calling convention '%s'\n", input+3);
|
|
|
|
} else {
|
|
|
|
// set calling convention for current function
|
|
|
|
fcn->call = type;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
const char *type = r_anal_cc_type2str (fcn->call);
|
|
|
|
if (type) {
|
|
|
|
r_cons_printf ("%s\n", type);
|
|
|
|
} else {
|
|
|
|
eprintf ("Unknown calling convention\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
eprintf ("Cannot find function\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-01-29 12:41:38 +00:00
|
|
|
case 'B': // "afB" // set function bits
|
|
|
|
if (input[2] == ' ') {
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset,
|
|
|
|
R_ANAL_FCN_TYPE_FCN|R_ANAL_FCN_TYPE_SYM);
|
|
|
|
if (fcn) fcn->bits = atoi (input+3);
|
|
|
|
else eprintf ("Cannot find function to set bits\n");
|
|
|
|
} else {
|
|
|
|
eprintf ("Usage: afB [bits]\n");
|
|
|
|
}
|
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'b': // "afb"
|
2014-11-13 10:17:43 +00:00
|
|
|
switch (input[2]) {
|
2015-01-29 12:41:38 +00:00
|
|
|
case 0:
|
|
|
|
case ' ':
|
|
|
|
case 'q':
|
|
|
|
case 'r':
|
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
anal_fcn_list_bb (core, input+2);
|
2015-01-29 12:33:33 +00:00
|
|
|
break;
|
2014-11-13 10:17:43 +00:00
|
|
|
case '+': // "afb+"
|
|
|
|
anal_fcn_add_bb (core, input+3);
|
|
|
|
break;
|
2015-01-29 12:33:33 +00:00
|
|
|
default:
|
|
|
|
case '?':
|
|
|
|
eprintf ("Usage: afb+ or afbb or afb\n"
|
2015-01-29 12:41:38 +00:00
|
|
|
" afB [bits] - define asm.bits for given function\n"
|
|
|
|
" afb [addr] - list basic blocks of function (see afbq, afbj, afb*)\n"
|
2015-01-29 12:33:33 +00:00
|
|
|
" afb+ fcn_at bbat bbsz [jump] [fail] ([type] ([diff])) add bb to function @ fcnaddr\n");
|
|
|
|
break;
|
2014-11-13 10:17:43 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'n': // "afn"
|
2014-09-12 01:17:02 +00:00
|
|
|
if (input[2]=='a') { // afna autoname
|
|
|
|
char *name = r_core_anal_fcn_autoname (core, core->offset);
|
|
|
|
if (name) {
|
2014-09-18 09:37:28 +00:00
|
|
|
r_cons_printf ("afn %s 0x%08"PFMT64x"\n",
|
|
|
|
name, core->offset);
|
2014-09-12 01:17:02 +00:00
|
|
|
free (name);
|
|
|
|
}
|
|
|
|
} else {
|
2014-06-16 03:58:00 +00:00
|
|
|
ut64 off = core->offset;
|
|
|
|
char *p, *name = strdup (input+3);
|
|
|
|
if ((p=strchr (name, ' '))) {
|
|
|
|
*p++ = 0;
|
|
|
|
off = r_num_math (core->num, p);
|
|
|
|
}
|
|
|
|
if (*name) {
|
2014-11-08 00:03:04 +00:00
|
|
|
if (!setFunctionName (core, off, name))
|
2015-01-09 11:47:40 +00:00
|
|
|
eprintf ("Cannot find function '%s' at 0x%08"PFMT64x"\n", name, off);
|
2014-06-16 03:58:00 +00:00
|
|
|
free (name);
|
|
|
|
} else {
|
|
|
|
eprintf ("Usage: afn newname [off] # set new name to given function\n");
|
|
|
|
free (name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2014-09-22 22:40:35 +00:00
|
|
|
#if FCN_OLD
|
|
|
|
/* this is undocumented and probably have no uses. plz discuss */
|
2014-10-28 16:24:01 +00:00
|
|
|
case 'e': // "afe"
|
2014-06-16 03:58:00 +00:00
|
|
|
{
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
ut64 off = core->offset;
|
|
|
|
char *p, *name = strdup (input+3);
|
|
|
|
if ((p=strchr (name, ' '))) {
|
|
|
|
*p = 0;
|
|
|
|
off = r_num_math (core->num, p+1);
|
|
|
|
}
|
2014-09-26 13:40:17 +00:00
|
|
|
fcn = r_anal_get_fcn_in (core->anal, off,
|
2014-06-16 03:58:00 +00:00
|
|
|
R_ANAL_FCN_TYPE_FCN|R_ANAL_FCN_TYPE_SYM);
|
|
|
|
if (fcn) {
|
|
|
|
RAnalBlock *b;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalRef *r;
|
|
|
|
r_list_foreach (fcn->refs, iter, r) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" -%c 0x%08"PFMT64x"\n", r->at, r->type, r->addr);
|
|
|
|
}
|
|
|
|
r_list_foreach (fcn->bbs, iter, b) {
|
|
|
|
int ok = 0;
|
|
|
|
if (b->type == R_ANAL_BB_TYPE_LAST) ok = 1;
|
|
|
|
if (b->type == R_ANAL_BB_TYPE_FOOT) ok = 1;
|
|
|
|
if (b->jump == UT64_MAX && b->fail == UT64_MAX) ok=1;
|
|
|
|
if (ok) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" -r\n", b->addr);
|
|
|
|
// TODO: check if destination is outside the function boundaries
|
|
|
|
}
|
|
|
|
}
|
2015-01-09 11:47:40 +00:00
|
|
|
} else eprintf ("Cannot find function at 0x%08"PFMT64x"\n", core->offset);
|
2015-01-27 15:03:04 +00:00
|
|
|
free (name);
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-09-22 22:40:35 +00:00
|
|
|
#endif
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'x':
|
2014-06-16 03:58:00 +00:00
|
|
|
switch (input[2]) {
|
|
|
|
case '\0':
|
|
|
|
case ' ':
|
2014-09-22 22:40:35 +00:00
|
|
|
#if FCN_OLD
|
2014-06-16 03:58:00 +00:00
|
|
|
// TODO: sdbize!
|
|
|
|
// list xrefs from current address
|
|
|
|
{
|
|
|
|
ut64 addr = input[2]? r_num_math (core->num, input+2): core->offset;
|
2014-09-26 13:40:17 +00:00
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
|
2014-06-16 03:58:00 +00:00
|
|
|
if (fcn) {
|
|
|
|
RAnalRef *ref;
|
|
|
|
RListIter *iter;
|
|
|
|
r_list_foreach (fcn->refs, iter, ref) {
|
|
|
|
r_cons_printf ("%c 0x%08"PFMT64x" -> 0x%08"PFMT64x"\n",
|
|
|
|
ref->type, ref->at, ref->addr);
|
|
|
|
}
|
|
|
|
} else eprintf ("Cant find function\n");
|
|
|
|
}
|
2014-09-22 22:40:35 +00:00
|
|
|
#else
|
|
|
|
#warning TODO_ FCNOLD sdbize xrefs here
|
|
|
|
eprintf ("TODO\n");
|
|
|
|
#endif
|
2014-06-16 03:58:00 +00:00
|
|
|
break;
|
|
|
|
case 'c': // add meta xref
|
|
|
|
case 'd':
|
|
|
|
case 's':
|
|
|
|
case 'C': {
|
|
|
|
char *p;
|
|
|
|
ut64 a, b;
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
char *mi = strdup (input);
|
|
|
|
if (mi && mi[3]==' ' && (p=strchr (mi+4, ' '))) {
|
|
|
|
*p = 0;
|
|
|
|
a = r_num_math (core->num, mi+3);
|
|
|
|
b = r_num_math (core->num, p+1);
|
2014-09-26 13:40:17 +00:00
|
|
|
fcn = r_anal_get_fcn_in (core->anal, a, R_ANAL_FCN_TYPE_ROOT);
|
2014-06-16 03:58:00 +00:00
|
|
|
if (fcn) {
|
|
|
|
r_anal_fcn_xref_add (core->anal, fcn, a, b, input[2]);
|
|
|
|
} else eprintf ("Cannot add reference to non-function\n");
|
|
|
|
} else eprintf ("Usage: afx[cCd?] [src] [dst]\n");
|
|
|
|
free (mi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-': {
|
|
|
|
char *p;
|
|
|
|
ut64 a, b;
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
char *mi = strdup (input+2);
|
|
|
|
if (mi && *mi==' ' && (p=strchr (mi+1, ' '))) {
|
|
|
|
*p = 0;
|
|
|
|
a = r_num_math (core->num, mi);
|
|
|
|
b = r_num_math (core->num, p+1);
|
2014-09-26 13:40:17 +00:00
|
|
|
fcn = r_anal_get_fcn_in (core->anal, a, R_ANAL_FCN_TYPE_ROOT);
|
2014-06-16 03:58:00 +00:00
|
|
|
if (fcn) {
|
|
|
|
r_anal_fcn_xref_del (core->anal, fcn, a, b, -1);
|
|
|
|
} else eprintf ("Cannot del reference to non-function\n");
|
2015-02-12 23:36:05 +00:00
|
|
|
} else eprintf ("Usage: afx- [src] [dst]\n");
|
2014-06-16 03:58:00 +00:00
|
|
|
free (mi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2014-06-19 14:55:51 +00:00
|
|
|
case '?':{
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "afx[-cCd?] [src] [dst]", "# manage function references (see also ar?)",
|
|
|
|
"afxc", " sym.main+0x38 sym.printf", "add code ref",
|
|
|
|
"afxC", " sym.main sym.puts", "add call ref",
|
|
|
|
"afxd", " sym.main str.helloworld", "add data ref",
|
|
|
|
"afx-", " sym.main str.helloworld", "remove reference",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
}
|
|
|
|
break;
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
|
|
|
break;
|
2015-06-11 01:55:15 +00:00
|
|
|
case 'g': // "afg" - non-interactive VV
|
2015-06-11 10:23:30 +00:00
|
|
|
r_core_visual_graph (core, NULL, R_FALSE);
|
2015-06-11 01:55:15 +00:00
|
|
|
break;
|
2014-10-28 16:24:01 +00:00
|
|
|
case '?':{ // "af?"
|
2014-06-19 14:55:51 +00:00
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "af", "",
|
2014-11-08 00:03:04 +00:00
|
|
|
"af", " [name] ([addr]) (@ [addr])", "analyze functions (start at addr)",
|
2014-06-19 14:55:51 +00:00
|
|
|
"af+", " addr size name [type] [diff]", "add function",
|
|
|
|
"af-", " [addr]", "clean all function analysis data (or function at addr)",
|
2014-10-20 23:07:25 +00:00
|
|
|
"afa", "[?] [idx] [type] [name]", "add function argument",
|
|
|
|
"af[aAv?]", "[arg]", "manipulate args, fastargs and variables in function",
|
2015-02-12 23:36:05 +00:00
|
|
|
"afb+", " fa a sz [j] [f] ([t]( [d]))","add bb to function @ fcnaddr",
|
2015-01-29 12:41:38 +00:00
|
|
|
"afb", " [addr]", "List basic blocks of given function",
|
|
|
|
"afB", " 16", "set current function as thumb (change asm.bits)",
|
2014-10-20 23:07:25 +00:00
|
|
|
"afc", "@[addr]", "calculate the Cyclomatic Complexity (starting at addr)",
|
|
|
|
"afC[a]", " type @[addr]", "set calling convention for function (afC?=list cc types)",
|
2014-09-02 00:48:41 +00:00
|
|
|
"aff", "", "re-adjust function boundaries to fit",
|
2015-06-11 01:55:15 +00:00
|
|
|
"afg", "", "non-interactive ascii-art basic-block graph (See VV)",
|
2014-08-08 12:40:50 +00:00
|
|
|
"afi", " [addr|fcn.name]", "show function(s) information (verbose afl)",
|
2014-10-29 09:42:58 +00:00
|
|
|
"afl", "[*] [fcn name]", "list functions (addr, size, bbs, name)",
|
|
|
|
"afo", " [fcn.name]", "show address for the function named like this",
|
2014-06-19 14:55:51 +00:00
|
|
|
"afn", " name [addr]", "rename name for function at address (change flag too)",
|
2014-09-12 01:17:02 +00:00
|
|
|
"afna", "", "suggest automatic name for current offset",
|
2014-06-19 14:55:51 +00:00
|
|
|
"afs", " [addr] [fcnsign]", "get/set function signature at current address",
|
2014-10-20 23:07:25 +00:00
|
|
|
"afx", "[cCd-] src dst", "add/remove code/Call/data/string reference",
|
2014-06-19 14:55:51 +00:00
|
|
|
"afv", "[?] [idx] [type] [name]", "add local var on current function",
|
|
|
|
NULL};
|
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
break;
|
2014-12-13 17:06:01 +00:00
|
|
|
default:
|
2014-09-22 13:00:41 +00:00
|
|
|
{
|
2014-11-08 00:03:04 +00:00
|
|
|
char *uaddr = NULL, *name = NULL;
|
|
|
|
int depth = r_config_get_i (core->config, "anal.depth");
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
ut64 addr = core->offset;
|
|
|
|
|
|
|
|
// first undefine
|
|
|
|
if (input[1]==' ') {
|
|
|
|
name = strdup (input+2);
|
|
|
|
uaddr = strchr (name+1, ' ');
|
|
|
|
if (uaddr) {
|
|
|
|
*uaddr++ = 0;
|
|
|
|
addr = r_num_math (core->num, uaddr);
|
|
|
|
}
|
|
|
|
//depth = 1; // or 1?
|
|
|
|
// disable hasnext
|
|
|
|
}
|
|
|
|
//r_core_anal_undefine (core, core->offset);
|
|
|
|
/* resize function if overlaps */
|
|
|
|
fcn = r_anal_get_fcn_in (core->anal, addr, 0);
|
|
|
|
if (fcn) r_anal_fcn_resize (fcn, addr - fcn->addr);
|
|
|
|
r_core_anal_fcn (core, addr, UT64_MAX,
|
|
|
|
R_ANAL_REF_TYPE_NULL, depth);
|
|
|
|
if (name && *name) {
|
|
|
|
if (!setFunctionName (core, addr, name))
|
|
|
|
eprintf ("Cannot find function '%s' at 0x%08"PFMT64x"\n", name, addr);
|
|
|
|
}
|
|
|
|
free (name);
|
2014-09-22 13:00:41 +00:00
|
|
|
}
|
2014-01-23 01:31:51 +00:00
|
|
|
}
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-05-25 01:00:24 +00:00
|
|
|
static void __anal_reg_list (RCore *core, int type, int size, char mode) {
|
|
|
|
RReg *hack = core->dbg->reg;
|
2014-06-23 13:10:20 +00:00
|
|
|
int bits;
|
|
|
|
if (size > 0) //TODO: ar all
|
|
|
|
bits = size;
|
|
|
|
else bits = core->anal->bits;
|
2014-06-04 20:58:22 +00:00
|
|
|
const char *use_color;
|
2014-05-29 12:33:15 +00:00
|
|
|
int use_colors = r_config_get_i(core->config, "scr.color");
|
2014-06-04 20:58:22 +00:00
|
|
|
if (use_colors) {
|
|
|
|
#undef ConsP
|
|
|
|
#define ConsP(x) (core->cons && core->cons->pal.x)? core->cons->pal.x
|
|
|
|
use_color = ConsP(creg): Color_BWHITE;
|
|
|
|
} else {
|
|
|
|
use_color = NULL;
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
core->dbg->reg = core->anal->reg;
|
2015-05-05 22:38:23 +00:00
|
|
|
/* workaround for thumb */
|
|
|
|
if (core->anal->cur->arch == R_SYS_ARCH_ARM && bits==16) {
|
|
|
|
bits = 32;
|
|
|
|
}
|
2014-06-04 20:58:22 +00:00
|
|
|
r_debug_reg_list (core->dbg, type, bits, mode, use_color);
|
2014-05-25 01:00:24 +00:00
|
|
|
core->dbg->reg = hack;
|
|
|
|
}
|
|
|
|
|
2014-06-19 02:52:28 +00:00
|
|
|
static void ar_show_help(RCore *core) {
|
|
|
|
const char * help_message[] = {
|
|
|
|
"Usage: ar", "", "# Analysis Registers",
|
|
|
|
"ar", "", "Show 'gpr' registers",
|
|
|
|
"ar0", "", "Reset register arenas to 0",
|
|
|
|
"ar", " 16", "Show 16 bit registers",
|
|
|
|
"ar", " 32", "Show 32 bit registers",
|
|
|
|
"ar", " all", "Show all bit registers",
|
|
|
|
"ar", " <type>", "Show all registers of given type",
|
|
|
|
"ar=", "", "Show register values in columns",
|
|
|
|
"ar?"," <reg>", "Show register value",
|
|
|
|
"arb"," <type>", "Display hexdump of the given arena",
|
|
|
|
"arc"," <name>", "Conditional flag registers",
|
|
|
|
"ard"," <name>", "Show only different registers",
|
|
|
|
"arn"," <regalias>", "Get regname for pc,sp,bp,a0-3,zf,cf,of,sg",
|
|
|
|
"aro", "", "Show old (previous) register values",
|
|
|
|
"arp"," <file>", "Load register profile from file",
|
|
|
|
"ars", "", "Stack register state",
|
|
|
|
"art","","List all register types",
|
|
|
|
".ar*","", "Import register values as flags",
|
|
|
|
".ar-","", "Unflag all registers",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
r_core_cmd_help (core, help_message);
|
|
|
|
}
|
|
|
|
|
2014-06-17 08:23:11 +00:00
|
|
|
void cmd_anal_reg(RCore *core, const char *str) {
|
2014-05-26 01:06:29 +00:00
|
|
|
int size = 0, i, type = R_REG_TYPE_GPR;
|
2014-05-25 01:00:24 +00:00
|
|
|
int bits = (core->anal->bits & R_SYS_BITS_64)? 64: 32;
|
2014-05-29 12:33:15 +00:00
|
|
|
int use_colors = r_config_get_i(core->config, "scr.color");
|
2014-06-16 03:58:00 +00:00
|
|
|
struct r_reg_item_t *r;
|
2014-06-04 20:58:22 +00:00
|
|
|
const char *use_color;
|
2014-06-16 03:58:00 +00:00
|
|
|
const char *name;
|
|
|
|
char *arg;
|
|
|
|
|
2014-06-04 20:58:22 +00:00
|
|
|
if (use_colors) {
|
|
|
|
#define ConsP(x) (core->cons && core->cons->pal.x)? core->cons->pal.x
|
|
|
|
use_color = ConsP(creg): Color_BWHITE;
|
|
|
|
} else {
|
|
|
|
use_color = NULL;
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
switch (str[0]) {
|
2014-10-15 00:24:22 +00:00
|
|
|
case 'l':
|
|
|
|
{
|
|
|
|
RRegSet *rs = r_reg_regset_get (core->anal->reg, R_REG_TYPE_GPR);
|
|
|
|
if (rs) {
|
|
|
|
RRegItem *r;
|
|
|
|
RListIter *iter;
|
|
|
|
r_list_foreach (rs->regs, iter, r) {
|
|
|
|
r_cons_printf ("%s\n", r->name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2014-06-19 02:52:28 +00:00
|
|
|
case '0':
|
|
|
|
r_reg_arena_zero (core->anal->reg);
|
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case '?':
|
|
|
|
if (str[1]) {
|
|
|
|
ut64 off = r_reg_getv (core->anal->reg, str+1);
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"\n", off);
|
2014-06-19 02:52:28 +00:00
|
|
|
} else ar_show_help (core);
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-07-03 09:54:58 +00:00
|
|
|
case 'S':
|
|
|
|
{
|
|
|
|
int sz;
|
|
|
|
ut8 *buf = r_reg_get_bytes (
|
|
|
|
core->anal->reg, R_REG_TYPE_GPR, &sz);
|
|
|
|
r_cons_printf ("%d\n", sz);
|
2014-07-08 11:04:07 +00:00
|
|
|
free (buf);
|
2014-07-03 09:54:58 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'b':
|
2014-06-16 03:58:00 +00:00
|
|
|
{ // WORK IN PROGRESS // DEBUG COMMAND
|
|
|
|
int len;
|
|
|
|
const ut8 *buf = r_reg_get_bytes (core->dbg->reg, R_REG_TYPE_GPR, &len);
|
|
|
|
//r_print_hexdump (core->print, 0LL, buf, len, 16, 16);
|
|
|
|
r_print_hexdump (core->print, 0LL, buf, len, 32, 4);
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
2014-06-16 03:58:00 +00:00
|
|
|
// TODO: set flag values with drc zf=1
|
|
|
|
{
|
|
|
|
RRegItem *r;
|
|
|
|
const char *name = str+1;
|
|
|
|
while (*name==' ') name++;
|
|
|
|
if (*name && name[1]) {
|
|
|
|
r = r_reg_cond_get (core->dbg->reg, name);
|
|
|
|
if (r) {
|
|
|
|
r_cons_printf ("%s\n", r->name);
|
|
|
|
} else {
|
|
|
|
int id = r_reg_cond_from_string (name);
|
|
|
|
RRegFlags* rf = r_reg_cond_retrieve (core->dbg->reg, NULL);
|
|
|
|
if (rf) {
|
|
|
|
int o = r_reg_cond_bits (core->dbg->reg, id, rf);
|
|
|
|
core->num->value = o;
|
|
|
|
// ORLY?
|
|
|
|
r_cons_printf ("%d\n", o);
|
|
|
|
free (rf);
|
|
|
|
} else eprintf ("unknown conditional or flag register\n");
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
} else {
|
2014-06-16 03:58:00 +00:00
|
|
|
RRegFlags *rf = r_reg_cond_retrieve (core->dbg->reg, NULL);
|
2014-05-25 01:00:24 +00:00
|
|
|
if (rf) {
|
2014-06-16 03:58:00 +00:00
|
|
|
r_cons_printf ("| s:%d z:%d c:%d o:%d p:%d\n",
|
|
|
|
rf->s, rf->z, rf->c, rf->o, rf->p);
|
|
|
|
if (*name=='=') {
|
|
|
|
for (i=0; i<R_REG_COND_LAST; i++) {
|
|
|
|
r_cons_printf ("%s:%d ",
|
|
|
|
r_reg_cond_to_string (i),
|
|
|
|
r_reg_cond_bits (core->dbg->reg, i, rf));
|
|
|
|
}
|
|
|
|
r_cons_newline ();
|
|
|
|
} else {
|
|
|
|
for (i=0; i<R_REG_COND_LAST; i++) {
|
|
|
|
r_cons_printf ("%d %s\n",
|
|
|
|
r_reg_cond_bits (core->dbg->reg, i, rf),
|
|
|
|
r_reg_cond_to_string (i));
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
free (rf);
|
2014-05-25 01:00:24 +00:00
|
|
|
}
|
|
|
|
}
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-10-19 20:43:33 +00:00
|
|
|
case 's': // "drs"
|
2014-05-25 01:00:24 +00:00
|
|
|
switch (str[1]) {
|
|
|
|
case '-':
|
|
|
|
r_reg_arena_pop (core->dbg->reg);
|
|
|
|
// restore debug registers if in debugger mode
|
|
|
|
r_debug_reg_sync (core->dbg, 0, 1);
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
r_reg_arena_push (core->dbg->reg);
|
|
|
|
break;
|
2014-08-17 00:42:17 +00:00
|
|
|
case '?':{
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "drs", " # Register states commands",
|
|
|
|
"drs", "", "List register stack",
|
|
|
|
"drs+", "", "Push register state",
|
|
|
|
"drs-", "", "Pop register state",
|
|
|
|
NULL};
|
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_cons_printf ("%d\n", r_list_length (
|
2014-06-16 03:58:00 +00:00
|
|
|
core->dbg->reg->regset[0].pool));
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2015-06-19 19:52:35 +00:00
|
|
|
case 'p': // drp
|
2014-05-25 01:00:24 +00:00
|
|
|
if (!str[1]) {
|
|
|
|
if (core->dbg->reg->reg_profile_str) {
|
|
|
|
//core->anal->reg = core->dbg->reg;
|
|
|
|
r_cons_printf ("%s\n", core->dbg->reg->reg_profile_str);
|
|
|
|
//r_cons_printf ("%s\n", core->anal->reg->reg_profile);
|
2015-06-19 19:52:35 +00:00
|
|
|
} else {
|
|
|
|
eprintf ("No register profile defined. Try 'dr.'\n");
|
|
|
|
}
|
|
|
|
} else if (str[1] == 'j') {
|
|
|
|
// drpj
|
|
|
|
RListIter *iter;
|
|
|
|
RRegItem *r;
|
|
|
|
int i;
|
|
|
|
int first = 1;
|
|
|
|
static const char *types[R_REG_TYPE_LAST+1] = {
|
|
|
|
"gpr", "drx", "fpu", "mmx", "xmm", "flg", "seg", NULL
|
|
|
|
};
|
|
|
|
static const char *roles[R_REG_NAME_LAST+1] = {
|
|
|
|
"pc", "sp", "sr", "bp", "ao", "a1",
|
|
|
|
"a2", "a3", "a4", "a5", "a6", "zf",
|
|
|
|
"sf", "cf", "of", "sb", NULL
|
|
|
|
};
|
|
|
|
r_cons_printf ("{\"alias_info\":[");
|
|
|
|
for (i = 0; i < R_REG_NAME_LAST; i++) {
|
|
|
|
if (core->dbg->reg->name[i]) {
|
|
|
|
if (!first) r_cons_printf (",");
|
|
|
|
r_cons_printf ("{\"role\":%d,", i);
|
|
|
|
r_cons_printf ("\"role_str\":\"%s\",", roles[i]);
|
|
|
|
r_cons_printf ("\"reg\":\"%s\"}",
|
|
|
|
core->dbg->reg->name[i]);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_printf ("],\"reg_info\":[");
|
|
|
|
first = 1;
|
|
|
|
for (i = 0; i < R_REG_TYPE_LAST; i++) {
|
|
|
|
r_list_foreach (core->dbg->reg->regset[i].regs, iter, r) {
|
|
|
|
if (!first) r_cons_printf (",");
|
|
|
|
r_cons_printf ("{\"type\":%d,", r->type);
|
|
|
|
r_cons_printf ("\"type_str\":\"%s\",", types[r->type]);
|
|
|
|
r_cons_printf ("\"name\":\"%s\",", r->name);
|
|
|
|
r_cons_printf ("\"size\":%d,", r->size);
|
|
|
|
r_cons_printf ("\"offset\":%d}", r->offset);
|
|
|
|
first = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
r_cons_printf ("]}");
|
|
|
|
} else {
|
|
|
|
r_reg_set_profile (core->dbg->reg, str+2);
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-10-27 16:23:13 +00:00
|
|
|
case 't': // "drt"
|
2014-05-25 01:00:24 +00:00
|
|
|
for (i=0; (name=r_reg_get_type (i)); i++)
|
|
|
|
r_cons_printf ("%s\n", name);
|
|
|
|
break;
|
2014-10-27 16:23:13 +00:00
|
|
|
case 'n': // "drn"
|
2015-06-15 19:20:44 +00:00
|
|
|
if (*(str+1) == '\0'){
|
|
|
|
eprintf ("Oops. try drn [pc|sp|bp|a0|a1|a2|a3|zf|sf|nf|of]\n");
|
|
|
|
break;
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
name = r_reg_get_name (core->dbg->reg, r_reg_get_name_idx (str+2));
|
|
|
|
if (name && *name)
|
|
|
|
r_cons_printf ("%s\n", name);
|
|
|
|
else eprintf ("Oops. try drn [pc|sp|bp|a0|a1|a2|a3|zf|sf|nf|of]\n");
|
|
|
|
break;
|
2014-10-27 16:23:13 +00:00
|
|
|
case 'd': // "drd"
|
2014-06-04 20:58:22 +00:00
|
|
|
r_debug_reg_list (core->dbg, R_REG_TYPE_GPR, bits, 3, use_color); // XXX detect which one is current usage
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-10-27 16:23:13 +00:00
|
|
|
case 'o': // "dro"
|
2014-05-25 01:00:24 +00:00
|
|
|
r_reg_arena_swap (core->dbg->reg, R_FALSE);
|
2014-06-04 20:58:22 +00:00
|
|
|
r_debug_reg_list (core->dbg, R_REG_TYPE_GPR, bits, 0, use_color); // XXX detect which one is current usage
|
2014-05-25 01:00:24 +00:00
|
|
|
r_reg_arena_swap (core->dbg->reg, R_FALSE);
|
|
|
|
break;
|
2014-10-27 16:23:13 +00:00
|
|
|
case '=': // "dr="
|
2014-06-17 08:23:11 +00:00
|
|
|
__anal_reg_list (core, type, size, 2);
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-07-31 18:53:18 +00:00
|
|
|
case '-':
|
2014-05-25 01:00:24 +00:00
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
case '\0':
|
|
|
|
__anal_reg_list (core, type, size, str[0]);
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
arg = strchr (str+1, '=');
|
|
|
|
if (arg) {
|
2014-06-17 08:23:11 +00:00
|
|
|
char *ostr, *regname;
|
2014-05-25 01:00:24 +00:00
|
|
|
*arg = 0;
|
2014-08-08 00:11:23 +00:00
|
|
|
ostr = r_str_chop (strdup (str+1));
|
2014-06-17 08:23:11 +00:00
|
|
|
regname = r_str_clean (ostr);
|
2014-08-08 00:11:23 +00:00
|
|
|
r = r_reg_get (core->dbg->reg, regname, -1); //R_REG_TYPE_GPR);
|
2014-05-25 01:00:24 +00:00
|
|
|
if (r) {
|
2014-10-03 18:38:27 +00:00
|
|
|
eprintf ("%s 0x%08"PFMT64x" -> ", str,
|
2014-05-25 01:00:24 +00:00
|
|
|
r_reg_get_value (core->dbg->reg, r));
|
|
|
|
r_reg_set_value (core->dbg->reg, r,
|
|
|
|
r_num_math (core->num, arg+1));
|
|
|
|
r_debug_reg_sync (core->dbg, -1, R_TRUE);
|
2014-10-03 18:38:27 +00:00
|
|
|
eprintf ("0x%08"PFMT64x"\n",
|
2014-05-25 01:00:24 +00:00
|
|
|
r_reg_get_value (core->dbg->reg, r));
|
2014-06-17 08:23:11 +00:00
|
|
|
} else {
|
|
|
|
eprintf ("ar: Unknown register '%s'\n", regname);
|
|
|
|
}
|
|
|
|
free (ostr);
|
2014-05-25 01:00:24 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
size = atoi (str+1);
|
|
|
|
if (size==0) {
|
2014-08-08 00:25:18 +00:00
|
|
|
r = r_reg_get (core->dbg->reg, str+1, -1);
|
|
|
|
if (r) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"\n",
|
|
|
|
r_reg_get_value (core->dbg->reg, r));
|
|
|
|
return;
|
|
|
|
}
|
2014-05-25 01:00:24 +00:00
|
|
|
arg = strchr (str+1, ' ');
|
|
|
|
if (arg && size==0) {
|
|
|
|
*arg='\0';
|
|
|
|
size = atoi (arg);
|
|
|
|
} else size = bits;
|
|
|
|
type = r_reg_type_by_name (str+1);
|
|
|
|
}
|
|
|
|
if (type != R_REG_TYPE_LAST) {
|
|
|
|
__anal_reg_list (core, type, size, str[0]);
|
|
|
|
} else eprintf ("cmd_debug_reg: Unknown type\n");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-11 01:32:02 +00:00
|
|
|
static void esil_step(RCore *core, ut64 until_addr, const char *until_expr) {
|
|
|
|
// Stepping
|
|
|
|
int ret;
|
2014-10-03 18:05:33 +00:00
|
|
|
ut8 code[256];
|
2014-08-11 01:32:02 +00:00
|
|
|
RAnalOp op;
|
|
|
|
const char *name = r_reg_get_name (core->anal->reg, r_reg_get_name_idx ("pc"));
|
|
|
|
ut64 addr = r_reg_getv (core->anal->reg, name);
|
|
|
|
repeat:
|
|
|
|
if (r_cons_singleton()->breaked) {
|
|
|
|
eprintf ("[+] ESIL emulation interrupted at 0x%08"PFMT64x"\n", addr);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!core->anal->esil) {
|
2014-09-11 02:18:23 +00:00
|
|
|
int romem = r_config_get_i (core->config, "esil.romem");
|
|
|
|
int stats = r_config_get_i (core->config, "esil.stats");
|
2014-08-11 01:32:02 +00:00
|
|
|
core->anal->esil = r_anal_esil_new ();
|
2014-09-11 02:18:23 +00:00
|
|
|
r_anal_esil_setup (core->anal->esil, core->anal, romem, stats); // setup io
|
2014-08-11 01:32:02 +00:00
|
|
|
RList *entries = r_bin_get_entries (core->bin);
|
|
|
|
RBinAddr *entry = NULL;
|
|
|
|
RBinInfo *info = NULL;
|
|
|
|
if (entries && r_list_length(entries)) {
|
|
|
|
entry = (RBinAddr *) r_list_pop (entries);
|
|
|
|
info = r_bin_get_info (core->bin);
|
|
|
|
if (info->has_va)
|
|
|
|
addr = entry->vaddr;
|
|
|
|
else addr = entry->paddr;
|
|
|
|
eprintf ("PC=entry0\n");
|
|
|
|
r_list_push (entries, entry);
|
|
|
|
} else {
|
|
|
|
addr = core->offset;
|
|
|
|
eprintf ("PC=OFF\n");
|
|
|
|
}
|
|
|
|
r_reg_setv (core->anal->reg, name, addr);
|
2014-09-11 02:18:23 +00:00
|
|
|
// set memory read only
|
2014-08-11 01:32:02 +00:00
|
|
|
} else {
|
|
|
|
addr = r_reg_getv (core->anal->reg, name);
|
2014-09-14 00:52:30 +00:00
|
|
|
//eprintf ("PC=0x%llx\n", (ut64)addr);
|
2014-08-11 01:32:02 +00:00
|
|
|
}
|
2014-12-07 17:11:47 +00:00
|
|
|
if (core->anal->esil->delay)
|
2015-01-30 01:07:47 +00:00
|
|
|
addr = core->anal->esil->delay_addr;
|
2014-10-03 18:05:33 +00:00
|
|
|
r_io_read_at (core->io, addr, code, sizeof (code));
|
2014-08-11 01:32:02 +00:00
|
|
|
r_asm_set_pc (core->assembler, addr);
|
2014-10-03 18:05:33 +00:00
|
|
|
ret = r_anal_op (core->anal, &op, addr, code, sizeof (code));
|
2014-12-07 17:11:47 +00:00
|
|
|
core->anal->esil->delay = op.delay;
|
|
|
|
if (core->anal->esil->delay)
|
2015-01-30 01:07:47 +00:00
|
|
|
core->anal->esil->delay_addr = addr+op.size;
|
2014-10-03 18:05:33 +00:00
|
|
|
#if 0
|
|
|
|
eprintf ("RET %d\n", ret);
|
|
|
|
eprintf ("ADDR 0x%llx\n", addr);
|
|
|
|
eprintf ("DATA %x %x %x %x\n", code[0], code[1], code[2], code[3]);
|
|
|
|
eprintf ("ESIL %s\n", op.esil);
|
|
|
|
eprintf ("EMULATE %s\n", R_STRBUF_SAFEGET (&op.esil));
|
|
|
|
sleep (1);
|
|
|
|
#endif
|
2014-09-20 13:53:29 +00:00
|
|
|
if (ret) {
|
2014-08-11 01:32:02 +00:00
|
|
|
//r_anal_esil_eval (core->anal, input+2);
|
|
|
|
RAnalEsil *esil = core->anal->esil;
|
2014-09-15 15:13:05 +00:00
|
|
|
r_anal_esil_set_offset (esil, addr);
|
2014-08-11 01:32:02 +00:00
|
|
|
r_anal_esil_parse (esil, R_STRBUF_SAFEGET (&op.esil));
|
|
|
|
if (core->anal->cur && core->anal->cur->esil_post_loop)
|
2014-10-03 18:05:33 +00:00
|
|
|
core->anal->cur->esil_post_loop (esil, &op);
|
2014-08-11 01:32:02 +00:00
|
|
|
r_anal_esil_dumpstack (esil);
|
|
|
|
r_anal_esil_stack_free (esil);
|
2014-10-03 18:05:33 +00:00
|
|
|
}
|
2014-08-11 01:32:02 +00:00
|
|
|
ut64 newaddr = r_reg_getv (core->anal->reg, name);
|
2014-10-03 18:05:33 +00:00
|
|
|
|
2014-10-22 22:07:30 +00:00
|
|
|
ut64 follow = r_config_get_i (core->config, "dbg.follow");
|
2014-10-03 18:05:33 +00:00
|
|
|
if (follow>0) {
|
|
|
|
ut64 pc = r_debug_reg_get (core->dbg, "pc");
|
|
|
|
if ((pc<core->offset) || (pc > (core->offset+follow)))
|
|
|
|
r_core_cmd0 (core, "sr pc");
|
|
|
|
}
|
2014-09-28 01:27:22 +00:00
|
|
|
if (addr == newaddr) {
|
|
|
|
if (op.size<1)
|
|
|
|
op.size = 1; // avoid inverted stepping
|
2014-08-11 01:32:02 +00:00
|
|
|
r_reg_setv (core->anal->reg, name, addr + op.size);
|
2014-09-28 01:27:22 +00:00
|
|
|
}
|
2015-01-30 01:07:47 +00:00
|
|
|
if (core->dbg->trace->enabled) {
|
|
|
|
RReg *reg = core->dbg->reg;
|
|
|
|
core->dbg->reg = core->anal->reg;
|
|
|
|
r_debug_trace_pc (core->dbg);
|
|
|
|
core->dbg->reg = reg;
|
|
|
|
}
|
2014-08-11 01:32:02 +00:00
|
|
|
// check addr
|
|
|
|
if (until_addr != UT64_MAX) {
|
2015-02-28 22:25:11 +00:00
|
|
|
if (r_reg_getv (core->anal->reg, name) == until_addr) {
|
2014-08-11 01:32:02 +00:00
|
|
|
eprintf ("ADDR BREAK\n");
|
|
|
|
} else goto repeat;
|
|
|
|
}
|
2014-09-26 13:40:17 +00:00
|
|
|
// check esil
|
2014-08-11 01:32:02 +00:00
|
|
|
if (until_expr) {
|
|
|
|
if (r_anal_esil_condition (core->anal->esil, until_expr)) {
|
|
|
|
eprintf ("ESIL BREAK!\n");
|
|
|
|
} else goto repeat;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-10-15 00:24:22 +00:00
|
|
|
static void cmd_address_info(RCore *core, const char *addrstr, int fmt) {
|
|
|
|
ut64 addr, type;
|
|
|
|
if (!addrstr || !*addrstr) {
|
|
|
|
addr = core->offset;
|
|
|
|
} else {
|
|
|
|
addr = r_num_math (core->num, addrstr);
|
|
|
|
}
|
|
|
|
type = r_core_anal_address (core, addr);
|
|
|
|
int isp = 0;
|
|
|
|
switch(fmt) {
|
|
|
|
case 'j':
|
|
|
|
#define COMMA isp++?",":""
|
|
|
|
r_cons_printf ("{");
|
2014-10-15 14:05:47 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_PROGRAM)
|
|
|
|
r_cons_printf ("%s\"program\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_LIBRARY)
|
|
|
|
r_cons_printf ("%s\"library\":true", COMMA);
|
2014-10-15 00:24:22 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_EXEC)
|
|
|
|
r_cons_printf ("%s\"exec\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_READ)
|
|
|
|
r_cons_printf ("%s\"read\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_WRITE)
|
|
|
|
r_cons_printf ("%s\"write\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_FLAG)
|
|
|
|
r_cons_printf ("%s\"flag\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_FUNC)
|
|
|
|
r_cons_printf ("%s\"func\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_STACK)
|
|
|
|
r_cons_printf ("%s\"stack\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_HEAP)
|
|
|
|
r_cons_printf ("%s\"heap\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_REG)
|
|
|
|
r_cons_printf ("%s\"reg\":true", COMMA);
|
2014-10-24 19:31:46 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_ASCII)
|
|
|
|
r_cons_printf ("%s\"ascii\":true", COMMA);
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_SEQUENCE)
|
|
|
|
r_cons_printf ("%s\"sequence\":true", COMMA);
|
2014-10-15 00:24:22 +00:00
|
|
|
r_cons_printf ("}");
|
|
|
|
break;
|
|
|
|
default:
|
2014-10-15 14:05:47 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_PROGRAM)
|
|
|
|
r_cons_printf ("program\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_LIBRARY)
|
|
|
|
r_cons_printf ("library\n");
|
2014-10-15 00:24:22 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_EXEC)
|
|
|
|
r_cons_printf ("exec\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_READ)
|
|
|
|
r_cons_printf ("read\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_WRITE)
|
|
|
|
r_cons_printf ("write\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_FLAG)
|
|
|
|
r_cons_printf ("flag\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_FUNC)
|
|
|
|
r_cons_printf ("func\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_STACK)
|
|
|
|
r_cons_printf ("stack\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_HEAP)
|
|
|
|
r_cons_printf ("heap\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_REG)
|
|
|
|
r_cons_printf ("reg\n");
|
2014-10-24 19:31:46 +00:00
|
|
|
if (type & R_ANAL_ADDR_TYPE_ASCII)
|
|
|
|
r_cons_printf ("ascii\n");
|
|
|
|
if (type & R_ANAL_ADDR_TYPE_SEQUENCE)
|
|
|
|
r_cons_printf ("sequence\n");
|
2014-10-15 00:24:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-05 06:34:54 +00:00
|
|
|
static void cmd_anal_info(RCore *core, const char *input) {
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
case '?':
|
|
|
|
eprintf ("Usage: ai @ rsp\n");
|
2014-01-23 01:31:51 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case ' ':
|
2014-12-05 06:51:21 +00:00
|
|
|
cmd_address_info (core, input, 0);
|
2014-10-15 00:24:22 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case 'j': // "aij"
|
2014-12-05 06:51:21 +00:00
|
|
|
cmd_address_info (core, input+1, 'j');
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
default:
|
|
|
|
cmd_address_info (core, NULL, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-13 23:14:30 +00:00
|
|
|
static void cmd_esil_mem (RCore *core, const char *input) {
|
2015-01-27 11:46:15 +00:00
|
|
|
ut64 curoff = core->offset;
|
2015-03-13 23:14:30 +00:00
|
|
|
ut64 addr = 0x100000;
|
|
|
|
ut32 size = 0xf0000;
|
|
|
|
char name[128];
|
2015-01-27 11:46:15 +00:00
|
|
|
RCoreFile *cf;
|
|
|
|
RFlagItem *fi;
|
|
|
|
char uri[32];
|
2015-03-16 00:37:53 +00:00
|
|
|
char nomalloc[256];
|
2015-03-13 23:14:30 +00:00
|
|
|
char *p;
|
2015-01-27 11:46:15 +00:00
|
|
|
if (*input=='?') {
|
2015-03-13 23:14:30 +00:00
|
|
|
eprintf ("Usage: [addr] [size] [name]\n");
|
|
|
|
eprintf ("Default: 0x100000 0xf0000\n");
|
2015-01-27 11:46:15 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-03-16 00:37:53 +00:00
|
|
|
p = strncpy (nomalloc, input, 255);
|
|
|
|
if ((p = strchr (p, ' '))) {
|
2015-03-13 23:14:30 +00:00
|
|
|
while (*p == ' ') p++;
|
|
|
|
addr = r_num_math (core->num, p);
|
2015-03-16 00:37:53 +00:00
|
|
|
if ((p = strchr (p, ' '))) {
|
2015-03-13 23:14:30 +00:00
|
|
|
while (*p == ' ') p++;
|
2015-03-14 15:42:14 +00:00
|
|
|
size = (ut32)r_num_math (core->num, p);
|
|
|
|
if (size<1)
|
|
|
|
size = 0xf0000;
|
2015-03-16 00:37:53 +00:00
|
|
|
if ((p = strchr (p, ' '))) {
|
2015-03-14 15:42:14 +00:00
|
|
|
while (*p == ' ') p++;
|
|
|
|
snprintf (name, 128, "mem.%s", p);
|
|
|
|
} else snprintf (name, 128, "mem.0x%"PFMT64x"_0x%x", addr, size);
|
|
|
|
} else snprintf (name, 128, "mem.0x%"PFMT64x"_0x%x", addr, size);
|
2015-03-13 23:14:30 +00:00
|
|
|
} else snprintf (name, 128, "mem.0x%"PFMT64x"_0x%x", addr, size);
|
|
|
|
|
|
|
|
fi = r_flag_get (core->flags, name);
|
2015-01-27 11:46:15 +00:00
|
|
|
if (fi) {
|
|
|
|
if (*input=='-') {
|
2015-03-13 23:14:30 +00:00
|
|
|
cf = r_core_file_get_by_fd (core, fi->offset);
|
|
|
|
r_core_file_close (core, cf);
|
|
|
|
r_flag_unset (core->flags, name, NULL);
|
|
|
|
eprintf ("Deinitialized %s\n", name);
|
2015-01-27 11:46:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-03-13 23:14:30 +00:00
|
|
|
eprintf ("Cannot create mem here, mem allready lives here");
|
|
|
|
return;
|
2015-01-27 11:46:15 +00:00
|
|
|
}
|
|
|
|
if (*input=='-') {
|
2015-03-13 23:14:30 +00:00
|
|
|
eprintf ("Cannot deinitialize %s\n", name);
|
2015-01-27 11:46:15 +00:00
|
|
|
return;
|
|
|
|
}
|
2015-04-08 11:07:46 +00:00
|
|
|
snprintf (uri, sizeof (uri), "malloc://%d", (int)size);
|
2015-03-13 23:14:30 +00:00
|
|
|
cf = r_core_file_open (core, uri, R_IO_RW, addr);
|
|
|
|
if (cf)
|
|
|
|
r_flag_set (core->flags, name, addr, size, 0);
|
2015-01-27 11:46:15 +00:00
|
|
|
//r_core_cmdf (core, "f stack_fd=`on malloc://%d 0x%08"
|
|
|
|
// PFMT64x"`", stack_size, stack_addr);
|
|
|
|
//r_core_cmdf (core, "f stack=0x%08"PFMT64x, stack_addr);
|
|
|
|
//r_core_cmdf (core, "dr %s=0x%08"PFMT64x, sp, stack_ptr);
|
|
|
|
//r_debug_reg_set (core->dbg, sp, stack_ptr);
|
|
|
|
//r_core_cmdf (core, "ar %s=0x%08"PFMT64x, sp, stack_ptr);
|
|
|
|
//r_core_cmdf (core, "f %s=%s", sp, sp);
|
|
|
|
r_core_seek (core, curoff, 0);
|
|
|
|
}
|
|
|
|
|
2014-12-05 06:34:54 +00:00
|
|
|
static void cmd_anal_esil(RCore *core, const char *input) {
|
2014-12-05 17:56:33 +00:00
|
|
|
RAnalEsil *esil = core->anal->esil;
|
2014-12-05 06:34:54 +00:00
|
|
|
ut64 addr = core->offset;
|
2014-12-05 17:56:33 +00:00
|
|
|
int romem = r_config_get_i (core->config, "esil.romem");
|
|
|
|
int stats = r_config_get_i (core->config, "esil.stats");
|
|
|
|
ut64 until_addr = UT64_MAX;
|
|
|
|
const char *until_expr = NULL;
|
2015-01-30 00:55:21 +00:00
|
|
|
RAnalOp *op;
|
2014-12-05 06:34:54 +00:00
|
|
|
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2015-06-16 08:45:54 +00:00
|
|
|
case 'p': // "aep "
|
|
|
|
if (input[1] == ' ') {
|
|
|
|
// seek to this address
|
|
|
|
r_core_cmd0 (core, "aei"); // init vm
|
2015-06-22 22:01:41 +00:00
|
|
|
r_core_cmd0 (core, "aeim"); // init stack
|
2015-06-16 08:45:54 +00:00
|
|
|
r_core_cmdf (core, "ar pc=%s", input+2);
|
|
|
|
r_core_cmd0 (core, ".ar*");
|
|
|
|
} else {
|
|
|
|
eprintf ("Missing argument\n");
|
|
|
|
}
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case 'r':
|
|
|
|
// 'aer' is an alias for 'ar'
|
2015-01-27 11:46:15 +00:00
|
|
|
cmd_anal_reg (core, input+1);
|
2015-02-22 10:18:40 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case ' ':
|
2014-12-05 17:56:33 +00:00
|
|
|
//r_anal_esil_eval (core->anal, input+1);
|
|
|
|
if (!esil) {
|
2014-12-09 23:54:57 +00:00
|
|
|
core->anal->esil = esil = r_anal_esil_new ();
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
2014-12-05 17:56:33 +00:00
|
|
|
r_anal_esil_setup (esil, core->anal, romem, stats); // setup io
|
|
|
|
r_anal_esil_set_offset (esil, core->offset);
|
|
|
|
r_anal_esil_parse (esil, input+1);
|
|
|
|
r_anal_esil_dumpstack (esil);
|
|
|
|
r_anal_esil_stack_free (esil);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
2014-12-05 17:56:33 +00:00
|
|
|
case 's':
|
2015-01-30 00:55:21 +00:00
|
|
|
// "aes" "aeso" "aesu" "aesue"
|
2014-12-05 06:34:54 +00:00
|
|
|
// aes -> single step
|
2015-01-30 00:55:21 +00:00
|
|
|
// aeso -> single step over
|
2014-12-05 06:34:54 +00:00
|
|
|
// aesu -> until address
|
|
|
|
// aesue -> until esil expression
|
2015-01-30 00:55:21 +00:00
|
|
|
switch (input[1]) {
|
|
|
|
case 'u':
|
|
|
|
if (input[2] == 'e') {
|
|
|
|
until_expr = input + 3;
|
|
|
|
} else {
|
|
|
|
until_addr = r_num_math (core->num, input + 2);
|
|
|
|
}
|
|
|
|
esil_step (core, until_addr, until_expr);
|
2015-06-27 23:42:21 +00:00
|
|
|
r_core_cmd0 (core, ".ar*");
|
2015-01-30 00:55:21 +00:00
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
// step over
|
|
|
|
op = r_core_anal_op (core, addr);
|
|
|
|
if (op && op->type == R_ANAL_OP_TYPE_CALL) {
|
|
|
|
until_addr = addr + op->size;
|
|
|
|
}
|
|
|
|
esil_step (core, until_addr, until_expr);
|
|
|
|
r_anal_op_free (op);
|
2015-06-27 23:42:21 +00:00
|
|
|
r_core_cmd0 (core, ".ar*");
|
2015-01-30 00:55:21 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
esil_step (core, until_addr, until_expr);
|
2015-06-27 23:42:21 +00:00
|
|
|
r_core_cmd0 (core, ".ar*");
|
2015-01-30 00:55:21 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
// aec -> continue until ^C
|
|
|
|
// aecu -> until address
|
|
|
|
// aecue -> until esil expression
|
2014-12-05 17:56:33 +00:00
|
|
|
if (input[1] == 'u' && input[2] == 'e')
|
|
|
|
until_expr = input + 3;
|
|
|
|
else if (input[1] == 'u')
|
2015-05-31 22:48:57 +00:00
|
|
|
until_addr = r_num_math (core->num, input + 2);
|
2014-12-09 16:45:44 +00:00
|
|
|
else until_expr = "0";
|
|
|
|
esil_step (core, until_addr, until_expr);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
2015-02-22 10:18:40 +00:00
|
|
|
case 'd': // "aed"
|
2014-12-09 16:45:44 +00:00
|
|
|
r_anal_esil_free (esil);
|
2014-12-05 06:34:54 +00:00
|
|
|
core->anal->esil = NULL;
|
|
|
|
break;
|
2015-02-22 10:18:40 +00:00
|
|
|
case 'i': // "aei"
|
2015-01-27 11:46:15 +00:00
|
|
|
switch (input [1]) {
|
2015-06-22 22:01:41 +00:00
|
|
|
case 's':
|
2015-03-13 23:14:30 +00:00
|
|
|
case 'm':
|
|
|
|
cmd_esil_mem (core, input+2);
|
2015-01-27 11:46:15 +00:00
|
|
|
break;
|
|
|
|
case '?':
|
2015-03-13 23:14:30 +00:00
|
|
|
cmd_esil_mem (core, "?");
|
2015-01-29 11:16:37 +00:00
|
|
|
break;
|
2015-01-27 11:46:15 +00:00
|
|
|
case 0:
|
|
|
|
r_anal_esil_free (esil);
|
|
|
|
// reinitialize
|
|
|
|
esil = core->anal->esil = r_anal_esil_new ();
|
|
|
|
romem = r_config_get_i (core->config, "esil.romem");
|
|
|
|
stats = r_config_get_i (core->config, "esil.stats");
|
|
|
|
r_anal_esil_setup (esil, core->anal, romem, stats); // setup io
|
2015-03-12 15:45:23 +00:00
|
|
|
esil->debug = (int)r_config_get_i (core->config, "esil.debug");
|
2015-01-27 11:46:15 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'k':
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[1]) {
|
2014-12-09 16:45:44 +00:00
|
|
|
case '\0':
|
|
|
|
input = "123*";
|
|
|
|
case ' ':
|
2015-04-01 14:06:53 +00:00
|
|
|
if (esil && esil->stats) {
|
2014-12-09 16:45:44 +00:00
|
|
|
char *out = sdb_querys (esil->stats, NULL, 0, input+2);
|
|
|
|
if (out) {
|
|
|
|
r_cons_printf ("%s\n", out);
|
|
|
|
free (out);
|
|
|
|
}
|
|
|
|
} else eprintf ("esil.stats is empty. Run 'aei'\n");
|
|
|
|
break;
|
|
|
|
case '-':
|
2015-04-01 14:06:53 +00:00
|
|
|
if (esil) {
|
|
|
|
sdb_reset (esil->stats);
|
|
|
|
}
|
2014-12-09 16:45:44 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
{
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalBlock *bb;
|
|
|
|
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal,
|
|
|
|
core->offset, R_ANAL_FCN_TYPE_FCN | R_ANAL_FCN_TYPE_SYM);
|
|
|
|
if (fcn) {
|
|
|
|
// emulate every instruction in the function recursively across all the basic blocks
|
|
|
|
r_list_foreach (fcn->bbs, iter, bb) {
|
|
|
|
ut64 pc = bb->addr;
|
|
|
|
ut64 end = bb->addr +bb->size;
|
|
|
|
RAnalOp op;
|
|
|
|
ut8 *buf;
|
|
|
|
int ret, bbs = end-pc;
|
|
|
|
if (bbs<1 || bbs > 0xfffff) {
|
|
|
|
eprintf ("Invalid block size\n");
|
|
|
|
}
|
|
|
|
eprintf ("Emulate basic block 0x%08"PFMT64x" - 0x%08"PFMT64x"\n",pc, end);
|
|
|
|
buf = malloc (bbs+1);
|
|
|
|
r_io_read_at (core->io, pc, buf, bbs);
|
|
|
|
while (pc<end) {
|
|
|
|
r_asm_set_pc (core->assembler, pc);
|
|
|
|
ret = r_anal_op (core->anal, &op, addr, buf, 32); // read overflow
|
|
|
|
if (ret) {
|
|
|
|
r_reg_setv (core->anal->reg, "pc", pc);
|
2014-12-05 17:56:33 +00:00
|
|
|
r_anal_esil_parse (esil, R_STRBUF_SAFEGET (&op.esil));
|
|
|
|
r_anal_esil_dumpstack (esil);
|
|
|
|
r_anal_esil_stack_free (esil);
|
2014-12-05 06:34:54 +00:00
|
|
|
pc += op.size;
|
|
|
|
} else {
|
|
|
|
pc += 4; // XXX
|
2014-10-06 00:36:22 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
} else eprintf ("Cannot find function at 0x%08"PFMT64x"\n", core->offset);
|
|
|
|
}
|
|
|
|
break;
|
2015-04-26 12:35:37 +00:00
|
|
|
case 't': // "aet"
|
2015-03-30 13:15:25 +00:00
|
|
|
switch (input[1]) {
|
2015-04-26 12:35:37 +00:00
|
|
|
case 'r': // "aetr"
|
2015-03-30 13:15:25 +00:00
|
|
|
{
|
2015-04-26 12:35:37 +00:00
|
|
|
// anal ESIL to REIL.
|
2015-03-30 13:15:25 +00:00
|
|
|
int romem = r_config_get_i (core->config, "esil.romem");
|
|
|
|
int stats = r_config_get_i (core->config, "esil.stats");
|
|
|
|
RAnalEsil *esil = r_anal_esil_new ();
|
|
|
|
r_anal_esil_to_reil_setup (esil, core->anal, romem, stats);
|
|
|
|
r_anal_esil_set_offset (esil, core->offset);
|
|
|
|
r_anal_esil_parse (esil, input+2);
|
|
|
|
r_anal_esil_dumpstack (esil);
|
|
|
|
r_anal_esil_stack_free (esil);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2015-04-01 01:01:44 +00:00
|
|
|
case '?':
|
|
|
|
if (input[1]=='?') {
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Examples:", "ESIL", " examples and documentation",
|
|
|
|
"+", "=", "A+=B => B,A,+=",
|
|
|
|
"+", "", "A=A+B => B,A,+,A,=",
|
|
|
|
"*", "=", "A*=B => B,A,*=",
|
|
|
|
"/", "=", "A/=B => B,A,/=",
|
|
|
|
"&", "=", "and ax, bx => bx,ax,&=",
|
|
|
|
"|", "", "or r0, r1, r2 => r2,r1,|,r0,=",
|
|
|
|
"^", "=", "xor ax, bx => bx,ax,^=",
|
|
|
|
">>", "=", "shr ax, bx => bx,ax,>>= # shift right",
|
|
|
|
"<<", "=", "shr ax, bx => bx,ax,<<= # shift left",
|
|
|
|
"", "[]", "mov eax,[eax] => eax,[],eax,=",
|
|
|
|
"=", "[]", "mov [eax+3], 1 => 1,3,eax,+,=[]",
|
|
|
|
"=", "[1]", "mov byte[eax],1 => 1,eax,=[1]",
|
|
|
|
"=", "[8]", "mov [rax],1 => 1,rax,=[8]",
|
|
|
|
"$", "", "int 0x80 => 0x80,$",
|
|
|
|
"$$", "", "simulate a hardware trap",
|
|
|
|
"==", "", "pops twice, compare and update esil flags",
|
|
|
|
"<", "", "compare for smaller",
|
|
|
|
"<", "=", "compare for smaller or equal",
|
|
|
|
">", "", "compare for bigger",
|
|
|
|
">", "=", "compare bigger for or equal",
|
|
|
|
"?{", "", "if poped value != 0 run the block until }",
|
|
|
|
"POP", "", "drops last element in the esil stack",
|
|
|
|
"TODO", "", "the instruction is not yet esilized",
|
|
|
|
"STACK", "", "show contents of stack",
|
|
|
|
"CLEAR", "", "clears the esil stack",
|
|
|
|
"BREAK", "", "terminates the string parsing",
|
|
|
|
"GOTO", "", "jump to the Nth word poped from the stack",
|
|
|
|
NULL};
|
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
/* fall through */
|
2014-12-05 06:34:54 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
const char* help_msg[] = {
|
2014-08-08 16:18:40 +00:00
|
|
|
"Usage:", "ae[idesr?] [arg]", "ESIL code emulation",
|
2015-04-01 01:01:44 +00:00
|
|
|
"ae?", "", "show this help",
|
|
|
|
"ae??", "", "show ESIL help",
|
2014-08-08 16:18:40 +00:00
|
|
|
"aei", "", "initialize ESIL VM state",
|
2015-06-22 22:01:41 +00:00
|
|
|
"aeim", "", "initialize ESIL VM stack (aeim- remove)",
|
2014-08-08 16:18:40 +00:00
|
|
|
"aed", "", "deinitialize ESIL VM state",
|
|
|
|
"ae", " [expr]", "evaluate ESIL expression",
|
2015-06-16 08:45:54 +00:00
|
|
|
"aep", " [addr]", "change esil PC to this address",
|
2014-09-11 02:18:23 +00:00
|
|
|
"aef", " [addr]", "emulate function",
|
|
|
|
"aek", " [query]", "perform sdb query on ESIL.info",
|
|
|
|
"aek-", "", "resets the ESIL.info sdb instance",
|
2014-08-11 01:32:02 +00:00
|
|
|
"aec", "", "continue until ^C",
|
|
|
|
"aecu", " [addr]", "continue until address",
|
|
|
|
"aecue", " [esil]", "continue until esil expression match",
|
2015-04-26 12:35:37 +00:00
|
|
|
"aetr", "[esil]", "Convert an ESIL Expression to REIL",
|
2014-08-08 16:18:40 +00:00
|
|
|
"aes", "", "perform emulated debugger step",
|
2014-08-11 01:32:02 +00:00
|
|
|
"aesu", " [addr]", "step until given address",
|
|
|
|
"aesue", " [esil]", "step until esil expression match",
|
2014-08-08 16:18:40 +00:00
|
|
|
"aer", " [..]", "handle ESIL registers like 'ar' or 'dr' does",
|
|
|
|
NULL};
|
2014-12-05 06:34:54 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
2014-06-16 03:58:00 +00:00
|
|
|
}
|
2013-05-04 00:35:52 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_anal_opcode(RCore *core, const char *input) {
|
|
|
|
int l, len = core->blocksize;
|
|
|
|
ut32 tbs = core->blocksize;
|
|
|
|
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
case '?':
|
|
|
|
{
|
|
|
|
const char* help_msg[] = {
|
2014-06-19 14:55:51 +00:00
|
|
|
"Usage:", "ao[e?] [len]", "Analyze Opcodes",
|
|
|
|
"aoj", "", "display opcode analysis information in JSON",
|
|
|
|
"aoe", "", "emulate opcode at current offset",
|
|
|
|
"aos", " [esil]", "show sdb representation of esil expression (TODO)",
|
|
|
|
"aoe", " 4", "emulate 4 opcodes starting at current offset",
|
|
|
|
"ao", " 5", "display opcode analysis of 5 opcodes",
|
2015-05-21 19:05:22 +00:00
|
|
|
"ao*", "", "display opcode in r commands",
|
2014-06-19 14:55:51 +00:00
|
|
|
NULL};
|
2014-12-05 06:34:54 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'j':
|
|
|
|
{
|
2015-05-18 08:46:19 +00:00
|
|
|
int count = 1;
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1] && input[2]) {
|
|
|
|
l = (int) r_num_get (core->num, input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (l>0) count = l;
|
|
|
|
if (l>tbs) {
|
|
|
|
r_core_block_size (core, l*4);
|
|
|
|
//len = l;
|
2013-12-14 03:15:01 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
} else {
|
|
|
|
len = l = core->blocksize;
|
|
|
|
count = 1;
|
|
|
|
}
|
2014-12-05 17:56:33 +00:00
|
|
|
core_anal_bytes (core, core->block, len, count, 'j');
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
eprintf ("TODO: See 'ae' command\n");
|
|
|
|
break;
|
2015-05-21 19:05:22 +00:00
|
|
|
case '*':
|
|
|
|
r_core_anal_hint_list (core->anal, input[0]);
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
default:
|
|
|
|
{
|
|
|
|
int count = 0;
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[0]) {
|
|
|
|
l = (int) r_num_get (core->num, input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (l>0) count = l;
|
|
|
|
if (l>tbs) {
|
|
|
|
r_core_block_size (core, l*4);
|
|
|
|
//len = l;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
len = l = core->blocksize;
|
|
|
|
count = 1;
|
|
|
|
}
|
2014-12-05 17:56:33 +00:00
|
|
|
core_anal_bytes (core, core->block, len, count, 0);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-13 10:28:17 +00:00
|
|
|
static void cmd_anal_calls(RCore *core, const char *input) {
|
|
|
|
int minop = 1; // 4
|
|
|
|
ut8 buf[32];
|
2015-05-23 11:35:31 +00:00
|
|
|
RBinFile *binfile;
|
2014-12-13 10:28:17 +00:00
|
|
|
RAnalOp op;
|
|
|
|
ut64 addr, addr_end;
|
2015-01-18 01:49:19 +00:00
|
|
|
ut64 len = r_num_math (core->num, input);
|
2014-12-13 10:28:17 +00:00
|
|
|
if (len > 0xffffff) {
|
|
|
|
eprintf ("Too big\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (len<1) {
|
|
|
|
len = r_num_math (core->num, "$SS-($$-$S)"); // section size
|
|
|
|
}
|
2015-05-23 11:35:31 +00:00
|
|
|
binfile = r_core_bin_cur (core);
|
|
|
|
if (!binfile){
|
|
|
|
eprintf ("cur binfile null\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (len > binfile->size){
|
|
|
|
eprintf ("section size greater than file size\n");
|
|
|
|
return;
|
|
|
|
}
|
2014-12-13 10:28:17 +00:00
|
|
|
addr = core->offset;
|
|
|
|
addr_end = addr + len;
|
|
|
|
while (addr < addr_end) {
|
|
|
|
r_io_read_at (core->io, addr, buf, sizeof (buf));
|
|
|
|
if (r_anal_op (core->anal, &op, addr, buf, sizeof (buf))) {
|
|
|
|
if (op.size<1)
|
|
|
|
op.size = minop; // XXX must be +4 on arm/mips/.. like we do in disasm.c
|
|
|
|
if (op.type == R_ANAL_OP_TYPE_CALL) {
|
2015-03-16 01:52:26 +00:00
|
|
|
// eprintf ("af @ 0x%08"PFMT64x"\n", op.jump);
|
2014-12-13 10:28:17 +00:00
|
|
|
r_core_cmdf (core, "af@0x%08"PFMT64x, op.jump);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
op.size = minop;
|
|
|
|
}
|
|
|
|
addr += op.size;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-12-05 06:34:54 +00:00
|
|
|
static void cmd_anal_syscall(RCore *core, const char *input) {
|
2014-12-05 17:56:33 +00:00
|
|
|
RSyscallItem *si;
|
|
|
|
RListIter *iter;
|
|
|
|
RList *list;
|
2015-01-30 00:55:21 +00:00
|
|
|
char *out;
|
|
|
|
int n;
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage: as[ljk?]", "", "syscall name <-> number utility",
|
|
|
|
"as", "", "show current syscall and arguments",
|
|
|
|
"as", " 4", "show syscall 4 based on asm.os and current regs/mem",
|
|
|
|
"asj", "", "list of syscalls in JSON",
|
|
|
|
"asl", "", "list of syscalls by asm.os and asm.arch",
|
|
|
|
"asl", " close", "returns the syscall number for close",
|
|
|
|
"asl", " 4", "returns the name of the syscall number 4",
|
|
|
|
"ask", " [query]", "perform syscall/ queries",
|
|
|
|
NULL};
|
2014-12-05 17:56:33 +00:00
|
|
|
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
case 'l': // "asl"
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1] == ' ') {
|
2015-01-30 00:55:21 +00:00
|
|
|
if ((n = atoi (input+2))>0) {
|
2014-12-05 17:56:33 +00:00
|
|
|
si = r_syscall_get (core->anal->syscall, n, -1);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (si) r_cons_printf ("%s\n", si->name);
|
|
|
|
else eprintf ("Unknown syscall number\n");
|
|
|
|
} else {
|
2015-01-30 00:55:21 +00:00
|
|
|
n = r_syscall_get_num (core->anal->syscall, input+2);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (n != -1) r_cons_printf ("%d\n", n);
|
|
|
|
else eprintf ("Unknown syscall name\n");
|
|
|
|
}
|
|
|
|
} else {
|
2014-12-05 17:56:33 +00:00
|
|
|
list = r_syscall_list (core->anal->syscall);
|
2014-12-05 06:34:54 +00:00
|
|
|
r_list_foreach (list, iter, si) {
|
|
|
|
r_cons_printf ("%s = 0x%02x.%d\n",
|
|
|
|
si->name, si->swi, si->num);
|
|
|
|
}
|
|
|
|
r_list_free (list);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'j': // "asj"
|
2014-12-05 17:56:33 +00:00
|
|
|
list = r_syscall_list (core->anal->syscall);
|
|
|
|
r_cons_printf ("[");
|
|
|
|
r_list_foreach (list, iter, si) {
|
|
|
|
r_cons_printf ("{\"name\":\"%s\","
|
|
|
|
"\"swi\":\"%d\",\"num\":\"%d\"}",
|
|
|
|
si->name, si->swi, si->num);
|
|
|
|
if (iter->n) r_cons_printf (",");
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
2014-12-05 17:56:33 +00:00
|
|
|
r_cons_printf ("]\n");
|
|
|
|
r_list_free (list);
|
2014-12-05 06:34:54 +00:00
|
|
|
// JSON support
|
|
|
|
break;
|
|
|
|
case '\0':
|
2015-01-30 00:55:21 +00:00
|
|
|
n = (int)r_debug_reg_get (core->dbg, "oeax"); //XXX
|
|
|
|
cmd_syscall_do (core, n);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case ' ':
|
2014-12-05 06:51:21 +00:00
|
|
|
cmd_syscall_do (core, (int)r_num_get (core->num, input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'k': // "ask"
|
2015-01-30 00:55:21 +00:00
|
|
|
out = sdb_querys (core->anal->syscall->db, NULL, 0, input+2);
|
|
|
|
if (out) {
|
|
|
|
r_cons_printf ("%s\n", out);
|
|
|
|
free (out);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case '?':
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static boolt cmd_anal_refs(RCore *core, const char *input) {
|
|
|
|
ut64 addr = core->offset;
|
2015-01-30 00:55:21 +00:00
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "ax[?d-l*]", " # see also 'afx?'",
|
|
|
|
"ax", " addr [at]", "add code ref pointing to addr (from curseek)",
|
|
|
|
"axc", " addr [at]", "add code jmp ref // unused?",
|
|
|
|
"axC", " addr [at]", "add code call ref",
|
|
|
|
"axd", " addr [at]", "add data ref",
|
|
|
|
"axj", "", "list refs in json format",
|
|
|
|
"axF", " [flg-glob]", "find data/code references of flags",
|
|
|
|
"axt", " [addr]", "find data/code references to this address",
|
|
|
|
"axf", " [addr]", "find data/code references from this address",
|
|
|
|
"ax-", " [at]", "clean all refs (or refs from addr)",
|
|
|
|
"ax", "", "list refs",
|
|
|
|
"axk", " [query]", "perform sdb query",
|
|
|
|
"ax*", "", "output radare commands",
|
|
|
|
NULL };
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
case '-':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_anal_ref_del (core->anal, r_num_math (core->num, input+1), core->offset);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'k':
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1]==' ') {
|
|
|
|
sdb_query (core->anal->sdb_xrefs, input+2);
|
2014-12-05 06:34:54 +00:00
|
|
|
} else eprintf ("|ERROR| Usage: axk [query]\n");
|
|
|
|
break;
|
|
|
|
case '\0':
|
|
|
|
case 'j':
|
|
|
|
case '*':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_ref_list (core, input[0]);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
{
|
|
|
|
RList *list;
|
|
|
|
RAnalRef *ref;
|
|
|
|
RListIter *iter;
|
|
|
|
ut8 buf[12];
|
|
|
|
RAsmOp asmop;
|
|
|
|
char* buf_asm = NULL;
|
|
|
|
char *space = strchr (input, ' ');
|
|
|
|
|
|
|
|
if (space) {
|
|
|
|
addr = r_num_math (core->num, space+1);
|
2014-01-31 01:40:16 +00:00
|
|
|
} else {
|
2014-12-05 06:34:54 +00:00
|
|
|
addr = core->offset;
|
|
|
|
}
|
|
|
|
list = r_anal_xrefs_get (core->anal, addr);
|
|
|
|
if (list) {
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1] == 'q') { // "axtq"
|
2014-12-05 06:34:54 +00:00
|
|
|
r_list_foreach (list, iter, ref)
|
|
|
|
r_cons_printf ("0x%"PFMT64x"\n", ref->addr);
|
2014-12-05 06:51:21 +00:00
|
|
|
} else if (input[1] == 'j') { // "axtj"
|
2014-12-05 06:34:54 +00:00
|
|
|
r_cons_printf("[");
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
r_core_read_at (core, ref->addr, buf, 12);
|
|
|
|
r_asm_set_pc (core->assembler, ref->addr);
|
|
|
|
r_asm_disassemble (core->assembler, &asmop, buf, 12);
|
|
|
|
char str[512];
|
|
|
|
r_parse_filter (core->parser, core->flags,
|
|
|
|
asmop.buf_asm, str, sizeof (str));
|
|
|
|
r_cons_printf ("{\"from\":0x%"PFMT64x",\"type\":\"%c\",\"opcode\":\"%s\"}%s",
|
|
|
|
ref->addr, ref->type, str, iter->n?",":"");
|
|
|
|
}
|
|
|
|
r_cons_printf("]");
|
|
|
|
r_cons_newline();
|
2014-12-05 06:51:21 +00:00
|
|
|
} else if (input[1] == '*') { // axt*
|
2014-12-05 06:34:54 +00:00
|
|
|
// TODO: implement multi-line comments
|
|
|
|
r_list_foreach (list, iter, ref)
|
|
|
|
r_cons_printf ("CCa 0x%"PFMT64x" \"XREF from 0x%"PFMT64x"\n",
|
|
|
|
ref->addr, ref->type, asmop.buf_asm, iter->n?",":"");
|
|
|
|
} else { // axt
|
|
|
|
int has_color = core->print->flags & R_PRINT_FLAGS_COLOR;
|
|
|
|
char str[512];
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
r_core_read_at (core, ref->addr, buf, 12);
|
|
|
|
r_asm_set_pc (core->assembler, ref->addr);
|
|
|
|
r_asm_disassemble (core->assembler, &asmop, buf, 12);
|
|
|
|
r_parse_filter (core->parser, core->flags,
|
|
|
|
asmop.buf_asm, str, sizeof (str));
|
|
|
|
if (has_color) {
|
|
|
|
buf_asm = r_print_colorize_opcode (str, core->cons->pal.reg,
|
|
|
|
core->cons->pal.num);
|
|
|
|
r_cons_printf ("%c 0x%"PFMT64x" %s\n", ref->type, ref->addr, buf_asm);
|
2015-01-24 10:24:55 +00:00
|
|
|
free (buf_asm);
|
2014-12-05 06:34:54 +00:00
|
|
|
} else {
|
|
|
|
r_cons_printf ("%c 0x%"PFMT64x" %s\n", ref->type, ref->addr, str);
|
|
|
|
}
|
|
|
|
}
|
2014-01-31 01:40:16 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
r_list_free (list);
|
2014-01-31 01:02:51 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
{
|
|
|
|
ut8 buf[12];
|
|
|
|
RAsmOp asmop;
|
|
|
|
char* buf_asm = NULL;
|
|
|
|
RList *list;
|
|
|
|
RAnalRef *ref;
|
|
|
|
RListIter *iter;
|
|
|
|
char *space = strchr (input, ' ');
|
|
|
|
|
|
|
|
if (space) {
|
|
|
|
addr = r_num_math (core->num, space+1);
|
|
|
|
} else {
|
|
|
|
addr = core->offset;
|
|
|
|
}
|
|
|
|
list = r_anal_xrefs_get_from (core->anal, addr);
|
|
|
|
if (list) {
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1] == 'q') { // axfq
|
2014-12-05 06:34:54 +00:00
|
|
|
r_list_foreach (list, iter, ref)
|
|
|
|
r_cons_printf ("0x%"PFMT64x"\n", ref->at);
|
2014-12-05 06:51:21 +00:00
|
|
|
} else if (input[1] == 'j') { // axfj
|
2014-12-05 06:34:54 +00:00
|
|
|
r_cons_printf("[");
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
r_core_read_at (core, ref->at, buf, 12);
|
|
|
|
r_asm_set_pc (core->assembler, ref->at);
|
|
|
|
r_asm_disassemble (core->assembler, &asmop, buf, 12);
|
|
|
|
r_cons_printf ("{\"from\":0x%"PFMT64x",\"type\":\"%c\",\"opcode\":\"%s\"}%s",
|
|
|
|
ref->at, ref->type, asmop.buf_asm, iter->n?",":"");
|
|
|
|
}
|
|
|
|
r_cons_printf ("]\n");
|
2014-12-05 06:51:21 +00:00
|
|
|
} else if (input[1] == '*') { // axf*
|
2014-12-05 06:34:54 +00:00
|
|
|
// TODO: implement multi-line comments
|
|
|
|
r_list_foreach (list, iter, ref)
|
|
|
|
r_cons_printf ("CCa 0x%"PFMT64x" \"XREF from 0x%"PFMT64x"\n",
|
|
|
|
ref->at, ref->type, asmop.buf_asm, iter->n?",":"");
|
|
|
|
} else { // axf
|
|
|
|
char str[512];
|
|
|
|
r_list_foreach (list, iter, ref) {
|
|
|
|
r_core_read_at (core, ref->at, buf, 12);
|
|
|
|
r_asm_set_pc (core->assembler, ref->at);
|
|
|
|
r_asm_disassemble (core->assembler, &asmop, buf, 12);
|
|
|
|
r_parse_filter (core->parser, core->flags,
|
|
|
|
asmop.buf_asm, str, sizeof (str));
|
|
|
|
buf_asm = r_print_colorize_opcode (str, core->cons->pal.reg,
|
|
|
|
core->cons->pal.num);
|
|
|
|
r_cons_printf ("%c 0x%"PFMT64x" %s\n",
|
|
|
|
ref->type, ref->at, buf_asm);
|
2015-01-15 23:56:54 +00:00
|
|
|
free (buf_asm);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
r_list_free (list);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'F':
|
2014-12-05 06:51:21 +00:00
|
|
|
find_refs (core, input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'C':
|
|
|
|
case 'c':
|
|
|
|
case 'd':
|
|
|
|
case ' ':
|
|
|
|
{
|
2014-12-05 06:51:21 +00:00
|
|
|
char *ptr = strdup (r_str_trim_head ((char*)input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
int n = r_str_word_set0 (ptr);
|
|
|
|
ut64 at = core->offset;
|
|
|
|
ut64 addr = UT64_MAX;
|
|
|
|
switch (n) {
|
|
|
|
case 2: // get at
|
|
|
|
at = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
case 1: // get addr
|
|
|
|
addr = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
free (ptr);
|
|
|
|
return R_FALSE;
|
|
|
|
}
|
2014-12-05 06:51:21 +00:00
|
|
|
r_anal_ref_add (core->anal, addr, at, input[0]);
|
2014-12-05 06:34:54 +00:00
|
|
|
free (ptr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case '?':
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
2015-01-30 00:55:21 +00:00
|
|
|
/*
|
|
|
|
in core/disasm we call
|
|
|
|
R_API int r_core_hint(RCore *core, ut64 addr) {
|
2014-12-05 06:34:54 +00:00
|
|
|
static int hint_bits = 0;
|
|
|
|
RAnalHint *hint = r_anal_hint_get (core->anal, addr);
|
|
|
|
if (hint->bits) {
|
2015-01-30 00:55:21 +00:00
|
|
|
if (!hint_bits)
|
|
|
|
hint_bits = core->assembler->bits;
|
|
|
|
r_config_set_i (core->config, "asm.bits", hint->bits);
|
2014-12-05 06:34:54 +00:00
|
|
|
} else if (hint_bits) {
|
2015-01-30 00:55:21 +00:00
|
|
|
r_config_set_i (core->config, "asm.bits", hint_bits);
|
|
|
|
hint_bits = 0;
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
if (hint->arch)
|
2015-01-30 00:55:21 +00:00
|
|
|
r_config_set (core->config, "asm.arch", hint->arch);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (hint->length)
|
2015-01-30 00:55:21 +00:00
|
|
|
force_instruction_length = hint->length;
|
2014-12-05 06:34:54 +00:00
|
|
|
r_anal_hint_free (hint);
|
2015-01-30 00:55:21 +00:00
|
|
|
}
|
|
|
|
*/
|
|
|
|
|
|
|
|
static void cmd_anal_hint(RCore *core, const char *input) {
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "ah[lba-]", "Analysis Hints",
|
|
|
|
"ah?", "", "show this help",
|
|
|
|
"ah?", " offset", "show hint of given offset",
|
|
|
|
"ah", "", "list hints in human-readable format",
|
|
|
|
"ah-", "", "remove all hints",
|
|
|
|
"ah-", " offset [size]", "remove hints at given offset",
|
|
|
|
"ah*", " offset", "list hints in radare commands format",
|
|
|
|
"aha", " ppc 51", "set arch for a range of N bytes",
|
|
|
|
"ahb", " 16 @ $$", "force 16bit for current instruction",
|
|
|
|
"ahc", " 0x804804", "override call/jump address",
|
|
|
|
"ahf", " 0x804840", "override fallback address for call",
|
|
|
|
"ahs", " 4", "set opcode size=4",
|
2015-05-09 22:12:33 +00:00
|
|
|
"ahS", " jz", "set asm.syntax=jz for this opcode",
|
2015-01-30 00:55:21 +00:00
|
|
|
"aho", " foo a0,33", "replace opcode string",
|
|
|
|
"ahe", " eax+=3", "set vm analysis string",
|
|
|
|
NULL };
|
|
|
|
switch (input[0]) {
|
|
|
|
case '?':
|
|
|
|
if (input[1]) {
|
|
|
|
//ut64 addr = r_num_math (core->num, input+1);
|
|
|
|
eprintf ("TODO: show hint\n");
|
|
|
|
} else r_core_cmd_help (core, help_msg);
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case 'a': // set arch
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
int i;
|
2014-12-05 06:51:21 +00:00
|
|
|
char *ptr = strdup (input+2);
|
2014-12-05 06:34:54 +00:00
|
|
|
i = r_str_word_set0 (ptr);
|
|
|
|
if (i==2)
|
|
|
|
r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
r_anal_hint_set_arch (core->anal, core->offset,
|
|
|
|
r_str_word_get0 (ptr, 0));
|
|
|
|
free (ptr);
|
|
|
|
} else eprintf("Missing argument\n");
|
|
|
|
break;
|
|
|
|
case 'b': // set bits
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1]) {
|
|
|
|
char *ptr = strdup (input+2);
|
2014-12-05 06:34:54 +00:00
|
|
|
int bits;
|
|
|
|
int i = r_str_word_set0 (ptr);
|
|
|
|
if (i==2)
|
|
|
|
r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
bits = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
|
|
|
r_anal_hint_set_bits (core->anal, core->offset, bits);
|
|
|
|
free (ptr);
|
|
|
|
} else eprintf("Missing argument\n");
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
r_anal_hint_set_jump (core->anal, core->offset,
|
2014-12-05 06:51:21 +00:00
|
|
|
r_num_math (core->num, input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
r_anal_hint_set_fail (core->anal, core->offset,
|
2014-12-05 06:51:21 +00:00
|
|
|
r_num_math (core->num, input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 's': // set size (opcode length)
|
2015-05-09 22:12:33 +00:00
|
|
|
if (input[1]) {
|
|
|
|
r_anal_hint_set_size (core->anal, core->offset, atoi (input+1));
|
|
|
|
} else eprintf ("Usage: ahs 16\n");
|
|
|
|
break;
|
|
|
|
case 'S': // set size (opcode length)
|
|
|
|
if (input[1]==' ') {
|
|
|
|
r_anal_hint_set_syntax (core->anal, core->offset, input+2);
|
|
|
|
} else eprintf ("Usage: ahS att\n");
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'o': // set opcode string
|
2015-05-09 22:12:33 +00:00
|
|
|
if (input[1]==' ') {
|
|
|
|
r_anal_hint_set_opcode (core->anal, core->offset, input+2);
|
|
|
|
} else eprintf ("Usage: aho popall\n");
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'e': // set ESIL string
|
2015-05-09 22:12:33 +00:00
|
|
|
if (input[1]==' ') {
|
|
|
|
r_anal_hint_set_esil (core->anal, core->offset, input+2);
|
|
|
|
} else eprintf ("Usage: ahe r0,pc,=\n");
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
#if TODO
|
|
|
|
case 'e': // set endian
|
2014-12-05 06:51:21 +00:00
|
|
|
r_anal_hint_set_opcode (core->anal, core->offset, atoi (input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
2014-06-16 03:58:00 +00:00
|
|
|
#endif
|
2014-12-05 06:34:54 +00:00
|
|
|
case 'p':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_anal_hint_set_pointer (core->anal, core->offset, r_num_math (core->num, input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
case '\0':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_hint_list (core->anal, input[0]);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case '-':
|
2014-12-05 06:51:21 +00:00
|
|
|
if (input[1]) {
|
2014-12-05 06:34:54 +00:00
|
|
|
int i;
|
2014-12-05 06:51:21 +00:00
|
|
|
char *ptr = strdup (input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
ut64 addr;
|
|
|
|
int size = 1;
|
|
|
|
i = r_str_word_set0 (ptr);
|
|
|
|
if (i==2)
|
|
|
|
size = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
addr = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
|
|
|
r_anal_hint_del (core->anal, addr, size);
|
|
|
|
free (ptr);
|
|
|
|
} else r_anal_hint_clear (core->anal);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_anal_graph(RCore *core, const char *input) {
|
2014-12-05 17:56:33 +00:00
|
|
|
RList *list;
|
2015-01-30 00:55:21 +00:00
|
|
|
const char *arg;
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "ag[?f]", "Graphiz Code",
|
|
|
|
"ag", " [addr]", "output graphviz code (bb at addr and children)",
|
|
|
|
"agj", " [addr]", "idem, but in JSON format",
|
|
|
|
"agk", " [addr]", "idem, but in SDB key-value format",
|
|
|
|
"aga", " [addr]", "idem, but only addresses",
|
|
|
|
"agc", " [addr]", "output graphviz call graph of function",
|
|
|
|
"agd", " [fcn name]", "output graphviz code of diffed function",
|
|
|
|
"agl", " [fcn name]", "output graphviz code using meta-data",
|
|
|
|
"agt", " [addr]", "find paths from current offset to given address",
|
2015-06-25 14:57:15 +00:00
|
|
|
"agf", " [addr]", "Show ASCII art graph of given function",
|
2015-01-30 00:55:21 +00:00
|
|
|
"agfl", " [fcn name]", "output graphviz code of function using meta-data",
|
|
|
|
"agv", "[acdltfl] [a]", "view function using graphviz",
|
|
|
|
NULL};
|
2014-12-05 17:56:33 +00:00
|
|
|
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2015-06-25 14:57:15 +00:00
|
|
|
case 'f':
|
|
|
|
r_core_cmd0 (core, "afg"); // afg should be deprecated imho
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case 't':
|
2014-12-05 17:56:33 +00:00
|
|
|
list = r_core_anal_graph_to (core, r_num_math (core->num, input+1), 0);
|
|
|
|
if (list) {
|
|
|
|
RListIter *iter, *iter2;
|
|
|
|
RList *list2;
|
|
|
|
RAnalBlock *bb;
|
|
|
|
r_list_foreach (list, iter, list2) {
|
|
|
|
r_list_foreach (list2, iter2, bb) {
|
|
|
|
r_cons_printf ("-> 0x%08"PFMT64x"\n", bb->addr);
|
2013-02-11 09:51:45 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
2014-12-05 17:56:33 +00:00
|
|
|
r_list_purge (list);
|
|
|
|
free (list);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_refs (core, r_num_math (core->num, input+1), input[1]=='j'? 2: 1);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'j':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+1), R_CORE_ANAL_JSON);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'k':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+1), R_CORE_ANAL_KEYVALUE);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'l':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+1), R_CORE_ANAL_GRAPHLINES);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'a':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+1), 0);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+1),
|
2014-12-05 06:34:54 +00:00
|
|
|
R_CORE_ANAL_GRAPHBODY|R_CORE_ANAL_GRAPHDIFF);
|
|
|
|
break;
|
|
|
|
case 'v':
|
|
|
|
r_core_cmd0 (core, "=H /graph/");
|
|
|
|
#if 0
|
|
|
|
{
|
|
|
|
int is_html = (r_config_get_i (core->config, "scr.html"));
|
|
|
|
const char *cmd = r_config_get (core->config, "cmd.graph");
|
|
|
|
//char *tmp = r_file_temp ("/tmp/a.dot");
|
|
|
|
char *tmp = strdup ("a.dot"); // XXX
|
|
|
|
|
|
|
|
if (!is_html && strstr (cmd, "htmlgraph")) {
|
|
|
|
is_html = 2;
|
|
|
|
r_config_set (core->config, "scr.html", "true");
|
|
|
|
}
|
|
|
|
r_cons_flush ();
|
|
|
|
int fd = r_cons_pipe_open (tmp, 0);
|
2014-12-05 06:51:21 +00:00
|
|
|
r_core_cmdf (core, "ag%s", input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
if (is_html==2)
|
|
|
|
r_config_set (core->config, "scr.html", "false");
|
|
|
|
r_cons_flush ();
|
|
|
|
r_cons_pipe_close (fd);
|
|
|
|
r_sys_setenv ("DOTFILE", tmp);
|
|
|
|
r_core_cmdf (core, "%s", cmd);
|
|
|
|
free (tmp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
break;
|
|
|
|
case '?':
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
default:
|
2015-01-30 00:55:21 +00:00
|
|
|
arg = strchr (input, ' ');
|
|
|
|
if (arg) arg++;
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, arg),
|
|
|
|
R_CORE_ANAL_GRAPHBODY);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void cmd_anal_trace(RCore *core, const char *input) {
|
2015-01-30 00:55:21 +00:00
|
|
|
RDebugTracepoint *t;
|
2014-12-05 06:34:54 +00:00
|
|
|
const char *ptr;
|
|
|
|
ut64 addr = core->offset;
|
2015-01-30 00:55:21 +00:00
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "at", "[*] [addr]",
|
|
|
|
"at", "", "list all traced opcode ranges",
|
|
|
|
"at-", "", "reset the tracing information",
|
|
|
|
"at*", "", "list all traced opcode offsets",
|
|
|
|
"at+", " [addr] [times]", "add trace for address N times",
|
|
|
|
"at", " [addr]", "show trace info at address",
|
2015-02-22 10:18:40 +00:00
|
|
|
"ate", "", "show esil trace logs (anal.trace)",
|
|
|
|
"ate", " [idx]", "show commands to restore to this trace index",
|
|
|
|
"ate", "-", "clear esil trace logs",
|
2015-01-30 00:55:21 +00:00
|
|
|
"att", " [tag]", "select trace tag (no arg unsets)",
|
|
|
|
"at%", "", "TODO",
|
|
|
|
"ata", " 0x804020 ...", "only trace given addresses",
|
|
|
|
"atr", "", "show traces as range commands (ar+)",
|
|
|
|
"atd", "", "show disassembly trace",
|
|
|
|
"atD", "", "show dwarf trace (at*|rsc dwarf-traces $FILE)",
|
|
|
|
NULL
|
|
|
|
};
|
2014-12-05 06:34:54 +00:00
|
|
|
|
2014-12-05 06:51:21 +00:00
|
|
|
switch (input[0]) {
|
2015-02-22 10:18:40 +00:00
|
|
|
case 'e': // "ate"
|
|
|
|
if (!core->anal->esil) {
|
|
|
|
int romem = r_config_get_i (core->config, "esil.romem");
|
|
|
|
int stats = r_config_get_i (core->config, "esil.stats");
|
|
|
|
core->anal->esil = r_anal_esil_new ();
|
|
|
|
r_anal_esil_setup (core->anal->esil,
|
|
|
|
core->anal, romem, stats);
|
|
|
|
}
|
|
|
|
switch (input[1]) {
|
|
|
|
case 0:
|
|
|
|
r_anal_esil_trace_list (core->anal->esil);
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
{
|
|
|
|
RAnalOp *op;
|
|
|
|
ut64 addr = r_num_math (core->num, input +2);
|
2015-02-28 13:32:30 +00:00
|
|
|
if (!addr)
|
|
|
|
addr = core->offset;
|
2015-02-22 10:18:40 +00:00
|
|
|
op = r_core_anal_op (core, addr);
|
2015-02-28 13:32:30 +00:00
|
|
|
if (op)
|
|
|
|
r_anal_esil_trace (core->anal->esil, op);
|
2015-02-22 10:18:40 +00:00
|
|
|
r_anal_op_free (op);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
if (!strcmp (input+2, "*")) {
|
|
|
|
if (core->anal->esil) {
|
|
|
|
sdb_free (core->anal->esil->db_trace);
|
|
|
|
core->anal->esil->db_trace = sdb_new0 ();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
eprintf ("TODO: ate- cant delete specific logs. Use ate-*\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
{
|
|
|
|
int idx = atoi (input+2);
|
|
|
|
r_anal_esil_trace_show (
|
|
|
|
core->anal->esil, idx);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'k':
|
|
|
|
if (input[2]== ' ') {
|
|
|
|
char *s = sdb_querys (core->anal->esil->db_trace,
|
|
|
|
NULL, 0, input+3);
|
|
|
|
r_cons_printf ("%s\n", s);
|
|
|
|
free (s);
|
|
|
|
} else {
|
|
|
|
eprintf ("Usage: atek [query]\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
eprintf ("|Usage: ate[ilk] [-arg]\n"
|
|
|
|
"| ate esil trace log single instruction\n"
|
|
|
|
"| ate idx show commands for that index log\n"
|
|
|
|
"| ate-* delete all esil traces\n"
|
|
|
|
"| atei esil trace log single instruction\n"
|
|
|
|
"| atek [sdbq] esil trace log single instruction\n");
|
|
|
|
}
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case '?':
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
eprintf ("Current Tag: %d\n", core->dbg->trace->tag);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
eprintf ("NOTE: Ensure given addresses are in 0x%%08"PFMT64x" format\n");
|
2014-12-05 06:51:21 +00:00
|
|
|
r_debug_trace_at (core->dbg, input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
2014-12-05 06:51:21 +00:00
|
|
|
r_debug_trace_tag (core->dbg, atoi (input+1));
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
//trace_show (2, trace_tag_get());
|
|
|
|
eprintf ("TODO\n");
|
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
// XXX: not yet tested..and rsc dwarf-traces comes from r1
|
|
|
|
r_core_cmd (core, "at*|rsc dwarf-traces $FILE", 0);
|
|
|
|
break;
|
2015-01-30 00:55:21 +00:00
|
|
|
case 'r':
|
|
|
|
eprintf ("TODO\n");
|
|
|
|
//trace_show(-1, trace_tag_get());
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case '+':
|
2014-12-05 06:51:21 +00:00
|
|
|
ptr = input+2;
|
2014-12-05 06:34:54 +00:00
|
|
|
addr = r_num_math (core->num, ptr);
|
|
|
|
ptr = strchr (ptr, ' ');
|
|
|
|
if (ptr != NULL) {
|
|
|
|
RAnalOp *op = r_core_op_anal (core, addr);
|
|
|
|
if (op != NULL) {
|
|
|
|
RDebugTracepoint *tp = r_debug_trace_add (core->dbg, addr, op->size);
|
|
|
|
tp->count = atoi (ptr+1);
|
|
|
|
r_anal_trace_bb (core->anal, addr);
|
|
|
|
r_anal_op_free (op);
|
|
|
|
} else eprintf ("Cannot analyze opcode at 0x%"PFMT64x"\n", addr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
r_debug_trace_free (core->dbg);
|
2015-01-13 01:01:44 +00:00
|
|
|
core->dbg->trace = r_debug_trace_new ();
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case ' ':
|
2015-01-30 00:55:21 +00:00
|
|
|
if ((t = r_debug_trace_get (core->dbg,
|
|
|
|
r_num_math (core->num, input)))) {
|
|
|
|
r_cons_printf ("offset = 0x%"PFMT64x"\n", t->addr);
|
|
|
|
r_cons_printf ("opsize = %d\n", t->size);
|
|
|
|
r_cons_printf ("times = %d\n", t->times);
|
|
|
|
r_cons_printf ("count = %d\n", t->count);
|
|
|
|
//TODO cons_printf("time = %d\n", t->tm);
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
case '*':
|
|
|
|
r_debug_trace_list (core->dbg, 1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_debug_trace_list (core->dbg, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static int cmd_anal(void *data, const char *input) {
|
2015-01-30 00:55:21 +00:00
|
|
|
const char *r;
|
2014-12-05 06:34:54 +00:00
|
|
|
RCore *core = (RCore *)data;
|
|
|
|
ut32 tbs = core->blocksize;
|
2015-01-30 00:55:21 +00:00
|
|
|
const char* help_msg_ad[] = {
|
|
|
|
"Usage:", "ad", "[kt] [...]",
|
|
|
|
"ad", " [N] [D]","analyze N data words at D depth",
|
|
|
|
"adt", "", "analyze data trampolines (wip)",
|
|
|
|
"adk", "", "analyze data kind (code, text, data, invalid, ...)",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
const char* help_msg_aa[] = {
|
2015-03-23 18:02:56 +00:00
|
|
|
"Usage:", "aa[0*?]", " # see also 'af' and 'afna'",
|
2015-01-30 00:55:21 +00:00
|
|
|
"aa", " ", "alias for 'af@@ sym.*;af@entry0'", //;.afna @@ fcn.*'",
|
2015-03-24 03:30:02 +00:00
|
|
|
"aa*", "", "analyze all flags starting with sym. (af @@ sym.*)",
|
2015-01-30 00:55:21 +00:00
|
|
|
"aaa", "", "autoname functions after aa (see afna)",
|
2015-03-23 18:02:56 +00:00
|
|
|
"aac", " [len]", "analyze function calls (af @@ `pi len~call[1]`)",
|
2015-03-24 03:30:02 +00:00
|
|
|
"aas", " [len]", "analyze symbols (af @@= `isq~[0]`)",
|
2015-04-21 21:21:03 +00:00
|
|
|
"aap", "", "find and analyze function preludes",
|
2015-01-30 00:55:21 +00:00
|
|
|
NULL};
|
|
|
|
const char* help_msg[] = {
|
|
|
|
"Usage:", "a", "[8adefFghoprxstc] [...]",
|
|
|
|
"a8", " [hexpairs]", "analyze bytes",
|
|
|
|
"aa", "", "analyze all (fcns + bbs) (aa0 to avoid sub renaming)",
|
2015-03-23 18:02:56 +00:00
|
|
|
"ac", " [cycles]", "analyze which op could be executed in [cycles]",
|
2015-01-30 00:55:21 +00:00
|
|
|
"ad", "", "analyze data trampoline (wip)",
|
|
|
|
"ad", " [from] [to]", "analyze data pointers to (from-to)",
|
|
|
|
"ae", " [expr]", "analyze opcode eval expression (see ao)",
|
|
|
|
"af", "[rnbcsl?+-*]", "analyze Functions",
|
|
|
|
"aF", "", "same as above, but using anal.depth=1",
|
|
|
|
"ag", "[?acgdlf]", "output Graphviz code",
|
|
|
|
"ah", "[?lba-]", "analysis hints (force opcode size, ...)",
|
|
|
|
"ai", " [addr]", "address information (show perms, stack, heap, ...)",
|
|
|
|
"ao", "[e?] [len]", "analyze Opcodes (or emulate it)",
|
|
|
|
"ar", "", "like 'dr' but for the esil vm. (registers)",
|
|
|
|
"ax", "[?ld-*]", "manage refs/xrefs (see also afx?)",
|
|
|
|
"as", " [num]", "analyze syscall using dbg.reg",
|
|
|
|
"at", "[trd+-%*?] [.]", "analyze execution traces",
|
|
|
|
//"ax", " [-cCd] [f] [t]", "manage code/call/data xrefs",
|
|
|
|
NULL
|
|
|
|
};
|
2014-12-05 06:34:54 +00:00
|
|
|
|
|
|
|
r_cons_break (NULL, NULL);
|
|
|
|
|
|
|
|
switch (input[0]) {
|
|
|
|
case '8': // TODO: rename to 'ab'?
|
|
|
|
if (input[1]==' ') {
|
|
|
|
int len;
|
|
|
|
ut8 *buf = malloc (strlen (input)+1);
|
|
|
|
len = r_hex_str2bin (input+2, buf);
|
|
|
|
if (len>0)
|
2014-12-05 17:56:33 +00:00
|
|
|
core_anal_bytes (core, buf, len, 0, 0);
|
2014-12-05 06:34:54 +00:00
|
|
|
free (buf);
|
|
|
|
} else eprintf ("Usage: a8 [hexpair-bytes]\n");
|
|
|
|
break;
|
2015-01-30 00:55:21 +00:00
|
|
|
case 'i': cmd_anal_info (core, input+1); break; // "ai"
|
|
|
|
case 'r': cmd_anal_reg (core, input+1); break; // "ar"
|
|
|
|
case 'e': cmd_anal_esil (core, input+1); break; // "ae"
|
|
|
|
case 'o': cmd_anal_opcode (core, input+1); break;
|
2012-11-08 08:49:27 +00:00
|
|
|
case 'F':
|
2014-07-01 15:01:52 +00:00
|
|
|
r_core_anal_fcn (core, core->offset, UT64_MAX, R_ANAL_REF_TYPE_NULL, 1);
|
2012-11-08 08:49:27 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'f':
|
2014-09-22 13:00:41 +00:00
|
|
|
if (!cmd_anal_fcn (core, input)) {
|
2015-01-30 00:55:21 +00:00
|
|
|
r_cons_break_end ();
|
2014-01-23 01:31:51 +00:00
|
|
|
return R_FALSE;
|
2014-09-22 13:00:41 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 'g':
|
2014-12-22 03:16:50 +00:00
|
|
|
cmd_anal_graph (core, input+1);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 't':
|
2014-12-22 03:16:50 +00:00
|
|
|
cmd_anal_trace (core, input+1);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-10-19 20:43:33 +00:00
|
|
|
case 's': // "as"
|
2014-12-05 06:51:21 +00:00
|
|
|
cmd_anal_syscall(core, input+1);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'x':
|
2015-01-30 00:55:21 +00:00
|
|
|
if (!cmd_anal_refs (core, input+1)) {
|
|
|
|
r_cons_break_end ();
|
2014-12-05 06:34:54 +00:00
|
|
|
return R_FALSE;
|
2015-01-30 00:55:21 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 'a':
|
2014-12-17 22:27:19 +00:00
|
|
|
switch (input[1]) {
|
2015-01-30 00:55:21 +00:00
|
|
|
case '?': r_core_cmd_help (core, help_msg_aa); break;
|
2015-03-23 18:02:56 +00:00
|
|
|
case 'c': cmd_anal_calls (core, input + 2) ; break; // "aac"
|
2015-03-24 03:30:02 +00:00
|
|
|
//case '*': r_cons_printf ("af @@ sym.* ; af @ entry0\n"); break; // ; .afna @@ fcn.*\n");
|
|
|
|
case '*':
|
|
|
|
r_core_cmd0 (core, "af @@ sym.*");
|
|
|
|
r_core_cmd0 (core, "af @ entry0");
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
r_core_cmd0 (core, "af @@= `isq~[0]`");
|
|
|
|
r_core_cmd0 (core, "af @ entry0");
|
|
|
|
break;
|
2015-04-21 21:21:03 +00:00
|
|
|
case 'p':
|
|
|
|
if (input[1]=='?') {
|
|
|
|
// TODO: accept parameters for ranges
|
|
|
|
r_cons_printf ("Usage: /aap ; find in memory for function preludes");
|
|
|
|
} else r_core_search_preludes (core);
|
|
|
|
break;
|
2015-03-23 18:02:56 +00:00
|
|
|
case '\0': // "aa"
|
|
|
|
case 'a':
|
|
|
|
r_cons_break (NULL, NULL);
|
|
|
|
r_core_anal_all (core);
|
|
|
|
if (core->cons->breaked)
|
|
|
|
eprintf ("Interrupted\n");
|
|
|
|
r_cons_clear_line (1);
|
|
|
|
r_cons_break_end ();
|
|
|
|
if (input[1] == 'a') // "aaa"
|
|
|
|
r_core_cmd0 (core, ".afna @@ fcn.*"); break; // "aaa"
|
2014-12-17 22:27:19 +00:00
|
|
|
break;
|
2015-03-23 18:02:56 +00:00
|
|
|
default: r_core_cmd_help (core, help_msg_aa); break;
|
2014-09-17 21:54:36 +00:00
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2015-03-23 18:02:56 +00:00
|
|
|
case 'c':
|
2015-03-23 23:16:00 +00:00
|
|
|
if (input[1]=='?') {
|
|
|
|
eprintf ("Usage: ac [cycles] # analyze instructions that fit in N cycles\n");
|
|
|
|
} else {
|
|
|
|
RList *hooks ;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalCycleHook *hook;
|
2014-04-29 01:21:52 +00:00
|
|
|
char *instr_tmp = NULL;
|
2015-03-22 22:24:13 +00:00
|
|
|
int ccl = input[1]? r_num_math (core->num, &input[2]):0; //get cycles to look for
|
2015-01-30 00:55:21 +00:00
|
|
|
int cr = r_config_get_i (core->config, "asm.cmtright");
|
2014-03-24 23:48:42 +00:00
|
|
|
int fun = r_config_get_i (core->config, "asm.functions");
|
|
|
|
int li = r_config_get_i (core->config, "asm.lines");
|
|
|
|
int xr = r_config_get_i (core->config, "asm.xrefs");
|
2015-03-23 23:16:00 +00:00
|
|
|
|
2014-03-24 23:48:42 +00:00
|
|
|
r_config_set_i (core->config, "asm.cmtright", R_TRUE);
|
|
|
|
r_config_set_i (core->config, "asm.functions", R_FALSE);
|
|
|
|
r_config_set_i (core->config, "asm.lines", R_FALSE);
|
|
|
|
r_config_set_i (core->config, "asm.xrefs", R_FALSE);
|
2015-03-23 23:16:00 +00:00
|
|
|
|
2014-03-24 23:48:42 +00:00
|
|
|
r_cons_break (NULL, NULL);
|
2015-01-30 00:55:21 +00:00
|
|
|
hooks = r_core_anal_cycles (core, ccl); //analyse
|
2014-03-24 23:48:42 +00:00
|
|
|
r_cons_break_end ();
|
|
|
|
r_cons_clear_line (1);
|
|
|
|
r_list_foreach (hooks, iter, hook) {
|
2014-04-29 01:21:52 +00:00
|
|
|
instr_tmp = r_core_disassemble_instr (core, hook->addr, 1);
|
|
|
|
r_cons_printf ("After %4i cycles:\t%s", (ccl - hook->cycles), instr_tmp);
|
2014-03-24 23:48:42 +00:00
|
|
|
r_cons_flush ();
|
2014-04-29 01:21:52 +00:00
|
|
|
free (instr_tmp);
|
2014-03-24 23:48:42 +00:00
|
|
|
}
|
|
|
|
r_list_free (hooks);
|
2015-03-23 23:16:00 +00:00
|
|
|
|
2015-01-30 00:55:21 +00:00
|
|
|
r_config_set_i (core->config, "asm.cmtright", cr); //reset settings
|
2014-03-24 23:48:42 +00:00
|
|
|
r_config_set_i (core->config, "asm.functions", fun);
|
|
|
|
r_config_set_i (core->config, "asm.lines", li);
|
|
|
|
r_config_set_i (core->config, "asm.xrefs", xr);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
2014-03-24 23:48:42 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'd':
|
2012-11-20 02:59:00 +00:00
|
|
|
switch (input[1]) {
|
|
|
|
case 't':
|
|
|
|
cmd_anal_trampoline (core, input+2);
|
|
|
|
break;
|
|
|
|
case ' ':
|
2014-12-05 06:34:54 +00:00
|
|
|
{
|
2012-11-20 02:59:00 +00:00
|
|
|
const int default_depth = 1;
|
|
|
|
const char *p;
|
|
|
|
int a, b;
|
|
|
|
a = r_num_math (core->num, input+2);
|
|
|
|
p = strchr (input+2, ' ');
|
|
|
|
b = p? r_num_math (core->num, p+1): default_depth;
|
|
|
|
if (a<1) a = 1;
|
|
|
|
if (b<1) b = 1;
|
|
|
|
r_core_anal_data (core, core->offset, a, b);
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
2012-11-20 02:59:00 +00:00
|
|
|
break;
|
|
|
|
case 'k':
|
2015-01-30 00:55:21 +00:00
|
|
|
r = r_anal_data_kind (core->anal,
|
|
|
|
core->offset, core->block, core->blocksize);
|
|
|
|
r_cons_printf ("%s\n", r);
|
2012-11-20 02:59:00 +00:00
|
|
|
break;
|
|
|
|
case '\0':
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_anal_data (core, core->offset, 2+(core->blocksize/4), 1);
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
default:
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg_ad);
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
2014-12-05 06:34:54 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'h':
|
2014-12-05 06:51:21 +00:00
|
|
|
cmd_anal_hint(core, input+1);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
case '!':
|
|
|
|
if (core->anal && core->anal->cur && core->anal->cur->cmd_ext)
|
|
|
|
return core->anal->cur->cmd_ext (core->anal, input+1);
|
|
|
|
else r_cons_printf ("No plugins for this analysis plugin\n");
|
|
|
|
break;
|
|
|
|
default:
|
2015-01-30 00:55:21 +00:00
|
|
|
r_core_cmd_help (core, help_msg);
|
|
|
|
r_cons_printf ("Examples:\n"
|
|
|
|
" f ts @ `S*~text:0[3]`; f t @ section..text\n"
|
|
|
|
" f ds @ `S*~data:0[3]`; f d @ section..data\n"
|
|
|
|
" .ad t t+ts @ d:ds\n",
|
|
|
|
NULL);
|
2014-12-05 06:34:54 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tbs != core->blocksize)
|
|
|
|
r_core_block_size (core, tbs);
|
|
|
|
if (core->cons->breaked) {
|
|
|
|
r_cons_clear_line (1);
|
|
|
|
eprintf ("Interrupted\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
2014-12-05 06:34:54 +00:00
|
|
|
r_cons_break_end();
|
|
|
|
return 0;
|
|
|
|
}
|