radare2/libr
pancake 31a11600c5 * Theorically fix the r_magic dirty sanchez bug
* Fix RIO seek undo with io.va
* Warn if file size != region size in dml
2011-11-16 10:06:34 +01:00
..
anal * Fix dup2 for w32 2011-11-16 00:44:18 +01:00
asm * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
bin * Fix double-free segfault in elf parser on netbsd binaries. 2011-11-15 20:58:08 +01:00
bp * brainfuck debugger is finally usable 2011-10-09 04:15:32 +02:00
cmd * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
config * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
cons * Fix build on w32 2011-11-16 02:06:46 +01:00
core * Theorically fix the r_magic dirty sanchez bug 2011-11-16 10:06:34 +01:00
crypto * Fix ~40 off-by-one strncpy's 2011-09-18 20:41:36 +02:00
db * Fix build (missing R_ANAL_BB_HAS_OPS somewhere) 2011-11-15 14:30:52 +01:00
debug * Fix various memory leaks (thanks Ender for reporting!) 2011-11-11 17:14:09 +01:00
diff * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
egg * Fix dup2 for w32 2011-11-16 00:44:18 +01:00
flags * Add initial support for plan9 binaries 2011-11-12 04:51:45 +01:00
fs * Add missing fs/types.h 2011-11-14 00:21:25 +01:00
hash * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
include * Fix dup2 for w32 2011-11-16 00:44:18 +01:00
io * Theorically fix the r_magic dirty sanchez bug 2011-11-16 10:06:34 +01:00
lang * Add URL for agc graph 2011-11-01 04:37:13 +01:00
lib * Fix all dangerous bugs reported by llvm-analyzer 2011-11-14 22:46:23 +01:00
line * Add URL for agc graph 2011-11-01 04:37:13 +01:00
magic * Theorically fix the r_magic dirty sanchez bug 2011-11-16 10:06:34 +01:00
parse * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
print * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
reg * Fix various memory leaks (thanks Ender for reporting!) 2011-11-11 17:14:09 +01:00
search * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
sign * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
socket * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +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 * Theorically fix the r_magic dirty sanchez bug 2011-11-16 10:06:34 +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
config.mk.tail * Import Glyn Kennington's patch for the build system 2011-11-03 11:49:50 +01:00
depgraph.pl
libr.pc.acr
Makefile * Use memmove instead of strcpy in overlapped dietline buffers 2011-10-24 17:16:54 +02:00
README
rules.mk * Fix some t-*.sh scripts (rollback) 2011-11-13 04:08:08 +01:00
stripsyms.sh
symgraph.pl
waitfordeps.sh

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