radare2/libr/bp/bp.c
pancake 773c2549ad * Initial implementation of callback commands for r_bp
- Added 'dbc' command to configure them
* Check breakpoint stop everywhere
2010-07-13 01:20:57 +02:00

224 lines
5.3 KiB
C

/* radare - LGPL - Copyright 2009-2010 pancake<nopcode.org> */
#include <r_bp.h>
#include "../config.h"
static struct r_bp_plugin_t *bp_static_plugins[] =
{ R_BP_STATIC_PLUGINS };
R_API RBreakpoint *r_bp_new() {
RBreakpointPlugin *static_plugin;
RBreakpoint *bp = R_NEW (RBreakpoint);
if (bp) {
int i;
bp->cur = NULL;
bp->nbps = 0;
bp->trace_bp = R_FALSE;
bp->stepcont = R_BP_CONT_NORMAL;
bp->breakpoint = NULL;
bp->endian = 0; // little by default
bp->traces = r_bp_traptrace_new ();
bp->printf = (PrintfCallback)printf;
bp->bps = r_list_new ();
bp->plugins = r_list_new ();
for (i=0; bp_static_plugins[i]; i++) {
static_plugin = R_NEW (RBreakpointPlugin);
memcpy (static_plugin, bp_static_plugins[i], sizeof (RBreakpointPlugin));
r_bp_plugin_add (bp, static_plugin);
}
memset (&bp->iob, 0, sizeof (bp->iob));
}
return bp;
}
R_API RBreakpoint *r_bp_free(RBreakpoint *bp) {
/* XXX : properly destroy bp list */
free (bp);
return NULL;
}
R_API int r_bp_get_bytes(RBreakpoint *bp, ut8 *buf, int len, int endian, int idx) {
int i;
struct r_bp_arch_t *b;
if (bp->cur) {
/* XXX: can be buggy huh : infinite loop is possible */
for (i=0; 1; i++) {
b = &bp->cur->bps[i%bp->cur->nbps];
if (b->endian == endian && idx%(i+1)==0) {
for (i=0; i<len;) {
memcpy (buf+i, b->bytes, b->length);
i += b->length;
}
return b->length;
}
}
}
return 0;
}
R_API RBreakpointItem *r_bp_get(RBreakpoint *bp, ut64 addr) {
RListIter *iter;
RBreakpointItem *b;
r_list_foreach(bp->bps, iter, b)
if (b->addr == addr)
return b;
return NULL;
}
R_API RBreakpointItem *r_bp_at_addr(RBreakpoint *bp, ut64 addr, int rwx) {
RListIter *iter;
RBreakpointItem *b;
r_list_foreach(bp->bps, iter, b) {
// eprintf ("---ataddr--- 0x%08"PFMT64x" %d %d\n", b->addr, b->size, b->recoil);
if (addr>=b->addr && addr<=b->addr+b->size && rwx&b->rwx)
return b;
}
return NULL;
}
R_API struct r_bp_item_t *r_bp_enable(RBreakpoint *bp, ut64 addr, int set) {
RListIter *iter;
RBreakpointItem *b;
r_list_foreach(bp->bps, iter, b) {
if (addr >= b->addr && addr <= b->addr+b->size) {
b->enabled = set;
return b;
}
}
return NULL;
}
R_API int r_bp_stepy_continuation(RBreakpoint *bp) {
// TODO: implement
return bp->stepcont;
}
/* TODO: detect overlapping of breakpoints */
static RBreakpointItem *r_bp_add(RBreakpoint *bp, const ut8 *obytes, ut64 addr, int size, int hw, int rwx) {
int ret;
RBreakpointItem *b;
if (r_bp_at_addr (bp, addr, rwx)) {
eprintf ("Breakpoint already set at this address.\n");
return NULL;
}
b = R_NEW (struct r_bp_item_t);
b->pids[0] = 0; /* for any pid */
b->addr = addr;
b->data = NULL;
b->size = size;
b->enabled = R_TRUE;
b->hw = hw;
b->trace = 0;
if (hw) {
b->bbytes = NULL;
b->obytes = NULL;
b->recoil = 0;
} else {
b->bbytes = malloc (size+16);
if (obytes) {
b->obytes = malloc (size);
memcpy (b->obytes, obytes, size);
} else b->obytes = NULL;
/* XXX: endian .. use bp->endian */
// XXX for hw breakpoints there are no bytes
ret = r_bp_get_bytes (bp, b->bbytes, size, 0, 0);
if (ret == 0) {
eprintf ("Cannot get breakpoint bytes. No r_bp_use()?\n");
free (b->obytes);
free (b->bbytes);
free (b);
return NULL;
}
b->recoil = ret;
}
bp->nbps++;
r_list_append (bp->bps, b);
return b;
}
R_API int r_bp_add_fault(RBreakpoint *bp, ut64 addr, int size, int rwx) {
// TODO
return R_FALSE;
}
R_API struct r_bp_item_t *r_bp_add_sw(RBreakpoint *bp, ut64 addr, int size, int rwx) {
RBreakpointItem *item;
ut8 *bytes;
if (size<1)
size = 1;
bytes = malloc (size);
if (bytes == NULL)
return NULL;
if (bp->iob.read_at)
bp->iob.read_at (bp->iob.io, addr, bytes, size);
else memset (bytes, 0, size);
item = r_bp_add (bp, bytes, addr, size, R_BP_TYPE_SW, rwx);
free (bytes);
return item;
}
R_API struct r_bp_item_t *r_bp_add_hw(RBreakpoint *bp, ut64 addr, int size, int rwx) {
return r_bp_add (bp, NULL, addr, size, R_BP_TYPE_HW, rwx);
}
R_API int r_bp_del(RBreakpoint *bp, ut64 addr) {
RListIter *iter;
RBreakpointItem *b;
r_list_foreach (bp->bps, iter, b) {
if (b->addr == addr) {
r_list_delete (bp->bps, iter);
return R_TRUE;
}
}
return R_FALSE;
}
// TODO: rename or drop?
// TODO: use a r_bp_item instead of address
// TODO: we can just drop it.. its just b->trace = R_TRUE or so..
R_API int r_bp_set_trace(RBreakpoint *bp, ut64 addr, int set) {
RListIter *iter;
RBreakpointItem *b;
r_list_foreach (bp->bps, iter, b) {
if (addr >= b->addr && addr <= b->addr+b->size) {
b->trace = set;
return R_TRUE;
}
}
return R_FALSE;
}
#if 0
// TODO: rename or remove
R_API int r_bp_set_trace_bp(RBreakpoint *bp, ut64 addr, int set)
{
bp->trace_all = set;
bp->trace_bp = addr;
return R_TRUE;
}
#endif
// TODO: deprecate
R_API int r_bp_list(RBreakpoint *bp, int rad) {
int n = 0;
RBreakpointItem *b;
RListIter *iter;
eprintf ("Breakpoint list:\n");
r_list_foreach (bp->bps, iter, b) {
bp->printf ("0x%08"PFMT64x" - 0x%08"PFMT64x" %d %c%c%c %s %s %s \"%s\"\n",
b->addr, b->addr+b->size, b->size,
(b->rwx & R_BP_PROT_READ)?'r':'-',
(b->rwx & R_BP_PROT_WRITE)?'w':'-',
(b->rwx & R_BP_PROT_EXEC)?'x':'-',
b->hw?"hw":"sw",
b->trace?"trace":"break",
b->enabled?"enabled":"disabled",
b->data);
/* TODO: Show list of pids and trace points, conditionals */
n++;
}
return n;
}