2012-08-09 16:19:00 +00:00
|
|
|
|
/* radare - LGPL - Copyright 2009-2012 - nibble, pancake */
|
2009-02-05 21:08:46 +00:00
|
|
|
|
|
2012-07-22 08:00:35 +00:00
|
|
|
|
#include <r_core.h>
|
|
|
|
|
#include <r_anal.h>
|
2009-02-26 14:15:19 +00:00
|
|
|
|
|
2009-12-31 00:27:03 +00:00
|
|
|
|
#include <sys/types.h>
|
2011-05-21 12:27:46 +00:00
|
|
|
|
#include <ctype.h>
|
2009-02-18 00:43:57 +00:00
|
|
|
|
#include <stdarg.h>
|
2010-07-03 01:35:26 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
static void cmd_debug_reg(RCore *core, const char *str);
|
|
|
|
|
#include "cmd_hash.c"
|
|
|
|
|
#include "cmd_debug.c"
|
|
|
|
|
#include "cmd_zign.c"
|
|
|
|
|
#include "cmd_section.c"
|
|
|
|
|
#include "cmd_flag.c"
|
|
|
|
|
#include "cmd_project.c"
|
|
|
|
|
#include "cmd_write.c"
|
|
|
|
|
#include "cmd_cmp.c"
|
|
|
|
|
#include "cmd_anal.c"
|
|
|
|
|
#include "cmd_open.c"
|
|
|
|
|
#include "cmd_meta.c"
|
2012-07-18 09:29:24 +00:00
|
|
|
|
#include "cmd_type.c"
|
2012-02-27 02:07:32 +00:00
|
|
|
|
#include "cmd_egg.c"
|
|
|
|
|
#include "cmd_info.c"
|
2012-02-27 01:40:27 +00:00
|
|
|
|
#include "cmd_macro.c"
|
|
|
|
|
#include "cmd_magic.c"
|
|
|
|
|
#include "cmd_mount.c"
|
|
|
|
|
#include "cmd_seek.c"
|
|
|
|
|
#include "cmd_print.c"
|
|
|
|
|
#include "cmd_help.c"
|
|
|
|
|
#include "cmd_search.c"
|
2010-10-28 18:47:21 +00:00
|
|
|
|
|
2012-09-20 01:38:48 +00:00
|
|
|
|
static int r_core_cmd_nullcallback(void *data) {
|
|
|
|
|
RCore *core = (RCore*) data;
|
2012-09-21 00:25:44 +00:00
|
|
|
|
if (!core->cmdrepeat) return 0;
|
|
|
|
|
r_core_cmd_repeat (core, 1);
|
|
|
|
|
return 1;
|
2012-09-20 01:38:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-02-24 08:40:19 +00:00
|
|
|
|
// TODO: move somewhere else
|
2011-02-24 15:50:29 +00:00
|
|
|
|
R_API RAsmOp *r_core_disassemble (RCore *core, ut64 addr) {
|
2012-06-14 15:41:07 +00:00
|
|
|
|
int delta;
|
|
|
|
|
ut8 buf[128];
|
2011-02-24 08:40:19 +00:00
|
|
|
|
static RBuffer *b = NULL; // XXX: never freed and non-thread safe. move to RCore
|
2012-06-14 15:41:07 +00:00
|
|
|
|
RAsmOp *op;
|
2011-02-24 08:40:19 +00:00
|
|
|
|
if (b == NULL) {
|
|
|
|
|
b = r_buf_new ();
|
|
|
|
|
if (r_core_read_at (core, addr, buf, sizeof (buf))) {
|
|
|
|
|
b->base = addr;
|
2011-08-27 18:25:37 +00:00
|
|
|
|
r_buf_set_bytes (b, buf, sizeof (buf));
|
2011-02-24 08:40:19 +00:00
|
|
|
|
} else return NULL;
|
|
|
|
|
} else {
|
2012-06-14 15:41:07 +00:00
|
|
|
|
if ((addr < b->base) || addr > (b->base+b->length-32)) {
|
2011-02-24 08:40:19 +00:00
|
|
|
|
if (r_core_read_at (core, addr, buf, sizeof (buf))) {
|
|
|
|
|
b->base = addr;
|
2011-08-27 18:25:37 +00:00
|
|
|
|
r_buf_set_bytes (b, buf, sizeof (buf));
|
2011-02-24 08:40:19 +00:00
|
|
|
|
} else return NULL;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-06-14 15:41:07 +00:00
|
|
|
|
delta = addr - b->base;
|
|
|
|
|
op = R_NEW (RAsmOp);
|
|
|
|
|
r_asm_set_pc (core->assembler, addr);
|
|
|
|
|
if (r_asm_disassemble (core->assembler, op, b->buf+delta, b->length)<1) {
|
2011-02-24 15:50:29 +00:00
|
|
|
|
free (op);
|
2011-02-24 08:40:19 +00:00
|
|
|
|
return NULL;
|
|
|
|
|
}
|
2011-02-24 15:50:29 +00:00
|
|
|
|
return op;
|
2011-02-24 08:40:19 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-10-30 01:49:05 +00:00
|
|
|
|
static int cmd_alias(void *data, const char *input) {
|
|
|
|
|
int i;
|
|
|
|
|
char *p, *q, *buf;
|
|
|
|
|
RCore *core = (RCore *)data;
|
|
|
|
|
if (*input=='?') {
|
|
|
|
|
r_cons_printf ("Usage: -alias[=cmd] [args...]\n"
|
|
|
|
|
" -analyze=af;pdf # create command -analyze to show function\n"
|
|
|
|
|
" -analyze # execute the previously defined alias\n");
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
i = strlen (input);
|
|
|
|
|
buf = malloc (i+2);
|
|
|
|
|
if (!buf) return 0;
|
|
|
|
|
*buf = '-'; // prefix aliases with a dash
|
|
|
|
|
memcpy (buf+1, input, i+1);
|
|
|
|
|
p = strchr (buf, '=');
|
|
|
|
|
q = strchr (buf, ' ');
|
|
|
|
|
if (p) {
|
|
|
|
|
*p = 0;
|
|
|
|
|
if (!q || (q && q>p))
|
|
|
|
|
r_cmd_alias_set (core->rcmd, buf, p+1);
|
|
|
|
|
} else
|
|
|
|
|
if (!*buf) {
|
|
|
|
|
int i, count;
|
|
|
|
|
const char **keys = r_cmd_alias_keys (core->rcmd, &count);
|
|
|
|
|
for (i=0; i<count; i++)
|
|
|
|
|
r_cons_printf ("%s\n", keys[i]);
|
|
|
|
|
} else {
|
|
|
|
|
const char *v;
|
|
|
|
|
if (q) *q = 0;
|
|
|
|
|
v = r_cmd_alias_get (core->rcmd, buf);
|
|
|
|
|
if (v) {
|
|
|
|
|
if (q) {
|
|
|
|
|
char *out, *args = q+1;
|
|
|
|
|
out = malloc (strlen (v) + strlen (args) + 2);
|
|
|
|
|
if (out) {
|
|
|
|
|
strcpy (out, v);
|
|
|
|
|
strcat (out, " ");
|
|
|
|
|
strcat (out, args);
|
|
|
|
|
r_core_cmd0 (core, out);
|
|
|
|
|
free (out);
|
|
|
|
|
} else eprintf ("Cannot malloc\n");
|
|
|
|
|
} else {
|
|
|
|
|
r_core_cmd0 (core, v);
|
|
|
|
|
}
|
|
|
|
|
} else eprintf ("unknown key '%s'\n", buf);
|
|
|
|
|
}
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-23 04:39:23 +00:00
|
|
|
|
static int cmd_rap(void *data, const char *input) {
|
2010-02-05 11:21:37 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2011-06-04 01:51:33 +00:00
|
|
|
|
switch (*input) {
|
2012-09-06 01:12:54 +00:00
|
|
|
|
case '\0': r_core_rtr_list (core); break;
|
|
|
|
|
case 'h': r_core_rtr_http (core, 0); break;
|
|
|
|
|
case 'H': r_core_rtr_http (core, 1); break;
|
|
|
|
|
case '?': r_core_rtr_help (core); break;
|
|
|
|
|
case '+': r_core_rtr_add (core, input+1); break;
|
|
|
|
|
case '-': r_core_rtr_remove (core, input+1); break;
|
|
|
|
|
case '=': r_core_rtr_session (core, input+1); break;
|
|
|
|
|
case '<': r_core_rtr_pushout (core, input+1); break;
|
|
|
|
|
case '!': r_io_system (core->io, input+1); break;
|
|
|
|
|
default: r_core_rtr_cmd (core, input);
|
2010-08-24 09:58:09 +00:00
|
|
|
|
}
|
2009-02-05 21:08:46 +00:00
|
|
|
|
return R_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2009-09-25 02:04:51 +00:00
|
|
|
|
static int cmd_yank(void *data, const char *input) {
|
2011-02-23 01:10:28 +00:00
|
|
|
|
int i;
|
2010-03-30 21:12:19 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2010-02-28 21:58:21 +00:00
|
|
|
|
switch (input[0]) {
|
2009-02-18 12:10:59 +00:00
|
|
|
|
case ' ':
|
2012-02-04 23:33:34 +00:00
|
|
|
|
r_core_yank (core, core->offset, r_num_math (core->num, input+1));
|
2009-02-18 12:10:59 +00:00
|
|
|
|
break;
|
|
|
|
|
case 'y':
|
2012-02-04 23:33:34 +00:00
|
|
|
|
r_core_yank_paste (core, r_num_math (core->num, input+2), 0);
|
|
|
|
|
break;
|
|
|
|
|
case 'x':
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_print_hexdump (core->print, 0LL, core->yank_buf, core->yank_len, 16, 4);
|
2009-02-18 12:10:59 +00:00
|
|
|
|
break;
|
2011-02-23 01:10:28 +00:00
|
|
|
|
case 'p':
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cons_memcat ((const char*)core->yank_buf, core->yank_len);
|
2011-02-23 01:10:28 +00:00
|
|
|
|
r_cons_newline ();
|
|
|
|
|
break;
|
2009-04-15 18:24:19 +00:00
|
|
|
|
case 't':
|
|
|
|
|
{ /* hacky implementation */
|
2012-02-04 23:33:34 +00:00
|
|
|
|
char *arg = strdup (input+1);
|
2012-02-05 00:14:09 +00:00
|
|
|
|
r_core_yank_to (core, arg);
|
2012-02-04 23:33:34 +00:00
|
|
|
|
free (arg);
|
2009-04-15 18:24:19 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
2009-02-18 12:10:59 +00:00
|
|
|
|
case '\0':
|
2012-09-19 12:08:44 +00:00
|
|
|
|
if (core->yank_buf) {
|
2010-04-14 11:02:23 +00:00
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" %d ",
|
2009-02-18 12:10:59 +00:00
|
|
|
|
core->yank_off, core->yank_len);
|
2011-02-23 01:10:28 +00:00
|
|
|
|
for (i=0; i<core->yank_len; i++)
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cons_printf ("%02x", core->yank_buf[i]);
|
2010-02-01 10:55:56 +00:00
|
|
|
|
r_cons_newline ();
|
|
|
|
|
} else eprintf ("No buffer yanked already\n");
|
2009-02-18 12:10:59 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2010-02-28 21:58:21 +00:00
|
|
|
|
r_cons_printf (
|
2012-02-04 23:33:34 +00:00
|
|
|
|
"Usage: y[ptxy] [len] [[@]addr]\n"
|
2009-02-18 12:10:59 +00:00
|
|
|
|
" y ; show yank buffer information (srcoff len bytes)\n"
|
|
|
|
|
" y 16 ; copy 16 bytes into clipboard\n"
|
|
|
|
|
" y 16 0x200 ; copy 16 bytes into clipboard from 0x200\n"
|
|
|
|
|
" y 16 @ 0x200 ; copy 16 bytes into clipboard from 0x200\n"
|
2011-02-23 01:10:28 +00:00
|
|
|
|
" yp ; print contents of clipboard\n"
|
2012-02-04 23:33:34 +00:00
|
|
|
|
" yx ; print contents of clipboard in hexadecimal\n"
|
2012-02-07 00:51:56 +00:00
|
|
|
|
" yt 64 0x200 ; copy 64 bytes from current seek to 0x200\n"
|
2009-02-18 12:10:59 +00:00
|
|
|
|
" yy 0x3344 ; paste clipboard\n");
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return R_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
static int cmd_quit(void *data, const char *input) {
|
2010-03-30 21:12:19 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2011-05-24 13:25:52 +00:00
|
|
|
|
if (input)
|
|
|
|
|
switch (*input) {
|
2009-02-05 21:08:46 +00:00
|
|
|
|
case '?':
|
2010-02-01 10:55:56 +00:00
|
|
|
|
r_cons_printf (
|
2009-02-05 21:08:46 +00:00
|
|
|
|
"Usage: q[!] [retvalue]\n"
|
|
|
|
|
" q ; quit program\n"
|
|
|
|
|
" q! ; force quit (no questions)\n"
|
|
|
|
|
" q 1 ; quit with return value 1\n"
|
|
|
|
|
" q a-b ; quit with return value a-b\n");
|
|
|
|
|
break;
|
|
|
|
|
case ' ':
|
|
|
|
|
case '!':
|
2010-02-28 22:57:55 +00:00
|
|
|
|
input++;
|
|
|
|
|
case '\0':
|
2009-12-30 09:56:41 +00:00
|
|
|
|
// TODO
|
2009-02-05 21:08:46 +00:00
|
|
|
|
default:
|
2010-02-01 10:55:56 +00:00
|
|
|
|
r_line_hist_save (".radare2_history");
|
2010-02-28 22:57:55 +00:00
|
|
|
|
if (*input)
|
2010-05-19 22:59:42 +00:00
|
|
|
|
r_num_math (core->num, input);
|
|
|
|
|
else core->num->value = 0LL;
|
|
|
|
|
//exit (*input?r_num_math (core->num, input+1):0);
|
2010-02-28 21:58:21 +00:00
|
|
|
|
return -2;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
2010-02-28 21:58:21 +00:00
|
|
|
|
return R_FALSE;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2009-09-25 02:04:51 +00:00
|
|
|
|
static int cmd_interpret(void *data, const char *input) {
|
|
|
|
|
char *str, *ptr, *eol;
|
2010-02-22 23:26:13 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2011-08-27 18:25:37 +00:00
|
|
|
|
switch (*input) {
|
2010-03-19 03:02:23 +00:00
|
|
|
|
case '\0':
|
2011-08-27 18:25:37 +00:00
|
|
|
|
r_core_cmd_repeat (core, 0);
|
|
|
|
|
break;
|
|
|
|
|
case '.': // same as \n
|
|
|
|
|
r_core_cmd_repeat (core, 1);
|
2010-03-19 03:02:23 +00:00
|
|
|
|
break;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
case ' ':
|
2010-03-30 22:03:59 +00:00
|
|
|
|
if (!r_core_cmd_file (core, input+1))
|
|
|
|
|
eprintf ("Cannot interpret file.\n");
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
|
|
|
|
case '!':
|
|
|
|
|
/* from command */
|
2010-02-22 23:26:13 +00:00
|
|
|
|
r_core_cmd_command (core, input+1);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
|
|
|
|
case '(':
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cmd_macro_call (&core->rcmd->macro, input+1);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
|
|
|
|
case '?':
|
2010-02-01 10:55:56 +00:00
|
|
|
|
r_cons_printf (
|
2009-02-05 21:08:46 +00:00
|
|
|
|
"Usage: . [file] | [!command] | [(macro)]\n"
|
2011-08-27 18:25:37 +00:00
|
|
|
|
" . ; repeat last command backward\n"
|
|
|
|
|
" .. ; repeat last command forward (same as \\n)\n"
|
2009-02-05 21:08:46 +00:00
|
|
|
|
" . foo.rs ; interpret r script\n"
|
|
|
|
|
" .!rabin -ri $FILE ; interpret output of command\n"
|
2009-02-16 23:09:40 +00:00
|
|
|
|
" .(foo 1 2 3) ; run macro 'foo' with args 1, 2, 3\n"
|
2011-02-25 10:45:05 +00:00
|
|
|
|
" ./ ELF ; interpret output of command /m ELF as r. commands\n");
|
2009-02-16 23:09:40 +00:00
|
|
|
|
break;
|
|
|
|
|
default:
|
2010-02-22 23:26:13 +00:00
|
|
|
|
ptr = str = r_core_cmd_str (core, input);
|
2012-06-12 00:51:34 +00:00
|
|
|
|
r_cons_break (NULL, NULL);
|
2010-02-01 10:55:56 +00:00
|
|
|
|
for (;;) {
|
2012-06-12 00:51:34 +00:00
|
|
|
|
if (r_cons_singleton()->breaked) break;
|
2010-02-22 23:26:13 +00:00
|
|
|
|
eol = strchr (ptr, '\n');
|
2011-08-27 18:25:37 +00:00
|
|
|
|
if (eol) *eol = '\0';
|
|
|
|
|
if (*ptr)
|
2012-07-12 23:31:03 +00:00
|
|
|
|
r_core_cmd0 (core, ptr);
|
2009-02-16 23:09:40 +00:00
|
|
|
|
if (!eol) break;
|
|
|
|
|
ptr = eol+1;
|
|
|
|
|
}
|
2012-06-12 00:51:34 +00:00
|
|
|
|
r_cons_break_end ();
|
2010-02-22 23:26:13 +00:00
|
|
|
|
free (str);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
static int cmd_bsize(void *data, const char *input) {
|
2012-06-22 01:49:25 +00:00
|
|
|
|
ut64 n;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
RFlagItem *flag;
|
2010-03-30 21:12:19 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
switch (input[0]) {
|
2012-06-22 01:49:25 +00:00
|
|
|
|
case '+':
|
|
|
|
|
n = r_num_math (core->num, input+1);
|
|
|
|
|
r_core_block_size (core, core->blocksize+n);
|
|
|
|
|
break;
|
|
|
|
|
case '-':
|
|
|
|
|
n = r_num_math (core->num, input+1);
|
|
|
|
|
r_core_block_size (core, core->blocksize-n);
|
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case 'f':
|
|
|
|
|
if (input[1]==' ') {
|
|
|
|
|
flag = r_flag_get (core->flags, input+2);
|
|
|
|
|
if (flag)
|
|
|
|
|
r_core_block_size (core, flag->size);
|
|
|
|
|
else eprintf ("bf: Cannot find flag named '%s'\n", input+2);
|
|
|
|
|
} else eprintf ("Usage: bf [flagname]\n");
|
2011-04-18 22:59:16 +00:00
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case '\0':
|
|
|
|
|
r_cons_printf ("0x%x\n", core->blocksize);
|
2011-11-16 01:05:23 +00:00
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case '?':
|
|
|
|
|
r_cons_printf ("Usage: b[f] [arg]\n"
|
|
|
|
|
" b # display current block size\n"
|
2012-06-22 01:49:25 +00:00
|
|
|
|
" b+3 # increase blocksize by 3\n"
|
|
|
|
|
" b-16 # decrement blocksize by 3\n"
|
2012-02-27 01:40:27 +00:00
|
|
|
|
" b 33 # set block size to 33\n"
|
|
|
|
|
" b eip+4 # numeric argument can be an expression\n"
|
|
|
|
|
" bf foo # set block size to flag size\n");
|
2011-11-16 01:05:23 +00:00
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
default:
|
|
|
|
|
//input = r_str_clean(input);
|
|
|
|
|
r_core_block_size (core, r_num_math (core->num, input));
|
2010-01-31 13:22:27 +00:00
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
static int cmd_resize(void *data, const char *input) {
|
2010-02-28 21:58:21 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
ut64 oldsize, newsize;
|
|
|
|
|
st64 delta = 0;
|
|
|
|
|
int grow;
|
2009-03-09 13:08:53 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
oldsize = core->file->size;
|
|
|
|
|
while (*input==' ')
|
|
|
|
|
input++;
|
2011-09-02 01:45:50 +00:00
|
|
|
|
switch (*input) {
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case '+':
|
|
|
|
|
case '-':
|
|
|
|
|
delta = (st64)r_num_math (NULL, input);
|
|
|
|
|
newsize = oldsize + delta;
|
2010-03-04 00:46:25 +00:00
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case '\0':
|
|
|
|
|
case '?':
|
|
|
|
|
r_cons_printf (
|
|
|
|
|
"Usage: r[+-][ size]\n"
|
|
|
|
|
" r size expand or truncate file to given size\n"
|
|
|
|
|
" r-num remove num bytes, move following data down\n"
|
|
|
|
|
" r+num insert num bytes, move following data up\n");
|
|
|
|
|
return R_TRUE;
|
2010-03-04 00:46:25 +00:00
|
|
|
|
default:
|
2012-08-13 23:25:50 +00:00
|
|
|
|
newsize = r_num_math (core->num, input);
|
2010-03-04 00:46:25 +00:00
|
|
|
|
}
|
2010-08-22 16:41:57 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
grow = (newsize > oldsize);
|
2010-08-22 16:41:57 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
if (grow) {
|
|
|
|
|
r_io_resize (core->io, newsize);
|
|
|
|
|
core->file->size = newsize;
|
2010-08-22 16:41:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
if (delta && core->offset < newsize)
|
|
|
|
|
r_io_shift (core->io, core->offset, grow?newsize:oldsize, delta);
|
2011-07-05 23:29:18 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
if (!grow) {
|
|
|
|
|
r_io_resize (core->io, newsize);
|
|
|
|
|
core->file->size = newsize;
|
2011-07-05 23:29:18 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
if (newsize < core->offset+core->blocksize ||
|
2012-09-21 00:25:44 +00:00
|
|
|
|
oldsize < core->offset+core->blocksize) {
|
2012-02-27 01:40:27 +00:00
|
|
|
|
r_core_block_read (core, 0);
|
2012-09-21 00:25:44 +00:00
|
|
|
|
}
|
2011-10-11 00:13:15 +00:00
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
return R_TRUE;
|
2011-10-11 00:13:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
static int cmd_eval(void *data, const char *input) {
|
2010-03-30 21:12:19 +00:00
|
|
|
|
RCore *core = (RCore *)data;
|
2010-02-01 10:55:56 +00:00
|
|
|
|
switch (input[0]) {
|
2009-02-05 21:08:46 +00:00
|
|
|
|
case '\0':
|
2010-05-19 22:59:42 +00:00
|
|
|
|
r_config_list (core->config, NULL, 0);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
2011-05-21 13:45:43 +00:00
|
|
|
|
case 'e':
|
|
|
|
|
if (input[1]==' ') {
|
|
|
|
|
char *p;
|
|
|
|
|
const char *val = r_config_get (core->config, input+2);
|
|
|
|
|
p = r_core_editor (core, val);
|
2012-08-31 09:45:06 +00:00
|
|
|
|
r_str_replace_char (p, '\n', ';');
|
2011-05-21 13:45:43 +00:00
|
|
|
|
r_config_set (core->config, input+2, p);
|
|
|
|
|
} else eprintf ("Usage: ee varname\n");
|
|
|
|
|
break;
|
2009-04-06 22:53:25 +00:00
|
|
|
|
case '!':
|
2011-09-02 01:45:50 +00:00
|
|
|
|
input = r_str_chop_ro (input+1);
|
2010-05-19 22:59:42 +00:00
|
|
|
|
if (!r_config_swap (core->config, input))
|
2010-02-01 10:55:56 +00:00
|
|
|
|
eprintf ("r_config: '%s' is not a boolean variable.\n", input);
|
2009-04-06 22:53:25 +00:00
|
|
|
|
break;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
case '-':
|
2010-02-02 10:09:52 +00:00
|
|
|
|
r_core_config_init (core);
|
|
|
|
|
eprintf ("BUG: 'e-' command locks the eval hashtable. patches are welcome :)\n");
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
2012-06-27 23:27:40 +00:00
|
|
|
|
case 'v':
|
|
|
|
|
eprintf ("Invalid command '%s'. Use 'e?'\n", input);
|
|
|
|
|
break;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
case '*':
|
2010-05-19 22:59:42 +00:00
|
|
|
|
r_config_list (core->config, NULL, 1);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
|
|
|
|
case '?':
|
2011-09-02 01:45:50 +00:00
|
|
|
|
switch (input[1]) {
|
|
|
|
|
case '?':
|
|
|
|
|
r_config_list (core->config, NULL, 2);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
if (input[2]) {
|
|
|
|
|
const char *desc = r_config_desc (core->config, input+1, NULL);
|
|
|
|
|
if (desc) r_cons_strcat (desc);
|
|
|
|
|
r_cons_newline ();
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 0:
|
|
|
|
|
r_cons_printf (
|
|
|
|
|
"Usage: e[?] [var[=value]]\n"
|
|
|
|
|
" e? ; show this help\n"
|
|
|
|
|
" e?asm.bytes ; show description\n"
|
|
|
|
|
" e?? ; list config vars with description\n"
|
|
|
|
|
" e ; list config vars\n"
|
|
|
|
|
" e- ; reset config vars\n"
|
|
|
|
|
" e* ; dump config vars in r commands\n"
|
|
|
|
|
" e!a ; invert the boolean value of 'a' var\n"
|
2012-09-07 08:07:41 +00:00
|
|
|
|
" er [key] ; set config key as readonly. no way back\n"
|
2011-09-02 01:45:50 +00:00
|
|
|
|
" e a ; get value of var 'a'\n"
|
2012-02-27 01:40:27 +00:00
|
|
|
|
" e a=b ; set var 'a' the 'b' value\n");
|
2011-01-27 08:31:52 +00:00
|
|
|
|
}
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
2012-09-07 08:07:41 +00:00
|
|
|
|
case 'r':
|
|
|
|
|
if (input[1]) {
|
|
|
|
|
const char *key = input+((input[1]==' ')?2:1);
|
|
|
|
|
if (!r_config_readonly (core->config, key))
|
|
|
|
|
eprintf ("Cannot find key '%s'\n", key);
|
|
|
|
|
} else eprintf ("Usage: er [key]\n");
|
|
|
|
|
break;
|
2012-02-27 01:40:27 +00:00
|
|
|
|
case ' ':
|
|
|
|
|
r_config_eval (core->config, input+1);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
r_config_eval (core->config, input);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:40:27 +00:00
|
|
|
|
static int cmd_visual(void *data, const char *input) {
|
|
|
|
|
r_cons_show_cursor (R_FALSE);
|
|
|
|
|
int ret = r_core_visual ((RCore *)data, input);
|
|
|
|
|
r_cons_show_cursor (R_TRUE);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static int cmd_system(void *data, const char *input) {
|
|
|
|
|
int ret = 0;
|
2012-07-01 22:38:02 +00:00
|
|
|
|
switch (*input) {
|
|
|
|
|
case '!': {
|
|
|
|
|
int olen;
|
|
|
|
|
char *out = NULL;
|
|
|
|
|
char *cmd = r_core_sysenv_begin ((RCore*)data, input);
|
|
|
|
|
if (cmd) {
|
|
|
|
|
ret = r_sys_cmd_str_full (cmd+1, NULL, &out, &olen, NULL);
|
|
|
|
|
r_core_sysenv_end ((RCore*)data, input);
|
|
|
|
|
r_cons_memcat (out, olen);
|
|
|
|
|
free (out);
|
|
|
|
|
free (cmd);
|
|
|
|
|
} else eprintf ("Error setting up system environment\n");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case '?':
|
|
|
|
|
r_core_sysenv_help ();
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
{
|
2012-02-27 01:40:27 +00:00
|
|
|
|
char *cmd = r_core_sysenv_begin ((RCore*)data, input);
|
|
|
|
|
if (cmd) {
|
|
|
|
|
ret = r_sys_cmd (cmd);
|
|
|
|
|
r_core_sysenv_end ((RCore*)data, input);
|
|
|
|
|
free (cmd);
|
|
|
|
|
} else eprintf ("Error setting up system environment\n");
|
2012-07-01 22:38:02 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
}
|
2012-02-27 01:40:27 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-06 01:12:54 +00:00
|
|
|
|
R_API int r_core_cmd_pipe(RCore *core, char *radare_cmd, char *shell_cmd) {
|
2012-07-01 22:38:02 +00:00
|
|
|
|
char *_ptr;
|
2010-01-15 16:02:04 +00:00
|
|
|
|
#if __UNIX__
|
2009-12-31 00:27:03 +00:00
|
|
|
|
int fds[2];
|
2011-12-05 23:27:57 +00:00
|
|
|
|
int stdout_fd, status = 0;
|
2012-07-01 22:38:02 +00:00
|
|
|
|
#endif
|
|
|
|
|
if (*shell_cmd=='!') {
|
|
|
|
|
_ptr = (char *)r_str_lastbut (shell_cmd, '~', "\"");
|
|
|
|
|
//ptr = strchr (cmd, '~');
|
|
|
|
|
if (_ptr) {
|
|
|
|
|
*_ptr = '\0';
|
|
|
|
|
_ptr++;
|
|
|
|
|
}
|
2012-08-09 08:26:05 +00:00
|
|
|
|
int olen = 0;
|
2012-07-01 22:38:02 +00:00
|
|
|
|
char *str, *out = NULL;
|
|
|
|
|
// TODO: implement foo
|
|
|
|
|
str = r_core_cmd_str (core, radare_cmd);
|
2012-08-09 08:26:05 +00:00
|
|
|
|
r_sys_cmd_str_full (shell_cmd+1, str, &out, &olen, NULL);
|
2012-07-01 22:38:02 +00:00
|
|
|
|
r_cons_memcat (out, olen);
|
|
|
|
|
if (_ptr)
|
|
|
|
|
r_cons_grep (_ptr);
|
|
|
|
|
free (out);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
#if __UNIX__
|
2011-10-06 23:16:45 +00:00
|
|
|
|
radare_cmd = (char*)r_str_trim_head (radare_cmd);
|
|
|
|
|
shell_cmd = (char*)r_str_trim_head (shell_cmd);
|
2012-07-01 22:38:02 +00:00
|
|
|
|
|
|
|
|
|
stdout_fd = dup (1);
|
|
|
|
|
pipe (fds);
|
2011-03-01 18:06:22 +00:00
|
|
|
|
if (fork ()) {
|
|
|
|
|
dup2 (fds[1], 1);
|
2010-03-01 09:49:04 +00:00
|
|
|
|
close (fds[1]);
|
|
|
|
|
close (fds[0]);
|
|
|
|
|
r_core_cmd (core, radare_cmd, 0);
|
|
|
|
|
r_cons_flush ();
|
|
|
|
|
close (1);
|
|
|
|
|
wait (&status);
|
|
|
|
|
dup2 (stdout_fd, 1);
|
|
|
|
|
close (stdout_fd);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
} else {
|
2010-03-01 09:49:04 +00:00
|
|
|
|
close (fds[1]);
|
|
|
|
|
dup2 (fds[0], 0);
|
2012-08-13 11:16:06 +00:00
|
|
|
|
//dup2 (1, 2); // stderr goes to stdout
|
2012-10-19 22:31:18 +00:00
|
|
|
|
r_sandbox_system (shell_cmd, 0);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
|
|
|
|
return status;
|
2010-01-15 16:02:04 +00:00
|
|
|
|
#else
|
|
|
|
|
#warning r_core_cmd_pipe UNIMPLEMENTED FOR THIS PLATFORM
|
2010-08-22 22:48:44 +00:00
|
|
|
|
eprintf ("r_core_cmd_pipe: unimplemented for this platform\n");
|
2010-01-15 16:02:04 +00:00
|
|
|
|
return -1;
|
|
|
|
|
#endif
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:02:44 +00:00
|
|
|
|
static int r_core_cmd_subst_i(RCore *core, char *cmd);
|
2010-03-30 21:12:19 +00:00
|
|
|
|
static int r_core_cmd_subst(RCore *core, char *cmd) {
|
2012-02-27 01:02:44 +00:00
|
|
|
|
int rep = atoi (cmd);
|
2012-08-13 11:16:06 +00:00
|
|
|
|
char *cmt, *colon, *icmd = strdup (cmd);
|
2012-02-27 01:02:44 +00:00
|
|
|
|
cmd = r_str_trim_head_tail (icmd);
|
2012-08-13 11:16:06 +00:00
|
|
|
|
if (!memcmp (cmd, "# ", 2))
|
|
|
|
|
return 0;
|
|
|
|
|
cmt = strchr (icmd+1, '#');
|
|
|
|
|
if (cmt && cmt[1]==' ') {
|
|
|
|
|
*cmt = 0;
|
|
|
|
|
}
|
|
|
|
|
if (*cmd != '"') {
|
|
|
|
|
colon = strchr (icmd, ';');
|
|
|
|
|
if (colon)
|
|
|
|
|
*colon = 0;
|
2012-08-13 15:42:25 +00:00
|
|
|
|
} else colon = NULL;
|
2012-02-27 01:02:44 +00:00
|
|
|
|
if (rep>0) {
|
|
|
|
|
while (*cmd>='0' && *cmd<='9')
|
|
|
|
|
cmd++;
|
|
|
|
|
}
|
|
|
|
|
if (rep<1) rep = 1;
|
2012-08-19 01:28:17 +00:00
|
|
|
|
while (rep-- && *cmd) {
|
2012-02-27 01:02:44 +00:00
|
|
|
|
int ret = r_core_cmd_subst_i (core, cmd);
|
|
|
|
|
if (ret) {
|
2012-02-27 02:07:32 +00:00
|
|
|
|
free (icmd);
|
2012-02-27 01:02:44 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (colon) {
|
|
|
|
|
for (++colon; *colon ==';'; colon++);
|
|
|
|
|
r_core_cmd_subst (core, colon);
|
|
|
|
|
//*colon = ';';
|
2012-09-20 01:38:48 +00:00
|
|
|
|
} else {
|
|
|
|
|
if (!*cmd)
|
|
|
|
|
r_core_cmd_nullcallback(core);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
}
|
2012-02-27 02:07:32 +00:00
|
|
|
|
free (icmd);
|
2012-02-27 01:02:44 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-19 01:28:17 +00:00
|
|
|
|
static char *find_eoq (char *p) {
|
2012-10-30 01:49:05 +00:00
|
|
|
|
for (; *p; p++) {
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (*p=='"') break;
|
|
|
|
|
if (*p=='\\' && p[1]=='"')
|
|
|
|
|
p++;
|
|
|
|
|
}
|
|
|
|
|
return p;
|
|
|
|
|
}
|
|
|
|
|
|
2012-02-27 01:02:44 +00:00
|
|
|
|
static int r_core_cmd_subst_i(RCore *core, char *cmd) {
|
2009-04-15 18:24:19 +00:00
|
|
|
|
char *ptr, *ptr2, *str;
|
2012-08-28 09:02:25 +00:00
|
|
|
|
int i, ret, pipefd;
|
2012-07-01 22:38:02 +00:00
|
|
|
|
const char *tick = NULL;
|
2012-10-30 01:49:05 +00:00
|
|
|
|
const char *quotestr = "`";
|
2009-02-05 21:08:46 +00:00
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
cmd = r_str_trim_head_tail (cmd);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
|
2010-08-17 11:15:18 +00:00
|
|
|
|
/* quoted / raw command */
|
2011-06-26 19:24:22 +00:00
|
|
|
|
switch (*cmd) {
|
|
|
|
|
case '.':
|
|
|
|
|
if (cmd[1] == '"') { /* interpret */
|
2012-09-19 12:08:44 +00:00
|
|
|
|
ret = r_cmd_call (core->rcmd, cmd);
|
2011-06-26 19:24:22 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case '"':
|
2012-08-19 01:28:17 +00:00
|
|
|
|
for (cmd++; *cmd; ) {
|
|
|
|
|
ut64 oseek = UT64_MAX;
|
2012-08-21 10:06:56 +00:00
|
|
|
|
char *line, *p = find_eoq (cmd);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (p) {
|
|
|
|
|
*p = 0;
|
|
|
|
|
if (p[1]=='@' || p[2]=='@') {
|
|
|
|
|
char *q = strchr (p+1, '"');
|
|
|
|
|
if (q) *q = 0;
|
|
|
|
|
oseek = core->offset;
|
|
|
|
|
r_core_seek (core, r_num_math (
|
|
|
|
|
core->num, p+2), 1);
|
|
|
|
|
if (q) {
|
|
|
|
|
*p = '"';
|
|
|
|
|
p = q;
|
|
|
|
|
} else p = NULL;
|
|
|
|
|
}
|
2012-08-21 10:06:56 +00:00
|
|
|
|
line = strdup (cmd);
|
|
|
|
|
line = r_str_replace (line, "\\\"", "\"", R_TRUE);
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cmd_call (core->rcmd, line);
|
2012-08-21 10:06:56 +00:00
|
|
|
|
free (line);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (oseek != UT64_MAX) {
|
|
|
|
|
r_core_seek (core, oseek, 1);
|
|
|
|
|
oseek = UT64_MAX;
|
|
|
|
|
}
|
|
|
|
|
if (!p) break;
|
|
|
|
|
*p = '"';
|
|
|
|
|
cmd = p+1;
|
|
|
|
|
} else {
|
|
|
|
|
eprintf ("Missing \".");
|
|
|
|
|
return R_FALSE;
|
|
|
|
|
}
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
2012-08-19 01:28:17 +00:00
|
|
|
|
return R_TRUE;
|
2011-06-26 19:24:22 +00:00
|
|
|
|
case '(':
|
2012-02-27 01:02:44 +00:00
|
|
|
|
if (cmd[1] != '*')
|
2012-09-19 12:08:44 +00:00
|
|
|
|
return r_cmd_call (core->rcmd, cmd);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO must honor " and `
|
2010-08-16 11:59:48 +00:00
|
|
|
|
/* comments */
|
2010-08-24 02:09:12 +00:00
|
|
|
|
if (*cmd!='#') {
|
2012-01-31 01:45:17 +00:00
|
|
|
|
ptr = (char *)r_str_lastbut (cmd, '#', quotestr);
|
2012-08-13 11:16:06 +00:00
|
|
|
|
if (ptr && ptr[1]==' ') *ptr = '\0';
|
2010-08-24 02:09:12 +00:00
|
|
|
|
}
|
2010-08-16 11:59:48 +00:00
|
|
|
|
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* multiple commands */
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO: must honor " and ` boundaries
|
|
|
|
|
//ptr = strrchr (cmd, ';');
|
2012-02-27 01:02:44 +00:00
|
|
|
|
if (*cmd!='#') {
|
|
|
|
|
ptr = (char *)r_str_lastbut (cmd, ';', quotestr);
|
|
|
|
|
if (ptr) {
|
|
|
|
|
int ret ;
|
|
|
|
|
*ptr = '\0';
|
|
|
|
|
if (r_core_cmd_subst (core, cmd) == -1)
|
|
|
|
|
return -1;
|
|
|
|
|
cmd = ptr+1;
|
|
|
|
|
ret = r_core_cmd_subst (core, cmd);
|
|
|
|
|
*ptr = ';';
|
|
|
|
|
return ret;
|
|
|
|
|
//r_cons_flush ();
|
|
|
|
|
}
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
2009-02-18 00:43:57 +00:00
|
|
|
|
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO must honor " and `
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* pipe console to shell process */
|
2012-01-31 01:45:17 +00:00
|
|
|
|
//ptr = strchr (cmd, '|');
|
|
|
|
|
ptr = (char *)r_str_lastbut (cmd, '|', quotestr);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
if (ptr) {
|
2012-07-01 22:38:02 +00:00
|
|
|
|
char *ptr2 = strchr (cmd, '`');
|
2012-07-05 16:02:12 +00:00
|
|
|
|
if (!ptr2 || (ptr2 && ptr2>ptr)) {
|
2012-07-01 22:38:02 +00:00
|
|
|
|
if (!tick || (tick && tick > ptr)) {
|
|
|
|
|
*ptr = '\0';
|
|
|
|
|
cmd = r_str_clean (cmd);
|
|
|
|
|
if (*cmd) r_core_cmd_pipe (core, cmd, ptr+1);
|
|
|
|
|
else r_io_system (core->io, ptr+1);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO must honor " and `
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* bool conditions */
|
2012-01-31 01:45:17 +00:00
|
|
|
|
ptr = (char *)r_str_lastbut (cmd, '&', quotestr);
|
|
|
|
|
//ptr = strchr (cmd, '&');
|
2011-06-26 21:49:11 +00:00
|
|
|
|
while (ptr && ptr[1]=='&') {
|
|
|
|
|
*ptr = '\0';
|
2012-09-19 12:08:44 +00:00
|
|
|
|
ret = r_cmd_call (core->rcmd, cmd);
|
2011-08-27 18:25:37 +00:00
|
|
|
|
if (ret == -1) {
|
2010-02-22 23:26:13 +00:00
|
|
|
|
eprintf ("command error(%s)\n", cmd);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
2011-08-27 18:25:37 +00:00
|
|
|
|
for (cmd=ptr+2; cmd && *cmd==' '; cmd++);
|
2010-02-22 23:26:13 +00:00
|
|
|
|
ptr = strchr (cmd, '&');
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Out Of Band Input */
|
2010-02-22 23:26:13 +00:00
|
|
|
|
free (core->oobi);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
core->oobi = NULL;
|
2012-08-19 01:28:17 +00:00
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
ptr = strchr (cmd, '<');
|
2009-02-05 21:08:46 +00:00
|
|
|
|
if (ptr) {
|
|
|
|
|
ptr[0] = '\0';
|
|
|
|
|
if (ptr[1]=='<') {
|
|
|
|
|
/* this is a bit mess */
|
2011-11-01 03:37:13 +00:00
|
|
|
|
//const char *oprompt = strdup (r_line_singleton ()->prompt);
|
|
|
|
|
//oprompt = ">";
|
2011-08-27 18:25:37 +00:00
|
|
|
|
for (str=ptr+2; str[0]==' '; str++);
|
2010-02-28 21:58:21 +00:00
|
|
|
|
eprintf ("==> Reading from stdin until '%s'\n", str);
|
|
|
|
|
free (core->oobi);
|
|
|
|
|
core->oobi = malloc (1);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (core->oobi)
|
|
|
|
|
core->oobi[0] = '\0';
|
2009-02-05 21:08:46 +00:00
|
|
|
|
core->oobi_len = 0;
|
|
|
|
|
for (;;) {
|
|
|
|
|
char buf[1024];
|
|
|
|
|
int ret;
|
2011-03-01 18:06:22 +00:00
|
|
|
|
write (1, "> ", 2);
|
2010-08-10 10:34:10 +00:00
|
|
|
|
fgets (buf, sizeof (buf)-1, stdin); // XXX use r_line ??
|
2010-03-01 09:49:04 +00:00
|
|
|
|
if (feof (stdin))
|
2009-02-05 21:08:46 +00:00
|
|
|
|
break;
|
2010-03-01 09:49:04 +00:00
|
|
|
|
buf[strlen (buf)-1]='\0';
|
|
|
|
|
ret = strlen (buf);
|
2011-03-06 14:21:13 +00:00
|
|
|
|
core->oobi_len += ret;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
core->oobi = realloc (core->oobi, core->oobi_len+1);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
if (core->oobi) {
|
|
|
|
|
if (!strcmp (buf, str))
|
|
|
|
|
break;
|
|
|
|
|
strcat ((char *)core->oobi, buf);
|
|
|
|
|
}
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
2011-11-01 03:37:13 +00:00
|
|
|
|
//r_line_set_prompt (oprompt);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
} else {
|
2011-08-27 18:25:37 +00:00
|
|
|
|
for (str=ptr+1; *str== ' ';str++);
|
2012-10-30 01:49:05 +00:00
|
|
|
|
eprintf ("Slurping file '%s'\n", str);
|
2012-08-19 01:28:17 +00:00
|
|
|
|
free (core->oobi);
|
2010-02-05 11:21:37 +00:00
|
|
|
|
core->oobi = (ut8*)r_file_slurp (str, &core->oobi_len);
|
2009-03-14 11:39:37 +00:00
|
|
|
|
if (core->oobi == NULL)
|
2010-02-05 11:21:37 +00:00
|
|
|
|
eprintf ("Cannot open file\n");
|
2009-03-14 11:39:37 +00:00
|
|
|
|
else if (ptr == cmd)
|
2010-02-05 11:21:37 +00:00
|
|
|
|
return r_core_cmd_buffer (core, (const char *)core->oobi);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2009-12-31 00:27:03 +00:00
|
|
|
|
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO must honor " and `
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* pipe console to file */
|
2010-02-28 21:58:21 +00:00
|
|
|
|
ptr = strchr (cmd, '>');
|
2009-02-05 21:08:46 +00:00
|
|
|
|
if (ptr) {
|
2012-08-13 15:42:25 +00:00
|
|
|
|
int use_editor = R_FALSE;
|
|
|
|
|
int ocolor = r_config_get_i (core->config, "scr.color");
|
2012-02-05 00:25:40 +00:00
|
|
|
|
/* r_cons_flush() handles interactive output (to the terminal)
|
|
|
|
|
* differently (e.g. asking about too long output). This conflicts
|
|
|
|
|
* with piping to a file. Disable it while piping. */
|
|
|
|
|
r_cons_set_interactive (R_FALSE);
|
2011-06-26 21:49:11 +00:00
|
|
|
|
*ptr = '\0';
|
2010-02-28 21:58:21 +00:00
|
|
|
|
str = r_str_trim_head_tail (ptr+1+(ptr[1]=='>'));
|
2012-08-13 15:42:25 +00:00
|
|
|
|
if (!strcmp (str, "-")) {
|
|
|
|
|
use_editor = R_TRUE;
|
|
|
|
|
str = r_file_temp ("dumpedit");
|
|
|
|
|
r_config_set (core->config, "scr.color", "false");
|
|
|
|
|
}
|
2010-02-28 21:58:21 +00:00
|
|
|
|
pipefd = r_cons_pipe_open (str, ptr[1]=='>');
|
|
|
|
|
ret = r_core_cmd_subst (core, cmd);
|
|
|
|
|
r_cons_flush ();
|
|
|
|
|
r_cons_pipe_close (pipefd);
|
2012-02-05 00:25:40 +00:00
|
|
|
|
r_cons_set_last_interactive ();
|
2012-08-13 15:42:25 +00:00
|
|
|
|
if (use_editor) {
|
|
|
|
|
const char *editor = r_config_get (core->config, "cfg.editor");
|
2012-10-30 01:49:05 +00:00
|
|
|
|
if (editor && *editor)
|
2012-08-13 15:42:25 +00:00
|
|
|
|
r_sys_cmdf ("%s '%s'", editor, str);
|
2012-10-30 01:49:05 +00:00
|
|
|
|
else eprintf ("No cfg.editor configured\n");
|
2012-08-13 15:42:25 +00:00
|
|
|
|
r_config_set_i (core->config, "scr.color", ocolor);
|
|
|
|
|
r_file_rm (str);
|
|
|
|
|
free (str);
|
|
|
|
|
}
|
2009-12-31 00:27:03 +00:00
|
|
|
|
return ret;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
2009-03-21 22:59:35 +00:00
|
|
|
|
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* sub commands */
|
2010-02-05 11:21:37 +00:00
|
|
|
|
ptr = strchr (cmd, '`');
|
2009-12-31 00:27:03 +00:00
|
|
|
|
if (ptr) {
|
2012-06-22 01:49:25 +00:00
|
|
|
|
int oneline = 1;
|
|
|
|
|
if (ptr[1]=='`') {
|
|
|
|
|
strcpy (ptr, ptr+1);
|
|
|
|
|
oneline = 0;
|
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
ptr2 = strchr (ptr+1, '`');
|
2009-12-31 00:27:03 +00:00
|
|
|
|
if (!ptr2) {
|
2010-02-05 11:21:37 +00:00
|
|
|
|
eprintf ("parse: Missing '´' in expression.\n");
|
2009-12-31 00:27:03 +00:00
|
|
|
|
return -1;
|
|
|
|
|
} else {
|
2011-06-26 21:49:11 +00:00
|
|
|
|
*ptr = '\0';
|
|
|
|
|
*ptr2 = '\0';
|
2012-10-25 10:55:28 +00:00
|
|
|
|
if (ptr[1] == '!') {
|
|
|
|
|
str = r_core_cmd_str_pipe (core, ptr+1);
|
|
|
|
|
} else
|
|
|
|
|
str = r_core_cmd_str (core, ptr+1);
|
2012-06-22 01:49:25 +00:00
|
|
|
|
if (oneline)
|
|
|
|
|
for (i=0; str[i]; i++)
|
|
|
|
|
if (str[i]=='\n')
|
|
|
|
|
str[i]=' ';
|
2012-02-12 22:45:04 +00:00
|
|
|
|
str = r_str_concat (str, ptr2+1);
|
|
|
|
|
cmd = r_str_concat (strdup (cmd), str);
|
2010-02-05 11:21:37 +00:00
|
|
|
|
ret = r_core_cmd_subst (core, cmd);
|
|
|
|
|
free (cmd);
|
|
|
|
|
free (str);
|
2009-12-31 00:27:03 +00:00
|
|
|
|
return ret;
|
2009-03-21 22:59:35 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-31 01:45:17 +00:00
|
|
|
|
// TODO must honor " and `
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* grep the content */
|
2012-01-31 01:45:17 +00:00
|
|
|
|
ptr = (char *)r_str_lastbut (cmd, '~', quotestr);
|
|
|
|
|
//ptr = strchr (cmd, '~');
|
2009-03-21 22:59:35 +00:00
|
|
|
|
if (ptr) {
|
2011-06-26 21:49:11 +00:00
|
|
|
|
*ptr = '\0';
|
2011-08-27 18:25:37 +00:00
|
|
|
|
ptr++;
|
|
|
|
|
}
|
2011-08-27 23:49:29 +00:00
|
|
|
|
r_cons_grep (ptr);
|
2009-03-21 22:59:35 +00:00
|
|
|
|
|
2009-12-31 00:27:03 +00:00
|
|
|
|
/* seek commands */
|
2011-06-26 21:49:11 +00:00
|
|
|
|
if (*cmd!='(' && *cmd!='"')
|
2011-01-26 22:40:16 +00:00
|
|
|
|
ptr = strchr (cmd, '@');
|
|
|
|
|
else ptr = NULL;
|
2011-09-02 01:45:50 +00:00
|
|
|
|
core->tmpseek = ptr? R_TRUE: R_FALSE;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
if (ptr) {
|
2012-05-30 01:23:53 +00:00
|
|
|
|
ut64 tmpoff, tmpbsz, addr;
|
2012-09-20 01:38:48 +00:00
|
|
|
|
ut8 *buf;
|
2012-07-12 01:55:09 +00:00
|
|
|
|
const char *offstr;
|
2012-09-20 01:38:48 +00:00
|
|
|
|
char *f, *ptr2 = strchr (ptr+1, ':');
|
2012-09-27 17:35:19 +00:00
|
|
|
|
int sz, len;
|
2010-08-10 10:34:10 +00:00
|
|
|
|
tmpoff = core->offset;
|
|
|
|
|
tmpbsz = core->blocksize;
|
2012-09-20 01:38:48 +00:00
|
|
|
|
*ptr = '\0';
|
|
|
|
|
for (ptr++;*ptr== ' ';ptr++); ptr--;
|
|
|
|
|
if (ptr[2]==':') {
|
|
|
|
|
switch (ptr[1]) {
|
|
|
|
|
case 'f':
|
|
|
|
|
f = r_file_slurp (ptr+3, &sz);
|
|
|
|
|
if (f) {
|
|
|
|
|
buf = malloc (sz);
|
|
|
|
|
if (buf) {
|
|
|
|
|
free (core->block);
|
|
|
|
|
core->block = buf;
|
|
|
|
|
core->blocksize = sz;
|
|
|
|
|
memcpy (core->block, f, sz);
|
|
|
|
|
} else eprintf ("Cannot alloc %d", sz);
|
|
|
|
|
free (f);
|
|
|
|
|
} else eprintf ("Cannot open '%s'\n", ptr+3);
|
|
|
|
|
break;
|
|
|
|
|
case '8':
|
|
|
|
|
case 'b':
|
|
|
|
|
buf = malloc (strlen (ptr+2));
|
|
|
|
|
if (!buf) {
|
|
|
|
|
eprintf ("cannot allocate\n");
|
|
|
|
|
return R_FALSE;
|
|
|
|
|
}
|
|
|
|
|
len = r_hex_str2bin (ptr+3, buf);
|
|
|
|
|
r_core_block_size (core, len);
|
|
|
|
|
memcpy (core->block, buf, len);
|
|
|
|
|
free (buf);
|
|
|
|
|
break;
|
|
|
|
|
case 's':
|
|
|
|
|
len = strlen (ptr+3);
|
|
|
|
|
r_core_block_size (core, len);
|
|
|
|
|
memcpy (core->block, ptr+3, len);
|
|
|
|
|
break;
|
2012-09-21 00:25:44 +00:00
|
|
|
|
default:
|
|
|
|
|
goto ignore;
|
2012-09-20 01:38:48 +00:00
|
|
|
|
}
|
|
|
|
|
ret = r_cmd_call (core->rcmd, r_str_trim_head (cmd));
|
|
|
|
|
*ptr = '@';
|
|
|
|
|
r_core_block_size (core, tmpbsz);
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
2012-09-21 00:25:44 +00:00
|
|
|
|
ignore:
|
2012-09-20 01:38:48 +00:00
|
|
|
|
for (ptr++;*ptr== ' ';ptr++); ptr--;
|
|
|
|
|
cmd = r_str_clean (cmd);
|
2010-08-10 10:34:10 +00:00
|
|
|
|
if (ptr2) {
|
|
|
|
|
*ptr2 = '\0';
|
|
|
|
|
r_core_block_size (core, r_num_math (core->num, ptr2+1));
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-12 01:55:09 +00:00
|
|
|
|
offstr = r_str_trim_head (ptr+1);
|
|
|
|
|
|
|
|
|
|
addr = r_num_math (core->num, offstr);
|
2012-05-30 01:23:53 +00:00
|
|
|
|
if (isalpha (ptr[1]) && addr== 0) {
|
|
|
|
|
if (!r_flag_get (core->flags, ptr+1)) {
|
|
|
|
|
eprintf ("Invalid address (%s)\n", ptr+1);
|
|
|
|
|
return R_FALSE;
|
|
|
|
|
}
|
2012-07-12 01:55:09 +00:00
|
|
|
|
} else {
|
|
|
|
|
char ch = *offstr;
|
|
|
|
|
if (ch=='-' || ch=='+')
|
|
|
|
|
addr = core->offset+addr;
|
|
|
|
|
}
|
2009-02-05 21:08:46 +00:00
|
|
|
|
if (ptr[1]=='@') {
|
2009-03-21 02:17:43 +00:00
|
|
|
|
// TODO: remove temporally seek (should be done by cmd_foreach)
|
2010-03-05 12:18:44 +00:00
|
|
|
|
ret = r_core_cmd_foreach (core, cmd, ptr+2);
|
|
|
|
|
//ret = -1; /* do not run out-of-foreach cmd */
|
2009-12-31 00:27:03 +00:00
|
|
|
|
} else {
|
2012-05-30 01:23:53 +00:00
|
|
|
|
if (!ptr[1] || r_core_seek (core, addr, 1)) {
|
2011-05-21 13:45:43 +00:00
|
|
|
|
r_core_block_read (core, 0);
|
2012-09-19 12:08:44 +00:00
|
|
|
|
ret = r_cmd_call (core->rcmd, r_str_trim_head (cmd));
|
2011-05-21 13:45:43 +00:00
|
|
|
|
} else ret = 0;
|
2009-12-31 00:27:03 +00:00
|
|
|
|
}
|
2010-08-10 10:34:10 +00:00
|
|
|
|
if (ptr2) {
|
|
|
|
|
*ptr2 = ':';
|
|
|
|
|
r_core_block_size (core, tmpbsz);
|
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_seek (core, tmpoff, 1);
|
2010-08-10 10:34:10 +00:00
|
|
|
|
*ptr = '@';
|
2009-12-31 00:27:03 +00:00
|
|
|
|
return ret;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2012-09-19 12:08:44 +00:00
|
|
|
|
return cmd? r_cmd_call (core->rcmd, r_str_trim_head (cmd)): R_FALSE;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
R_API int r_core_cmd_foreach(RCore *core, const char *cmd, char *each) {
|
2011-08-27 18:25:37 +00:00
|
|
|
|
int i, j;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
char ch;
|
|
|
|
|
char *word = NULL;
|
2009-03-21 22:59:35 +00:00
|
|
|
|
char *str, *ostr;
|
2010-12-23 23:51:01 +00:00
|
|
|
|
RListIter *iter;
|
|
|
|
|
RFlagItem *flag;
|
2009-07-08 11:49:55 +00:00
|
|
|
|
ut64 oseek, addr;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2010-02-28 21:58:21 +00:00
|
|
|
|
for (; *each==' '; each++);
|
|
|
|
|
for (; *cmd==' '; cmd++);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2010-01-12 01:12:18 +00:00
|
|
|
|
oseek = core->offset;
|
2009-03-21 22:59:35 +00:00
|
|
|
|
ostr = str = strdup(each);
|
2011-09-11 01:59:24 +00:00
|
|
|
|
//r_cons_break();
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2010-02-28 21:58:21 +00:00
|
|
|
|
switch (each[0]) {
|
2009-03-20 21:05:12 +00:00
|
|
|
|
case '?':
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_cons_printf (
|
|
|
|
|
"Foreach '@@' iterator command:\n"
|
|
|
|
|
" This command is used to repeat a command over a list of offsets.\n"
|
2012-10-28 23:47:20 +00:00
|
|
|
|
" x @@ sym.* Run 'x' over all flags matching 'sym.' in current flagspace\n"
|
2010-02-05 11:21:37 +00:00
|
|
|
|
" x @@.file \"\" over the offsets specified in the file (one offset per line)\n"
|
|
|
|
|
" x @@=off1 off2 .. Manual list of offsets\n"
|
|
|
|
|
" x @@=`pdf~call[0]` Run 'x' at every call offset of the current function\n");
|
2009-03-20 21:05:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case '=':
|
|
|
|
|
/* foreach list of items */
|
2009-03-21 22:59:35 +00:00
|
|
|
|
each = str+1;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
do {
|
2011-08-27 18:25:37 +00:00
|
|
|
|
while (*each==' ') each++;
|
2009-03-21 22:59:35 +00:00
|
|
|
|
if (!*each) break;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
str = strchr (each, ' ');
|
2009-03-21 02:17:43 +00:00
|
|
|
|
if (str) {
|
2011-08-27 18:25:37 +00:00
|
|
|
|
*str = '\0';
|
2010-05-19 22:59:42 +00:00
|
|
|
|
addr = r_num_math (core->num, each);
|
2011-08-27 18:25:37 +00:00
|
|
|
|
*str = ' ';
|
2010-05-19 22:59:42 +00:00
|
|
|
|
} else addr = r_num_math (core->num, each);
|
2010-04-14 11:02:23 +00:00
|
|
|
|
eprintf ("; 0x%08"PFMT64x":\n", addr);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
each = str+1;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_seek (core, addr, 1);
|
|
|
|
|
r_core_cmd (core, cmd, 0);
|
|
|
|
|
r_cons_flush ();
|
|
|
|
|
} while (str != NULL);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
break;
|
|
|
|
|
case '.':
|
|
|
|
|
if (each[1]=='(') {
|
|
|
|
|
char cmd2[1024];
|
2011-09-11 01:59:24 +00:00
|
|
|
|
// TODO: use r_cons_break() here
|
2010-02-05 11:21:37 +00:00
|
|
|
|
// XXX whats this 999 ?
|
2011-08-27 18:25:37 +00:00
|
|
|
|
i = 0;
|
2011-09-11 01:59:24 +00:00
|
|
|
|
r_cons_break (NULL, NULL);
|
2012-09-19 12:08:44 +00:00
|
|
|
|
for (core->rcmd->macro.counter=0;i<999;core->rcmd->macro.counter++) {
|
2011-09-11 01:59:24 +00:00
|
|
|
|
if (r_cons_singleton ()->breaked)
|
|
|
|
|
break;
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cmd_macro_call (&core->rcmd->macro, each+2);
|
|
|
|
|
if (core->rcmd->macro.brk_value == NULL)
|
2009-03-20 21:05:12 +00:00
|
|
|
|
break;
|
|
|
|
|
|
2012-09-19 12:08:44 +00:00
|
|
|
|
addr = core->rcmd->macro._brk_value;
|
2010-04-14 11:02:23 +00:00
|
|
|
|
sprintf (cmd2, "%s @ 0x%08"PFMT64x"", cmd, addr);
|
|
|
|
|
eprintf ("0x%08"PFMT64x" (%s)\n", addr, cmd2);
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_seek (core, addr, 1);
|
|
|
|
|
r_core_cmd (core, cmd2, 0);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
i++;
|
|
|
|
|
}
|
2011-09-11 01:59:24 +00:00
|
|
|
|
r_cons_break_end();
|
2009-03-20 21:05:12 +00:00
|
|
|
|
} else {
|
|
|
|
|
char buf[1024];
|
|
|
|
|
char cmd2[1024];
|
2012-10-19 22:31:18 +00:00
|
|
|
|
FILE *fd = r_sandbox_fopen (each+1, "r");
|
2009-09-24 10:29:05 +00:00
|
|
|
|
if (fd) {
|
2012-09-19 12:08:44 +00:00
|
|
|
|
core->rcmd->macro.counter=0;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
while (!feof (fd)) {
|
|
|
|
|
buf[0] = '\0';
|
2012-06-12 00:51:34 +00:00
|
|
|
|
if (fgets (buf, sizeof (buf), fd) == NULL)
|
2010-02-05 11:21:37 +00:00
|
|
|
|
break;
|
2010-05-19 22:59:42 +00:00
|
|
|
|
addr = r_num_math (core->num, buf);
|
2010-04-14 11:02:23 +00:00
|
|
|
|
eprintf ("0x%08"PFMT64x": %s\n", addr, cmd);
|
|
|
|
|
sprintf (cmd2, "%s @ 0x%08"PFMT64x"", cmd, addr);
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_seek (core, addr, 1); // XXX
|
|
|
|
|
r_core_cmd (core, cmd2, 0);
|
2012-09-19 12:08:44 +00:00
|
|
|
|
core->rcmd->macro.counter++;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
fclose (fd);
|
|
|
|
|
} else eprintf ("Cannot open file '%s' to read offsets\n", each+1);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
2012-09-19 12:08:44 +00:00
|
|
|
|
core->rcmd->macro.counter = 0;
|
2010-02-28 21:58:21 +00:00
|
|
|
|
//while(str[i]) && !core->interrupted) {
|
2011-06-07 15:53:15 +00:00
|
|
|
|
// split by keywords
|
2011-08-27 18:25:37 +00:00
|
|
|
|
i = 0;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
while (str[i]) {
|
2009-03-20 21:05:12 +00:00
|
|
|
|
j = i;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
for (;str[j]&&str[j]==' ';j++); // skip spaces
|
|
|
|
|
for (i=j;str[i]&&str[i]!=' ';i++); // find EOS
|
2009-03-20 21:05:12 +00:00
|
|
|
|
ch = str[i];
|
|
|
|
|
str[i] = '\0';
|
2010-02-05 11:21:37 +00:00
|
|
|
|
word = strdup (str+j);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
if (word == NULL)
|
|
|
|
|
break;
|
|
|
|
|
str[i] = ch;
|
2011-06-07 15:53:15 +00:00
|
|
|
|
{
|
2009-03-20 21:05:12 +00:00
|
|
|
|
/* for all flags in current flagspace */
|
2011-06-07 15:53:15 +00:00
|
|
|
|
// XXX: dont ask why, but this only works with _prev..
|
|
|
|
|
r_list_foreach_prev (core->flags->flags, iter, flag) {
|
2010-02-18 15:36:55 +00:00
|
|
|
|
if (r_cons_singleton()->breaked)
|
2009-03-21 02:17:43 +00:00
|
|
|
|
break;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
/* filter per flag spaces */
|
2010-05-19 22:59:42 +00:00
|
|
|
|
if ((core->flags->space_idx != -1) && (flag->space != core->flags->space_idx))
|
2009-03-20 21:05:12 +00:00
|
|
|
|
continue;
|
2011-06-07 15:53:15 +00:00
|
|
|
|
if (r_str_glob (flag->name, word)) {
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_seek (core, flag->offset, 1);
|
2010-04-14 11:02:23 +00:00
|
|
|
|
//r_cons_printf ("# @@ 0x%08"PFMT64x" (%s)\n", core->offset, flag->name);
|
2011-09-11 23:47:28 +00:00
|
|
|
|
r_cons_printf ("0x%08"PFMT64x" ", core->offset);
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_core_cmd (core, cmd, 0);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_cons_break (NULL, NULL);
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2012-09-19 12:08:44 +00:00
|
|
|
|
core->rcmd->macro.counter++ ;
|
2010-02-05 11:21:37 +00:00
|
|
|
|
free (word);
|
|
|
|
|
word = NULL;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-02-05 11:21:37 +00:00
|
|
|
|
r_cons_break_end ();
|
2009-03-21 02:17:43 +00:00
|
|
|
|
// XXX: use r_core_seek here
|
2010-01-12 01:12:18 +00:00
|
|
|
|
core->offset = oseek;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
|
2010-02-05 11:21:37 +00:00
|
|
|
|
free (word);
|
|
|
|
|
free (ostr);
|
2009-04-02 10:23:32 +00:00
|
|
|
|
return R_TRUE;
|
2009-03-20 21:05:12 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-06 09:35:18 +00:00
|
|
|
|
R_API int r_core_cmd(RCore *core, const char *cstr, int log) {
|
2012-02-27 01:40:27 +00:00
|
|
|
|
int ret = R_FALSE;
|
2010-01-21 01:38:52 +00:00
|
|
|
|
char *cmd, *ocmd;
|
2011-06-28 22:36:52 +00:00
|
|
|
|
if (cstr==NULL)
|
|
|
|
|
return R_FALSE;
|
2011-08-27 18:25:37 +00:00
|
|
|
|
if (log && *cstr && *cstr!='.') {
|
|
|
|
|
free (core->lastcmd);
|
|
|
|
|
core->lastcmd = strdup (cstr);
|
|
|
|
|
}
|
2011-09-03 00:27:27 +00:00
|
|
|
|
/* list r_cmd plugins */
|
2011-06-04 01:14:04 +00:00
|
|
|
|
if (!strcmp (cstr, ":")) {
|
2012-02-14 17:19:16 +00:00
|
|
|
|
RListIter *iter;
|
|
|
|
|
RCmdPlugin *cp;
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_list_foreach (core->rcmd->plist, iter, cp) {
|
2011-06-04 01:14:04 +00:00
|
|
|
|
r_cons_printf ("%s: %s\n", cp->name, cp->desc);
|
2010-06-03 09:53:42 +00:00
|
|
|
|
}
|
2011-06-04 01:14:04 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
ocmd = cmd = malloc (strlen (cstr)+8192);
|
|
|
|
|
if (ocmd == NULL)
|
|
|
|
|
return R_FALSE;
|
|
|
|
|
r_str_cpy (cmd, cstr);
|
2012-02-27 01:02:44 +00:00
|
|
|
|
ret = r_core_cmd_subst (core, cmd);
|
2011-06-04 01:14:04 +00:00
|
|
|
|
if (log) r_line_hist_add (cstr);
|
|
|
|
|
|
|
|
|
|
free (ocmd);
|
|
|
|
|
free (core->oobi);
|
|
|
|
|
core->oobi = NULL;
|
|
|
|
|
core->oobi_len = 0;
|
2009-09-24 10:29:05 +00:00
|
|
|
|
return ret;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-30 21:12:19 +00:00
|
|
|
|
R_API int r_core_cmd_file(RCore *core, const char *file) {
|
2010-03-30 22:03:59 +00:00
|
|
|
|
int ret = R_TRUE;
|
2012-07-12 23:23:05 +00:00
|
|
|
|
char *nl, *data, *odata = r_file_slurp (file, NULL);
|
2012-08-13 03:10:04 +00:00
|
|
|
|
if (!odata) return -2;
|
2012-07-12 23:23:05 +00:00
|
|
|
|
nl = strchr (odata, '\n');
|
|
|
|
|
if (nl) {
|
|
|
|
|
data = odata;
|
|
|
|
|
do {
|
|
|
|
|
*nl = '\0';
|
|
|
|
|
ret = r_core_cmd (core, data, 0);
|
|
|
|
|
if (ret == -1) {
|
|
|
|
|
eprintf ("r_core_cmd_file: Failed to run '%s'\n", data);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
r_cons_flush ();
|
2012-07-20 15:14:28 +00:00
|
|
|
|
if (data[0]=='q') {
|
|
|
|
|
if (data[1]=='!')
|
|
|
|
|
ret = -1;
|
|
|
|
|
else eprintf ("'q': quit ignored. Use 'q!'\n");
|
2012-07-12 23:23:05 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
data = nl+1;
|
|
|
|
|
} while ((nl = strchr (data, '\n')));
|
|
|
|
|
}
|
|
|
|
|
free (odata);
|
2010-03-30 22:03:59 +00:00
|
|
|
|
return ret;
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-30 21:12:19 +00:00
|
|
|
|
R_API int r_core_cmd_command(RCore *core, const char *command) {
|
2009-12-30 10:03:18 +00:00
|
|
|
|
int len;
|
2010-02-15 21:59:26 +00:00
|
|
|
|
char *buf, *rcmd, *ptr;
|
|
|
|
|
rcmd = ptr = buf = r_sys_cmd_str (command, 0, &len);
|
2009-12-30 10:03:18 +00:00
|
|
|
|
if (buf == NULL)
|
|
|
|
|
return -1;
|
2010-01-21 01:38:52 +00:00
|
|
|
|
while ((ptr = strstr (rcmd, "\n"))) {
|
2009-12-30 10:03:18 +00:00
|
|
|
|
*ptr = '\0';
|
2010-01-21 01:38:52 +00:00
|
|
|
|
if (r_core_cmd (core, rcmd, 0) == -1) {
|
|
|
|
|
eprintf ("Error running command '%s'\n", rcmd);
|
2010-02-15 21:59:26 +00:00
|
|
|
|
break;
|
2009-12-30 10:03:18 +00:00
|
|
|
|
}
|
2010-01-21 01:38:52 +00:00
|
|
|
|
rcmd += strlen (rcmd)+1;
|
2009-12-30 10:03:18 +00:00
|
|
|
|
}
|
2011-11-11 16:14:09 +00:00
|
|
|
|
free (buf);
|
2009-12-30 10:03:18 +00:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-10-09 17:13:10 +00:00
|
|
|
|
//TODO: Fix disasm loop is mandatory
|
2010-10-09 11:54:08 +00:00
|
|
|
|
R_API char *r_core_disassemble_instr(RCore *core, ut64 addr, int l) {
|
|
|
|
|
char *cmd, *ret = NULL;
|
|
|
|
|
cmd = r_str_dup_printf ("pd %i @ 0x%08"PFMT64x, l, addr);
|
|
|
|
|
if (cmd) {
|
|
|
|
|
ret = r_core_cmd_str (core, cmd);
|
|
|
|
|
free (cmd);
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
R_API char *r_core_disassemble_bytes(RCore *core, ut64 addr, int b) {
|
|
|
|
|
char *cmd, *ret = NULL;
|
|
|
|
|
cmd = r_str_dup_printf ("pD %i @ 0x%08"PFMT64x, b, addr);
|
|
|
|
|
if (cmd) {
|
|
|
|
|
ret = r_core_cmd_str (core, cmd);
|
|
|
|
|
free (cmd);
|
|
|
|
|
}
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
R_API int r_core_cmd_buffer(void *user, const char *buf) {
|
2010-06-20 22:48:06 +00:00
|
|
|
|
char *ptr, *optr, *str = strdup (buf);
|
|
|
|
|
optr = str;
|
|
|
|
|
ptr = strchr (str, '\n');
|
2010-02-28 21:58:21 +00:00
|
|
|
|
while (ptr) {
|
2011-08-27 18:25:37 +00:00
|
|
|
|
*ptr = '\0';
|
2010-02-28 21:58:21 +00:00
|
|
|
|
r_core_cmd (user, optr, 0);
|
2009-03-14 11:39:37 +00:00
|
|
|
|
optr = ptr+1;
|
2010-06-20 22:48:06 +00:00
|
|
|
|
ptr = strchr (str, '\n');
|
2009-03-14 11:39:37 +00:00
|
|
|
|
}
|
2010-02-28 21:58:21 +00:00
|
|
|
|
r_core_cmd (user, optr, 0);
|
|
|
|
|
free (str);
|
2009-03-14 11:39:37 +00:00
|
|
|
|
return R_TRUE;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
R_API int r_core_cmdf(void *user, const char *fmt, ...) {
|
2012-07-12 23:23:05 +00:00
|
|
|
|
char string[4096];
|
2009-02-18 00:43:57 +00:00
|
|
|
|
int ret;
|
|
|
|
|
va_list ap;
|
2010-02-01 10:55:56 +00:00
|
|
|
|
va_start (ap, fmt);
|
2010-06-20 22:48:06 +00:00
|
|
|
|
vsnprintf (string, sizeof (string), fmt, ap);
|
2010-03-30 21:12:19 +00:00
|
|
|
|
ret = r_core_cmd ((RCore *)user, string, 0);
|
2011-08-27 18:25:37 +00:00
|
|
|
|
va_end (ap);
|
2009-02-18 00:43:57 +00:00
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2010-02-22 23:26:13 +00:00
|
|
|
|
R_API int r_core_cmd0(void *user, const char *cmd) {
|
2010-03-30 21:12:19 +00:00
|
|
|
|
return r_core_cmd ((RCore *)user, cmd, 0);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-06-27 23:27:40 +00:00
|
|
|
|
R_API int r_core_flush(void *user, const char *cmd) {
|
|
|
|
|
int ret = r_core_cmd ((RCore *)user, cmd, 0);
|
|
|
|
|
r_cons_flush ();
|
|
|
|
|
return ret;
|
|
|
|
|
}
|
|
|
|
|
|
2012-09-06 01:12:54 +00:00
|
|
|
|
R_API char *r_core_cmd_str_pipe(RCore *core, const char *cmd) {
|
2012-09-27 17:35:19 +00:00
|
|
|
|
char *s, *tmp;
|
2012-09-06 01:12:54 +00:00
|
|
|
|
r_cons_reset ();
|
|
|
|
|
if (r_file_mkstemp ("cmd", &tmp)) {
|
|
|
|
|
char *_cmd = strdup (cmd);
|
|
|
|
|
int pipefd = r_cons_pipe_open (tmp, 0);
|
|
|
|
|
r_core_cmd_subst (core, _cmd);
|
|
|
|
|
r_cons_flush ();
|
|
|
|
|
r_cons_pipe_close (pipefd);
|
|
|
|
|
s = r_file_slurp (tmp, NULL);
|
|
|
|
|
r_file_rm (tmp);
|
|
|
|
|
free (tmp);
|
|
|
|
|
free (_cmd);
|
|
|
|
|
return s;
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
2010-06-20 22:48:06 +00:00
|
|
|
|
/* return: pointer to a buffer with the output of the command */
|
2010-03-30 21:12:19 +00:00
|
|
|
|
R_API char *r_core_cmd_str(RCore *core, const char *cmd) {
|
2011-11-11 16:14:09 +00:00
|
|
|
|
const char *static_str;
|
2009-09-20 00:16:14 +00:00
|
|
|
|
char *retstr = NULL;
|
2010-02-01 10:55:56 +00:00
|
|
|
|
r_cons_reset ();
|
|
|
|
|
if (r_core_cmd (core, cmd, 0) == -1) {
|
|
|
|
|
eprintf ("Invalid command: %s\n", cmd);
|
|
|
|
|
retstr = strdup ("");
|
2009-02-05 21:08:46 +00:00
|
|
|
|
} else {
|
2010-08-16 23:27:24 +00:00
|
|
|
|
r_cons_filter ();
|
2011-11-11 16:14:09 +00:00
|
|
|
|
static_str = r_cons_get_buffer ();
|
2011-08-27 18:25:37 +00:00
|
|
|
|
retstr = strdup (static_str? static_str: "");
|
2010-08-16 23:27:24 +00:00
|
|
|
|
r_cons_reset ();
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|
|
|
|
|
return retstr;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-27 18:25:37 +00:00
|
|
|
|
R_API void r_core_cmd_repeat(RCore *core, int next) {
|
|
|
|
|
// Alias for ".."
|
|
|
|
|
if (core->lastcmd)
|
|
|
|
|
switch (*core->lastcmd) {
|
|
|
|
|
case 'd': // debug
|
|
|
|
|
r_core_cmd0 (core, core->lastcmd);
|
|
|
|
|
switch (core->lastcmd[1]) {
|
|
|
|
|
case 's':
|
|
|
|
|
case 'c':
|
|
|
|
|
r_core_cmd0 (core, "sr pc && pd 1");
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case 'p': // print
|
|
|
|
|
case 'x':
|
|
|
|
|
r_core_cmd0 (core, next? "s++": "s--");
|
|
|
|
|
r_core_cmd0 (core, core->lastcmd);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
R_API void r_core_cmd_init(RCore *core) {
|
2012-09-19 12:08:44 +00:00
|
|
|
|
core->rcmd = r_cmd_new ();
|
|
|
|
|
core->rcmd->macro.printf = (PrintfCallback)r_cons_printf;
|
|
|
|
|
core->rcmd->macro.num = core->num;
|
|
|
|
|
core->rcmd->macro.user = core;
|
|
|
|
|
core->rcmd->macro.cmd = r_core_cmd0;
|
|
|
|
|
core->rcmd->nullcallback = r_core_cmd_nullcallback;
|
|
|
|
|
r_cmd_set_data (core->rcmd, core);
|
|
|
|
|
r_cmd_add (core->rcmd, "x", "alias for px", &cmd_hexdump);
|
|
|
|
|
r_cmd_add (core->rcmd, "mount", "mount filesystem", &cmd_mount);
|
|
|
|
|
r_cmd_add (core->rcmd, "analysis", "analysis", &cmd_anal);
|
|
|
|
|
r_cmd_add (core->rcmd, "flag", "get/set flags", &cmd_flag);
|
|
|
|
|
r_cmd_add (core->rcmd, "g", "egg manipulation", &cmd_egg);
|
|
|
|
|
r_cmd_add (core->rcmd, "debug", "debugger operations", &cmd_debug);
|
|
|
|
|
r_cmd_add (core->rcmd, "info", "get file info", &cmd_info);
|
|
|
|
|
r_cmd_add (core->rcmd, "cmp", "compare memory", &cmd_cmp);
|
|
|
|
|
r_cmd_add (core->rcmd, "seek", "seek to an offset", &cmd_seek);
|
|
|
|
|
r_cmd_add (core->rcmd, "t", "type information (cparse)", &cmd_type);
|
|
|
|
|
r_cmd_add (core->rcmd, "zign", "zignatures", &cmd_zign);
|
|
|
|
|
r_cmd_add (core->rcmd, "Section", "setup section io information", &cmd_section);
|
|
|
|
|
r_cmd_add (core->rcmd, "bsize", "change block size", &cmd_bsize);
|
|
|
|
|
r_cmd_add (core->rcmd, "eval", "evaluate configuration variable", &cmd_eval);
|
|
|
|
|
r_cmd_add (core->rcmd, "print", "print current block", &cmd_print);
|
|
|
|
|
r_cmd_add (core->rcmd, "write", "write bytes", &cmd_write);
|
|
|
|
|
r_cmd_add (core->rcmd, "Code", "code metadata", &cmd_meta);
|
|
|
|
|
r_cmd_add (core->rcmd, "Project", "project", &cmd_project);
|
|
|
|
|
r_cmd_add (core->rcmd, "open", "open or map file", &cmd_open);
|
|
|
|
|
r_cmd_add (core->rcmd, "yank", "yank bytes", &cmd_yank);
|
|
|
|
|
r_cmd_add (core->rcmd, "resize", "change file size", &cmd_resize);
|
|
|
|
|
r_cmd_add (core->rcmd, "Visual", "enter visual mode", &cmd_visual);
|
|
|
|
|
r_cmd_add (core->rcmd, "!", "run system command", &cmd_system);
|
|
|
|
|
r_cmd_add (core->rcmd, "=", "io pipe", &cmd_rap);
|
|
|
|
|
r_cmd_add (core->rcmd, "#", "calculate hash", &cmd_hash);
|
|
|
|
|
r_cmd_add (core->rcmd, "?", "help message", &cmd_help);
|
2012-10-30 01:49:05 +00:00
|
|
|
|
r_cmd_add (core->rcmd, "-", "alias", &cmd_alias);
|
2012-09-19 12:08:44 +00:00
|
|
|
|
r_cmd_add (core->rcmd, ".", "interpret", &cmd_interpret);
|
|
|
|
|
r_cmd_add (core->rcmd, "/", "search kw, pattern aes", &cmd_search);
|
|
|
|
|
r_cmd_add (core->rcmd, "(", "macro", &cmd_macro);
|
|
|
|
|
r_cmd_add (core->rcmd, "quit", "exit program session", &cmd_quit);
|
2009-02-05 21:08:46 +00:00
|
|
|
|
}
|