radare2/libr
pancake 9bc3812ae8 * Add r_bin/mz plugin (old EXE binaries)
* Fix parsing of cs:ip values in r_num_calc
2012-03-07 01:34:57 +01:00
..
anal * More fixes in the code analysis loops 2012-02-16 01:26:50 +01:00
asm * Fix static build (thanks @pof for reporting) 2012-02-16 18:10:06 +01:00
bin * Add r_bin/mz plugin (old EXE binaries) 2012-03-07 01:34:57 +01:00
bp * More split of core/cmd.c 2012-02-27 03:07:32 +01:00
cmd * Split libr/core/cmd.c 2012-02-27 02:40:27 +01:00
config * Fix some warnings reported by the farm 2012-02-15 00:17:31 +01:00
cons * Fix w32 build 2012-02-14 18:10:01 +01:00
core * Add r_bin/mz plugin (old EXE binaries) 2012-03-07 01:34:57 +01:00
crypto * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
db * Apply @w_levin patch fixing memory leaks 2011-12-13 14:00:22 +01:00
debug * Use r_list_foreach[_safe] where appropriate. 2012-02-14 18:19:16 +01:00
diff * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
egg * apply rudi_s patch fixing multiple bugs 2012-02-12 23:45:04 +01:00
flags * rudi_s: Add r_list_foreach_safe() which is safe when deleting elements 2012-02-14 18:10:52 +01:00
fs * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
hash * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
include * Add r_bin/mz plugin (old EXE binaries) 2012-03-07 01:34:57 +01:00
io * Fix lot of regressions in command parsing 2012-02-27 02:02:44 +01:00
lang * rudi_s: Add r_list_foreach_safe() which is safe when deleting elements 2012-02-14 18:10:52 +01:00
lib * rudi_s: Add r_list_foreach_safe() which is safe when deleting elements 2012-02-14 18:10:52 +01:00
line * Added 'om' command to create, destroy and list IO maps 2012-02-07 01:51:56 +01:00
magic * apply rudi_s patch fixing multiple bugs 2012-02-12 23:45:04 +01:00
parse * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
print * Fix pq 2012-02-28 02:03:49 +01:00
reg * Fix build 2012-02-01 11:49:46 +01:00
search * Fix w32 build 2012-02-14 18:10:01 +01:00
sign * Apply patch from @w_levin fixing lot of memory leaks - Thanks! 2011-12-16 16:33:06 +01:00
socket * Fix make install for hud (thanks l0gic) 2012-02-01 02:22:43 +01:00
syscall * Fix sdbpath for long paths 2011-11-01 12:59:07 +01:00
sysproxy
th * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
util * Add r_bin/mz plugin (old EXE binaries) 2012-03-07 01:34:57 +01:00
vm * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
config.h.head
config.h.tail
config.mk.head * Fix lot of regressions in command parsing 2012-02-27 02:02:44 +01:00
config.mk.tail * Fix lot of regressions in command parsing 2012-02-27 02:02:44 +01:00
depgraph.pl
libr.pc.acr
Makefile * Fix make install for sflib 2011-12-01 20:17:40 +01:00
README
rules.mk * Fix --without-ewf 2012-02-18 01:49:59 +01:00
stripsyms.sh
symgraph.pl
waitfordeps.sh * Fix build in OSX 2011-06-20 23:53:38 +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