blob: 86f0133038289e9ae4bf08cb9caabf7d7ff22413 [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>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070022
Miklos Szeredi334f4852005-09-09 13:10:27 -070023/** Max number of pages that can be used in a single read request */
24#define FUSE_MAX_PAGES_PER_REQ 32
25
Miklos Szeredi08a53cd2006-04-10 22:54:59 -070026/** Maximum number of outstanding background requests */
Miklos Szeredif92b99b2007-10-16 23:30:59 -070027#define FUSE_MAX_BACKGROUND 12
28
29/** Congestion starts at 75% of maximum */
30#define FUSE_CONGESTION_THRESHOLD (FUSE_MAX_BACKGROUND * 75 / 100)
Miklos Szeredi08a53cd2006-04-10 22:54:59 -070031
Miklos Szeredi3be5a522008-04-30 00:54:41 -070032/** Bias for fi->writectr, meaning new writepages must not be sent */
33#define FUSE_NOWRITE INT_MIN
34
Miklos Szeredi1d3d7522006-01-06 00:19:40 -080035/** It could be as large as PATH_MAX, but would that have any uses? */
36#define FUSE_NAME_MAX 1024
37
Miklos Szeredibafa9652006-06-25 05:48:51 -070038/** Number of dentries for each connection in the control filesystem */
39#define FUSE_CTL_NUM_DENTRIES 3
40
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -070041/** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem
42 module will check permissions based on the file mode. Otherwise no
43 permission checking is done in the kernel */
44#define FUSE_DEFAULT_PERMISSIONS (1 << 0)
45
46/** If the FUSE_ALLOW_OTHER flag is given, then not only the user
47 doing the mount will be allowed to access the filesystem */
48#define FUSE_ALLOW_OTHER (1 << 1)
49
Miklos Szeredibafa9652006-06-25 05:48:51 -070050/** List of active connections */
51extern struct list_head fuse_conn_list;
52
53/** Global mutex protecting fuse_conn_list and the control filesystem */
54extern struct mutex fuse_mutex;
Miklos Szeredi413ef8c2005-09-09 13:10:35 -070055
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070056/** FUSE inode */
57struct fuse_inode {
58 /** Inode data */
59 struct inode inode;
60
61 /** Unique ID, which identifies the inode between userspace
62 * and kernel */
63 u64 nodeid;
64
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070065 /** Number of lookups on this inode */
66 u64 nlookup;
67
Miklos Szeredie5e55582005-09-09 13:10:28 -070068 /** The request used for sending the FORGET message */
69 struct fuse_req *forget_req;
70
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070071 /** Time in jiffies until the file attributes are valid */
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070072 u64 i_time;
Miklos Szerediebc14c42007-10-16 23:31:03 -070073
74 /** The sticky bit in inode->i_mode may have been removed, so
75 preserve the original mode */
76 mode_t orig_i_mode;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -070077
78 /** Version of last attribute change */
79 u64 attr_version;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -070080
81 /** Files usable in writepage. Protected by fc->lock */
82 struct list_head write_files;
Miklos Szeredi3be5a522008-04-30 00:54:41 -070083
84 /** Writepages pending on truncate or fsync */
85 struct list_head queued_writes;
86
87 /** Number of sent writes, a negative bias (FUSE_NOWRITE)
88 * means more writes are blocked */
89 int writectr;
90
91 /** Waitq for writepage completion */
92 wait_queue_head_t page_waitq;
93
94 /** List of writepage requestst (pending or sent) */
95 struct list_head writepages;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070096};
97
Miklos Szeredib6aeade2005-09-09 13:10:30 -070098/** FUSE specific file data */
99struct fuse_file {
100 /** Request reserved for flush and release */
Miklos Szeredi33649c92006-06-25 05:48:52 -0700101 struct fuse_req *reserved_req;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700102
Tejun Heoacf99432008-11-26 12:03:55 +0100103 /** Kernel file handle guaranteed to be unique */
104 u64 kh;
105
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700106 /** File handle used by userspace */
107 u64 fh;
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700108
109 /** Refcount */
110 atomic_t count;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700111
112 /** Entry on inode's write_files list */
113 struct list_head write_entry;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700114};
115
Miklos Szeredi334f4852005-09-09 13:10:27 -0700116/** One input argument of a request */
117struct fuse_in_arg {
118 unsigned size;
119 const void *value;
120};
121
122/** The request input */
123struct fuse_in {
124 /** The request header */
125 struct fuse_in_header h;
126
127 /** True if the data for the last argument is in req->pages */
128 unsigned argpages:1;
129
130 /** Number of arguments */
131 unsigned numargs;
132
133 /** Array of arguments */
134 struct fuse_in_arg args[3];
135};
136
137/** One output argument of a request */
138struct fuse_arg {
139 unsigned size;
140 void *value;
141};
142
143/** The request output */
144struct fuse_out {
145 /** Header returned from userspace */
146 struct fuse_out_header h;
147
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800148 /*
149 * The following bitfields are not changed during the request
150 * processing
151 */
152
Miklos Szeredi334f4852005-09-09 13:10:27 -0700153 /** Last argument is variable length (can be shorter than
154 arg->size) */
155 unsigned argvar:1;
156
157 /** Last argument is a list of pages to copy data to */
158 unsigned argpages:1;
159
160 /** Zero partially or not copied pages */
161 unsigned page_zeroing:1;
162
163 /** Number or arguments */
164 unsigned numargs;
165
166 /** Array of arguments */
167 struct fuse_arg args[3];
168};
169
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800170/** The request state */
171enum fuse_req_state {
172 FUSE_REQ_INIT = 0,
173 FUSE_REQ_PENDING,
174 FUSE_REQ_READING,
175 FUSE_REQ_SENT,
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700176 FUSE_REQ_WRITING,
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800177 FUSE_REQ_FINISHED
178};
179
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800180struct fuse_conn;
181
Miklos Szeredi334f4852005-09-09 13:10:27 -0700182/**
183 * A request to the client
184 */
185struct fuse_req {
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700186 /** This can be on either pending processing or io lists in
187 fuse_conn */
Miklos Szeredi334f4852005-09-09 13:10:27 -0700188 struct list_head list;
189
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700190 /** Entry on the interrupts list */
191 struct list_head intr_entry;
192
Miklos Szeredi334f4852005-09-09 13:10:27 -0700193 /** refcount */
194 atomic_t count;
195
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700196 /** Unique ID for the interrupt request */
197 u64 intr_unique;
198
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800199 /*
200 * The following bitfields are either set once before the
201 * request is queued or setting/clearing them is protected by
Miklos Szeredid7133112006-04-10 22:54:55 -0700202 * fuse_conn->lock
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800203 */
204
Miklos Szeredi334f4852005-09-09 13:10:27 -0700205 /** True if the request has reply */
206 unsigned isreply:1;
207
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700208 /** Force sending of the request even if interrupted */
209 unsigned force:1;
210
Miklos Szeredif9a28422006-06-25 05:48:53 -0700211 /** The request was aborted */
212 unsigned aborted:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700213
214 /** Request is sent in the background */
215 unsigned background:1;
216
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700217 /** The request has been interrupted */
218 unsigned interrupted:1;
219
Miklos Szeredi334f4852005-09-09 13:10:27 -0700220 /** Data is being copied to/from the request */
221 unsigned locked:1;
222
Miklos Szeredi9bc5ddd2006-04-11 21:16:09 +0200223 /** Request is counted as "waiting" */
224 unsigned waiting:1;
225
Miklos Szeredi83cfd492006-01-16 22:14:31 -0800226 /** State of the request */
227 enum fuse_req_state state;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700228
229 /** The request input */
230 struct fuse_in in;
231
232 /** The request output */
233 struct fuse_out out;
234
235 /** Used to wake up the task waiting for completion of request*/
236 wait_queue_head_t waitq;
237
238 /** Data for asynchronous requests */
239 union {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700240 struct fuse_forget_in forget_in;
Miklos Szeredib57d4262008-02-06 01:38:39 -0800241 struct {
242 struct fuse_release_in in;
243 struct vfsmount *vfsmount;
244 struct dentry *dentry;
245 } release;
Miklos Szeredi3ec870d2006-01-06 00:19:41 -0800246 struct fuse_init_in init_in;
247 struct fuse_init_out init_out;
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700248 struct {
249 struct fuse_read_in in;
250 u64 attr_ver;
251 } read;
Miklos Szeredib25e82e2007-10-18 03:07:03 -0700252 struct {
253 struct fuse_write_in in;
254 struct fuse_write_out out;
255 } write;
Miklos Szeredi71421252006-06-25 05:48:52 -0700256 struct fuse_lk_in lk_in;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700257 } misc;
258
259 /** page vector */
260 struct page *pages[FUSE_MAX_PAGES_PER_REQ];
261
262 /** number of pages in vector */
263 unsigned num_pages;
264
265 /** offset of data on first page */
266 unsigned page_offset;
267
Miklos Szeredi334f4852005-09-09 13:10:27 -0700268 /** File used in the request (or NULL) */
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700269 struct fuse_file *ff;
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800270
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700271 /** Inode used in the request or NULL */
272 struct inode *inode;
273
274 /** Link on fi->writepages */
275 struct list_head writepages_entry;
276
Miklos Szeredi64c6d8e2006-01-16 22:14:42 -0800277 /** Request completion callback */
278 void (*end)(struct fuse_conn *, struct fuse_req *);
Miklos Szeredi33649c92006-06-25 05:48:52 -0700279
280 /** Request is stolen from fuse_file->reserved_req */
281 struct file *stolen_file;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700282};
283
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700284/**
285 * A Fuse connection.
286 *
287 * This structure is created, when the filesystem is mounted, and is
288 * destroyed, when the client device is closed and the filesystem is
289 * unmounted.
290 */
291struct fuse_conn {
Miklos Szeredid7133112006-04-10 22:54:55 -0700292 /** Lock protecting accessess to members of this structure */
293 spinlock_t lock;
294
Miklos Szeredid2a85162006-10-17 00:10:11 -0700295 /** Mutex protecting against directory alias creation */
296 struct mutex inst_mutex;
297
Miklos Szeredibafa9652006-06-25 05:48:51 -0700298 /** Refcount */
299 atomic_t count;
300
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700301 /** The user id for this mount */
302 uid_t user_id;
303
Miklos Szeredi87729a52005-09-09 13:10:34 -0700304 /** The group id for this mount */
305 gid_t group_id;
306
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700307 /** The fuse mount flags for this mount */
308 unsigned flags;
309
Miklos Szeredidb50b962005-09-09 13:10:33 -0700310 /** Maximum read size */
311 unsigned max_read;
312
Miklos Szeredi413ef8c2005-09-09 13:10:35 -0700313 /** Maximum write size */
314 unsigned max_write;
315
Miklos Szeredi334f4852005-09-09 13:10:27 -0700316 /** Readers of the connection are waiting on this */
317 wait_queue_head_t waitq;
318
319 /** The list of pending requests */
320 struct list_head pending;
321
322 /** The list of requests being processed */
323 struct list_head processing;
324
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800325 /** The list of requests under I/O */
326 struct list_head io;
327
Tejun Heoacf99432008-11-26 12:03:55 +0100328 /** The next unique kernel file handle */
329 u64 khctr;
330
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700331 /** Number of requests currently in the background */
332 unsigned num_background;
333
Miklos Szeredid12def12008-02-06 01:38:39 -0800334 /** Number of background requests currently queued for userspace */
335 unsigned active_background;
336
337 /** The list of background requests set aside for later queuing */
338 struct list_head bg_queue;
339
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700340 /** Pending interrupts */
341 struct list_head interrupts;
342
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700343 /** Flag indicating if connection is blocked. This will be
344 the case before the INIT reply is received, and if there
345 are too many outstading backgrounds requests */
346 int blocked;
347
348 /** waitq for blocked connection */
349 wait_queue_head_t blocked_waitq;
350
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700351 /** waitq for reserved requests */
352 wait_queue_head_t reserved_req_waitq;
353
Miklos Szeredi334f4852005-09-09 13:10:27 -0700354 /** The next unique request id */
355 u64 reqctr;
356
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800357 /** Connection established, cleared on umount, connection
358 abort and device release */
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800359 unsigned connected;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700360
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800361 /** Connection failed (version mismatch). Cannot race with
362 setting other bitfields since it is only set once in INIT
363 reply, before any other request, and never cleared */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100364 unsigned conn_error:1;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700365
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800366 /** Connection successful. Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100367 unsigned conn_init:1;
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800368
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800369 /** Do readpages asynchronously? Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100370 unsigned async_read:1;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800371
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700372 /** Do not send separate SETATTR request before open(O_TRUNC) */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100373 unsigned atomic_o_trunc:1;
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700374
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700375 /** Filesystem supports NFS exporting. Only set in INIT */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100376 unsigned export_support:1;
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700377
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800378 /*
379 * The following bitfields are only for optimization purposes
380 * and hence races in setting them will not cause malfunction
381 */
382
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700383 /** Is fsync not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100384 unsigned no_fsync:1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700385
Miklos Szeredi82547982005-09-09 13:10:38 -0700386 /** Is fsyncdir not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100387 unsigned no_fsyncdir:1;
Miklos Szeredi82547982005-09-09 13:10:38 -0700388
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700389 /** Is flush not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100390 unsigned no_flush:1;
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700391
Miklos Szeredi92a87802005-09-09 13:10:31 -0700392 /** Is setxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100393 unsigned no_setxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700394
395 /** Is getxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100396 unsigned no_getxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700397
398 /** Is listxattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100399 unsigned no_listxattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700400
401 /** Is removexattr not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100402 unsigned no_removexattr:1;
Miklos Szeredi92a87802005-09-09 13:10:31 -0700403
Miklos Szeredi71421252006-06-25 05:48:52 -0700404 /** Are file locking primitives not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100405 unsigned no_lock:1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700406
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800407 /** Is access not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100408 unsigned no_access:1;
Miklos Szeredi31d40d72005-11-07 00:59:50 -0800409
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800410 /** Is create not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100411 unsigned no_create:1;
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800412
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700413 /** Is interrupt not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100414 unsigned no_interrupt:1;
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700415
Miklos Szeredib2d22722006-12-06 20:35:51 -0800416 /** Is bmap not implemented by fs? */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100417 unsigned no_bmap:1;
Miklos Szeredib2d22722006-12-06 20:35:51 -0800418
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700419 /** Do multi-page cached writes */
Miklos Szeredi1729a162008-11-26 12:03:54 +0100420 unsigned big_writes:1;
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700421
Miklos Szeredi0cd5b882006-01-16 22:14:38 -0800422 /** The number of requests waiting for completion */
423 atomic_t num_waiting;
424
Miklos Szeredi45714d62006-01-06 00:19:36 -0800425 /** Negotiated minor version */
426 unsigned minor;
427
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700428 /** Backing dev info */
429 struct backing_dev_info bdi;
Miklos Szeredif543f252006-01-16 22:14:35 -0800430
Miklos Szeredibafa9652006-06-25 05:48:51 -0700431 /** Entry on the fuse_conn_list */
432 struct list_head entry;
433
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700434 /** Device ID from super block */
435 dev_t dev;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700436
437 /** Dentries in the control filesystem */
438 struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES];
439
440 /** number of dentries used in the above array */
441 int ctl_ndents;
Jeff Dike385a17b2006-04-10 22:54:52 -0700442
443 /** O_ASYNC requests */
444 struct fasync_struct *fasync;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700445
446 /** Key for lock owner ID scrambling */
447 u32 scramble_key[4];
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800448
449 /** Reserved request for the DESTROY message */
450 struct fuse_req *destroy_req;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700451
452 /** Version counter for attribute changes */
453 u64 attr_version;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700454};
455
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700456static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb)
457{
Miklos Szeredi6383bda2006-01-16 22:14:29 -0800458 return sb->s_fs_info;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700459}
460
461static inline struct fuse_conn *get_fuse_conn(struct inode *inode)
462{
463 return get_fuse_conn_super(inode->i_sb);
464}
465
466static inline struct fuse_inode *get_fuse_inode(struct inode *inode)
467{
468 return container_of(inode, struct fuse_inode, inode);
469}
470
471static inline u64 get_node_id(struct inode *inode)
472{
473 return get_fuse_inode(inode)->nodeid;
474}
475
Miklos Szeredi334f4852005-09-09 13:10:27 -0700476/** Device operations */
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -0800477extern const struct file_operations fuse_dev_operations;
Miklos Szeredi334f4852005-09-09 13:10:27 -0700478
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700479extern struct dentry_operations fuse_dentry_operations;
480
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700481/**
Miklos Szeredie5e55582005-09-09 13:10:28 -0700482 * Get a filled in inode
483 */
Miklos Szeredib48badf2008-04-30 00:54:44 -0700484struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700485 int generation, struct fuse_attr *attr,
486 u64 attr_valid, u64 attr_version);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700487
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700488int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name,
489 struct fuse_entry_out *outarg, struct inode **inode);
490
Miklos Szeredie5e55582005-09-09 13:10:28 -0700491/**
492 * Send FORGET command
493 */
494void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
Miklos Szeredib48badf2008-04-30 00:54:44 -0700495 u64 nodeid, u64 nlookup);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700496
497/**
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800498 * Initialize READ or READDIR request
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700499 */
Miklos Szeredia6643092007-11-28 16:22:00 -0800500void fuse_read_fill(struct fuse_req *req, struct file *file,
Miklos Szeredi361b1eb52006-01-16 22:14:45 -0800501 struct inode *inode, loff_t pos, size_t count, int opcode);
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700502
503/**
504 * Send OPEN or OPENDIR request
505 */
506int fuse_open_common(struct inode *inode, struct file *file, int isdir);
507
Tejun Heoacf99432008-11-26 12:03:55 +0100508struct fuse_file *fuse_file_alloc(struct fuse_conn *fc);
Miklos Szeredifd72faa2005-11-07 00:59:51 -0800509void fuse_file_free(struct fuse_file *ff);
510void fuse_finish_open(struct inode *inode, struct file *file,
511 struct fuse_file *ff, struct fuse_open_out *outarg);
512
Miklos Szeredic756e0a2007-10-16 23:31:00 -0700513/** Fill in ff->reserved_req with a RELEASE request */
514void fuse_release_fill(struct fuse_file *ff, u64 nodeid, int flags, int opcode);
515
Miklos Szeredi04730fe2005-09-09 13:10:36 -0700516/**
517 * Send RELEASE or RELEASEDIR request
518 */
519int fuse_release_common(struct inode *inode, struct file *file, int isdir);
520
521/**
Miklos Szeredi82547982005-09-09 13:10:38 -0700522 * Send FSYNC or FSYNCDIR request
523 */
524int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
525 int isdir);
526
527/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800528 * Initialize file operations on a regular file
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700529 */
530void fuse_init_file_inode(struct inode *inode);
531
532/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800533 * Initialize inode operations on regular files and special files
Miklos Szeredie5e55582005-09-09 13:10:28 -0700534 */
535void fuse_init_common(struct inode *inode);
536
537/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800538 * Initialize inode and file operations on a directory
Miklos Szeredie5e55582005-09-09 13:10:28 -0700539 */
540void fuse_init_dir(struct inode *inode);
541
542/**
Miklos Szeredi17793812005-10-30 15:02:51 -0800543 * Initialize inode operations on a symlink
Miklos Szeredie5e55582005-09-09 13:10:28 -0700544 */
545void fuse_init_symlink(struct inode *inode);
546
547/**
548 * Change attributes of an inode
549 */
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700550void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
551 u64 attr_valid, u64 attr_version);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700552
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700553void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
554 u64 attr_valid);
555
556void fuse_truncate(struct address_space *mapping, loff_t offset);
557
Miklos Szeredie5e55582005-09-09 13:10:28 -0700558/**
Miklos Szeredi334f4852005-09-09 13:10:27 -0700559 * Initialize the client device
560 */
561int fuse_dev_init(void);
562
563/**
564 * Cleanup the client device
565 */
566void fuse_dev_cleanup(void);
567
Miklos Szeredibafa9652006-06-25 05:48:51 -0700568int fuse_ctl_init(void);
569void fuse_ctl_cleanup(void);
570
Miklos Szeredi334f4852005-09-09 13:10:27 -0700571/**
572 * Allocate a request
573 */
574struct fuse_req *fuse_request_alloc(void);
575
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700576struct fuse_req *fuse_request_alloc_nofs(void);
577
Miklos Szeredi334f4852005-09-09 13:10:27 -0700578/**
579 * Free a request
580 */
581void fuse_request_free(struct fuse_req *req);
582
583/**
Miklos Szeredi33649c92006-06-25 05:48:52 -0700584 * Get a request, may fail with -ENOMEM
Miklos Szeredi334f4852005-09-09 13:10:27 -0700585 */
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700586struct fuse_req *fuse_get_req(struct fuse_conn *fc);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700587
588/**
Miklos Szeredi33649c92006-06-25 05:48:52 -0700589 * Gets a requests for a file operation, always succeeds
590 */
591struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file);
592
593/**
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700594 * Decrement reference count of a request. If count goes to zero free
595 * the request.
Miklos Szeredi334f4852005-09-09 13:10:27 -0700596 */
597void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
598
599/**
Miklos Szeredi7c352bd2005-09-09 13:10:39 -0700600 * Send a request (synchronous)
Miklos Szeredi334f4852005-09-09 13:10:27 -0700601 */
602void request_send(struct fuse_conn *fc, struct fuse_req *req);
603
604/**
Miklos Szeredi334f4852005-09-09 13:10:27 -0700605 * Send a request with no reply
606 */
607void request_send_noreply(struct fuse_conn *fc, struct fuse_req *req);
608
609/**
610 * Send a request in the background
611 */
612void request_send_background(struct fuse_conn *fc, struct fuse_req *req);
613
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700614void request_send_background_locked(struct fuse_conn *fc, struct fuse_req *req);
615
Miklos Szeredi5a5fb1e2006-04-26 10:48:55 +0200616/* Abort all requests */
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800617void fuse_abort_conn(struct fuse_conn *fc);
618
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700619/**
Miklos Szeredie5e55582005-09-09 13:10:28 -0700620 * Invalidate inode attributes
621 */
622void fuse_invalidate_attr(struct inode *inode);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700623
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700624void fuse_invalidate_entry_cache(struct dentry *entry);
625
Miklos Szeredibafa9652006-06-25 05:48:51 -0700626/**
627 * Acquire reference to fuse_conn
628 */
629struct fuse_conn *fuse_conn_get(struct fuse_conn *fc);
630
631/**
632 * Release reference to fuse_conn
633 */
634void fuse_conn_put(struct fuse_conn *fc);
635
636/**
637 * Add connection to control filesystem
638 */
639int fuse_ctl_add_conn(struct fuse_conn *fc);
640
641/**
642 * Remove connection from control filesystem
643 */
644void fuse_ctl_remove_conn(struct fuse_conn *fc);
Timo Savolaa5bfffac2007-04-08 16:04:00 -0700645
646/**
647 * Is file type valid?
648 */
649int fuse_valid_type(int m);
Miklos Szeredie57ac682007-10-18 03:06:58 -0700650
651/**
652 * Is task allowed to perform filesystem operation?
653 */
654int fuse_allow_task(struct fuse_conn *fc, struct task_struct *task);
Miklos Szeredif3332112007-10-18 03:07:04 -0700655
656u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id);
Miklos Szeredibcb4be82007-11-28 16:21:59 -0800657
658int fuse_update_attributes(struct inode *inode, struct kstat *stat,
659 struct file *file, bool *refreshed);
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700660
661void fuse_flush_writepages(struct inode *inode);
662
663void fuse_set_nowrite(struct inode *inode);
664void fuse_release_nowrite(struct inode *inode);
Miklos Szeredi5c5c5e52008-04-30 00:54:43 -0700665
666u64 fuse_get_attr_version(struct fuse_conn *fc);
Tejun Heo29d434b2008-10-16 16:08:57 +0200667
668#endif /* _FS_FUSE_I_H */