radare2/libr
Nibble e55dbb5858 * r_bin
- More refactoring
  - Remove dupped code from Elf_(get_import_addr)
2009-07-08 02:06:27 +02:00
..
anal * Merge 2009-05-02 01:08:57 +02:00
asm * Fixed bug in r_bin_elf resolving imports 2009-06-11 14:28:35 +02:00
bin * r_bin 2009-07-08 02:06:27 +02:00
bininfo * More work on r_anal_reflines 2009-04-02 00:41:10 +02:00
bp * Fix breakpoint management issues in r_bp 2009-04-15 12:01:12 +02: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 * Sync local random changes with public repo 2009-05-20 12:41:04 +00:00
core * Initial import of r_db 2009-06-15 02:44:05 +00:00
crypto * Fix 'install' target (missing double '$') 2009-03-31 00:50:02 +00:00
db * Added r_db_delete() method in r_db api 2009-06-18 13:10:26 +00:00
debug * Minor syntax changes 2009-05-28 10:57:30 +00:00
diff * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
flags * Initial import of r_db 2009-06-15 02:44:05 +00:00
hash * Added r_hash_name_to_bits 2009-04-15 21:19:42 +00:00
include * r_bin 2009-07-07 18:01:49 +02:00
io * Merge 2009-05-02 01:08:57 +02: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 * Sync x86 code analysis fixups from r1 2009-04-16 20:49:18 +00:00
search * Fix rafind2 -x and make it less verbose 2009-05-01 01:25:28 +00:00
sign * Fix doc installation path 2009-03-27 11:28:25 +00:00
socket * Minor syntax changes 2009-05-28 10:57:30 +00:00
syscall * Fixed r_bin_pe segfault with .NET PE files 2009-06-12 19:33:31 +02: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_util 2009-07-05 16:49:47 +02:00
vapi * Added mdisassemble into r_asm 2009-04-27 00:34:54 +02:00
var * R_APIize r_asm and r_var 2009-04-07 00:26:41 +00:00
vm * Sync local random changes with public repo 2009-05-20 12:41:04 +00:00
config.h * rabin2 2009-05-17 12:01:02 +02:00
config.mk * rabin2 2009-05-17 12:01:02 +02: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 import of r_db 2009-06-15 02:44:05 +00:00
README * Add random documentation for dynamic language plugins 2009-03-10 01:49:24 +00:00
rules.mk * Added fixture for rules.mk library build 2009-04-15 00:29:01 +00:00
stripsyms.sh * Remove documentation in the uninstall target 2009-04-03 11:11:17 +00:00
TODO * Minor syntax changes 2009-05-28 10:57:30 +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