radare2/libr/bp
pancake 8924841072 * Some more work on r_core_sysenv*
- fix api, but still not using BLOCK or so
* Fix help for ??? and !?
* Upgrade swig/configure.acr to 0.6.9
2011-02-04 11:30:08 +01:00
..
p * Add bp_mips and bp_ppc plugins for r_bp 2010-06-30 01:19:03 +02:00
bp.c * Some more work on r_core_sysenv* 2011-02-04 11:30:08 +01:00
io.c * Initial draft implementation of hardware breakpoints 2010-09-24 05:41:54 +02:00
Makefile * Rename "handler" to "plugin" 2010-05-26 18:25:35 +02:00
parser.c * Major unfinished refactoring for r_debug and r_bp 2009-09-14 00:37:28 +02:00
parser.h * Major unfinished refactoring for r_debug and r_bp 2009-09-14 00:37:28 +02:00
plugin.c * Use RList in r_bp 2010-06-30 01:13:09 +02:00
README * Initial working implementation of software breakpoints 2010-01-21 02:38:52 +01:00
traptrace.c * Use RList in r_bp 2010-06-30 01:13:09 +02:00
watch.c * Fix segfault in r_bp_get_bytes when used in loops 2010-03-03 13:34:38 +01:00

libr.bp
=======

Breakpoint API

- Manages list of defined breakpoints
- Determines if a stop is caused by a breakpoint
- Owns a database of multiple types of breakpoints
  - arch and os based ones
  - Supports endianness
  - r_bp_get should return a buffer and a length
- Manages conditional breakpoints expressions
- Types of breakpoints
  - software (traps)
  - conditional traps
  - hardware (registers)
  - mmu (changes page protections)
- All non-native operations are translated into evaluable expressions
  by other modules. Like changing register values and so on
  - Do we should place some callbacks for this kind of ops?
- We need to make this work also remotely
  - r_debug can handle the remoteness of the debugger backend.
  - r_io can do it also
- Watchpoints and its exception should be handled here
  - watchpoint expressions should be handled by using the r_num stuff
- Hardware breakpoints require access to registers, or pid/tid
  this is... the debugger backend. For those, the debugger backend
  should fill a callback to manage them.
  - if the debugger breakpoint handler does not manages the breakpoint
    type, r_bp must do it with r_io storing and loading bp bytes.

* Do we need the plugin API to define new breakpoints and so on?