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 474250c066SMaxim Patlasov /** Number of page pointers embedded in fuse_req */ 484250c066SMaxim Patlasov #define FUSE_REQ_INLINE_PAGES 1 494250c066SMaxim Patlasov 50bafa9654SMiklos Szeredi /** List of active connections */ 51bafa9654SMiklos Szeredi extern struct list_head fuse_conn_list; 52bafa9654SMiklos Szeredi 53bafa9654SMiklos Szeredi /** Global mutex protecting fuse_conn_list and the control filesystem */ 54bafa9654SMiklos Szeredi extern struct mutex fuse_mutex; 55413ef8cbSMiklos Szeredi 5679a9d994SCsaba Henk /** Module parameters */ 5779a9d994SCsaba Henk extern unsigned max_user_bgreq; 5879a9d994SCsaba Henk extern unsigned max_user_congthresh; 5979a9d994SCsaba Henk 6007e77dcaSMiklos Szeredi /* One forget request */ 6107e77dcaSMiklos Szeredi struct fuse_forget_link { 6202c048b9SMiklos Szeredi struct fuse_forget_one forget_one; 6307e77dcaSMiklos Szeredi struct fuse_forget_link *next; 6407e77dcaSMiklos Szeredi }; 6507e77dcaSMiklos Szeredi 66d8a5ba45SMiklos Szeredi /** FUSE inode */ 67d8a5ba45SMiklos Szeredi struct fuse_inode { 68d8a5ba45SMiklos Szeredi /** Inode data */ 69d8a5ba45SMiklos Szeredi struct inode inode; 70d8a5ba45SMiklos Szeredi 71d8a5ba45SMiklos Szeredi /** Unique ID, which identifies the inode between userspace 72d8a5ba45SMiklos Szeredi * and kernel */ 73d8a5ba45SMiklos Szeredi u64 nodeid; 74d8a5ba45SMiklos Szeredi 759e6268dbSMiklos Szeredi /** Number of lookups on this inode */ 769e6268dbSMiklos Szeredi u64 nlookup; 779e6268dbSMiklos Szeredi 78e5e5558eSMiklos Szeredi /** The request used for sending the FORGET message */ 7907e77dcaSMiklos Szeredi struct fuse_forget_link *forget; 80e5e5558eSMiklos Szeredi 81d8a5ba45SMiklos Szeredi /** Time in jiffies until the file attributes are valid */ 820a0898cfSMiklos Szeredi u64 i_time; 83ebc14c4dSMiklos Szeredi 84ebc14c4dSMiklos Szeredi /** The sticky bit in inode->i_mode may have been removed, so 85ebc14c4dSMiklos Szeredi preserve the original mode */ 86541af6a0SAl Viro umode_t orig_i_mode; 871fb69e78SMiklos Szeredi 8845c72cd7SPavel Shilovsky /** 64 bit inode number */ 8945c72cd7SPavel Shilovsky u64 orig_ino; 9045c72cd7SPavel Shilovsky 911fb69e78SMiklos Szeredi /** Version of last attribute change */ 921fb69e78SMiklos Szeredi u64 attr_version; 9393a8c3cdSMiklos Szeredi 9493a8c3cdSMiklos Szeredi /** Files usable in writepage. Protected by fc->lock */ 9593a8c3cdSMiklos Szeredi struct list_head write_files; 963be5a52bSMiklos Szeredi 973be5a52bSMiklos Szeredi /** Writepages pending on truncate or fsync */ 983be5a52bSMiklos Szeredi struct list_head queued_writes; 993be5a52bSMiklos Szeredi 1003be5a52bSMiklos Szeredi /** Number of sent writes, a negative bias (FUSE_NOWRITE) 1013be5a52bSMiklos Szeredi * means more writes are blocked */ 1023be5a52bSMiklos Szeredi int writectr; 1033be5a52bSMiklos Szeredi 1043be5a52bSMiklos Szeredi /** Waitq for writepage completion */ 1053be5a52bSMiklos Szeredi wait_queue_head_t page_waitq; 1063be5a52bSMiklos Szeredi 1073be5a52bSMiklos Szeredi /** List of writepage requestst (pending or sent) */ 1083be5a52bSMiklos Szeredi struct list_head writepages; 109d8a5ba45SMiklos Szeredi }; 110d8a5ba45SMiklos Szeredi 111da5e4714SMiklos Szeredi struct fuse_conn; 112da5e4714SMiklos Szeredi 113b6aeadedSMiklos Szeredi /** FUSE specific file data */ 114b6aeadedSMiklos Szeredi struct fuse_file { 115da5e4714SMiklos Szeredi /** Fuse connection for this file */ 116da5e4714SMiklos Szeredi struct fuse_conn *fc; 117da5e4714SMiklos Szeredi 118b6aeadedSMiklos Szeredi /** Request reserved for flush and release */ 11933649c91SMiklos Szeredi struct fuse_req *reserved_req; 120b6aeadedSMiklos Szeredi 121acf99433STejun Heo /** Kernel file handle guaranteed to be unique */ 122acf99433STejun Heo u64 kh; 123acf99433STejun Heo 124b6aeadedSMiklos Szeredi /** File handle used by userspace */ 125b6aeadedSMiklos Szeredi u64 fh; 126c756e0a4SMiklos Szeredi 127da5e4714SMiklos Szeredi /** Node id of this file */ 128da5e4714SMiklos Szeredi u64 nodeid; 129da5e4714SMiklos Szeredi 130c756e0a4SMiklos Szeredi /** Refcount */ 131c756e0a4SMiklos Szeredi atomic_t count; 13293a8c3cdSMiklos Szeredi 133c7b7143cSMiklos Szeredi /** FOPEN_* flags returned by open */ 134c7b7143cSMiklos Szeredi u32 open_flags; 135c7b7143cSMiklos Szeredi 13693a8c3cdSMiklos Szeredi /** Entry on inode's write_files list */ 13793a8c3cdSMiklos Szeredi struct list_head write_entry; 13895668a69STejun Heo 13995668a69STejun Heo /** RB node to be linked on fuse_conn->polled_files */ 14095668a69STejun Heo struct rb_node polled_node; 14195668a69STejun Heo 14295668a69STejun Heo /** Wait queue head for poll */ 14395668a69STejun Heo wait_queue_head_t poll_wait; 14437fb3a30SMiklos Szeredi 14537fb3a30SMiklos Szeredi /** Has flock been performed on this file? */ 14637fb3a30SMiklos Szeredi bool flock:1; 147b6aeadedSMiklos Szeredi }; 148b6aeadedSMiklos Szeredi 149334f485dSMiklos Szeredi /** One input argument of a request */ 150334f485dSMiklos Szeredi struct fuse_in_arg { 151334f485dSMiklos Szeredi unsigned size; 152334f485dSMiklos Szeredi const void *value; 153334f485dSMiklos Szeredi }; 154334f485dSMiklos Szeredi 155334f485dSMiklos Szeredi /** The request input */ 156334f485dSMiklos Szeredi struct fuse_in { 157334f485dSMiklos Szeredi /** The request header */ 158334f485dSMiklos Szeredi struct fuse_in_header h; 159334f485dSMiklos Szeredi 160334f485dSMiklos Szeredi /** True if the data for the last argument is in req->pages */ 161334f485dSMiklos Szeredi unsigned argpages:1; 162334f485dSMiklos Szeredi 163334f485dSMiklos Szeredi /** Number of arguments */ 164334f485dSMiklos Szeredi unsigned numargs; 165334f485dSMiklos Szeredi 166334f485dSMiklos Szeredi /** Array of arguments */ 167334f485dSMiklos Szeredi struct fuse_in_arg args[3]; 168334f485dSMiklos Szeredi }; 169334f485dSMiklos Szeredi 170334f485dSMiklos Szeredi /** One output argument of a request */ 171334f485dSMiklos Szeredi struct fuse_arg { 172334f485dSMiklos Szeredi unsigned size; 173334f485dSMiklos Szeredi void *value; 174334f485dSMiklos Szeredi }; 175334f485dSMiklos Szeredi 176334f485dSMiklos Szeredi /** The request output */ 177334f485dSMiklos Szeredi struct fuse_out { 178334f485dSMiklos Szeredi /** Header returned from userspace */ 179334f485dSMiklos Szeredi struct fuse_out_header h; 180334f485dSMiklos Szeredi 181095da6cbSMiklos Szeredi /* 182095da6cbSMiklos Szeredi * The following bitfields are not changed during the request 183095da6cbSMiklos Szeredi * processing 184095da6cbSMiklos Szeredi */ 185095da6cbSMiklos Szeredi 186334f485dSMiklos Szeredi /** Last argument is variable length (can be shorter than 187334f485dSMiklos Szeredi arg->size) */ 188334f485dSMiklos Szeredi unsigned argvar:1; 189334f485dSMiklos Szeredi 190334f485dSMiklos Szeredi /** Last argument is a list of pages to copy data to */ 191334f485dSMiklos Szeredi unsigned argpages:1; 192334f485dSMiklos Szeredi 193334f485dSMiklos Szeredi /** Zero partially or not copied pages */ 194334f485dSMiklos Szeredi unsigned page_zeroing:1; 195334f485dSMiklos Szeredi 196ce534fb0SMiklos Szeredi /** Pages may be replaced with new ones */ 197ce534fb0SMiklos Szeredi unsigned page_replace:1; 198ce534fb0SMiklos Szeredi 199334f485dSMiklos Szeredi /** Number or arguments */ 200334f485dSMiklos Szeredi unsigned numargs; 201334f485dSMiklos Szeredi 202334f485dSMiklos Szeredi /** Array of arguments */ 203334f485dSMiklos Szeredi struct fuse_arg args[3]; 204334f485dSMiklos Szeredi }; 205334f485dSMiklos Szeredi 20683cfd493SMiklos Szeredi /** The request state */ 20783cfd493SMiklos Szeredi enum fuse_req_state { 20883cfd493SMiklos Szeredi FUSE_REQ_INIT = 0, 20983cfd493SMiklos Szeredi FUSE_REQ_PENDING, 21083cfd493SMiklos Szeredi FUSE_REQ_READING, 21183cfd493SMiklos Szeredi FUSE_REQ_SENT, 212a4d27e75SMiklos Szeredi FUSE_REQ_WRITING, 21383cfd493SMiklos Szeredi FUSE_REQ_FINISHED 21483cfd493SMiklos Szeredi }; 21583cfd493SMiklos Szeredi 216334f485dSMiklos Szeredi /** 217334f485dSMiklos Szeredi * A request to the client 218334f485dSMiklos Szeredi */ 219334f485dSMiklos Szeredi struct fuse_req { 220ce1d5a49SMiklos Szeredi /** This can be on either pending processing or io lists in 221ce1d5a49SMiklos Szeredi fuse_conn */ 222334f485dSMiklos Szeredi struct list_head list; 223334f485dSMiklos Szeredi 224a4d27e75SMiklos Szeredi /** Entry on the interrupts list */ 225a4d27e75SMiklos Szeredi struct list_head intr_entry; 226a4d27e75SMiklos Szeredi 227334f485dSMiklos Szeredi /** refcount */ 228334f485dSMiklos Szeredi atomic_t count; 229334f485dSMiklos Szeredi 230a4d27e75SMiklos Szeredi /** Unique ID for the interrupt request */ 231a4d27e75SMiklos Szeredi u64 intr_unique; 232a4d27e75SMiklos Szeredi 233095da6cbSMiklos Szeredi /* 234095da6cbSMiklos Szeredi * The following bitfields are either set once before the 235095da6cbSMiklos Szeredi * request is queued or setting/clearing them is protected by 236d7133114SMiklos Szeredi * fuse_conn->lock 237095da6cbSMiklos Szeredi */ 238095da6cbSMiklos Szeredi 239334f485dSMiklos Szeredi /** True if the request has reply */ 240334f485dSMiklos Szeredi unsigned isreply:1; 241334f485dSMiklos Szeredi 24251eb01e7SMiklos Szeredi /** Force sending of the request even if interrupted */ 24351eb01e7SMiklos Szeredi unsigned force:1; 24451eb01e7SMiklos Szeredi 245f9a2842eSMiklos Szeredi /** The request was aborted */ 246f9a2842eSMiklos Szeredi unsigned aborted:1; 247334f485dSMiklos Szeredi 248334f485dSMiklos Szeredi /** Request is sent in the background */ 249334f485dSMiklos Szeredi unsigned background:1; 250334f485dSMiklos Szeredi 251a4d27e75SMiklos Szeredi /** The request has been interrupted */ 252a4d27e75SMiklos Szeredi unsigned interrupted:1; 253a4d27e75SMiklos Szeredi 254334f485dSMiklos Szeredi /** Data is being copied to/from the request */ 255334f485dSMiklos Szeredi unsigned locked:1; 256334f485dSMiklos Szeredi 2579bc5dddaSMiklos Szeredi /** Request is counted as "waiting" */ 2589bc5dddaSMiklos Szeredi unsigned waiting:1; 2599bc5dddaSMiklos Szeredi 26083cfd493SMiklos Szeredi /** State of the request */ 26183cfd493SMiklos Szeredi enum fuse_req_state state; 262334f485dSMiklos Szeredi 263334f485dSMiklos Szeredi /** The request input */ 264334f485dSMiklos Szeredi struct fuse_in in; 265334f485dSMiklos Szeredi 266334f485dSMiklos Szeredi /** The request output */ 267334f485dSMiklos Szeredi struct fuse_out out; 268334f485dSMiklos Szeredi 269334f485dSMiklos Szeredi /** Used to wake up the task waiting for completion of request*/ 270334f485dSMiklos Szeredi wait_queue_head_t waitq; 271334f485dSMiklos Szeredi 272334f485dSMiklos Szeredi /** Data for asynchronous requests */ 273334f485dSMiklos Szeredi union { 274b57d4264SMiklos Szeredi struct { 2755a18ec17SMiklos Szeredi union { 276b57d4264SMiklos Szeredi struct fuse_release_in in; 2775a18ec17SMiklos Szeredi struct work_struct work; 2785a18ec17SMiklos Szeredi }; 279b0be46ebSMiklos Szeredi struct path path; 280b57d4264SMiklos Szeredi } release; 2813ec870d5SMiklos Szeredi struct fuse_init_in init_in; 2823ec870d5SMiklos Szeredi struct fuse_init_out init_out; 28308cbf542STejun Heo struct cuse_init_in cuse_init_in; 2845c5c5e51SMiklos Szeredi struct { 2855c5c5e51SMiklos Szeredi struct fuse_read_in in; 2865c5c5e51SMiklos Szeredi u64 attr_ver; 2875c5c5e51SMiklos Szeredi } read; 288b25e82e5SMiklos Szeredi struct { 289b25e82e5SMiklos Szeredi struct fuse_write_in in; 290b25e82e5SMiklos Szeredi struct fuse_write_out out; 291b25e82e5SMiklos Szeredi } write; 2922d45ba38SMiklos Szeredi struct fuse_notify_retrieve_in retrieve_in; 29371421259SMiklos Szeredi struct fuse_lk_in lk_in; 294334f485dSMiklos Szeredi } misc; 295334f485dSMiklos Szeredi 296334f485dSMiklos Szeredi /** page vector */ 2974250c066SMaxim Patlasov struct page **pages; 2984250c066SMaxim Patlasov 2994250c066SMaxim Patlasov /** size of the 'pages' array */ 3004250c066SMaxim Patlasov unsigned max_pages; 3014250c066SMaxim Patlasov 3024250c066SMaxim Patlasov /** inline page vector */ 3034250c066SMaxim Patlasov struct page *inline_pages[FUSE_REQ_INLINE_PAGES]; 304334f485dSMiklos Szeredi 305334f485dSMiklos Szeredi /** number of pages in vector */ 306334f485dSMiklos Szeredi unsigned num_pages; 307334f485dSMiklos Szeredi 308334f485dSMiklos Szeredi /** offset of data on first page */ 309334f485dSMiklos Szeredi unsigned page_offset; 310334f485dSMiklos Szeredi 311334f485dSMiklos Szeredi /** File used in the request (or NULL) */ 312c756e0a4SMiklos Szeredi struct fuse_file *ff; 31364c6d8edSMiklos Szeredi 3143be5a52bSMiklos Szeredi /** Inode used in the request or NULL */ 3153be5a52bSMiklos Szeredi struct inode *inode; 3163be5a52bSMiklos Szeredi 3173be5a52bSMiklos Szeredi /** Link on fi->writepages */ 3183be5a52bSMiklos Szeredi struct list_head writepages_entry; 3193be5a52bSMiklos Szeredi 32064c6d8edSMiklos Szeredi /** Request completion callback */ 32164c6d8edSMiklos Szeredi void (*end)(struct fuse_conn *, struct fuse_req *); 32233649c91SMiklos Szeredi 32333649c91SMiklos Szeredi /** Request is stolen from fuse_file->reserved_req */ 32433649c91SMiklos Szeredi struct file *stolen_file; 325334f485dSMiklos Szeredi }; 326334f485dSMiklos Szeredi 327d8a5ba45SMiklos Szeredi /** 328d8a5ba45SMiklos Szeredi * A Fuse connection. 329d8a5ba45SMiklos Szeredi * 330d8a5ba45SMiklos Szeredi * This structure is created, when the filesystem is mounted, and is 331d8a5ba45SMiklos Szeredi * destroyed, when the client device is closed and the filesystem is 332d8a5ba45SMiklos Szeredi * unmounted. 333d8a5ba45SMiklos Szeredi */ 334d8a5ba45SMiklos Szeredi struct fuse_conn { 335d7133114SMiklos Szeredi /** Lock protecting accessess to members of this structure */ 336d7133114SMiklos Szeredi spinlock_t lock; 337d7133114SMiklos Szeredi 338d2a85164SMiklos Szeredi /** Mutex protecting against directory alias creation */ 339d2a85164SMiklos Szeredi struct mutex inst_mutex; 340d2a85164SMiklos Szeredi 341bafa9654SMiklos Szeredi /** Refcount */ 342bafa9654SMiklos Szeredi atomic_t count; 343bafa9654SMiklos Szeredi 344d8a5ba45SMiklos Szeredi /** The user id for this mount */ 345499dcf20SEric W. Biederman kuid_t user_id; 346d8a5ba45SMiklos Szeredi 34787729a55SMiklos Szeredi /** The group id for this mount */ 348499dcf20SEric W. Biederman kgid_t group_id; 34987729a55SMiklos Szeredi 3501e9a4ed9SMiklos Szeredi /** The fuse mount flags for this mount */ 3511e9a4ed9SMiklos Szeredi unsigned flags; 3521e9a4ed9SMiklos Szeredi 353db50b96cSMiklos Szeredi /** Maximum read size */ 354db50b96cSMiklos Szeredi unsigned max_read; 355db50b96cSMiklos Szeredi 356413ef8cbSMiklos Szeredi /** Maximum write size */ 357413ef8cbSMiklos Szeredi unsigned max_write; 358413ef8cbSMiklos Szeredi 359334f485dSMiklos Szeredi /** Readers of the connection are waiting on this */ 360334f485dSMiklos Szeredi wait_queue_head_t waitq; 361334f485dSMiklos Szeredi 362334f485dSMiklos Szeredi /** The list of pending requests */ 363334f485dSMiklos Szeredi struct list_head pending; 364334f485dSMiklos Szeredi 365334f485dSMiklos Szeredi /** The list of requests being processed */ 366334f485dSMiklos Szeredi struct list_head processing; 367334f485dSMiklos Szeredi 368d77a1d5bSMiklos Szeredi /** The list of requests under I/O */ 369d77a1d5bSMiklos Szeredi struct list_head io; 370d77a1d5bSMiklos Szeredi 371acf99433STejun Heo /** The next unique kernel file handle */ 372acf99433STejun Heo u64 khctr; 373acf99433STejun Heo 37495668a69STejun Heo /** rbtree of fuse_files waiting for poll events indexed by ph */ 37595668a69STejun Heo struct rb_root polled_files; 37695668a69STejun Heo 3777a6d3c8bSCsaba Henk /** Maximum number of outstanding background requests */ 3787a6d3c8bSCsaba Henk unsigned max_background; 3797a6d3c8bSCsaba Henk 3807a6d3c8bSCsaba Henk /** Number of background requests at which congestion starts */ 3817a6d3c8bSCsaba Henk unsigned congestion_threshold; 3827a6d3c8bSCsaba Henk 38308a53cdcSMiklos Szeredi /** Number of requests currently in the background */ 38408a53cdcSMiklos Szeredi unsigned num_background; 38508a53cdcSMiklos Szeredi 386d12def1bSMiklos Szeredi /** Number of background requests currently queued for userspace */ 387d12def1bSMiklos Szeredi unsigned active_background; 388d12def1bSMiklos Szeredi 389d12def1bSMiklos Szeredi /** The list of background requests set aside for later queuing */ 390d12def1bSMiklos Szeredi struct list_head bg_queue; 391d12def1bSMiklos Szeredi 392a4d27e75SMiklos Szeredi /** Pending interrupts */ 393a4d27e75SMiklos Szeredi struct list_head interrupts; 394a4d27e75SMiklos Szeredi 39507e77dcaSMiklos Szeredi /** Queue of pending forgets */ 39607e77dcaSMiklos Szeredi struct fuse_forget_link forget_list_head; 39707e77dcaSMiklos Szeredi struct fuse_forget_link *forget_list_tail; 39807e77dcaSMiklos Szeredi 39907e77dcaSMiklos Szeredi /** Batching of FORGET requests (positive indicates FORGET batch) */ 40007e77dcaSMiklos Szeredi int forget_batch; 40107e77dcaSMiklos Szeredi 40208a53cdcSMiklos Szeredi /** Flag indicating if connection is blocked. This will be 40308a53cdcSMiklos Szeredi the case before the INIT reply is received, and if there 40408a53cdcSMiklos Szeredi are too many outstading backgrounds requests */ 40508a53cdcSMiklos Szeredi int blocked; 40608a53cdcSMiklos Szeredi 40708a53cdcSMiklos Szeredi /** waitq for blocked connection */ 40808a53cdcSMiklos Szeredi wait_queue_head_t blocked_waitq; 40908a53cdcSMiklos Szeredi 410de5e3decSMiklos Szeredi /** waitq for reserved requests */ 411de5e3decSMiklos Szeredi wait_queue_head_t reserved_req_waitq; 412de5e3decSMiklos Szeredi 413334f485dSMiklos Szeredi /** The next unique request id */ 414334f485dSMiklos Szeredi u64 reqctr; 415334f485dSMiklos Szeredi 41669a53bf2SMiklos Szeredi /** Connection established, cleared on umount, connection 41769a53bf2SMiklos Szeredi abort and device release */ 418095da6cbSMiklos Szeredi unsigned connected; 4191e9a4ed9SMiklos Szeredi 420095da6cbSMiklos Szeredi /** Connection failed (version mismatch). Cannot race with 421095da6cbSMiklos Szeredi setting other bitfields since it is only set once in INIT 422095da6cbSMiklos Szeredi reply, before any other request, and never cleared */ 423334f485dSMiklos Szeredi unsigned conn_error:1; 424334f485dSMiklos Szeredi 4250ec7ca41SMiklos Szeredi /** Connection successful. Only set in INIT */ 4260ec7ca41SMiklos Szeredi unsigned conn_init:1; 4270ec7ca41SMiklos Szeredi 4289cd68455SMiklos Szeredi /** Do readpages asynchronously? Only set in INIT */ 4299cd68455SMiklos Szeredi unsigned async_read:1; 4309cd68455SMiklos Szeredi 4316ff958edSMiklos Szeredi /** Do not send separate SETATTR request before open(O_TRUNC) */ 4326ff958edSMiklos Szeredi unsigned atomic_o_trunc:1; 4336ff958edSMiklos Szeredi 43433670fa2SMiklos Szeredi /** Filesystem supports NFS exporting. Only set in INIT */ 43533670fa2SMiklos Szeredi unsigned export_support:1; 43633670fa2SMiklos Szeredi 437a325f9b9STejun Heo /** Set if bdi is valid */ 438a325f9b9STejun Heo unsigned bdi_initialized:1; 439a325f9b9STejun Heo 440095da6cbSMiklos Szeredi /* 441095da6cbSMiklos Szeredi * The following bitfields are only for optimization purposes 442095da6cbSMiklos Szeredi * and hence races in setting them will not cause malfunction 443095da6cbSMiklos Szeredi */ 444095da6cbSMiklos Szeredi 445b6aeadedSMiklos Szeredi /** Is fsync not implemented by fs? */ 446b6aeadedSMiklos Szeredi unsigned no_fsync:1; 447b6aeadedSMiklos Szeredi 44882547981SMiklos Szeredi /** Is fsyncdir not implemented by fs? */ 44982547981SMiklos Szeredi unsigned no_fsyncdir:1; 45082547981SMiklos Szeredi 451b6aeadedSMiklos Szeredi /** Is flush not implemented by fs? */ 452b6aeadedSMiklos Szeredi unsigned no_flush:1; 453b6aeadedSMiklos Szeredi 45492a8780eSMiklos Szeredi /** Is setxattr not implemented by fs? */ 45592a8780eSMiklos Szeredi unsigned no_setxattr:1; 45692a8780eSMiklos Szeredi 45792a8780eSMiklos Szeredi /** Is getxattr not implemented by fs? */ 45892a8780eSMiklos Szeredi unsigned no_getxattr:1; 45992a8780eSMiklos Szeredi 46092a8780eSMiklos Szeredi /** Is listxattr not implemented by fs? */ 46192a8780eSMiklos Szeredi unsigned no_listxattr:1; 46292a8780eSMiklos Szeredi 46392a8780eSMiklos Szeredi /** Is removexattr not implemented by fs? */ 46492a8780eSMiklos Szeredi unsigned no_removexattr:1; 46592a8780eSMiklos Szeredi 46637fb3a30SMiklos Szeredi /** Are posix file locking primitives not implemented by fs? */ 46771421259SMiklos Szeredi unsigned no_lock:1; 46871421259SMiklos Szeredi 46931d40d74SMiklos Szeredi /** Is access not implemented by fs? */ 47031d40d74SMiklos Szeredi unsigned no_access:1; 47131d40d74SMiklos Szeredi 472fd72faacSMiklos Szeredi /** Is create not implemented by fs? */ 473fd72faacSMiklos Szeredi unsigned no_create:1; 474fd72faacSMiklos Szeredi 475a4d27e75SMiklos Szeredi /** Is interrupt not implemented by fs? */ 476a4d27e75SMiklos Szeredi unsigned no_interrupt:1; 477a4d27e75SMiklos Szeredi 478b2d2272fSMiklos Szeredi /** Is bmap not implemented by fs? */ 479b2d2272fSMiklos Szeredi unsigned no_bmap:1; 480b2d2272fSMiklos Szeredi 48195668a69STejun Heo /** Is poll not implemented by fs? */ 48295668a69STejun Heo unsigned no_poll:1; 48395668a69STejun Heo 48478bb6cb9SMiklos Szeredi /** Do multi-page cached writes */ 48578bb6cb9SMiklos Szeredi unsigned big_writes:1; 48678bb6cb9SMiklos Szeredi 487e0a43ddcSMiklos Szeredi /** Don't apply umask to creation modes */ 488e0a43ddcSMiklos Szeredi unsigned dont_mask:1; 489e0a43ddcSMiklos Szeredi 49037fb3a30SMiklos Szeredi /** Are BSD file locking primitives not implemented by fs? */ 49137fb3a30SMiklos Szeredi unsigned no_flock:1; 49237fb3a30SMiklos Szeredi 493519c6040SMiklos Szeredi /** Is fallocate not implemented by fs? */ 494519c6040SMiklos Szeredi unsigned no_fallocate:1; 495519c6040SMiklos Szeredi 49672d0d248SBrian Foster /** Use enhanced/automatic page cache invalidation. */ 49772d0d248SBrian Foster unsigned auto_inval_data:1; 49872d0d248SBrian Foster 4990b05b183SAnand V. Avati /** Does the filesystem support readdir-plus? */ 5000b05b183SAnand V. Avati unsigned do_readdirplus:1; 5010b05b183SAnand V. Avati 5020cd5b885SMiklos Szeredi /** The number of requests waiting for completion */ 5030cd5b885SMiklos Szeredi atomic_t num_waiting; 5040cd5b885SMiklos Szeredi 50545714d65SMiklos Szeredi /** Negotiated minor version */ 50645714d65SMiklos Szeredi unsigned minor; 50745714d65SMiklos Szeredi 508d8a5ba45SMiklos Szeredi /** Backing dev info */ 509d8a5ba45SMiklos Szeredi struct backing_dev_info bdi; 510f543f253SMiklos Szeredi 511bafa9654SMiklos Szeredi /** Entry on the fuse_conn_list */ 512bafa9654SMiklos Szeredi struct list_head entry; 513bafa9654SMiklos Szeredi 514b6f2fcbcSMiklos Szeredi /** Device ID from super block */ 515b6f2fcbcSMiklos Szeredi dev_t dev; 516bafa9654SMiklos Szeredi 517bafa9654SMiklos Szeredi /** Dentries in the control filesystem */ 518bafa9654SMiklos Szeredi struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES]; 519bafa9654SMiklos Szeredi 520bafa9654SMiklos Szeredi /** number of dentries used in the above array */ 521bafa9654SMiklos Szeredi int ctl_ndents; 522385a17bfSJeff Dike 523385a17bfSJeff Dike /** O_ASYNC requests */ 524385a17bfSJeff Dike struct fasync_struct *fasync; 5259c8ef561SMiklos Szeredi 5269c8ef561SMiklos Szeredi /** Key for lock owner ID scrambling */ 5279c8ef561SMiklos Szeredi u32 scramble_key[4]; 5280ec7ca41SMiklos Szeredi 5290ec7ca41SMiklos Szeredi /** Reserved request for the DESTROY message */ 5300ec7ca41SMiklos Szeredi struct fuse_req *destroy_req; 5311fb69e78SMiklos Szeredi 5321fb69e78SMiklos Szeredi /** Version counter for attribute changes */ 5331fb69e78SMiklos Szeredi u64 attr_version; 53443901aabSTejun Heo 53543901aabSTejun Heo /** Called on final put */ 53643901aabSTejun Heo void (*release)(struct fuse_conn *); 5373b463ae0SJohn Muir 5383b463ae0SJohn Muir /** Super block for this connection. */ 5393b463ae0SJohn Muir struct super_block *sb; 5403b463ae0SJohn Muir 5413b463ae0SJohn Muir /** Read/write semaphore to hold when accessing sb. */ 5423b463ae0SJohn Muir struct rw_semaphore killsb; 543d8a5ba45SMiklos Szeredi }; 544d8a5ba45SMiklos Szeredi 545d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) 546d8a5ba45SMiklos Szeredi { 5476383bdaaSMiklos Szeredi return sb->s_fs_info; 548d8a5ba45SMiklos Szeredi } 549d8a5ba45SMiklos Szeredi 550d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn(struct inode *inode) 551d8a5ba45SMiklos Szeredi { 552d8a5ba45SMiklos Szeredi return get_fuse_conn_super(inode->i_sb); 553d8a5ba45SMiklos Szeredi } 554d8a5ba45SMiklos Szeredi 555d8a5ba45SMiklos Szeredi static inline struct fuse_inode *get_fuse_inode(struct inode *inode) 556d8a5ba45SMiklos Szeredi { 557d8a5ba45SMiklos Szeredi return container_of(inode, struct fuse_inode, inode); 558d8a5ba45SMiklos Szeredi } 559d8a5ba45SMiklos Szeredi 560d8a5ba45SMiklos Szeredi static inline u64 get_node_id(struct inode *inode) 561d8a5ba45SMiklos Szeredi { 562d8a5ba45SMiklos Szeredi return get_fuse_inode(inode)->nodeid; 563d8a5ba45SMiklos Szeredi } 564d8a5ba45SMiklos Szeredi 565334f485dSMiklos Szeredi /** Device operations */ 5664b6f5d20SArjan van de Ven extern const struct file_operations fuse_dev_operations; 567334f485dSMiklos Szeredi 5684269590aSAl Viro extern const struct dentry_operations fuse_dentry_operations; 569dbd561d2SMiklos Szeredi 570d8a5ba45SMiklos Szeredi /** 5713b463ae0SJohn Muir * Inode to nodeid comparison. 5723b463ae0SJohn Muir */ 5733b463ae0SJohn Muir int fuse_inode_eq(struct inode *inode, void *_nodeidp); 5743b463ae0SJohn Muir 5753b463ae0SJohn Muir /** 576e5e5558eSMiklos Szeredi * Get a filled in inode 577e5e5558eSMiklos Szeredi */ 578b48badf0SMiklos Szeredi struct inode *fuse_iget(struct super_block *sb, u64 nodeid, 5791fb69e78SMiklos Szeredi int generation, struct fuse_attr *attr, 5801fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 581e5e5558eSMiklos Szeredi 58233670fa2SMiklos Szeredi int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name, 58333670fa2SMiklos Szeredi struct fuse_entry_out *outarg, struct inode **inode); 58433670fa2SMiklos Szeredi 585e5e5558eSMiklos Szeredi /** 586e5e5558eSMiklos Szeredi * Send FORGET command 587e5e5558eSMiklos Szeredi */ 58807e77dcaSMiklos Szeredi void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget, 589b48badf0SMiklos Szeredi u64 nodeid, u64 nlookup); 590e5e5558eSMiklos Szeredi 59107e77dcaSMiklos Szeredi struct fuse_forget_link *fuse_alloc_forget(void); 59207e77dcaSMiklos Szeredi 5930b05b183SAnand V. Avati /* Used by READDIRPLUS */ 5940b05b183SAnand V. Avati void fuse_force_forget(struct file *file, u64 nodeid); 5950b05b183SAnand V. Avati 596e5e5558eSMiklos Szeredi /** 597361b1eb5SMiklos Szeredi * Initialize READ or READDIR request 59804730fefSMiklos Szeredi */ 599a6643094SMiklos Szeredi void fuse_read_fill(struct fuse_req *req, struct file *file, 6002106cb18SMiklos Szeredi loff_t pos, size_t count, int opcode); 60104730fefSMiklos Szeredi 60204730fefSMiklos Szeredi /** 60304730fefSMiklos Szeredi * Send OPEN or OPENDIR request 60404730fefSMiklos Szeredi */ 60591fe96b4SMiklos Szeredi int fuse_open_common(struct inode *inode, struct file *file, bool isdir); 60604730fefSMiklos Szeredi 607acf99433STejun Heo struct fuse_file *fuse_file_alloc(struct fuse_conn *fc); 608c7b7143cSMiklos Szeredi struct fuse_file *fuse_file_get(struct fuse_file *ff); 609fd72faacSMiklos Szeredi void fuse_file_free(struct fuse_file *ff); 610c7b7143cSMiklos Szeredi void fuse_finish_open(struct inode *inode, struct file *file); 611fd72faacSMiklos Szeredi 6128b0797a4SMiklos Szeredi void fuse_sync_release(struct fuse_file *ff, int flags); 613c756e0a4SMiklos Szeredi 61404730fefSMiklos Szeredi /** 61504730fefSMiklos Szeredi * Send RELEASE or RELEASEDIR request 61604730fefSMiklos Szeredi */ 6178b0797a4SMiklos Szeredi void fuse_release_common(struct file *file, int opcode); 61804730fefSMiklos Szeredi 61904730fefSMiklos Szeredi /** 62082547981SMiklos Szeredi * Send FSYNC or FSYNCDIR request 62182547981SMiklos Szeredi */ 62202c24a82SJosef Bacik int fuse_fsync_common(struct file *file, loff_t start, loff_t end, 62302c24a82SJosef Bacik int datasync, int isdir); 62482547981SMiklos Szeredi 62582547981SMiklos Szeredi /** 62695668a69STejun Heo * Notify poll wakeup 62795668a69STejun Heo */ 62895668a69STejun Heo int fuse_notify_poll_wakeup(struct fuse_conn *fc, 62995668a69STejun Heo struct fuse_notify_poll_wakeup_out *outarg); 63095668a69STejun Heo 63195668a69STejun Heo /** 6321779381dSMiklos Szeredi * Initialize file operations on a regular file 633b6aeadedSMiklos Szeredi */ 634b6aeadedSMiklos Szeredi void fuse_init_file_inode(struct inode *inode); 635b6aeadedSMiklos Szeredi 636b6aeadedSMiklos Szeredi /** 6371779381dSMiklos Szeredi * Initialize inode operations on regular files and special files 638e5e5558eSMiklos Szeredi */ 639e5e5558eSMiklos Szeredi void fuse_init_common(struct inode *inode); 640e5e5558eSMiklos Szeredi 641e5e5558eSMiklos Szeredi /** 6421779381dSMiklos Szeredi * Initialize inode and file operations on a directory 643e5e5558eSMiklos Szeredi */ 644e5e5558eSMiklos Szeredi void fuse_init_dir(struct inode *inode); 645e5e5558eSMiklos Szeredi 646e5e5558eSMiklos Szeredi /** 6471779381dSMiklos Szeredi * Initialize inode operations on a symlink 648e5e5558eSMiklos Szeredi */ 649e5e5558eSMiklos Szeredi void fuse_init_symlink(struct inode *inode); 650e5e5558eSMiklos Szeredi 651e5e5558eSMiklos Szeredi /** 652e5e5558eSMiklos Szeredi * Change attributes of an inode 653e5e5558eSMiklos Szeredi */ 6541fb69e78SMiklos Szeredi void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr, 6551fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 656e5e5558eSMiklos Szeredi 6573be5a52bSMiklos Szeredi void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr, 6583be5a52bSMiklos Szeredi u64 attr_valid); 6593be5a52bSMiklos Szeredi 660e5e5558eSMiklos Szeredi /** 661334f485dSMiklos Szeredi * Initialize the client device 662334f485dSMiklos Szeredi */ 663334f485dSMiklos Szeredi int fuse_dev_init(void); 664334f485dSMiklos Szeredi 665334f485dSMiklos Szeredi /** 666334f485dSMiklos Szeredi * Cleanup the client device 667334f485dSMiklos Szeredi */ 668334f485dSMiklos Szeredi void fuse_dev_cleanup(void); 669334f485dSMiklos Szeredi 670bafa9654SMiklos Szeredi int fuse_ctl_init(void); 671bafa9654SMiklos Szeredi void fuse_ctl_cleanup(void); 672bafa9654SMiklos Szeredi 673334f485dSMiklos Szeredi /** 674334f485dSMiklos Szeredi * Allocate a request 675334f485dSMiklos Szeredi */ 6764250c066SMaxim Patlasov struct fuse_req *fuse_request_alloc(unsigned npages); 677334f485dSMiklos Szeredi 6784250c066SMaxim Patlasov struct fuse_req *fuse_request_alloc_nofs(unsigned npages); 6793be5a52bSMiklos Szeredi 680334f485dSMiklos Szeredi /** 681334f485dSMiklos Szeredi * Free a request 682334f485dSMiklos Szeredi */ 683334f485dSMiklos Szeredi void fuse_request_free(struct fuse_req *req); 684334f485dSMiklos Szeredi 685334f485dSMiklos Szeredi /** 686*b111c8c0SMaxim Patlasov * Get a request, may fail with -ENOMEM, 687*b111c8c0SMaxim Patlasov * caller should specify # elements in req->pages[] explicitly 688334f485dSMiklos Szeredi */ 689*b111c8c0SMaxim Patlasov struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages); 690*b111c8c0SMaxim Patlasov 691*b111c8c0SMaxim Patlasov /** 692*b111c8c0SMaxim Patlasov * Get a request, may fail with -ENOMEM, 693*b111c8c0SMaxim Patlasov * useful for callers who doesn't use req->pages[] 694*b111c8c0SMaxim Patlasov */ 695*b111c8c0SMaxim Patlasov static inline struct fuse_req *fuse_get_req_nopages(struct fuse_conn *fc) 696*b111c8c0SMaxim Patlasov { 697*b111c8c0SMaxim Patlasov return fuse_get_req(fc, 0); 698*b111c8c0SMaxim Patlasov } 699334f485dSMiklos Szeredi 700334f485dSMiklos Szeredi /** 70133649c91SMiklos Szeredi * Gets a requests for a file operation, always succeeds 70233649c91SMiklos Szeredi */ 703*b111c8c0SMaxim Patlasov struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc, 704*b111c8c0SMaxim Patlasov struct file *file); 70533649c91SMiklos Szeredi 70633649c91SMiklos Szeredi /** 707ce1d5a49SMiklos Szeredi * Decrement reference count of a request. If count goes to zero free 708ce1d5a49SMiklos Szeredi * the request. 709334f485dSMiklos Szeredi */ 710334f485dSMiklos Szeredi void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req); 711334f485dSMiklos Szeredi 712334f485dSMiklos Szeredi /** 7137c352bdfSMiklos Szeredi * Send a request (synchronous) 714334f485dSMiklos Szeredi */ 715b93f858aSTejun Heo void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req); 716334f485dSMiklos Szeredi 717334f485dSMiklos Szeredi /** 718334f485dSMiklos Szeredi * Send a request in the background 719334f485dSMiklos Szeredi */ 720b93f858aSTejun Heo void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req); 721334f485dSMiklos Szeredi 722b93f858aSTejun Heo void fuse_request_send_background_locked(struct fuse_conn *fc, 723b93f858aSTejun Heo struct fuse_req *req); 7243be5a52bSMiklos Szeredi 7255a5fb1eaSMiklos Szeredi /* Abort all requests */ 72669a53bf2SMiklos Szeredi void fuse_abort_conn(struct fuse_conn *fc); 72769a53bf2SMiklos Szeredi 7281e9a4ed9SMiklos Szeredi /** 729e5e5558eSMiklos Szeredi * Invalidate inode attributes 730e5e5558eSMiklos Szeredi */ 731e5e5558eSMiklos Szeredi void fuse_invalidate_attr(struct inode *inode); 732bafa9654SMiklos Szeredi 733dbd561d2SMiklos Szeredi void fuse_invalidate_entry_cache(struct dentry *entry); 734dbd561d2SMiklos Szeredi 735bafa9654SMiklos Szeredi /** 736bafa9654SMiklos Szeredi * Acquire reference to fuse_conn 737bafa9654SMiklos Szeredi */ 738bafa9654SMiklos Szeredi struct fuse_conn *fuse_conn_get(struct fuse_conn *fc); 739bafa9654SMiklos Szeredi 74008cbf542STejun Heo void fuse_conn_kill(struct fuse_conn *fc); 74108cbf542STejun Heo 742bafa9654SMiklos Szeredi /** 7430d179aa5STejun Heo * Initialize fuse_conn 7440d179aa5STejun Heo */ 745a325f9b9STejun Heo void fuse_conn_init(struct fuse_conn *fc); 7460d179aa5STejun Heo 7470d179aa5STejun Heo /** 748bafa9654SMiklos Szeredi * Release reference to fuse_conn 749bafa9654SMiklos Szeredi */ 750bafa9654SMiklos Szeredi void fuse_conn_put(struct fuse_conn *fc); 751bafa9654SMiklos Szeredi 752bafa9654SMiklos Szeredi /** 753bafa9654SMiklos Szeredi * Add connection to control filesystem 754bafa9654SMiklos Szeredi */ 755bafa9654SMiklos Szeredi int fuse_ctl_add_conn(struct fuse_conn *fc); 756bafa9654SMiklos Szeredi 757bafa9654SMiklos Szeredi /** 758bafa9654SMiklos Szeredi * Remove connection from control filesystem 759bafa9654SMiklos Szeredi */ 760bafa9654SMiklos Szeredi void fuse_ctl_remove_conn(struct fuse_conn *fc); 761a5bfffacSTimo Savola 762a5bfffacSTimo Savola /** 763a5bfffacSTimo Savola * Is file type valid? 764a5bfffacSTimo Savola */ 765a5bfffacSTimo Savola int fuse_valid_type(int m); 766e57ac683SMiklos Szeredi 767e57ac683SMiklos Szeredi /** 768e57ac683SMiklos Szeredi * Is task allowed to perform filesystem operation? 769e57ac683SMiklos Szeredi */ 770e57ac683SMiklos Szeredi int fuse_allow_task(struct fuse_conn *fc, struct task_struct *task); 771f3332114SMiklos Szeredi 772f3332114SMiklos Szeredi u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id); 773bcb4be80SMiklos Szeredi 774bcb4be80SMiklos Szeredi int fuse_update_attributes(struct inode *inode, struct kstat *stat, 775bcb4be80SMiklos Szeredi struct file *file, bool *refreshed); 7763be5a52bSMiklos Szeredi 7773be5a52bSMiklos Szeredi void fuse_flush_writepages(struct inode *inode); 7783be5a52bSMiklos Szeredi 7793be5a52bSMiklos Szeredi void fuse_set_nowrite(struct inode *inode); 7803be5a52bSMiklos Szeredi void fuse_release_nowrite(struct inode *inode); 7815c5c5e51SMiklos Szeredi 7825c5c5e51SMiklos Szeredi u64 fuse_get_attr_version(struct fuse_conn *fc); 78329d434b3STejun Heo 7843b463ae0SJohn Muir /** 7853b463ae0SJohn Muir * File-system tells the kernel to invalidate cache for the given node id. 7863b463ae0SJohn Muir */ 7873b463ae0SJohn Muir int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid, 7883b463ae0SJohn Muir loff_t offset, loff_t len); 7893b463ae0SJohn Muir 7903b463ae0SJohn Muir /** 7913b463ae0SJohn Muir * File-system tells the kernel to invalidate parent attributes and 7923b463ae0SJohn Muir * the dentry matching parent/name. 793451d0f59SJohn Muir * 794451d0f59SJohn Muir * If the child_nodeid is non-zero and: 795451d0f59SJohn Muir * - matches the inode number for the dentry matching parent/name, 796451d0f59SJohn Muir * - is not a mount point 797451d0f59SJohn Muir * - is a file or oan empty directory 798451d0f59SJohn Muir * then the dentry is unhashed (d_delete()). 7993b463ae0SJohn Muir */ 8003b463ae0SJohn Muir int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid, 801451d0f59SJohn Muir u64 child_nodeid, struct qstr *name); 8023b463ae0SJohn Muir 80308cbf542STejun Heo int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file, 80408cbf542STejun Heo bool isdir); 80508cbf542STejun Heo ssize_t fuse_direct_io(struct file *file, const char __user *buf, 80608cbf542STejun Heo size_t count, loff_t *ppos, int write); 80708cbf542STejun Heo long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg, 80808cbf542STejun Heo unsigned int flags); 809b18da0c5SMiklos Szeredi long fuse_ioctl_common(struct file *file, unsigned int cmd, 810b18da0c5SMiklos Szeredi unsigned long arg, unsigned int flags); 81108cbf542STejun Heo unsigned fuse_file_poll(struct file *file, poll_table *wait); 81208cbf542STejun Heo int fuse_dev_release(struct inode *inode, struct file *file); 81308cbf542STejun Heo 814a1d75f25SMiklos Szeredi void fuse_write_update_size(struct inode *inode, loff_t pos); 815a1d75f25SMiklos Szeredi 81629d434b3STejun Heo #endif /* _FS_FUSE_I_H */ 817