radare2/libr/io
2014-09-17 22:37:54 -05:00
..
p Fixing *most* warnings related to the change in r_file_slurp 2014-09-17 22:37:54 -05: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 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 #1366 and make r_io_close keeping the current desc if it does not get close 2014-09-16 23:12:37 +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 fix a possible vio/list-order bug 2014-09-05 11:34:20 +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 #1366 and make r_io_close keeping the current desc if it does not get close 2014-09-16 23:12:37 +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 implement r_io_mwrite // yum yum copy-pasta 2014-09-11 18:35:09 +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
}