- Random changes in libr/db/pair.. still buggy - remove debug printfs from calc.c - ?k command is now more usable. supports ``..` strings - fix segfault in r_cons (nullptr) - Add support for !! command to use r_cons > pd|!grep eax~ebx # now this command works
393 lines
12 KiB
C
393 lines
12 KiB
C
/* radare - LGPL - Copyright 2009-2012 // pancake<nopcode.org> */
|
|
|
|
static int cmd_help(void *data, const char *input) {
|
|
int i;
|
|
RCore *core = (RCore *)data;
|
|
char out[128];
|
|
ut64 n;
|
|
switch (input[0]) {
|
|
case 'r':
|
|
{ // TODO : Add support for 64bit random numbers
|
|
char *p;
|
|
ut64 b = 0;
|
|
ut32 r = UT32_MAX;
|
|
if (input[1]) {
|
|
strncpy (out, input+(input[1]==' '? 2: 1), sizeof (out)-1);
|
|
p = strchr (out+1, ' ');
|
|
if (p) {
|
|
*p = 0;
|
|
b = (ut32)r_num_math (core->num, out);
|
|
r = (ut32)r_num_math (core->num, p+1)-b;
|
|
} else {
|
|
r = (ut32)r_num_math (core->num, out);
|
|
}
|
|
} else {
|
|
r = 0LL;
|
|
}
|
|
if (r == 0)
|
|
r = UT32_MAX>>1;
|
|
core->num->value = (ut64) (b + r_num_rand (r));
|
|
r_cons_printf ("0x%"PFMT64x"\n", core->num->value);
|
|
}
|
|
break;
|
|
case 'b':
|
|
{
|
|
n = r_num_get (core->num, input+1);
|
|
r_num_to_bits (out, n);
|
|
r_cons_printf ("%s\n", out);
|
|
}
|
|
break;
|
|
case 'd':
|
|
if (input[1]==' '){
|
|
char *d = r_asm_describe (core->assembler, input+2);
|
|
if (d && *d) {
|
|
r_cons_printf ("%s\n", d);
|
|
free (d);
|
|
} else eprintf ("Unknown opcode\n");
|
|
} else eprintf ("Use: ?d [opcode] to get the description of the opcode\n");
|
|
break;
|
|
case 'y':
|
|
for (input++; input[0]==' '; input++);
|
|
if (*input) {
|
|
free (core->yank);
|
|
core->yank = (ut8*)strdup (input);
|
|
core->yank_len = strlen ((const char*)core->yank);
|
|
} else {
|
|
r_cons_memcat ((const char *)core->yank, core->yank_len);
|
|
r_cons_newline ();
|
|
}
|
|
break;
|
|
case 'F':
|
|
r_cons_flush ();
|
|
break;
|
|
case 'f':
|
|
if (input[1]==' ') {
|
|
char *q, *p = strdup (input+2);
|
|
if (!p) {
|
|
eprintf ("Cannot strdup\n");
|
|
return 0;
|
|
}
|
|
q = strchr (p, ' ');
|
|
if (q) {
|
|
*q = 0;
|
|
n = r_num_get (core->num, p);
|
|
r_str_bits (out, (const ut8*)&n, sizeof (n), q+1);
|
|
r_cons_printf ("%s\n", out);
|
|
} else eprintf ("Usage: \"?b value bitstring\"\n");
|
|
free (p);
|
|
} else eprintf ("Whitespace expected after '?f'\n");
|
|
break;
|
|
case ' ':
|
|
{
|
|
ut32 n32, s, a;
|
|
float f;
|
|
n = r_num_math (core->num, input+1);
|
|
n32 = (ut32)n;
|
|
memcpy (&f, &n32, sizeof (f));
|
|
/* decimal, hexa, octal */
|
|
a = n & 0xffff;
|
|
s = (n&0xffff0000) >> 16;
|
|
r_cons_printf ("%"PFMT64d" 0x%"PFMT64x" 0%"PFMT64o" %04X:%04X ",
|
|
n, n, n, s, a);
|
|
/* binary and floating point */
|
|
r_str_bits (out, (const ut8*)&n, sizeof (n), NULL);
|
|
r_cons_printf ("%s %.01lf %f\n", out, core->num->fvalue, f);
|
|
}
|
|
break;
|
|
case 'v':
|
|
n = (input[1] != '\0') ? r_num_math (core->num, input+2) : 0;
|
|
if (input[1] == 'i' || input[1]=='d')
|
|
r_cons_printf ("%"PFMT64d"\n", n);
|
|
else r_cons_printf ("0x%"PFMT64x"\n", n);
|
|
core->num->value = n;
|
|
break;
|
|
case '=':
|
|
r_num_math (core->num, input+1);
|
|
break;
|
|
case '+':
|
|
if (input[1]) {
|
|
if (core->num->value & UT64_GT0)
|
|
r_core_cmd (core, input+1, 0);
|
|
} else r_cons_printf ("0x%"PFMT64x"\n", core->num->value);
|
|
break;
|
|
case '-':
|
|
if (input[1]) {
|
|
if (core->num->value & UT64_LT0)
|
|
r_core_cmd (core, input+1, 0);
|
|
} else r_cons_printf ("0x%"PFMT64x"\n", core->num->value);
|
|
break;
|
|
case '!': // ??
|
|
if (input[1]) {
|
|
if (core->num->value != UT64_MIN)
|
|
r_core_cmd (core, input+1, 0);
|
|
} else r_cons_printf ("0x%"PFMT64x"\n", core->num->value);
|
|
break;
|
|
case '$':
|
|
return cmd_help (data, " $?");
|
|
case 'V':
|
|
r_cons_printf ("%s\n", R2_VERSION);
|
|
break;
|
|
case 'l':
|
|
for (input++; input[0]==' '; input++);
|
|
core->num->value = strlen (input);
|
|
break;
|
|
case 'X':
|
|
{
|
|
for (input++; input[0]==' '; input++);
|
|
ut64 n = r_num_math (core->num, input);
|
|
r_cons_printf ("%"PFMT64x"\n", n);
|
|
}
|
|
break;
|
|
case 'x':
|
|
for (input++; input[0]==' '; input++);
|
|
if (!memcmp (input, "0x", 2) || (*input>='0' && *input<='9')) {
|
|
ut64 n = r_num_math (core->num, input);
|
|
int bits = r_num_to_bits (NULL, n) / 8;
|
|
for (i=0; i<bits; i++)
|
|
r_cons_printf ("%02x", (ut8)((n>>(i*8)) &0xff));
|
|
r_cons_newline ();
|
|
} else {
|
|
for (i=0; input[i]; i++)
|
|
r_cons_printf ("%02x", input[i]);
|
|
r_cons_newline ();
|
|
}
|
|
break;
|
|
case 'e': // echo
|
|
for (input++; *input==' '; input++);
|
|
r_cons_printf ("%s\n", input);
|
|
break;
|
|
case 's': // sequence from to step
|
|
{
|
|
ut64 from, to, step;
|
|
char *p, *p2;
|
|
for (input++; *input==' '; input++);
|
|
p = strchr (input, ' ');
|
|
if (p) {
|
|
*p='\0';
|
|
from = r_num_math (core->num, input);
|
|
p2 = strchr (p+1, ' ');
|
|
if (p2) {
|
|
*p2='\0';
|
|
step = r_num_math (core->num, p2+1);
|
|
} else step = 1;
|
|
to = r_num_math (core->num, p+1);
|
|
for (;from<=to; from+=step)
|
|
r_cons_printf ("%"PFMT64d" ", from);
|
|
r_cons_newline ();
|
|
}
|
|
}
|
|
break;
|
|
case 'p':
|
|
if (core->io->va) {
|
|
// physical address
|
|
ut64 o, n = (input[0] && input[1])?
|
|
r_num_math (core->num, input+2): core->offset;
|
|
o = r_io_section_vaddr_to_offset (core->io, n);
|
|
r_cons_printf ("0x%08"PFMT64x"\n", o);
|
|
} else {
|
|
eprintf ("Virtual addresses not enabled!\n");
|
|
}
|
|
break;
|
|
case 'S': {
|
|
// section name
|
|
RIOSection *s;
|
|
ut64 n = (input[0] && input[1])?
|
|
r_num_math (core->num, input+2): core->offset;
|
|
n = r_io_section_vaddr_to_offset (core->io, n);
|
|
s = r_io_section_get (core->io, n);
|
|
if (s && s->name)
|
|
r_cons_printf ("%s\n", s->name);
|
|
} break;
|
|
case 'I': // hud input
|
|
free (core->yank);
|
|
for (input++; *input==' '; input++);
|
|
core->yank = (ut8*)r_cons_hud_file (input);
|
|
core->yank_len = core->yank? strlen ((const char *)core->yank): 0;
|
|
break;
|
|
case 'k': // key=value utility
|
|
switch (input[1]) {
|
|
case ' ':
|
|
{
|
|
char *p = strchr (input+1, '=');
|
|
if (p) {
|
|
// set
|
|
*p = 0;
|
|
r_pair_set (core->kv, input+2, p+1);
|
|
} else {
|
|
// get
|
|
char *g = r_pair_get (core->kv, input+2);
|
|
if (g) {
|
|
r_cons_printf ("%s\n", g);
|
|
free (g);
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
case 's':
|
|
r_pair_save (core->kv, input+3);
|
|
break;
|
|
case 'l':
|
|
r_pair_load (core->kv, input+3);
|
|
break;
|
|
case '\0':
|
|
{ RListIter *iter;
|
|
RPairItem *kv;
|
|
RList *list = r_pair_list (core->kv, NULL);
|
|
r_list_foreach (list, iter, kv) {
|
|
r_cons_printf ("%s=%s\n", kv->k, kv->v);
|
|
}
|
|
}
|
|
break;
|
|
case '?':
|
|
eprintf ("Usage: ?k [key[=value]]\n"
|
|
" ?k foo=bar # set value\n"
|
|
" ?k foo # show value\n"
|
|
" ?k # list keys\n"
|
|
" ?kl ha.sdb # load keyvalue from ha.sdb\n"
|
|
" ?ks ha.sdb # save keyvalue to ha.sdb\n");
|
|
break;
|
|
}
|
|
break;
|
|
case 'i': // input num
|
|
if (input[1]=='m') {
|
|
r_cons_message (input+2);
|
|
} else
|
|
if (input[1]=='p') {
|
|
char *p = r_cons_hud_path (input+2, 0);
|
|
core->yank = (ut8*)p;
|
|
core->yank_len = p? strlen (p): 0;
|
|
core->num->value = (p != NULL);
|
|
} else
|
|
if (input[1]=='k') {
|
|
r_cons_any_key ();
|
|
} else
|
|
if (input[1]=='y') {
|
|
for (input+=2; *input==' '; input++);
|
|
core->num->value =
|
|
r_cons_yesno (1, "%s? (Y/n)", input);
|
|
} else
|
|
if (input[1]=='n') {
|
|
for (input+=2; *input==' '; input++);
|
|
core->num->value =
|
|
r_cons_yesno (0, "%s? (y/N)", input);
|
|
} else {
|
|
char foo[1024];
|
|
r_cons_flush ();
|
|
for (input++; *input==' '; input++);
|
|
// TODO: use prompt input
|
|
eprintf ("%s: ", input);
|
|
fgets (foo, sizeof (foo)-1, stdin);
|
|
foo[strlen (foo)-1] = 0;
|
|
free (core->yank);
|
|
core->yank = (ut8 *)strdup (foo);
|
|
core->yank_len = strlen (foo);
|
|
core->num->value = r_num_math (core->num, foo);
|
|
}
|
|
break;
|
|
case 't': {
|
|
struct r_prof_t prof;
|
|
r_prof_start (&prof);
|
|
r_core_cmd (core, input+1, 0);
|
|
r_prof_end (&prof);
|
|
core->num->value = (ut64)(int)prof.result;
|
|
eprintf ("%lf\n", prof.result);
|
|
} break;
|
|
case '?': // ???
|
|
if (input[1]=='?') {
|
|
r_cons_printf (
|
|
"Usage: ?[?[?]] expression\n"
|
|
" ? eip-0x804800 ; show hex and dec result for this math expr\n"
|
|
" ?v eip-0x804800 ; show hex value of math expr\n"
|
|
" ?vi rsp-rbp ; show decimal value of math expr\n"
|
|
" ?V ; show library version of r_core\n"
|
|
" ?= eip-0x804800 ; same as above without user feedback\n"
|
|
" ?? [cmd] ; ? == 0 run command when math matches\n"
|
|
" ?i[ynmkp] arg ; prompt for number or Yes,No,Msg,Key,Path and store in $$?\n"
|
|
#if DONE
|
|
//BUT NOT DOCUMENTED AT ALL
|
|
" ?iy prompt ; yesno input prompt\n"
|
|
" ?in prompt ; yesno input prompt\n"
|
|
" ?im message ; show message centered in screen\n"
|
|
" ?ik ; press any key input dialog\n"
|
|
#endif
|
|
" ?I hudfile ; load hud menu with given file\n"
|
|
" ?d opcode ; describe opcode for asm.arch\n"
|
|
" ?e string ; echo string\n"
|
|
" ?r [from] [to] ; generate random number between from-to\n"
|
|
" ?y [str] ; show contents of yank buffer, or set with string\n"
|
|
" ?k k[=v] ; key-value temporal storage for the user\n"
|
|
" ?b [num] ; show binary value of number\n"
|
|
" ?f [num] [str] ; map each bit of the number as flag string index\n"
|
|
" ?p vaddr ; get physical address for given vaddr\n"
|
|
" ?s from to step ; sequence of numbers from to by steps\n"
|
|
" ?S addr ; return section name of given address\n"
|
|
" ?x num|0xnum|str; returns the hexpair of number or string\n"
|
|
" ?X num|expr ; returns the hexadecimal value numeric expr\n"
|
|
" ?l str ; returns the length of string (0 if null)\n"
|
|
" ?t cmd ; returns the time to run a command\n"
|
|
" ?! [cmd] ; ? != 0\n"
|
|
" ?+ [cmd] ; ? > 0\n"
|
|
" ?- [cmd] ; ? < 0\n"
|
|
" ??? ; show this help\n"
|
|
"$variables:\n"
|
|
" $$ = here (current seek)\n"
|
|
" $o = here (current io offset)\n"
|
|
" $s = file size\n"
|
|
" $b = block size\n"
|
|
" $j = jump address (e.g. jmp 0x10, jz 0x10 => 0x10)\n"
|
|
" $f = jump fail address (e.g. jz 0x10 => next instruction)\n"
|
|
" $r = opcode memory reference (e.g. mov eax,[0x10] => 0x10)\n"
|
|
" $l = opcode length\n"
|
|
" $e = 1 if end of block, else 0\n"
|
|
" ${eval} = get value of eval config variable # TODO: use ?k too\n"
|
|
" $? = last comparision value\n");
|
|
return 0;
|
|
} else
|
|
if (input[1]) {
|
|
if (core->num->value == UT64_MIN)
|
|
r_core_cmd (core, input+1, 0);
|
|
} else r_cons_printf ("0x%"PFMT64x"\n", core->num->value);
|
|
break;
|
|
case '\0':
|
|
default:
|
|
r_cons_printf (
|
|
" a ; perform analysis of code\n"
|
|
" b [bsz] ; get or change block size\n"
|
|
" c[dqxXfg] [arg] ; compare block with given data\n"
|
|
" C[Cf..] ; Code metadata management\n"
|
|
" d[hrscb] ; debugger commands\n"
|
|
" e [a[=b]] ; list/get/set config evaluable vars\n"
|
|
" f [name][sz][at] ; set flag at current address\n"
|
|
" g[wcilper] [arg] ; go compile shellcodes with r_egg\n"
|
|
" i [file] ; get info about opened file\n"
|
|
" m[lyogfdps] ; mountpoints commands\n"
|
|
" o [file] (addr) ; open file at optional address\n"
|
|
" p?[len] ; print current block with format and length\n"
|
|
" P[osi?] ; project management utilities\n"
|
|
" r[+- ][len] ; resize file\n"
|
|
" s [addr] ; seek to address\n"
|
|
" S?[size] [vaddr] ; IO section manipulation information\n"
|
|
" V[vcmds] ; enter visual mode (vcmds=visualvisual keystrokes)\n"
|
|
" w[mode] [arg] ; multiple write operations\n"
|
|
" x [len] ; alias for 'px' (print hexadecimal)\n"
|
|
" y [len] [off] ; yank/paste bytes from/to memory\n"
|
|
" ?[??] [expr] ; help or evaluate math expression\n"
|
|
" /[xmp/] ; search for bytes, regexps, patterns, ..\n"
|
|
" ![cmd] ; run given command as in system(3)\n"
|
|
" = [cmd] ; run this command via rap://\n"
|
|
" (macro arg0 arg1) ; define scripting macros\n"
|
|
" #[algo] [len] ; calculate hash checksum of current block\n"
|
|
" .[ file|!cmd|cmd|(macro)] ; interpret as radare cmds\n"
|
|
" : ; list all command plugins\n"
|
|
" q [ret] ; quit program with a return value\n"
|
|
"Append '?' to any char command to get detailed help\n"
|
|
"Prefix with number to repeat command N times (f.ex: 3x)\n"
|
|
"Suffix '@ addr[:bsize]' for a temporary seek and/or bsize\n"
|
|
"Suffix '@@ glob1 glob2i ..' space separated glob greps for flags to seek\n"
|
|
"Suffix '~string:linenumber[column]' to filter output\n"
|
|
);
|
|
break;
|
|
}
|
|
return 0;
|
|
}
|
|
|