blob: eddbe02c402892cc00970844021fd12512f133b4 [file] [log] [blame]
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07004
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
Tejun Heo29d434b2008-10-16 16:08:57 +02009#ifndef _FS_FUSE_I_H
10#define _FS_FUSE_I_H
11
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070012#include <linux/fuse.h>
13#include <linux/fs.h>
Miklos Szeredi51eb01e2006-06-25 05:48:50 -070014#include <linux/mount.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070015#include <linux/wait.h>
16#include <linux/list.h>
17#include <linux/spinlock.h>
18#include <linux/mm.h>
19#include <linux/backing-dev.h>
Miklos Szeredibafa9652006-06-25 05:48:51 -070020#include <linux/mutex.h>
Miklos Szeredi3be5a522008-04-30 00:54:41 -070021#include <linux/rwsem.h>
Tejun Heo95668a62008-11-26 12:03:55 +010022#include <linux/rbtree.h>
23#include <linux/poll.h>
Miklos Szeredi5a18ec12011-02-25 14:44:58 +010024#include <linux/workqueue.h>
Seth Forshee744742d2016-03-11 10:35:34 -060025#include <linux/kref.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070026
Miklos Szeredi334f4852005-09-09 13:10:27 -070027/** Max number of pages that can be used in a single read request */
28#define FUSE_MAX_PAGES_PER_REQ 32
29
Miklos Szeredi3be5a522008-04-30 00:54:41 -070030/** Bias for fi->writectr, meaning new writepages must not be sent */
31#define FUSE_NOWRITE INT_MIN
32
Miklos Szeredi1d3d7522006-01-06 00:19:40 -080033/** It could be as large as PATH_MAX, but would that have any uses? */
34#define FUSE_NAME_MAX 1024
35
Miklos Szeredibafa9652006-06-25 05:48:51 -070036/** Number of dentries for each connection in the control filesystem */
Csaba Henk79a9d992009-08-26 19:18:24 +020037#define FUSE_CTL_NUM_DENTRIES 5
Miklos Szeredibafa9652006-06-25 05:48:51 -070038
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -070039/** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem
40 module will check permissions based on the file mode. Otherwise no
41 permission checking is done in the kernel */
42#define FUSE_DEFAULT_PERMISSIONS (1 << 0)
43
44/** If the FUSE_ALLOW_OTHER flag is given, then not only the user
45 doing the mount will be allowed to access the filesystem */
46#define FUSE_ALLOW_OTHER (1 << 1)
47
Maxim Patlasov4250c062012-10-26 19:48:07 +040048/** Number of page pointers embedded in fuse_req */
49#define FUSE_REQ_INLINE_PAGES 1
50
Miklos Szeredibafa9652006-06-25 05:48:51 -070051/** List of active connections */
52extern struct list_head fuse_conn_list;
53
54/** Global mutex protecting fuse_conn_list and the control filesystem */
55extern struct mutex fuse_mutex;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -070056
Csaba Henk79a9d992009-08-26 19:18:24 +020057/** Module parameters */
58extern unsigned max_user_bgreq;
59extern unsigned max_user_congthresh;
60
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010061/* One forget request */
62struct fuse_forget_link {
Miklos Szeredi02c048b2010-12-07 20:16:56 +010063 struct fuse_forget_one forget_one;
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010064 struct fuse_forget_link *next;
65};
66
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070067/** FUSE inode */
68struct fuse_inode {
69 /** Inode data */
70 struct inode inode;
71
72 /** Unique ID, which identifies the inode between userspace
73 * and kernel */
74 u64 nodeid;
75
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070076 /** Number of lookups on this inode */
77 u64 nlookup;
78
Miklos Szeredie5e55582005-09-09 13:10:28 -070079 /** The request used for sending the FORGET message */
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010080 struct fuse_forget_link *forget;
Miklos Szeredie5e55582005-09-09 13:10:28 -070081
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070082 /** Time in jiffies until the file attributes are valid */
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070083 u64 i_time;
Miklos Szerediebc14c42007-10-16 23:31:03 -070084
85 /** The sticky bit in inode->i_mode may have been removed, so
86 preserve the original mode */
Al Viro541af6a2011-07-26 03:17:33 -040087 umode_t orig_i_mode;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -070088
Pavel Shilovsky45c72cd2012-05-10 19:49:38 +040089 /** 64 bit inode number */
90 u64 orig_ino;
91
Miklos Szeredi1fb69e72007-10-18 03:06:58 -070092 /** Version of last attribute change */
93 u64 attr_version;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -070094
95 /** Files usable in writepage. Protected by fc->lock */
96 struct list_head write_files;
Miklos Szeredi3be5a522008-04-30 00:54:41 -070097
98 /** Writepages pending on truncate or fsync */
99 struct list_head queued_writes;
100
101 /** Number of sent writes, a negative bias (FUSE_NOWRITE)
102 * means more writes are blocked */
103 int writectr;
104
105 /** Waitq for writepage completion */
106 wait_queue_head_t page_waitq;
107
108 /** List of writepage requestst (pending or sent) */
109 struct list_head writepages;
Feng Shuo4582a4a2013-01-15 11:23:28 +0800110
111 /** Miscellaneous bits describing inode state */
112 unsigned long state;
113};
114
115/** FUSE inode state bits */
116enum {
117 /** Advise readdirplus */
118 FUSE_I_ADVISE_RDPLUS,
Miklos Szeredi6314efe2013-10-01 16:41:22 +0200119 /** Initialized with readdirplus */
120 FUSE_I_INIT_RDPLUS,
Maxim Patlasov06a7c3c2013-08-30 17:06:04 +0400121 /** An operation changing file size is in progress */
122 FUSE_I_SIZE_UNSTABLE,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700123};
124
Miklos Szeredida5e4712009-04-28 16:56:36 +0200125struct fuse_conn;
126
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700127/** FUSE specific file data */
128struct fuse_file {
Miklos Szeredida5e4712009-04-28 16:56:36 +0200129 /** Fuse connection for this file */
130 struct fuse_conn *fc;
131
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700132 /** Request reserved for flush and release */
Miklos Szeredi33649c92006-06-25 05:48:52 -0700133 struct fuse_req *reserved_req;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700134
Tejun Heoacf99432008-11-26 12:03:55 +0100135 /** Kernel file handle guaranteed to be unique */
136 u64 kh;
137
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700138 /** File handle used by userspace */
139 u64 fh;
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700140
Miklos Szeredida5e4712009-04-28 16:56:36 +0200141 /** Node id of this file */
142 u64 nodeid;
143
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700144 /** Refcount */
145 atomic_t count;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700146
Miklos Szeredic7b71432009-04-28 16:56:37 +0200147 /** FOPEN_* flags returned by open */
148 u32 open_flags;
149
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700150 /** Entry on inode's write_files list */
151 struct list_head write_entry;
Tejun Heo95668a62008-11-26 12:03:55 +0100152
153 /** RB node to be linked on fuse_conn->polled_files */
154 struct rb_node polled_node;
155
156 /** Wait queue head for poll */
157 wait_queue_head_t poll_wait;
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200158
159 /** Has flock been performed on this file? */
160 bool flock:1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700161};
162
Miklos Szeredi334f4852005-09-09 13:10:27 -0700163/** One input argument of a request */
164struct fuse_in_arg {
165 unsigned size;
166 const void *value;
167};
168
169/** The request input */
170struct fuse_in {
171 /** The request header */
172 struct fuse_in_header h;
173
174 /** True if the data for the last argument is in req->pages */
175 unsigned argpages:1;
176
177 /** Number of arguments */
178 unsigned numargs;
179
180 /** Array of arguments */
181 struct fuse_in_arg args[3];
182};
183
184/** One output argument of a request */
185struct fuse_arg {
186 unsigned size;
187 void *value;
188};
189
190/** The request output */
191struct fuse_out {
192 /** Header returned from userspace */
193 struct fuse_out_header h;
194
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800195 /*
196 * The following bitfields are not changed during the request
197 * processing
198 */
199
Miklos Szeredi334f4852005-09-09 13:10:27 -0700200 /** Last argument is variable length (can be shorter than
201 arg->size) */
202 unsigned argvar:1;
203
204 /** Last argument is a list of pages to copy data to */
205 unsigned argpages:1;
206
207 /** Zero partially or not copied pages */
208 unsigned page_zeroing:1;
209
Miklos Szeredice534fb2010-05-25 15:06:07 +0200210 /** Pages may be replaced with new ones */
211 unsigned page_replace:1;
212
Miklos Szeredi334f4852005-09-09 13:10:27 -0700213 /** Number or arguments */
214 unsigned numargs;
215
216 /** Array of arguments */
Miklos Szeredif704dcb2014-12-12 09:49:05 +0100217 struct fuse_arg args[2];
Miklos Szeredi334f4852005-09-09 13:10:27 -0700218};
219
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400220/** FUSE page descriptor */
221struct fuse_page_desc {
222 unsigned int length;
223 unsigned int offset;
224};
225
Miklos Szeredi70781872014-12-12 09:49:05 +0100226struct fuse_args {
227 struct {
228 struct {
229 uint32_t opcode;
230 uint64_t nodeid;
231 } h;
232 unsigned numargs;
233 struct fuse_in_arg args[3];
234
235 } in;
236 struct {
237 unsigned argvar:1;
238 unsigned numargs;
239 struct fuse_arg args[2];
240 } out;
241};
242
243#define FUSE_ARGS(args) struct fuse_args args = {}
244
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400245/** The request IO state (for asynchronous processing) */
246struct fuse_io_priv {
Seth Forshee744742d2016-03-11 10:35:34 -0600247 struct kref refcnt;
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400248 int async;
249 spinlock_t lock;
250 unsigned reqs;
251 ssize_t bytes;
252 size_t size;
253 __u64 offset;
254 bool write;
255 int err;
256 struct kiocb *iocb;
257 struct file *file;
Christoph Hellwig9d5722b2015-02-02 14:59:43 +0100258 struct completion *done;
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400259};
260
Seth Forshee744742d2016-03-11 10:35:34 -0600261#define FUSE_IO_PRIV_SYNC(f) \
262{ \
263 .refcnt = { ATOMIC_INIT(1) }, \
264 .async = 0, \
265 .file = f, \
266}
267
Miklos Szeredi334f4852005-09-09 13:10:27 -0700268/**
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200269 * Request flags
270 *
271 * FR_ISREPLY: set if the request has reply
272 * FR_FORCE: force sending of the request even if interrupted
273 * FR_BACKGROUND: request is sent in the background
274 * FR_WAITING: request is counted as "waiting"
275 * FR_ABORTED: the request was aborted
276 * FR_INTERRUPTED: the request has been interrupted
277 * FR_LOCKED: data is being copied to/from the request
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200278 * FR_PENDING: request is not yet in userspace
279 * FR_SENT: request is in userspace, waiting for an answer
280 * FR_FINISHED: request is finished
Miklos Szeredi77cd9d42015-07-01 16:26:06 +0200281 * FR_PRIVATE: request is on private list
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200282 */
283enum fuse_req_flag {
284 FR_ISREPLY,
285 FR_FORCE,
286 FR_BACKGROUND,
287 FR_WAITING,
288 FR_ABORTED,
289 FR_INTERRUPTED,
290 FR_LOCKED,
Miklos Szeredi33e14b42015-07-01 16:26:01 +0200291 FR_PENDING,
292 FR_SENT,
293 FR_FINISHED,
Miklos Szeredi77cd9d42015-07-01 16:26:06 +0200294 FR_PRIVATE,
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200295};
296
297/**
Miklos Szeredi334f4852005-09-09 13:10:27 -0700298 * A request to the client
Miklos Szeredidc008092015-07-01 16:25:58 +0200299 *
300 * .waitq.lock protects the following fields:
301 * - FR_ABORTED
302 * - FR_LOCKED (may also be modified under fc->lock, tested under both)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700303 */
304struct fuse_req {
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700305 /** This can be on either pending processing or io lists in
306 fuse_conn */
Miklos Szeredi334f4852005-09-09 13:10:27 -0700307 struct list_head list;
308
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700309 /** Entry on the interrupts list */
310 struct list_head intr_entry;
311
Miklos Szeredi334f4852005-09-09 13:10:27 -0700312 /** refcount */
313 atomic_t count;
314
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700315 /** Unique ID for the interrupt request */
316 u64 intr_unique;
317
Miklos Szeredi825d6d32015-07-01 16:25:58 +0200318 /* Request flags, updated with test/set/clear_bit() */
319 unsigned long flags;
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200320
Miklos Szeredi334f4852005-09-09 13:10:27 -0700321 /** The request input */
322 struct fuse_in in;
323
324 /** The request output */
325 struct fuse_out out;
326
327 /** Used to wake up the task waiting for completion of request*/
328 wait_queue_head_t waitq;
329
330 /** Data for asynchronous requests */
331 union {
Miklos Szeredib57d4262008-02-06 01:38:39 -0800332 struct {
Miklos Szeredibaebccb2014-12-12 09:49:04 +0100333 struct fuse_release_in in;
334 struct inode *inode;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800335 } release;
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800336 struct fuse_init_in init_in;
337 struct fuse_init_out init_out;
Tejun Heo08cbf542009-04-14 10:54:53 +0900338 struct cuse_init_in cuse_init_in;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700339 struct {
340 struct fuse_read_in in;
341 u64 attr_ver;
342 } read;
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700343 struct {
344 struct fuse_write_in in;
345 struct fuse_write_out out;
Miklos Szeredi8b284dc2013-10-01 16:44:53 +0200346 struct fuse_req *next;
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700347 } write;
Miklos Szeredi2d45ba32010-07-12 14:41:40 +0200348 struct fuse_notify_retrieve_in retrieve_in;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700349 } misc;
350
351 /** page vector */
Maxim Patlasov4250c062012-10-26 19:48:07 +0400352 struct page **pages;
353
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400354 /** page-descriptor vector */
355 struct fuse_page_desc *page_descs;
356
Maxim Patlasov4250c062012-10-26 19:48:07 +0400357 /** size of the 'pages' array */
358 unsigned max_pages;
359
360 /** inline page vector */
361 struct page *inline_pages[FUSE_REQ_INLINE_PAGES];
Miklos Szeredi334f4852005-09-09 13:10:27 -0700362
Maxim Patlasovb2430d72012-10-26 19:49:24 +0400363 /** inline page-descriptor vector */
364 struct fuse_page_desc inline_page_descs[FUSE_REQ_INLINE_PAGES];
365
Miklos Szeredi334f4852005-09-09 13:10:27 -0700366 /** number of pages in vector */
367 unsigned num_pages;
368
Miklos Szeredi334f4852005-09-09 13:10:27 -0700369 /** File used in the request (or NULL) */
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700370 struct fuse_file *ff;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800371
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700372 /** Inode used in the request or NULL */
373 struct inode *inode;
374
Maxim Patlasov01e9d112012-12-14 19:20:41 +0400375 /** AIO control block */
376 struct fuse_io_priv *io;
377
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700378 /** Link on fi->writepages */
379 struct list_head writepages_entry;
380
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800381 /** Request completion callback */
382 void (*end)(struct fuse_conn *, struct fuse_req *);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700383
384 /** Request is stolen from fuse_file->reserved_req */
385 struct file *stolen_file;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700386};
387
Miklos Szeredif88996a2015-07-01 16:26:01 +0200388struct fuse_iqueue {
Miklos Szeredie16714d2015-07-01 16:26:01 +0200389 /** Connection established */
390 unsigned connected;
391
Miklos Szeredif88996a2015-07-01 16:26:01 +0200392 /** Readers of the connection are waiting on this */
393 wait_queue_head_t waitq;
394
395 /** The next unique request id */
396 u64 reqctr;
397
398 /** The list of pending requests */
399 struct list_head pending;
400
401 /** Pending interrupts */
402 struct list_head interrupts;
403
404 /** Queue of pending forgets */
405 struct fuse_forget_link forget_list_head;
406 struct fuse_forget_link *forget_list_tail;
407
408 /** Batching of FORGET requests (positive indicates FORGET batch) */
409 int forget_batch;
410
411 /** O_ASYNC requests */
412 struct fasync_struct *fasync;
413};
414
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +0200415struct fuse_pqueue {
Miklos Szeredie96edd92015-07-01 16:26:04 +0200416 /** Connection established */
417 unsigned connected;
418
Miklos Szeredi45a91cb2015-07-01 16:26:06 +0200419 /** Lock protecting accessess to members of this structure */
420 spinlock_t lock;
421
Miklos Szeredi3a2b5b92015-07-01 16:26:04 +0200422 /** The list of requests being processed */
423 struct list_head processing;
424
425 /** The list of requests under I/O */
426 struct list_head io;
427};
428
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700429/**
Miklos Szeredicc080e92015-07-01 16:26:08 +0200430 * Fuse device instance
431 */
432struct fuse_dev {
433 /** Fuse connection for this device */
434 struct fuse_conn *fc;
435
Miklos Szeredic36960462015-07-01 16:26:09 +0200436 /** Processing queue */
437 struct fuse_pqueue pq;
438
Miklos Szeredicc080e92015-07-01 16:26:08 +0200439 /** list entry on fc->devices */
440 struct list_head entry;
441};
442
443/**
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700444 * A Fuse connection.
445 *
446 * This structure is created, when the filesystem is mounted, and is
447 * destroyed, when the client device is closed and the filesystem is
448 * unmounted.
449 */
450struct fuse_conn {
Miklos Szeredid7133112006-04-10 22:54:55 -0700451 /** Lock protecting accessess to members of this structure */
452 spinlock_t lock;
453
Miklos Szeredibafa9652006-06-25 05:48:51 -0700454 /** Refcount */
455 atomic_t count;
456
Miklos Szeredic36960462015-07-01 16:26:09 +0200457 /** Number of fuse_dev's */
458 atomic_t dev_count;
459
Al Virodd3e2c52013-10-03 21:21:39 -0400460 struct rcu_head rcu;
461
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700462 /** The user id for this mount */
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800463 kuid_t user_id;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700464
Miklos Szeredi87729a52005-09-09 13:10:34 -0700465 /** The group id for this mount */
Eric W. Biederman499dcf22012-02-07 16:26:03 -0800466 kgid_t group_id;
Miklos Szeredi87729a52005-09-09 13:10:34 -0700467
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700468 /** The fuse mount flags for this mount */
469 unsigned flags;
470
Miklos Szeredidb50b962005-09-09 13:10:33 -0700471 /** Maximum read size */
472 unsigned max_read;
473
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700474 /** Maximum write size */
475 unsigned max_write;
476
Miklos Szeredif88996a2015-07-01 16:26:01 +0200477 /** Input queue */
478 struct fuse_iqueue iq;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700479
Tejun Heoacf99432008-11-26 12:03:55 +0100480 /** The next unique kernel file handle */
481 u64 khctr;
482
Tejun Heo95668a62008-11-26 12:03:55 +0100483 /** rbtree of fuse_files waiting for poll events indexed by ph */
484 struct rb_root polled_files;
485
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700486 /** Maximum number of outstanding background requests */
487 unsigned max_background;
488
489 /** Number of background requests at which congestion starts */
490 unsigned congestion_threshold;
491
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700492 /** Number of requests currently in the background */
493 unsigned num_background;
494
Miklos Szeredid12def12008-02-06 01:38:39 -0800495 /** Number of background requests currently queued for userspace */
496 unsigned active_background;
497
498 /** The list of background requests set aside for later queuing */
499 struct list_head bg_queue;
500
Maxim Patlasov796523fb2013-03-21 18:02:15 +0400501 /** Flag indicating that INIT reply has been received. Allocating
502 * any fuse request will be suspended until the flag is set */
503 int initialized;
504
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700505 /** Flag indicating if connection is blocked. This will be
506 the case before the INIT reply is received, and if there
507 are too many outstading backgrounds requests */
508 int blocked;
509
510 /** waitq for blocked connection */
511 wait_queue_head_t blocked_waitq;
512
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700513 /** waitq for reserved requests */
514 wait_queue_head_t reserved_req_waitq;
515
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800516 /** Connection established, cleared on umount, connection
517 abort and device release */
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800518 unsigned connected;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700519
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800520 /** Connection failed (version mismatch). Cannot race with
521 setting other bitfields since it is only set once in INIT
522 reply, before any other request, and never cleared */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100523 unsigned conn_error:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700524
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800525 /** Connection successful. Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100526 unsigned conn_init:1;
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800527
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800528 /** Do readpages asynchronously? Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100529 unsigned async_read:1;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800530
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700531 /** Do not send separate SETATTR request before open(O_TRUNC) */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100532 unsigned atomic_o_trunc:1;
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700533
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700534 /** Filesystem supports NFS exporting. Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100535 unsigned export_support:1;
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700536
Tejun Heoa325f9b2009-04-14 10:54:52 +0900537 /** Set if bdi is valid */
538 unsigned bdi_initialized:1;
539
Pavel Emelyanovd5cd66c2013-10-10 17:10:30 +0400540 /** write-back cache policy (default is write-through) */
541 unsigned writeback_cache:1;
542
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800543 /*
544 * The following bitfields are only for optimization purposes
545 * and hence races in setting them will not cause malfunction
546 */
547
Andrew Gallagher7678ac52013-11-05 16:05:52 +0100548 /** Is open/release not implemented by fs? */
549 unsigned no_open:1;
550
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700551 /** Is fsync not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100552 unsigned no_fsync:1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700553
Miklos Szeredi82547982005-09-09 13:10:38 -0700554 /** Is fsyncdir not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100555 unsigned no_fsyncdir:1;
Miklos Szeredi82547982005-09-09 13:10:38 -0700556
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700557 /** Is flush not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100558 unsigned no_flush:1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700559
Miklos Szeredi92a87802005-09-09 13:10:31 -0700560 /** Is setxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100561 unsigned no_setxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700562
563 /** Is getxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100564 unsigned no_getxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700565
566 /** Is listxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100567 unsigned no_listxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700568
569 /** Is removexattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100570 unsigned no_removexattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700571
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200572 /** Are posix file locking primitives not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100573 unsigned no_lock:1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700574
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800575 /** Is access not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100576 unsigned no_access:1;
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800577
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800578 /** Is create not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100579 unsigned no_create:1;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800580
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700581 /** Is interrupt not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100582 unsigned no_interrupt:1;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700583
Miklos Szeredib2d22722006-12-06 20:35:51 -0800584 /** Is bmap not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100585 unsigned no_bmap:1;
Miklos Szeredib2d22722006-12-06 20:35:51 -0800586
Tejun Heo95668a62008-11-26 12:03:55 +0100587 /** Is poll not implemented by fs? */
588 unsigned no_poll:1;
589
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700590 /** Do multi-page cached writes */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100591 unsigned big_writes:1;
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700592
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200593 /** Don't apply umask to creation modes */
594 unsigned dont_mask:1;
595
Miklos Szeredi37fb3a32011-08-08 16:08:08 +0200596 /** Are BSD file locking primitives not implemented by fs? */
597 unsigned no_flock:1;
598
Miklos Szeredi519c6042012-04-26 10:56:36 +0200599 /** Is fallocate not implemented by fs? */
600 unsigned no_fallocate:1;
601
Miklos Szeredi1560c972014-04-28 16:43:44 +0200602 /** Is rename with flags implemented by fs? */
603 unsigned no_rename2:1;
604
Brian Foster72d0d242012-07-16 15:23:48 -0400605 /** Use enhanced/automatic page cache invalidation. */
606 unsigned auto_inval_data:1;
607
Eric Wong634734b2013-02-06 22:29:01 +0000608 /** Does the filesystem support readdirplus? */
Anand V. Avati0b05b182012-08-19 08:53:23 -0400609 unsigned do_readdirplus:1;
610
Eric Wong634734b2013-02-06 22:29:01 +0000611 /** Does the filesystem want adaptive readdirplus? */
612 unsigned readdirplus_auto:1;
613
Miklos Szeredi60b9df72013-05-01 14:37:21 +0200614 /** Does the filesystem support asynchronous direct-IO submission? */
615 unsigned async_dio:1;
616
Ravishankar N0b5da8d2015-06-30 23:40:22 +0530617 /** Is lseek not implemented by fs? */
618 unsigned no_lseek:1;
619
Miklos Szeredi0cd5b882006-01-16 22:14:38 -0800620 /** The number of requests waiting for completion */
621 atomic_t num_waiting;
622
Miklos Szeredi45714d62006-01-06 00:19:36 -0800623 /** Negotiated minor version */
624 unsigned minor;
625
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700626 /** Backing dev info */
627 struct backing_dev_info bdi;
Miklos Szeredif543f252006-01-16 22:14:35 -0800628
Miklos Szeredibafa9652006-06-25 05:48:51 -0700629 /** Entry on the fuse_conn_list */
630 struct list_head entry;
631
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700632 /** Device ID from super block */
633 dev_t dev;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700634
635 /** Dentries in the control filesystem */
636 struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES];
637
638 /** number of dentries used in the above array */
639 int ctl_ndents;
Jeff Dike385a17b2006-04-10 22:54:52 -0700640
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700641 /** Key for lock owner ID scrambling */
642 u32 scramble_key[4];
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800643
644 /** Reserved request for the DESTROY message */
645 struct fuse_req *destroy_req;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700646
647 /** Version counter for attribute changes */
648 u64 attr_version;
Tejun Heo43901aa2008-11-26 12:03:56 +0100649
650 /** Called on final put */
651 void (*release)(struct fuse_conn *);
John Muir3b463ae2009-05-31 11:13:57 -0400652
653 /** Super block for this connection. */
654 struct super_block *sb;
655
656 /** Read/write semaphore to hold when accessing sb. */
657 struct rw_semaphore killsb;
Miklos Szeredicc080e92015-07-01 16:26:08 +0200658
659 /** List of device instances belonging to this connection */
660 struct list_head devices;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700661};
662
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700663static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb)
664{
Miklos Szeredi6383bda2006-01-16 22:14:29 -0800665 return sb->s_fs_info;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700666}
667
668static inline struct fuse_conn *get_fuse_conn(struct inode *inode)
669{
670 return get_fuse_conn_super(inode->i_sb);
671}
672
673static inline struct fuse_inode *get_fuse_inode(struct inode *inode)
674{
675 return container_of(inode, struct fuse_inode, inode);
676}
677
678static inline u64 get_node_id(struct inode *inode)
679{
680 return get_fuse_inode(inode)->nodeid;
681}
682
Miklos Szeredi334f4852005-09-09 13:10:27 -0700683/** Device operations */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800684extern const struct file_operations fuse_dev_operations;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700685
Al Viro42695902009-02-20 05:59:13 +0000686extern const struct dentry_operations fuse_dentry_operations;
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700687
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700688/**
John Muir3b463ae2009-05-31 11:13:57 -0400689 * Inode to nodeid comparison.
690 */
691int fuse_inode_eq(struct inode *inode, void *_nodeidp);
692
693/**
Miklos Szeredie5e55582005-09-09 13:10:28 -0700694 * Get a filled in inode
695 */
Miklos Szeredib48badf2008-04-30 00:54:44 -0700696struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700697 int generation, struct fuse_attr *attr,
698 u64 attr_valid, u64 attr_version);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700699
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700700int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name,
701 struct fuse_entry_out *outarg, struct inode **inode);
702
Miklos Szeredie5e55582005-09-09 13:10:28 -0700703/**
704 * Send FORGET command
705 */
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100706void fuse_queue_forget(struct fuse_conn *fc, struct fuse_forget_link *forget,
707 u64 nodeid, u64 nlookup);
708
709struct fuse_forget_link *fuse_alloc_forget(void);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700710
Anand V. Avati0b05b182012-08-19 08:53:23 -0400711/* Used by READDIRPLUS */
712void fuse_force_forget(struct file *file, u64 nodeid);
713
Miklos Szeredie5e55582005-09-09 13:10:28 -0700714/**
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800715 * Initialize READ or READDIR request
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700716 */
Miklos Szeredia6643092007-11-28 16:22:00 -0800717void fuse_read_fill(struct fuse_req *req, struct file *file,
Miklos Szeredi2106cb12009-04-28 16:56:37 +0200718 loff_t pos, size_t count, int opcode);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700719
720/**
721 * Send OPEN or OPENDIR request
722 */
Miklos Szeredi91fe96b2009-04-28 16:56:37 +0200723int fuse_open_common(struct inode *inode, struct file *file, bool isdir);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700724
Tejun Heoacf99432008-11-26 12:03:55 +0100725struct fuse_file *fuse_file_alloc(struct fuse_conn *fc);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200726struct fuse_file *fuse_file_get(struct fuse_file *ff);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800727void fuse_file_free(struct fuse_file *ff);
Miklos Szeredic7b71432009-04-28 16:56:37 +0200728void fuse_finish_open(struct inode *inode, struct file *file);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800729
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200730void fuse_sync_release(struct fuse_file *ff, int flags);
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700731
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700732/**
733 * Send RELEASE or RELEASEDIR request
734 */
Miklos Szeredi8b0797a2009-04-28 16:56:39 +0200735void fuse_release_common(struct file *file, int opcode);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700736
737/**
Miklos Szeredi82547982005-09-09 13:10:38 -0700738 * Send FSYNC or FSYNCDIR request
739 */
Josef Bacik02c24a82011-07-16 20:44:56 -0400740int fuse_fsync_common(struct file *file, loff_t start, loff_t end,
741 int datasync, int isdir);
Miklos Szeredi82547982005-09-09 13:10:38 -0700742
743/**
Tejun Heo95668a62008-11-26 12:03:55 +0100744 * Notify poll wakeup
745 */
746int fuse_notify_poll_wakeup(struct fuse_conn *fc,
747 struct fuse_notify_poll_wakeup_out *outarg);
748
749/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800750 * Initialize file operations on a regular file
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700751 */
752void fuse_init_file_inode(struct inode *inode);
753
754/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800755 * Initialize inode operations on regular files and special files
Miklos Szeredie5e55582005-09-09 13:10:28 -0700756 */
757void fuse_init_common(struct inode *inode);
758
759/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800760 * Initialize inode and file operations on a directory
Miklos Szeredie5e55582005-09-09 13:10:28 -0700761 */
762void fuse_init_dir(struct inode *inode);
763
764/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800765 * Initialize inode operations on a symlink
Miklos Szeredie5e55582005-09-09 13:10:28 -0700766 */
767void fuse_init_symlink(struct inode *inode);
768
769/**
770 * Change attributes of an inode
771 */
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700772void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
773 u64 attr_valid, u64 attr_version);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700774
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700775void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
776 u64 attr_valid);
777
Miklos Szeredie5e55582005-09-09 13:10:28 -0700778/**
Miklos Szeredi334f4852005-09-09 13:10:27 -0700779 * Initialize the client device
780 */
781int fuse_dev_init(void);
782
783/**
784 * Cleanup the client device
785 */
786void fuse_dev_cleanup(void);
787
Miklos Szeredibafa9652006-06-25 05:48:51 -0700788int fuse_ctl_init(void);
Fabian Frederick7736e8c2014-04-23 18:14:42 +0200789void __exit fuse_ctl_cleanup(void);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700790
Miklos Szeredi334f4852005-09-09 13:10:27 -0700791/**
792 * Allocate a request
793 */
Maxim Patlasov4250c062012-10-26 19:48:07 +0400794struct fuse_req *fuse_request_alloc(unsigned npages);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700795
Maxim Patlasov4250c062012-10-26 19:48:07 +0400796struct fuse_req *fuse_request_alloc_nofs(unsigned npages);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700797
Miklos Szeredi334f4852005-09-09 13:10:27 -0700798/**
799 * Free a request
800 */
801void fuse_request_free(struct fuse_req *req);
802
803/**
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400804 * Get a request, may fail with -ENOMEM,
805 * caller should specify # elements in req->pages[] explicitly
Miklos Szeredi334f4852005-09-09 13:10:27 -0700806 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400807struct fuse_req *fuse_get_req(struct fuse_conn *fc, unsigned npages);
Maxim Patlasov8b41e672013-03-21 18:02:04 +0400808struct fuse_req *fuse_get_req_for_background(struct fuse_conn *fc,
809 unsigned npages);
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400810
Maxim Patlasov36cf66e2012-12-14 19:20:51 +0400811/*
812 * Increment reference count on request
813 */
814void __fuse_get_request(struct fuse_req *req);
815
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400816/**
Miklos Szeredi33649c92006-06-25 05:48:52 -0700817 * Gets a requests for a file operation, always succeeds
818 */
Maxim Patlasovb111c8c2012-10-26 19:48:30 +0400819struct fuse_req *fuse_get_req_nofail_nopages(struct fuse_conn *fc,
820 struct file *file);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700821
822/**
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700823 * Decrement reference count of a request. If count goes to zero free
824 * the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700825 */
826void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
827
828/**
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700829 * Send a request (synchronous)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700830 */
Tejun Heob93f8582008-11-26 12:03:55 +0100831void fuse_request_send(struct fuse_conn *fc, struct fuse_req *req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700832
833/**
Miklos Szeredi70781872014-12-12 09:49:05 +0100834 * Simple request sending that does request allocation and freeing
835 */
836ssize_t fuse_simple_request(struct fuse_conn *fc, struct fuse_args *args);
837
838/**
Miklos Szeredi334f4852005-09-09 13:10:27 -0700839 * Send a request in the background
840 */
Tejun Heob93f8582008-11-26 12:03:55 +0100841void fuse_request_send_background(struct fuse_conn *fc, struct fuse_req *req);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700842
Tejun Heob93f8582008-11-26 12:03:55 +0100843void fuse_request_send_background_locked(struct fuse_conn *fc,
844 struct fuse_req *req);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700845
Miklos Szeredi5a5fb1e2006-04-26 10:48:55 +0200846/* Abort all requests */
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800847void fuse_abort_conn(struct fuse_conn *fc);
848
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700849/**
Miklos Szeredie5e55582005-09-09 13:10:28 -0700850 * Invalidate inode attributes
851 */
852void fuse_invalidate_attr(struct inode *inode);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700853
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700854void fuse_invalidate_entry_cache(struct dentry *entry);
855
Andrew Gallagher451418f2013-11-05 03:55:43 -0800856void fuse_invalidate_atime(struct inode *inode);
857
Miklos Szeredibafa9652006-06-25 05:48:51 -0700858/**
859 * Acquire reference to fuse_conn
860 */
861struct fuse_conn *fuse_conn_get(struct fuse_conn *fc);
862
863/**
Tejun Heo0d179aa2008-11-26 12:03:55 +0100864 * Initialize fuse_conn
865 */
Tejun Heoa325f9b2009-04-14 10:54:52 +0900866void fuse_conn_init(struct fuse_conn *fc);
Tejun Heo0d179aa2008-11-26 12:03:55 +0100867
868/**
Miklos Szeredibafa9652006-06-25 05:48:51 -0700869 * Release reference to fuse_conn
870 */
871void fuse_conn_put(struct fuse_conn *fc);
872
Miklos Szeredicc080e92015-07-01 16:26:08 +0200873struct fuse_dev *fuse_dev_alloc(struct fuse_conn *fc);
874void fuse_dev_free(struct fuse_dev *fud);
875
Miklos Szeredibafa9652006-06-25 05:48:51 -0700876/**
877 * Add connection to control filesystem
878 */
879int fuse_ctl_add_conn(struct fuse_conn *fc);
880
881/**
882 * Remove connection from control filesystem
883 */
884void fuse_ctl_remove_conn(struct fuse_conn *fc);
Timo Savolaa5bfffac2007-04-08 16:04:00 -0700885
886/**
887 * Is file type valid?
888 */
889int fuse_valid_type(int m);
Miklos Szeredie57ac682007-10-18 03:06:58 -0700890
891/**
Anatol Pomozovc2132c12013-01-14 22:30:00 -0800892 * Is current process allowed to perform filesystem operation?
Miklos Szeredie57ac682007-10-18 03:06:58 -0700893 */
Anatol Pomozovc2132c12013-01-14 22:30:00 -0800894int fuse_allow_current_process(struct fuse_conn *fc);
Miklos Szeredif3332112007-10-18 03:07:04 -0700895
896u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800897
898int fuse_update_attributes(struct inode *inode, struct kstat *stat,
899 struct file *file, bool *refreshed);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700900
901void fuse_flush_writepages(struct inode *inode);
902
903void fuse_set_nowrite(struct inode *inode);
904void fuse_release_nowrite(struct inode *inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700905
906u64 fuse_get_attr_version(struct fuse_conn *fc);
Tejun Heo29d434b2008-10-16 16:08:57 +0200907
John Muir3b463ae2009-05-31 11:13:57 -0400908/**
909 * File-system tells the kernel to invalidate cache for the given node id.
910 */
911int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid,
912 loff_t offset, loff_t len);
913
914/**
915 * File-system tells the kernel to invalidate parent attributes and
916 * the dentry matching parent/name.
John Muir451d0f52011-12-06 21:50:06 +0100917 *
918 * If the child_nodeid is non-zero and:
919 * - matches the inode number for the dentry matching parent/name,
920 * - is not a mount point
921 * - is a file or oan empty directory
922 * then the dentry is unhashed (d_delete()).
John Muir3b463ae2009-05-31 11:13:57 -0400923 */
924int fuse_reverse_inval_entry(struct super_block *sb, u64 parent_nodeid,
John Muir451d0f52011-12-06 21:50:06 +0100925 u64 child_nodeid, struct qstr *name);
John Muir3b463ae2009-05-31 11:13:57 -0400926
Tejun Heo08cbf542009-04-14 10:54:53 +0900927int fuse_do_open(struct fuse_conn *fc, u64 nodeid, struct file *file,
928 bool isdir);
Pavel Emelyanovea8cd332013-10-10 17:12:05 +0400929
930/**
931 * fuse_direct_io() flags
932 */
933
934/** If set, it is WRITE; otherwise - READ */
935#define FUSE_DIO_WRITE (1 << 0)
936
937/** CUSE pass fuse_direct_io() a file which f_mapping->host is not from FUSE */
938#define FUSE_DIO_CUSE (1 << 1)
939
Al Virod22a9432014-03-16 15:50:47 -0400940ssize_t fuse_direct_io(struct fuse_io_priv *io, struct iov_iter *iter,
941 loff_t *ppos, int flags);
Tejun Heo08cbf542009-04-14 10:54:53 +0900942long fuse_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg,
943 unsigned int flags);
Miklos Szeredib18da0c2011-12-13 11:58:49 +0100944long fuse_ioctl_common(struct file *file, unsigned int cmd,
945 unsigned long arg, unsigned int flags);
Tejun Heo08cbf542009-04-14 10:54:53 +0900946unsigned fuse_file_poll(struct file *file, poll_table *wait);
947int fuse_dev_release(struct inode *inode, struct file *file);
948
Maxim Patlasovb0aa7602013-12-26 19:51:11 +0400949bool fuse_write_update_size(struct inode *inode, loff_t pos);
950
Maxim Patlasovab9e13f2014-04-28 14:19:24 +0200951int fuse_flush_times(struct inode *inode, struct fuse_file *ff);
Miklos Szeredi1e18bda2014-04-28 14:19:23 +0200952int fuse_write_inode(struct inode *inode, struct writeback_control *wbc);
Miklos Szeredia1d75f22010-07-12 14:41:40 +0200953
Maxim Patlasovefb9fa92012-12-18 14:05:08 +0400954int fuse_do_setattr(struct inode *inode, struct iattr *attr,
955 struct file *file);
956
Miklos Szeredi9759bd512015-01-06 10:45:35 +0100957void fuse_set_initialized(struct fuse_conn *fc);
958
Tejun Heo29d434b2008-10-16 16:08:57 +0200959#endif /* _FS_FUSE_I_H */