radare2/libr/io
2015-01-09 16:21:47 +01:00
..
p Update capstone and transplant io.ewf to the r2e repo 2015-01-09 16:21:47 +01:00
t rename r_io_open -> r_io_open_nomap and add a new r_io_open that creates a map at 0x0 2014-09-06 23:08:16 +02:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix #1726 - ESIL brainfuck is back (and fix io.maps test case) - Thanks @trndr 2014-11-23 22:44:38 +01:00
desc.c Add r_io->referer 2014-11-03 10:47:02 +01:00
io.c Fix underflow in RIO and clean some null derefs in RBin 2014-12-04 13:02:11 +01:00
Jamroot Somewhat better BoostJam support 2014-10-26 02:47:08 +02:00
Makefile Initial huge refactoring of r_io still work in progress 2014-05-28 04:34:12 +02:00
map.c Wip Fix r2 -d oo (workaround, because it's a race condition in fork+pid2path) 2014-11-03 11:47:51 +01:00
plugin.c Update sdb to fix '***' and add r_asm_get_plugins 2014-07-03 00:03:01 +02:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
section.c Colorize S=, Add anal.gp and better op.refs for mips and x86 2014-11-07 03:48:27 +01:00
undo.c Try to fix #168 rlang's python plugin not properly linked 2013-08-18 01:30:03 +02:00
undo.h * Change the name of some types 2009-07-08 13:49:55 +02:00
vio.c fix lots of spelling 2014-12-07 17:00:59 +01:00

RIO design
==========

rio api allows to seamlessly access to underlying IO backends
and define rules on top of it to act as an mmu.

What do io.va means?
--------------------
- obey sections

- Plugins 

Actions
-------
 - open
 - read
 - seek
 - write
 - close

Layers
------
 - cache    caches write ops and modifies reads
 - map      allows to map a certain file at a given offset
 - sections like maps, but provide more information for virtual addressing

Features
--------
 - undo
 - buffer
 - desc

fn read(io: IO) {
	ut64 offset;
	if io.offset
}