radare2/libr
pancake a876acb60e Fixes for sha384 and crc16/32 in RHash. thx bus1ng 2012-10-22 11:06:03 +02:00
..
anal Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
asm Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
bin Fix ELF loader and segfault in disasm->hexdump 2012-10-17 12:13:23 +02:00
bp Better paralelization of build system 2012-10-04 01:20:00 +02:00
cmd More makefile simplifications (-56LOC) 2012-10-03 16:32:32 +02:00
config Simplify the build system 2012-10-03 14:31:35 +02:00
cons Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
core Add sandbox-kill and disable reopen in sandbox mode 2012-10-22 10:43:10 +02:00
crypto Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
db Better paralelization of build system 2012-10-04 01:20:00 +02:00
debug Simplify the build system 2012-10-03 14:31:35 +02:00
diff Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
egg Better paralelization of build system 2012-10-04 01:20:00 +02:00
flags Simplify the build system 2012-10-03 14:31:35 +02:00
fs Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
hash Fixes for sha384 and crc16/32 in RHash. thx bus1ng 2012-10-22 11:06:03 +02:00
include Fixes for sha384 and crc16/32 in RHash. thx bus1ng 2012-10-22 11:06:03 +02:00
io Add sandbox-kill and disable reopen in sandbox mode 2012-10-22 10:43:10 +02:00
lang Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
lib Simplify the build system 2012-10-03 14:31:35 +02:00
magic Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
parse Simplify the build system 2012-10-03 14:31:35 +02:00
print Fix ELF loader and segfault in disasm->hexdump 2012-10-17 12:13:23 +02:00
reg Simplify the build system 2012-10-03 14:31:35 +02:00
search Simplify the build system 2012-10-03 14:31:35 +02:00
sign Simplify the build system 2012-10-03 14:31:35 +02:00
socket Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
syscall Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th Simplify the build system 2012-10-03 14:31:35 +02:00
util Add sandbox-kill and disable reopen in sandbox mode 2012-10-22 10:43:10 +02:00
vm Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
Makefile Add cfg.sandbox functionality 2012-10-20 00:31:18 +02:00
README * Clean TODO files 2010-05-21 01:46:26 +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 Simplify the build system 2012-10-03 14:31:35 +02:00
config.mk.tail Fix warnings and refactor 'p' subcommands (pw -> pxw ..) 2012-09-27 19:35:19 +02:00
depgraph.pl * Export 'srwx' perms of sections in rabin2 -rS 2010-04-08 12:29:47 +02:00
libr.pc.acr * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
rules.mk More build fixes 2012-10-11 13:09:33 +02:00
stripsyms.sh Honor make -s and lot of build cleanups 2012-08-14 15:44:17 +02:00
symgraph.pl * Do not show color prompt in windows 2010-09-24 19:04:33 +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