Merge branch 'linus' into core/generic-dma-coherent
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / fs / fuse / fuse_i.h
CommitLineData
d8a5ba45
MS
1/*
2 FUSE: Filesystem in Userspace
d7133114 3 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
d8a5ba45
MS
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include <linux/fuse.h>
10#include <linux/fs.h>
51eb01e7 11#include <linux/mount.h>
d8a5ba45
MS
12#include <linux/wait.h>
13#include <linux/list.h>
14#include <linux/spinlock.h>
15#include <linux/mm.h>
16#include <linux/backing-dev.h>
bafa9654 17#include <linux/mutex.h>
3be5a52b 18#include <linux/rwsem.h>
d8a5ba45 19
334f485d
MS
20/** Max number of pages that can be used in a single read request */
21#define FUSE_MAX_PAGES_PER_REQ 32
22
08a53cdc 23/** Maximum number of outstanding background requests */
f92b99b9
MS
24#define FUSE_MAX_BACKGROUND 12
25
26/** Congestion starts at 75% of maximum */
27#define FUSE_CONGESTION_THRESHOLD (FUSE_MAX_BACKGROUND * 75 / 100)
08a53cdc 28
3be5a52b
MS
29/** Bias for fi->writectr, meaning new writepages must not be sent */
30#define FUSE_NOWRITE INT_MIN
31
1d3d752b
MS
32/** It could be as large as PATH_MAX, but would that have any uses? */
33#define FUSE_NAME_MAX 1024
34
bafa9654
MS
35/** Number of dentries for each connection in the control filesystem */
36#define FUSE_CTL_NUM_DENTRIES 3
37
1e9a4ed9
MS
38/** If the FUSE_DEFAULT_PERMISSIONS flag is given, the filesystem
39 module will check permissions based on the file mode. Otherwise no
40 permission checking is done in the kernel */
41#define FUSE_DEFAULT_PERMISSIONS (1 << 0)
42
43/** If the FUSE_ALLOW_OTHER flag is given, then not only the user
44 doing the mount will be allowed to access the filesystem */
45#define FUSE_ALLOW_OTHER (1 << 1)
46
bafa9654
MS
47/** List of active connections */
48extern struct list_head fuse_conn_list;
49
50/** Global mutex protecting fuse_conn_list and the control filesystem */
51extern struct mutex fuse_mutex;
413ef8cb 52
d8a5ba45
MS
53/** FUSE inode */
54struct fuse_inode {
55 /** Inode data */
56 struct inode inode;
57
58 /** Unique ID, which identifies the inode between userspace
59 * and kernel */
60 u64 nodeid;
61
9e6268db
MS
62 /** Number of lookups on this inode */
63 u64 nlookup;
64
e5e5558e
MS
65 /** The request used for sending the FORGET message */
66 struct fuse_req *forget_req;
67
d8a5ba45 68 /** Time in jiffies until the file attributes are valid */
0a0898cf 69 u64 i_time;
ebc14c4d
MS
70
71 /** The sticky bit in inode->i_mode may have been removed, so
72 preserve the original mode */
73 mode_t orig_i_mode;
1fb69e78
MS
74
75 /** Version of last attribute change */
76 u64 attr_version;
93a8c3cd
MS
77
78 /** Files usable in writepage. Protected by fc->lock */
79 struct list_head write_files;
3be5a52b
MS
80
81 /** Writepages pending on truncate or fsync */
82 struct list_head queued_writes;
83
84 /** Number of sent writes, a negative bias (FUSE_NOWRITE)
85 * means more writes are blocked */
86 int writectr;
87
88 /** Waitq for writepage completion */
89 wait_queue_head_t page_waitq;
90
91 /** List of writepage requestst (pending or sent) */
92 struct list_head writepages;
d8a5ba45
MS
93};
94
b6aeaded
MS
95/** FUSE specific file data */
96struct fuse_file {
97 /** Request reserved for flush and release */
33649c91 98 struct fuse_req *reserved_req;
b6aeaded
MS
99
100 /** File handle used by userspace */
101 u64 fh;
c756e0a4
MS
102
103 /** Refcount */
104 atomic_t count;
93a8c3cd
MS
105
106 /** Entry on inode's write_files list */
107 struct list_head write_entry;
b6aeaded
MS
108};
109
334f485d
MS
110/** One input argument of a request */
111struct fuse_in_arg {
112 unsigned size;
113 const void *value;
114};
115
116/** The request input */
117struct fuse_in {
118 /** The request header */
119 struct fuse_in_header h;
120
121 /** True if the data for the last argument is in req->pages */
122 unsigned argpages:1;
123
124 /** Number of arguments */
125 unsigned numargs;
126
127 /** Array of arguments */
128 struct fuse_in_arg args[3];
129};
130
131/** One output argument of a request */
132struct fuse_arg {
133 unsigned size;
134 void *value;
135};
136
137/** The request output */
138struct fuse_out {
139 /** Header returned from userspace */
140 struct fuse_out_header h;
141
095da6cb
MS
142 /*
143 * The following bitfields are not changed during the request
144 * processing
145 */
146
334f485d
MS
147 /** Last argument is variable length (can be shorter than
148 arg->size) */
149 unsigned argvar:1;
150
151 /** Last argument is a list of pages to copy data to */
152 unsigned argpages:1;
153
154 /** Zero partially or not copied pages */
155 unsigned page_zeroing:1;
156
157 /** Number or arguments */
158 unsigned numargs;
159
160 /** Array of arguments */
161 struct fuse_arg args[3];
162};
163
83cfd493
MS
164/** The request state */
165enum fuse_req_state {
166 FUSE_REQ_INIT = 0,
167 FUSE_REQ_PENDING,
168 FUSE_REQ_READING,
169 FUSE_REQ_SENT,
a4d27e75 170 FUSE_REQ_WRITING,
83cfd493
MS
171 FUSE_REQ_FINISHED
172};
173
64c6d8ed
MS
174struct fuse_conn;
175
334f485d
MS
176/**
177 * A request to the client
178 */
179struct fuse_req {
ce1d5a49
MS
180 /** This can be on either pending processing or io lists in
181 fuse_conn */
334f485d
MS
182 struct list_head list;
183
a4d27e75
MS
184 /** Entry on the interrupts list */
185 struct list_head intr_entry;
186
334f485d
MS
187 /** refcount */
188 atomic_t count;
189
a4d27e75
MS
190 /** Unique ID for the interrupt request */
191 u64 intr_unique;
192
095da6cb
MS
193 /*
194 * The following bitfields are either set once before the
195 * request is queued or setting/clearing them is protected by
d7133114 196 * fuse_conn->lock
095da6cb
MS
197 */
198
334f485d
MS
199 /** True if the request has reply */
200 unsigned isreply:1;
201
51eb01e7
MS
202 /** Force sending of the request even if interrupted */
203 unsigned force:1;
204
f9a2842e
MS
205 /** The request was aborted */
206 unsigned aborted:1;
334f485d
MS
207
208 /** Request is sent in the background */
209 unsigned background:1;
210
a4d27e75
MS
211 /** The request has been interrupted */
212 unsigned interrupted:1;
213
334f485d
MS
214 /** Data is being copied to/from the request */
215 unsigned locked:1;
216
9bc5ddda
MS
217 /** Request is counted as "waiting" */
218 unsigned waiting:1;
219
83cfd493
MS
220 /** State of the request */
221 enum fuse_req_state state;
334f485d
MS
222
223 /** The request input */
224 struct fuse_in in;
225
226 /** The request output */
227 struct fuse_out out;
228
229 /** Used to wake up the task waiting for completion of request*/
230 wait_queue_head_t waitq;
231
232 /** Data for asynchronous requests */
233 union {
e5e5558e 234 struct fuse_forget_in forget_in;
b57d4264
MS
235 struct {
236 struct fuse_release_in in;
237 struct vfsmount *vfsmount;
238 struct dentry *dentry;
239 } release;
3ec870d5
MS
240 struct fuse_init_in init_in;
241 struct fuse_init_out init_out;
5c5c5e51
MS
242 struct {
243 struct fuse_read_in in;
244 u64 attr_ver;
245 } read;
b25e82e5
MS
246 struct {
247 struct fuse_write_in in;
248 struct fuse_write_out out;
249 } write;
71421259 250 struct fuse_lk_in lk_in;
334f485d
MS
251 } misc;
252
253 /** page vector */
254 struct page *pages[FUSE_MAX_PAGES_PER_REQ];
255
256 /** number of pages in vector */
257 unsigned num_pages;
258
259 /** offset of data on first page */
260 unsigned page_offset;
261
334f485d 262 /** File used in the request (or NULL) */
c756e0a4 263 struct fuse_file *ff;
64c6d8ed 264
3be5a52b
MS
265 /** Inode used in the request or NULL */
266 struct inode *inode;
267
268 /** Link on fi->writepages */
269 struct list_head writepages_entry;
270
64c6d8ed
MS
271 /** Request completion callback */
272 void (*end)(struct fuse_conn *, struct fuse_req *);
33649c91
MS
273
274 /** Request is stolen from fuse_file->reserved_req */
275 struct file *stolen_file;
334f485d
MS
276};
277
d8a5ba45
MS
278/**
279 * A Fuse connection.
280 *
281 * This structure is created, when the filesystem is mounted, and is
282 * destroyed, when the client device is closed and the filesystem is
283 * unmounted.
284 */
285struct fuse_conn {
d7133114
MS
286 /** Lock protecting accessess to members of this structure */
287 spinlock_t lock;
288
d2a85164
MS
289 /** Mutex protecting against directory alias creation */
290 struct mutex inst_mutex;
291
bafa9654
MS
292 /** Refcount */
293 atomic_t count;
294
d8a5ba45
MS
295 /** The user id for this mount */
296 uid_t user_id;
297
87729a55
MS
298 /** The group id for this mount */
299 gid_t group_id;
300
1e9a4ed9
MS
301 /** The fuse mount flags for this mount */
302 unsigned flags;
303
db50b96c
MS
304 /** Maximum read size */
305 unsigned max_read;
306
413ef8cb
MS
307 /** Maximum write size */
308 unsigned max_write;
309
334f485d
MS
310 /** Readers of the connection are waiting on this */
311 wait_queue_head_t waitq;
312
313 /** The list of pending requests */
314 struct list_head pending;
315
316 /** The list of requests being processed */
317 struct list_head processing;
318
d77a1d5b
MS
319 /** The list of requests under I/O */
320 struct list_head io;
321
08a53cdc
MS
322 /** Number of requests currently in the background */
323 unsigned num_background;
324
d12def1b
MS
325 /** Number of background requests currently queued for userspace */
326 unsigned active_background;
327
328 /** The list of background requests set aside for later queuing */
329 struct list_head bg_queue;
330
a4d27e75
MS
331 /** Pending interrupts */
332 struct list_head interrupts;
333
08a53cdc
MS
334 /** Flag indicating if connection is blocked. This will be
335 the case before the INIT reply is received, and if there
336 are too many outstading backgrounds requests */
337 int blocked;
338
339 /** waitq for blocked connection */
340 wait_queue_head_t blocked_waitq;
de5e3dec
MS
341
342 /** waitq for reserved requests */
343 wait_queue_head_t reserved_req_waitq;
08a53cdc 344
334f485d
MS
345 /** The next unique request id */
346 u64 reqctr;
347
69a53bf2
MS
348 /** Connection established, cleared on umount, connection
349 abort and device release */
095da6cb 350 unsigned connected;
1e9a4ed9 351
095da6cb
MS
352 /** Connection failed (version mismatch). Cannot race with
353 setting other bitfields since it is only set once in INIT
354 reply, before any other request, and never cleared */
334f485d
MS
355 unsigned conn_error : 1;
356
0ec7ca41
MS
357 /** Connection successful. Only set in INIT */
358 unsigned conn_init : 1;
359
9cd68455
MS
360 /** Do readpages asynchronously? Only set in INIT */
361 unsigned async_read : 1;
362
6ff958ed
MS
363 /** Do not send separate SETATTR request before open(O_TRUNC) */
364 unsigned atomic_o_trunc : 1;
365
33670fa2
MS
366 /** Filesystem supports NFS exporting. Only set in INIT */
367 unsigned export_support : 1;
368
095da6cb
MS
369 /*
370 * The following bitfields are only for optimization purposes
371 * and hence races in setting them will not cause malfunction
372 */
373
b6aeaded
MS
374 /** Is fsync not implemented by fs? */
375 unsigned no_fsync : 1;
376
82547981
MS
377 /** Is fsyncdir not implemented by fs? */
378 unsigned no_fsyncdir : 1;
379
b6aeaded
MS
380 /** Is flush not implemented by fs? */
381 unsigned no_flush : 1;
382
92a8780e
MS
383 /** Is setxattr not implemented by fs? */
384 unsigned no_setxattr : 1;
385
386 /** Is getxattr not implemented by fs? */
387 unsigned no_getxattr : 1;
388
389 /** Is listxattr not implemented by fs? */
390 unsigned no_listxattr : 1;
391
392 /** Is removexattr not implemented by fs? */
393 unsigned no_removexattr : 1;
394
71421259
MS
395 /** Are file locking primitives not implemented by fs? */
396 unsigned no_lock : 1;
397
31d40d74
MS
398 /** Is access not implemented by fs? */
399 unsigned no_access : 1;
400
fd72faac
MS
401 /** Is create not implemented by fs? */
402 unsigned no_create : 1;
403
a4d27e75
MS
404 /** Is interrupt not implemented by fs? */
405 unsigned no_interrupt : 1;
406
b2d2272f
MS
407 /** Is bmap not implemented by fs? */
408 unsigned no_bmap : 1;
409
78bb6cb9
MS
410 /** Do multi-page cached writes */
411 unsigned big_writes : 1;
412
0cd5b885
MS
413 /** The number of requests waiting for completion */
414 atomic_t num_waiting;
415
45714d65
MS
416 /** Negotiated minor version */
417 unsigned minor;
418
d8a5ba45
MS
419 /** Backing dev info */
420 struct backing_dev_info bdi;
f543f253 421
bafa9654
MS
422 /** Entry on the fuse_conn_list */
423 struct list_head entry;
424
b6f2fcbc
MS
425 /** Device ID from super block */
426 dev_t dev;
bafa9654
MS
427
428 /** Dentries in the control filesystem */
429 struct dentry *ctl_dentry[FUSE_CTL_NUM_DENTRIES];
430
431 /** number of dentries used in the above array */
432 int ctl_ndents;
385a17bf
JD
433
434 /** O_ASYNC requests */
435 struct fasync_struct *fasync;
9c8ef561
MS
436
437 /** Key for lock owner ID scrambling */
438 u32 scramble_key[4];
0ec7ca41
MS
439
440 /** Reserved request for the DESTROY message */
441 struct fuse_req *destroy_req;
1fb69e78
MS
442
443 /** Version counter for attribute changes */
444 u64 attr_version;
d8a5ba45
MS
445};
446
d8a5ba45
MS
447static inline struct fuse_conn *get_fuse_conn_super(struct super_block *sb)
448{
6383bdaa 449 return sb->s_fs_info;
d8a5ba45
MS
450}
451
452static inline struct fuse_conn *get_fuse_conn(struct inode *inode)
453{
454 return get_fuse_conn_super(inode->i_sb);
455}
456
457static inline struct fuse_inode *get_fuse_inode(struct inode *inode)
458{
459 return container_of(inode, struct fuse_inode, inode);
460}
461
462static inline u64 get_node_id(struct inode *inode)
463{
464 return get_fuse_inode(inode)->nodeid;
465}
466
334f485d 467/** Device operations */
4b6f5d20 468extern const struct file_operations fuse_dev_operations;
334f485d 469
dbd561d2
MS
470extern struct dentry_operations fuse_dentry_operations;
471
e5e5558e
MS
472/**
473 * Get a filled in inode
474 */
b48badf0 475struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
1fb69e78
MS
476 int generation, struct fuse_attr *attr,
477 u64 attr_valid, u64 attr_version);
e5e5558e 478
33670fa2
MS
479int fuse_lookup_name(struct super_block *sb, u64 nodeid, struct qstr *name,
480 struct fuse_entry_out *outarg, struct inode **inode);
481
e5e5558e
MS
482/**
483 * Send FORGET command
484 */
485void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
b48badf0 486 u64 nodeid, u64 nlookup);
e5e5558e 487
04730fef 488/**
361b1eb5 489 * Initialize READ or READDIR request
04730fef 490 */
a6643094 491void fuse_read_fill(struct fuse_req *req, struct file *file,
361b1eb5 492 struct inode *inode, loff_t pos, size_t count, int opcode);
04730fef
MS
493
494/**
495 * Send OPEN or OPENDIR request
496 */
497int fuse_open_common(struct inode *inode, struct file *file, int isdir);
498
fd72faac
MS
499struct fuse_file *fuse_file_alloc(void);
500void fuse_file_free(struct fuse_file *ff);
501void fuse_finish_open(struct inode *inode, struct file *file,
502 struct fuse_file *ff, struct fuse_open_out *outarg);
503
c756e0a4
MS
504/** Fill in ff->reserved_req with a RELEASE request */
505void fuse_release_fill(struct fuse_file *ff, u64 nodeid, int flags, int opcode);
506
04730fef
MS
507/**
508 * Send RELEASE or RELEASEDIR request
509 */
510int fuse_release_common(struct inode *inode, struct file *file, int isdir);
511
82547981
MS
512/**
513 * Send FSYNC or FSYNCDIR request
514 */
515int fuse_fsync_common(struct file *file, struct dentry *de, int datasync,
516 int isdir);
517
b6aeaded 518/**
1779381d 519 * Initialize file operations on a regular file
b6aeaded
MS
520 */
521void fuse_init_file_inode(struct inode *inode);
522
e5e5558e 523/**
1779381d 524 * Initialize inode operations on regular files and special files
e5e5558e
MS
525 */
526void fuse_init_common(struct inode *inode);
527
528/**
1779381d 529 * Initialize inode and file operations on a directory
e5e5558e
MS
530 */
531void fuse_init_dir(struct inode *inode);
532
533/**
1779381d 534 * Initialize inode operations on a symlink
e5e5558e
MS
535 */
536void fuse_init_symlink(struct inode *inode);
537
538/**
539 * Change attributes of an inode
540 */
1fb69e78
MS
541void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
542 u64 attr_valid, u64 attr_version);
e5e5558e 543
3be5a52b
MS
544void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
545 u64 attr_valid);
546
547void fuse_truncate(struct address_space *mapping, loff_t offset);
548
334f485d
MS
549/**
550 * Initialize the client device
551 */
552int fuse_dev_init(void);
553
554/**
555 * Cleanup the client device
556 */
557void fuse_dev_cleanup(void);
558
bafa9654
MS
559int fuse_ctl_init(void);
560void fuse_ctl_cleanup(void);
561
334f485d
MS
562/**
563 * Allocate a request
564 */
565struct fuse_req *fuse_request_alloc(void);
566
3be5a52b
MS
567struct fuse_req *fuse_request_alloc_nofs(void);
568
334f485d
MS
569/**
570 * Free a request
571 */
572void fuse_request_free(struct fuse_req *req);
573
334f485d 574/**
33649c91 575 * Get a request, may fail with -ENOMEM
334f485d 576 */
ce1d5a49 577struct fuse_req *fuse_get_req(struct fuse_conn *fc);
334f485d 578
33649c91
MS
579/**
580 * Gets a requests for a file operation, always succeeds
581 */
582struct fuse_req *fuse_get_req_nofail(struct fuse_conn *fc, struct file *file);
583
334f485d 584/**
ce1d5a49
MS
585 * Decrement reference count of a request. If count goes to zero free
586 * the request.
334f485d
MS
587 */
588void fuse_put_request(struct fuse_conn *fc, struct fuse_req *req);
589
590/**
7c352bdf 591 * Send a request (synchronous)
334f485d
MS
592 */
593void request_send(struct fuse_conn *fc, struct fuse_req *req);
594
334f485d
MS
595/**
596 * Send a request with no reply
597 */
598void request_send_noreply(struct fuse_conn *fc, struct fuse_req *req);
599
600/**
601 * Send a request in the background
602 */
603void request_send_background(struct fuse_conn *fc, struct fuse_req *req);
604
3be5a52b
MS
605void request_send_background_locked(struct fuse_conn *fc, struct fuse_req *req);
606
5a5fb1ea 607/* Abort all requests */
69a53bf2
MS
608void fuse_abort_conn(struct fuse_conn *fc);
609
e5e5558e
MS
610/**
611 * Invalidate inode attributes
612 */
613void fuse_invalidate_attr(struct inode *inode);
bafa9654 614
dbd561d2
MS
615void fuse_invalidate_entry_cache(struct dentry *entry);
616
bafa9654
MS
617/**
618 * Acquire reference to fuse_conn
619 */
620struct fuse_conn *fuse_conn_get(struct fuse_conn *fc);
621
622/**
623 * Release reference to fuse_conn
624 */
625void fuse_conn_put(struct fuse_conn *fc);
626
627/**
628 * Add connection to control filesystem
629 */
630int fuse_ctl_add_conn(struct fuse_conn *fc);
631
632/**
633 * Remove connection from control filesystem
634 */
635void fuse_ctl_remove_conn(struct fuse_conn *fc);
a5bfffac
TS
636
637/**
638 * Is file type valid?
639 */
640int fuse_valid_type(int m);
e57ac683
MS
641
642/**
643 * Is task allowed to perform filesystem operation?
644 */
645int fuse_allow_task(struct fuse_conn *fc, struct task_struct *task);
f3332114
MS
646
647u64 fuse_lock_owner_id(struct fuse_conn *fc, fl_owner_t id);
bcb4be80
MS
648
649int fuse_update_attributes(struct inode *inode, struct kstat *stat,
650 struct file *file, bool *refreshed);
3be5a52b
MS
651
652void fuse_flush_writepages(struct inode *inode);
653
654void fuse_set_nowrite(struct inode *inode);
655void fuse_release_nowrite(struct inode *inode);
5c5c5e51
MS
656
657u64 fuse_get_attr_version(struct fuse_conn *fc);