radare2/libr
pancake 8a3c845627 * Implement @:blocksize syntax for commands
* Some reordering of the TODO
2010-08-10 12:34:10 +02:00
..
anal * Implement @:blocksize syntax for commands 2010-08-10 12:34:10 +02:00
asm * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
bin * Analyze 'svc' opcode in ARM as software interrupt 2010-08-09 23:38:32 +02:00
bp * Initial implementation of callback commands for r_bp 2010-07-13 01:20:57 +02:00
cmd * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
config * r2 -n does not load rabin2 information 2010-06-30 02:30:07 +02:00
cons * Minor fixups in grep-cut 2010-08-03 13:30:58 +02:00
core * Implement @:blocksize syntax for commands 2010-08-10 12:34:10 +02:00
crypto * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
db * Fix 'bx lr' and 'ldr pc,[pc,#]' code analysis for arm 2010-06-13 11:59:17 +02:00
debug * Merge old w32 build fix 2010-08-08 19:03:51 +02:00
diff * Fix some bugs reported by edu in the signature module 2010-07-21 11:12:24 +02:00
flags * Oops fix build 2010-07-21 00:21:20 +02:00
hash * Fix build 2010-07-23 12:19:39 +02:00
include * Merge old w32 build fix 2010-08-08 19:03:51 +02:00
io * Merge old w32 build fix 2010-08-08 19:03:51 +02:00
lang * Rename {r_*_handle_t, R*Handle} to {r_*_plugin_t, R*Plugin} 2010-05-26 01:42:22 +02:00
lib * Fix build of binr/ 2010-06-15 00:46:18 +02:00
line * Check 'hg' before starting to build.sh 2010-07-13 01:00:36 +02:00
meta * Remove deprecated documentation 2010-07-02 02:01:51 +02:00
parse * Fix bug in r_parse_filter (thx edu!) 2010-08-02 19:34:23 +02:00
pkgconfig * Build all pkgconfig files (fixes valaswig stuff) 2010-01-25 11:54:25 +01:00
print * Display cursor information in visual prompt when enabled 2010-07-16 11:28:16 +02:00
reg * Fix debug regs, memory read in w32 debugger 2010-06-28 14:12:34 +02:00
search * Merge old w32 build fix 2010-08-08 19:03:51 +02:00
sign * Fix build 2010-07-23 12:19:39 +02:00
socket * Merge old w32 build fix 2010-08-08 19:03:51 +02:00
syscall * Analyze 'svc' opcode in ARM as software interrupt 2010-08-09 23:38:32 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
util * Implemented r_lits_sort() and r_list_add_sorted() 2010-07-22 01:14:13 +02:00
vm * Added asm.linescall=false (default) 2010-06-17 02:22:50 +02:00
config.h.head * Add support to ARM for the debugger 2010-02-03 14:34:00 +01:00
config.h.tail * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.head * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.tail * Add openbsd|netbsd|freebsd to the list of automatic ostypes 2010-07-03 03:35:26 +02:00
depgraph.pl * Export 'srwx' perms of sections in rabin2 -rS 2010-04-08 12:29:47 +02:00
libr.pc.acr * Added r_reg pkgconfig file 2009-09-20 00:28:06 +02:00
Makefile * r_bin 2010-07-29 16:04:18 +02:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * More fixes on build system 2010-06-15 14:10:42 +02:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
TODO * Implement @:blocksize syntax for commands 2010-08-10 12:34:10 +02: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