radare2/libr/core/visual.c

3655 lines
92 KiB
C
Raw Normal View History

2018-02-04 12:04:34 +00:00
/* radare - LGPL - Copyright 2009-2018 - pancake */
#include <r_core.h>
#include <r_cons.h>
2015-10-14 21:50:16 +00:00
static int obs = 0;
static int blocksize = 0;
static int autoblocksize = 1;
static int disMode = 0;
static void visual_refresh(RCore *core);
static bool snowMode = false;
static RList *snows = NULL;
typedef struct {
int x;
int y;
} Snow;
#define KEY_ALTQ 0xc5
static const char *printfmtSingle[] = {
"xc", "pd $r",
"pxw 64@r:SP;dr=;pd $r",
2018-05-04 22:58:13 +00:00
"pxw", "pxx", "pxA", "pss", "prc", "pxa", "pxr"
};
#define PRINT_HEX_FORMATS 6
static const char *printHexFormats[PRINT_HEX_FORMATS] = {
"px", "pxa", "pxw", "pxq", "pxr", "dbt;"
};
static int currentHexFormat = 0;
static void nextPrintCommand() {
currentHexFormat++;
currentHexFormat %= PRINT_HEX_FORMATS;
}
static void prevPrintCommand() {
currentHexFormat--;
if (currentHexFormat < 0) {
currentHexFormat = 0;
}
}
static const char *stackPrintCommand(RCore *core) {
if (currentHexFormat == 0) {
if (r_config_get_i (core->config, "dbg.slow")) {
return "pxr";
}
if (r_config_get_i (core->config, "stack.bytes")) {
return "px";
}
switch (core->assembler->bits) {
case 64: return "pxq"; break;
case 32: return "pxw"; break;
}
return "px";
}
return printHexFormats[currentHexFormat % PRINT_HEX_FORMATS];
}
static const char *printfmtColumns[] = {
"pCx", "pCd $r-1",
"pCD",
2018-05-04 22:58:13 +00:00
"pCw", "pCc", "pCA", "pss", "prc", "pCa", "pxr"
};
static const char *help_msg_visual[] = {
"?", "show this help",
"??", "show the user-friendly hud",
"%", "in cursor mode finds matching pair, otherwise toggle autoblocksz",
"@", "redraw screen every 1s (multi-user view), in cursor set position",
"^", "seek to the begining of the function",
"!", "enter into the visual panels mode",
"_", "enter the flag/comment/functions/.. hud (same as VF_)",
"=", "set cmd.vprompt (top row)",
"|", "set cmd.cprompt (right column)",
".", "seek to program counter",
"#", "toggle bytes in disasm view",
"\\", "toggle visual split mode",
"\"", "toggle the column mode (uses pC..)",
"/", "in cursor mode search in current block",
"(", "toggle snow",
")", "toggle emu.str",
":cmd", "run radare command",
";[-]cmt", "add/remove comment",
"0", "seek to beginning of current function",
"[1-9]", "follow jmp/call identified by shortcut (like ;[1])",
",file", "add a link to the text file",
"/*+-[]", "change block size, [] = resize hex.cols",
"<,>", "seek aligned to block size (in cursor slurp or dump files)",
"a/A", "(a)ssemble code, visual (A)ssembler",
2018-08-23 12:46:54 +00:00
"b", "browse evals, symbols, flags, configurations, classes, ...",
"B", "toggle breakpoint",
"c/C", "toggle (c)ursor and (C)olors",
"d[f?]", "define function, data, code, ..",
"D", "enter visual diff mode (set diff.from/to)",
"f/F", "set/unset or browse flags. f- to unset, F to browse, ..",
"gG", "go seek to begin and end of file (0-$s)",
"hjkl", "move around (or HJKL) (left-down-up-right)",
"i", "insert hex or string (in hexdump) use tab to toggle",
"I", "insert hexpair block ",
"mK/'K", "mark/go to Key (any key)",
"M", "walk the mounted filesystems",
"n/N", "seek next/prev function/flag/hit (scr.nkey)",
"o", "go/seek to given offset",
"O", "toggle asm.pseudo and asm.esil",
"p/P", "rotate print modes (hex, disasm, debug, words, buf)",
"q", "back to radare shell",
"r", "toggle jmphints/leahints",
"R", "randomize color palette (ecr)",
"sS", "step / step over",
"T", "enter textlog chat console (TT)",
"uU", "undo/redo seek",
"v", "visual function/vars code analysis menu",
"V", "(V)iew interactive ascii art graph (agfv)",
"wW", "seek cursor to next/prev word",
"xX", "show xrefs/refs of current function from/to data/code",
"yY", "copy and paste selection",
"z", "fold/unfold comments in disassembly",
"Z", "toggle zoom mode",
"Enter", "follow address of jump/call",
NULL
};
static const char *help_msg_visual_fn[] = {
"F2", "toggle breakpoint",
"F4", "run to cursor",
"F7", "single step",
"F8", "step over",
"F9", "continue",
NULL
};
static const char **printfmt = printfmtSingle;
static bool splitView = false;
static ut64 splitPtr = UT64_MAX;
#undef USE_THREADS
#define USE_THREADS 1
#if USE_THREADS
static RThreadFunctionRet visual_repeat_thread_anykey(RThread *th) {
RCore *core = th->user;
r_cons_any_key (NULL);
eprintf ("^C \n");
core->cons->context->breaked = true;
return R_TH_STOP;
}
static int visual_repeat_thread(RThread *th) {
RCore *core = th->user;
int i = 0;
r_cons_break_push (NULL, NULL);
for (;;) {
if (r_cons_is_breaked ()) {
break;
}
visual_refresh (core);
r_cons_flush ();
r_cons_gotoxy (0, 0);
r_cons_printf ("[@%d] ", i++);
r_cons_flush ();
r_sys_sleep (1);
}
r_cons_break_pop ();
core->cons->context->breaked = true;
r_th_wait (th);
return 0;
}
2017-11-09 11:21:03 +00:00
static void rotateAsmBits(RCore *core) {
RAnalHint *hint = r_anal_hint_get (core->anal, core->offset);
// const char *arch = r_config_get_i (core->config, "asm.arch");
int bits = hint? hint->bits : r_config_get_i (core->config, "asm.bits");
int retries = 4;
while (retries > 0) {
int nb = bits == 64 ? 8:
bits == 32 ? 64:
bits == 16 ? 32:
bits == 8 ? 16: bits;
if ((core->assembler->cur->bits & nb) == nb) {
r_core_cmdf (core, "ahb %d", nb);
break;
}
bits = nb;
retries--;
}
}
static void rotateAsmemu(RCore *core) {
2018-04-14 04:54:19 +00:00
const bool isEmuStr = r_config_get_i (core->config, "emu.str");
const bool isEmu = r_config_get_i (core->config, "asm.emu");
if (isEmu) {
if (isEmuStr) {
2018-04-14 04:54:19 +00:00
r_config_set (core->config, "emu.str", "false");
} else {
r_config_set (core->config, "asm.emu", "false");
}
} else {
2018-04-14 04:54:19 +00:00
r_config_set (core->config, "emu.str", "true");
}
}
static void printSnow(RCore *core) {
if (!snows) {
snows = r_list_newf (free);
}
int i, h, w = r_cons_get_size (&h);
2017-12-20 14:05:33 +00:00
int amount = r_num_rand (4);
if (amount > 0) {
for (i = 0; i < amount; i++) {
Snow *snow = R_NEW (Snow);
2017-12-20 14:05:33 +00:00
snow->x = r_num_rand (w);
snow->y = 0;
r_list_append (snows, snow);
}
}
RListIter *iter, *iter2;
Snow *snow;
r_list_foreach_safe (snows, iter, iter2, snow) {
2017-12-20 14:05:33 +00:00
int pos = (r_num_rand (3)) - 1;
snow->x += pos;
snow->y++;
if (snow->x >= w) {
r_list_delete (snows, iter);
continue;
}
if (snow->y > h) {
r_list_delete (snows, iter);
continue;
}
r_cons_gotoxy (snow->x, snow->y);
r_cons_printf ("*");
}
// r_cons_gotoxy (10 , 10);
r_cons_flush ();
}
static void visual_repeat(RCore *core) {
int atport = r_config_get_i (core->config, "scr.atport");
if (atport) {
#if __UNIX__ && !__APPLE__
// TODO: Add support for iterm2 and terminal for mac, see rarop source for more info
int port = r_config_get_i (core->config, "http.port");
2018-07-08 23:13:03 +00:00
if (!r_core_rtr_http (core, '&', 'H', NULL)) {
const char *xterm = r_config_get (core->config, "cmd.xterm");
// TODO: this must be configurable
r_sys_cmdf ("%s 'r2 -C http://localhost:%d/cmd/V;sleep 1' &", xterm, port);
//xterm -bg black -fg gray -e 'r2 -C http://localhost:%d/cmd/;sleep 1' &", port);
} else {
r_cons_any_key (NULL);
}
#else
eprintf ("Unsupported on this platform\n");
r_cons_any_key (NULL);
#endif
} else {
RThread *th = r_th_new (visual_repeat_thread_anykey, core, 0);
if (!th) {
return;
}
visual_repeat_thread (th);
/*
r_th_start (th, 1);
*/
// r_cons_break_push (NULL, NULL);
r_th_wait (th);
// r_cons_break_pop ();
}
}
#endif
R_API void r_core_visual_showcursor(RCore *core, int x) {
if (core && core->vmode) {
2013-10-10 23:24:30 +00:00
r_cons_show_cursor (x);
if (!x) {
// TODO: cache this
int wheel = r_config_get_i (core->config, "scr.wheel");
if (wheel) {
r_cons_enable_mouse (true);
} else {
r_cons_enable_mouse (false);
}
} else {
2015-09-14 10:35:38 +00:00
r_cons_enable_mouse (false);
}
} else {
r_cons_enable_mouse (false);
}
r_cons_flush ();
2013-10-10 23:24:30 +00:00
}
static int color = 1;
static int debug = 1;
static int zoom = 0;
2015-08-31 11:57:39 +00:00
R_API int r_core_visual_hud(RCore *core) {
2014-08-29 22:16:46 +00:00
const char *c = r_config_get (core->config, "hud.path");
char *f = r_str_newf (R_JOIN_3_PATHS ("%s", R2_HUD, "main"),
r_sys_prefix (NULL));
2016-04-28 12:12:11 +00:00
int use_color = core->print->flags & R_PRINT_FLAGS_COLOR;
char *homehud = r_str_home (R2_HOME_HUD);
char *res = NULL;
char *p = 0;
r_cons_singleton ()->color = use_color;
2013-02-07 08:41:05 +00:00
r_core_visual_showcursor (core, true);
if (c && *c && r_file_exists (c)) {
res = r_cons_hud_file (c);
}
if (!res && homehud) {
res = r_cons_hud_file (homehud);
}
if (!res && r_file_exists (f)) {
res = r_cons_hud_file (f);
}
if (!res) {
2014-08-29 22:16:46 +00:00
r_cons_message ("Cannot find hud file");
}
2014-08-29 22:16:46 +00:00
r_cons_clear ();
if (res) {
p = strchr (res, '\t');
r_cons_println (res);
r_cons_flush ();
if (p) {
r_core_cmd0 (core, p + 1);
}
free (res);
}
r_core_visual_showcursor (core, false);
r_cons_flush ();
2014-05-03 00:21:02 +00:00
free (homehud);
free (f);
return (int) (size_t) p;
}
R_API void r_core_visual_jump(RCore *core, ut8 ch) {
char chbuf[2];
ut64 off;
chbuf[0] = ch;
chbuf[1] = '\0';
off = r_core_get_asmqjmps (core, chbuf);
if (off != UT64_MAX) {
int delta = R_ABS ((st64) off - (st64) core->offset);
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
if (core->print->cur_enabled && delta < 100) {
core->print->cur = delta;
} else {
r_core_visual_seek_animation (core, off);
core->print->cur = 0;
}
r_core_block_read (core);
}
}
R_API void r_core_visual_append_help(RStrBuf *p, const char *title, const char **help) {
int i, max_length = 0, padding = 0;
RCons *cons = r_cons_singleton ();
const char *pal_args_color = cons->color ? cons->pal.args : "",
*pal_help_color = cons->color ? cons->pal.help : "",
*pal_reset = cons->color ? cons->pal.reset : "";
for (i = 0; help[i]; i += 2) {
max_length = R_MAX (max_length, strlen (help[i]));
}
r_strbuf_appendf (p, "|%s:\n", title);
for (i = 0; help[i]; i += 2) {
padding = max_length - (strlen (help[i]));
r_strbuf_appendf (p, "| %s%s%*s %s%s%s\n",
pal_args_color, help[i],
padding, "",
pal_help_color, help[i + 1], pal_reset);
}
}
static int visual_help() {
RStrBuf *p = r_strbuf_new (NULL);
if (!p) {
return 0;
}
r_cons_clear00 ();
r_core_visual_append_help (p, "Visual mode help", help_msg_visual);
r_core_visual_append_help (p, "Function Keys: (See 'e key.'), defaults to", help_msg_visual_fn);
int ret = r_cons_less_str (r_strbuf_get (p), "?");
r_strbuf_free (p);
return ret;
}
static void prompt_read(const char *p, char *buf, int buflen) {
if (!buf || buflen < 1) {
2016-02-27 11:38:02 +00:00
return;
}
2016-02-27 11:38:02 +00:00
*buf = 0;
r_line_set_prompt (p);
r_core_visual_showcursor (NULL, true);
r_cons_fgets (buf, buflen, 0, NULL);
r_core_visual_showcursor (NULL, false);
}
static void reset_print_cur(RPrint *p) {
p->cur = 0;
p->ocur = -1;
}
static void backup_current_addr(RCore *core, ut64 *addr, ut64 *bsze, ut64 *newaddr) {
*addr = core->offset;
*bsze = core->blocksize;
if (core->print->cur_enabled) {
if (core->print->ocur != -1) {
int newsz = core->print->cur - core->print->ocur;
*newaddr = core->offset + core->print->ocur;
r_core_block_size (core, newsz);
} else {
*newaddr = core->offset + core->print->cur;
}
r_core_seek (core, *newaddr, 1);
}
}
static void restore_current_addr(RCore *core, ut64 addr, ut64 bsze, ut64 newaddr) {
bool restore_seek = true;
if (core->offset != newaddr) {
bool cursor_moved = false;
// when new address is in the screen bounds, just move
// the cursor if enabled and restore seek
if (core->print->cur != -1 && core->print->screen_bounds > 1) {
if (core->offset >= addr &&
core->offset < core->print->screen_bounds) {
core->print->ocur = -1;
core->print->cur = core->offset - addr;
cursor_moved = true;
}
}
if (!cursor_moved) {
restore_seek = false;
reset_print_cur (core->print);
}
}
if (core->print->cur_enabled) {
if (restore_seek) {
2014-08-05 17:49:33 +00:00
r_core_seek (core, addr, 1);
r_core_block_size (core, bsze);
}
}
}
R_API void r_core_visual_prompt_input(RCore *core) {
ut64 addr, bsze, newaddr = 0LL;
int ret, h;
(void) r_cons_get_size (&h);
r_cons_enable_mouse (false);
r_cons_gotoxy (0, h - 2);
r_cons_reset_colors ();
r_cons_printf ("\nPress <enter> to return to Visual mode.\n");
r_cons_show_cursor (true);
core->vmode = false;
backup_current_addr (core, &addr, &bsze, &newaddr);
do {
ret = r_core_visual_prompt (core);
} while (ret);
restore_current_addr (core, addr, bsze, newaddr);
2015-09-14 10:35:38 +00:00
r_cons_show_cursor (false);
core->vmode = true;
r_cons_enable_mouse (true);
2014-08-05 17:49:33 +00:00
}
R_API int r_core_visual_prompt(RCore *core) {
char buf[1024];
int ret;
if (PIDX != 2) {
core->seltab = 0;
}
#if __UNIX__
r_line_set_prompt (Color_RESET ":> ");
#else
r_line_set_prompt (":> ");
#endif
r_core_visual_showcursor (core, true);
r_cons_fgets (buf, sizeof (buf), 0, NULL);
if (!strcmp (buf, "q")) {
2015-09-14 10:35:38 +00:00
ret = false;
} else if (*buf) {
r_line_hist_add (buf);
r_core_cmd (core, buf, 0);
r_cons_flush ();
2015-09-14 10:35:38 +00:00
ret = true;
} else {
2015-09-14 10:35:38 +00:00
ret = false;
//r_cons_any_key (NULL);
r_cons_clear00 ();
r_core_visual_showcursor (core, false);
}
return ret;
}
static void visual_single_step_in(RCore *core) {
if (r_config_get_i (core->config, "cfg.debug")) {
if (core->print->cur_enabled) {
// dcu 0xaddr
r_core_cmdf (core, "dcu 0x%08"PFMT64x, core->offset + core->print->cur);
core->print->cur_enabled = 0;
} else {
r_core_cmd (core, "ds", 0);
r_core_cmd (core, ".dr*", 0);
}
} else {
r_core_cmd (core, "aes", 0);
r_core_cmd (core, ".ar*", 0);
}
}
static void visual_single_step_over(RCore *core) {
bool io_cache = r_config_get_i (core->config, "io.cache");
r_config_set_i (core->config, "io.cache", false);
if (r_config_get_i (core->config, "cfg.debug")) {
if (core->print->cur_enabled) {
r_core_cmd (core, "dcr", 0);
core->print->cur_enabled = 0;
} else {
r_core_cmd (core, "dso", 0);
r_core_cmd (core, ".dr*", 0);
}
} else {
r_core_cmd (core, "aeso", 0);
r_core_cmd (core, ".ar*", 0);
}
r_config_set_i (core->config, "io.cache", io_cache);
}
static void visual_breakpoint(RCore *core) {
r_core_cmd (core, "dbs $$", 0);
}
static void visual_continue(RCore *core) {
r_core_cmd (core, "dc", 0);
}
static int visual_nkey(RCore *core, int ch) {
const char *cmd;
ut64 oseek = UT64_MAX;
if (core->print->ocur == -1) {
oseek = core->offset;
r_core_seek (core, core->offset + core->print->cur, 0);
}
switch (ch) {
case R_CONS_KEY_F1:
cmd = r_config_get (core->config, "key.f1");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
visual_help ();
}
break;
case R_CONS_KEY_F2:
cmd = r_config_get (core->config, "key.f2");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
visual_breakpoint (core);
}
break;
case R_CONS_KEY_F3:
cmd = r_config_get (core->config, "key.f3");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
case R_CONS_KEY_F4:
cmd = r_config_get (core->config, "key.f4");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
if (core->print->cur_enabled) {
// dcu 0xaddr
r_core_cmdf (core, "dcu 0x%08"PFMT64x, core->offset + core->print->cur);
core->print->cur_enabled = 0;
}
}
break;
case R_CONS_KEY_F5:
cmd = r_config_get (core->config, "key.f5");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
case R_CONS_KEY_F6:
cmd = r_config_get (core->config, "key.f6");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
case R_CONS_KEY_F7:
cmd = r_config_get (core->config, "key.f7");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
visual_single_step_in (core);
}
break;
case R_CONS_KEY_F8:
cmd = r_config_get (core->config, "key.f8");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
visual_single_step_over (core);
}
break;
case R_CONS_KEY_F9:
cmd = r_config_get (core->config, "key.f9");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
} else {
visual_continue (core);
}
break;
case R_CONS_KEY_F10:
cmd = r_config_get (core->config, "key.f10");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
case R_CONS_KEY_F11:
cmd = r_config_get (core->config, "key.f11");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
case R_CONS_KEY_F12:
cmd = r_config_get (core->config, "key.f12");
if (cmd && *cmd) {
ch = r_core_cmd0 (core, cmd);
}
break;
}
2016-06-02 01:19:31 +00:00
if (oseek != UT64_MAX) {
r_core_seek (core, oseek, 0);
2016-06-02 01:19:31 +00:00
}
return ch;
}
static void setcursor(RCore *core, bool cur) {
2013-08-26 23:12:58 +00:00
int flags = core->print->flags; // wtf
if (core->print->cur_enabled) {
flags |= R_PRINT_FLAGS_CURSOR;
} else {
flags &= ~(R_PRINT_FLAGS_CURSOR);
}
2013-10-10 23:24:30 +00:00
core->print->cur_enabled = cur;
if (core->print->cur == -1) {
core->print->cur = 0;
}
r_print_set_flags (core->print, flags);
core->print->col = core->print->cur_enabled? 1: 0;
}
static void setdiff(RCore *core) {
char from[64], to[64];
prompt_read ("diff from: ", from, sizeof (from));
r_config_set (core->config, "diff.from", from);
prompt_read ("diff to: ", to, sizeof (to));
r_config_set (core->config, "diff.to", to);
}
static void findPair(RCore *core) {
ut8 buf[256];
int i, len, d = core->print->cur + 1;
int delta = 0;
const ut8 *p, *q = NULL;
const char *keys = "{}[]()<>";
ut8 ch = core->block[core->print->cur];
p = (const ut8 *) strchr (keys, ch);
if (p) {
char p_1 = 0;
if ((const char *) p > keys) {
p_1 = p[-1];
}
delta = (size_t) (p - (const ut8 *) keys);
ch = (delta % 2 && p != (const ut8 *) keys)? p_1: p[1];
}
len = 1;
buf[0] = ch;
if (p && (delta % 2)) {
for (i = d - 1; i >= 0; i--) {
if (core->block[i] == ch) {
q = core->block + i;
break;
}
}
} else {
q = r_mem_mem (core->block + d, core->blocksize - d,
(const ut8 *) buf, len);
if (!q) {
q = r_mem_mem (core->block, R_MIN (core->blocksize, d),
(const ut8 *) buf, len);
}
}
if (q) {
core->print->cur = (int) (size_t) (q - core->block);
core->print->ocur = -1;
r_core_visual_showcursor (core, true);
}
}
static void findNextWord(RCore *core) {
int i, d = core->print->cur_enabled? core->print->cur: 0;
for (i = d + 1; i < core->blocksize; i++) {
switch (core->block[i]) {
case ' ':
case '.':
case '\t':
case '\n':
if (core->print->cur_enabled) {
core->print->cur = i + 1;
core->print->ocur = -1;
r_core_visual_showcursor (core, true);
} else {
r_core_seek (core, core->offset + i + 1, 1);
}
return;
}
}
}
static int isSpace(char ch) {
switch (ch) {
case ' ':
case '.':
case ',':
case '\t':
case '\n':
return 1;
}
return 0;
}
static void findPrevWord(RCore *core) {
int i = core->print->cur_enabled? core->print->cur: 0;
while (i > 1) {
if (isSpace (core->block[i])) {
i--;
} else if (isSpace (core->block[i - 1])) {
i -= 2;
} else {
break;
}
}
for (; i >= 0; i--) {
if (isSpace (core->block[i])) {
if (core->print->cur_enabled) {
core->print->cur = i + 1;
core->print->ocur = -1;
r_core_visual_showcursor (core, true);
} else {
// r_core_seek (core, core->offset + i + 1, 1);
}
break;
}
}
}
// TODO: integrate in '/' command with search.inblock ?
static void visual_search(RCore *core) {
const ut8 *p;
int len, d = core->print->cur;
char str[128], buf[258];
r_line_set_prompt ("search byte/string in block: ");
r_cons_fgets (str, sizeof (str), 0, NULL);
len = r_hex_str2bin (str, (ut8 *) buf);
if (*str == '"') {
char *e = strncpy (buf + 1, str + 1, sizeof (buf) - 1);
if (e) {
e--;
if (*e == '"') {
*e = 0;
}
}
len = strlen (buf);
} else if (len < 1) {
strncpy (buf, str, sizeof (buf) - 1);
len = strlen (str);
}
p = r_mem_mem (core->block + d, core->blocksize - d,
(const ut8 *) buf, len);
if (p) {
core->print->cur = (int) (size_t) (p - core->block);
if (len > 1) {
core->print->ocur = core->print->cur + len - 1;
} else {
core->print->ocur = -1;
}
r_core_visual_showcursor (core, true);
eprintf ("Found in offset 0x%08"PFMT64x" + %d\n", core->offset, core->print->cur);
r_cons_any_key (NULL);
} else {
eprintf ("Cannot find bytes.\n");
r_cons_any_key (NULL);
r_cons_clear00 ();
}
}
R_API void r_core_visual_show_char(RCore *core, char ch) {
if (r_config_get_i (core->config, "scr.feedback") < 2) {
return;
}
if (!IS_PRINTABLE (ch)) {
return;
}
r_cons_gotoxy (1, 2);
r_cons_printf (".---.\n");
r_cons_printf ("| %c |\n", ch);
r_cons_printf ("'---'\n");
r_cons_flush ();
r_sys_sleep (1);
}
R_API void r_core_visual_seek_animation(RCore *core, ut64 addr) {
2015-11-19 11:23:10 +00:00
r_core_seek (core, addr, 1);
if (r_config_get_i (core->config, "scr.feedback") < 1) {
return;
}
if (core->offset == addr) {
return;
}
r_cons_gotoxy (1, 2);
if (addr > core->offset) {
r_cons_printf (".----.\n");
r_cons_printf ("| \\/ |\n");
r_cons_printf ("'----'\n");
} else {
r_cons_printf (".----.\n");
r_cons_printf ("| /\\ |\n");
r_cons_printf ("'----'\n");
}
r_cons_flush ();
r_sys_usleep (90000);
}
static void setprintmode(RCore *core, int n) {
RAsmOp op;
if (n > 0) {
core->printidx = R_ABS ((core->printidx + 1) % NPF);
} else {
if (core->printidx) {
core->printidx--;
} else {
core->printidx = NPF - 1;
}
}
switch (core->printidx) {
case 0:
core->inc = 16;
break;
case 1:
case 2:
r_asm_op_init (&op);
core->inc = r_asm_disassemble (core->assembler, &op, core->block, R_MIN (32, core->blocksize));
r_asm_op_fini (&op);
break;
case 5: // "pxA"
core->inc = 256;
break;
}
}
#define OPDELTA 32
static ut64 prevop_addr(RCore *core, ut64 addr) {
ut8 buf[OPDELTA * 2];
ut64 target, base;
RAnalBlock *bb;
RAnalOp op;
int len, ret, i;
int minop = r_anal_archinfo (core->anal, R_ANAL_ARCHINFO_MIN_OP_SIZE);
int maxop = r_anal_archinfo (core->anal, R_ANAL_ARCHINFO_MAX_OP_SIZE);
if (minop == maxop) {
if (minop == -1) {
return addr - 4;
}
return addr - minop;
}
// let's see if we can use anal info to get the previous instruction
// TODO: look in the current basicblock, then in the current function
// and search in all functions only as a last chance, to try to speed
// up the process.
bb = r_anal_bb_from_offset (core->anal, addr - minop);
if (bb) {
ut64 res = r_anal_bb_opaddr_at (bb, addr - minop);
if (res != UT64_MAX) {
return res;
}
}
// if we anal info didn't help then fallback to the dumb solution.
target = addr;
base = target - OPDELTA;
r_io_read_at (core->io, base, buf, sizeof (buf));
for (i = 0; i < sizeof (buf); i++) {
ret = r_anal_op (core->anal, &op, base + i,
buf + i, sizeof (buf) - i, R_ANAL_OP_MASK_BASIC);
if (!ret) {
continue;
}
2013-12-06 04:18:57 +00:00
len = op.size;
r_anal_op_fini (&op); // XXX
if (len < 1) {
continue;
}
if (target == base + i + len) {
return base + i;
}
i += len - 1;
}
return target - 4;
}
// Returns true if we can use analysis to find the previous operation address,
// sets prev_addr to the value of the instruction numinstrs back.
// If we can't use the anal, then set prev_addr to UT64_MAX and return false;
R_API bool r_core_prevop_addr(RCore *core, ut64 start_addr, int numinstrs, ut64 *prev_addr) {
RAnalBlock *bb;
int i;
// Check that we're in a bb, otherwise this prevop stuff won't work.
bb = r_anal_bb_from_offset (core->anal, start_addr);
if (bb) {
if (r_anal_bb_opaddr_at (bb, start_addr) != UT64_MAX) {
// Do some anal looping.
for (i = 0; i < numinstrs; ++i) {
*prev_addr = prevop_addr (core, start_addr);
start_addr = *prev_addr;
}
return true;
}
}
// Dang! not in a bb, return false and fallback to other methods.
*prev_addr = UT64_MAX;
return false;
}
// Like r_core_prevop_addr(), but also uses fallback from prevop_addr() if
// no anal info is available.
R_API ut64 r_core_prevop_addr_force(RCore *core, ut64 start_addr, int numinstrs) {
int i;
for (i = 0; i < numinstrs; ++i) {
start_addr = prevop_addr (core, start_addr);
}
return start_addr;
}
R_API int offset_history_up(RLine *line) {
RCore *core = line->user;
RIOUndo *undo = &core->io->undo;
2018-07-09 15:06:52 +00:00
if (line->offset_hist_index <= -undo->undos) {
return false;
}
2018-07-09 15:06:52 +00:00
line->offset_hist_index--;
ut64 off = undo->seek[undo->idx + line->offset_hist_index].off;
RFlagItem *f = r_flag_get_at (core->flags, off, false);
char *command;
if (f && f->offset == off && f->offset > 0) {
command = r_str_newf ("%s", f->name);
2018-03-19 10:51:04 +00:00
} else {
command = r_str_newf ("0x%"PFMT64x, off);
}
strncpy (line->buffer.data, command, R_LINE_BUFSIZE - 1);
line->buffer.index = line->buffer.length = strlen (line->buffer.data);
2018-03-19 10:51:04 +00:00
free (command);
return true;
}
R_API int offset_history_down(RLine *line) {
RCore *core = line->user;
RIOUndo *undo = &core->io->undo;
2018-07-09 15:06:52 +00:00
if (line->offset_hist_index >= undo->redos) {
return false;
}
2018-07-09 15:06:52 +00:00
line->offset_hist_index++;
if (line->offset_hist_index == undo->redos) {
line->buffer.data[0] = '\0';
line->buffer.index = line->buffer.length = 0;
return false;
}
2018-07-09 15:06:52 +00:00
ut64 off = undo->seek[undo->idx + line->offset_hist_index].off;
RFlagItem *f = r_flag_get_at (core->flags, off, false);
char *command;
if (f && f->offset == off && f->offset > 0) {
command = r_str_newf ("%s", f->name);
2018-03-19 10:51:04 +00:00
} else {
command = r_str_newf ("0x%"PFMT64x, off);
}
strncpy (line->buffer.data, command, R_LINE_BUFSIZE - 1);
line->buffer.index = line->buffer.length = strlen (line->buffer.data);
2018-03-19 10:51:04 +00:00
free (command);
return true;
}
R_API void r_core_visual_offset(RCore *core) {
2018-11-23 12:54:28 +00:00
ut64 addr, bsze, newaddr = 0LL;
char buf[256];
backup_current_addr (core, &addr, &bsze, &newaddr);
core->cons->line->offset_prompt = true;
r_line_set_hist_callback (core->cons->line, &offset_history_up, &offset_history_down);
r_line_set_prompt ("[offset]> ");
strcpy (buf, "s ");
if (r_cons_fgets (buf + 2, sizeof (buf) - 3, 0, NULL) > 0) {
if (buf[2] == '.') {
buf[1] = '.';
}
r_core_cmd0 (core, buf);
restore_current_addr (core, addr, bsze, newaddr);
}
2018-07-09 15:48:48 +00:00
r_line_set_hist_callback (core->cons->line, &cmd_history_up, &cmd_history_down);
core->cons->line->offset_prompt = false;
}
static int prevopsz(RCore *core, ut64 addr) {
ut64 prev_addr = prevop_addr (core, addr);
return addr - prev_addr;
}
static int follow_ref(RCore *core, RList *xrefs, int choice, int xref) {
RAnalRef *refi = r_list_get_n (xrefs, choice);
if (refi) {
if (core->print->cur_enabled) {
core->print->cur = 0;
}
r_io_sundo_push (core->io, core->offset, -1);
ut64 addr = xref? refi->at: refi->addr;
r_core_seek (core, addr, true);
return 1;
}
return 0;
}
R_API int r_core_visual_refs(RCore *core, bool xref, bool fcnInsteadOfAddr) {
2014-09-22 22:40:35 +00:00
int ret = 0;
#if FCN_OLD
char ch;
int count = 0;
RList *xrefs = NULL;
RAnalRef *refi;
RListIter *iter;
2016-02-16 00:20:25 +00:00
int skip = 0;
int idx = 0;
char cstr[32];
2016-03-30 10:30:51 +00:00
ut64 addr = core->offset;
int printMode = 0;
bool xrefsMode = fcnInsteadOfAddr;
int lastPrintMode = 3;
2016-03-30 10:30:51 +00:00
if (core->print->cur_enabled) {
addr += core->print->cur;
}
2016-02-16 00:20:25 +00:00
repeat:
r_list_free (xrefs);
if (xrefsMode) {
RAnalFunction *fun = r_anal_get_fcn_in (core->anal, addr, R_ANAL_FCN_TYPE_NULL);
if (fun) {
if (xref) { // function xrefs
2018-12-03 22:24:36 +00:00
xrefs = r_anal_xrefs_get (core->anal, addr);
//XXX xrefs = r_anal_fcn_get_xrefs (core->anal, fun);
// this function is buggy so we must get the xrefs of the addr
} else { // functon refs
xrefs = r_anal_fcn_get_refs (core->anal, fun);
}
} else {
xrefs = NULL;
}
} else {
if (xref) { // address xrefs
xrefs = r_anal_xrefs_get (core->anal, addr);
} else { // address refs
xrefs = r_anal_refs_get (core->anal, addr);
}
}
r_cons_clear00 ();
r_cons_gotoxy (1, 1);
r_cons_printf ("[%s%srefs]> 0x%08"PFMT64x" # (TAB/jk/q/?) ",
xrefsMode? "fcn.": "addr.", xref ? "x": "", addr);
2018-11-25 01:13:28 +00:00
if (!xrefs || r_list_empty (xrefs)) {
r_list_free (xrefs);
xrefs = NULL;
r_cons_printf ("\n\n(no %srefs)\n", xref ? "x": "");
} else {
int h, w = r_cons_get_size (&h);
bool asm_bytes = r_config_get_i (core->config, "asm.bytes");
r_config_set_i (core->config, "asm.bytes", false);
2017-12-16 00:44:45 +00:00
r_core_cmd0 (core, "fd");
2018-11-25 01:13:28 +00:00
int maxcount = 9;
int rows, cols = r_cons_get_size (&rows);
idx = 0;
count = 0;
char *dis = NULL;
rows -= 4;
idx = 0;
ut64 curat = UT64_MAX;
r_list_foreach (xrefs, iter, refi) {
if (idx - skip > maxcount) {
r_cons_printf ("...");
break;
}
if (!iter->n && idx < skip) {
skip = idx;
}
if (idx >= skip) {
if (count > maxcount) {
strcpy (cstr, "?");
} else {
snprintf (cstr, sizeof (cstr), "%d", count);
}
2018-11-25 01:13:28 +00:00
RAnalFunction *fun = r_anal_get_fcn_in (core->anal, refi->addr, R_ANAL_FCN_TYPE_NULL);
char *name;
if (fun) {
name = strdup (fun->name);
} else {
RFlagItem *f = r_flag_get_at (core->flags, refi->addr, true);
if (f) {
name = r_str_newf ("%s + %d", f->name, refi->addr - f->offset);
2016-02-16 00:20:25 +00:00
} else {
2018-11-25 01:13:28 +00:00
name = strdup ("unk");
2016-02-16 00:20:25 +00:00
}
2018-11-25 01:13:28 +00:00
}
if (w > 45) {
if (strlen (name) > w -45) {
name[w - 45] = 0;
}
2018-11-25 01:13:28 +00:00
} else {
name[0] = 0;
}
r_cons_printf (" %d [%s] 0x%08"PFMT64x" 0x%08"PFMT64x " %s %sref (%s)\n",
idx, cstr, refi->at, refi->addr,
r_anal_xrefs_type_tostring (refi->type),
xref ? "x":"", name);
free (name);
if (idx == skip) {
free (dis);
curat = refi->addr;
char *res = r_core_cmd_strf (core, "pd 4 @ 0x%08"PFMT64x"@e:asm.maxflags=1", refi->at);
// TODO: show disasm with context. not seek addr
// dis = r_core_cmd_strf (core, "pd $r-4 @ 0x%08"PFMT64x, refi->addr);
dis = NULL;
res = r_str_appendf (res, "; ---------------------------\n");
switch (printMode) {
case 0:
dis = r_core_cmd_strf (core, "pd $r-4 @ 0x%08"PFMT64x, refi->addr);
break;
case 1:
dis = r_core_cmd_strf (core, "pd @ 0x%08"PFMT64x"-32", refi->addr);
break;
case 2:
dis = r_core_cmd_strf (core, "px @ 0x%08"PFMT64x, refi->addr);
break;
case 3:
dis = r_core_cmd_strf (core, "pds @ 0x%08"PFMT64x, refi->addr);
break;
}
2018-11-25 01:13:28 +00:00
if (dis) {
res = r_str_append (res, dis);
free (dis);
2016-02-16 00:20:25 +00:00
}
2018-11-25 01:13:28 +00:00
dis = res;
2016-02-16 00:20:25 +00:00
}
2018-11-25 01:13:28 +00:00
if (++count >= rows) {
r_cons_printf ("...");
break;
}
}
2018-11-25 01:13:28 +00:00
idx++;
}
if (dis) {
if (count < rows) {
r_cons_newline ();
}
int i = count;
for (; i < 9; i++) {
r_cons_newline ();
}
/* prepare highlight */
char *cmd = strdup (r_config_get (core->config, "scr.highlight"));
char *ats = r_str_newf ("%"PFMT64x, curat);
if (ats) {
(void) r_config_set (core->config, "scr.highlight", ats);
}
/* print disasm */
char *d = r_str_ansi_crop (dis, 0, 0, cols, rows - 9);
if (d) {
r_cons_printf ("%s", d);
free (d);
}
/* flush and restore highlight */
r_cons_flush ();
r_config_set (core->config, "scr.highlight", cmd);
free (ats);
free (cmd);
free (dis);
dis = NULL;
}
r_config_set_i (core->config, "asm.bytes", asm_bytes);
2014-08-17 18:30:28 +00:00
}
r_cons_flush ();
2018-11-25 01:20:36 +00:00
int wheel = r_config_get_i (core->config, "scr.wheel");
if (wheel > 0) {
r_cons_enable_mouse (true);
}
ch = r_cons_readchar ();
ch = r_cons_arrow_to_hjkl (ch);
if (ch == ':') {
r_core_visual_prompt_input (core);
goto repeat;
2017-12-16 00:44:45 +00:00
} else if (ch == '?') {
r_cons_clear00 ();
r_cons_printf ("Usage: Visual Xrefs\n"
" jk - select next or previous item (use arrows)\n"
" JK - step 10 rows\n"
2017-12-16 00:44:45 +00:00
" pP - rotate between various print modes\n"
" : - run r2 command\n"
" ? - show this help message\n"
2018-12-02 23:47:16 +00:00
" <> - '<' for xrefs and '>' for refs\n"
" TAB - toggle between address and function references\n"
" xX - switch to refs or xrefs\n"
" q - quit this view\n"
2017-12-16 00:44:45 +00:00
" \\n - seek to this xref");
r_cons_flush ();
r_cons_any_key (NULL);
goto repeat;
} else if (ch == 9) { // TAB
xrefsMode = !xrefsMode;
goto repeat;
2017-12-16 00:44:45 +00:00
} else if (ch == 'p') {
printMode++;
if (printMode > lastPrintMode) {
printMode = 0;
}
goto repeat;
} else if (ch == 'P') {
printMode--;
if (printMode < 0) {
2017-12-16 00:44:45 +00:00
printMode = lastPrintMode;
}
goto repeat;
} else if (ch == 'x' || ch == '<') {
xref = true;
2018-12-03 22:24:36 +00:00
xrefsMode = !xrefsMode;
goto repeat;
} else if (ch == 'X' || ch == '>') {
xref = false;
xrefsMode = !xrefsMode;
goto repeat;
} else if (ch == 'J') {
skip += 10;
goto repeat;
} else if (ch == 'g') {
skip = 0;
goto repeat;
} else if (ch == 'G') {
skip = 9999;
goto repeat;
} else if (ch == '.') {
skip = 0;
goto repeat;
} else if (ch == 'j') {
2016-02-16 00:20:25 +00:00
skip++;
goto repeat;
} else if (ch == 'K') {
skip = (skip < 10) ? 0: skip - 10;
goto repeat;
} else if (ch == 'k') {
2016-02-16 00:20:25 +00:00
skip--;
if (skip < 0) {
skip = 0;
}
2016-02-16 00:20:25 +00:00
goto repeat;
2018-12-02 23:47:16 +00:00
} else if (ch == ' ' || ch == '\n' || ch == '\r' || ch == 'l') {
ret = follow_ref (core, xrefs, skip, xref);
} else if (IS_DIGIT (ch)) {
ret = follow_ref (core, xrefs, ch - 0x30, xref);
2018-12-02 23:47:16 +00:00
} else if (ch != 'q' && ch != 'Q' && ch != 'h') {
goto repeat;
}
r_list_free (xrefs);
2014-09-22 22:40:35 +00:00
#else
eprintf ("TODO: sdbize xrefs here\n");
#endif
return ret;
}
2015-04-07 14:25:14 +00:00
#if __WINDOWS__ && !__CYGWIN__
void SetWindow(int Width, int Height) {
COORD coord;
coord.X = Width;
coord.Y = Height;
SMALL_RECT Rect;
Rect.Top = 0;
Rect.Left = 0;
Rect.Bottom = Height - 1;
Rect.Right = Width - 1;
HANDLE Handle = GetStdHandle (STD_OUTPUT_HANDLE);
SetConsoleScreenBufferSize (Handle, coord);
SetConsoleWindowInfo (Handle, TRUE, &Rect);
}
2015-04-07 14:25:14 +00:00
#endif
2015-11-18 16:02:42 +00:00
// unnecesarily public
char *getcommapath(RCore *core) {
char *cwd;
const char *dir = r_config_get (core->config, "dir.projects");
const char *prj = r_config_get (core->config, "prj.name");
if (dir && *dir && prj && *prj) {
2015-11-25 11:49:02 +00:00
char *abspath = r_file_abspath (dir);
/* use prjdir as base directory for comma-ent files */
cwd = r_str_newf ("%s"R_SYS_DIR "%s.d", abspath, prj);
2015-11-24 17:26:10 +00:00
free (abspath);
} else {
/* use cwd as base directory for comma-ent files */
2015-11-18 16:02:42 +00:00
cwd = r_sys_getdir ();
}
2015-11-18 16:02:42 +00:00
return cwd;
}
static void visual_comma(RCore *core) {
ut64 addr = core->offset + (core->print->cur_enabled? core->print->cur: 0);
2015-11-18 16:02:42 +00:00
char *comment, *cwd, *cmtfile;
comment = r_meta_get_string (core->anal, R_META_TYPE_COMMENT, addr);
cmtfile = r_str_between (comment, ",(", ")");
cwd = getcommapath (core);
if (!cmtfile) {
char *fn;
r_core_visual_showcursor (core, true);
2015-11-18 22:32:18 +00:00
fn = r_cons_input ("<comment-file> ");
r_core_visual_showcursor (core, false);
if (fn && *fn) {
cmtfile = strdup (fn);
if (!comment || !*comment) {
2015-11-18 16:02:42 +00:00
comment = r_str_newf (",(%s)", fn);
r_meta_set_string (core->anal, R_META_TYPE_COMMENT, addr, comment);
} else {
// append filename in current comment
2015-11-18 16:02:42 +00:00
char *nc = r_str_newf ("%s ,(%s)", comment, fn);
r_meta_set_string (core->anal, R_META_TYPE_COMMENT, addr, nc);
free (nc);
}
}
free (fn);
}
if (cmtfile) {
char *cwf = r_str_newf ("%s"R_SYS_DIR "%s", cwd, cmtfile);
char *odata = r_file_slurp (cwf, NULL);
char *data = r_core_editor (core, NULL, odata);
r_file_dump (cwf, (const ut8 *) data, -1, 0);
free (data);
free (odata);
free (cwf);
} else {
2015-11-18 16:02:42 +00:00
eprintf ("No commafile found.\n");
}
free (comment);
}
static bool isDisasmPrint(int mode) {
return (mode == 1 || mode == 2);
}
static void cursor_ocur(RCore *core, bool use_ocur) {
RPrint *p = core->print;
if (use_ocur && p->ocur == -1) {
p->ocur = p->cur;
} else if (!use_ocur) {
p->ocur = -1;
}
}
static void cursor_nextrow(RCore *core, bool use_ocur) {
RPrint *p = core->print;
ut32 roff, next_roff;
int row, sz, delta;
RAsmOp op;
cursor_ocur (core, use_ocur);
if (PIDX == 7 || !strcmp ("prc", r_config_get (core->config, "cmd.visual"))) {
//int cols = r_config_get_i (core->config, "hex.cols") * 3.5;
int cols = r_config_get_i (core->config, "hex.cols") + r_config_get_i (core->config, "hex.pcols");
cols /= 2;
2017-05-29 09:45:13 +00:00
p->cur += cols > 0? cols: 0;
return;
}
if (splitView) {
int w = r_config_get_i (core->config, "hex.cols");
if (w < 1) {
w = 16;
}
if (core->seltab == 0) {
splitPtr += w;
} else {
core->offset += w;
}
return;
}
if (PIDX == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 0) {
int w = r_config_get_i (core->config, "hex.cols");
if (w < 1) {
w = 16;
}
r_config_set_i (core->config, "stack.delta",
r_config_get_i (core->config, "stack.delta") - w);
return;
}
if (PIDX == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 1) {
const int cols = core->dbg->regcols;
p->cur += cols > 0? cols: 3;
return;
}
2017-05-29 09:45:13 +00:00
if (p->row_offsets) {
// FIXME: cache the current row
row = r_print_row_at_off (p, p->cur);
roff = r_print_rowoff (p, row);
if (roff == -1) {
p->cur++;
return;
}
next_roff = r_print_rowoff (p, row + 1);
if (next_roff == -1) {
p->cur++;
return;
}
if (next_roff + 32 < core->blocksize) {
sz = r_asm_disassemble (core->assembler, &op,
core->block + next_roff, 32);
if (sz < 1) {
sz = 1;
}
} else {
sz = 1;
}
delta = p->cur - roff;
p->cur = next_roff + R_MIN (delta, sz - 1);
} else {
p->cur += R_MAX (1, p->cols);
}
}
static void cursor_prevrow(RCore *core, bool use_ocur) {
RPrint *p = core->print;
ut32 roff, prev_roff;
int row;
if (PIDX == 7 || !strcmp ("prc", r_config_get (core->config, "cmd.visual"))) {
int cols = r_config_get_i (core->config, "hex.cols") + r_config_get_i (core->config, "hex.pcols");
cols /= 2;
p->cur -= R_MAX (cols, 0);
return;
}
cursor_ocur (core, use_ocur);
if (splitView) {
int w = r_config_get_i (core->config, "hex.cols");
if (w < 1) {
w = 16;
}
if (core->seltab == 0) {
splitPtr -= w;
} else {
core->offset -= w;
}
return;
}
if (PIDX == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 0) {
int w = r_config_get_i (core->config, "hex.cols");
if (w < 1) {
w = 16;
}
r_config_set_i (core->config, "stack.delta",
r_config_get_i (core->config, "stack.delta") + w);
return;
}
if (PIDX == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 1) {
const int cols = core->dbg->regcols;
p->cur -= cols > 0? cols: 4;
return;
}
if (p->row_offsets != NULL) {
int delta, prev_sz;
// FIXME: cache the current row
row = r_print_row_at_off (p, p->cur);
roff = r_print_rowoff (p, row);
if (roff == UT32_MAX) {
p->cur--;
return;
}
prev_roff = row > 0? r_print_rowoff (p, row - 1): UT32_MAX;
delta = p->cur - roff;
if (prev_roff == UT32_MAX) {
ut64 prev_addr = prevop_addr (core, core->offset + roff);
if (prev_addr > core->offset) {
prev_roff = 0;
prev_sz = 1;
} else {
RAsmOp op;
prev_roff = 0;
r_core_seek (core, prev_addr, 1);
prev_sz = r_asm_disassemble (core->assembler, &op,
core->block, 32);
}
} else {
prev_sz = roff - prev_roff;
}
int res = R_MIN (delta, prev_sz - 1);
ut64 cur = prev_roff + res;
if (cur == p->cur) {
if (p->cur > 0) {
p->cur--;
}
} else {
p->cur = prev_roff + delta; //res;
}
} else {
p->cur -= p->cols;
}
}
static void cursor_left(RCore *core, bool use_ocur) {
if (PIDX == 2) {
if (core->seltab == 1) {
core->print->cur--;
return;
}
}
cursor_ocur (core, use_ocur);
core->print->cur--;
}
static void cursor_right(RCore *core, bool use_ocur) {
if (PIDX == 2) {
if (core->seltab == 1) {
core->print->cur++;
return;
}
}
cursor_ocur (core, use_ocur);
core->print->cur++;
}
static bool fix_cursor(RCore *core) {
RPrint *p = core->print;
int offscreen = (core->cons->rows - 3) * p->cols;
bool res = false;
2016-06-02 01:19:31 +00:00
if (!core->print->cur_enabled) {
return false;
}
if (core->print->screen_bounds > 1) {
bool off_is_visible = core->offset < core->print->screen_bounds;
bool cur_is_visible = core->offset + p->cur < core->print->screen_bounds;
bool is_close = core->offset + p->cur < core->print->screen_bounds + 32;
if ((!cur_is_visible && !is_close) || (!cur_is_visible && p->cur == 0)) {
// when the cursor is not visible and it's far from the
// last visible byte, just seek there.
r_core_seek_delta (core, p->cur);
reset_print_cur (p);
} else if ((!cur_is_visible && is_close) || !off_is_visible) {
RAsmOp op;
int sz = r_asm_disassemble (core->assembler,
&op, core->block, 32);
if (sz < 1) {
sz = 1;
}
r_core_seek_delta (core, sz);
p->cur = R_MAX (p->cur - sz, 0);
if (p->ocur != -1) {
p->ocur = R_MAX (p->ocur - sz, 0);
}
res |= off_is_visible;
}
} else if (core->print->cur >= offscreen) {
r_core_seek (core, core->offset + p->cols, 1);
p->cur -= p->cols;
if (p->ocur != -1) {
p->ocur -= p->cols;
}
}
if (p->cur < 0) {
int sz = p->cols;
if (isDisasmPrint (core->printidx)) {
sz = prevopsz (core, core->offset + p->cur);
if (sz < 1) {
sz = 1;
}
}
r_core_seek_delta (core, -sz);
p->cur += sz;
if (p->ocur != -1) {
p->ocur += sz;
}
}
return res;
}
2016-07-25 03:14:48 +00:00
static bool __ime = false;
static int __nib = -1;
static bool insert_mode_enabled(RCore *core) {
if (!__ime) {
return false;
}
char ch = (ut8)r_cons_readchar ();
if ((ut8)ch == KEY_ALTQ) {
(void)r_cons_readchar ();
__ime = false;
return true;
}
2016-07-25 03:14:48 +00:00
char arrows = r_cons_arrow_to_hjkl (ch);
switch (ch) {
case 127:
core->print->cur = R_MAX (0, core->print->cur - 1);
return true;
case 9: // tab "tab"
core->print->col = core->print->col == 1? 2: 1;
2016-07-25 03:14:48 +00:00
break;
}
if (ch != 'h' && arrows == 'h') {
core->print->cur = R_MAX (0, core->print->cur - 1);
return true;
} else if (ch != 'l' && arrows == 'l') {
core->print->cur = core->print->cur + 1;
return true;
} else if (ch != 'j' && arrows == 'j') {
cursor_nextrow (core, false);
return true;
} else if (ch != 'k' && arrows == 'k') {
cursor_prevrow (core, false);
return true;
}
if (core->print->col == 2) {
/* ascii column */
if (IS_PRINTABLE (ch)) {
r_core_cmdf (core, "\"w %c\" @ $$+%d", ch, core->print->cur);
core->print->cur++;
2016-07-25 03:14:48 +00:00
}
return true;
}
ch = arrows;
/* hex column */
switch (ch) {
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'a':
case 'b':
case 'c':
case 'd':
case 'e':
case 'f':
if (__nib != -1) {
r_core_cmdf (core, "wx %c%c @ $$+%d", __nib, ch, core->print->cur);
core->print->cur++;
2016-07-25 03:14:48 +00:00
__nib = -1;
} else {
r_core_cmdf (core, "wx %c. @ $$+%d", ch, core->print->cur);
__nib = ch;
}
break;
case 'r':
r_core_cmdf (core, "r-1 @ 0x%08"PFMT64x, core->offset + core->print->cur);
break;
case 'R':
r_core_cmdf (core, "r+1 @ 0x%08"PFMT64x, core->offset + core->print->cur);
break;
2016-07-25 03:14:48 +00:00
case 'h':
core->print->cur = R_MAX (0, core->print->cur - 1);
break;
case 'l':
core->print->cur = core->print->cur + 1;
break;
case 'j':
cursor_nextrow (core, false);
break;
case 'k':
cursor_prevrow (core, false);
break;
case 'Q':
2016-07-25 03:14:48 +00:00
case 'q':
__ime = false;
break;
case '?':
r_cons_less_str ("\nVisual Insert Mode:\n\n"
" tab - toggle between ascii and hex columns\n"
" q (or alt-q) - quit insert mode\n"
"\nHex column:\n"
" r - remove byte in cursor\n"
" R - insert byte in cursor\n"
" [0-9a-f] - insert hexpairs in hex column\n"
" hjkl - move around\n"
"\nAscii column:\n"
" arrows - move around\n"
" alt-q - quit insert mode\n"
, "?");
break;
2016-07-25 03:14:48 +00:00
}
return true;
}
R_API void r_core_visual_browse(RCore *core) {
2017-10-16 20:31:29 +00:00
const char *browsemsg = \
"Browse stuff:\n"
"-------------\n"
2018-02-21 01:17:31 +00:00
" _ hud mode (V_)\n"
2017-10-16 14:15:15 +00:00
" b blocks\n"
" c classes\n"
2018-02-21 02:10:38 +00:00
" C comments\n"
2018-02-21 01:17:31 +00:00
" e eval var configurations\n"
" f flags\n"
" F functions\n"
2018-01-24 09:47:33 +00:00
" h history\n"
2018-02-21 01:17:31 +00:00
" i imports\n"
" l chat logs (previously VT)\n"
2017-10-16 14:15:15 +00:00
" m maps\n"
2018-02-04 12:04:34 +00:00
" p pids/threads\n"
2018-02-21 01:17:31 +00:00
" q quit\n"
" s symbols\n"
" t types\n"
" T themes\n"
2018-02-21 01:17:31 +00:00
" v vars\n"
2017-10-16 14:15:15 +00:00
" x xrefs\n"
" X refs\n"
" : run command\n"
2017-10-16 14:15:15 +00:00
;
2017-10-16 20:31:29 +00:00
for (;;) {
r_cons_clear00 ();
r_cons_printf ("%s\n", browsemsg);
r_cons_flush ();
char ch = r_cons_arrow_to_hjkl (r_cons_readchar ());
switch (ch) {
case 'f':
r_core_visual_trackflags (core);
break;
2018-02-21 01:17:31 +00:00
case 'F':
2018-11-25 00:23:33 +00:00
r_core_visual_anal (core, NULL);
// r_core_cmd0 (core, "s $(afl~...)");
2018-02-21 01:17:31 +00:00
break;
2018-11-25 00:23:33 +00:00
case 'v':
r_core_visual_anal (core, "v");
break;
2018-08-23 13:07:21 +00:00
case 'e':
r_core_visual_config (core);
break;
2017-10-16 20:31:29 +00:00
case 'c':
r_core_visual_classes (core);
break;
2018-02-21 02:10:38 +00:00
case 'C':
r_core_visual_comments (core);
//r_core_cmd0 (core, "s $(CC~...)");
2018-02-21 02:10:38 +00:00
break;
2017-10-16 20:31:29 +00:00
case 't':
r_core_visual_types (core);
break;
case 'T':
r_core_cmd0 (core, "eco $(eco~...)");
break;
case 'l': // previously VT
if (r_sandbox_enable (0)) {
eprintf ("sandbox not enabled\n");
} else {
if (r_config_get_i (core->config, "scr.interactive")) {
r_core_cmd0 (core, "TT");
}
}
break;
2018-02-04 12:04:34 +00:00
case 'p':
r_core_cmd0 (core, "dpt=$(dpt~[1-])");
break;
2017-10-16 20:31:29 +00:00
case 'b':
r_core_cmd0 (core, "s $(afb~...)");
break;
2018-01-24 09:47:33 +00:00
case 'i':
// XXX ii shows index first and iiq shows no offset :(
r_core_cmd0 (core, "s $(ii~...)");
break;
case 's':
r_core_cmd0 (core, "s $(isq~...)");
break;
2017-10-16 20:31:29 +00:00
case 'm':
r_core_cmd0 (core, "s $(dm~...)");
break;
case 'x':
r_core_visual_refs (core, true, true);
2017-10-16 20:31:29 +00:00
break;
case 'X':
r_core_visual_refs (core, false, true);
2017-10-16 20:31:29 +00:00
break;
2018-01-24 09:47:33 +00:00
case 'h': // seek history
2017-10-16 20:31:29 +00:00
r_core_cmdf (core, "s!~...");
break;
case '_':
r_core_visual_hudstuff (core);
break;
case ':':
r_core_visual_prompt_input (core);
break;
2018-05-28 21:44:51 +00:00
case 127: // backspace
2017-10-16 20:31:29 +00:00
case 'q':
return;
}
2017-10-16 14:15:15 +00:00
}
}
static void r_core_visual_tab_free (RCoreVisualTab *tab) {
free (tab);
}
static RCoreVisualTab *r_core_visual_tab_new(RCore *core) {
RCoreVisualTab *tab = R_NEW0 (RCoreVisualTab);
tab->offset = core->offset;
tab->printidx = core->printidx;
return tab;
}
static void r_core_visual_tab_update(RCore *core) {
// shuold be unnecessary if we change core -> core->visual
RListIter *iter = r_list_head (core->visual.tabs);
if (!iter) {
return;
}
RCoreVisualTab *tab = (RCoreVisualTab*)(iter->data);
if (tab) {
tab->offset = core->offset;
tab->printidx = core->printidx;
}
}
static void visual_newtab (RCore *core) {
if (!core->visual.tabs) {
core->visual.tabs = r_list_newf (free);
2018-08-17 14:43:11 +00:00
if (!core->visual.tabs) {
return;
}
core->visual.tab = 0;
2018-08-17 14:43:11 +00:00
visual_newtab (core);
}
RCoreVisualTab *tab = r_core_visual_tab_new (core);
r_list_prepend (core->visual.tabs, tab);
core->visual.tab++;
}
static void visual_nexttab (RCore *core) {
RCoreVisualTab *tab = r_list_pop (core->visual.tabs);
if (tab) {
r_core_seek (core, tab->offset, 1);
core->printidx = tab->printidx;
r_list_prepend (core->visual.tabs, tab);
core->visual.tab++;
if (core->visual.tab > r_list_length (core->visual.tabs)) {
core->visual.tab = 1;
}
}
}
static void visual_prevtab (RCore *core) {
RCoreVisualTab *tab = r_list_pop_head (core->visual.tabs);
r_list_append (core->visual.tabs, tab);
tab = r_list_pop_head (core->visual.tabs);
if (tab) {
r_core_seek (core, tab->offset, 1);
core->printidx = tab->printidx;
r_list_prepend (core->visual.tabs, tab);
core->visual.tab--;
if (core->visual.tab < 1) {
core->visual.tab = r_list_length (core->visual.tabs);
}
}
}
static void visual_closetab (RCore *core) {
r_core_visual_tab_free (r_list_pop_head (core->visual.tabs));
const int tabsCount = r_list_length (core->visual.tabs);
if (tabsCount > 0) {
core->visual.tab--;
if (core->visual.tab < 1) {
core->visual.tab = 1;
}
visual_nexttab (core);
RCoreVisualTab *tab = r_list_head (core->visual.tabs)->data;
if (tab) {
r_core_seek (core, tab->offset, 1);
core->printidx = tab->printidx;
}
} else {
r_list_free (core->visual.tabs);
core->visual.tabs = NULL;
}
}
static void applyDisMode(RCore *core) {
switch (disMode) {
case 0:
r_config_set (core->config, "asm.pseudo", "false");
r_config_set (core->config, "asm.esil", "false");
break;
case 1:
r_config_set (core->config, "asm.pseudo", "true");
r_config_set (core->config, "asm.esil", "false");
break;
2017-12-16 01:25:35 +00:00
case 2:
r_config_set (core->config, "asm.pseudo", "false");
r_config_set (core->config, "asm.esil", "true");
break;
}
}
static bool isNumber (RCore *core, int ch) {
if (ch > '0' && ch <= '9') {
return true;
}
if (core->print->cur_enabled) {
return ch == '0';
}
return false;
}
static char numbuf[32] = {0};
static int numbuf_i = 0;
static void numbuf_append(int ch) {
if (numbuf_i >= sizeof (numbuf) - 1) {
numbuf_i = 0;
}
numbuf[numbuf_i++] = ch;
numbuf[numbuf_i] = 0;
}
static int numbuf_pull() {
int distance = 1;
if (numbuf_i) {
numbuf[numbuf_i] = 0;
distance = atoi (numbuf);
if (!distance) {
distance = 1;
}
numbuf_i = 0;
}
return distance;
}
R_API int r_core_visual_cmd(RCore *core, const char *arg) {
ut8 ch = arg[0];
RAsmOp op;
ut64 offset = core->offset;
char buf[4096];
const char *key_s;
int i, ret, cols = core->print->cols, delta = 0;
int wheelspeed;
if ((ut8)ch == KEY_ALTQ) {
2017-08-26 01:49:54 +00:00
r_cons_readchar ();
ch = 'q';
}
ch = r_cons_arrow_to_hjkl (ch);
ch = visual_nkey (core, ch);
2016-12-09 14:29:15 +00:00
if (ch < 2) {
return 1;
}
if (r_cons_singleton ()->mouse_event) {
2018-02-22 16:59:08 +00:00
wheelspeed = r_config_get_i (core->config, "scr.wheel.speed");
} else {
wheelspeed = 1;
}
// do we need hotkeys for data references? not only calls?
// '0' is handled to seek at the beginning of the function
// unless the cursor is set, then, the 0 is captured here
if (isNumber (core, ch)) {
// only in disasm and debug prints..
if (isDisasmPrint (core->printidx)) {
r_core_visual_jump (core, ch);
} else {
numbuf_append (ch);
}
} else {
switch (ch) {
2015-04-07 14:25:14 +00:00
#if __WINDOWS__ && !__CYGWIN__
case 0xf5:
SetWindow (81, 25);
break;
case 0xcf5:
SetWindow (81, 40);
break;
2015-04-07 14:25:14 +00:00
#endif
case 0x0d: // "enter" "\\n" "newline"
{
RAnalOp *op;
2014-09-03 21:55:09 +00:00
int wheel = r_config_get_i (core->config, "scr.wheel");
if (wheel) {
2015-09-14 10:35:38 +00:00
r_cons_enable_mouse (true);
}
do {
2018-06-07 18:32:00 +00:00
op = r_core_anal_op (core, core->offset + core->print->cur, R_ANAL_OP_MASK_BASIC);
if (op) {
if (op->type == R_ANAL_OP_TYPE_JMP ||
op->type == R_ANAL_OP_TYPE_CJMP ||
op->type == R_ANAL_OP_TYPE_CALL ||
op->type == R_ANAL_OP_TYPE_CCALL) {
if (core->print->cur_enabled) {
int delta = R_ABS ((st64) op->jump - (st64) offset);
if (op->jump < core->offset || op->jump >= core->print->screen_bounds) {
r_io_sundo_push (core->io, offset, r_print_get_cursor (core->print));
2014-09-23 11:32:51 +00:00
r_core_visual_seek_animation (core, op->jump);
core->print->cur = 0;
2014-09-23 11:32:51 +00:00
} else {
r_io_sundo_push (core->io, offset, r_print_get_cursor (core->print));
core->print->cur = delta;
2014-09-23 11:32:51 +00:00
}
} else {
r_io_sundo_push (core->io, offset, 0);
r_core_visual_seek_animation (core, op->jump);
2014-09-23 11:32:51 +00:00
}
}
}
r_anal_op_free (op);
} while (--wheelspeed > 0);
}
break;
case 9: // tab
if (core->visual.tabs) {
visual_nexttab (core);
} else if (splitView) {
core->print->cur = 0;
core->curtab = 0;
core->seltab++;
if (core->seltab > 1) {
core->seltab = 0;
}
} else {
core->curtab = 0;
if (core->printidx == R_CORE_VISUAL_MODE_PDDBG) {
core->print->cur = 0;
core->seltab++;
if (core->seltab > 2) {
core->seltab = 0;
}
} else {
core->seltab = 0;
ut64 f = r_config_get_i (core->config, "diff.from");
ut64 t = r_config_get_i (core->config, "diff.to");
if (f == t && f == 0) {
core->print->col = core->print->col == 1? 2: 1;
} else {
#if 0
// XXX WTF
ut64 delta = offset - f;
r_core_seek (core, t + delta, 1);
r_config_set_i (core->config, "diff.from", t);
r_config_set_i (core->config, "diff.to", f);
#endif
}
}
}
break;
2017-10-20 00:21:19 +00:00
case '&':
2017-11-09 11:21:03 +00:00
rotateAsmBits (core);
2017-10-20 00:21:19 +00:00
break;
case 'a':
{
if (core->file && core->io && !(r_io_desc_get (core->io, core->file->fd)->perm & R_PERM_W)) {
r_cons_printf ("\nFile has been opened in read-only mode. Use -w flag\n");
r_cons_any_key (NULL);
return true;
}
r_cons_printf ("Enter assembler opcodes separated with ';':\n");
r_core_visual_showcursor (core, true);
r_cons_flush ();
r_cons_set_raw (false);
strcpy (buf, "wa ");
r_line_set_prompt (":> ");
r_cons_enable_mouse (false);
if (r_cons_fgets (buf + 3, 1000, 0, NULL) < 0) {
buf[0] = '\0';
}
int wheel = r_config_get_i (core->config, "scr.wheel");
if (wheel) {
r_cons_enable_mouse (true);
}
if (*buf) {
if (core->print->cur_enabled) {
int t = core->offset + core->print->cur;
r_core_seek (core, t, 0);
}
r_core_cmd (core, buf, true);
if (core->print->cur_enabled) {
int t = core->offset - core->print->cur;
r_core_seek (core, t, 1);
}
}
r_core_visual_showcursor (core, false);
r_cons_set_raw (true);
}
break;
case '=':
{ // TODO: edit
r_core_visual_showcursor (core, true);
const char *buf = NULL;
#define I core->cons
const char *cmd = r_config_get (core->config, "cmd.vprompt");
r_line_set_prompt ("cmd.vprompt> ");
I->line->contents = strdup (cmd);
buf = r_line_readline ();
// if (r_cons_fgets (buf, sizeof (buf)-4, 0, NULL) <0) buf[0]='\0';
I->line->contents = NULL;
2017-03-15 11:12:01 +00:00
(void)r_config_set (core->config, "cmd.vprompt", buf);
r_core_visual_showcursor (core, false);
}
break;
case '|':
{ // TODO: edit
r_core_visual_showcursor (core, true);
const char *buf = NULL;
#define I core->cons
const char *cmd = r_config_get (core->config, "cmd.cprompt");
r_line_set_prompt ("cmd.cprompt> ");
I->line->contents = strdup (cmd);
buf = r_line_readline ();
if (buf && !strcmp (buf, "|")) {
R_FREE (I->line->contents);
core->print->cur_enabled = true;
core->print->cur = 0;
(void)r_config_set (core->config, "cmd.cprompt", "p=e $r-2");
} else {
// if (r_cons_fgets (buf, sizeof (buf)-4, 0, NULL) <0) buf[0]='\0';
R_FREE (I->line->contents);
2017-09-18 13:46:55 +00:00
(void)r_config_set (core->config, "cmd.cprompt", buf? buf: "");
}
r_core_visual_showcursor (core, false);
}
break;
case '!':
r_core_visual_panels (core, NULL);
break;
case 'o':
{
r_core_visual_showcursor (core, true);
r_core_visual_offset (core);
r_core_visual_showcursor (core, false);
}
break;
case 'A':
{
int oce = core->print->cur_enabled;
int oco = core->print->ocur;
int occ = core->print->cur;
ut64 off = oce? core->offset + core->print->cur: core->offset;
core->print->cur_enabled = 0;
r_cons_enable_mouse (false);
r_core_visual_asm (core, off);
core->print->cur_enabled = oce;
core->print->cur = occ;
core->print->ocur = oco;
int wheel = r_config_get_i (core->config, "scr.wheel");
if (wheel) {
r_cons_enable_mouse (true);
}
2017-01-11 22:51:20 +00:00
}
break;
case '\\':
if (splitPtr == UT64_MAX) {
splitPtr = core->offset;
}
splitView = !splitView;
setcursor (core, splitView);
break;
case 'c':
setcursor (core, !core->print->cur_enabled);
break;
case '@':
if (core->print->cur_enabled) {
char buf[128];
prompt_read ("cursor at:", buf, sizeof (buf));
core->print->cur = (st64) r_num_math (core->num, buf);
} else {
visual_repeat (core);
}
break;
case 'C':
if (++color > 2) {
color = 0;
}
r_config_set_i (core->config, "scr.color", color);
break;
case 'd':
if (r_config_get_i (core->config, "asm.esil")) {
2017-06-09 19:35:38 +00:00
r_core_visual_esil (core);
} else {
r_core_visual_showcursor (core, true);
r_core_visual_define (core, arg + 1);
r_core_visual_showcursor (core, false);
}
break;
case 'D':
setdiff (core);
break;
case 'f':
{
int range, min, max;
char name[256], *n;
r_line_set_prompt ("flag name: ");
r_core_visual_showcursor (core, true);
if (r_cons_fgets (name, sizeof (name), 0, NULL) >= 0 && *name) {
2018-01-08 02:22:26 +00:00
n = r_str_trim (name);
if (core->print->ocur != -1) {
min = R_MIN (core->print->cur, core->print->ocur);
max = R_MAX (core->print->cur, core->print->ocur);
} else {
min = max = core->print->cur;
}
range = max - min + 1;
if (!strcmp (n, "-")) {
r_flag_unset_off (core->flags, core->offset + core->print->cur);
} else if (*n == '.') {
if (n[1] == '-') {
//unset
r_core_cmdf (core, "f.-%s@0x%"PFMT64x, n + 1, core->offset + min);
} else {
r_core_cmdf (core, "f.%s@0x%"PFMT64x, n + 1, core->offset + min);
}
} else if (*n == '-') {
if (*n) {
r_flag_unset_name (core->flags, n + 1);
}
} else {
if (range < 1) {
range = 1;
}
if (*n) {
r_flag_set (core->flags, n,
core->offset + min, range);
}
}
}
}
r_core_visual_showcursor (core, false);
break;
case ',':
visual_comma (core);
break;
case 't':
visual_newtab (core);
break;
case 'T':
visual_closetab (core);
break;
case 'n':
r_core_seek_next (core, r_config_get (core->config, "scr.nkey"));
break;
case 'N':
r_core_seek_previous (core, r_config_get (core->config, "scr.nkey"));
break;
case 'i':
case 'I':
if (PIDX == 0) {
if (core->print->ocur == -1) {
__ime = true;
core->print->cur_enabled = true;
return true;
}
2018-05-04 22:58:13 +00:00
} else if (PIDX == 2 && core->seltab == 1) {
char buf[128];
prompt_read ("new-reg-value> ", buf, sizeof (buf));
if (*buf) {
const char *creg = core->dbg->creg;
if (creg) {
r_core_cmdf (core, "dr %s = %s\n", creg, buf);
}
}
2016-07-25 03:14:48 +00:00
return true;
}
if (core->file && core->io && !(r_io_desc_get (core->io, core->file->fd)->perm & R_PERM_W)) {
r_cons_printf ("\nFile has been opened in read-only mode. Use -w flag\n");
r_cons_any_key (NULL);
return true;
}
r_core_visual_showcursor (core, true);
r_cons_flush ();
r_cons_set_raw (0);
if (ch == 'I') {
strcpy (buf, "wow ");
r_line_set_prompt ("insert hexpair block: ");
if (r_cons_fgets (buf + 4, sizeof (buf) - 5, 0, NULL) < 0) {
buf[0] = '\0';
}
char *p = strdup (buf);
int cur = core->print->cur;
if (cur >= core->blocksize) {
cur = core->print->cur - 1;
}
snprintf (buf, sizeof (buf), "%s @ $$0!%i", p,
core->blocksize - core->print->cur);
r_core_cmd (core, buf, 0);
free (p);
break;
}
delta = (core->print->ocur != -1)? R_MIN (core->print->cur, core->print->ocur): core->print->cur;
if (core->print->col == 2) {
strcpy (buf, "\"w ");
r_line_set_prompt ("insert string: ");
if (r_cons_fgets (buf + 3, sizeof (buf) - 4, 0, NULL) < 0) {
buf[0] = '\0';
}
strcat (buf, "\"");
} else {
r_line_set_prompt ("insert hex: ");
if (core->print->ocur != -1) {
int bs = R_ABS (core->print->cur - core->print->ocur) + 1;
core->blocksize = bs;
strcpy (buf, "wow ");
} else {
strcpy (buf, "wx ");
}
if (r_cons_fgets (buf + strlen (buf), sizeof (buf) - strlen (buf), 0, NULL) < 0) {
buf[0] = '\0';
}
}
if (core->print->cur_enabled) {
r_core_seek (core, core->offset + delta, 0);
2016-07-25 03:14:48 +00:00
}
r_core_cmd (core, buf, 1);
if (core->print->cur_enabled) {
r_core_seek (core, offset, 1);
}
r_cons_set_raw (1);
r_core_visual_showcursor (core, false);
break;
case 'R':
if (r_config_get_i (core->config, "scr.randpal")) {
r_core_cmd0 (core, "ecr");
} else {
r_core_cmd0 (core, "ecn");
2016-07-25 03:14:48 +00:00
}
break;
case 'e':
r_core_visual_config (core);
break;
case '^':
{
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, 0);
if (fcn) {
r_core_seek (core, fcn->addr, 0);
}
}
break;
case 'E':
r_core_visual_colors (core);
break;
case 'M':
if (!r_list_empty (core->fs->roots)) {
r_core_visual_mounts (core);
}
break;
case 'x':
r_core_visual_refs (core, true, false);
break;
case 'X':
r_core_visual_refs (core, false, false);
break;
case 'r':
// TODO: toggle shortcut hotkeys
2018-04-11 07:16:25 +00:00
r_core_cmd0 (core, "e!asm.jmphints");
r_core_cmd0 (core, "e!asm.leahints");
visual_refresh (core);
break;
case ' ':
case 'V':
if (r_config_get_i (core->config, "graph.web")) {
r_core_cmd0 (core, "agv $$");
} else {
RAnalFunction *fun = r_anal_get_fcn_in (core->anal, core->offset, R_ANAL_FCN_TYPE_NULL);
int ocolor = r_config_get_i (core->config, "scr.color");
if (!fun) {
r_cons_message ("Not in a function. Type 'df' to define it here");
break;
} else if (r_list_empty (fun->bbs)) {
r_cons_message ("No basic blocks in this function. You may want to use 'afb+'.");
break;
}
reset_print_cur (core->print);
eprintf ("\rRendering graph...");
r_core_visual_graph (core, NULL, NULL, true);
r_config_set_i (core->config, "scr.color", ocolor);
}
break;
case 'v':
2018-11-25 00:23:33 +00:00
r_core_visual_anal (core, NULL);
break;
case 'g':
if (core->io->va) {
ut64 offset = r_io_section_get_paddr_at (core->io, 0LL);
if (offset == -1) {
offset = 0;
}
r_core_seek (core, offset, 1);
} else {
r_core_seek (core, 0, 1);
}
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
break;
case 'G':
ret = 0;
int scols = r_config_get_i (core->config, "hex.cols");
if (core->file) {
if (core->io->va) {
RIOSection *sec = r_io_section_get (core->io, 0LL);
ut64 offset;
if (!sec) {
offset = r_io_fd_size (core->io, core->file->fd)
- core->blocksize + 2 * scols;
ret = r_core_seek (core, offset, 1);
} else {
offset = r_io_fd_size (core->io, core->file->fd)
2015-11-23 15:24:36 +00:00
- core->blocksize + 2 * scols;
ret = r_core_seek (core, offset, 1);
}
} else {
ret = r_core_seek (core,
r_io_fd_size (core->io, core->file->fd)
2015-11-23 15:24:36 +00:00
- core->blocksize + 2 * scols, 1);
}
} else {
ret = -1;
}
if (ret != -1) {
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
}
break;
case 'h':
case 'l':
{
int distance = numbuf_pull ();
if (core->print->cur_enabled) {
if (ch == 'h') {
for (i = 0; i < distance; i++) {
cursor_left (core, false);
}
} else {
for (i = 0; i < distance; i++) {
cursor_right (core, false);
}
}
} else {
if (ch == 'h') {
distance = -distance;
}
r_core_seek_delta (core, distance);
}
}
break;
case 'L':
case 'H':
{
int distance = numbuf_pull ();
if (core->print->cur_enabled) {
if (ch == 'H') {
for (i = 0; i < distance; i++) {
cursor_left (core, true);
}
} else {
for (i = 0; i < distance; i++) {
cursor_right (core, true);
}
}
} else {
if (ch == 'H') {
distance = -distance;
}
r_core_seek_delta (core, distance * 2);
}
}
break;
case 'j':
if (core->print->cur_enabled) {
int distance = numbuf_pull ();
for (i = 0; i < distance; i++) {
cursor_nextrow (core, false);
}
} else {
2018-02-22 16:59:08 +00:00
if (r_config_get_i (core->config, "scr.wheel.nkey")) {
r_core_cmd0 (core, "sn");
} else {
int times = R_MAX (1, wheelspeed);
// Check if we have a data annotation.
RAnalMetaItem *ami = r_meta_find (core->anal,
core->offset, R_META_TYPE_DATA,
R_META_WHERE_HERE);
2018-01-07 01:23:48 +00:00
if (!ami) {
ami = r_meta_find (core->anal,
core->offset, R_META_TYPE_STRING,
R_META_WHERE_HERE);
}
if (ami) {
r_core_seek_delta (core, ami->size);
} else {
while (times--) {
if (isDisasmPrint (core->printidx)) {
r_core_visual_disasm_down (core, &op, &cols);
}
r_core_seek (core, core->offset + cols, 1);
}
}
}
}
break;
case 'J':
if (core->print->cur_enabled) {
int distance = numbuf_pull ();
for (i = 0; i < distance; i++) {
cursor_nextrow (core, true);
}
} else {
if (core->print->screen_bounds > 1 && core->print->screen_bounds >= core->offset) {
ut64 addr = UT64_MAX;
if (isDisasmPrint (core->printidx)) {
if (core->print->screen_bounds == core->offset) {
ut64 addr = core->print->screen_bounds;
addr += r_asm_disassemble (core->assembler, &op, core->block, 32);
}
2018-11-20 10:04:39 +00:00
if (addr == core->offset || addr == UT64_MAX) {
addr = core->offset + 48;
}
} else {
2018-11-20 00:13:54 +00:00
int h;
int hexCols = r_config_get_i (core->config, "hex.cols");
if (hexCols < 1) {
hexCols = 16;
}
2018-11-20 00:13:54 +00:00
(void)r_cons_get_size (&h);
int delta = hexCols * (h / 4);
addr = core->offset + delta;
2016-11-04 00:30:35 +00:00
}
r_core_seek (core, addr, 1);
} else {
r_core_seek (core, core->offset + obs, 1);
}
}
break;
case 'k':
if (core->print->cur_enabled) {
int distance = numbuf_pull ();
for (i = 0; i < distance; i++) {
cursor_prevrow (core, false);
}
} else {
2018-02-22 16:59:08 +00:00
if (r_config_get_i (core->config, "scr.wheel.nkey")) {
r_core_cmd0 (core, "sp");
} else {
int times = wheelspeed;
if (times < 1) {
times = 1;
}
while (times--) {
if (isDisasmPrint (core->printidx)) {
r_core_visual_disasm_up (core, &cols);
}
r_core_seek_delta (core, -cols);
}
2015-12-18 18:53:54 +00:00
}
}
break;
case 'K':
if (core->print->cur_enabled) {
int distance = numbuf_pull ();
for (i = 0; i < distance; i++) {
cursor_prevrow (core, true);
}
} else {
if (core->print->screen_bounds > 1 && core->print->screen_bounds > core->offset) {
int delta = (core->print->screen_bounds - core->offset);
if (core->offset >= delta) {
r_core_seek (core, core->offset - delta, 1);
} else {
r_core_seek (core, 0, 1);
}
2016-11-04 00:30:35 +00:00
} else {
ut64 at = (core->offset > obs)? core->offset - obs: 0;
if (core->offset > obs) {
r_core_seek (core, at, 1);
2016-11-04 00:30:35 +00:00
} else {
r_core_seek (core, 0, 1);
}
}
}
break;
case '[':
// comments column
if (core->print->cur_enabled &&
(core->printidx == R_CORE_VISUAL_MODE_PD ||
(core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 2))) {
2018-02-22 16:59:08 +00:00
int cmtcol = r_config_get_i (core->config, "asm.cmt.col");
if (cmtcol > 2) {
2018-02-22 16:59:08 +00:00
r_config_set_i (core->config, "asm.cmt.col", cmtcol - 2);
}
}
// hex column
if ((core->printidx != R_CORE_VISUAL_MODE_PD && core->printidx != R_CORE_VISUAL_MODE_PDDBG) ||
(core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->seltab != 2)) {
int scrcols = r_config_get_i (core->config, "hex.cols");
if (scrcols > 2) {
r_config_set_i (core->config, "hex.cols", scrcols - 2);
}
}
break;
case ']':
// comments column
if (core->print->cur_enabled &&
(core->printidx == R_CORE_VISUAL_MODE_PD ||
(core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->seltab == 2))) {
2018-02-22 16:59:08 +00:00
int cmtcol = r_config_get_i (core->config, "asm.cmt.col");
r_config_set_i (core->config, "asm.cmt.col", cmtcol + 2);
}
// hex column
if ((core->printidx != R_CORE_VISUAL_MODE_PD && core->printidx != R_CORE_VISUAL_MODE_PDDBG) ||
(core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->seltab != 2)) {
int scrcols = r_config_get_i (core->config, "hex.cols");
r_config_set_i (core->config, "hex.cols", scrcols + 2);
}
break;
#if 0
case 'I':
r_core_cmd (core, "dsp", 0);
r_core_cmd (core, ".dr*", 0);
break;
#endif
case 's':
key_s = r_config_get (core->config, "key.s");
if (key_s && *key_s) {
r_core_cmd0 (core, key_s);
} else {
visual_single_step_in (core);
}
break;
case 'S':
key_s = r_config_get (core->config, "key.S");
if (key_s && *key_s) {
r_core_cmd0 (core, key_s);
} else {
visual_single_step_over (core);
}
break;
case '"':
if (printfmt == printfmtSingle) {
printfmt = printfmtColumns;
} else {
printfmt = printfmtSingle;
}
break;
case 'p':
if (core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->print->cur_enabled) {
nextPrintCommand ();
} else {
setprintmode (core, 1);
}
break;
case 'P':
if (core->printidx == R_CORE_VISUAL_MODE_PDDBG && core->print->cur_enabled) {
prevPrintCommand ();
} else {
setprintmode (core, -1);
}
break;
case '%':
if (core->print->cur_enabled) {
findPair (core);
} else {
/* do nothing? */
autoblocksize = !autoblocksize;
if (autoblocksize) {
obs = core->blocksize;
} else {
r_core_block_size (core, obs);
}
r_cons_clear ();
}
break;
case 'w':
findNextWord (core);
break;
case 'W':
findPrevWord (core);
//r_core_cmd0 (core, "=H");
break;
case 'm':
r_core_visual_mark (core, r_cons_readchar ());
break;
case '\'':
r_core_visual_mark_seek (core, r_cons_readchar ());
break;
case 'y':
if (core->print->ocur == -1) {
r_core_yank (core, core->offset + core->print->cur, 1);
} else {
r_core_yank (core, core->offset + ((core->print->ocur < core->print->cur) ?
core->print->ocur: core->print->cur), R_ABS (core->print->cur - core->print->ocur) + 1);
}
break;
case 'Y':
if (!core->yank_buf) {
r_cons_strcat ("Cannot paste, clipboard is empty.\n");
r_cons_flush ();
r_cons_any_key (NULL);
r_cons_clear00 ();
} else {
r_core_yank_paste (core, core->offset + core->print->cur, 0);
}
break;
case '0':
{
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, core->offset, R_ANAL_FCN_TYPE_NULL);
if (fcn) {
r_core_seek (core, fcn->addr, 1);
}
}
break;
case '-':
if (core->print->cur_enabled) {
if (core->seltab == 0 && core->printidx == R_CORE_VISUAL_MODE_PDDBG) {
int w = r_config_get_i (core->config, "hex.cols");
r_config_set_i (core->config, "stack.size",
r_config_get_i (core->config, "stack.size") - w);
} else {
if (core->print->ocur == -1) {
sprintf (buf, "wos 01 @ $$+%i!1",core->print->cur);
} else {
sprintf (buf, "wos 01 @ $$+%i!%i", core->print->cur < core->print->ocur
? core->print->cur
: core->print->ocur,
R_ABS (core->print->ocur - core->print->cur) + 1);
}
r_core_cmd (core, buf, 0);
}
} else {
if (!autoblocksize) {
r_core_block_size (core, core->blocksize - 1);
}
2016-07-25 03:14:48 +00:00
}
break;
case '+':
if (core->print->cur_enabled) {
if (core->seltab == 0 && core->printidx == R_CORE_VISUAL_MODE_PDDBG) {
int w = r_config_get_i (core->config, "hex.cols");
r_config_set_i (core->config, "stack.size",
r_config_get_i (core->config, "stack.size") + w);
} else {
if (core->print->ocur == -1) {
sprintf (buf, "woa 01 @ $$+%i!1", core->print->cur);
} else {
sprintf (buf, "woa 01 @ $$+%i!%i", core->print->cur < core->print->ocur
? core->print->cur
: core->print->ocur,
R_ABS (core->print->ocur - core->print->cur) + 1);
}
r_core_cmd (core, buf, 0);
}
} else {
if (!autoblocksize) {
r_core_block_size (core, core->blocksize + 1);
}
}
break;
case '/':
if (core->print->cur_enabled) {
visual_search (core);
} else {
if (autoblocksize) {
2018-08-10 13:24:24 +00:00
r_core_cmd0 (core, "?i highlight;e scr.highlight=`yp`");
} else {
r_core_block_size (core, core->blocksize - cols);
}
}
break;
case '(':
snowMode = !snowMode;
if (!snowMode) {
r_list_free (snows);
snows = NULL;
}
break;
case ')':
rotateAsmemu (core);
break;
case '#':
r_config_toggle (core->config, "asm.bytes");
break;
case '*':
if (core->print->cur_enabled) {
r_core_cmdf (core, "dr PC=0x%08"PFMT64x, core->offset + core->print->cur);
} else if (!autoblocksize) {
r_core_block_size (core, core->blocksize + cols);
}
break;
case '>':
if (core->print->cur_enabled) {
if (core->print->ocur == -1) {
eprintf ("No range selected. Use HJKL.\n");
r_cons_any_key (NULL);
break;
}
char buf[128];
// TODO autocomplete filenames
prompt_read ("dump to file: ", buf, sizeof (buf));
if (buf[0]) {
ut64 from = core->offset + core->print->ocur;
ut64 size = R_ABS (core->print->cur - core->print->ocur) + 1;
r_core_dump (core, buf, from, size, false);
}
} else {
r_core_seek_align (core, core->blocksize, 1);
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
}
break;
2017-03-24 10:34:40 +00:00
case '<': // "V<"
if (core->print->cur_enabled) {
char buf[128];
// TODO autocomplete filenames
prompt_read ("load from file: ", buf, sizeof (buf));
if (buf[0]) {
int sz;
char *data = r_file_slurp (buf, &sz);
if (data) {
int cur;
if (core->print->ocur != -1) {
cur = R_MIN (core->print->cur, core->print->ocur);
} else {
cur = core->print->cur;
}
ut64 from = core->offset + cur;
ut64 size = R_ABS (core->print->cur - core->print->ocur) + 1;
ut64 s = R_MIN (size, sz);
r_io_write_at (core->io, from, (const ut8*)data, s);
}
}
} else {
r_core_seek_align (core, core->blocksize, -1);
r_core_seek_align (core, core->blocksize, -1);
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
}
break;
2017-03-24 10:34:40 +00:00
case '.': // "V."
r_io_sundo_push (core->io, core->offset, r_print_get_cursor (core->print));
if (core->print->cur_enabled) {
r_config_set_i (core->config, "stack.delta", 0);
r_core_seek (core, core->offset + core->print->cur, 1);
core->print->cur = 0;
2015-12-22 22:09:23 +00:00
} else {
ut64 addr = r_debug_reg_get (core->dbg, "PC");
if (addr && addr != UT64_MAX) {
r_core_seek (core, addr, 1);
r_core_cmdf (core, "ar `arn PC`=0x%"PFMT64x, addr);
} else {
ut64 entry = r_num_get (core->num, "entry0");
if (!entry || entry == UT64_MAX) {
RIOSection *s = r_io_section_vget (core->io, core->offset);
if (s) {
entry = s->vaddr;
} else {
2017-05-03 15:19:49 +00:00
RIOMap *map = ls_pop (core->io->maps);
if (map) {
entry = map->itv.addr;
} else {
entry = r_config_get_i (core->config, "bin.baddr");
}
2017-05-03 15:19:49 +00:00
ls_prepend (core->io->maps, map);
}
}
2017-03-24 10:34:40 +00:00
if (entry != UT64_MAX) {
r_core_seek (core, entry, 1);
}
2015-12-22 22:09:23 +00:00
}
}
break;
#if 0
case 'n': r_core_seek_delta (core, core->blocksize); break;
case 'N': r_core_seek_delta (core, 0 - (int) core->blocksize); break;
#endif
case ':':
r_core_visual_prompt_input (core);
break;
case '_':
r_core_visual_hudstuff (core);
break;
case ';':
r_cons_enable_mouse (false);
2017-04-12 01:11:17 +00:00
r_cons_gotoxy (0, 0);
r_cons_printf ("Enter a comment: ('-' to remove, '!' to use $EDITOR)\n");
r_core_visual_showcursor (core, true);
r_cons_flush ();
r_cons_set_raw (false);
r_line_set_prompt ("comment: ");
strcpy (buf, "\"CC ");
i = strlen (buf);
if (r_cons_fgets (buf + i, sizeof (buf) - i - 1, 0, NULL) > 0) {
ut64 addr, orig;
addr = orig = core->offset;
if (core->print->cur_enabled) {
addr += core->print->cur;
r_core_seek (core, addr, 0);
r_core_cmdf (core, "s 0x%"PFMT64x, addr);
}
if (!strcmp (buf + i, "-")) {
strcpy (buf, "CC-");
} else {
switch (buf[i]) {
case '-':
memcpy (buf, "\"CC-\x00", 5);
break;
case '!':
memcpy (buf, "\"CC!\x00", 5);
break;
default:
memcpy (buf, "\"CC ", 4);
break;
}
strcat (buf, "\"");
}
if (buf[3] == ' ') {
// have to escape any quotes.
int j, len = strlen (buf);
char *duped = strdup (buf);
i = 4, j = 4;
for (i = 4, j = 4; i < len; ++i,++j) {
char c = duped[i];
if (c == '"' && i != (len - 1)) {
buf[j] = '\\';
++j;
buf[j] = '"';
} else {
buf[j] = c;
}
}
free (duped);
}
r_core_cmd (core, buf, 1);
if (core->print->cur_enabled) {
r_core_seek (core, orig, 1);
}
}
r_cons_set_raw (true);
r_core_visual_showcursor (core, false);
break;
case 'b':
r_core_visual_browse (core);
2017-10-16 14:15:15 +00:00
break;
case 'B':
2017-07-02 21:39:30 +00:00
{
ut64 addr = core->print->cur_enabled? core->offset + core->print->cur: core->offset;
2017-07-02 21:39:30 +00:00
r_core_cmdf (core, "dbs 0x%08"PFMT64x, addr);
}
break;
case 'O':
disMode++;
if (disMode > 2) {
disMode = 0;
}
applyDisMode (core);
// r_core_cmd0 (core, "e!asm.pseudo");
break;
case 'u':
{
RIOUndos *undo = r_io_sundo (core->io, core->offset);
if (undo) {
r_core_visual_seek_animation (core, undo->off);
core->print->cur = undo->cursor;
} else {
eprintf ("Cannot undo\n");
}
}
break;
case 'U':
{
RIOUndos *undo = r_io_sundo_redo (core->io);
if (undo) {
r_core_visual_seek_animation (core, undo->off);
reset_print_cur (core->print);
}
}
break;
case 'z':
{
RAnalFunction *fcn;
if (core->print->cur_enabled) {
fcn = r_anal_get_fcn_in (core->anal,
core->offset + core->print->cur, R_ANAL_FCN_TYPE_NULL);
} else {
fcn = r_anal_get_fcn_in (core->anal,
core->offset, R_ANAL_FCN_TYPE_NULL);
}
if (fcn) {
fcn->folded = !fcn->folded;
} else {
2018-02-22 16:59:08 +00:00
r_config_toggle (core->config, "asm.cmt.fold");
}
}
break;
case 'Z': // shift-tab
if (core->visual.tabs) {
visual_prevtab (core);
} else {
if (zoom && core->print->cur) {
ut64 from = r_config_get_i (core->config, "zoom.from");
ut64 to = r_config_get_i (core->config, "zoom.to");
r_core_seek (core, from + ((to - from) / core->blocksize) * core->print->cur, 1);
}
zoom = !zoom;
}
break;
case '?':
if (visual_help () == '?') {
r_core_visual_hud (core);
}
break;
case 0x1b:
case 'q':
case 'Q':
setcursor (core, false);
return false;
}
numbuf_i = 0;
}
r_core_block_read (core);
2015-09-14 10:35:38 +00:00
return true;
}
R_API void r_core_visual_title(RCore *core, int color) {
bool showDelta = r_config_get_i (core->config, "scr.slow");
2014-10-22 22:07:30 +00:00
static ut64 oldpc = 0;
const char *BEGIN = core->cons->pal.prompt;
const char *filename;
2018-07-08 23:13:03 +00:00
char pos[512], bar[512], pcs[32];
if (!oldpc) {
oldpc = r_debug_reg_get (core->dbg, "PC");
}
/* automatic block size */
int pc, hexcols = r_config_get_i (core->config, "hex.cols");
if (autoblocksize) {
switch (core->printidx) {
2018-05-04 22:58:13 +00:00
case R_CORE_VISUAL_MODE_PXR: // prc
case R_CORE_VISUAL_MODE_PRC: // prc
r_core_block_size (core, (int)(core->cons->rows * hexcols * 3.5));
break;
case R_CORE_VISUAL_MODE_PX: // x
case R_CORE_VISUAL_MODE_PXa: // pxa
r_core_block_size (core, (int)(core->cons->rows * hexcols * 3.5));
break;
case R_CORE_VISUAL_MODE_PW: // XXX pw
r_core_block_size (core, (int)(core->cons->rows * hexcols));
break;
case R_CORE_VISUAL_MODE_PC: // XXX pc
r_core_block_size (core, (int)(core->cons->rows * hexcols * 4));
break;
case R_CORE_VISUAL_MODE_PD: // pd
case R_CORE_VISUAL_MODE_PDDBG: // pd+dbg
{
int bsize = core->cons->rows * 5;
if (core->print->screen_bounds > 1) {
// estimate new blocksize with the size of the last
// printed instructions
int new_sz = core->print->screen_bounds - core->offset + 32;
if (new_sz > bsize) {
bsize = new_sz;
}
}
r_core_block_size (core, bsize);
break;
}
case R_CORE_VISUAL_MODE_PXA: // pxA
r_core_block_size (core, hexcols * core->cons->rows * 8);
break;
}
}
2016-10-06 00:40:26 +00:00
if (r_config_get_i (core->config, "scr.zoneflags")) {
r_core_cmd (core, "fz:", 0);
}
2014-10-22 22:07:30 +00:00
if (r_config_get_i (core->config, "cfg.debug")) {
2015-10-31 01:20:25 +00:00
ut64 curpc = r_debug_reg_get (core->dbg, "PC");
if (curpc && curpc != UT64_MAX && curpc != oldpc) {
2014-10-22 22:07:30 +00:00
// check dbg.follow here
int follow = (int) (st64) r_config_get_i (core->config, "dbg.follow");
2016-06-02 01:19:31 +00:00
if (follow > 0) {
if ((curpc < core->offset) || (curpc > (core->offset + follow))) {
2014-10-22 22:07:30 +00:00
r_core_seek (core, curpc, 1);
2016-06-02 01:19:31 +00:00
}
} else if (follow < 0) {
r_core_seek (core, curpc + follow, 1);
2014-10-22 22:07:30 +00:00
}
oldpc = curpc;
}
}
RIODesc *desc = core->file? r_io_desc_get (core->io, core->file->fd): NULL;
2018-02-23 17:27:03 +00:00
filename = desc? desc->name: "";
{ /* get flag with delta */
ut64 addr = core->offset + (core->print->cur_enabled? core->print->cur: 0);
#if 1
/* TODO: we need a helper into r_flags to do that */
bool oss = core->flags->space_strict;
int osi = core->flags->space_idx;
RFlagItem *f = NULL;
core->flags->space_strict = true;
core->anal->flb.set_fs (core->flags, "symbols");
if (core->flags->space_idx != -1) {
f = core->anal->flb.get_at (core->flags, addr, showDelta);
}
core->flags->space_strict = oss;
core->flags->space_idx = osi;
if (!f) {
f = r_flag_get_at (core->flags, addr, showDelta);
}
#else
RFlagItem *f = r_flag_get_at (core->flags, addr, false);
#endif
if (f) {
if (f->offset == addr || !f->offset) {
snprintf (pos, sizeof (pos), "@ %s", f->name);
} else {
snprintf (pos, sizeof (pos), "@ %s+%d # 0x%"PFMT64x,
f->name, (int) (addr - f->offset), addr);
}
} else {
2017-01-11 22:56:36 +00:00
RAnalFunction *fcn = r_anal_get_fcn_in (core->anal, addr, 0);
if (fcn) {
int delta = addr - fcn->addr;
if (delta > 0) {
snprintf (pos, sizeof (pos), "@ %s+%d", fcn->name, delta);
} else if (delta < 0) {
snprintf (pos, sizeof (pos), "@ %s%d", fcn->name, delta);
} else {
snprintf (pos, sizeof (pos), "@ %s", fcn->name);
}
} else {
pos[0] = 0;
}
}
}
if (core->print->cur < 0) {
core->print->cur = 0;
}
if (color) {
r_cons_strcat (BEGIN);
}
2017-05-03 00:54:31 +00:00
const char *cmd_visual = r_config_get (core->config, "cmd.visual");
if (cmd_visual && *cmd_visual) {
strncpy (bar, cmd_visual, sizeof (bar) - 1);
bar[10] = '.'; // chop cmdfmt
bar[11] = '.'; // chop cmdfmt
bar[12] = 0; // chop cmdfmt
2017-05-03 00:54:31 +00:00
} else {
strncpy (bar, printfmt[PIDX], sizeof (bar) - 1);
bar[sizeof (bar) - 1] = 0; // '\0'-terminate bar
bar[10] = '.'; // chop cmdfmt
bar[11] = '.'; // chop cmdfmt
bar[12] = 0; // chop cmdfmt
}
2015-02-06 18:24:26 +00:00
{
ut64 sz = r_io_size (core->io);
ut64 pa;
{
RIOSection *s = r_io_section_vget (core->io, core->offset);
pa = s ? core->offset - s->vaddr + s->paddr : core->offset;
}
2015-02-06 18:24:26 +00:00
if (sz == UT64_MAX) {
pcs[0] = 0;
} else {
if (!sz || pa > sz) {
2015-02-06 18:24:26 +00:00
pc = 0;
} else {
pc = (pa * 100) / sz;
2015-02-06 18:24:26 +00:00
}
sprintf (pcs, "%d%% ", pc);
}
}
2018-07-08 23:13:03 +00:00
{
char *title;
if (__ime) {
title = r_str_newf ("[0x%08"PFMT64x " + %d> * INSERT MODE *\n",
core->offset, core->print->cur);
2016-07-25 03:14:48 +00:00
} else {
2018-07-08 23:13:03 +00:00
if (core->print->cur_enabled) {
if (core->print->ocur == -1) {
title = r_str_newf ("[0x%08"PFMT64x " *0x%08"PFMT64x" ($$+0x%x)]> %s %s\n",
core->offset, core->offset + core->print->cur,
core->print->cur,
bar, pos);
} else {
title = r_str_newf ("[0x%08"PFMT64x " 0x%08"PFMT64x" [0x%x..0x%x] %d]> %s %s\n",
core->offset, core->offset + core->print->cur,
core->print->ocur, core->print->cur, R_ABS (core->print->cur - core->print->ocur) + 1,
bar, pos);
}
2018-07-08 23:13:03 +00:00
} else {
title = r_str_newf ("[0x%08"PFMT64x " %s%d %s]> %s %s\n",
core->offset, pcs, core->blocksize, filename, bar, pos);
}
2016-07-25 03:14:48 +00:00
}
const int tabsCount = core->visual.tabs? r_list_length (core->visual.tabs): 0;
if (tabsCount > 0) {
const int curTab = core->visual.tab;
r_cons_printf ("[");
int i;
for (i = 0; i < tabsCount; i++) {
if (i == curTab - 1) {
r_cons_printf ("%d", curTab);
} else {
r_cons_printf (".");
}
}
r_cons_printf ("]");
// r_cons_printf ("[tab:%d/%d]", core->visual.tab, tabsCount);
}
2018-07-08 23:13:03 +00:00
r_cons_print (title);
free (title);
2016-07-25 03:14:48 +00:00
}
if (color) {
r_cons_strcat (Color_RESET);
}
}
static int visual_responsive(RCore *core) {
2015-11-23 16:09:46 +00:00
int h, w = r_cons_get_size (&h);
if (r_config_get_i (core->config, "scr.responsive")) {
if (w < 110) {
2018-02-22 16:59:08 +00:00
r_config_set_i (core->config, "asm.cmt.right", 0);
} else {
2018-02-22 16:59:08 +00:00
r_config_set_i (core->config, "asm.cmt.right", 1);
}
if (w < 68) {
r_config_set_i (core->config, "hex.cols", w / 5.2);
} else {
r_config_set_i (core->config, "hex.cols", 16);
}
if (w < 25) {
r_config_set_i (core->config, "asm.offset", 0);
} else {
r_config_set_i (core->config, "asm.offset", 1);
}
if (w > 80) {
r_config_set_i (core->config, "asm.lines.width", 14);
r_config_set_i (core->config, "asm.lines.width", w - (w / 1.2));
2018-02-22 16:59:08 +00:00
r_config_set_i (core->config, "asm.cmt.col", w - (w / 2.5));
} else {
r_config_set_i (core->config, "asm.lines.width", 7);
}
if (w < 70) {
r_config_set_i (core->config, "asm.lines.width", 1);
r_config_set_i (core->config, "asm.bytes", 0);
} else {
r_config_set_i (core->config, "asm.bytes", 1);
}
}
2015-11-23 16:09:46 +00:00
return w;
}
2018-11-12 23:22:22 +00:00
static void scrollbar(RCore *core) {
int i, h, w = r_cons_get_size (&h);
if (w < 10 || h < 3) {
return;
}
ut64 from = 0;
ut64 to = UT64_MAX;
if (r_config_get_i (core->config, "cfg.debug")) {
from = r_num_math (core->num, "$D");
to = r_num_math (core->num, "$D+$DD");
} else if (r_config_get_i (core->config, "io.va")) {
from = r_num_math (core->num, "$S");
to = r_num_math (core->num, "$S+$SS");
} else {
to = r_num_math (core->num, "$s");
}
char *s = r_str_newf ("[0x%08"PFMT64x"]", from);
r_cons_gotoxy (w - strlen (s) + 1, 1);
r_cons_strcat (s);
free (s);
ut64 block = (to - from) / h;
bool hadMatch = false;
for (i = 0; i < h ; i++) {
// TODO: show short comment introduced by user in there
// TODO: use colors
r_cons_gotoxy (w, i + 2);
if (hadMatch) {
r_cons_printf ("|");
} else {
ut64 cur = from + (block * i);
ut64 nex = from + (block * (i + 1));
if (R_BETWEEN (cur, core->offset, nex)) {
r_cons_printf (Color_INVERT"|"Color_RESET);
hadMatch = true;
} else {
r_cons_printf ("|");
}
}
}
s = r_str_newf ("[0x%08"PFMT64x"]", to);
r_cons_gotoxy (w - strlen (s) + 1, h + 1);
r_cons_strcat (s);
free (s);
r_cons_flush ();
}
static void visual_refresh(RCore *core) {
static ut64 oseek = UT64_MAX;
const char *vi, *vcmd, *cmd_str;
if (!core) {
return;
}
r_print_set_cursor (core->print, core->print->cur_enabled, core->print->ocur, core->print->cur);
2015-11-23 16:09:46 +00:00
core->cons->blankline = true;
int w = visual_responsive (core);
if (autoblocksize) {
r_cons_gotoxy (0, 0);
2014-09-17 08:36:38 +00:00
} else {
r_cons_clear ();
}
2015-11-23 16:09:46 +00:00
r_cons_flush ();
r_cons_print_clear ();
int hex_cols = r_config_get_i (core->config, "hex.cols");
int split_w = 12 + 4 + hex_cols + (hex_cols * 3);
bool ce = core->print->cur_enabled;
vi = r_config_get (core->config, "cmd.cprompt");
bool vsplit = (vi && *vi);
if (vsplit) {
// XXX: slow
2015-09-14 10:35:38 +00:00
core->cons->blankline = false;
{
int hex_cols = r_config_get_i (core->config, "hex.cols");
int split_w = 12 + 4 + hex_cols + (hex_cols * 3);
if (split_w > w) {
// do not show column contents
} else {
r_cons_printf ("[cmd.cprompt=%s]\n", vi);
if (oseek != UT64_MAX) {
r_core_seek (core, oseek, 1);
}
r_core_cmd0 (core, vi);
r_cons_column (split_w);
if (!strncmp (vi, "p=", 2) && core->print->cur_enabled) {
oseek = core->offset;
core->print->cur_enabled = false;
r_core_seek (core, core->num->value, 1);
} else {
oseek = UT64_MAX;
}
}
}
r_cons_gotoxy (0, 0);
r_core_visual_title (core, color);
vi = r_config_get (core->config, "cmd.vprompt");
if (vi) {
r_core_cmd (core, vi, 0);
}
2012-11-30 15:12:54 +00:00
} else {
vi = r_config_get (core->config, "cmd.vprompt");
if (vi) {
r_core_cmd (core, vi, 0);
}
2012-11-30 15:12:54 +00:00
r_core_visual_title (core, color);
}
vcmd = r_config_get (core->config, "cmd.visual");
if (vcmd && *vcmd) {
// disable screen bounds when it's a user-defined command
// because it can cause some issues
core->print->screen_bounds = 0;
cmd_str = vcmd;
} else {
if (splitView) {
static char debugstr[512];
const char *pxw = NULL;
int h = r_num_get (core->num, "$r");
int size = (h * 16) / 2;
switch (core->printidx) {
case 1:
size = (h - 2) / 2;
pxw = "pd";
break;
default:
pxw = stackPrintCommand (core);
}
snprintf (debugstr, sizeof (debugstr),
"?0;%s %d @ %"PFMT64d";cl;"
"?1;%s %d @ %"PFMT64d";",
pxw, size, splitPtr,
pxw, size, core->offset);
core->print->screen_bounds = 1LL;
cmd_str = debugstr;
} else {
core->print->screen_bounds = 1LL;
cmd_str = (zoom ? "pz" : printfmt[PIDX]);
}
}
if (cmd_str && *cmd_str) {
if (vsplit) {
char *cmd_result;
cmd_result = r_core_cmd_str (core, cmd_str);
cmd_result = r_str_ansi_crop (cmd_result, 0, 0, split_w, -1);
r_cons_strcat (cmd_result);
} else {
r_core_cmd0 (core, cmd_str);
}
}
core->print->cur_enabled = ce;
#if 0
if (core->print->screen_bounds != 1LL) {
r_cons_printf ("[0x%08"PFMT64x "..0x%08"PFMT64x "]\n",
core->offset, core->print->screen_bounds);
}
#endif
blocksize = core->num->value? core->num->value: core->blocksize;
2012-11-30 15:12:54 +00:00
/* this is why there's flickering */
if (core->print->vflush) {
r_cons_visual_flush ();
} else {
r_cons_reset ();
}
2018-11-12 23:22:22 +00:00
core->cons->blankline = false;
2015-09-14 10:35:38 +00:00
core->cons->blankline = true;
core->curtab = 0; // which command are we focusing
//core->seltab = 0; // user selected tab
if (snowMode) {
printSnow (core);
}
2018-11-12 23:22:22 +00:00
if (r_config_get_i (core->config, "scr.scrollbar")) {
scrollbar (core);
}
}
2018-07-09 19:26:38 +00:00
static void visual_refresh_oneshot(RCore *core) {
r_core_task_enqueue_oneshot (core, (RCoreTaskOneShot) visual_refresh, core);
}
R_API void r_core_visual_disasm_up(RCore *core, int *cols) {
RAnalFunction *f = r_anal_get_fcn_in (core->anal, core->offset, R_ANAL_FCN_TYPE_NULL);
if (f && f->folded) {
*cols = core->offset - f->addr; // + f->size;
if (*cols < 1) {
*cols = 4;
}
} else {
*cols = prevopsz (core, core->offset);
}
}
R_API void r_core_visual_disasm_down(RCore *core, RAsmOp *op, int *cols) {
const bool midbb = r_config_get_i (core->config, "asm.bb.middle");
RAnalFunction *f = NULL;
f = r_anal_get_fcn_in (core->anal, core->offset, 0);
op->size = 1;
if (f && f->folded) {
*cols = core->offset - f->addr + r_anal_fcn_size (f);
} else {
r_asm_set_pc (core->assembler, core->offset);
*cols = r_asm_disassemble (core->assembler,
op, core->block, 32);
if (midbb) {
int skip_bytes_bb = 0;
if (midbb) {
skip_bytes_bb = r_core_bb_starts_in_middle (core, core->offset, *cols);
}
if (skip_bytes_bb && skip_bytes_bb < *cols) {
*cols = skip_bytes_bb;
}
}
}
if (*cols < 1) {
*cols = op->size > 1 ? op->size : 1;
}
}
R_API int r_core_visual(RCore *core, const char *input) {
const char *cmdprompt, *teefile;
ut64 scrseek;
int wheel, flags, ch;
bool skip;
char arg[2] = {
input[0], 0
};
splitPtr = UT64_MAX;
// printfmt = printfmtSingle; // restore columns mode on each run?
2016-06-02 01:19:31 +00:00
if (r_cons_get_size (&ch) < 1 || ch < 1) {
eprintf ("Cannot create Visual context. Use scr.fix_{columns|rows}\n");
return 0;
}
2013-08-26 23:12:58 +00:00
obs = core->blocksize;
2015-09-14 10:35:38 +00:00
//r_cons_set_cup (true);
2015-09-14 10:35:38 +00:00
core->vmode = false;
2016-10-17 11:11:46 +00:00
/* honor vim */
if (!strncmp (input, "im", 2)) {
char *cmd = r_str_newf ("!v%s", input);
int ret = r_core_cmd0 (core, cmd);
free (cmd);
return ret;
}
while (*input) {
int len = *input == 'd'? 2: 1;
if (!r_core_visual_cmd (core, input)) {
return 0;
2016-07-25 03:14:48 +00:00
}
input += len;
}
2015-09-14 10:35:38 +00:00
core->vmode = true;
// disable tee in cons
teefile = r_cons_singleton ()->teefile;
r_cons_singleton ()->teefile = "";
static char debugstr[512];
core->print->flags |= R_PRINT_FLAGS_ADDRMOD;
do {
2016-07-25 03:14:48 +00:00
dodo:
r_core_visual_tab_update (core);
// update the cursor when it's not visible anymore
skip = fix_cursor (core);
r_cons_show_cursor (false);
r_cons_set_raw (1);
const int ref = r_config_get_i (core->config, "dbg.slow");
if (printfmt == printfmtSingle && core->printidx == R_CORE_VISUAL_MODE_PDDBG) {
const int pxa = r_config_get_i (core->config, "stack.anotated"); // stack.anotated
const char *reg = r_config_get (core->config, "stack.reg");
2014-10-03 18:05:33 +00:00
const int size = r_config_get_i (core->config, "stack.size");
const int delta = r_config_get_i (core->config, "stack.delta");
2016-06-02 01:19:31 +00:00
const char *cmdvhex = r_config_get (core->config, "cmd.stack");
if (cmdvhex && *cmdvhex) {
snprintf (debugstr, sizeof (debugstr),
"?0;f tmp;ssr %s;%s;?1;%s;?1;"
"ss tmp;f-tmp;pd $r", reg, cmdvhex,
ref? "drr": "dr=");
debugstr[sizeof (debugstr) - 1] = 0;
} else {
const char *pxw = stackPrintCommand (core);
const char sign = (delta < 0)? '+': '-';
const int absdelta = R_ABS (delta);
2015-11-23 15:31:31 +00:00
snprintf (debugstr, sizeof (debugstr),
"diq;?0;f tmp;ssr %s;%s %d@$$%c%d;"
"?1;%s;"
"?1;ss tmp;f-tmp;afal;pd $r",
reg, pxa? "pxa": pxw, size, sign, absdelta,
ref? "drr": "dr=");
}
printfmt[2] = debugstr;
}
wheel = r_config_get_i (core->config, "scr.wheel");
2015-09-14 10:35:38 +00:00
r_cons_show_cursor (false);
2016-12-18 16:14:30 +00:00
if (wheel) {
r_cons_enable_mouse (true);
}
2018-07-09 19:26:38 +00:00
core->cons->event_resize = NULL; // avoid running old event with new data
core->cons->event_data = core;
2018-07-09 19:26:38 +00:00
core->cons->event_resize = (RConsEvent) visual_refresh_oneshot;
2013-08-26 23:12:58 +00:00
flags = core->print->flags;
color = r_config_get_i (core->config, "scr.color");
2016-12-18 16:14:30 +00:00
if (color) {
flags |= R_PRINT_FLAGS_COLOR;
}
debug = r_config_get_i (core->config, "cfg.debug");
2015-08-28 16:29:31 +00:00
flags |= R_PRINT_FLAGS_ADDRMOD | R_PRINT_FLAGS_HEADER;
r_print_set_flags (core->print, core->print->flags);
scrseek = r_num_math (core->num,
r_config_get (core->config, "scr.seek"));
if (scrseek != 0LL) {
r_core_seek (core, scrseek, 1);
}
if (debug) {
r_core_cmd (core, ".dr*", 0);
}
cmdprompt = r_config_get (core->config, "cmd.vprompt");
if (cmdprompt && *cmdprompt) {
r_core_cmd (core, cmdprompt, 0);
}
core->print->vflush = !skip;
visual_refresh (core);
2016-07-25 03:14:48 +00:00
if (insert_mode_enabled (core)) {
goto dodo;
}
if (!skip) {
if (snowMode) {
ch = r_cons_readchar_timeout (300);
if (ch == -1) {
skip = 1;
continue;
}
} else {
ch = r_cons_readchar ();
}
2017-08-26 01:49:54 +00:00
if (r_cons_is_breaked()) {
break;
}
r_core_visual_show_char (core, ch);
if (ch == -1 || ch == 4) {
break; // error or eof
}
arg[0] = ch;
arg[1] = 0;
}
} while (skip || r_core_visual_cmd (core, arg));
2015-09-14 10:35:38 +00:00
r_cons_enable_mouse (false);
2016-06-02 01:19:31 +00:00
if (color) {
r_cons_printf (Color_RESET);
2016-06-02 01:19:31 +00:00
}
r_config_set_i (core->config, "scr.color", color);
2015-09-14 10:35:38 +00:00
core->print->cur_enabled = false;
2016-06-02 01:19:31 +00:00
if (autoblocksize) {
r_core_block_size (core, obs);
2016-06-02 01:19:31 +00:00
}
r_cons_singleton ()->teefile = teefile;
2015-09-14 10:35:38 +00:00
r_cons_set_cup (false);
2014-09-17 08:36:38 +00:00
r_cons_clear00 ();
2015-09-14 10:35:38 +00:00
core->vmode = false;
core->cons->event_resize = NULL;
core->cons->event_data = NULL;
2015-09-14 10:35:38 +00:00
r_cons_show_cursor (true);
return 0;
}