radare2/libr/io
2017-09-12 01:51:18 +02:00
..
p Fix some null derefs in r2 gdb:// (without -d), still buggy 2017-09-12 01:51:18 +02:00
cache.c 7 more coverity bugs fixed (#8306) 2017-08-26 13:08:53 +02:00
desc.c Add r_io_desc_extend 2017-09-01 17:09:17 +02:00
fd.c fix returnvalue for getbase^ 2017-09-01 01:10:32 +00:00
io.c Revert "Fix onIterMap, use int for some internal IO functions to simplify (#8279)" 2017-09-07 17:09:25 +02:00
iobuf.c More build fixes for android 2017-08-19 20:05:21 +02:00
ioutils.c Fix warning 2017-09-04 17:51:48 +02:00
Makefile opsalamance - merge the big siol branch 2017-08-22 09:42:16 +02:00
map.c fix mao-order 2017-09-09 13:36:41 +00:00
meson.build Fixed meson build (#8358) 2017-08-28 15:09:58 +02:00
p_cache.c fixed dereferences after null check (#8298) 2017-08-25 12:17:28 +08:00
plugin.c beauty-fixes for pancake 2017-08-18 01:40:10 +00:00
README Add initial XCore capstone disassembler and code analysis plugins 2014-05-27 23:08:59 +02:00
section.c Enhance search.in boundaries by removing from/to and always use the list 2017-09-12 00:25:01 +02:00
undo.c opsalamance - merge the big siol branch 2017-08-22 09:42:16 +02:00
undo.h Use void in prototypes (#7974) 2017-07-20 14:50:13 +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
}