radare2/libr
Nibble 68ec0834b4 * r_bin_pe
- Fix bug in parsing imports
2010-01-16 18:33:40 +01:00
..
anal * Many bug fixes for the build. Oops 2010-01-15 01:56:43 +01:00
asm * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
bin * r_bin_pe 2010-01-16 18:33:40 +01:00
bininfo * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
bp * Fix segfault in r_bp when no bio defined 2010-01-11 00:22:39 +01:00
cmd * Apply whats patch refactoring r_core_cmd and _subst 2009-12-31 01:27:03 +01:00
config * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
cons * Fix signature of r_cons_user_fgets 2010-01-09 02:05:04 +01:00
core * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
crypto * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
db * Many bug fixes for the build. Oops 2010-01-15 01:56:43 +01:00
debug * Fix build for linux-mips 2010-01-15 16:24:06 -05:00
diff * Fix build of libr/vapi/t and some bugs in vapis 2010-01-07 22:26:03 +01:00
flags * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
hash * Fix build of libr/vapi/t and some bugs in vapis 2010-01-07 22:26:03 +01:00
include * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
io * Fix build for linux-mips 2010-01-15 16:24:06 -05:00
lang * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
lib * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
line * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
macro * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
meta * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
parse * Fix build for linux-mips 2010-01-15 16:24:06 -05:00
pkgconfig * Initial vapi for r_db 2009-07-21 22:59:34 +00:00
print * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
range * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
reg * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
search * Many build fixes for mingw32 2010-01-15 01:32:28 +01:00
sign * Fix build 2009-11-23 17:49:40 +01:00
socket * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
syscall * Major refactoring patch 2009-09-24 12:29:05 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
trace * Some code cleanup and add some more checks on r_bin (-15LOC) 2009-07-16 14:17:32 +02:00
util * Many more fixes for the mingw32 port 2010-01-15 13:02:54 +01:00
vapi * Enhace the output of 'make sloc' 2010-01-14 23:31:39 +01:00
var * Added 'mk/stat' tools 2009-09-17 11:48:36 +02:00
vm * Fix build 2009-11-23 17:49:40 +01:00
Makefile * Fix build for linux-mips 2010-01-15 16:24:06 -05:00
README * Initial working implementation of r_parse_assemble() 2009-08-14 02:19:54 +00:00
TODO * Some malloc checks in _new() class constructors 2009-09-09 00:35:00 +00:00
config.h.head * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +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 * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
depgraph.pl * Single valadoc by default 2009-09-21 15:39:10 +02:00
libr.pc.acr * Added r_reg pkgconfig file 2009-09-20 00:28:06 +02:00
rules.mk * Added w32dist makefile target to generate a distributable zip 2010-01-15 17:02:04 +01:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00

README

                              ___  ___
  =========================  |  _\/_  \
  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