libfuse
|
Data Structures | |
struct | fuse_file_info |
struct | fuse_conn_info |
struct | fuse_buf |
struct | fuse_bufvec |
Macros | |
#define | FUSE_MAJOR_VERSION 3 |
#define | FUSE_MINOR_VERSION 0 |
#define | FUSE_CAP_ASYNC_READ (1 << 0) |
#define | FUSE_CAP_POSIX_LOCKS (1 << 1) |
#define | FUSE_CAP_ATOMIC_O_TRUNC (1 << 3) |
#define | FUSE_CAP_EXPORT_SUPPORT (1 << 4) |
#define | FUSE_CAP_DONT_MASK (1 << 6) |
#define | FUSE_CAP_SPLICE_WRITE (1 << 7) |
#define | FUSE_CAP_SPLICE_MOVE (1 << 8) |
#define | FUSE_CAP_SPLICE_READ (1 << 9) |
#define | FUSE_CAP_FLOCK_LOCKS (1 << 10) |
#define | FUSE_CAP_IOCTL_DIR (1 << 11) |
#define | FUSE_CAP_AUTO_INVAL_DATA (1 << 12) |
#define | FUSE_CAP_READDIRPLUS (1 << 13) |
#define | FUSE_CAP_READDIRPLUS_AUTO (1 << 14) |
#define | FUSE_CAP_ASYNC_DIO (1 << 15) |
#define | FUSE_CAP_WRITEBACK_CACHE (1 << 16) |
#define | FUSE_CAP_NO_OPEN_SUPPORT (1 << 17) |
#define | FUSE_IOCTL_COMPAT (1 << 0) |
Enumerations | |
enum | fuse_buf_flags { FUSE_BUF_IS_FD = (1 << 1), FUSE_BUF_FD_SEEK = (1 << 2), FUSE_BUF_FD_RETRY = (1 << 3) } |
enum | fuse_buf_copy_flags { FUSE_BUF_NO_SPLICE = (1 << 1), FUSE_BUF_FORCE_SPLICE = (1 << 2), FUSE_BUF_SPLICE_MOVE = (1 << 3), FUSE_BUF_SPLICE_NONBLOCK = (1 << 4) } |
Functions | |
struct fuse_conn_info_opts * | fuse_parse_conn_info_opts (struct fuse_args *args) |
void | fuse_apply_conn_info_opts (struct fuse_conn_info_opts *opts, struct fuse_conn_info *conn) |
int | fuse_daemonize (int foreground) |
int | fuse_version (void) |
const char * | fuse_pkgversion (void) |
void | fuse_pollhandle_destroy (struct fuse_pollhandle *ph) |
size_t | fuse_buf_size (const struct fuse_bufvec *bufv) |
ssize_t | fuse_buf_copy (struct fuse_bufvec *dst, struct fuse_bufvec *src, enum fuse_buf_copy_flags flags) |
int | fuse_set_signal_handlers (struct fuse_session *se) |
void | fuse_remove_signal_handlers (struct fuse_session *se) |
#define FUSE_CAP_ASYNC_DIO (1 << 15) |
Indicates that the filesystem supports asynchronous direct I/O submission.
If this capability is not requested/available, the kernel will ensure that there is at most one pending read and one pending write request per direct I/O file-handle at any time.
#define FUSE_CAP_ASYNC_READ (1 << 0) |
Indicates that the filesystem supports asynchronous read requests.
If this capability is not requested/available, the kernel will ensure that there is at most one pending read request per file-handle at any time, and will attempt to order read requests by increasing offset.
#define FUSE_CAP_ATOMIC_O_TRUNC (1 << 3) |
Indicates that the filesystem supports the O_TRUNC open flag
#define FUSE_CAP_AUTO_INVAL_DATA (1 << 12) |
Indicates that the filesystem supports automatic invalidation of cached pages.
#define FUSE_CAP_DONT_MASK (1 << 6) |
Indicates that the kernel should not apply the umask to the file mode on create operations.
#define FUSE_CAP_EXPORT_SUPPORT (1 << 4) |
Indicates that the filesystem supports lookups of "." and "..".
#define FUSE_CAP_FLOCK_LOCKS (1 << 10) |
FIXME: This capability is not documented. Please get in touch if you know what it does!
#define FUSE_CAP_IOCTL_DIR (1 << 11) |
Indicates that the filesystem supports ioctl's on directories.
#define FUSE_CAP_NO_OPEN_SUPPORT (1 << 17) |
Indicates that the filesystem supports support zero-message opens.
#define FUSE_CAP_POSIX_LOCKS (1 << 1) |
Indicates that the filesystem supports "remote" locking.
#define FUSE_CAP_READDIRPLUS (1 << 13) |
Indicates that the filesystem supports readdirplus
#define FUSE_CAP_READDIRPLUS_AUTO (1 << 14) |
Indicates that the filesystem supports adaptive readdirplus
#define FUSE_CAP_SPLICE_MOVE (1 << 8) |
Indicates that libfuse should try to move pages instead of copying when writing to / reading from the fuse device.
#define FUSE_CAP_SPLICE_READ (1 << 9) |
Indicates that libfuse should try to use splice() when reading from the fuse device.
#define FUSE_CAP_SPLICE_WRITE (1 << 7) |
Indicates that libfuse should try to use splice() when writing to the fuse device
#define FUSE_CAP_WRITEBACK_CACHE (1 << 16) |
Indicates that writeback caching should be enabled. This means that individual write request may be buffered and merged in the kernel before they are send to the filesystem.
#define FUSE_IOCTL_COMPAT (1 << 0) |
Ioctl flags
FUSE_IOCTL_COMPAT: 32bit compat ioctl on 64bit machine FUSE_IOCTL_UNRESTRICTED: not restricted to well-formed ioctls, retry allowed FUSE_IOCTL_RETRY: retry with new iovecs FUSE_IOCTL_DIR: is a directory
FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
#define FUSE_MAJOR_VERSION 3 |
Major version of FUSE library interface
#define FUSE_MINOR_VERSION 0 |
Minor version of FUSE library interface
enum fuse_buf_copy_flags |
Buffer copy flags
enum fuse_buf_flags |
Buffer flags
void fuse_apply_conn_info_opts | ( | struct fuse_conn_info_opts * | opts, |
struct fuse_conn_info * | conn | ||
) |
This function applies the (parsed) parameters in opts to the conn pointer. It may modify the following fields: wants, max_write, max_readahead, congestion_threshold, max_background, time_gran. A field is only set (or unset) if the corresponding option has been explicitly set.
ssize_t fuse_buf_copy | ( | struct fuse_bufvec * | dst, |
struct fuse_bufvec * | src, | ||
enum fuse_buf_copy_flags | flags | ||
) |
Copy data from one buffer vector to another
dst | destination buffer vector |
src | source buffer vector |
flags | flags controlling the copy |
size_t fuse_buf_size | ( | const struct fuse_bufvec * | bufv | ) |
Get total size of data in a fuse buffer vector
bufv | buffer vector |
int fuse_daemonize | ( | int | foreground | ) |
Go into the background
foreground | if true, stay in the foreground |
struct fuse_conn_info_opts* fuse_parse_conn_info_opts | ( | struct fuse_args * | args | ) |
This function parses several command-line options that can be used to override elements of struct fuse_conn_info. The pointer returned by this function should be passed to the fuse_apply_conn_info_opts() method by the file system's init() handler.
Before using this function, think twice if you really want these parameters to be adjustable from the command line. In most cases, they should be determined by the file system internally.
The following options are recognized:
-o max_write=N sets conn->max_write -o max_readahead=N sets conn->max_readahead -o max_background=N sets conn->max_background -o congestion_threshold=N sets conn->congestion_threshold -o async_read sets FUSE_CAP_ASYNC_READ in conn->want -o sync_read unsets FUSE_CAP_ASYNC_READ in conn->want -o atomic_o_trunc sets FUSE_CAP_ATOMIC_O_TRUNC in conn->want -o no_remote_lock Equivalent to -o no_remote_flock,no_remote_posix_lock -o no_remote_flock Unsets FUSE_CAP_FLOCK_LOCKS in conn->want -o no_remote_posix_lock Unsets FUSE_CAP_POSIX_LOCKS in conn->want -o [no_]splice_write (un-)sets FUSE_CAP_SPLICE_WRITE in conn->want -o [no_]splice_move (un-)sets FUSE_CAP_SPLICE_MOVE in conn->want -o [no_]splice_read (un-)sets FUSE_CAP_SPLICE_READ in conn->want -o [no_]auto_inval_data (un-)sets FUSE_CAP_AUTO_INVAL_DATA in conn->want -o readdirplus=no unsets FUSE_CAP_READDIRPLUS in conn->want -o readdirplus=yes sets FUSE_CAP_READDIRPLUS and unsets FUSE_CAP_READDIRPLUS_AUTO in conn->want -o readdirplus=auto sets FUSE_CAP_READDIRPLUS and FUSE_CAP_READDIRPLUS_AUTO in conn->want -o [no_]async_dio (un-)sets FUSE_CAP_ASYNC_DIO in conn->want -o [no_]writeback_cache (un-)sets FUSE_CAP_WRITEBACK_CACHE in conn->want -o time_gran=N sets conn->time_gran
Known options will be removed from args, unknown options will be passed through unchanged.
args | argument vector (input+output) |
const char* fuse_pkgversion | ( | void | ) |
Get the full package version string of the library
void fuse_pollhandle_destroy | ( | struct fuse_pollhandle * | ph | ) |
Destroy poll handle
ph | the poll handle |
void fuse_remove_signal_handlers | ( | struct fuse_session * | se | ) |
Restore default signal handlers
Resets global session. After this fuse_set_signal_handlers() may be called again.
se | the same session as given in fuse_set_signal_handlers() |
See also: fuse_set_signal_handlers()
int fuse_set_signal_handlers | ( | struct fuse_session * | se | ) |
Exit session on HUP, TERM and INT signals and ignore PIPE signal
Stores session in a global variable. May only be called once per process until fuse_remove_signal_handlers() is called.
Once either of the POSIX signals arrives, the fuse_session_exit() is called.
se | the session to exit |
See also: fuse_remove_signal_handlers()
int fuse_version | ( | void | ) |
Get the version of the library