117 #ifndef _LINUX_FUSE_H 118 #define _LINUX_FUSE_H 121 #include <linux/types.h> 147 #define FUSE_KERNEL_VERSION 7 150 #define FUSE_KERNEL_MINOR_VERSION 26 153 #define FUSE_ROOT_ID 1 177 struct fuse_kstatfs {
190 struct fuse_file_lock {
200 #define FATTR_MODE (1 << 0) 201 #define FATTR_UID (1 << 1) 202 #define FATTR_GID (1 << 2) 203 #define FATTR_SIZE (1 << 3) 204 #define FATTR_ATIME (1 << 4) 205 #define FATTR_MTIME (1 << 5) 206 #define FATTR_FH (1 << 6) 207 #define FATTR_ATIME_NOW (1 << 7) 208 #define FATTR_MTIME_NOW (1 << 8) 209 #define FATTR_LOCKOWNER (1 << 9) 210 #define FATTR_CTIME (1 << 10) 219 #define FOPEN_DIRECT_IO (1 << 0) 220 #define FOPEN_KEEP_CACHE (1 << 1) 221 #define FOPEN_NONSEEKABLE (1 << 2) 248 #define FUSE_ASYNC_READ (1 << 0) 249 #define FUSE_POSIX_LOCKS (1 << 1) 250 #define FUSE_FILE_OPS (1 << 2) 251 #define FUSE_ATOMIC_O_TRUNC (1 << 3) 252 #define FUSE_EXPORT_SUPPORT (1 << 4) 253 #define FUSE_BIG_WRITES (1 << 5) 254 #define FUSE_DONT_MASK (1 << 6) 255 #define FUSE_SPLICE_WRITE (1 << 7) 256 #define FUSE_SPLICE_MOVE (1 << 8) 257 #define FUSE_SPLICE_READ (1 << 9) 258 #define FUSE_FLOCK_LOCKS (1 << 10) 259 #define FUSE_HAS_IOCTL_DIR (1 << 11) 260 #define FUSE_AUTO_INVAL_DATA (1 << 12) 261 #define FUSE_DO_READDIRPLUS (1 << 13) 262 #define FUSE_READDIRPLUS_AUTO (1 << 14) 263 #define FUSE_ASYNC_DIO (1 << 15) 264 #define FUSE_WRITEBACK_CACHE (1 << 16) 265 #define FUSE_NO_OPEN_SUPPORT (1 << 17) 266 #define FUSE_PARALLEL_DIROPS (1 << 18) 267 #define FUSE_HANDLE_KILLPRIV (1 << 19) 268 #define FUSE_POSIX_ACL (1 << 20) 275 #define CUSE_UNRESTRICTED_IOCTL (1 << 0) 280 #define FUSE_RELEASE_FLUSH (1 << 0) 281 #define FUSE_RELEASE_FLOCK_UNLOCK (1 << 1) 286 #define FUSE_GETATTR_FH (1 << 0) 291 #define FUSE_LK_FLOCK (1 << 0) 299 #define FUSE_WRITE_CACHE (1 << 0) 300 #define FUSE_WRITE_LOCKOWNER (1 << 1) 305 #define FUSE_READ_LOCKOWNER (1 << 1) 318 #define FUSE_IOCTL_COMPAT (1 << 0) 319 #define FUSE_IOCTL_UNRESTRICTED (1 << 1) 320 #define FUSE_IOCTL_RETRY (1 << 2) 321 #define FUSE_IOCTL_32BIT (1 << 3) 322 #define FUSE_IOCTL_DIR (1 << 4) 324 #define FUSE_IOCTL_MAX_IOV 256 331 #define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0) 355 FUSE_REMOVEXATTR = 24,
360 FUSE_RELEASEDIR = 29,
372 FUSE_NOTIFY_REPLY = 41,
373 FUSE_BATCH_FORGET = 42,
375 FUSE_READDIRPLUS = 44,
383 enum fuse_notify_code {
384 FUSE_NOTIFY_POLL = 1,
385 FUSE_NOTIFY_INVAL_INODE = 2,
386 FUSE_NOTIFY_INVAL_ENTRY = 3,
387 FUSE_NOTIFY_STORE = 4,
388 FUSE_NOTIFY_RETRIEVE = 5,
389 FUSE_NOTIFY_DELETE = 6,
390 FUSE_NOTIFY_CODE_MAX,
394 #define FUSE_MIN_READ_BUFFER 8192 396 #define FUSE_COMPAT_ENTRY_OUT_SIZE 120 398 struct fuse_entry_out {
402 uint64_t entry_valid;
404 uint32_t entry_valid_nsec;
405 uint32_t attr_valid_nsec;
406 struct fuse_attr attr;
409 struct fuse_forget_in {
413 struct fuse_forget_one {
418 struct fuse_batch_forget_in {
423 struct fuse_getattr_in {
424 uint32_t getattr_flags;
429 #define FUSE_COMPAT_ATTR_OUT_SIZE 96 431 struct fuse_attr_out {
433 uint32_t attr_valid_nsec;
435 struct fuse_attr attr;
438 #define FUSE_COMPAT_MKNOD_IN_SIZE 8 440 struct fuse_mknod_in {
447 struct fuse_mkdir_in {
452 struct fuse_rename_in {
456 struct fuse_rename2_in {
462 struct fuse_link_in {
466 struct fuse_setattr_in {
485 struct fuse_open_in {
490 struct fuse_create_in {
497 struct fuse_open_out {
503 struct fuse_release_in {
506 uint32_t release_flags;
510 struct fuse_flush_in {
517 struct fuse_read_in {
527 #define FUSE_COMPAT_WRITE_IN_SIZE 24 529 struct fuse_write_in {
533 uint32_t write_flags;
539 struct fuse_write_out {
544 #define FUSE_COMPAT_STATFS_SIZE 48 546 struct fuse_statfs_out {
547 struct fuse_kstatfs st;
550 struct fuse_fsync_in {
552 uint32_t fsync_flags;
556 struct fuse_setxattr_in {
561 struct fuse_getxattr_in {
566 struct fuse_getxattr_out {
574 struct fuse_file_lock lk;
580 struct fuse_file_lock lk;
583 struct fuse_access_in {
588 struct fuse_init_in {
591 uint32_t max_readahead;
595 #define FUSE_COMPAT_INIT_OUT_SIZE 8 596 #define FUSE_COMPAT_22_INIT_OUT_SIZE 24 598 struct fuse_init_out {
601 uint32_t max_readahead;
603 uint16_t max_background;
604 uint16_t congestion_threshold;
610 #define CUSE_INIT_INFO_MAX 4096 612 struct cuse_init_in {
619 struct cuse_init_out {
631 struct fuse_interrupt_in {
635 struct fuse_bmap_in {
641 struct fuse_bmap_out {
645 struct fuse_ioctl_in {
654 struct fuse_ioctl_iovec {
659 struct fuse_ioctl_out {
666 struct fuse_poll_in {
673 struct fuse_poll_out {
678 struct fuse_notify_poll_wakeup_out {
682 struct fuse_fallocate_in {
690 struct fuse_in_header {
701 struct fuse_out_header {
715 #define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name) 716 #define FUSE_DIRENT_ALIGN(x) \ 717 (((x) + sizeof(uint64_t) - 1) & ~(sizeof(uint64_t) - 1)) 718 #define FUSE_DIRENT_SIZE(d) \ 719 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen) 721 struct fuse_direntplus {
722 struct fuse_entry_out entry_out;
723 struct fuse_dirent dirent;
726 #define FUSE_NAME_OFFSET_DIRENTPLUS \ 727 offsetof(struct fuse_direntplus, dirent.name) 728 #define FUSE_DIRENTPLUS_SIZE(d) \ 729 FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET_DIRENTPLUS + (d)->dirent.namelen) 731 struct fuse_notify_inval_inode_out {
737 struct fuse_notify_inval_entry_out {
743 struct fuse_notify_delete_out {
750 struct fuse_notify_store_out {
757 struct fuse_notify_retrieve_out {
758 uint64_t notify_unique;
766 struct fuse_notify_retrieve_in {
776 #define FUSE_DEV_IOC_CLONE _IOR(229, 0, uint32_t) 778 struct fuse_lseek_in {
785 struct fuse_lseek_out {