radare2/libr/io
2014-09-03 10:26:41 +02:00
..
p Fix #1276 - Extend 'Vd' to support more types #1276 2014-09-03 10:26:41 +02:00
t Finish s/io.ffio/io.ff/ 2014-06-10 11:20:17 +02:00
buffer.c New io.buffer cache system and refactorized RHashTable 2013-01-12 04:29:45 +01:00
cache.c Fix io.cache oob read bug? 2014-06-16 01:17:45 +02:00
desc.c Fix CID 1220144 2014-08-01 11:53:29 +02:00
io.c Fix some minor coverity issues 2014-08-04 19:25:23 +02:00
Jamroot Fix bjam build 2014-01-03 00:43:22 +01:00
Makefile Initial huge refactoring of r_io still work in progress 2014-05-28 04:34:12 +02:00
map.c Clean a huge list of warnings 2014-06-25 02:07:38 +02: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 Fix ASLR for linux debugger. Load rbin info from different base address 2014-08-25 04:22:22 +02: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 ghost-ref if vio is used 2014-09-03 01:29:10 +02: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
}