Support application-defined I/O functions for FUSE fd
authorTofik Sonono <tofik.sonono@intel.com>
Tue, 10 Jan 2023 10:04:35 +0000 (10:04 +0000)
committerGitHub <noreply@github.com>
Tue, 10 Jan 2023 10:04:35 +0000 (10:04 +0000)
commit50c74e645928affa1af6e9a5a6ea6a3b9d3c52dc
tree58f7deff5dfca5ba8ec3a757ddcb04c535eea48e
parentc0a344e3797844896d04efc4b565a2627067b67f
Support application-defined I/O functions for FUSE fd

The io for FUSE requests and responses can now be further customized by allowing to write custom functions for reading/writing the responses. This includes overriding the splice io.

The reason for this addition is that having a custom file descriptor is not sufficient to allow custom io. Different types of file descriptor require different mechanisms of io interaction. For example, some file descriptor communication has boundaries (SOCK_DGRAM, EOF, etc...), while other types of fd:s might be unbounded (SOCK_STREAMS, ...). For unbounded communication, you have to read the header of the FUSE request first, and then read the remaining packet data. Furthermore, the one read call does not necessarily return all the data expected, requiring further
calls in a loop.
ChangeLog.rst
example/hello_ll_uds.c [new file with mode: 0644]
example/meson.build
include/fuse_lowlevel.h
lib/fuse_i.h
lib/fuse_lowlevel.c
lib/fuse_versionscript
test/meson.build
test/test_custom_io.py [new file with mode: 0644]