1d8a5ba45SMiklos Szeredi /* 2d8a5ba45SMiklos Szeredi FUSE: Filesystem in Userspace 31729a16cSMiklos Szeredi Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu> 4d8a5ba45SMiklos Szeredi 5d8a5ba45SMiklos Szeredi This program can be distributed under the terms of the GNU GPL. 6d8a5ba45SMiklos Szeredi See the file COPYING. 7d8a5ba45SMiklos Szeredi */ 8d8a5ba45SMiklos Szeredi 929d434b3STejun Heo #ifndef _FS_FUSE_I_H 1029d434b3STejun Heo #define _FS_FUSE_I_H 1129d434b3STejun Heo 12d8a5ba45SMiklos Szeredi #include <linux/fuse.h> 13d8a5ba45SMiklos Szeredi #include <linux/fs.h> 1451eb01e7SMiklos Szeredi #include <linux/mount.h> 15d8a5ba45SMiklos Szeredi #include <linux/wait.h> 16d8a5ba45SMiklos Szeredi #include <linux/list.h> 17d8a5ba45SMiklos Szeredi #include <linux/spinlock.h> 18d8a5ba45SMiklos Szeredi #include <linux/mm.h> 19d8a5ba45SMiklos Szeredi #include <linux/backing-dev.h> 20bafa9654SMiklos Szeredi #include <linux/mutex.h> 213be5a52bSMiklos Szeredi #include <linux/rwsem.h> 2295668a69STejun Heo #include <linux/rbtree.h> 2395668a69STejun Heo #include <linux/poll.h> 245a18ec17SMiklos Szeredi #include <linux/workqueue.h> 25d8a5ba45SMiklos Szeredi 26334f485dSMiklos Szeredi /** Max number of pages that can be used in a single read request */ 27334f485dSMiklos Szeredi #define FUSE_MAX_PAGES_PER_REQ 32 28334f485dSMiklos Szeredi 293be5a52bSMiklos Szeredi /** Bias for fi->writectr, meaning new writepages must not be sent */ 303be5a52bSMiklos Szeredi #define FUSE_NOWRITE INT_MIN 313be5a52bSMiklos Szeredi 321d3d752bSMiklos Szeredi /** It could be as large as PATH_MAX, but would that have any uses? */ 331d3d752bSMiklos Szeredi #define FUSE_NAME_MAX 1024 341d3d752bSMiklos Szeredi 35bafa9654SMiklos Szeredi /** Number of dentries for each connection in the control filesystem */ 3679a9d994SCsaba Henk #define FUSE_CTL_NUM_DENTRIES 5 37bafa9654SMiklos Szeredi 381e9a4ed9SMiklos Szeredi /** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem 391e9a4ed9SMiklos Szeredi module will check permissions based on the file mode. Otherwise no 401e9a4ed9SMiklos Szeredi permission checking is done in the kernel */ 411e9a4ed9SMiklos Szeredi #define FUSE_DEFAULT_PERMISSIONS (1 << 0) 421e9a4ed9SMiklos Szeredi 431e9a4ed9SMiklos Szeredi /** If the FUSE_ALLOW_OTHER flag is given, then not only the user 441e9a4ed9SMiklos Szeredi doing the mount will be allowed to access the filesystem */ 451e9a4ed9SMiklos Szeredi #define FUSE_ALLOW_OTHER (1 << 1) 461e9a4ed9SMiklos Szeredi 47bafa9654SMiklos Szeredi /** List of active connections */ 48bafa9654SMiklos Szeredi extern struct list_head fuse_conn_list; 49bafa9654SMiklos Szeredi 50bafa9654SMiklos Szeredi /** Global mutex protecting fuse_conn_list and the control filesystem */ 51bafa9654SMiklos Szeredi extern struct mutex fuse_mutex; 52413ef8cbSMiklos Szeredi 5379a9d994SCsaba Henk /** Module parameters */ 5479a9d994SCsaba Henk extern unsigned max_user_bgreq; 5579a9d994SCsaba Henk extern unsigned max_user_congthresh; 5679a9d994SCsaba Henk 5707e77dcaSMiklos Szeredi /* One forget request */ 5807e77dcaSMiklos Szeredi struct fuse_forget_link { 5902c048b9SMiklos Szeredi struct fuse_forget_one forget_one; 6007e77dcaSMiklos Szeredi struct fuse_forget_link *next; 6107e77dcaSMiklos Szeredi }; 6207e77dcaSMiklos Szeredi 63d8a5ba45SMiklos Szeredi /** FUSE inode */ 64d8a5ba45SMiklos Szeredi struct fuse_inode { 65d8a5ba45SMiklos Szeredi /** Inode data */ 66d8a5ba45SMiklos Szeredi struct inode inode; 67d8a5ba45SMiklos Szeredi 68d8a5ba45SMiklos Szeredi /** Unique ID, which identifies the inode between userspace 69d8a5ba45SMiklos Szeredi * and kernel */ 70d8a5ba45SMiklos Szeredi u64 nodeid; 71d8a5ba45SMiklos Szeredi 729e6268dbSMiklos Szeredi /** Number of lookups on this inode */ 739e6268dbSMiklos Szeredi u64 nlookup; 749e6268dbSMiklos Szeredi 75e5e5558eSMiklos Szeredi /** The request used for sending the FORGET message */ 7607e77dcaSMiklos Szeredi struct fuse_forget_link *forget; 77e5e5558eSMiklos Szeredi 78d8a5ba45SMiklos Szeredi /** Time in jiffies until the file attributes are valid */ 790a0898cfSMiklos Szeredi u64 i_time; 80ebc14c4dSMiklos Szeredi 81ebc14c4dSMiklos Szeredi /** The sticky bit in inode->i_mode may have been removed, so 82ebc14c4dSMiklos Szeredi preserve the original mode */ 83541af6a0SAl Viro umode_t orig_i_mode; 841fb69e78SMiklos Szeredi 8545c72cd7SPavel Shilovsky /** 64 bit inode number */ 8645c72cd7SPavel Shilovsky u64 orig_ino; 8745c72cd7SPavel Shilovsky 881fb69e78SMiklos Szeredi /** Version of last attribute change */ 891fb69e78SMiklos Szeredi u64 attr_version; 9093a8c3cdSMiklos Szeredi 9193a8c3cdSMiklos Szeredi /** Files usable in writepage. Protected by fc->lock */ 9293a8c3cdSMiklos Szeredi struct list_head write_files; 933be5a52bSMiklos Szeredi 943be5a52bSMiklos Szeredi /** Writepages pending on truncate or fsync */ 953be5a52bSMiklos Szeredi struct list_head queued_writes; 963be5a52bSMiklos Szeredi 973be5a52bSMiklos Szeredi /** Number of sent writes, a negative bias (FUSE_NOWRITE) 983be5a52bSMiklos Szeredi * means more writes are blocked */ 993be5a52bSMiklos Szeredi int writectr; 1003be5a52bSMiklos Szeredi 1013be5a52bSMiklos Szeredi /** Waitq for writepage completion */ 1023be5a52bSMiklos Szeredi wait_queue_head_t page_waitq; 1033be5a52bSMiklos Szeredi 1043be5a52bSMiklos Szeredi /** List of writepage requestst (pending or sent) */ 1053be5a52bSMiklos Szeredi struct list_head writepages; 106d8a5ba45SMiklos Szeredi }; 107d8a5ba45SMiklos Szeredi 108da5e4714SMiklos Szeredi struct fuse_conn; 109da5e4714SMiklos Szeredi 110b6aeadedSMiklos Szeredi /** FUSE specific file data */ 111b6aeadedSMiklos Szeredi struct fuse_file { 112da5e4714SMiklos Szeredi /** Fuse connection for this file */ 113da5e4714SMiklos Szeredi struct fuse_conn *fc; 114da5e4714SMiklos Szeredi 115b6aeadedSMiklos Szeredi /** Request reserved for flush and release */ 11633649c91SMiklos Szeredi struct fuse_req *reserved_req; 117b6aeadedSMiklos Szeredi 118acf99433STejun Heo /** Kernel file handle guaranteed to be unique */ 119acf99433STejun Heo u64 kh; 120acf99433STejun Heo 121b6aeadedSMiklos Szeredi /** File handle used by userspace */ 122b6aeadedSMiklos Szeredi u64 fh; 123c756e0a4SMiklos Szeredi 124da5e4714SMiklos Szeredi /** Node id of this file */ 125da5e4714SMiklos Szeredi u64 nodeid; 126da5e4714SMiklos Szeredi 127c756e0a4SMiklos Szeredi /** Refcount */ 128c756e0a4SMiklos Szeredi atomic_t count; 12993a8c3cdSMiklos Szeredi 130c7b7143cSMiklos Szeredi /** FOPEN_* flags returned by open */ 131c7b7143cSMiklos Szeredi u32 open_flags; 132c7b7143cSMiklos Szeredi 13393a8c3cdSMiklos Szeredi /** Entry on inode's write_files list */ 13493a8c3cdSMiklos Szeredi struct list_head write_entry; 13595668a69STejun Heo 13695668a69STejun Heo /** RB node to be linked on fuse_conn->polled_files */ 13795668a69STejun Heo struct rb_node polled_node; 13895668a69STejun Heo 13995668a69STejun Heo /** Wait queue head for poll */ 14095668a69STejun Heo wait_queue_head_t poll_wait; 14137fb3a30SMiklos Szeredi 14237fb3a30SMiklos Szeredi /** Has flock been performed on this file? */ 14337fb3a30SMiklos Szeredi bool flock:1; 144b6aeadedSMiklos Szeredi }; 145b6aeadedSMiklos Szeredi 146334f485dSMiklos Szeredi /** One input argument of a request */ 147334f485dSMiklos Szeredi struct fuse_in_arg { 148334f485dSMiklos Szeredi unsigned size; 149334f485dSMiklos Szeredi const void *value; 150334f485dSMiklos Szeredi }; 151334f485dSMiklos Szeredi 152334f485dSMiklos Szeredi /** The request input */ 153334f485dSMiklos Szeredi struct fuse_in { 154334f485dSMiklos Szeredi /** The request header */ 155334f485dSMiklos Szeredi struct fuse_in_header h; 156334f485dSMiklos Szeredi 157334f485dSMiklos Szeredi /** True if the data for the last argument is in req->pages */ 158334f485dSMiklos Szeredi unsigned argpages:1; 159334f485dSMiklos Szeredi 160334f485dSMiklos Szeredi /** Number of arguments */ 161334f485dSMiklos Szeredi unsigned numargs; 162334f485dSMiklos Szeredi 163334f485dSMiklos Szeredi /** Array of arguments */ 164334f485dSMiklos Szeredi struct fuse_in_arg args[3]; 165334f485dSMiklos Szeredi }; 166334f485dSMiklos Szeredi 167334f485dSMiklos Szeredi /** One output argument of a request */ 168334f485dSMiklos Szeredi struct fuse_arg { 169334f485dSMiklos Szeredi unsigned size; 170334f485dSMiklos Szeredi void *value; 171334f485dSMiklos Szeredi }; 172334f485dSMiklos Szeredi 173334f485dSMiklos Szeredi /** The request output */ 174334f485dSMiklos Szeredi struct fuse_out { 175334f485dSMiklos Szeredi /** Header returned from userspace */ 176334f485dSMiklos Szeredi struct fuse_out_header h; 177334f485dSMiklos Szeredi 178095da6cbSMiklos Szeredi /* 179095da6cbSMiklos Szeredi * The following bitfields are not changed during the request 180095da6cbSMiklos Szeredi * processing 181095da6cbSMiklos Szeredi */ 182095da6cbSMiklos Szeredi 183334f485dSMiklos Szeredi /** Last argument is variable length (can be shorter than 184334f485dSMiklos Szeredi arg->size) */ 185334f485dSMiklos Szeredi unsigned argvar:1; 186334f485dSMiklos Szeredi 187334f485dSMiklos Szeredi /** Last argument is a list of pages to copy data to */ 188334f485dSMiklos Szeredi unsigned argpages:1; 189334f485dSMiklos Szeredi 190334f485dSMiklos Szeredi /** Zero partially or not copied pages */ 191334f485dSMiklos Szeredi unsigned page_zeroing:1; 192334f485dSMiklos Szeredi 193ce534fb0SMiklos Szeredi /** Pages may be replaced with new ones */ 194ce534fb0SMiklos Szeredi unsigned page_replace:1; 195ce534fb0SMiklos Szeredi 196334f485dSMiklos Szeredi /** Number or arguments */ 197334f485dSMiklos Szeredi unsigned numargs; 198334f485dSMiklos Szeredi 199334f485dSMiklos Szeredi /** Array of arguments */ 200334f485dSMiklos Szeredi struct fuse_arg args[3]; 201334f485dSMiklos Szeredi }; 202334f485dSMiklos Szeredi 20383cfd493SMiklos Szeredi /** The request state */ 20483cfd493SMiklos Szeredi enum fuse_req_state { 20583cfd493SMiklos Szeredi FUSE_REQ_INIT = 0, 20683cfd493SMiklos Szeredi FUSE_REQ_PENDING, 20783cfd493SMiklos Szeredi FUSE_REQ_READING, 20883cfd493SMiklos Szeredi FUSE_REQ_SENT, 209a4d27e75SMiklos Szeredi FUSE_REQ_WRITING, 21083cfd493SMiklos Szeredi FUSE_REQ_FINISHED 21183cfd493SMiklos Szeredi }; 21283cfd493SMiklos Szeredi 213334f485dSMiklos Szeredi /** 214334f485dSMiklos Szeredi * A request to the client 215334f485dSMiklos Szeredi */ 216334f485dSMiklos Szeredi struct fuse_req { 217ce1d5a49SMiklos Szeredi /** This can be on either pending processing or io lists in 218ce1d5a49SMiklos Szeredi fuse_conn */ 219334f485dSMiklos Szeredi struct list_head list; 220334f485dSMiklos Szeredi 221a4d27e75SMiklos Szeredi /** Entry on the interrupts list */ 222a4d27e75SMiklos Szeredi struct list_head intr_entry; 223a4d27e75SMiklos Szeredi 224334f485dSMiklos Szeredi /** refcount */ 225334f485dSMiklos Szeredi atomic_t count; 226334f485dSMiklos Szeredi 227a4d27e75SMiklos Szeredi /** Unique ID for the interrupt request */ 228a4d27e75SMiklos Szeredi u64 intr_unique; 229a4d27e75SMiklos Szeredi 230095da6cbSMiklos Szeredi /* 231095da6cbSMiklos Szeredi * The following bitfields are either set once before the 232095da6cbSMiklos Szeredi * request is queued or setting/clearing them is protected by 233d7133114SMiklos Szeredi * fuse_conn->lock 234095da6cbSMiklos Szeredi */ 235095da6cbSMiklos Szeredi 236334f485dSMiklos Szeredi /** True if the request has reply */ 237334f485dSMiklos Szeredi unsigned isreply:1; 238334f485dSMiklos Szeredi 23951eb01e7SMiklos Szeredi /** Force sending of the request even if interrupted */ 24051eb01e7SMiklos Szeredi unsigned force:1; 24151eb01e7SMiklos Szeredi 242f9a2842eSMiklos Szeredi /** The request was aborted */ 243f9a2842eSMiklos Szeredi unsigned aborted:1; 244334f485dSMiklos Szeredi 245334f485dSMiklos Szeredi /** Request is sent in the background */ 246334f485dSMiklos Szeredi unsigned background:1; 247334f485dSMiklos Szeredi 248a4d27e75SMiklos Szeredi /** The request has been interrupted */ 249a4d27e75SMiklos Szeredi unsigned interrupted:1; 250a4d27e75SMiklos Szeredi 251334f485dSMiklos Szeredi /** Data is being copied to/from the request */ 252334f485dSMiklos Szeredi unsigned locked:1; 253334f485dSMiklos Szeredi 2549bc5dddaSMiklos Szeredi /** Request is counted as "waiting" */ 2559bc5dddaSMiklos Szeredi unsigned waiting:1; 2569bc5dddaSMiklos Szeredi 25783cfd493SMiklos Szeredi /** State of the request */ 25883cfd493SMiklos Szeredi enum fuse_req_state state; 259334f485dSMiklos Szeredi 260334f485dSMiklos Szeredi /** The request input */ 261334f485dSMiklos Szeredi struct fuse_in in; 262334f485dSMiklos Szeredi 263334f485dSMiklos Szeredi /** The request output */ 264334f485dSMiklos Szeredi struct fuse_out out; 265334f485dSMiklos Szeredi 266334f485dSMiklos Szeredi /** Used to wake up the task waiting for completion of request*/ 267334f485dSMiklos Szeredi wait_queue_head_t waitq; 268334f485dSMiklos Szeredi 269334f485dSMiklos Szeredi /** Data for asynchronous requests */ 270334f485dSMiklos Szeredi union { 271b57d4264SMiklos Szeredi struct { 2725a18ec17SMiklos Szeredi union { 273b57d4264SMiklos Szeredi struct fuse_release_in in; 2745a18ec17SMiklos Szeredi struct work_struct work; 2755a18ec17SMiklos Szeredi }; 276b0be46ebSMiklos Szeredi struct path path; 277b57d4264SMiklos Szeredi } release; 2783ec870d5SMiklos Szeredi struct fuse_init_in init_in; 2793ec870d5SMiklos Szeredi struct fuse_init_out init_out; 28008cbf542STejun Heo struct cuse_init_in cuse_init_in; 2815c5c5e51SMiklos Szeredi struct { 2825c5c5e51SMiklos Szeredi struct fuse_read_in in; 2835c5c5e51SMiklos Szeredi u64 attr_ver; 2845c5c5e51SMiklos Szeredi } read; 285b25e82e5SMiklos Szeredi struct { 286b25e82e5SMiklos Szeredi struct fuse_write_in in; 287b25e82e5SMiklos Szeredi struct fuse_write_out out; 288b25e82e5SMiklos Szeredi } write; 2892d45ba38SMiklos Szeredi struct fuse_notify_retrieve_in retrieve_in; 29071421259SMiklos Szeredi struct fuse_lk_in lk_in; 291334f485dSMiklos Szeredi } misc; 292334f485dSMiklos Szeredi 293334f485dSMiklos Szeredi /** page vector */ 294334f485dSMiklos Szeredi struct page *pages[FUSE_MAX_PAGES_PER_REQ]; 295334f485dSMiklos Szeredi 296334f485dSMiklos Szeredi /** number of pages in vector */ 297334f485dSMiklos Szeredi unsigned num_pages; 298334f485dSMiklos Szeredi 299334f485dSMiklos Szeredi /** offset of data on first page */ 300334f485dSMiklos Szeredi unsigned page_offset; 301334f485dSMiklos Szeredi 302334f485dSMiklos Szeredi /** File used in the request (or NULL) */ 303c756e0a4SMiklos Szeredi struct fuse_file *ff; 30464c6d8edSMiklos Szeredi 3053be5a52bSMiklos Szeredi /** Inode used in the request or NULL */ 3063be5a52bSMiklos Szeredi struct inode *inode; 3073be5a52bSMiklos Szeredi 3083be5a52bSMiklos Szeredi /** Link on fi->writepages */ 3093be5a52bSMiklos Szeredi struct list_head writepages_entry; 3103be5a52bSMiklos Szeredi 31164c6d8edSMiklos Szeredi /** Request completion callback */ 31264c6d8edSMiklos Szeredi void (*end)(struct fuse_conn *, struct fuse_req *); 31333649c91SMiklos Szeredi 31433649c91SMiklos Szeredi /** Request is stolen from fuse_file->reserved_req */ 31533649c91SMiklos Szeredi struct file *stolen_file; 316334f485dSMiklos Szeredi }; 317334f485dSMiklos Szeredi 318d8a5ba45SMiklos Szeredi /** 319d8a5ba45SMiklos Szeredi * A Fuse connection. 320d8a5ba45SMiklos Szeredi * 321d8a5ba45SMiklos Szeredi * This structure is created, when the filesystem is mounted, and is 322d8a5ba45SMiklos Szeredi * destroyed, when the client device is closed and the filesystem is 323d8a5ba45SMiklos Szeredi * unmounted. 324d8a5ba45SMiklos Szeredi */ 325d8a5ba45SMiklos Szeredi struct fuse_conn { 326d7133114SMiklos Szeredi /** Lock protecting accessess to members of this structure */ 327d7133114SMiklos Szeredi spinlock_t lock; 328d7133114SMiklos Szeredi 329d2a85164SMiklos Szeredi /** Mutex protecting against directory alias creation */ 330d2a85164SMiklos Szeredi struct mutex inst_mutex; 331d2a85164SMiklos Szeredi 332bafa9654SMiklos Szeredi /** Refcount */ 333bafa9654SMiklos Szeredi atomic_t count; 334bafa9654SMiklos Szeredi 335d8a5ba45SMiklos Szeredi /** The user id for this mount */ 336d8a5ba45SMiklos Szeredi uid_t user_id; 337d8a5ba45SMiklos Szeredi 33887729a55SMiklos Szeredi /** The group id for this mount */ 33987729a55SMiklos Szeredi gid_t group_id; 34087729a55SMiklos Szeredi 3411e9a4ed9SMiklos Szeredi /** The fuse mount flags for this mount */ 3421e9a4ed9SMiklos Szeredi unsigned flags; 3431e9a4ed9SMiklos Szeredi 344db50b96cSMiklos Szeredi /** Maximum read size */ 345db50b96cSMiklos Szeredi unsigned max_read; 346db50b96cSMiklos Szeredi 347413ef8cbSMiklos Szeredi /** Maximum write size */ 348413ef8cbSMiklos Szeredi unsigned max_write; 349413ef8cbSMiklos Szeredi 350334f485dSMiklos Szeredi /** Readers of the connection are waiting on this */ 351334f485dSMiklos Szeredi wait_queue_head_t waitq; 352334f485dSMiklos Szeredi 353334f485dSMiklos Szeredi /** The list of pending requests */ 354334f485dSMiklos Szeredi struct list_head pending; 355334f485dSMiklos Szeredi 356334f485dSMiklos Szeredi /** The list of requests being processed */ 357334f485dSMiklos Szeredi struct list_head processing; 358334f485dSMiklos Szeredi 359d77a1d5bSMiklos Szeredi /** The list of requests under I/O */ 360d77a1d5bSMiklos Szeredi struct list_head io; 361d77a1d5bSMiklos Szeredi 362acf99433STejun Heo /** The next unique kernel file handle */ 363acf99433STejun Heo u64 khctr; 364acf99433STejun Heo 36595668a69STejun Heo /** rbtree of fuse_files waiting for poll events indexed by ph */ 36695668a69STejun Heo struct rb_root polled_files; 36795668a69STejun Heo 3687a6d3c8bSCsaba Henk /** Maximum number of outstanding background requests */ 3697a6d3c8bSCsaba Henk unsigned max_background; 3707a6d3c8bSCsaba Henk 3717a6d3c8bSCsaba Henk /** Number of background requests at which congestion starts */ 3727a6d3c8bSCsaba Henk unsigned congestion_threshold; 3737a6d3c8bSCsaba Henk 37408a53cdcSMiklos Szeredi /** Number of requests currently in the background */ 37508a53cdcSMiklos Szeredi unsigned num_background; 37608a53cdcSMiklos Szeredi 377d12def1bSMiklos Szeredi /** Number of background requests currently queued for userspace */ 378d12def1bSMiklos Szeredi unsigned active_background; 379d12def1bSMiklos Szeredi 380d12def1bSMiklos Szeredi /** The list of background requests set aside for later queuing */ 381d12def1bSMiklos Szeredi struct list_head bg_queue; 382d12def1bSMiklos Szeredi 383a4d27e75SMiklos Szeredi /** Pending interrupts */ 384a4d27e75SMiklos Szeredi struct list_head interrupts; 385a4d27e75SMiklos Szeredi 38607e77dcaSMiklos Szeredi /** Queue of pending forgets */ 38707e77dcaSMiklos Szeredi struct fuse_forget_link forget_list_head; 38807e77dcaSMiklos Szeredi struct fuse_forget_link *forget_list_tail; 38907e77dcaSMiklos Szeredi 39007e77dcaSMiklos Szeredi /** Batching of FORGET requests (positive indicates FORGET batch) */ 39107e77dcaSMiklos Szeredi int forget_batch; 39207e77dcaSMiklos Szeredi 39308a53cdcSMiklos Szeredi /** Flag indicating if connection is blocked. This will be 39408a53cdcSMiklos Szeredi the case before the INIT reply is received, and if there 39508a53cdcSMiklos Szeredi are too many outstading backgrounds requests */ 39608a53cdcSMiklos Szeredi int blocked; 39708a53cdcSMiklos Szeredi 39808a53cdcSMiklos Szeredi /** waitq for blocked connection */ 39908a53cdcSMiklos Szeredi wait_queue_head_t blocked_waitq; 40008a53cdcSMiklos Szeredi 401de5e3decSMiklos Szeredi /** waitq for reserved requests */ 402de5e3decSMiklos Szeredi wait_queue_head_t reserved_req_waitq; 403de5e3decSMiklos Szeredi 404334f485dSMiklos Szeredi /** The next unique request id */ 405334f485dSMiklos Szeredi u64 reqctr; 406334f485dSMiklos Szeredi 40769a53bf2SMiklos Szeredi /** Connection established, cleared on umount, connection 40869a53bf2SMiklos Szeredi abort and device release */ 409095da6cbSMiklos Szeredi unsigned connected; 4101e9a4ed9SMiklos Szeredi 411095da6cbSMiklos Szeredi /** Connection failed (version mismatch). Cannot race with 412095da6cbSMiklos Szeredi setting other bitfields since it is only set once in INIT 413095da6cbSMiklos Szeredi reply, before any other request, and never cleared */ 414334f485dSMiklos Szeredi unsigned conn_error:1; 415334f485dSMiklos Szeredi 4160ec7ca41SMiklos Szeredi /** Connection successful. Only set in INIT */ 4170ec7ca41SMiklos Szeredi unsigned conn_init:1; 4180ec7ca41SMiklos Szeredi 4199cd68455SMiklos Szeredi /** Do readpages asynchronously? Only set in INIT */ 4209cd68455SMiklos Szeredi unsigned async_read:1; 4219cd68455SMiklos Szeredi 4226ff958edSMiklos Szeredi /** Do not send separate SETATTR request before open(O_TRUNC) */ 4236ff958edSMiklos Szeredi unsigned atomic_o_trunc:1; 4246ff958edSMiklos Szeredi 42533670fa2SMiklos Szeredi /** Filesystem supports NFS exporting. Only set in INIT */ 42633670fa2SMiklos Szeredi unsigned export_support:1; 42733670fa2SMiklos Szeredi 428a325f9b9STejun Heo /** Set if bdi is valid */ 429a325f9b9STejun Heo unsigned bdi_initialized:1; 430a325f9b9STejun Heo 431095da6cbSMiklos Szeredi /* 432095da6cbSMiklos Szeredi * The following bitfields are only for optimization purposes 433095da6cbSMiklos Szeredi * and hence races in setting them will not cause malfunction 434095da6cbSMiklos Szeredi */ 435095da6cbSMiklos Szeredi 436b6aeadedSMiklos Szeredi /** Is fsync not implemented by fs? */ 437b6aeadedSMiklos Szeredi unsigned no_fsync:1; 438b6aeadedSMiklos Szeredi 43982547981SMiklos Szeredi /** Is fsyncdir not implemented by fs? */ 44082547981SMiklos Szeredi unsigned no_fsyncdir:1; 44182547981SMiklos Szeredi 442b6aeadedSMiklos Szeredi /** Is flush not implemented by fs? */ 443b6aeadedSMiklos Szeredi unsigned no_flush:1; 444b6aeadedSMiklos Szeredi 44592a8780eSMiklos Szeredi /** Is setxattr not implemented by fs? */ 44692a8780eSMiklos Szeredi unsigned no_setxattr:1; 44792a8780eSMiklos Szeredi 44892a8780eSMiklos Szeredi /** Is getxattr not implemented by fs? */ 44992a8780eSMiklos Szeredi unsigned no_getxattr:1; 45092a8780eSMiklos Szeredi 45192a8780eSMiklos Szeredi /** Is listxattr not implemented by fs? */ 45292a8780eSMiklos Szeredi unsigned no_listxattr:1; 45392a8780eSMiklos Szeredi 45492a8780eSMiklos Szeredi /** Is removexattr not implemented by fs? */ 45592a8780eSMiklos Szeredi unsigned no_removexattr:1; 45692a8780eSMiklos Szeredi 45737fb3a30SMiklos Szeredi /** Are posix file locking primitives not implemented by fs? */ 45871421259SMiklos Szeredi unsigned no_lock:1; 45971421259SMiklos Szeredi 46031d40d74SMiklos Szeredi /** Is access not implemented by fs? */ 46131d40d74SMiklos Szeredi unsigned no_access:1; 46231d40d74SMiklos Szeredi 463fd72faacSMiklos Szeredi /** Is create not implemented by fs? */ 464fd72faacSMiklos Szeredi unsigned no_create:1; 465fd72faacSMiklos Szeredi 466a4d27e75SMiklos Szeredi /** Is interrupt not implemented by fs? */ 467a4d27e75SMiklos Szeredi unsigned no_interrupt:1; 468a4d27e75SMiklos Szeredi 469b2d2272fSMiklos Szeredi /** Is bmap not implemented by fs? */ 470b2d2272fSMiklos Szeredi unsigned no_bmap:1; 471b2d2272fSMiklos Szeredi 47295668a69STejun Heo /** Is poll not implemented by fs? */ 47395668a69STejun Heo unsigned no_poll:1; 47495668a69STejun Heo 47578bb6cb9SMiklos Szeredi /** Do multi-page cached writes */ 47678bb6cb9SMiklos Szeredi unsigned big_writes:1; 47778bb6cb9SMiklos Szeredi 478e0a43ddcSMiklos Szeredi /** Don't apply umask to creation modes */ 479e0a43ddcSMiklos Szeredi unsigned dont_mask:1; 480e0a43ddcSMiklos Szeredi 48137fb3a30SMiklos Szeredi /** Are BSD file locking primitives not implemented by fs? */ 48237fb3a30SMiklos Szeredi unsigned no_flock:1; 48337fb3a30SMiklos Szeredi 484519c6040SMiklos Szeredi /** Is fallocate not implemented by fs? */ 485519c6040SMiklos Szeredi unsigned no_fallocate:1; 486519c6040SMiklos Szeredi 487*72d0d248SBrian Foster /** Use enhanced/automatic page cache invalidation. */ 488*72d0d248SBrian Foster unsigned auto_inval_data:1; 489*72d0d248SBrian Foster 4900cd5b885SMiklos Szeredi /** The number of requests waiting for completion */ 4910cd5b885SMiklos Szeredi atomic_t num_waiting; 4920cd5b885SMiklos Szeredi 49345714d65SMiklos Szeredi /** Negotiated minor version */ 49445714d65SMiklos Szeredi unsigned minor; 49545714d65SMiklos Szeredi 496d8a5ba45SMiklos Szeredi /** Backing dev info */ 497d8a5ba45SMiklos Szeredi struct backing_dev_info bdi; 498f543f253SMiklos Szeredi 499bafa9654SMiklos Szeredi /** Entry on the fuse_conn_list */ 500bafa9654SMiklos Szeredi struct list_head entry; 501bafa9654SMiklos Szeredi 502b6f2fcbcSMiklos Szeredi /** Device ID from super block */ 503b6f2fcbcSMiklos Szeredi dev_t dev; 504bafa9654SMiklos Szeredi 505bafa9654SMiklos Szeredi /** Dentries in the control filesystem */ 506bafa9654SMiklos Szeredi struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES]; 507bafa9654SMiklos Szeredi 508bafa9654SMiklos Szeredi /** number of dentries used in the above array */ 509bafa9654SMiklos Szeredi int ctl_ndents; 510385a17bfSJeff Dike 511385a17bfSJeff Dike /** O_ASYNC requests */ 512385a17bfSJeff Dike struct fasync_struct *fasync; 5139c8ef561SMiklos Szeredi 5149c8ef561SMiklos Szeredi /** Key for lock owner ID scrambling */ 5159c8ef561SMiklos Szeredi u32 scramble_key[4]; 5160ec7ca41SMiklos Szeredi 5170ec7ca41SMiklos Szeredi /** Reserved request for the DESTROY message */ 5180ec7ca41SMiklos Szeredi struct fuse_req *destroy_req; 5191fb69e78SMiklos Szeredi 5201fb69e78SMiklos Szeredi /** Version counter for attribute changes */ 5211fb69e78SMiklos Szeredi u64 attr_version; 52243901aabSTejun Heo 52343901aabSTejun Heo /** Called on final put */ 52443901aabSTejun Heo void (*release)(struct fuse_conn *); 5253b463ae0SJohn Muir 5263b463ae0SJohn Muir /** Super block for this connection. */ 5273b463ae0SJohn Muir struct super_block *sb; 5283b463ae0SJohn Muir 5293b463ae0SJohn Muir /** Read/write semaphore to hold when accessing sb. */ 5303b463ae0SJohn Muir struct rw_semaphore killsb; 531d8a5ba45SMiklos Szeredi }; 532d8a5ba45SMiklos Szeredi 533d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) 534d8a5ba45SMiklos Szeredi { 5356383bdaaSMiklos Szeredi return sb->s_fs_info; 536d8a5ba45SMiklos Szeredi } 537d8a5ba45SMiklos Szeredi 538d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn(struct inode *inode) 539d8a5ba45SMiklos Szeredi { 540d8a5ba45SMiklos Szeredi return get_fuse_conn_super(inode->i_sb); 541d8a5ba45SMiklos Szeredi } 542d8a5ba45SMiklos Szeredi 543d8a5ba45SMiklos Szeredi static inline struct fuse_inode *get_fuse_inode(struct inode *inode) 544d8a5ba45SMiklos Szeredi { 545d8a5ba45SMiklos Szeredi return container_of(inode, struct fuse_inode, inode); 546d8a5ba45SMiklos Szeredi } 547d8a5ba45SMiklos Szeredi 548d8a5ba45SMiklos Szeredi static inline u64 get_node_id(struct inode *inode) 549d8a5ba45SMiklos Szeredi { 550d8a5ba45SMiklos Szeredi return get_fuse_inode(inode)->nodeid; 551d8a5ba45SMiklos Szeredi } 552d8a5ba45SMiklos Szeredi 553334f485dSMiklos Szeredi /** Device operations */ 5544b6f5d20SArjan van de Ven extern const struct file_operations fuse_dev_operations; 555334f485dSMiklos Szeredi 5564269590aSAl Viro extern const struct dentry_operations fuse_dentry_operations; 557dbd561d2SMiklos Szeredi 558d8a5ba45SMiklos Szeredi /** 5593b463ae0SJohn Muir * Inode to nodeid comparison. 5603b463ae0SJohn Muir */ 5613b463ae0SJohn Muir int fuse_inode_eq(struct inode *inode, void *_nodeidp); 5623b463ae0SJohn Muir 5633b463ae0SJohn Muir /** 564e5e5558eSMiklos Szeredi * Get a filled in inode 565e5e5558eSMiklos Szeredi */ 566b48badf0SMiklos Szeredi struct inode *fuse_iget(struct super_block *sb, u64 nodeid, 5671fb69e78SMiklos Szeredi int generation, struct fuse_attr *attr, 5681fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 569e5e5558eSMiklos Szeredi 57033670fa2SMiklos Szeredi int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name, 57133670fa2SMiklos Szeredi struct fuse_entry_out *outarg, struct inode **inode); 57233670fa2SMiklos Szeredi 573e5e5558eSMiklos Szeredi /** 574e5e5558eSMiklos Szeredi * Send FORGET command 575e5e5558eSMiklos Szeredi */ 57607e77dcaSMiklos Szeredi void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget, 577b48badf0SMiklos Szeredi u64 nodeid, u64 nlookup); 578e5e5558eSMiklos Szeredi 57907e77dcaSMiklos Szeredi struct fuse_forget_link *fuse_alloc_forget(void); 58007e77dcaSMiklos Szeredi 581e5e5558eSMiklos Szeredi /** 582361b1eb5SMiklos Szeredi * Initialize READ or READDIR request 58304730fefSMiklos Szeredi */ 584a6643094SMiklos Szeredi void fuse_read_fill(struct fuse_req *req, struct file *file, 5852106cb18SMiklos Szeredi loff_t pos, size_t count, int opcode); 58604730fefSMiklos Szeredi 58704730fefSMiklos Szeredi /** 58804730fefSMiklos Szeredi * Send OPEN or OPENDIR request 58904730fefSMiklos Szeredi */ 59091fe96b4SMiklos Szeredi int fuse_open_common(struct inode *inode, struct file *file, bool isdir); 59104730fefSMiklos Szeredi 592acf99433STejun Heo struct fuse_file *fuse_file_alloc(struct fuse_conn *fc); 593c7b7143cSMiklos Szeredi struct fuse_file *fuse_file_get(struct fuse_file *ff); 594fd72faacSMiklos Szeredi void fuse_file_free(struct fuse_file *ff); 595c7b7143cSMiklos Szeredi void fuse_finish_open(struct inode *inode, struct file *file); 596fd72faacSMiklos Szeredi 5978b0797a4SMiklos Szeredi void fuse_sync_release(struct fuse_file *ff, int flags); 598c756e0a4SMiklos Szeredi 59904730fefSMiklos Szeredi /** 60004730fefSMiklos Szeredi * Send RELEASE or RELEASEDIR request 60104730fefSMiklos Szeredi */ 6028b0797a4SMiklos Szeredi void fuse_release_common(struct file *file, int opcode); 60304730fefSMiklos Szeredi 60404730fefSMiklos Szeredi /** 60582547981SMiklos Szeredi * Send FSYNC or FSYNCDIR request 60682547981SMiklos Szeredi */ 60702c24a82SJosef Bacik int fuse_fsync_common(struct file *file, loff_t start, loff_t end, 60802c24a82SJosef Bacik int datasync, int isdir); 60982547981SMiklos Szeredi 61082547981SMiklos Szeredi /** 61195668a69STejun Heo * Notify poll wakeup 61295668a69STejun Heo */ 61395668a69STejun Heo int fuse_notify_poll_wakeup(struct fuse_conn *fc, 61495668a69STejun Heo struct fuse_notify_poll_wakeup_out *outarg); 61595668a69STejun Heo 61695668a69STejun Heo /** 6171779381dSMiklos Szeredi * Initialize file operations on a regular file 618b6aeadedSMiklos Szeredi */ 619b6aeadedSMiklos Szeredi void fuse_init_file_inode(struct inode *inode); 620b6aeadedSMiklos Szeredi 621b6aeadedSMiklos Szeredi /** 6221779381dSMiklos Szeredi * Initialize inode operations on regular files and special files 623e5e5558eSMiklos Szeredi */ 624e5e5558eSMiklos Szeredi void fuse_init_common(struct inode *inode); 625e5e5558eSMiklos Szeredi 626e5e5558eSMiklos Szeredi /** 6271779381dSMiklos Szeredi * Initialize inode and file operations on a directory 628e5e5558eSMiklos Szeredi */ 629e5e5558eSMiklos Szeredi void fuse_init_dir(struct inode *inode); 630e5e5558eSMiklos Szeredi 631e5e5558eSMiklos Szeredi /** 6321779381dSMiklos Szeredi * Initialize inode operations on a symlink 633e5e5558eSMiklos Szeredi */ 634e5e5558eSMiklos Szeredi void fuse_init_symlink(struct inode *inode); 635e5e5558eSMiklos Szeredi 636e5e5558eSMiklos Szeredi /** 637e5e5558eSMiklos Szeredi * Change attributes of an inode 638e5e5558eSMiklos Szeredi */ 6391fb69e78SMiklos Szeredi void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr, 6401fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 641e5e5558eSMiklos Szeredi 6423be5a52bSMiklos Szeredi void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr, 6433be5a52bSMiklos Szeredi u64 attr_valid); 6443be5a52bSMiklos Szeredi 645e5e5558eSMiklos Szeredi /** 646334f485dSMiklos Szeredi * Initialize the client device 647334f485dSMiklos Szeredi */ 648334f485dSMiklos Szeredi int fuse_dev_init(void); 649334f485dSMiklos Szeredi 650334f485dSMiklos Szeredi /** 651334f485dSMiklos Szeredi * Cleanup the client device 652334f485dSMiklos Szeredi */ 653334f485dSMiklos Szeredi void fuse_dev_cleanup(void); 654334f485dSMiklos Szeredi 655bafa9654SMiklos Szeredi int fuse_ctl_init(void); 656bafa9654SMiklos Szeredi void fuse_ctl_cleanup(void); 657bafa9654SMiklos Szeredi 658334f485dSMiklos Szeredi /** 659334f485dSMiklos Szeredi * Allocate a request 660334f485dSMiklos Szeredi */ 661334f485dSMiklos Szeredi struct fuse_req *fuse_request_alloc(void); 662334f485dSMiklos Szeredi 6633be5a52bSMiklos Szeredi struct fuse_req *fuse_request_alloc_nofs(void); 6643be5a52bSMiklos Szeredi 665334f485dSMiklos Szeredi /** 666334f485dSMiklos Szeredi * Free a request 667334f485dSMiklos Szeredi */ 668334f485dSMiklos Szeredi void fuse_request_free(struct fuse_req *req); 669334f485dSMiklos Szeredi 670334f485dSMiklos Szeredi /** 67133649c91SMiklos Szeredi * Get a request, may fail with -ENOMEM 672334f485dSMiklos Szeredi */ 673ce1d5a49SMiklos Szeredi struct fuse_req *fuse_get_req(struct fuse_conn *fc); 674334f485dSMiklos Szeredi 675334f485dSMiklos Szeredi /** 67633649c91SMiklos Szeredi * Gets a requests for a file operation, always succeeds 67733649c91SMiklos Szeredi */ 67833649c91SMiklos Szeredi struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file); 67933649c91SMiklos Szeredi 68033649c91SMiklos Szeredi /** 681ce1d5a49SMiklos Szeredi * Decrement reference count of a request. If count goes to zero free 682ce1d5a49SMiklos Szeredi * the request. 683334f485dSMiklos Szeredi */ 684334f485dSMiklos Szeredi void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req); 685334f485dSMiklos Szeredi 686334f485dSMiklos Szeredi /** 6877c352bdfSMiklos Szeredi * Send a request (synchronous) 688334f485dSMiklos Szeredi */ 689b93f858aSTejun Heo void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req); 690334f485dSMiklos Szeredi 691334f485dSMiklos Szeredi /** 692334f485dSMiklos Szeredi * Send a request in the background 693334f485dSMiklos Szeredi */ 694b93f858aSTejun Heo void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req); 695334f485dSMiklos Szeredi 696b93f858aSTejun Heo void fuse_request_send_background_locked(struct fuse_conn *fc, 697b93f858aSTejun Heo struct fuse_req *req); 6983be5a52bSMiklos Szeredi 6995a5fb1eaSMiklos Szeredi /* Abort all requests */ 70069a53bf2SMiklos Szeredi void fuse_abort_conn(struct fuse_conn *fc); 70169a53bf2SMiklos Szeredi 7021e9a4ed9SMiklos Szeredi /** 703e5e5558eSMiklos Szeredi * Invalidate inode attributes 704e5e5558eSMiklos Szeredi */ 705e5e5558eSMiklos Szeredi void fuse_invalidate_attr(struct inode *inode); 706bafa9654SMiklos Szeredi 707dbd561d2SMiklos Szeredi void fuse_invalidate_entry_cache(struct dentry *entry); 708dbd561d2SMiklos Szeredi 709bafa9654SMiklos Szeredi /** 710bafa9654SMiklos Szeredi * Acquire reference to fuse_conn 711bafa9654SMiklos Szeredi */ 712bafa9654SMiklos Szeredi struct fuse_conn *fuse_conn_get(struct fuse_conn *fc); 713bafa9654SMiklos Szeredi 71408cbf542STejun Heo void fuse_conn_kill(struct fuse_conn *fc); 71508cbf542STejun Heo 716bafa9654SMiklos Szeredi /** 7170d179aa5STejun Heo * Initialize fuse_conn 7180d179aa5STejun Heo */ 719a325f9b9STejun Heo void fuse_conn_init(struct fuse_conn *fc); 7200d179aa5STejun Heo 7210d179aa5STejun Heo /** 722bafa9654SMiklos Szeredi * Release reference to fuse_conn 723bafa9654SMiklos Szeredi */ 724bafa9654SMiklos Szeredi void fuse_conn_put(struct fuse_conn *fc); 725bafa9654SMiklos Szeredi 726bafa9654SMiklos Szeredi /** 727bafa9654SMiklos Szeredi * Add connection to control filesystem 728bafa9654SMiklos Szeredi */ 729bafa9654SMiklos Szeredi int fuse_ctl_add_conn(struct fuse_conn *fc); 730bafa9654SMiklos Szeredi 731bafa9654SMiklos Szeredi /** 732bafa9654SMiklos Szeredi * Remove connection from control filesystem 733bafa9654SMiklos Szeredi */ 734bafa9654SMiklos Szeredi void fuse_ctl_remove_conn(struct fuse_conn *fc); 735a5bfffacSTimo Savola 736a5bfffacSTimo Savola /** 737a5bfffacSTimo Savola * Is file type valid? 738a5bfffacSTimo Savola */ 739a5bfffacSTimo Savola int fuse_valid_type(int m); 740e57ac683SMiklos Szeredi 741e57ac683SMiklos Szeredi /** 742e57ac683SMiklos Szeredi * Is task allowed to perform filesystem operation? 743e57ac683SMiklos Szeredi */ 744e57ac683SMiklos Szeredi int fuse_allow_task(struct fuse_conn *fc, struct task_struct *task); 745f3332114SMiklos Szeredi 746f3332114SMiklos Szeredi u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id); 747bcb4be80SMiklos Szeredi 748bcb4be80SMiklos Szeredi int fuse_update_attributes(struct inode *inode, struct kstat *stat, 749bcb4be80SMiklos Szeredi struct file *file, bool *refreshed); 7503be5a52bSMiklos Szeredi 7513be5a52bSMiklos Szeredi void fuse_flush_writepages(struct inode *inode); 7523be5a52bSMiklos Szeredi 7533be5a52bSMiklos Szeredi void fuse_set_nowrite(struct inode *inode); 7543be5a52bSMiklos Szeredi void fuse_release_nowrite(struct inode *inode); 7555c5c5e51SMiklos Szeredi 7565c5c5e51SMiklos Szeredi u64 fuse_get_attr_version(struct fuse_conn *fc); 75729d434b3STejun Heo 7583b463ae0SJohn Muir /** 7593b463ae0SJohn Muir * File-system tells the kernel to invalidate cache for the given node id. 7603b463ae0SJohn Muir */ 7613b463ae0SJohn Muir int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid, 7623b463ae0SJohn Muir loff_t offset, loff_t len); 7633b463ae0SJohn Muir 7643b463ae0SJohn Muir /** 7653b463ae0SJohn Muir * File-system tells the kernel to invalidate parent attributes and 7663b463ae0SJohn Muir * the dentry matching parent/name. 767451d0f59SJohn Muir * 768451d0f59SJohn Muir * If the child_nodeid is non-zero and: 769451d0f59SJohn Muir * - matches the inode number for the dentry matching parent/name, 770451d0f59SJohn Muir * - is not a mount point 771451d0f59SJohn Muir * - is a file or oan empty directory 772451d0f59SJohn Muir * then the dentry is unhashed (d_delete()). 7733b463ae0SJohn Muir */ 7743b463ae0SJohn Muir int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid, 775451d0f59SJohn Muir u64 child_nodeid, struct qstr *name); 7763b463ae0SJohn Muir 77708cbf542STejun Heo int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file, 77808cbf542STejun Heo bool isdir); 77908cbf542STejun Heo ssize_t fuse_direct_io(struct file *file, const char __user *buf, 78008cbf542STejun Heo size_t count, loff_t *ppos, int write); 78108cbf542STejun Heo long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg, 78208cbf542STejun Heo unsigned int flags); 783b18da0c5SMiklos Szeredi long fuse_ioctl_common(struct file *file, unsigned int cmd, 784b18da0c5SMiklos Szeredi unsigned long arg, unsigned int flags); 78508cbf542STejun Heo unsigned fuse_file_poll(struct file *file, poll_table *wait); 78608cbf542STejun Heo int fuse_dev_release(struct inode *inode, struct file *file); 78708cbf542STejun Heo 788a1d75f25SMiklos Szeredi void fuse_write_update_size(struct inode *inode, loff_t pos); 789a1d75f25SMiklos Szeredi 79029d434b3STejun Heo #endif /* _FS_FUSE_I_H */ 791