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> 25744742d6SSeth Forshee #include <linux/kref.h> 2660bcc88aSSeth Forshee #include <linux/xattr.h> 27d8a5ba45SMiklos Szeredi 28334f485dSMiklos Szeredi /** Max number of pages that can be used in a single read request */ 29334f485dSMiklos Szeredi #define FUSE_MAX_PAGES_PER_REQ 32 30334f485dSMiklos Szeredi 313be5a52bSMiklos Szeredi /** Bias for fi->writectr, meaning new writepages must not be sent */ 323be5a52bSMiklos Szeredi #define FUSE_NOWRITE INT_MIN 333be5a52bSMiklos Szeredi 341d3d752bSMiklos Szeredi /** It could be as large as PATH_MAX, but would that have any uses? */ 351d3d752bSMiklos Szeredi #define FUSE_NAME_MAX 1024 361d3d752bSMiklos Szeredi 37bafa9654SMiklos Szeredi /** Number of dentries for each connection in the control filesystem */ 3879a9d994SCsaba Henk #define FUSE_CTL_NUM_DENTRIES 5 39bafa9654SMiklos Szeredi 404250c066SMaxim Patlasov /** Number of page pointers embedded in fuse_req */ 414250c066SMaxim Patlasov #define FUSE_REQ_INLINE_PAGES 1 424250c066SMaxim Patlasov 43bafa9654SMiklos Szeredi /** List of active connections */ 44bafa9654SMiklos Szeredi extern struct list_head fuse_conn_list; 45bafa9654SMiklos Szeredi 46bafa9654SMiklos Szeredi /** Global mutex protecting fuse_conn_list and the control filesystem */ 47bafa9654SMiklos Szeredi extern struct mutex fuse_mutex; 48413ef8cbSMiklos Szeredi 4979a9d994SCsaba Henk /** Module parameters */ 5079a9d994SCsaba Henk extern unsigned max_user_bgreq; 5179a9d994SCsaba Henk extern unsigned max_user_congthresh; 5279a9d994SCsaba Henk 5307e77dcaSMiklos Szeredi /* One forget request */ 5407e77dcaSMiklos Szeredi struct fuse_forget_link { 5502c048b9SMiklos Szeredi struct fuse_forget_one forget_one; 5607e77dcaSMiklos Szeredi struct fuse_forget_link *next; 5707e77dcaSMiklos Szeredi }; 5807e77dcaSMiklos Szeredi 59d8a5ba45SMiklos Szeredi /** FUSE inode */ 60d8a5ba45SMiklos Szeredi struct fuse_inode { 61d8a5ba45SMiklos Szeredi /** Inode data */ 62d8a5ba45SMiklos Szeredi struct inode inode; 63d8a5ba45SMiklos Szeredi 64d8a5ba45SMiklos Szeredi /** Unique ID, which identifies the inode between userspace 65d8a5ba45SMiklos Szeredi * and kernel */ 66d8a5ba45SMiklos Szeredi u64 nodeid; 67d8a5ba45SMiklos Szeredi 689e6268dbSMiklos Szeredi /** Number of lookups on this inode */ 699e6268dbSMiklos Szeredi u64 nlookup; 709e6268dbSMiklos Szeredi 71e5e5558eSMiklos Szeredi /** The request used for sending the FORGET message */ 7207e77dcaSMiklos Szeredi struct fuse_forget_link *forget; 73e5e5558eSMiklos Szeredi 74d8a5ba45SMiklos Szeredi /** Time in jiffies until the file attributes are valid */ 750a0898cfSMiklos Szeredi u64 i_time; 76ebc14c4dSMiklos Szeredi 77ebc14c4dSMiklos Szeredi /** The sticky bit in inode->i_mode may have been removed, so 78ebc14c4dSMiklos Szeredi preserve the original mode */ 79541af6a0SAl Viro umode_t orig_i_mode; 801fb69e78SMiklos Szeredi 8145c72cd7SPavel Shilovsky /** 64 bit inode number */ 8245c72cd7SPavel Shilovsky u64 orig_ino; 8345c72cd7SPavel Shilovsky 841fb69e78SMiklos Szeredi /** Version of last attribute change */ 851fb69e78SMiklos Szeredi u64 attr_version; 8693a8c3cdSMiklos Szeredi 8793a8c3cdSMiklos Szeredi /** Files usable in writepage. Protected by fc->lock */ 8893a8c3cdSMiklos Szeredi struct list_head write_files; 893be5a52bSMiklos Szeredi 903be5a52bSMiklos Szeredi /** Writepages pending on truncate or fsync */ 913be5a52bSMiklos Szeredi struct list_head queued_writes; 923be5a52bSMiklos Szeredi 933be5a52bSMiklos Szeredi /** Number of sent writes, a negative bias (FUSE_NOWRITE) 943be5a52bSMiklos Szeredi * means more writes are blocked */ 953be5a52bSMiklos Szeredi int writectr; 963be5a52bSMiklos Szeredi 973be5a52bSMiklos Szeredi /** Waitq for writepage completion */ 983be5a52bSMiklos Szeredi wait_queue_head_t page_waitq; 993be5a52bSMiklos Szeredi 1003be5a52bSMiklos Szeredi /** List of writepage requestst (pending or sent) */ 1013be5a52bSMiklos Szeredi struct list_head writepages; 1024582a4abSFeng Shuo 1034582a4abSFeng Shuo /** Miscellaneous bits describing inode state */ 1044582a4abSFeng Shuo unsigned long state; 1055c672ab3SMiklos Szeredi 1065c672ab3SMiklos Szeredi /** Lock for serializing lookup and readdir for back compatibility*/ 1075c672ab3SMiklos Szeredi struct mutex mutex; 1084582a4abSFeng Shuo }; 1094582a4abSFeng Shuo 1104582a4abSFeng Shuo /** FUSE inode state bits */ 1114582a4abSFeng Shuo enum { 1124582a4abSFeng Shuo /** Advise readdirplus */ 1134582a4abSFeng Shuo FUSE_I_ADVISE_RDPLUS, 1146314efeeSMiklos Szeredi /** Initialized with readdirplus */ 1156314efeeSMiklos Szeredi FUSE_I_INIT_RDPLUS, 11606a7c3c2SMaxim Patlasov /** An operation changing file size is in progress */ 11706a7c3c2SMaxim Patlasov FUSE_I_SIZE_UNSTABLE, 118d8a5ba45SMiklos Szeredi }; 119d8a5ba45SMiklos Szeredi 120da5e4714SMiklos Szeredi struct fuse_conn; 121da5e4714SMiklos Szeredi 122b6aeadedSMiklos Szeredi /** FUSE specific file data */ 123b6aeadedSMiklos Szeredi struct fuse_file { 124da5e4714SMiklos Szeredi /** Fuse connection for this file */ 125da5e4714SMiklos Szeredi struct fuse_conn *fc; 126da5e4714SMiklos Szeredi 127b6aeadedSMiklos Szeredi /** Request reserved for flush and release */ 12833649c91SMiklos Szeredi struct fuse_req *reserved_req; 129b6aeadedSMiklos Szeredi 130acf99433STejun Heo /** Kernel file handle guaranteed to be unique */ 131acf99433STejun Heo u64 kh; 132acf99433STejun Heo 133b6aeadedSMiklos Szeredi /** File handle used by userspace */ 134b6aeadedSMiklos Szeredi u64 fh; 135c756e0a4SMiklos Szeredi 136da5e4714SMiklos Szeredi /** Node id of this file */ 137da5e4714SMiklos Szeredi u64 nodeid; 138da5e4714SMiklos Szeredi 139c756e0a4SMiklos Szeredi /** Refcount */ 140c756e0a4SMiklos Szeredi atomic_t count; 14193a8c3cdSMiklos Szeredi 142c7b7143cSMiklos Szeredi /** FOPEN_* flags returned by open */ 143c7b7143cSMiklos Szeredi u32 open_flags; 144c7b7143cSMiklos Szeredi 14593a8c3cdSMiklos Szeredi /** Entry on inode's write_files list */ 14693a8c3cdSMiklos Szeredi struct list_head write_entry; 14795668a69STejun Heo 14895668a69STejun Heo /** RB node to be linked on fuse_conn->polled_files */ 14995668a69STejun Heo struct rb_node polled_node; 15095668a69STejun Heo 15195668a69STejun Heo /** Wait queue head for poll */ 15295668a69STejun Heo wait_queue_head_t poll_wait; 15337fb3a30SMiklos Szeredi 15437fb3a30SMiklos Szeredi /** Has flock been performed on this file? */ 15537fb3a30SMiklos Szeredi bool flock:1; 156b6aeadedSMiklos Szeredi }; 157b6aeadedSMiklos Szeredi 158334f485dSMiklos Szeredi /** One input argument of a request */ 159334f485dSMiklos Szeredi struct fuse_in_arg { 160334f485dSMiklos Szeredi unsigned size; 161334f485dSMiklos Szeredi const void *value; 162334f485dSMiklos Szeredi }; 163334f485dSMiklos Szeredi 164334f485dSMiklos Szeredi /** The request input */ 165334f485dSMiklos Szeredi struct fuse_in { 166334f485dSMiklos Szeredi /** The request header */ 167334f485dSMiklos Szeredi struct fuse_in_header h; 168334f485dSMiklos Szeredi 169334f485dSMiklos Szeredi /** True if the data for the last argument is in req->pages */ 170334f485dSMiklos Szeredi unsigned argpages:1; 171334f485dSMiklos Szeredi 172334f485dSMiklos Szeredi /** Number of arguments */ 173334f485dSMiklos Szeredi unsigned numargs; 174334f485dSMiklos Szeredi 175334f485dSMiklos Szeredi /** Array of arguments */ 176334f485dSMiklos Szeredi struct fuse_in_arg args[3]; 177334f485dSMiklos Szeredi }; 178334f485dSMiklos Szeredi 179334f485dSMiklos Szeredi /** One output argument of a request */ 180334f485dSMiklos Szeredi struct fuse_arg { 181334f485dSMiklos Szeredi unsigned size; 182334f485dSMiklos Szeredi void *value; 183334f485dSMiklos Szeredi }; 184334f485dSMiklos Szeredi 185334f485dSMiklos Szeredi /** The request output */ 186334f485dSMiklos Szeredi struct fuse_out { 187334f485dSMiklos Szeredi /** Header returned from userspace */ 188334f485dSMiklos Szeredi struct fuse_out_header h; 189334f485dSMiklos Szeredi 190095da6cbSMiklos Szeredi /* 191095da6cbSMiklos Szeredi * The following bitfields are not changed during the request 192095da6cbSMiklos Szeredi * processing 193095da6cbSMiklos Szeredi */ 194095da6cbSMiklos Szeredi 195334f485dSMiklos Szeredi /** Last argument is variable length (can be shorter than 196334f485dSMiklos Szeredi arg->size) */ 197334f485dSMiklos Szeredi unsigned argvar:1; 198334f485dSMiklos Szeredi 199334f485dSMiklos Szeredi /** Last argument is a list of pages to copy data to */ 200334f485dSMiklos Szeredi unsigned argpages:1; 201334f485dSMiklos Szeredi 202334f485dSMiklos Szeredi /** Zero partially or not copied pages */ 203334f485dSMiklos Szeredi unsigned page_zeroing:1; 204334f485dSMiklos Szeredi 205ce534fb0SMiklos Szeredi /** Pages may be replaced with new ones */ 206ce534fb0SMiklos Szeredi unsigned page_replace:1; 207ce534fb0SMiklos Szeredi 208334f485dSMiklos Szeredi /** Number or arguments */ 209334f485dSMiklos Szeredi unsigned numargs; 210334f485dSMiklos Szeredi 211334f485dSMiklos Szeredi /** Array of arguments */ 212f704dcb5SMiklos Szeredi struct fuse_arg args[2]; 213334f485dSMiklos Szeredi }; 214334f485dSMiklos Szeredi 215b2430d75SMaxim Patlasov /** FUSE page descriptor */ 216b2430d75SMaxim Patlasov struct fuse_page_desc { 217b2430d75SMaxim Patlasov unsigned int length; 218b2430d75SMaxim Patlasov unsigned int offset; 219b2430d75SMaxim Patlasov }; 220b2430d75SMaxim Patlasov 2217078187aSMiklos Szeredi struct fuse_args { 2227078187aSMiklos Szeredi struct { 2237078187aSMiklos Szeredi struct { 2247078187aSMiklos Szeredi uint32_t opcode; 2257078187aSMiklos Szeredi uint64_t nodeid; 2267078187aSMiklos Szeredi } h; 2277078187aSMiklos Szeredi unsigned numargs; 2287078187aSMiklos Szeredi struct fuse_in_arg args[3]; 2297078187aSMiklos Szeredi 2307078187aSMiklos Szeredi } in; 2317078187aSMiklos Szeredi struct { 2327078187aSMiklos Szeredi unsigned argvar:1; 2337078187aSMiklos Szeredi unsigned numargs; 2347078187aSMiklos Szeredi struct fuse_arg args[2]; 2357078187aSMiklos Szeredi } out; 2367078187aSMiklos Szeredi }; 2377078187aSMiklos Szeredi 2387078187aSMiklos Szeredi #define FUSE_ARGS(args) struct fuse_args args = {} 2397078187aSMiklos Szeredi 24001e9d11aSMaxim Patlasov /** The request IO state (for asynchronous processing) */ 24101e9d11aSMaxim Patlasov struct fuse_io_priv { 242744742d6SSeth Forshee struct kref refcnt; 24301e9d11aSMaxim Patlasov int async; 24401e9d11aSMaxim Patlasov spinlock_t lock; 24501e9d11aSMaxim Patlasov unsigned reqs; 24601e9d11aSMaxim Patlasov ssize_t bytes; 24701e9d11aSMaxim Patlasov size_t size; 24801e9d11aSMaxim Patlasov __u64 offset; 24901e9d11aSMaxim Patlasov bool write; 25001e9d11aSMaxim Patlasov int err; 25101e9d11aSMaxim Patlasov struct kiocb *iocb; 25201e9d11aSMaxim Patlasov struct file *file; 2539d5722b7SChristoph Hellwig struct completion *done; 2547879c4e5SAshish Sangwan bool blocking; 25501e9d11aSMaxim Patlasov }; 25601e9d11aSMaxim Patlasov 257744742d6SSeth Forshee #define FUSE_IO_PRIV_SYNC(f) \ 258744742d6SSeth Forshee { \ 259*1e24edcaSPeter Zijlstra .refcnt = KREF_INIT(1), \ 260744742d6SSeth Forshee .async = 0, \ 261744742d6SSeth Forshee .file = f, \ 262744742d6SSeth Forshee } 263744742d6SSeth Forshee 264334f485dSMiklos Szeredi /** 265825d6d33SMiklos Szeredi * Request flags 266825d6d33SMiklos Szeredi * 267825d6d33SMiklos Szeredi * FR_ISREPLY: set if the request has reply 268825d6d33SMiklos Szeredi * FR_FORCE: force sending of the request even if interrupted 269825d6d33SMiklos Szeredi * FR_BACKGROUND: request is sent in the background 270825d6d33SMiklos Szeredi * FR_WAITING: request is counted as "waiting" 271825d6d33SMiklos Szeredi * FR_ABORTED: the request was aborted 272825d6d33SMiklos Szeredi * FR_INTERRUPTED: the request has been interrupted 273825d6d33SMiklos Szeredi * FR_LOCKED: data is being copied to/from the request 27433e14b4dSMiklos Szeredi * FR_PENDING: request is not yet in userspace 27533e14b4dSMiklos Szeredi * FR_SENT: request is in userspace, waiting for an answer 27633e14b4dSMiklos Szeredi * FR_FINISHED: request is finished 27777cd9d48SMiklos Szeredi * FR_PRIVATE: request is on private list 278825d6d33SMiklos Szeredi */ 279825d6d33SMiklos Szeredi enum fuse_req_flag { 280825d6d33SMiklos Szeredi FR_ISREPLY, 281825d6d33SMiklos Szeredi FR_FORCE, 282825d6d33SMiklos Szeredi FR_BACKGROUND, 283825d6d33SMiklos Szeredi FR_WAITING, 284825d6d33SMiklos Szeredi FR_ABORTED, 285825d6d33SMiklos Szeredi FR_INTERRUPTED, 286825d6d33SMiklos Szeredi FR_LOCKED, 28733e14b4dSMiklos Szeredi FR_PENDING, 28833e14b4dSMiklos Szeredi FR_SENT, 28933e14b4dSMiklos Szeredi FR_FINISHED, 29077cd9d48SMiklos Szeredi FR_PRIVATE, 291825d6d33SMiklos Szeredi }; 292825d6d33SMiklos Szeredi 293825d6d33SMiklos Szeredi /** 294334f485dSMiklos Szeredi * A request to the client 295dc00809aSMiklos Szeredi * 296dc00809aSMiklos Szeredi * .waitq.lock protects the following fields: 297dc00809aSMiklos Szeredi * - FR_ABORTED 298dc00809aSMiklos Szeredi * - FR_LOCKED (may also be modified under fc->lock, tested under both) 299334f485dSMiklos Szeredi */ 300334f485dSMiklos Szeredi struct fuse_req { 301ce1d5a49SMiklos Szeredi /** This can be on either pending processing or io lists in 302ce1d5a49SMiklos Szeredi fuse_conn */ 303334f485dSMiklos Szeredi struct list_head list; 304334f485dSMiklos Szeredi 305a4d27e75SMiklos Szeredi /** Entry on the interrupts list */ 306a4d27e75SMiklos Szeredi struct list_head intr_entry; 307a4d27e75SMiklos Szeredi 308334f485dSMiklos Szeredi /** refcount */ 309334f485dSMiklos Szeredi atomic_t count; 310334f485dSMiklos Szeredi 311a4d27e75SMiklos Szeredi /** Unique ID for the interrupt request */ 312a4d27e75SMiklos Szeredi u64 intr_unique; 313a4d27e75SMiklos Szeredi 314825d6d33SMiklos Szeredi /* Request flags, updated with test/set/clear_bit() */ 315825d6d33SMiklos Szeredi unsigned long flags; 3169bc5dddaSMiklos Szeredi 317334f485dSMiklos Szeredi /** The request input */ 318334f485dSMiklos Szeredi struct fuse_in in; 319334f485dSMiklos Szeredi 320334f485dSMiklos Szeredi /** The request output */ 321334f485dSMiklos Szeredi struct fuse_out out; 322334f485dSMiklos Szeredi 323334f485dSMiklos Szeredi /** Used to wake up the task waiting for completion of request*/ 324334f485dSMiklos Szeredi wait_queue_head_t waitq; 325334f485dSMiklos Szeredi 326334f485dSMiklos Szeredi /** Data for asynchronous requests */ 327334f485dSMiklos Szeredi union { 328b57d4264SMiklos Szeredi struct { 329b57d4264SMiklos Szeredi struct fuse_release_in in; 330baebccbeSMiklos Szeredi struct inode *inode; 331b57d4264SMiklos Szeredi } release; 3323ec870d5SMiklos Szeredi struct fuse_init_in init_in; 3333ec870d5SMiklos Szeredi struct fuse_init_out init_out; 33408cbf542STejun Heo struct cuse_init_in cuse_init_in; 3355c5c5e51SMiklos Szeredi struct { 3365c5c5e51SMiklos Szeredi struct fuse_read_in in; 3375c5c5e51SMiklos Szeredi u64 attr_ver; 3385c5c5e51SMiklos Szeredi } read; 339b25e82e5SMiklos Szeredi struct { 340b25e82e5SMiklos Szeredi struct fuse_write_in in; 341b25e82e5SMiklos Szeredi struct fuse_write_out out; 3428b284dc4SMiklos Szeredi struct fuse_req *next; 343b25e82e5SMiklos Szeredi } write; 3442d45ba38SMiklos Szeredi struct fuse_notify_retrieve_in retrieve_in; 345334f485dSMiklos Szeredi } misc; 346334f485dSMiklos Szeredi 347334f485dSMiklos Szeredi /** page vector */ 3484250c066SMaxim Patlasov struct page **pages; 3494250c066SMaxim Patlasov 350b2430d75SMaxim Patlasov /** page-descriptor vector */ 351b2430d75SMaxim Patlasov struct fuse_page_desc *page_descs; 352b2430d75SMaxim Patlasov 3534250c066SMaxim Patlasov /** size of the 'pages' array */ 3544250c066SMaxim Patlasov unsigned max_pages; 3554250c066SMaxim Patlasov 3564250c066SMaxim Patlasov /** inline page vector */ 3574250c066SMaxim Patlasov struct page *inline_pages[FUSE_REQ_INLINE_PAGES]; 358334f485dSMiklos Szeredi 359b2430d75SMaxim Patlasov /** inline page-descriptor vector */ 360b2430d75SMaxim Patlasov struct fuse_page_desc inline_page_descs[FUSE_REQ_INLINE_PAGES]; 361b2430d75SMaxim Patlasov 362334f485dSMiklos Szeredi /** number of pages in vector */ 363334f485dSMiklos Szeredi unsigned num_pages; 364334f485dSMiklos Szeredi 365334f485dSMiklos Szeredi /** File used in the request (or NULL) */ 366c756e0a4SMiklos Szeredi struct fuse_file *ff; 36764c6d8edSMiklos Szeredi 3683be5a52bSMiklos Szeredi /** Inode used in the request or NULL */ 3693be5a52bSMiklos Szeredi struct inode *inode; 3703be5a52bSMiklos Szeredi 37101e9d11aSMaxim Patlasov /** AIO control block */ 37201e9d11aSMaxim Patlasov struct fuse_io_priv *io; 37301e9d11aSMaxim Patlasov 3743be5a52bSMiklos Szeredi /** Link on fi->writepages */ 3753be5a52bSMiklos Szeredi struct list_head writepages_entry; 3763be5a52bSMiklos Szeredi 37764c6d8edSMiklos Szeredi /** Request completion callback */ 37864c6d8edSMiklos Szeredi void (*end)(struct fuse_conn *, struct fuse_req *); 37933649c91SMiklos Szeredi 38033649c91SMiklos Szeredi /** Request is stolen from fuse_file->reserved_req */ 38133649c91SMiklos Szeredi struct file *stolen_file; 382334f485dSMiklos Szeredi }; 383334f485dSMiklos Szeredi 384f88996a9SMiklos Szeredi struct fuse_iqueue { 385e16714d8SMiklos Szeredi /** Connection established */ 386e16714d8SMiklos Szeredi unsigned connected; 387e16714d8SMiklos Szeredi 388f88996a9SMiklos Szeredi /** Readers of the connection are waiting on this */ 389f88996a9SMiklos Szeredi wait_queue_head_t waitq; 390f88996a9SMiklos Szeredi 391f88996a9SMiklos Szeredi /** The next unique request id */ 392f88996a9SMiklos Szeredi u64 reqctr; 393f88996a9SMiklos Szeredi 394f88996a9SMiklos Szeredi /** The list of pending requests */ 395f88996a9SMiklos Szeredi struct list_head pending; 396f88996a9SMiklos Szeredi 397f88996a9SMiklos Szeredi /** Pending interrupts */ 398f88996a9SMiklos Szeredi struct list_head interrupts; 399f88996a9SMiklos Szeredi 400f88996a9SMiklos Szeredi /** Queue of pending forgets */ 401f88996a9SMiklos Szeredi struct fuse_forget_link forget_list_head; 402f88996a9SMiklos Szeredi struct fuse_forget_link *forget_list_tail; 403f88996a9SMiklos Szeredi 404f88996a9SMiklos Szeredi /** Batching of FORGET requests (positive indicates FORGET batch) */ 405f88996a9SMiklos Szeredi int forget_batch; 406f88996a9SMiklos Szeredi 407f88996a9SMiklos Szeredi /** O_ASYNC requests */ 408f88996a9SMiklos Szeredi struct fasync_struct *fasync; 409f88996a9SMiklos Szeredi }; 410f88996a9SMiklos Szeredi 4113a2b5b9cSMiklos Szeredi struct fuse_pqueue { 412e96edd94SMiklos Szeredi /** Connection established */ 413e96edd94SMiklos Szeredi unsigned connected; 414e96edd94SMiklos Szeredi 41545a91cb1SMiklos Szeredi /** Lock protecting accessess to members of this structure */ 41645a91cb1SMiklos Szeredi spinlock_t lock; 41745a91cb1SMiklos Szeredi 4183a2b5b9cSMiklos Szeredi /** The list of requests being processed */ 4193a2b5b9cSMiklos Szeredi struct list_head processing; 4203a2b5b9cSMiklos Szeredi 4213a2b5b9cSMiklos Szeredi /** The list of requests under I/O */ 4223a2b5b9cSMiklos Szeredi struct list_head io; 4233a2b5b9cSMiklos Szeredi }; 4243a2b5b9cSMiklos Szeredi 425d8a5ba45SMiklos Szeredi /** 426cc080e9eSMiklos Szeredi * Fuse device instance 427cc080e9eSMiklos Szeredi */ 428cc080e9eSMiklos Szeredi struct fuse_dev { 429cc080e9eSMiklos Szeredi /** Fuse connection for this device */ 430cc080e9eSMiklos Szeredi struct fuse_conn *fc; 431cc080e9eSMiklos Szeredi 432c3696046SMiklos Szeredi /** Processing queue */ 433c3696046SMiklos Szeredi struct fuse_pqueue pq; 434c3696046SMiklos Szeredi 435cc080e9eSMiklos Szeredi /** list entry on fc->devices */ 436cc080e9eSMiklos Szeredi struct list_head entry; 437cc080e9eSMiklos Szeredi }; 438cc080e9eSMiklos Szeredi 439cc080e9eSMiklos Szeredi /** 440d8a5ba45SMiklos Szeredi * A Fuse connection. 441d8a5ba45SMiklos Szeredi * 442d8a5ba45SMiklos Szeredi * This structure is created, when the filesystem is mounted, and is 443d8a5ba45SMiklos Szeredi * destroyed, when the client device is closed and the filesystem is 444d8a5ba45SMiklos Szeredi * unmounted. 445d8a5ba45SMiklos Szeredi */ 446d8a5ba45SMiklos Szeredi struct fuse_conn { 447d7133114SMiklos Szeredi /** Lock protecting accessess to members of this structure */ 448d7133114SMiklos Szeredi spinlock_t lock; 449d7133114SMiklos Szeredi 450bafa9654SMiklos Szeredi /** Refcount */ 451bafa9654SMiklos Szeredi atomic_t count; 452bafa9654SMiklos Szeredi 453c3696046SMiklos Szeredi /** Number of fuse_dev's */ 454c3696046SMiklos Szeredi atomic_t dev_count; 455c3696046SMiklos Szeredi 456dd3e2c55SAl Viro struct rcu_head rcu; 457dd3e2c55SAl Viro 458d8a5ba45SMiklos Szeredi /** The user id for this mount */ 459499dcf20SEric W. Biederman kuid_t user_id; 460d8a5ba45SMiklos Szeredi 46187729a55SMiklos Szeredi /** The group id for this mount */ 462499dcf20SEric W. Biederman kgid_t group_id; 46387729a55SMiklos Szeredi 464db50b96cSMiklos Szeredi /** Maximum read size */ 465db50b96cSMiklos Szeredi unsigned max_read; 466db50b96cSMiklos Szeredi 467413ef8cbSMiklos Szeredi /** Maximum write size */ 468413ef8cbSMiklos Szeredi unsigned max_write; 469413ef8cbSMiklos Szeredi 470f88996a9SMiklos Szeredi /** Input queue */ 471f88996a9SMiklos Szeredi struct fuse_iqueue iq; 472334f485dSMiklos Szeredi 473acf99433STejun Heo /** The next unique kernel file handle */ 474acf99433STejun Heo u64 khctr; 475acf99433STejun Heo 47695668a69STejun Heo /** rbtree of fuse_files waiting for poll events indexed by ph */ 47795668a69STejun Heo struct rb_root polled_files; 47895668a69STejun Heo 4797a6d3c8bSCsaba Henk /** Maximum number of outstanding background requests */ 4807a6d3c8bSCsaba Henk unsigned max_background; 4817a6d3c8bSCsaba Henk 4827a6d3c8bSCsaba Henk /** Number of background requests at which congestion starts */ 4837a6d3c8bSCsaba Henk unsigned congestion_threshold; 4847a6d3c8bSCsaba Henk 48508a53cdcSMiklos Szeredi /** Number of requests currently in the background */ 48608a53cdcSMiklos Szeredi unsigned num_background; 48708a53cdcSMiklos Szeredi 488d12def1bSMiklos Szeredi /** Number of background requests currently queued for userspace */ 489d12def1bSMiklos Szeredi unsigned active_background; 490d12def1bSMiklos Szeredi 491d12def1bSMiklos Szeredi /** The list of background requests set aside for later queuing */ 492d12def1bSMiklos Szeredi struct list_head bg_queue; 493d12def1bSMiklos Szeredi 494796523fbSMaxim Patlasov /** Flag indicating that INIT reply has been received. Allocating 495796523fbSMaxim Patlasov * any fuse request will be suspended until the flag is set */ 496796523fbSMaxim Patlasov int initialized; 497796523fbSMaxim Patlasov 49808a53cdcSMiklos Szeredi /** Flag indicating if connection is blocked. This will be 49908a53cdcSMiklos Szeredi the case before the INIT reply is received, and if there 50008a53cdcSMiklos Szeredi are too many outstading backgrounds requests */ 50108a53cdcSMiklos Szeredi int blocked; 50208a53cdcSMiklos Szeredi 50308a53cdcSMiklos Szeredi /** waitq for blocked connection */ 50408a53cdcSMiklos Szeredi wait_queue_head_t blocked_waitq; 50508a53cdcSMiklos Szeredi 506de5e3decSMiklos Szeredi /** waitq for reserved requests */ 507de5e3decSMiklos Szeredi wait_queue_head_t reserved_req_waitq; 508de5e3decSMiklos Szeredi 50969a53bf2SMiklos Szeredi /** Connection established, cleared on umount, connection 51069a53bf2SMiklos Szeredi abort and device release */ 511095da6cbSMiklos Szeredi unsigned connected; 5121e9a4ed9SMiklos Szeredi 513095da6cbSMiklos Szeredi /** Connection failed (version mismatch). Cannot race with 514095da6cbSMiklos Szeredi setting other bitfields since it is only set once in INIT 515095da6cbSMiklos Szeredi reply, before any other request, and never cleared */ 516334f485dSMiklos Szeredi unsigned conn_error:1; 517334f485dSMiklos Szeredi 5180ec7ca41SMiklos Szeredi /** Connection successful. Only set in INIT */ 5190ec7ca41SMiklos Szeredi unsigned conn_init:1; 5200ec7ca41SMiklos Szeredi 5219cd68455SMiklos Szeredi /** Do readpages asynchronously? Only set in INIT */ 5229cd68455SMiklos Szeredi unsigned async_read:1; 5239cd68455SMiklos Szeredi 5246ff958edSMiklos Szeredi /** Do not send separate SETATTR request before open(O_TRUNC) */ 5256ff958edSMiklos Szeredi unsigned atomic_o_trunc:1; 5266ff958edSMiklos Szeredi 52733670fa2SMiklos Szeredi /** Filesystem supports NFS exporting. Only set in INIT */ 52833670fa2SMiklos Szeredi unsigned export_support:1; 52933670fa2SMiklos Szeredi 530a325f9b9STejun Heo /** Set if bdi is valid */ 531a325f9b9STejun Heo unsigned bdi_initialized:1; 532a325f9b9STejun Heo 533d5cd66c5SPavel Emelyanov /** write-back cache policy (default is write-through) */ 534d5cd66c5SPavel Emelyanov unsigned writeback_cache:1; 535d5cd66c5SPavel Emelyanov 5365c672ab3SMiklos Szeredi /** allow parallel lookups and readdir (default is serialized) */ 5375c672ab3SMiklos Szeredi unsigned parallel_dirops:1; 5385c672ab3SMiklos Szeredi 5395e940c1dSMiklos Szeredi /** handle fs handles killing suid/sgid/cap on write/chown/trunc */ 5405e940c1dSMiklos Szeredi unsigned handle_killpriv:1; 5415e940c1dSMiklos Szeredi 542095da6cbSMiklos Szeredi /* 543095da6cbSMiklos Szeredi * The following bitfields are only for optimization purposes 544095da6cbSMiklos Szeredi * and hence races in setting them will not cause malfunction 545095da6cbSMiklos Szeredi */ 546095da6cbSMiklos Szeredi 5477678ac50SAndrew Gallagher /** Is open/release not implemented by fs? */ 5487678ac50SAndrew Gallagher unsigned no_open:1; 5497678ac50SAndrew Gallagher 550b6aeadedSMiklos Szeredi /** Is fsync not implemented by fs? */ 551b6aeadedSMiklos Szeredi unsigned no_fsync:1; 552b6aeadedSMiklos Szeredi 55382547981SMiklos Szeredi /** Is fsyncdir not implemented by fs? */ 55482547981SMiklos Szeredi unsigned no_fsyncdir:1; 55582547981SMiklos Szeredi 556b6aeadedSMiklos Szeredi /** Is flush not implemented by fs? */ 557b6aeadedSMiklos Szeredi unsigned no_flush:1; 558b6aeadedSMiklos Szeredi 55992a8780eSMiklos Szeredi /** Is setxattr not implemented by fs? */ 56092a8780eSMiklos Szeredi unsigned no_setxattr:1; 56192a8780eSMiklos Szeredi 56292a8780eSMiklos Szeredi /** Is getxattr not implemented by fs? */ 56392a8780eSMiklos Szeredi unsigned no_getxattr:1; 56492a8780eSMiklos Szeredi 56592a8780eSMiklos Szeredi /** Is listxattr not implemented by fs? */ 56692a8780eSMiklos Szeredi unsigned no_listxattr:1; 56792a8780eSMiklos Szeredi 56892a8780eSMiklos Szeredi /** Is removexattr not implemented by fs? */ 56992a8780eSMiklos Szeredi unsigned no_removexattr:1; 57092a8780eSMiklos Szeredi 57137fb3a30SMiklos Szeredi /** Are posix file locking primitives not implemented by fs? */ 57271421259SMiklos Szeredi unsigned no_lock:1; 57371421259SMiklos Szeredi 57431d40d74SMiklos Szeredi /** Is access not implemented by fs? */ 57531d40d74SMiklos Szeredi unsigned no_access:1; 57631d40d74SMiklos Szeredi 577fd72faacSMiklos Szeredi /** Is create not implemented by fs? */ 578fd72faacSMiklos Szeredi unsigned no_create:1; 579fd72faacSMiklos Szeredi 580a4d27e75SMiklos Szeredi /** Is interrupt not implemented by fs? */ 581a4d27e75SMiklos Szeredi unsigned no_interrupt:1; 582a4d27e75SMiklos Szeredi 583b2d2272fSMiklos Szeredi /** Is bmap not implemented by fs? */ 584b2d2272fSMiklos Szeredi unsigned no_bmap:1; 585b2d2272fSMiklos Szeredi 58695668a69STejun Heo /** Is poll not implemented by fs? */ 58795668a69STejun Heo unsigned no_poll:1; 58895668a69STejun Heo 58978bb6cb9SMiklos Szeredi /** Do multi-page cached writes */ 59078bb6cb9SMiklos Szeredi unsigned big_writes:1; 59178bb6cb9SMiklos Szeredi 592e0a43ddcSMiklos Szeredi /** Don't apply umask to creation modes */ 593e0a43ddcSMiklos Szeredi unsigned dont_mask:1; 594e0a43ddcSMiklos Szeredi 59537fb3a30SMiklos Szeredi /** Are BSD file locking primitives not implemented by fs? */ 59637fb3a30SMiklos Szeredi unsigned no_flock:1; 59737fb3a30SMiklos Szeredi 598519c6040SMiklos Szeredi /** Is fallocate not implemented by fs? */ 599519c6040SMiklos Szeredi unsigned no_fallocate:1; 600519c6040SMiklos Szeredi 6011560c974SMiklos Szeredi /** Is rename with flags implemented by fs? */ 6021560c974SMiklos Szeredi unsigned no_rename2:1; 6031560c974SMiklos Szeredi 60472d0d248SBrian Foster /** Use enhanced/automatic page cache invalidation. */ 60572d0d248SBrian Foster unsigned auto_inval_data:1; 60672d0d248SBrian Foster 607634734b6SEric Wong /** Does the filesystem support readdirplus? */ 6080b05b183SAnand V. Avati unsigned do_readdirplus:1; 6090b05b183SAnand V. Avati 610634734b6SEric Wong /** Does the filesystem want adaptive readdirplus? */ 611634734b6SEric Wong unsigned readdirplus_auto:1; 612634734b6SEric Wong 61360b9df7aSMiklos Szeredi /** Does the filesystem support asynchronous direct-IO submission? */ 61460b9df7aSMiklos Szeredi unsigned async_dio:1; 61560b9df7aSMiklos Szeredi 6160b5da8dbSRavishankar N /** Is lseek not implemented by fs? */ 6170b5da8dbSRavishankar N unsigned no_lseek:1; 6180b5da8dbSRavishankar N 61960bcc88aSSeth Forshee /** Does the filesystem support posix acls? */ 62060bcc88aSSeth Forshee unsigned posix_acl:1; 62160bcc88aSSeth Forshee 62229433a29SMiklos Szeredi /** Check permissions based on the file mode or not? */ 62329433a29SMiklos Szeredi unsigned default_permissions:1; 62429433a29SMiklos Szeredi 62529433a29SMiklos Szeredi /** Allow other than the mounter user to access the filesystem ? */ 62629433a29SMiklos Szeredi unsigned allow_other:1; 62729433a29SMiklos Szeredi 6280cd5b885SMiklos Szeredi /** The number of requests waiting for completion */ 6290cd5b885SMiklos Szeredi atomic_t num_waiting; 6300cd5b885SMiklos Szeredi 63145714d65SMiklos Szeredi /** Negotiated minor version */ 63245714d65SMiklos Szeredi unsigned minor; 63345714d65SMiklos Szeredi 634d8a5ba45SMiklos Szeredi /** Backing dev info */ 635d8a5ba45SMiklos Szeredi struct backing_dev_info bdi; 636f543f253SMiklos Szeredi 637bafa9654SMiklos Szeredi /** Entry on the fuse_conn_list */ 638bafa9654SMiklos Szeredi struct list_head entry; 639bafa9654SMiklos Szeredi 640b6f2fcbcSMiklos Szeredi /** Device ID from super block */ 641b6f2fcbcSMiklos Szeredi dev_t dev; 642bafa9654SMiklos Szeredi 643bafa9654SMiklos Szeredi /** Dentries in the control filesystem */ 644bafa9654SMiklos Szeredi struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES]; 645bafa9654SMiklos Szeredi 646bafa9654SMiklos Szeredi /** number of dentries used in the above array */ 647bafa9654SMiklos Szeredi int ctl_ndents; 648385a17bfSJeff Dike 6499c8ef561SMiklos Szeredi /** Key for lock owner ID scrambling */ 6509c8ef561SMiklos Szeredi u32 scramble_key[4]; 6510ec7ca41SMiklos Szeredi 6520ec7ca41SMiklos Szeredi /** Reserved request for the DESTROY message */ 6530ec7ca41SMiklos Szeredi struct fuse_req *destroy_req; 6541fb69e78SMiklos Szeredi 6551fb69e78SMiklos Szeredi /** Version counter for attribute changes */ 6561fb69e78SMiklos Szeredi u64 attr_version; 65743901aabSTejun Heo 65843901aabSTejun Heo /** Called on final put */ 65943901aabSTejun Heo void (*release)(struct fuse_conn *); 6603b463ae0SJohn Muir 6613b463ae0SJohn Muir /** Super block for this connection. */ 6623b463ae0SJohn Muir struct super_block *sb; 6633b463ae0SJohn Muir 6643b463ae0SJohn Muir /** Read/write semaphore to hold when accessing sb. */ 6653b463ae0SJohn Muir struct rw_semaphore killsb; 666cc080e9eSMiklos Szeredi 667cc080e9eSMiklos Szeredi /** List of device instances belonging to this connection */ 668cc080e9eSMiklos Szeredi struct list_head devices; 669d8a5ba45SMiklos Szeredi }; 670d8a5ba45SMiklos Szeredi 671d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb) 672d8a5ba45SMiklos Szeredi { 6736383bdaaSMiklos Szeredi return sb->s_fs_info; 674d8a5ba45SMiklos Szeredi } 675d8a5ba45SMiklos Szeredi 676d8a5ba45SMiklos Szeredi static inline struct fuse_conn *get_fuse_conn(struct inode *inode) 677d8a5ba45SMiklos Szeredi { 678d8a5ba45SMiklos Szeredi return get_fuse_conn_super(inode->i_sb); 679d8a5ba45SMiklos Szeredi } 680d8a5ba45SMiklos Szeredi 681d8a5ba45SMiklos Szeredi static inline struct fuse_inode *get_fuse_inode(struct inode *inode) 682d8a5ba45SMiklos Szeredi { 683d8a5ba45SMiklos Szeredi return container_of(inode, struct fuse_inode, inode); 684d8a5ba45SMiklos Szeredi } 685d8a5ba45SMiklos Szeredi 686d8a5ba45SMiklos Szeredi static inline u64 get_node_id(struct inode *inode) 687d8a5ba45SMiklos Szeredi { 688d8a5ba45SMiklos Szeredi return get_fuse_inode(inode)->nodeid; 689d8a5ba45SMiklos Szeredi } 690d8a5ba45SMiklos Szeredi 691334f485dSMiklos Szeredi /** Device operations */ 6924b6f5d20SArjan van de Ven extern const struct file_operations fuse_dev_operations; 693334f485dSMiklos Szeredi 6944269590aSAl Viro extern const struct dentry_operations fuse_dentry_operations; 6950ce267ffSMiklos Szeredi extern const struct dentry_operations fuse_root_dentry_operations; 696dbd561d2SMiklos Szeredi 697d8a5ba45SMiklos Szeredi /** 6983b463ae0SJohn Muir * Inode to nodeid comparison. 6993b463ae0SJohn Muir */ 7003b463ae0SJohn Muir int fuse_inode_eq(struct inode *inode, void *_nodeidp); 7013b463ae0SJohn Muir 7023b463ae0SJohn Muir /** 703e5e5558eSMiklos Szeredi * Get a filled in inode 704e5e5558eSMiklos Szeredi */ 705b48badf0SMiklos Szeredi struct inode *fuse_iget(struct super_block *sb, u64 nodeid, 7061fb69e78SMiklos Szeredi int generation, struct fuse_attr *attr, 7071fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 708e5e5558eSMiklos Szeredi 70913983d06SAl Viro int fuse_lookup_name(struct super_block *sb, u64 nodeid, const struct qstr *name, 71033670fa2SMiklos Szeredi struct fuse_entry_out *outarg, struct inode **inode); 71133670fa2SMiklos Szeredi 712e5e5558eSMiklos Szeredi /** 713e5e5558eSMiklos Szeredi * Send FORGET command 714e5e5558eSMiklos Szeredi */ 71507e77dcaSMiklos Szeredi void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget, 716b48badf0SMiklos Szeredi u64 nodeid, u64 nlookup); 717e5e5558eSMiklos Szeredi 71807e77dcaSMiklos Szeredi struct fuse_forget_link *fuse_alloc_forget(void); 71907e77dcaSMiklos Szeredi 7200b05b183SAnand V. Avati /* Used by READDIRPLUS */ 7210b05b183SAnand V. Avati void fuse_force_forget(struct file *file, u64 nodeid); 7220b05b183SAnand V. Avati 723e5e5558eSMiklos Szeredi /** 724361b1eb5SMiklos Szeredi * Initialize READ or READDIR request 72504730fefSMiklos Szeredi */ 726a6643094SMiklos Szeredi void fuse_read_fill(struct fuse_req *req, struct file *file, 7272106cb18SMiklos Szeredi loff_t pos, size_t count, int opcode); 72804730fefSMiklos Szeredi 72904730fefSMiklos Szeredi /** 73004730fefSMiklos Szeredi * Send OPEN or OPENDIR request 73104730fefSMiklos Szeredi */ 73291fe96b4SMiklos Szeredi int fuse_open_common(struct inode *inode, struct file *file, bool isdir); 73304730fefSMiklos Szeredi 734acf99433STejun Heo struct fuse_file *fuse_file_alloc(struct fuse_conn *fc); 735c7b7143cSMiklos Szeredi struct fuse_file *fuse_file_get(struct fuse_file *ff); 736fd72faacSMiklos Szeredi void fuse_file_free(struct fuse_file *ff); 737c7b7143cSMiklos Szeredi void fuse_finish_open(struct inode *inode, struct file *file); 738fd72faacSMiklos Szeredi 7398b0797a4SMiklos Szeredi void fuse_sync_release(struct fuse_file *ff, int flags); 740c756e0a4SMiklos Szeredi 74104730fefSMiklos Szeredi /** 74204730fefSMiklos Szeredi * Send RELEASE or RELEASEDIR request 74304730fefSMiklos Szeredi */ 7448b0797a4SMiklos Szeredi void fuse_release_common(struct file *file, int opcode); 74504730fefSMiklos Szeredi 74604730fefSMiklos Szeredi /** 74782547981SMiklos Szeredi * Send FSYNC or FSYNCDIR request 74882547981SMiklos Szeredi */ 74902c24a82SJosef Bacik int fuse_fsync_common(struct file *file, loff_t start, loff_t end, 75002c24a82SJosef Bacik int datasync, int isdir); 75182547981SMiklos Szeredi 75282547981SMiklos Szeredi /** 75395668a69STejun Heo * Notify poll wakeup 75495668a69STejun Heo */ 75595668a69STejun Heo int fuse_notify_poll_wakeup(struct fuse_conn *fc, 75695668a69STejun Heo struct fuse_notify_poll_wakeup_out *outarg); 75795668a69STejun Heo 75895668a69STejun Heo /** 7591779381dSMiklos Szeredi * Initialize file operations on a regular file 760b6aeadedSMiklos Szeredi */ 761b6aeadedSMiklos Szeredi void fuse_init_file_inode(struct inode *inode); 762b6aeadedSMiklos Szeredi 763b6aeadedSMiklos Szeredi /** 7641779381dSMiklos Szeredi * Initialize inode operations on regular files and special files 765e5e5558eSMiklos Szeredi */ 766e5e5558eSMiklos Szeredi void fuse_init_common(struct inode *inode); 767e5e5558eSMiklos Szeredi 768e5e5558eSMiklos Szeredi /** 7691779381dSMiklos Szeredi * Initialize inode and file operations on a directory 770e5e5558eSMiklos Szeredi */ 771e5e5558eSMiklos Szeredi void fuse_init_dir(struct inode *inode); 772e5e5558eSMiklos Szeredi 773e5e5558eSMiklos Szeredi /** 7741779381dSMiklos Szeredi * Initialize inode operations on a symlink 775e5e5558eSMiklos Szeredi */ 776e5e5558eSMiklos Szeredi void fuse_init_symlink(struct inode *inode); 777e5e5558eSMiklos Szeredi 778e5e5558eSMiklos Szeredi /** 779e5e5558eSMiklos Szeredi * Change attributes of an inode 780e5e5558eSMiklos Szeredi */ 7811fb69e78SMiklos Szeredi void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr, 7821fb69e78SMiklos Szeredi u64 attr_valid, u64 attr_version); 783e5e5558eSMiklos Szeredi 7843be5a52bSMiklos Szeredi void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr, 7853be5a52bSMiklos Szeredi u64 attr_valid); 7863be5a52bSMiklos Szeredi 787e5e5558eSMiklos Szeredi /** 788334f485dSMiklos Szeredi * Initialize the client device 789334f485dSMiklos Szeredi */ 790334f485dSMiklos Szeredi int fuse_dev_init(void); 791334f485dSMiklos Szeredi 792334f485dSMiklos Szeredi /** 793334f485dSMiklos Szeredi * Cleanup the client device 794334f485dSMiklos Szeredi */ 795334f485dSMiklos Szeredi void fuse_dev_cleanup(void); 796334f485dSMiklos Szeredi 797bafa9654SMiklos Szeredi int fuse_ctl_init(void); 7987736e8ccSFabian Frederick void __exit fuse_ctl_cleanup(void); 799bafa9654SMiklos Szeredi 800334f485dSMiklos Szeredi /** 801334f485dSMiklos Szeredi * Allocate a request 802334f485dSMiklos Szeredi */ 8034250c066SMaxim Patlasov struct fuse_req *fuse_request_alloc(unsigned npages); 804334f485dSMiklos Szeredi 8054250c066SMaxim Patlasov struct fuse_req *fuse_request_alloc_nofs(unsigned npages); 8063be5a52bSMiklos Szeredi 807334f485dSMiklos Szeredi /** 808334f485dSMiklos Szeredi * Free a request 809334f485dSMiklos Szeredi */ 810334f485dSMiklos Szeredi void fuse_request_free(struct fuse_req *req); 811334f485dSMiklos Szeredi 812334f485dSMiklos Szeredi /** 813b111c8c0SMaxim Patlasov * Get a request, may fail with -ENOMEM, 814b111c8c0SMaxim Patlasov * caller should specify # elements in req->pages[] explicitly 815334f485dSMiklos Szeredi */ 816b111c8c0SMaxim Patlasov struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages); 8178b41e671SMaxim Patlasov struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc, 8188b41e671SMaxim Patlasov unsigned npages); 819b111c8c0SMaxim Patlasov 82036cf66edSMaxim Patlasov /* 82136cf66edSMaxim Patlasov * Increment reference count on request 82236cf66edSMaxim Patlasov */ 82336cf66edSMaxim Patlasov void __fuse_get_request(struct fuse_req *req); 82436cf66edSMaxim Patlasov 825b111c8c0SMaxim Patlasov /** 82633649c91SMiklos Szeredi * Gets a requests for a file operation, always succeeds 82733649c91SMiklos Szeredi */ 828b111c8c0SMaxim Patlasov struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc, 829b111c8c0SMaxim Patlasov struct file *file); 83033649c91SMiklos Szeredi 83133649c91SMiklos Szeredi /** 832ce1d5a49SMiklos Szeredi * Decrement reference count of a request. If count goes to zero free 833ce1d5a49SMiklos Szeredi * the request. 834334f485dSMiklos Szeredi */ 835334f485dSMiklos Szeredi void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req); 836334f485dSMiklos Szeredi 837334f485dSMiklos Szeredi /** 8387c352bdfSMiklos Szeredi * Send a request (synchronous) 839334f485dSMiklos Szeredi */ 840b93f858aSTejun Heo void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req); 841334f485dSMiklos Szeredi 842334f485dSMiklos Szeredi /** 8437078187aSMiklos Szeredi * Simple request sending that does request allocation and freeing 8447078187aSMiklos Szeredi */ 8457078187aSMiklos Szeredi ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args); 8467078187aSMiklos Szeredi 8477078187aSMiklos Szeredi /** 848334f485dSMiklos Szeredi * Send a request in the background 849334f485dSMiklos Szeredi */ 850b93f858aSTejun Heo void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req); 851334f485dSMiklos Szeredi 852b93f858aSTejun Heo void fuse_request_send_background_locked(struct fuse_conn *fc, 853b93f858aSTejun Heo struct fuse_req *req); 8543be5a52bSMiklos Szeredi 8555a5fb1eaSMiklos Szeredi /* Abort all requests */ 85669a53bf2SMiklos Szeredi void fuse_abort_conn(struct fuse_conn *fc); 85769a53bf2SMiklos Szeredi 8581e9a4ed9SMiklos Szeredi /** 859e5e5558eSMiklos Szeredi * Invalidate inode attributes 860e5e5558eSMiklos Szeredi */ 861e5e5558eSMiklos Szeredi void fuse_invalidate_attr(struct inode *inode); 862bafa9654SMiklos Szeredi 863dbd561d2SMiklos Szeredi void fuse_invalidate_entry_cache(struct dentry *entry); 864dbd561d2SMiklos Szeredi 865451418fcSAndrew Gallagher void fuse_invalidate_atime(struct inode *inode); 866451418fcSAndrew Gallagher 867bafa9654SMiklos Szeredi /** 868bafa9654SMiklos Szeredi * Acquire reference to fuse_conn 869bafa9654SMiklos Szeredi */ 870bafa9654SMiklos Szeredi struct fuse_conn *fuse_conn_get(struct fuse_conn *fc); 871bafa9654SMiklos Szeredi 872bafa9654SMiklos Szeredi /** 8730d179aa5STejun Heo * Initialize fuse_conn 8740d179aa5STejun Heo */ 875a325f9b9STejun Heo void fuse_conn_init(struct fuse_conn *fc); 8760d179aa5STejun Heo 8770d179aa5STejun Heo /** 878bafa9654SMiklos Szeredi * Release reference to fuse_conn 879bafa9654SMiklos Szeredi */ 880bafa9654SMiklos Szeredi void fuse_conn_put(struct fuse_conn *fc); 881bafa9654SMiklos Szeredi 882cc080e9eSMiklos Szeredi struct fuse_dev *fuse_dev_alloc(struct fuse_conn *fc); 883cc080e9eSMiklos Szeredi void fuse_dev_free(struct fuse_dev *fud); 884cc080e9eSMiklos Szeredi 885bafa9654SMiklos Szeredi /** 886bafa9654SMiklos Szeredi * Add connection to control filesystem 887bafa9654SMiklos Szeredi */ 888bafa9654SMiklos Szeredi int fuse_ctl_add_conn(struct fuse_conn *fc); 889bafa9654SMiklos Szeredi 890bafa9654SMiklos Szeredi /** 891bafa9654SMiklos Szeredi * Remove connection from control filesystem 892bafa9654SMiklos Szeredi */ 893bafa9654SMiklos Szeredi void fuse_ctl_remove_conn(struct fuse_conn *fc); 894a5bfffacSTimo Savola 895a5bfffacSTimo Savola /** 896a5bfffacSTimo Savola * Is file type valid? 897a5bfffacSTimo Savola */ 898a5bfffacSTimo Savola int fuse_valid_type(int m); 899e57ac683SMiklos Szeredi 900e57ac683SMiklos Szeredi /** 901c2132c1bSAnatol Pomozov * Is current process allowed to perform filesystem operation? 902e57ac683SMiklos Szeredi */ 903c2132c1bSAnatol Pomozov int fuse_allow_current_process(struct fuse_conn *fc); 904f3332114SMiklos Szeredi 905f3332114SMiklos Szeredi u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id); 906bcb4be80SMiklos Szeredi 907703c7362SSeth Forshee void fuse_update_ctime(struct inode *inode); 908703c7362SSeth Forshee 909bcb4be80SMiklos Szeredi int fuse_update_attributes(struct inode *inode, struct kstat *stat, 910bcb4be80SMiklos Szeredi struct file *file, bool *refreshed); 9113be5a52bSMiklos Szeredi 9123be5a52bSMiklos Szeredi void fuse_flush_writepages(struct inode *inode); 9133be5a52bSMiklos Szeredi 9143be5a52bSMiklos Szeredi void fuse_set_nowrite(struct inode *inode); 9153be5a52bSMiklos Szeredi void fuse_release_nowrite(struct inode *inode); 9165c5c5e51SMiklos Szeredi 9175c5c5e51SMiklos Szeredi u64 fuse_get_attr_version(struct fuse_conn *fc); 91829d434b3STejun Heo 9193b463ae0SJohn Muir /** 9203b463ae0SJohn Muir * File-system tells the kernel to invalidate cache for the given node id. 9213b463ae0SJohn Muir */ 9223b463ae0SJohn Muir int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid, 9233b463ae0SJohn Muir loff_t offset, loff_t len); 9243b463ae0SJohn Muir 9253b463ae0SJohn Muir /** 9263b463ae0SJohn Muir * File-system tells the kernel to invalidate parent attributes and 9273b463ae0SJohn Muir * the dentry matching parent/name. 928451d0f59SJohn Muir * 929451d0f59SJohn Muir * If the child_nodeid is non-zero and: 930451d0f59SJohn Muir * - matches the inode number for the dentry matching parent/name, 931451d0f59SJohn Muir * - is not a mount point 932451d0f59SJohn Muir * - is a file or oan empty directory 933451d0f59SJohn Muir * then the dentry is unhashed (d_delete()). 9343b463ae0SJohn Muir */ 9353b463ae0SJohn Muir int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid, 936451d0f59SJohn Muir u64 child_nodeid, struct qstr *name); 9373b463ae0SJohn Muir 93808cbf542STejun Heo int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file, 93908cbf542STejun Heo bool isdir); 940ea8cd333SPavel Emelyanov 941ea8cd333SPavel Emelyanov /** 942ea8cd333SPavel Emelyanov * fuse_direct_io() flags 943ea8cd333SPavel Emelyanov */ 944ea8cd333SPavel Emelyanov 945ea8cd333SPavel Emelyanov /** If set, it is WRITE; otherwise - READ */ 946ea8cd333SPavel Emelyanov #define FUSE_DIO_WRITE (1 << 0) 947ea8cd333SPavel Emelyanov 948ea8cd333SPavel Emelyanov /** CUSE pass fuse_direct_io() a file which f_mapping->host is not from FUSE */ 949ea8cd333SPavel Emelyanov #define FUSE_DIO_CUSE (1 << 1) 950ea8cd333SPavel Emelyanov 951d22a943fSAl Viro ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter, 952d22a943fSAl Viro loff_t *ppos, int flags); 95308cbf542STejun Heo long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg, 95408cbf542STejun Heo unsigned int flags); 955b18da0c5SMiklos Szeredi long fuse_ioctl_common(struct file *file, unsigned int cmd, 956b18da0c5SMiklos Szeredi unsigned long arg, unsigned int flags); 95708cbf542STejun Heo unsigned fuse_file_poll(struct file *file, poll_table *wait); 95808cbf542STejun Heo int fuse_dev_release(struct inode *inode, struct file *file); 95908cbf542STejun Heo 960b0aa7606SMaxim Patlasov bool fuse_write_update_size(struct inode *inode, loff_t pos); 961b0aa7606SMaxim Patlasov 962ab9e13f7SMaxim Patlasov int fuse_flush_times(struct inode *inode, struct fuse_file *ff); 9631e18bda8SMiklos Szeredi int fuse_write_inode(struct inode *inode, struct writeback_control *wbc); 964a1d75f25SMiklos Szeredi 96562490330SJan Kara int fuse_do_setattr(struct dentry *dentry, struct iattr *attr, 966efb9fa9eSMaxim Patlasov struct file *file); 967efb9fa9eSMaxim Patlasov 9689759bd51SMiklos Szeredi void fuse_set_initialized(struct fuse_conn *fc); 9699759bd51SMiklos Szeredi 9705c672ab3SMiklos Szeredi void fuse_unlock_inode(struct inode *inode); 9715c672ab3SMiklos Szeredi void fuse_lock_inode(struct inode *inode); 9725c672ab3SMiklos Szeredi 97360bcc88aSSeth Forshee int fuse_setxattr(struct inode *inode, const char *name, const void *value, 97460bcc88aSSeth Forshee size_t size, int flags); 97560bcc88aSSeth Forshee ssize_t fuse_getxattr(struct inode *inode, const char *name, void *value, 97660bcc88aSSeth Forshee size_t size); 977703c7362SSeth Forshee ssize_t fuse_listxattr(struct dentry *entry, char *list, size_t size); 97860bcc88aSSeth Forshee int fuse_removexattr(struct inode *inode, const char *name); 979703c7362SSeth Forshee extern const struct xattr_handler *fuse_xattr_handlers[]; 98060bcc88aSSeth Forshee extern const struct xattr_handler *fuse_acl_xattr_handlers[]; 98160bcc88aSSeth Forshee 98260bcc88aSSeth Forshee struct posix_acl; 98360bcc88aSSeth Forshee struct posix_acl *fuse_get_acl(struct inode *inode, int type); 98460bcc88aSSeth Forshee int fuse_set_acl(struct inode *inode, struct posix_acl *acl, int type); 985703c7362SSeth Forshee 98629d434b3STejun Heo #endif /* _FS_FUSE_I_H */ 987