radare2/libr
pancake 36771ea713 * rasm2 -h does not list plugins (use -L)
* Fix div0 bug in r_bp_getbytes()
* Show 'enabled' / 'disabled' attribute of breakpoints
* Implement dbg_read and dbg_write callbacks for r_debug
  - Added r_debug_set_io() to setup the IO for r_debug
* 'db' command can now add and remove breakpoints
  - Not yet written into memory. only managed
2009-04-12 23:10:22 +00:00
..
anal * Initial dummy implementation of r_bp 2009-04-11 21:22:20 +00:00
asm * rasm2 -h does not list plugins (use -L) 2009-04-12 23:10:22 +00:00
bin * r_asm 2009-04-11 18:49:09 +02:00
bininfo * More work on r_anal_reflines 2009-04-02 00:41:10 +02:00
bp * rasm2 -h does not list plugins (use -L) 2009-04-12 23:10:22 +00:00
cmd * Fix lot of warning messages 2009-03-06 00:00:41 +00:00
config * Add rasm2 -L flag to list loaded asm plugins 2009-04-11 21:24:37 +00:00
cons * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
core * rasm2 -h does not list plugins (use -L) 2009-04-12 23:10:22 +00:00
crypto * Fix 'install' target (missing double '$') 2009-03-31 00:50:02 +00:00
debug * rasm2 -h does not list plugins (use -L) 2009-04-12 23:10:22 +00:00
diff * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
flags * Initial dummy implementation of r_bp 2009-04-11 21:22:20 +00:00
hash * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
include * rasm2 -h does not list plugins (use -L) 2009-04-12 23:10:22 +00:00
io * R_APIize r_asm and r_var 2009-04-07 00:26:41 +00:00
lang * R_APIize r_asm and r_var 2009-04-07 00:26:41 +00:00
lib * Implement r_core_visual_trackflags 2009-04-02 00:44:24 +00:00
line * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
macro * Fix build (fix r_core_cmd_foreach signature) 2009-04-02 12:15:04 +02:00
meta * Added dummy xrefs 2009-02-16 11:24:45 +01:00
parse * r_bin 2009-03-08 18:29:21 +01:00
print * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
range * Added dummy xrefs 2009-02-16 11:24:45 +01:00
reg * Add constructor/destructor for r_anal and r_sign 2009-03-14 11:39:37 +00:00
search * Another 700-LOC train-based commit 2009-04-02 10:23:32 +00:00
sign * Fix doc installation path 2009-03-27 11:28:25 +00:00
socket * Add non-block socket support for Windows(R) platform 2009-03-09 16:54:57 +01:00
syscall * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
trace * Major refactoring work done for r_trace 2009-03-13 10:39:54 +00:00
util * r_asm 2009-04-11 18:49:09 +02:00
vapi * set STATIC DEBUG to 0 2009-03-31 10:55:26 +00:00
var * R_APIize r_asm and r_var 2009-04-07 00:26:41 +00:00
vm * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
config.h * Initial dummy implementation of r_bp 2009-04-11 21:22:20 +00:00
config.mk * Huge build system refactoring 2009-04-01 00:28:13 +00:00
depgraph.pl * fix r_asm and r_anal deps 2009-03-04 12:39:51 +00:00
libr.pc.acr * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
Makefile * Initial dummy implementation of r_bp 2009-04-11 21:22:20 +00:00
README * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
rules.mk * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
stripsyms.sh * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
TODO * Another 700-LOC train-based commit 2009-04-02 10:23:32 +00:00

  =========================
  libr - codename 'radare2'
  =========================

LibR is the refactoring of the old radare1 core in a set of libraries
defining the APIs of radare2.

The library 'libr' is composed by different modules, each one implementing
working modules of radare, so then, we get a complete set of libraries for
analyzing code, disassembling bytes, dumping bytes, plugin handling, etc..

The 'R' is for refactoring, reversing, radare, ...

Each module has its own test directory (t/) which contains simple applications
using the upper directory code and linking against the direct dependencies.

Each mode can own a plugin directory (p/) that contains extensions for the
parent library module (libr/asm/p/asm_x86).

There's also the possibility to define a list of static plugins to be built
inside the parent module. This way you can avoid some flexibility to ease
portability and build single binaries with some embedded features.

The library can be used from 'pkg-config', this way you can easy build an
application or plugin that links against libr or just few elements of it.

This enables a fine-grained test level for checking all functionalities in
one shot and give us the opportunity to write radare2 as test programs.

  --pancake