mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-13 16:18:33 +00:00
54bdfb22bd
- Fixes ruby warnings - Follow java syntax conventions - Helped to identify and fix bugs in many vapis - Sync swig examples - Add test-r_core.rb (ruby test for RCore) * Some work in r_cons, some refactoring and cleanup - scr.html is now working again - w32 cons support should work now - Rename r_cons_get_columns -> r_cons_get_size() - But it needs more work * Typedef all r_range, r_parse and r_anal structs - Add missing r_lib.pc in configure.acr * 'make' clean now removes the libr* in swig/${LANG}/
244 lines
5.4 KiB
C
244 lines
5.4 KiB
C
/* radare - LGPL - Copyright 2009-2010 pancake<nopcode.org> */
|
|
|
|
#include <r_bp.h>
|
|
#include "../config.h"
|
|
|
|
static struct r_bp_handle_t *bp_static_plugins[] =
|
|
{ R_BP_STATIC_PLUGINS };
|
|
|
|
R_API struct r_bp_t *r_bp_init(struct r_bp_t *bp)
|
|
{
|
|
int i;
|
|
if (bp) {
|
|
bp->cur = NULL;
|
|
bp->nbps = 0;
|
|
bp->trace_bp = 0;
|
|
bp->stepcont = R_BP_CONT_NORMAL;
|
|
bp->breakpoint = NULL;
|
|
INIT_LIST_HEAD(&bp->bps);
|
|
INIT_LIST_HEAD(&bp->plugins);
|
|
for (i=0;bp_static_plugins[i];i++)
|
|
r_bp_handle_add (bp, bp_static_plugins[i]);
|
|
memset (&bp->iob, 0, sizeof(bp->iob));
|
|
}
|
|
return bp;
|
|
}
|
|
|
|
R_API struct r_bp_t *r_bp_new() {
|
|
return r_bp_init (MALLOC_STRUCT (struct r_bp_t));
|
|
}
|
|
|
|
R_API struct r_bp_t *r_bp_free(struct r_bp_t *bp)
|
|
{
|
|
/* XXX : properly destroy bp list */
|
|
free (bp);
|
|
return NULL;
|
|
}
|
|
|
|
R_API int r_bp_get_bytes(struct r_bp_t *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, len);
|
|
i += b->length;
|
|
}
|
|
return b->length;
|
|
}
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
R_API RBreakpointItem *r_bp_at_addr(RBreakpoint *bp, ut64 addr, int rwx)
|
|
{
|
|
struct list_head *pos;
|
|
RBreakpointItem *b;
|
|
|
|
eprintf ("===ataddr=== 0x%08llx\n", addr);
|
|
list_for_each(pos, &bp->bps) {
|
|
b = list_entry(pos, struct r_bp_item_t, list);
|
|
eprintf ("---ataddr--- 0x%08llx %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(struct r_bp_t *bp, ut64 addr, int set)
|
|
{
|
|
struct list_head *pos;
|
|
struct r_bp_item_t *b;
|
|
list_for_each(pos, &bp->bps) {
|
|
b = list_entry(pos, struct r_bp_item_t, list);
|
|
if (addr >= b->addr && addr <= b->addr+b->size) {
|
|
b->enabled = set;
|
|
return b;
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
R_API int r_bp_stepy_continuation(struct r_bp_t *bp)
|
|
{
|
|
// TODO: implement
|
|
return bp->stepcont;
|
|
}
|
|
|
|
R_API int r_bp_add_cond(struct r_bp_t *bp, const char *cond)
|
|
{
|
|
// TODO: implement contitional breakpoints
|
|
bp->stepcont = R_TRUE;
|
|
return 0;
|
|
}
|
|
|
|
R_API int r_bp_del_cond(struct r_bp_t *bp, int idx)
|
|
{
|
|
// add contitional
|
|
bp->stepcont = R_FALSE;
|
|
return R_TRUE;
|
|
}
|
|
|
|
/* TODO: detect overlapping of breakpoints */
|
|
static struct r_bp_item_t *r_bp_add(struct r_bp_t *bp, const ut8 *obytes, ut64 addr, int size, int hw, int rwx)
|
|
{
|
|
int ret;
|
|
struct r_bp_item_t *b;
|
|
if (r_bp_at_addr (bp, addr, rwx)) {
|
|
eprintf ("Breakpoint already set at this address.\n");
|
|
return NULL;
|
|
}
|
|
b = MALLOC_STRUCT (struct r_bp_item_t);
|
|
b->pids[0] = 0; /* for any pid */
|
|
b->addr = addr;
|
|
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++;
|
|
list_add_tail (&(b->list), &bp->bps);
|
|
return b;
|
|
}
|
|
|
|
R_API int r_bp_add_fault(struct r_bp_t *bp, ut64 addr, int size, int rwx)
|
|
{
|
|
// TODO
|
|
return R_FALSE;
|
|
}
|
|
|
|
R_API struct r_bp_item_t *r_bp_add_sw(struct r_bp_t *bp, ut64 addr, int size, int rwx)
|
|
{
|
|
struct r_bp_item_t *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(struct r_bp_t *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(struct r_bp_t *bp, ut64 addr)
|
|
{
|
|
struct list_head *pos;
|
|
struct r_bp_item_t *b;
|
|
list_for_each(pos, &bp->bps) {
|
|
b = list_entry(pos, struct r_bp_item_t, list);
|
|
if (b->addr == addr) {
|
|
list_del (&b->list);
|
|
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(struct r_bp_t *bp, ut64 addr, int set)
|
|
{
|
|
struct list_head *pos;
|
|
struct r_bp_item_t *b;
|
|
list_for_each(pos, &bp->bps) {
|
|
b = list_entry(pos, struct r_bp_item_t, list);
|
|
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(struct r_bp_t *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(struct r_bp_t *bp, int rad)
|
|
{
|
|
int n = 0;
|
|
struct r_bp_item_t *b;
|
|
struct list_head *pos;
|
|
|
|
eprintf ("Breakpoint list:\n");
|
|
list_for_each(pos, &bp->bps) {
|
|
b = list_entry(pos, struct r_bp_item_t, list);
|
|
printf ("0x%08llx - 0x%08llx %d %c%c%c %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");
|
|
/* TODO: Show list of pids and trace points, conditionals */
|
|
n++;
|
|
}
|
|
return n;
|
|
}
|