2014-01-31 01:02:51 +00:00
|
|
|
/* radare - LGPL - Copyright 2009-2014 - pancake */
|
2012-02-27 01:40:27 +00:00
|
|
|
|
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++;
|
|
|
|
if (!glob || !*glob)
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
#if 1
|
|
|
|
/* TODO: Move into cmd_anal() */
|
2014-03-31 02:42:55 +00:00
|
|
|
static void var_help(char ch) {
|
|
|
|
const char *kind = (ch=='v')?"locals":"args";
|
2014-05-13 15:32:01 +00:00
|
|
|
if (ch=='a' || ch=='A' || ch=='v') {
|
|
|
|
eprintf ("|Usage: af%c [idx] [type] [name]\n", ch);
|
|
|
|
eprintf ("| af%c ; list function %s\n", ch, kind);
|
|
|
|
eprintf ("| af%c 12 int buffer[3] ; add %s at index, type and name\n", ch, kind);
|
|
|
|
eprintf ("| af%c-12 ; delete %s at index 12\n", ch, kind);
|
|
|
|
eprintf ("| af%cs [index] ([offset]) ; register 'set' action\n", ch);
|
|
|
|
eprintf ("| af%cg [index] ([offset]) ; register 'get' action\n", ch);
|
|
|
|
eprintf ("|See also: afa? afv? -- add arguments and locals\n");
|
|
|
|
} else {
|
|
|
|
eprintf ("See afv? and afa?\n");
|
2014-03-31 02:42:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: fastrg == 'A'
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static int var_cmd(RCore *core, const char *str) {
|
2012-07-22 08:00:35 +00:00
|
|
|
RAnalFunction *fcn = r_anal_fcn_find (core->anal, core->offset,
|
2012-02-27 01:40:27 +00:00
|
|
|
R_ANAL_FCN_TYPE_FCN|R_ANAL_FCN_TYPE_SYM);
|
|
|
|
char *p, *p2, *p3, *ostr;
|
2012-07-22 08:00:35 +00:00
|
|
|
int scope, delta;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
|
|
|
ostr = p = strdup (str);
|
|
|
|
str = (const char *)ostr;
|
|
|
|
|
|
|
|
switch (*str) {
|
|
|
|
case 'V': // show vars in human readable format
|
|
|
|
r_anal_var_list_show (core->anal, fcn, core->offset);
|
|
|
|
break;
|
|
|
|
case '?':
|
2014-03-31 02:42:55 +00:00
|
|
|
var_help (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
|
|
|
|
switch (*str) {
|
2012-07-22 08:00:35 +00:00
|
|
|
case 'v': scope = R_ANAL_VAR_SCOPE_LOCAL|R_ANAL_VAR_DIR_NONE; break;
|
|
|
|
case 'a': scope = R_ANAL_VAR_SCOPE_ARG|R_ANAL_VAR_DIR_IN; break;
|
|
|
|
case 'A': scope = R_ANAL_VAR_SCOPE_ARGREG|R_ANAL_VAR_DIR_IN; break;
|
2012-02-27 01:40:27 +00:00
|
|
|
default:
|
|
|
|
eprintf ("Unknown type\n");
|
2014-04-28 23:31:46 +00:00
|
|
|
free (ostr);
|
2012-02-27 01:40:27 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Variable access CFvs = set fun var */
|
|
|
|
switch (str[1]) {
|
2014-04-28 23:31:46 +00:00
|
|
|
case '\0':
|
|
|
|
r_anal_var_list (core->anal, fcn, 0, 0);
|
|
|
|
goto end;
|
|
|
|
case '?':
|
2014-05-13 15:32:01 +00:00
|
|
|
var_help (*str);
|
2014-04-28 23:31:46 +00:00
|
|
|
goto end;
|
|
|
|
case '.':
|
|
|
|
r_anal_var_list (core->anal, fcn, core->offset, 0);
|
|
|
|
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
|
|
|
|
char kind = 'v';
|
|
|
|
RAnalVar *var = r_anal_var_get (core->anal, fcn->addr,
|
2014-05-08 15:38:29 +00:00
|
|
|
&kind, 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;
|
|
|
|
r_anal_var_access (core->anal, fcn->addr, kind,
|
|
|
|
scope, atoi (str+2), rw, core->offset);
|
|
|
|
//return r_anal_var_access_add (core->anal, var, atoi (str+2), (str[1]=='g')?0:1);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
str++;
|
|
|
|
if (str[0]==' ') str++;
|
|
|
|
delta = atoi (str);
|
|
|
|
p = strchr (str, ' ');
|
|
|
|
if (p==NULL) {
|
2014-03-31 02:42:55 +00:00
|
|
|
var_help (*str);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2012-07-22 08:00:35 +00:00
|
|
|
// TODO: Improve parsing error handling
|
2012-02-27 01:40:27 +00:00
|
|
|
p[0]='\0'; p++;
|
|
|
|
p2 = strchr (p, ' ');
|
|
|
|
if (p2) {
|
|
|
|
p2[0]='\0'; p2 = p2+1;
|
|
|
|
p3 = strchr (p2,'[');
|
|
|
|
if (p3 != NULL) {
|
|
|
|
p3[0]='\0';
|
|
|
|
p3=p3+1;
|
|
|
|
}
|
2014-05-13 15:32:01 +00:00
|
|
|
char kind = *str;
|
2012-07-22 08:00:35 +00:00
|
|
|
// p2 - name of variable
|
2014-05-13 15:32:01 +00:00
|
|
|
char *type = "int";
|
|
|
|
int size = 4;
|
|
|
|
char *name = "num";
|
|
|
|
r_anal_var_add (core->anal,
|
2014-05-29 12:33:15 +00:00
|
|
|
fcn->addr,
|
2014-05-13 15:32:01 +00:00
|
|
|
scope, delta, kind, type, size, name);
|
2013-08-11 12:23:51 +00:00
|
|
|
//r_anal_str_to_type (core->anal, p)
|
2014-05-13 15:32:01 +00:00
|
|
|
//NULL, p3? atoi (p3): 0, p2);
|
2014-03-31 02:42:55 +00:00
|
|
|
} else var_help (*str);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
2014-03-31 02:42:55 +00:00
|
|
|
var_help (*str);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
2014-04-28 23:31:46 +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
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-11-20 02:59:00 +00:00
|
|
|
static void cmd_anal_trampoline (RCore *core, const char *input) {
|
|
|
|
int i, bits = r_config_get_i (core->config, "asm.bits");
|
|
|
|
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);
|
|
|
|
switch (bits) {
|
2013-02-21 10:31:04 +00:00
|
|
|
case 32:
|
|
|
|
for (i=0; i<core->blocksize; i+=4) {
|
|
|
|
ut32 n;
|
|
|
|
memcpy (&n, core->block+i, sizeof(ut32));
|
|
|
|
if (n>=a && n<=b) {
|
|
|
|
r_cons_printf ("f trampoline.%x @ 0x%"PFMT64x"\n", n, core->offset+i);
|
|
|
|
r_cons_printf ("Cd 4 @ 0x%"PFMT64x":4\n", core->offset+i);
|
|
|
|
// TODO: add data xrefs
|
2012-11-20 02:59:00 +00:00
|
|
|
}
|
2013-02-21 10:31:04 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 64:
|
|
|
|
for (i=0; i<core->blocksize; i+=8) {
|
|
|
|
ut32 n;
|
|
|
|
memcpy (&n, core->block+i, sizeof(ut32));
|
|
|
|
if (n>=a && n<=b) {
|
|
|
|
r_cons_printf ("f trampoline.%"PFMT64x" @ 0x%"PFMT64x"\n", n, core->offset+i);
|
|
|
|
r_cons_printf ("Cd 8 @ 0x%"PFMT64x":8\n", core->offset+i);
|
|
|
|
// TODO: add data xrefs
|
2012-11-20 02:59:00 +00:00
|
|
|
}
|
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
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
if (i+1<item->args)
|
|
|
|
r_cons_printf (", ");
|
|
|
|
}
|
|
|
|
r_cons_printf (")\n");
|
|
|
|
}
|
|
|
|
|
2013-12-14 03:15:01 +00:00
|
|
|
static void r_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;
|
2013-12-14 03:15:01 +00:00
|
|
|
if (fmt=='j') {
|
|
|
|
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;
|
|
|
|
// TODO: use more anal hints
|
|
|
|
hint = r_anal_hint_get (core->anal, addr);
|
|
|
|
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);
|
2012-02-27 01:40:27 +00:00
|
|
|
if (ret<1) {
|
|
|
|
eprintf ("Oops at 0x%08"PFMT64x" (%02x %02x %02x ...)\n",
|
2014-03-29 01:49:49 +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;
|
2013-12-14 03:15:01 +00:00
|
|
|
if (fmt =='j') {
|
|
|
|
r_cons_printf ("{\"opcode\": \"%s\",", asmop.buf_asm);
|
|
|
|
if (hint && hint->opcode)
|
|
|
|
r_cons_printf ("\"ophint\": \"%s\",", hint->opcode);
|
|
|
|
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));
|
|
|
|
r_cons_printf ("\"eob\": %d,", op.eob);
|
|
|
|
|
|
|
|
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;
|
|
|
|
if (op.fail != UT64_MAX)
|
|
|
|
r_cons_printf ("\"fail\":%"PFMT64d",", op.fail);
|
2013-10-25 00:06:00 +00:00
|
|
|
|
2014-02-25 23:03:42 +00:00
|
|
|
r_cons_printf ("cycles: %d\n", op.cycles);
|
|
|
|
if (op.failcycles)
|
|
|
|
r_cons_printf ("failcycles: %d\n", op.failcycles);
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("\"stack\":%d,", op.stackop); // TODO: string
|
|
|
|
r_cons_printf ("\"cond\":%d,",
|
|
|
|
(op.type &R_ANAL_OP_TYPE_COND)?1: op.cond);
|
|
|
|
r_cons_printf ("\"family\":%d}", op.family);
|
|
|
|
} else {
|
|
|
|
r_cons_printf ("opcode: %s\n", asmop.buf_asm);
|
|
|
|
if (hint && hint->opcode)
|
|
|
|
r_cons_printf ("ophint: %s\n", hint->opcode);
|
|
|
|
r_cons_printf ("addr: 0x%08"PFMT64x"\n", core->offset+idx);
|
|
|
|
r_cons_printf ("bytes: ");
|
|
|
|
for (j=0; j<size; j++)
|
|
|
|
r_cons_printf ("%02x", buf[j]);
|
|
|
|
r_cons_newline ();
|
|
|
|
if (op.val != UT64_MAX)
|
|
|
|
r_cons_printf ("val: 0x%08"PFMT64x"\n", op.val);
|
|
|
|
if (op.ptr != UT64_MAX)
|
|
|
|
r_cons_printf ("ptr: 0x%08"PFMT64x"\n", op.ptr);
|
|
|
|
r_cons_printf ("size: %d\n", size);
|
|
|
|
r_cons_printf ("type: %d (%s)\n", (int)(op.type & 0xffff),
|
|
|
|
r_anal_optype_to_string (op.type)); // TODO: string
|
|
|
|
if (*R_STRBUF_SAFEGET (&op.esil))
|
|
|
|
r_cons_printf ("esil: %s\n", R_STRBUF_SAFEGET (&op.esil));
|
|
|
|
r_cons_printf ("eob: %d\n", op.eob);
|
|
|
|
|
|
|
|
if (hint && hint->jump != UT64_MAX)
|
|
|
|
op.jump = hint->jump;
|
|
|
|
if (op.jump != UT64_MAX)
|
|
|
|
r_cons_printf ("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)
|
|
|
|
r_cons_printf ("fail: 0x%08"PFMT64x"\n", op.fail);
|
2013-10-25 00:06:00 +00:00
|
|
|
|
2013-12-14 03:15:01 +00:00
|
|
|
r_cons_printf ("stack: %d\n", op.stackop); // TODO: string
|
|
|
|
r_cons_printf ("cond: %d\n",
|
|
|
|
(op.type &R_ANAL_OP_TYPE_COND)?1: op.cond);
|
|
|
|
r_cons_printf ("family: %d\n", op.family);
|
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-05-24 00:53:15 +00:00
|
|
|
static int anal_fcn_add_bb (RCore *core, const char *input) {
|
|
|
|
char *ptr = strdup(input);
|
|
|
|
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;
|
|
|
|
|
2013-10-25 00:06:00 +00:00
|
|
|
switch (r_str_word_set0 (ptr)) {
|
2013-05-24 00:53:15 +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));
|
|
|
|
}
|
|
|
|
if ((fcn = r_anal_get_fcn_at (core->anal, fcnaddr)) == NULL ||
|
|
|
|
!r_anal_fcn_add_bb (fcn, addr, size, jump, fail, type, diff)) {
|
|
|
|
//eprintf ("Error: Cannot add bb\n");
|
|
|
|
}
|
|
|
|
r_anal_diff_free (diff);
|
|
|
|
free (ptr);
|
|
|
|
return R_TRUE;
|
|
|
|
}
|
|
|
|
|
2014-01-23 01:31:51 +00:00
|
|
|
static int cmd_anal_fcn(RCore *core, const char *input) {
|
|
|
|
switch (input[1]) {
|
|
|
|
case '-':
|
|
|
|
{
|
|
|
|
ut64 addr = input[2]?
|
|
|
|
r_num_math (core->num, input+2): core->offset;
|
|
|
|
r_anal_fcn_del_locs (core->anal, addr);
|
|
|
|
r_anal_fcn_del (core->anal, addr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '+':
|
|
|
|
{
|
|
|
|
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;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
2014-01-23 01:31:51 +00:00
|
|
|
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));
|
|
|
|
}
|
|
|
|
if (!r_anal_fcn_add (core->anal, addr, size, name, type, diff))
|
|
|
|
eprintf ("Cannot add function (duplicated)\n");
|
|
|
|
}
|
|
|
|
r_anal_diff_free (diff);
|
|
|
|
free (ptr);
|
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-01-23 01:31:51 +00:00
|
|
|
case 'o':
|
|
|
|
{
|
|
|
|
ut64 addr = core->offset;
|
|
|
|
if (input[2]==' ')
|
|
|
|
addr = r_num_math (core->num, input+2);
|
2014-03-29 01:49:49 +00:00
|
|
|
RAnalFunction *fcn = r_anal_fcn_find (core->anal,
|
|
|
|
addr, R_ANAL_FCN_TYPE_NULL);
|
2014-01-23 01:31:51 +00:00
|
|
|
if (fcn) r_cons_printf ("0x%08"PFMT64x"\n", fcn->addr);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
r_core_anal_fcn_list (core, input+2, 0);
|
|
|
|
break;
|
|
|
|
case 'l':
|
|
|
|
r_core_anal_fcn_list (core, input, 2);
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
r_core_anal_fcn_list (core, input+2, 1);
|
|
|
|
break;
|
|
|
|
case 's': {
|
|
|
|
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;
|
|
|
|
if ((f = r_anal_fcn_find (core->anal, addr, R_ANAL_FCN_TYPE_NULL))) {
|
|
|
|
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;
|
|
|
|
case 'a':
|
|
|
|
case 'A':
|
|
|
|
case 'v':
|
|
|
|
var_cmd (core, input+1);
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
{
|
|
|
|
RAnalFunction *fcn;
|
|
|
|
int cc;
|
|
|
|
if ((fcn = r_anal_get_fcn_at (core->anal, core->offset)) != NULL) {
|
|
|
|
cc = r_anal_fcn_cc (fcn);
|
|
|
|
r_cons_printf ("CyclomaticComplexity 0x%08"PFMT64x" = %i\n",
|
|
|
|
fcn->addr, cc);
|
|
|
|
} else eprintf ("Error: function not found\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
if (input[2] == 'b') {
|
|
|
|
anal_fcn_add_bb (core, input+3);
|
|
|
|
} else {
|
|
|
|
RAnalFunction *fcn = r_anal_fcn_find (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");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
if (1) { //input[2]==' ' && input[3])
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
if (*name) {
|
|
|
|
fcn = r_anal_fcn_find (core->anal, off,
|
|
|
|
R_ANAL_FCN_TYPE_FCN|R_ANAL_FCN_TYPE_SYM|R_ANAL_FCN_TYPE_LOC);
|
|
|
|
if (fcn) {
|
|
|
|
r_cons_printf ("fr %s %s@ 0x%"PFMT64x"\n",
|
|
|
|
fcn->name, name, off);
|
|
|
|
r_core_cmdf (core, "fr %s %s@ 0x%"PFMT64x,
|
|
|
|
fcn->name, name, off);
|
|
|
|
free (fcn->name);
|
|
|
|
fcn->name = strdup (name);
|
|
|
|
} else eprintf ("Cannot find function '%s' at 0x%08llx\n", name, off);
|
2014-04-24 22:44:35 +00:00
|
|
|
free (name);
|
2014-04-29 22:57:24 +00:00
|
|
|
} else {
|
|
|
|
eprintf ("Usage: afn newname [off] # set new name to given function\n");
|
|
|
|
free (name);
|
|
|
|
}
|
2014-01-23 01:31:51 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'e':
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
fcn = r_anal_fcn_find (core->anal, off,
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else eprintf ("Cannot find function at 0x%08llx\n", core->offset);
|
2014-04-24 22:44:35 +00:00
|
|
|
if (name) {
|
|
|
|
free (name);
|
|
|
|
}
|
2014-01-23 01:31:51 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'x':
|
2014-01-23 01:31:51 +00:00
|
|
|
switch (input[2]) {
|
2012-02-27 01:40:27 +00:00
|
|
|
case '\0':
|
|
|
|
case ' ':
|
2014-03-31 02:42:55 +00:00
|
|
|
// TODO: sdbize!
|
2012-02-27 01:40:27 +00:00
|
|
|
// list xrefs from current address
|
|
|
|
{
|
2014-01-23 01:31:51 +00:00
|
|
|
ut64 addr = input[2]? r_num_math (core->num, input+2): core->offset;
|
2012-07-22 08:00:35 +00:00
|
|
|
RAnalFunction *fcn = r_anal_fcn_find (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
|
2012-02-27 01:40:27 +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");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c': // add meta xref
|
|
|
|
case 'd':
|
2014-01-23 01:31:51 +00:00
|
|
|
case 's':
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'C': {
|
|
|
|
char *p;
|
|
|
|
ut64 a, b;
|
2012-07-22 08:00:35 +00:00
|
|
|
RAnalFunction *fcn;
|
2012-02-27 01:40:27 +00:00
|
|
|
char *mi = strdup (input);
|
2014-01-23 01:31:51 +00:00
|
|
|
if (mi && mi[3]==' ' && (p=strchr (mi+4, ' '))) {
|
2012-02-27 01:40:27 +00:00
|
|
|
*p = 0;
|
2014-01-23 01:31:51 +00:00
|
|
|
a = r_num_math (core->num, mi+3);
|
2012-02-27 01:40:27 +00:00
|
|
|
b = r_num_math (core->num, p+1);
|
|
|
|
fcn = r_anal_fcn_find (core->anal, a, R_ANAL_FCN_TYPE_ROOT);
|
|
|
|
if (fcn) {
|
2014-01-23 01:31:51 +00:00
|
|
|
r_anal_fcn_xref_add (core->anal, fcn, a, b, input[2]);
|
2012-02-27 01:40:27 +00:00
|
|
|
} else eprintf ("Cannot add reference to non-function\n");
|
2014-05-25 01:00:24 +00:00
|
|
|
} else eprintf ("Usage: afx[cCd?] [src] [dst]\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
free (mi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case '-': {
|
|
|
|
char *p;
|
|
|
|
ut64 a, b;
|
2012-07-22 08:00:35 +00:00
|
|
|
RAnalFunction *fcn;
|
2013-02-21 10:31:04 +00:00
|
|
|
char *mi = strdup (input+2);
|
|
|
|
if (mi && *mi==' ' && (p=strchr (mi+1, ' '))) {
|
2012-02-27 01:40:27 +00:00
|
|
|
*p = 0;
|
2013-02-21 10:31:04 +00:00
|
|
|
a = r_num_math (core->num, mi);
|
2012-02-27 01:40:27 +00:00
|
|
|
b = r_num_math (core->num, p+1);
|
|
|
|
fcn = r_anal_fcn_find (core->anal, a, R_ANAL_FCN_TYPE_ROOT);
|
|
|
|
if (fcn) {
|
|
|
|
r_anal_fcn_xref_del (core->anal, fcn, a, b, -1);
|
|
|
|
} else eprintf ("Cannot del reference to non-function\n");
|
2014-01-23 01:31:51 +00:00
|
|
|
} else eprintf ("Usage: afr- [src] [dst]\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
free (mi);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
2014-05-25 01:00:24 +00:00
|
|
|
"|Usage: afx[-cCd?] [src] [dst] # manage function references (see also ar?)\n"
|
|
|
|
"| afxc sym.main+0x38 sym.printf add code ref\n"
|
|
|
|
"| afxC sym.main sym.puts add call ref\n"
|
|
|
|
"| afxd sym.main str.helloworld add data ref\n"
|
|
|
|
"| afx- sym.main str.helloworld remove reference\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2014-01-23 01:31:51 +00:00
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
|
|
|
"|Usage: af[?+-l*]\n"
|
|
|
|
"| af @ [addr] ; Analyze functions (start at addr)\n"
|
|
|
|
"| af+ addr size name [type] [diff] ; Add function\n"
|
|
|
|
"| af- [addr] ; Clean all function analysis data (or function at addr)\n"
|
|
|
|
"| afb 16 ; set current function as thumb\n"
|
|
|
|
"| afbb fcnaddr addr size name [type] [diff] ; Add bb to function @ fcnaddr\n"
|
|
|
|
"| afl[*] [fcn name] ; List functions (addr, size, bbs, name)\n"
|
|
|
|
"| afi [fcn name] ; Show function(s) information (verbose afl)\n"
|
|
|
|
"| afn name [addr] ; Rename name for function at address (change flag too)\n"
|
|
|
|
"| afr[cCd-] src dst ; Add/Remove code/Call/data/string reference\n"
|
|
|
|
"| afs [addr] [fcnsign] ; Get/set function signature at current address\n"
|
2014-03-31 01:05:48 +00:00
|
|
|
"| afv[?] [idx] [type] [name]; Add local var on current function\n"
|
|
|
|
"| afa[?] [idx] [type] [name]; Add function argument\n"
|
2014-01-23 01:31:51 +00:00
|
|
|
"| af[aAv][?] [arg] ; Manipulate args, fastargs and variables in function\n"
|
|
|
|
"| afc @ [addr] ; Calculate the Cyclomatic Complexity (starting at addr)\n"
|
|
|
|
"| af* ; Output radare commands\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_core_anal_fcn (core, core->offset, -1, R_ANAL_REF_TYPE_NULL,
|
|
|
|
r_config_get_i (core->config, "anal.depth"));
|
|
|
|
}
|
|
|
|
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;
|
|
|
|
int bits = core->anal->bits;
|
2014-05-29 12:33:15 +00:00
|
|
|
int use_colors = r_config_get_i(core->config, "scr.color");
|
2014-05-25 01:00:24 +00:00
|
|
|
core->dbg->reg = core->anal->reg;
|
|
|
|
type = R_REG_TYPE_GPR;
|
2014-05-29 12:33:15 +00:00
|
|
|
r_debug_reg_list (core->dbg, type, bits, mode, use_colors);
|
2014-05-25 01:00:24 +00:00
|
|
|
core->dbg->reg = hack;
|
|
|
|
}
|
|
|
|
|
|
|
|
static 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-05-25 01:00:24 +00:00
|
|
|
struct r_reg_item_t *r;
|
|
|
|
const char *name;
|
|
|
|
char *arg;
|
|
|
|
switch (str[0]) {
|
|
|
|
case '?':
|
|
|
|
if (str[1]) {
|
|
|
|
ut64 off = r_reg_getv (core->anal->reg, str+1);
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"\n", off);
|
|
|
|
} else
|
|
|
|
r_cons_printf (
|
|
|
|
"|Usage: ar Analysis Register status\n"
|
|
|
|
"| ar Show 'gpr' registers\n"
|
|
|
|
"| ar 16 Show 16 bit registers\n"
|
|
|
|
"| ar 32 Show 32 bit registers\n"
|
|
|
|
"| ar all Show all registers\n"
|
|
|
|
"| ar <type> Show flag registers\n"
|
|
|
|
"| ar <register>=<val> Set register value\n"
|
|
|
|
"| ar= Show registers in columns\n"
|
|
|
|
"| ar?<register> Show value of eax register\n"
|
|
|
|
"| arb [type] Display hexdump of gpr arena (WIP)\n"
|
|
|
|
"| arc [name] Related to conditional flag registers\n"
|
|
|
|
"| ard Show only different registers\n"
|
|
|
|
"| arn <pc> Get regname for pc,sp,bp,a0-3,zf,cf,of,sg\n"
|
|
|
|
"| aro Show previous (old) values of registers\n"
|
|
|
|
"| arp <file> Load register metadata file\n"
|
|
|
|
"| arp Display current register profile\n"
|
|
|
|
"| ars? Stack register states\n"
|
|
|
|
"| art Show all register types\n"
|
|
|
|
"| .ar* Include common register values in flags\n"
|
|
|
|
"| .ar- Unflag all registers\n");
|
|
|
|
// TODO: 'drs' to swap register arenas and display old register valuez
|
|
|
|
break;
|
|
|
|
case 'b':
|
|
|
|
{ // 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);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
// 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");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RRegFlags *rf = r_reg_cond_retrieve (core->dbg->reg, NULL);
|
|
|
|
if (rf) {
|
|
|
|
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));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
free (rf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
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;
|
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
|
|
|
"|Usage: drs Register states commands\n"
|
|
|
|
"| drs List register stack\n"
|
|
|
|
"| drs+ Push register state\n"
|
|
|
|
"| drs- Pop register state\n");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_cons_printf ("%d\n", r_list_length (
|
|
|
|
core->dbg->reg->regset[0].pool));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'p':
|
|
|
|
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);
|
|
|
|
} else eprintf ("No register profile defined. Try 'dr.'\n");
|
|
|
|
} else r_reg_set_profile (core->dbg->reg, str+2);
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
for (i=0; (name=r_reg_get_type (i)); i++)
|
|
|
|
r_cons_printf ("%s\n", name);
|
|
|
|
break;
|
|
|
|
case 'n':
|
|
|
|
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;
|
|
|
|
case 'd':
|
2014-05-29 12:33:15 +00:00
|
|
|
r_debug_reg_list (core->dbg, R_REG_TYPE_GPR, bits, 3, use_colors); // XXX detect which one is current usage
|
2014-05-25 01:00:24 +00:00
|
|
|
break;
|
|
|
|
case 'o':
|
|
|
|
r_reg_arena_swap (core->dbg->reg, R_FALSE);
|
2014-05-29 12:33:15 +00:00
|
|
|
r_debug_reg_list (core->dbg, R_REG_TYPE_GPR, bits, 0, use_colors); // 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;
|
|
|
|
case '=':
|
|
|
|
if (r_debug_reg_sync (core->dbg, R_REG_TYPE_GPR, R_FALSE)) {
|
2014-05-29 12:33:15 +00:00
|
|
|
r_debug_reg_list (core->dbg, R_REG_TYPE_GPR, bits, 2, use_colors); // XXX detect which one is current usage
|
2014-05-25 01:00:24 +00:00
|
|
|
} //else eprintf ("Cannot retrieve registers from pid %d\n", core->dbg->pid);
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
case 'j':
|
|
|
|
case '\0':
|
|
|
|
__anal_reg_list (core, type, size, str[0]);
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
arg = strchr (str+1, '=');
|
|
|
|
if (arg) {
|
|
|
|
*arg = 0;
|
|
|
|
r = r_reg_get (core->dbg->reg, str+1, -1); //R_REG_TYPE_GPR);
|
|
|
|
if (r) {
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" ->", str,
|
|
|
|
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);
|
|
|
|
r_cons_printf ("0x%08"PFMT64x"\n",
|
|
|
|
r_reg_get_value (core->dbg->reg, r));
|
|
|
|
} else eprintf ("Unknown register '%s'\n", str+1);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
size = atoi (str+1);
|
|
|
|
if (size==0) {
|
|
|
|
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-01-23 01:31:51 +00:00
|
|
|
static int cmd_anal(void *data, const char *input) {
|
|
|
|
const char *ptr;
|
|
|
|
RCore *core = (RCore *)data;
|
|
|
|
int l, len = core->blocksize;
|
2014-05-29 12:33:15 +00:00
|
|
|
int use_colors = r_config_get_i(core->config, "scr.color");
|
2014-01-23 01:31:51 +00:00
|
|
|
ut64 addr = core->offset;
|
|
|
|
ut32 tbs = core->blocksize;
|
|
|
|
|
|
|
|
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)
|
|
|
|
r_core_anal_bytes (core, buf, len, 0, 0);
|
|
|
|
free (buf);
|
|
|
|
} else eprintf ("Usage: ab [hexpair-bytes]\n");
|
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'r':
|
|
|
|
cmd_anal_reg(core, input+1);
|
|
|
|
break;
|
2013-05-04 00:35:52 +00:00
|
|
|
case 'e':
|
2013-05-20 01:00:49 +00:00
|
|
|
if (input[1] == 'r') {
|
2014-05-29 12:33:15 +00:00
|
|
|
r_debug_reg_list (core->dbg, 0, 0, 0, use_colors);
|
2014-01-31 01:02:51 +00:00
|
|
|
} else if (input[1] == ' ') {
|
2013-05-20 01:00:49 +00:00
|
|
|
r_anal_esil_eval (core->anal, input+2);
|
|
|
|
} else eprintf ("Usage: ae [esil] # wip. analyze esil. (evaluable string intermediate language)\n");
|
2013-05-04 00:35:52 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'o':
|
|
|
|
if (input[1] == '?') {
|
|
|
|
r_cons_printf (
|
|
|
|
"Usage: ao[e?] [len]\n"
|
2014-01-31 01:40:16 +00:00
|
|
|
" aoj display opcode analysis information in JSON\n"
|
|
|
|
" aoe emulate opcode at current offset\n"
|
|
|
|
" aos show sdb representation of esil expression\n"
|
|
|
|
" aos [esil] show sdb representation of esil expression\n"
|
|
|
|
" aoe 4 emulate 4 opcodes starting at current offset\n"
|
|
|
|
" ao 5 display opcode analysis of 5 opcodes\n");
|
2013-12-14 03:15:01 +00:00
|
|
|
} else
|
|
|
|
if (input[1] == 'j') {
|
|
|
|
int count = 0;
|
|
|
|
if (input[2] && input[3]) {
|
|
|
|
l = (int) r_num_get (core->num, input+2);
|
|
|
|
if (l>0) count = l;
|
|
|
|
if (l>tbs) {
|
|
|
|
r_core_block_size (core, l*4);
|
|
|
|
//len = l;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
len = l = core->blocksize;
|
|
|
|
count = 1;
|
|
|
|
}
|
|
|
|
r_core_anal_bytes (core, core->block, len, count, 'j');
|
2012-02-27 01:40:27 +00:00
|
|
|
} else
|
2014-01-31 01:02:51 +00:00
|
|
|
if (input[1]=='s') {
|
2014-01-31 01:40:16 +00:00
|
|
|
if (input[2]==' ') {
|
|
|
|
char *esil = strdup (input+2);
|
2014-01-31 01:02:51 +00:00
|
|
|
char *o = r_anal_esil_to_sdb (esil);
|
|
|
|
// do stuff
|
2014-01-31 01:40:16 +00:00
|
|
|
if (o&&*o) r_cons_printf ("%s\n", o);
|
2014-01-31 01:02:51 +00:00
|
|
|
free (o);
|
2014-01-31 01:40:16 +00:00
|
|
|
free (esil);
|
|
|
|
} else {
|
|
|
|
RAnalOp *op = r_core_op_anal (core, addr);
|
|
|
|
if (op != NULL) {
|
|
|
|
char *esil = strdup (R_STRBUF_SAFEGET (&op->esil));
|
|
|
|
char *o = r_anal_esil_to_sdb (esil);
|
|
|
|
if (o&&*o) r_cons_printf ("%s\n", o);
|
|
|
|
// do stuff
|
|
|
|
free (esil);
|
|
|
|
free (o);
|
|
|
|
r_anal_op_free (op);
|
|
|
|
}
|
2014-01-31 01:02:51 +00:00
|
|
|
}
|
|
|
|
} else
|
2012-02-27 01:40:27 +00:00
|
|
|
if (input[1] == 'e') {
|
2013-12-14 03:15:01 +00:00
|
|
|
eprintf ("TODO: r_anal_op_execute: TODO: USE ESIL\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
} else {
|
2013-02-11 09:51:45 +00:00
|
|
|
int count = 0;
|
|
|
|
if (input[0] && input[1]) {
|
|
|
|
l = (int) r_num_get (core->num, input+2);
|
|
|
|
if (l>0) count = l;
|
|
|
|
if (l>tbs) {
|
|
|
|
r_core_block_size (core, l*4);
|
|
|
|
//len = l;
|
|
|
|
}
|
2013-10-25 00:06:00 +00:00
|
|
|
} else {
|
|
|
|
len = l = core->blocksize;
|
|
|
|
count = 1;
|
|
|
|
}
|
2013-12-14 03:15:01 +00:00
|
|
|
r_core_anal_bytes (core, core->block, len, count, 0);
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
break;
|
2012-11-08 08:49:27 +00:00
|
|
|
case 'F':
|
|
|
|
r_core_anal_fcn (core, core->offset, -1, R_ANAL_REF_TYPE_NULL, 1);
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'f':
|
2014-01-23 01:31:51 +00:00
|
|
|
if (!cmd_anal_fcn (core, input))
|
|
|
|
return R_FALSE;
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 'g':
|
|
|
|
switch (input[1]) {
|
2012-06-14 00:18:15 +00:00
|
|
|
case 't':
|
2012-07-17 03:08:52 +00:00
|
|
|
{
|
2012-06-14 00:18:15 +00:00
|
|
|
int n = 0;
|
|
|
|
RList *list = r_core_anal_graph_to (core,
|
|
|
|
r_num_math (core->num, input+2), n);
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
2014-05-03 11:25:41 +00:00
|
|
|
r_list_purge (list);
|
|
|
|
free (list);
|
2012-06-14 00:18:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'c':
|
2012-12-10 00:52:11 +00:00
|
|
|
r_core_anal_refs (core, r_num_math (core->num, input+2), input[2]=='j'? 2: 1);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2013-01-24 02:48:24 +00:00
|
|
|
case 'j':
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+2), R_CORE_ANAL_JSON);
|
|
|
|
break;
|
2014-04-27 00:48:42 +00:00
|
|
|
case 'k':
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+2), R_CORE_ANAL_KEYVALUE);
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'l':
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+2), R_CORE_ANAL_GRAPHLINES);
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+2), 0);
|
|
|
|
break;
|
|
|
|
case 'd':
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, input+2),
|
|
|
|
R_CORE_ANAL_GRAPHBODY|R_CORE_ANAL_GRAPHDIFF);
|
|
|
|
break;
|
2012-08-14 01:21:31 +00:00
|
|
|
case 'v':
|
2013-01-24 02:48:24 +00:00
|
|
|
r_core_cmd0 (core, "=H /graph/");
|
|
|
|
#if 0
|
2012-08-14 01:21:31 +00:00
|
|
|
{
|
2012-09-05 01:25:03 +00:00
|
|
|
int is_html = (r_config_get_i (core->config, "scr.html"));
|
2012-08-14 01:21:31 +00:00
|
|
|
const char *cmd = r_config_get (core->config, "cmd.graph");
|
2012-09-05 01:25:03 +00:00
|
|
|
//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);
|
|
|
|
r_core_cmdf (core, "ag%s", input+2);
|
|
|
|
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);
|
2012-08-14 01:21:31 +00:00
|
|
|
r_core_cmdf (core, "%s", cmd);
|
2012-09-05 01:25:03 +00:00
|
|
|
free (tmp);
|
2012-08-14 01:21:31 +00:00
|
|
|
}
|
2013-01-24 02:48:24 +00:00
|
|
|
#endif
|
2012-08-14 01:21:31 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
2014-01-23 01:31:51 +00:00
|
|
|
"|Usage: ag[?f]\n"
|
|
|
|
"| ag [addr] ; Output graphviz code (bb at addr and children)\n"
|
|
|
|
"| agj [addr] ; Idem, but in JSON format\n"
|
2014-04-27 00:48:42 +00:00
|
|
|
"| agk [addr] ; Idem, but in SDB key-value format\n"
|
2014-01-23 01:31:51 +00:00
|
|
|
"| aga [addr] ; Idem, but only addresses\n"
|
|
|
|
"| agc [addr] ; Output graphviz call graph of function\n"
|
|
|
|
"| agd [fcn name] ; Output graphviz code of diffed function\n"
|
|
|
|
"| agl [fcn name] ; Output graphviz code using meta-data\n"
|
|
|
|
"| agt [addr] ; find paths from current offset to given address\n"
|
|
|
|
"| agfl [fcn name] ; Output graphviz code of function using meta-data\n"
|
|
|
|
"| agv[acdltfl] [a]; View function using graphviz\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
default:
|
2013-09-25 09:07:04 +00:00
|
|
|
{
|
|
|
|
const char *arg = strchr (input, ' ');
|
|
|
|
if (arg) arg++;
|
|
|
|
r_core_anal_graph (core, r_num_math (core->num, arg),
|
2012-02-27 01:40:27 +00:00
|
|
|
R_CORE_ANAL_GRAPHBODY);
|
2013-09-25 09:07:04 +00:00
|
|
|
}
|
2013-09-26 23:38:49 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
switch (input[1]) {
|
|
|
|
case '?':
|
2014-01-23 01:31:51 +00:00
|
|
|
r_cons_strcat ("|Usage: at[*] [addr]\n"
|
|
|
|
"| at? ; show help message\n"
|
|
|
|
"| at ; list all traced opcode ranges\n"
|
|
|
|
"| at- ; reset the tracing information\n"
|
|
|
|
"| at* ; list all traced opcode offsets\n"
|
|
|
|
"| at+ [addr] [times] ; add trace for address N times\n"
|
|
|
|
"| at [addr] ; show trace info at address\n"
|
|
|
|
"| att [tag] ; select trace tag (no arg unsets)\n"
|
|
|
|
"| at% ; TODO\n"
|
|
|
|
"| ata 0x804020 ... ; only trace given addresses\n"
|
|
|
|
"| atr ; show traces as range commands (ar+)\n"
|
|
|
|
"| atd ; show disassembly trace\n"
|
|
|
|
"| atD ; show dwarf trace (at*|rsc dwarf-traces $FILE)\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
eprintf ("Current Tag: %d\n", core->dbg->trace->tag);
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
eprintf ("NOTE: Ensure given addresses are in 0x%%08"PFMT64x" format\n");
|
|
|
|
r_debug_trace_at (core->dbg, input+2);
|
|
|
|
break;
|
|
|
|
case 't':
|
|
|
|
r_debug_trace_tag (core->dbg, atoi (input+2));
|
|
|
|
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;
|
|
|
|
case '+':
|
|
|
|
ptr = input+3;
|
|
|
|
addr = r_num_math (core->num, ptr);
|
|
|
|
ptr = strchr (ptr, ' ');
|
|
|
|
if (ptr != NULL) {
|
|
|
|
RAnalOp *op = r_core_op_anal (core, addr);
|
|
|
|
if (op != NULL) {
|
2013-12-06 04:04:17 +00:00
|
|
|
RDebugTracepoint *tp = r_debug_trace_add (core->dbg, addr, op->size);
|
2012-02-27 01:40:27 +00:00
|
|
|
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);
|
|
|
|
core->dbg->trace = r_debug_trace_new (core->dbg);
|
|
|
|
break;
|
|
|
|
case ' ': {
|
|
|
|
RDebugTracepoint *t = r_debug_trace_get (core->dbg,
|
|
|
|
r_num_math (core->num, input+1));
|
|
|
|
if (t != NULL) {
|
|
|
|
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);
|
|
|
|
} }
|
|
|
|
break;
|
|
|
|
case '*':
|
|
|
|
r_debug_trace_list (core->dbg, 1);
|
|
|
|
break;
|
|
|
|
case 'r':
|
|
|
|
eprintf ("TODO\n");
|
|
|
|
//trace_show(-1, trace_tag_get());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
r_debug_trace_list (core->dbg, 0);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 's':
|
|
|
|
switch (input[1]) {
|
|
|
|
case 'l':
|
|
|
|
if (input[2] == ' ') {
|
|
|
|
int n = atoi (input+3);
|
|
|
|
if (n>0) {
|
|
|
|
RSyscallItem *si = r_syscall_get (core->anal->syscall, n, -1);
|
|
|
|
if (si) r_cons_printf ("%s\n", si->name);
|
|
|
|
else eprintf ("Unknown syscall number\n");
|
|
|
|
} else {
|
|
|
|
int n = r_syscall_get_num (core->anal->syscall, input+3);
|
|
|
|
if (n != -1) r_cons_printf ("%d\n", n);
|
|
|
|
else eprintf ("Unknown syscall name\n");
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
RSyscallItem *si;
|
|
|
|
RListIter *iter;
|
|
|
|
RList *list = r_syscall_list (core->anal->syscall);
|
|
|
|
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 '\0': {
|
|
|
|
int a0 = (int)r_debug_reg_get (core->dbg, "oeax"); //XXX
|
|
|
|
cmd_syscall_do (core, a0);
|
|
|
|
} break;
|
|
|
|
case ' ':
|
|
|
|
cmd_syscall_do (core, (int)r_num_get (core->num, input+2));
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
2014-01-23 01:31:51 +00:00
|
|
|
"|Usage: as[l?]\n"
|
|
|
|
"| as Display syscall and arguments\n"
|
|
|
|
"| as 4 Show syscall 4 based on asm.os and current regs/mem\n"
|
|
|
|
"| asl List of syscalls by asm.os and asm.arch\n"
|
|
|
|
"| asl close Returns the syscall number for close\n"
|
|
|
|
"| asl 4 Returns the name of the syscall number 4\n");
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
2014-05-25 01:00:24 +00:00
|
|
|
case 'x':
|
2013-07-19 01:35:45 +00:00
|
|
|
switch (input[1]) {
|
2012-02-27 01:40:27 +00:00
|
|
|
case '-':
|
2013-07-19 01:35:45 +00:00
|
|
|
r_anal_ref_del (core->anal, r_num_math (core->num, input+2), core->offset);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-01-23 01:31:51 +00:00
|
|
|
case 'k':
|
|
|
|
if (input[2]==' ') {
|
|
|
|
sdb_query (core->anal->sdb_xrefs, input+3);
|
2014-05-25 01:00:24 +00:00
|
|
|
} else eprintf ("|ERROR| Usage: axk [query]\n");
|
2014-01-23 01:31:51 +00:00
|
|
|
break;
|
2013-07-19 01:35:45 +00:00
|
|
|
case '\0':
|
2013-10-24 11:59:19 +00:00
|
|
|
case 'j':
|
2012-02-27 01:40:27 +00:00
|
|
|
case '*':
|
2013-10-24 11:59:19 +00:00
|
|
|
r_core_anal_ref_list (core, input[1]);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
2014-04-21 11:50:38 +00:00
|
|
|
case 'f':
|
|
|
|
find_refs (core, input+2);
|
|
|
|
break;
|
2014-01-24 01:37:14 +00:00
|
|
|
case 'C':
|
|
|
|
case 'c':
|
2013-07-19 01:35:45 +00:00
|
|
|
case 'd':
|
|
|
|
case ' ':
|
2012-02-27 01:40:27 +00:00
|
|
|
{
|
|
|
|
char *ptr = strdup (r_str_trim_head ((char*)input+2));
|
|
|
|
int n = r_str_word_set0 (ptr);
|
|
|
|
ut64 at = core->offset;
|
2013-07-19 01:35:45 +00:00
|
|
|
ut64 addr = UT64_MAX;
|
2012-02-27 01:40:27 +00:00
|
|
|
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:
|
2014-04-26 19:55:25 +00:00
|
|
|
free (ptr);
|
2012-02-27 01:40:27 +00:00
|
|
|
return R_FALSE;
|
|
|
|
}
|
2014-01-24 01:37:14 +00:00
|
|
|
r_anal_ref_add (core->anal, addr, at, input[1]);
|
2012-02-27 01:40:27 +00:00
|
|
|
free (ptr);
|
|
|
|
}
|
2013-07-19 01:35:45 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
case '?':
|
|
|
|
r_cons_printf (
|
2014-05-25 01:00:24 +00:00
|
|
|
"|Usage: ax[?d-l*] # see also 'afx?'\n"
|
|
|
|
"| ax addr [at] Add code ref pointing to addr (from curseek)\n"
|
|
|
|
"| axc addr [at] Add code jmp ref // unused?\n"
|
|
|
|
"| axC addr [at] Add code call ref\n"
|
|
|
|
"| axd addr [at] Add data ref\n"
|
|
|
|
"| axj List refs in json format\n"
|
|
|
|
"| axf [flg-glob] Find data/code references of flags\n"
|
|
|
|
"| ax- [at] Clean all refs (or refs from addr)\n"
|
|
|
|
"| ax List refs\n"
|
|
|
|
"| axk [query] Perform sdb query\n"
|
|
|
|
"| ax* Output radare commands\n");
|
2013-07-19 01:35:45 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'a':
|
|
|
|
r_cons_break (NULL, NULL);
|
|
|
|
r_core_anal_all (core);
|
|
|
|
if (core->cons->breaked)
|
|
|
|
eprintf ("Interrupted\n");
|
|
|
|
r_cons_break_end();
|
|
|
|
break;
|
2014-03-24 23:48:42 +00:00
|
|
|
case 'c':
|
|
|
|
{
|
2014-04-29 01:21:52 +00:00
|
|
|
char *instr_tmp = NULL;
|
2014-03-24 23:48:42 +00:00
|
|
|
int ccl = r_num_math (core->num, &input[2]); //get cycles to look for
|
|
|
|
int cr = r_config_get_i (core->config, "asm.cmtright"); //make stuff look nice
|
|
|
|
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");
|
|
|
|
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);
|
|
|
|
RList *hooks ;
|
|
|
|
RListIter *iter;
|
|
|
|
RAnalCycleHook *hook;
|
|
|
|
r_cons_break (NULL, NULL);
|
|
|
|
hooks = r_core_anal_cycles (core, ccl); //analyse
|
|
|
|
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);
|
|
|
|
r_config_set_i (core->config, "asm.cmtright", cr); //reset settings
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
case 'p':
|
2012-06-14 00:18:15 +00:00
|
|
|
if (input[1]=='?') {
|
|
|
|
// TODO: accept parameters for ranges
|
|
|
|
r_cons_printf ("Usage: ap ; find in memory for function preludes");
|
|
|
|
} else r_core_search_preludes (core);
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
case 'd':
|
2012-11-20 02:59:00 +00:00
|
|
|
switch (input[1]) {
|
|
|
|
case 't':
|
|
|
|
cmd_anal_trampoline (core, input+2);
|
|
|
|
break;
|
|
|
|
case ' ':
|
|
|
|
{
|
|
|
|
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);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'k':
|
2013-06-25 21:44:21 +00:00
|
|
|
{
|
2012-11-20 02:59:00 +00:00
|
|
|
const char *r = r_anal_data_kind (core->anal,
|
2013-03-05 00:28:32 +00:00
|
|
|
core->offset, core->block, core->blocksize);
|
2012-11-20 02:59:00 +00:00
|
|
|
r_cons_printf ("%s\n", r);
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
2012-11-20 02:59:00 +00:00
|
|
|
break;
|
|
|
|
case '\0':
|
|
|
|
{
|
2013-02-22 20:05:08 +00:00
|
|
|
//int word = core->assembler->bits / 8;
|
2013-02-21 10:31:04 +00:00
|
|
|
r_core_anal_data (core, core->offset, core->blocksize, 1);
|
2012-11-20 02:59:00 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
2013-01-22 04:06:12 +00:00
|
|
|
eprintf ("Usage: ad[kt] [...]\n"
|
|
|
|
" ad [N] [D] analyze N data words at D depth\n"
|
|
|
|
" adt analyze data trampolines (wip)\n"
|
|
|
|
" adk analyze data kind (code, text, data, invalid, ...)\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'h':
|
|
|
|
switch (input[1]) {
|
|
|
|
case '?':
|
|
|
|
if (input[2]) {
|
|
|
|
//ut64 addr = r_num_math (core->num, input+2);
|
|
|
|
eprintf ("TODO: show hint\n");
|
|
|
|
} else
|
|
|
|
r_cons_printf (
|
|
|
|
"Usage: ah[lba-]\n"
|
2013-06-26 11:34:17 +00:00
|
|
|
" ah? # show this help\n"
|
|
|
|
" ah? offset # show hint of given offset\n"
|
|
|
|
" ah # list hints in human-readable format\n"
|
|
|
|
" ah- # remove all hints\n"
|
|
|
|
" ah- offset [size] # remove hints at given offset\n"
|
|
|
|
" ah* offset # list hints in radare commands format\n"
|
|
|
|
" aha ppc 51 # set arch for a range of N bytes\n"
|
|
|
|
" ahb 16 @ $$ # force 16bit for current instruction\n"
|
|
|
|
" ahc 0x804804 # override call/jump address\n"
|
|
|
|
" ahf 0x804840 # override fallback address for call\n"
|
2013-12-06 04:31:54 +00:00
|
|
|
" ahs 4 # set opcode size=4\n"
|
2013-06-26 11:34:17 +00:00
|
|
|
" aho foo a0,33 # replace opcode string\n"
|
2013-12-06 04:31:54 +00:00
|
|
|
" ahe eax+=3 # set vm analysis string\n"
|
2013-01-22 04:06:12 +00:00
|
|
|
);
|
|
|
|
break;
|
|
|
|
#if 0
|
|
|
|
in core/disasm we call
|
|
|
|
R_API int r_core_hint(RCore *core, ut64 addr) {
|
|
|
|
static int hint_bits = 0;
|
|
|
|
RAnalHint *hint = r_anal_hint_get (core->anal, addr);
|
|
|
|
if (hint->bits) {
|
|
|
|
if (!hint_bits)
|
|
|
|
hint_bits = core->assembler->bits;
|
|
|
|
r_config_set_i (core->config, "asm.bits", hint->bits);
|
|
|
|
} else if (hint_bits) {
|
|
|
|
r_config_set_i (core->config, "asm.bits", hint_bits);
|
|
|
|
hint_bits = 0;
|
2014-01-09 22:57:04 +00:00
|
|
|
}
|
2013-01-22 04:06:12 +00:00
|
|
|
if (hint->arch)
|
|
|
|
r_config_set (core->config, "asm.arch", hint->arch);
|
|
|
|
if (hint->length)
|
|
|
|
force_instruction_length = hint->length;
|
|
|
|
r_anal_hint_free (hint);
|
|
|
|
#endif
|
|
|
|
case 'a': // set arch
|
2013-06-26 12:24:20 +00:00
|
|
|
if (input[2]) {
|
|
|
|
int i;
|
|
|
|
char *ptr = strdup (input+3);
|
|
|
|
int size = 1;
|
|
|
|
i = r_str_word_set0 (ptr);
|
|
|
|
if (i==2)
|
|
|
|
size = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
r_anal_hint_set_arch (core->anal, core->offset,
|
2014-03-11 01:47:10 +00:00
|
|
|
r_str_word_get0 (ptr, 0));
|
2013-06-26 12:24:20 +00:00
|
|
|
free (ptr);
|
|
|
|
} else eprintf("Missing argument\n");
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
|
|
|
case 'b': // set bits
|
2013-06-26 12:24:20 +00:00
|
|
|
if (input[2]) {
|
|
|
|
char *ptr = strdup (input+3);
|
|
|
|
int bits;
|
|
|
|
int size = 1;
|
2013-10-25 00:06:00 +00:00
|
|
|
int i = r_str_word_set0 (ptr);
|
2013-06-26 12:24:20 +00:00
|
|
|
if (i==2)
|
|
|
|
size = r_num_math (core->num, r_str_word_get0 (ptr, 1));
|
|
|
|
bits = r_num_math (core->num, r_str_word_get0 (ptr, 0));
|
2014-03-11 01:47:10 +00:00
|
|
|
r_anal_hint_set_bits (core->anal, core->offset, bits);
|
2013-06-26 12:24:20 +00:00
|
|
|
free (ptr);
|
|
|
|
} else eprintf("Missing argument\n");
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
2013-10-25 00:06:00 +00:00
|
|
|
case 'c':
|
|
|
|
r_anal_hint_set_jump (core->anal, core->offset,
|
|
|
|
r_num_math (core->num, input+2));
|
|
|
|
break;
|
|
|
|
case 'f':
|
|
|
|
r_anal_hint_set_fail (core->anal, core->offset,
|
|
|
|
r_num_math (core->num, input+2));
|
|
|
|
break;
|
2013-12-06 04:31:54 +00:00
|
|
|
case 's': // set size (opcode length)
|
2014-03-11 01:47:10 +00:00
|
|
|
r_anal_hint_set_size (core->anal, core->offset, atoi (input+2));
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
|
|
|
case 'o': // set opcode string
|
2014-03-11 01:47:10 +00:00
|
|
|
r_anal_hint_set_opcode (core->anal, core->offset, input+2);
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
2013-12-06 04:31:54 +00:00
|
|
|
case 'e': // set ESIL string
|
2014-03-11 01:47:10 +00:00
|
|
|
r_anal_hint_set_esil (core->anal, core->offset, input+2);
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
|
|
|
#if TODO
|
|
|
|
case 'e': // set endian
|
2014-03-11 01:47:10 +00:00
|
|
|
r_anal_hint_set_opcode (core->anal, core->offset, atoi (input+2));
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
|
|
|
#endif
|
2013-06-17 01:26:48 +00:00
|
|
|
case 'p':
|
|
|
|
r_anal_hint_set_pointer (core->anal, core->offset, r_num_math (core->num, input+2));
|
|
|
|
break;
|
2013-01-22 04:06:12 +00:00
|
|
|
case '*':
|
2013-01-22 17:08:33 +00:00
|
|
|
case 'j':
|
2013-01-22 04:06:12 +00:00
|
|
|
case '\0':
|
2013-01-22 17:08:33 +00:00
|
|
|
r_core_anal_hint_list (core->anal, input[1]);
|
2013-01-22 04:06:12 +00:00
|
|
|
break;
|
|
|
|
case '-':
|
|
|
|
if (input[2]) {
|
2013-06-26 11:34:17 +00:00
|
|
|
int i;
|
2014-03-11 01:47:10 +00:00
|
|
|
char *ptr = strdup (input+2);
|
2013-06-26 11:34:17 +00:00
|
|
|
ut64 addr;
|
2014-03-11 01:47:10 +00:00
|
|
|
int size = 1;
|
2013-06-26 11:34:17 +00:00
|
|
|
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);
|
2013-01-22 04:06:12 +00:00
|
|
|
} else r_anal_hint_clear (core->anal);
|
2012-11-20 02:59:00 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
}
|
|
|
|
break;
|
2014-01-15 00:07:57 +00:00
|
|
|
case '!':
|
|
|
|
//eprintf("Trying analysis command extension.\n");
|
|
|
|
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");
|
2014-01-19 04:53:03 +00:00
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
default:
|
|
|
|
r_cons_printf (
|
2014-01-23 01:31:51 +00:00
|
|
|
"|Usage: a[?adfFghoprsx]\n"
|
|
|
|
"| a8 [hexpairs] analyze bytes\n"
|
|
|
|
"| aa analyze all (fcns + bbs)\n"
|
|
|
|
"| ad analyze data trampoline (wip)\n"
|
|
|
|
"| ad [from] [to] analyze data pointers to (from-to)\n"
|
|
|
|
"| ae [expr] analyze opcode eval expression (see ao)\n"
|
|
|
|
"| af[rnbcsl?+-*] analyze Functions\n"
|
|
|
|
"| aF same as above, but using graph.depth=1\n"
|
|
|
|
"| ag[?acgdlf] output Graphviz code\n"
|
|
|
|
"| ah[?lba-] analysis hints (force opcode size, ...)\n"
|
|
|
|
"| ao[e?] [len] analyze Opcodes (or emulate it)\n"
|
|
|
|
"| ap find and analyze function preludes\n"
|
|
|
|
"| ar[?ld-*] manage refs/xrefs (see also afr?)\n"
|
|
|
|
"| as [num] analyze syscall using dbg.reg\n"
|
|
|
|
"| at[trd+-*?] [.] analyze execution Traces\n"
|
|
|
|
//"| ax[-cCd] [f] [t] ; manage code/call/data xrefs\n"
|
|
|
|
"|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");
|
2012-02-27 01:40:27 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (tbs != core->blocksize)
|
|
|
|
r_core_block_size (core, tbs);
|
|
|
|
if (core->cons->breaked)
|
|
|
|
eprintf ("Interrupted\n");
|
|
|
|
r_cons_break_end();
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|