radare2/r2-bindings
2013-02-19 03:03:05 +01:00
..
awk Minor r2awk fixes 2012-11-05 14:52:32 +01:00
ctypes Minor fixes for ctypes bindings 2013-02-19 03:03:05 +01:00
cxx Lot of build fixes for --as-needed and mingw32 2012-08-10 11:35:38 +02:00
gir Made r2-bindings work again (though, not tested) with valabind. 2012-06-29 17:35:44 +03:00
go * Add missing goenv.sh 2011-08-21 14:34:07 +02:00
guile * More work for the bindings 2011-11-04 03:48:28 +01:00
java * Rename swig/ to r2-bindings 2011-05-18 01:35:52 +02:00
lua Made r2-bindings work again (though, not tested) with valabind. 2012-06-29 17:35:44 +03:00
luvit * Add initial luvit bindings for testing (sync) 2012-03-13 18:45:19 +01:00
newlisp * Enhacements for rarun2 2011-10-24 04:35:42 +02:00
node-ffi Add hints and named print formats and more 2013-01-22 05:06:12 +01:00
perl * Rename swig/ to r2-bindings 2011-05-18 01:35:52 +02:00
php5 Made r2-bindings work again (though, not tested) with valabind. 2012-06-29 17:35:44 +03:00
python Add client and server rap examples in python 2012-12-30 23:45:13 +01:00
ruby * Rename swig/ to r2-bindings 2011-05-18 01:35:52 +02:00
vapi Add test-bin.py for ctypes bindings and fix few r_bin vapi issues 2013-02-18 04:40:18 +01:00
autogen.sh * Rename swig/ to r2-bindings 2011-05-18 01:35:52 +02:00
check-langs.sh Fix x86-16 disasm issue and add ctypes (wip) 2012-11-15 15:37:25 +01:00
config.mk.acr * fix make clean in r2-bindings 2012-06-21 18:13:41 +02:00
configure Bump 0.9.3git after release 2012-10-02 11:26:32 +02:00
configure-langs * More fixes for the r2-bindings configure 2012-06-13 18:15:28 +02:00
configure.acr Bump 0.9.3git after release 2012-10-02 11:26:32 +02:00
configure.hook Fix build of swig bindings (thanks gnutoo for reporting!) 2013-01-17 16:19:14 +01:00
do-swig.sh Add ?P command, fix overflow in anal/cc and ctypes build 2012-12-08 02:17:21 +01:00
do-test.sh * Rename swig/ to r2-bindings 2011-05-18 01:35:52 +02:00
getostype.sh * Fix pkg-config-symstall 2011-05-20 19:49:50 +02:00
libs.mk * More work for the bindings 2011-11-04 03:48:28 +01:00
Makefile Fix build of swig bindings (thanks gnutoo for reporting!) 2013-01-17 16:19:14 +01:00
mp.py * Fix bindings 2011-12-05 01:09:15 +01:00
python-config-wrapper * SWIG only supports python2 atm. forced check 2012-06-22 12:04:24 +02:00
python-wrapper * Add 'python-wrapper' to use python2 in install-python target 2012-06-26 15:21:48 +02:00
README.md Add px[QW], fix segmented io and handle ! pipes 2012-10-25 12:55:28 +02:00
rules.mk Fix build of swig bindings (thanks gnutoo for reporting!) 2013-01-17 16:19:14 +01:00
TODO * fix make clean in r2-bindings 2012-06-21 18:13:41 +02:00

=============== = = = R2-Bindings = Language bindings for r2 api = = =============== --pancake

Description

This directory contains the code necessary to use the r2 api from your favourite language.

It supports a large list of programming languages:

  • Vala, Genie, Java, Go, Python, Ruby, Perl, LUA, NewLisp, Guile

And some other experimental bindings are for:

  • GIR, C++

This package also contains the vdoc/ subdirectory which contains the rules used to generate all interactive html documentation found at:

http://radare.org/vdoc

Dependencies

To build r2-bindings from repository you need the following programs installed:

  • swig: enables support for python, perl, lua, java and many other
  • vala: if you want to have Vala or Genie bindings
  • valabind: required only in developer mode (not release tarball)

Release tarballs come with all the pregenerated .cxx files, so you have no extra dependencies apart from the language libraries and C++ compiler.

To get install all dependencies do the following steps in order:

  • Install swig and mercurial from repository (ensure you don't have vala installed from package)

    arch$ sudo pacman -S swig mercurial git deb$ sudo apt-get install swig mercurial

  • Install latest release of Vala from tarball

    http://live.gnome.org/Vala

    ./configure --prefix=/usr make sudo make install

  • Clone vala compiler from git repository:

    $ git clone git://git.gnome.org/vala $ cd vala $ sh autogen.sh --prefix=/usr $ make $ sudo make install

  • Fetch valabind from the repository:

    $ hg clone http://hg.youterm.com/valabind $ cd valabind $ make $ sudo make install PREFIX=/usr

To keep bindings up-to-date

When changes are done in libr an ABI break can occur. The bindings will require to be recompiled to work again.

It's recommendable to keep your system always up to date, and upgrade vala and valabind from git/hg.

$ cd vala $ git pull $ make $ sudo make install

$ cd ../valabind $ hg pull -u $ make $ sudo make install PREFIX=/usr

r2-bindings

If you compile from the repo you need valabind and pass the --enable-devel

./configure --prefix=/usr --enable-devel

You can select the languages you want to compile with --enable={list-of-langs}

./configure --prefix=/usr --enable-devel --enable=python

PYTHON

To select the version of python to compile for use the PYTHON_CONFIG environment variable as follows:

$ ./configure --prefix=/usr --enable-devel $ cd python $ PYTHON_CONFIG=python2.7-config make $ su -

PYTHON_CONFIG=python2.7-config make install

RANDOM NOTES

The valabind integration forces us to do some changes in the r2 API.

These api changes are for:

  • Avoid keywords in function names

    Every language has its own keywords, r2api should try to workaround all those keywords to avoid collisions for bindings.

    Example: use, del, from, continue, etc..

    TODO: we need to review APIs, find better names for functions using those keywords, etc..

  • Review basic data structures

    Linked lists, hash tables, r_db, arrays, ... must be reviewed to fit with vala and swig basics to be able to use them with simple APIs or integrate them with the syntax sugar of the target language.

    Example: foreach (var foo in binls.get_symbols ()) { print ("%s 0x%08"PFMT64x"\n", foo.name, foo.offset); }

  • Unit testing

    Having bindings for python, perl, ruby, .. is good for unit testing because it hardly simplifies the way to test APIs, find bugs, ...

    TODO: write unit testing frameworks for perl, ruby, python, etc..

  • API unification for all languages

    All the previous development points are meant to reduce code in r2, avoid syntax exceptions, simplify api usage, and much moar ;)

SWIG is not complete, there are still so many bugs to fix and so many unimplemented stuff. Here's a list of the most anoying things of it:

  • unsigned char * : not implemented