radare2/libr/io
2014-10-15 16:05:47 +02:00
..
p Attach IO to new pid with =!pid when doing dpa pid. Add program|library to 'ai' 2014-10-15 16:05:47 +02: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 Better 'wc' command and cache/history capabilities 2014-10-07 02:52:47 +02:00
desc.c Should fix #1457 - ELF rpath oob read 2014-10-01 19:59:50 +02:00
io.c Fix r2 -d problem not loading syms. Redo the ASLR/PIE again 2014-10-15 15:41:02 +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 Show if two maps overlap 2014-10-07 03:07:45 +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 fix 2 gcc Wunused warnings in vio 2014-09-19 23:59:06 +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
}