Files
linux-apfs/include/linux/fuse.h
T

635 lines
12 KiB
C
Raw Normal View History

2005-09-09 13:10:26 -07:00
/*
FUSE: Filesystem in Userspace
2008-12-01 19:14:02 +01:00
Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
2005-09-09 13:10:26 -07:00
This program can be distributed under the terms of the GNU GPL.
See the file COPYING.
*/
2007-10-18 03:06:59 -07:00
/*
* This file defines the kernel interface of FUSE
*
* Protocol changelog:
*
* 7.9:
* - new fuse_getattr_in input argument of GETATTR
2007-10-18 03:07:02 -07:00
* - add lk_flags in fuse_lk_in
2007-10-18 03:07:04 -07:00
* - add lock_owner field to fuse_setattr_in, fuse_read_in and fuse_write_in
2007-10-18 03:07:05 -07:00
* - add blksize field to fuse_attr
2007-11-28 16:22:00 -08:00
* - add file flags field to fuse_read_in and fuse_write_in
2008-10-16 16:08:57 +02:00
*
* 7.10
* - add nonseekable open flag
2008-12-01 19:14:02 +01:00
*
* 7.11
* - add IOCTL message
* - add unsolicited notification support
* - add POLL message and NOTIFY_POLL notification
2009-06-30 20:12:23 +02:00
*
* 7.12
* - add umask flag to input argument of open, mknod and mkdir
2009-05-31 11:13:57 -04:00
* - add notification messages for invalidation of inodes and
* directory entries
*
* 7.13
* - make max number of background requests and congestion threshold
* tunables
*
* 7.14
* - add splice support to fuse device
2010-07-12 14:41:40 +02:00
*
* 7.15
* - add store notify
2010-07-12 14:41:40 +02:00
* - add retrieve notify
2010-12-07 20:16:56 +01:00
*
* 7.16
* - add BATCH_FORGET request
2010-12-07 20:16:56 +01:00
* - FUSE_IOCTL_UNRESTRICTED shall now return with array of 'struct
* fuse_ioctl_iovec' instead of ambiguous 'struct iovec'
* - add FUSE_IOCTL_32BIT flag
2011-08-08 16:08:08 +02:00
*
* 7.17
* - add FUSE_FLOCK_LOCKS and FUSE_RELEASE_FLOCK_UNLOCK
2007-10-18 03:06:59 -07:00
*/
2005-09-09 13:10:26 -07:00
2008-10-16 16:08:57 +02:00
#ifndef _LINUX_FUSE_H
#define _LINUX_FUSE_H
2008-12-01 19:14:02 +01:00
#include <linux/types.h>
2005-09-09 13:10:26 -07:00
2009-07-08 18:17:58 +02:00
/*
* Version negotiation:
*
* Both the kernel and userspace send the version they support in the
* INIT request and reply respectively.
*
* If the major versions match then both shall use the smallest
* of the two minor versions for communication.
*
* If the kernel supports a larger major version, then userspace shall
* reply with the major version it supports, ignore the rest of the
* INIT message and expect a new INIT message from the kernel with a
* matching major version.
*
* If the library supports a larger major version, then it shall fall
* back to the major protocol version sent by the kernel for
* communication and reply with that major version (and an arbitrary
* supported minor version).
*/
2005-09-09 13:10:26 -07:00
/** Version number of this interface */
2005-09-09 13:10:29 -07:00
#define FUSE_KERNEL_VERSION 7
2005-09-09 13:10:26 -07:00
/** Minor version number of this interface */
2011-08-08 16:08:08 +02:00
#define FUSE_KERNEL_MINOR_VERSION 17
2005-09-09 13:10:26 -07:00
/** The node ID of the root inode */
#define FUSE_ROOT_ID 1
2005-09-09 13:10:32 -07:00
/* Make sure all structures are padded to 64bit boundary, so 32bit
userspace works under 64bit kernels */
2005-09-09 13:10:26 -07:00
struct fuse_attr {
__u64 ino;
__u64 size;
__u64 blocks;
__u64 atime;
__u64 mtime;
__u64 ctime;
__u32 atimensec;
__u32 mtimensec;
__u32 ctimensec;
__u32 mode;
__u32 nlink;
__u32 uid;
__u32 gid;
__u32 rdev;
2007-10-18 03:07:05 -07:00
__u32 blksize;
__u32 padding;
2005-09-09 13:10:26 -07:00
};
2005-09-09 13:10:28 -07:00
struct fuse_kstatfs {
__u64 blocks;
__u64 bfree;
__u64 bavail;
__u64 files;
__u64 ffree;
__u32 bsize;
__u32 namelen;
2006-01-06 00:19:37 -08:00
__u32 frsize;
__u32 padding;
__u32 spare[6];
2005-09-09 13:10:28 -07:00
};
struct fuse_file_lock {
__u64 start;
__u64 end;
__u32 type;
__u32 pid; /* tgid */
};
/**
* Bitmasks for fuse_setattr_in.valid
*/
2005-09-09 13:10:29 -07:00
#define FATTR_MODE (1 << 0)
#define FATTR_UID (1 << 1)
#define FATTR_GID (1 << 2)
#define FATTR_SIZE (1 << 3)
#define FATTR_ATIME (1 << 4)
#define FATTR_MTIME (1 << 5)
2005-11-07 00:59:52 -08:00
#define FATTR_FH (1 << 6)
2007-10-18 03:07:01 -07:00
#define FATTR_ATIME_NOW (1 << 7)
#define FATTR_MTIME_NOW (1 << 8)
2007-10-18 03:07:04 -07:00
#define FATTR_LOCKOWNER (1 << 9)
2005-09-09 13:10:29 -07:00
2005-09-09 13:10:37 -07:00
/**
* Flags returned by the OPEN request
*
* FOPEN_DIRECT_IO: bypass page cache for this open file
* FOPEN_KEEP_CACHE: don't invalidate the data cache on open
2008-10-16 16:08:57 +02:00
* FOPEN_NONSEEKABLE: the file is not seekable
2005-09-09 13:10:37 -07:00
*/
#define FOPEN_DIRECT_IO (1 << 0)
#define FOPEN_KEEP_CACHE (1 << 1)
2008-10-16 16:08:57 +02:00
#define FOPEN_NONSEEKABLE (1 << 2)
2005-09-09 13:10:37 -07:00
/**
* INIT request/reply flags
2008-07-25 01:49:02 -07:00
*
2011-08-08 16:08:08 +02:00
* FUSE_POSIX_LOCKS: remote locking for POSIX file locks
2008-07-25 01:49:02 -07:00
* FUSE_EXPORT_SUPPORT: filesystem handles lookups of "." and ".."
2009-06-30 20:12:23 +02:00
* FUSE_DONT_MASK: don't apply umask to file mode on create operations
2011-08-08 16:08:08 +02:00
* FUSE_FLOCK_LOCKS: remote locking for BSD style file locks
*/
#define FUSE_ASYNC_READ (1 << 0)
#define FUSE_POSIX_LOCKS (1 << 1)
2007-10-18 03:06:59 -07:00
#define FUSE_FILE_OPS (1 << 2)
2007-10-18 03:07:02 -07:00
#define FUSE_ATOMIC_O_TRUNC (1 << 3)
2008-07-25 01:49:02 -07:00
#define FUSE_EXPORT_SUPPORT (1 << 4)
2008-05-12 14:02:32 -07:00
#define FUSE_BIG_WRITES (1 << 5)
2009-06-30 20:12:23 +02:00
#define FUSE_DONT_MASK (1 << 6)
2011-08-08 16:08:08 +02:00
#define FUSE_FLOCK_LOCKS (1 << 10)
/**
* CUSE INIT request/reply flags
*
* CUSE_UNRESTRICTED_IOCTL: use unrestricted ioctl
*/
#define CUSE_UNRESTRICTED_IOCTL (1 << 0)
/**
* Release flags
*/
#define FUSE_RELEASE_FLUSH (1 << 0)
2011-08-08 16:08:08 +02:00
#define FUSE_RELEASE_FLOCK_UNLOCK (1 << 1)
2007-10-18 03:06:59 -07:00
/**
* Getattr flags
*/
#define FUSE_GETATTR_FH (1 << 0)
2007-10-18 03:07:02 -07:00
/**
* Lock flags
*/
#define FUSE_LK_FLOCK (1 << 0)
2007-10-18 03:07:03 -07:00
/**
* WRITE flags
*
* FUSE_WRITE_CACHE: delayed write from page cache, file handle is guessed
2007-10-18 03:07:04 -07:00
* FUSE_WRITE_LOCKOWNER: lock_owner field is valid
2007-10-18 03:07:03 -07:00
*/
#define FUSE_WRITE_CACHE (1 << 0)
2007-10-18 03:07:04 -07:00
#define FUSE_WRITE_LOCKOWNER (1 << 1)
/**
* Read flags
*/
#define FUSE_READ_LOCKOWNER (1 << 1)
2007-10-18 03:07:03 -07:00
2008-11-26 12:03:55 +01:00
/**
* 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
2010-12-07 20:16:56 +01:00
* FUSE_IOCTL_32BIT: 32bit ioctl
2008-11-26 12:03:55 +01:00
*
* FUSE_IOCTL_MAX_IOV: maximum of in_iovecs + out_iovecs
*/
#define FUSE_IOCTL_COMPAT (1 << 0)
#define FUSE_IOCTL_UNRESTRICTED (1 << 1)
#define FUSE_IOCTL_RETRY (1 << 2)
2010-12-07 20:16:56 +01:00
#define FUSE_IOCTL_32BIT (1 << 3)
2008-11-26 12:03:55 +01:00
#define FUSE_IOCTL_MAX_IOV 256
2008-11-26 12:03:55 +01:00
/**
* Poll flags
*
* FUSE_POLL_SCHEDULE_NOTIFY: request poll notify
*/
#define FUSE_POLL_SCHEDULE_NOTIFY (1 << 0)
2005-09-09 13:10:27 -07:00
enum fuse_opcode {
2005-09-09 13:10:28 -07:00
FUSE_LOOKUP = 1,
FUSE_FORGET = 2, /* no reply */
FUSE_GETATTR = 3,
2005-09-09 13:10:29 -07:00
FUSE_SETATTR = 4,
2005-09-09 13:10:28 -07:00
FUSE_READLINK = 5,
2005-09-09 13:10:29 -07:00
FUSE_SYMLINK = 6,
FUSE_MKNOD = 8,
FUSE_MKDIR = 9,
FUSE_UNLINK = 10,
FUSE_RMDIR = 11,
FUSE_RENAME = 12,
FUSE_LINK = 13,
2005-09-09 13:10:30 -07:00
FUSE_OPEN = 14,
FUSE_READ = 15,
FUSE_WRITE = 16,
2005-09-09 13:10:28 -07:00
FUSE_STATFS = 17,
2005-09-09 13:10:30 -07:00
FUSE_RELEASE = 18,
FUSE_FSYNC = 20,
FUSE_SETXATTR = 21,
FUSE_GETXATTR = 22,
FUSE_LISTXATTR = 23,
FUSE_REMOVEXATTR = 24,
2005-09-09 13:10:30 -07:00
FUSE_FLUSH = 25,
FUSE_INIT = 26,
FUSE_OPENDIR = 27,
FUSE_READDIR = 28,
FUSE_RELEASEDIR = 29,
2005-11-07 00:59:50 -08:00
FUSE_FSYNCDIR = 30,
FUSE_GETLK = 31,
FUSE_SETLK = 32,
FUSE_SETLKW = 33,
2005-11-07 00:59:51 -08:00
FUSE_ACCESS = 34,
2006-06-25 05:48:54 -07:00
FUSE_CREATE = 35,
FUSE_INTERRUPT = 36,
2006-12-06 20:35:51 -08:00
FUSE_BMAP = 37,
2006-12-06 20:35:52 -08:00
FUSE_DESTROY = 38,
2008-11-26 12:03:55 +01:00
FUSE_IOCTL = 39,
2008-11-26 12:03:55 +01:00
FUSE_POLL = 40,
2010-07-12 14:41:40 +02:00
FUSE_NOTIFY_REPLY = 41,
2010-12-07 20:16:56 +01:00
FUSE_BATCH_FORGET = 42,
/* CUSE specific operations */
CUSE_INIT = 4096,
2005-09-09 13:10:27 -07:00
};
2008-11-26 12:03:55 +01:00
enum fuse_notify_code {
2008-11-26 12:03:55 +01:00
FUSE_NOTIFY_POLL = 1,
2009-05-31 11:13:57 -04:00
FUSE_NOTIFY_INVAL_INODE = 2,
FUSE_NOTIFY_INVAL_ENTRY = 3,
2010-07-12 14:41:40 +02:00
FUSE_NOTIFY_STORE = 4,
2010-07-12 14:41:40 +02:00
FUSE_NOTIFY_RETRIEVE = 5,
2008-11-26 12:03:55 +01:00
FUSE_NOTIFY_CODE_MAX,
};
/* The read buffer is required to be at least 8k, but may be much larger */
#define FUSE_MIN_READ_BUFFER 8192
2005-09-09 13:10:28 -07:00
2007-10-18 03:07:05 -07:00
#define FUSE_COMPAT_ENTRY_OUT_SIZE 120
2005-09-09 13:10:28 -07:00
struct fuse_entry_out {
__u64 nodeid; /* Inode ID */
__u64 generation; /* Inode generation: nodeid:gen must
be unique for the fs's lifetime */
__u64 entry_valid; /* Cache timeout for the name */
__u64 attr_valid; /* Cache timeout for the attributes */
__u32 entry_valid_nsec;
__u32 attr_valid_nsec;
struct fuse_attr attr;
};
struct fuse_forget_in {
2005-09-09 13:10:29 -07:00
__u64 nlookup;
2005-09-09 13:10:28 -07:00
};
2010-12-07 20:16:56 +01:00
struct fuse_forget_one {
__u64 nodeid;
__u64 nlookup;
};
struct fuse_batch_forget_in {
__u32 count;
__u32 dummy;
};
2007-10-18 03:06:59 -07:00
struct fuse_getattr_in {
__u32 getattr_flags;
__u32 dummy;
__u64 fh;
};
2007-10-18 03:07:05 -07:00
#define FUSE_COMPAT_ATTR_OUT_SIZE 96
2005-09-09 13:10:28 -07:00
struct fuse_attr_out {
__u64 attr_valid; /* Cache timeout for the attributes */
__u32 attr_valid_nsec;
__u32 dummy;
struct fuse_attr attr;
};
2009-06-30 20:12:23 +02:00
#define FUSE_COMPAT_MKNOD_IN_SIZE 8
2005-09-09 13:10:29 -07:00
struct fuse_mknod_in {
__u32 mode;
__u32 rdev;
2009-06-30 20:12:23 +02:00
__u32 umask;
__u32 padding;
2005-09-09 13:10:29 -07:00
};
struct fuse_mkdir_in {
__u32 mode;
2009-06-30 20:12:23 +02:00
__u32 umask;
2005-09-09 13:10:29 -07:00
};
struct fuse_rename_in {
__u64 newdir;
};
struct fuse_link_in {
__u64 oldnodeid;
};
struct fuse_setattr_in {
__u32 valid;
2005-09-09 13:10:32 -07:00
__u32 padding;
2005-11-07 00:59:52 -08:00
__u64 fh;
__u64 size;
2007-10-18 03:07:04 -07:00
__u64 lock_owner;
2005-11-07 00:59:52 -08:00
__u64 atime;
__u64 mtime;
__u64 unused2;
__u32 atimensec;
__u32 mtimensec;
__u32 unused3;
__u32 mode;
__u32 unused4;
__u32 uid;
__u32 gid;
__u32 unused5;
2005-09-09 13:10:29 -07:00
};
2005-09-09 13:10:30 -07:00
struct fuse_open_in {
2009-06-30 20:12:23 +02:00
__u32 flags;
__u32 unused;
};
struct fuse_create_in {
2005-09-09 13:10:30 -07:00
__u32 flags;
2005-11-07 00:59:51 -08:00
__u32 mode;
2009-06-30 20:12:23 +02:00
__u32 umask;
__u32 padding;
2005-09-09 13:10:30 -07:00
};
struct fuse_open_out {
__u64 fh;
__u32 open_flags;
2005-09-09 13:10:32 -07:00
__u32 padding;
2005-09-09 13:10:30 -07:00
};
struct fuse_release_in {
__u64 fh;
__u32 flags;
__u32 release_flags;
__u64 lock_owner;
2005-09-09 13:10:30 -07:00
};
struct fuse_flush_in {
__u64 fh;
__u32 unused;
2005-09-09 13:10:32 -07:00
__u32 padding;
__u64 lock_owner;
2005-09-09 13:10:30 -07:00
};
struct fuse_read_in {
__u64 fh;
__u64 offset;
__u32 size;
2007-10-18 03:07:04 -07:00
__u32 read_flags;
__u64 lock_owner;
2007-11-28 16:22:00 -08:00
__u32 flags;
__u32 padding;
2005-09-09 13:10:30 -07:00
};
2007-10-18 03:07:04 -07:00
#define FUSE_COMPAT_WRITE_IN_SIZE 24
2005-09-09 13:10:30 -07:00
struct fuse_write_in {
__u64 fh;
__u64 offset;
__u32 size;
__u32 write_flags;
2007-10-18 03:07:04 -07:00
__u64 lock_owner;
2007-11-28 16:22:00 -08:00
__u32 flags;
__u32 padding;
2005-09-09 13:10:30 -07:00
};
struct fuse_write_out {
__u32 size;
2005-09-09 13:10:32 -07:00
__u32 padding;
2005-09-09 13:10:30 -07:00
};
2006-01-06 00:19:37 -08:00
#define FUSE_COMPAT_STATFS_SIZE 48
2005-09-09 13:10:28 -07:00
struct fuse_statfs_out {
struct fuse_kstatfs st;
};
2005-09-09 13:10:30 -07:00
struct fuse_fsync_in {
__u64 fh;
__u32 fsync_flags;
2005-09-09 13:10:32 -07:00
__u32 padding;
2005-09-09 13:10:30 -07:00
};
struct fuse_setxattr_in {
__u32 size;
__u32 flags;
};
struct fuse_getxattr_in {
__u32 size;
2005-09-09 13:10:32 -07:00
__u32 padding;
};
struct fuse_getxattr_out {
__u32 size;
2005-09-09 13:10:32 -07:00
__u32 padding;
};
struct fuse_lk_in {
__u64 fh;
__u64 owner;
struct fuse_file_lock lk;
2007-10-18 03:07:02 -07:00
__u32 lk_flags;
__u32 padding;
};
struct fuse_lk_out {
struct fuse_file_lock lk;
};
2005-11-07 00:59:50 -08:00
struct fuse_access_in {
__u32 mask;
__u32 padding;
};
struct fuse_init_in {
2005-09-09 13:10:27 -07:00
__u32 major;
__u32 minor;
__u32 max_readahead;
__u32 flags;
2005-09-09 13:10:27 -07:00
};
struct fuse_init_out {
__u32 major;
__u32 minor;
__u32 max_readahead;
__u32 flags;
__u16 max_background;
__u16 congestion_threshold;
__u32 max_write;
};
#define CUSE_INIT_INFO_MAX 4096
struct cuse_init_in {
__u32 major;
__u32 minor;
__u32 unused;
__u32 flags;
};
struct cuse_init_out {
__u32 major;
__u32 minor;
__u32 unused;
__u32 flags;
__u32 max_read;
__u32 max_write;
__u32 dev_major; /* chardev major */
__u32 dev_minor; /* chardev minor */
__u32 spare[10];
};
2006-06-25 05:48:54 -07:00
struct fuse_interrupt_in {
__u64 unique;
};
2006-12-06 20:35:51 -08:00
struct fuse_bmap_in {
__u64 block;
__u32 blocksize;
__u32 padding;
};
struct fuse_bmap_out {
__u64 block;
};
2008-11-26 12:03:55 +01:00
struct fuse_ioctl_in {
__u64 fh;
__u32 flags;
__u32 cmd;
__u64 arg;
__u32 in_size;
__u32 out_size;
};
2010-12-07 20:16:56 +01:00
struct fuse_ioctl_iovec {
__u64 base;
__u64 len;
};
2008-11-26 12:03:55 +01:00
struct fuse_ioctl_out {
__s32 result;
__u32 flags;
__u32 in_iovs;
__u32 out_iovs;
};
2008-11-26 12:03:55 +01:00
struct fuse_poll_in {
__u64 fh;
__u64 kh;
__u32 flags;
__u32 padding;
};
struct fuse_poll_out {
__u32 revents;
__u32 padding;
};
struct fuse_notify_poll_wakeup_out {
__u64 kh;
};
2005-09-09 13:10:27 -07:00
struct fuse_in_header {
__u32 len;
__u32 opcode;
__u64 unique;
__u64 nodeid;
__u32 uid;
__u32 gid;
__u32 pid;
2005-09-09 13:10:32 -07:00
__u32 padding;
2005-09-09 13:10:27 -07:00
};
struct fuse_out_header {
__u32 len;
__s32 error;
__u64 unique;
};
2005-09-09 13:10:28 -07:00
struct fuse_dirent {
__u64 ino;
__u64 off;
__u32 namelen;
__u32 type;
char name[0];
};
2007-07-15 23:39:50 -07:00
#define FUSE_NAME_OFFSET offsetof(struct fuse_dirent, name)
2005-09-09 13:10:28 -07:00
#define FUSE_DIRENT_ALIGN(x) (((x) + sizeof(__u64) - 1) & ~(sizeof(__u64) - 1))
#define FUSE_DIRENT_SIZE(d) \
FUSE_DIRENT_ALIGN(FUSE_NAME_OFFSET + (d)->namelen)
2008-10-16 16:08:57 +02:00
2009-05-31 11:13:57 -04:00
struct fuse_notify_inval_inode_out {
__u64 ino;
__s64 off;
__s64 len;
};
struct fuse_notify_inval_entry_out {
__u64 parent;
__u32 namelen;
__u32 padding;
};
2010-07-12 14:41:40 +02:00
struct fuse_notify_store_out {
__u64 nodeid;
__u64 offset;
__u32 size;
__u32 padding;
};
2010-07-12 14:41:40 +02:00
struct fuse_notify_retrieve_out {
__u64 notify_unique;
__u64 nodeid;
__u64 offset;
__u32 size;
__u32 padding;
};
/* Matches the size of fuse_write_in */
struct fuse_notify_retrieve_in {
__u64 dummy1;
__u64 offset;
__u32 size;
__u32 dummy2;
__u64 dummy3;
__u64 dummy4;
};
2008-10-16 16:08:57 +02:00
#endif /* _LINUX_FUSE_H */