radare2/libr
pancake daa5d0fd38 * Implement ldmia/stmia in armthumb_assemble
- added also: yield, wfe, wfi, sev, bkpt
  - fix ldr{bh} and str{bh}
* Initial implementation of the arm-thumb code analysis module
2010-10-08 00:27:38 +02:00
..
anal * Implement ldmia/stmia in armthumb_assemble 2010-10-08 00:27:38 +02:00
asm * Implement ldmia/stmia in armthumb_assemble 2010-10-08 00:27:38 +02:00
bin * De-warn dyldcache in 32bits 2010-10-04 23:05:30 +02:00
bp * Initial draft implementation of hardware breakpoints 2010-09-24 05:41:54 +02:00
cmd * Initial implementation of the rap:// IO plugin 2010-08-22 21:42:08 +02:00
config * r2 -n does not load rabin2 information 2010-06-30 02:30:07 +02:00
cons * Initial implementation of '=' command 2010-08-23 06:39:23 +02:00
core * r_core 2010-10-07 13:02:07 +02:00
crypto * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
db * Cleanups in many TODO/READMEs 2010-08-26 12:18:30 +02:00
debug * Add 'FS' #define for w32 and *nix 2010-10-04 00:42:11 +02:00
diff * Fix some bugs reported by edu in the signature module 2010-07-21 11:12:24 +02:00
flags * Filter string to avoid escaped commands execution (r_str_unscape) 2010-08-16 14:58:10 +02:00
hash * Fix build 2010-07-23 12:19:39 +02:00
include * Add r_core_asm_bwdisassemble for backward disassemble resolution 2010-10-06 18:04:47 +02:00
io * Do not show color prompt in windows 2010-09-24 19:04:33 +02:00
lang * Cleanups in many TODO/READMEs 2010-08-26 12:18:30 +02:00
lib * Fix build of binr/ 2010-06-15 00:46:18 +02:00
line * '|' at the beggining of command is an io pipe instead of console pipe 2010-08-23 19:13:19 +02:00
meta * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
parse * Fix bug in r_parse_filter (thx edu!) 2010-08-02 19:34:23 +02:00
pkgconfig * Merge r_meta inside r_anal 2010-08-20 00:36:22 +02:00
print * Add pt command for print times (Thanks @earada for the patch) 2010-09-23 12:59:54 +02:00
reg * Added 'drd' command to show only modified regs 2010-09-24 16:45:56 +02:00
search * r_core 2010-08-11 17:48:02 +02:00
sign * Cleanups in many TODO/READMEs 2010-08-26 12:18:30 +02:00
socket * r_asm 2010-08-24 19:59:19 +02:00
syscall * Added 'drd' command to show only modified regs 2010-09-24 16:45:56 +02:00
sysproxy * Make r_cons independent from r_line 2009-04-07 11:28:22 +00:00
th * More fixes on mingw32 build 2010-07-24 12:44:19 +02:00
util * r_util 2010-10-04 13:57:48 +02:00
vm * Add 'FS' #define for w32 and *nix 2010-10-04 00:42:11 +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 * Initial import of the 'configure-plugins' script 2010-01-13 23:42:49 +01:00
config.mk.tail * Add openbsd|netbsd|freebsd to the list of automatic ostypes 2010-07-03 03:35:26 +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
Makefile * Simplify and fix rarc2-tool script 2010-09-15 13:10:10 +02:00
README * Clean TODO files 2010-05-21 01:46:26 +02:00
rules.mk * More fixes on build system 2010-06-15 14:10:42 +02:00
stripsyms.sh * Apply whats's patch fixing r_search for stripstr 2009-10-12 17:41:52 +02:00
symgraph.pl * Do not show color prompt in windows 2010-09-24 19:04:33 +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