]> git.ipfire.org Git - thirdparty/kernel/linux.git/blame - fs/fuse/inode.c
fuse: fix max i/o size calculation
[thirdparty/kernel/linux.git] / fs / fuse / inode.c
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 "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/slab.h>
13#include <linux/file.h>
d8a5ba45
MS
14#include <linux/seq_file.h>
15#include <linux/init.h>
16#include <linux/module.h>
d8a5ba45
MS
17#include <linux/parser.h>
18#include <linux/statfs.h>
9c8ef561 19#include <linux/random.h>
e8edc6e0 20#include <linux/sched.h>
d8a5ba45
MS
21
22MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
23MODULE_DESCRIPTION("Filesystem in Userspace");
24MODULE_LICENSE("GPL");
25
e18b890b 26static struct kmem_cache *fuse_inode_cachep;
bafa9654
MS
27struct list_head fuse_conn_list;
28DEFINE_MUTEX(fuse_mutex);
d8a5ba45
MS
29
30#define FUSE_SUPER_MAGIC 0x65735546
31
d1875dba
MS
32#define FUSE_DEFAULT_BLKSIZE 512
33
d8a5ba45
MS
34struct fuse_mount_data {
35 int fd;
36 unsigned rootmode;
37 unsigned user_id;
87729a55 38 unsigned group_id;
5a533682
MS
39 unsigned fd_present : 1;
40 unsigned rootmode_present : 1;
41 unsigned user_id_present : 1;
42 unsigned group_id_present : 1;
1e9a4ed9 43 unsigned flags;
db50b96c 44 unsigned max_read;
d8091614 45 unsigned blksize;
d8a5ba45
MS
46};
47
48static struct inode *fuse_alloc_inode(struct super_block *sb)
49{
50 struct inode *inode;
51 struct fuse_inode *fi;
52
e94b1766 53 inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
d8a5ba45
MS
54 if (!inode)
55 return NULL;
56
57 fi = get_fuse_inode(inode);
0a0898cf 58 fi->i_time = 0;
d8a5ba45 59 fi->nodeid = 0;
9e6268db 60 fi->nlookup = 0;
fbee36b9 61 fi->attr_version = 0;
3be5a52b 62 fi->writectr = 0;
93a8c3cd 63 INIT_LIST_HEAD(&fi->write_files);
3be5a52b
MS
64 INIT_LIST_HEAD(&fi->queued_writes);
65 INIT_LIST_HEAD(&fi->writepages);
66 init_waitqueue_head(&fi->page_waitq);
e5e5558e
MS
67 fi->forget_req = fuse_request_alloc();
68 if (!fi->forget_req) {
69 kmem_cache_free(fuse_inode_cachep, inode);
70 return NULL;
71 }
d8a5ba45
MS
72
73 return inode;
74}
75
76static void fuse_destroy_inode(struct inode *inode)
77{
e5e5558e 78 struct fuse_inode *fi = get_fuse_inode(inode);
93a8c3cd 79 BUG_ON(!list_empty(&fi->write_files));
3be5a52b 80 BUG_ON(!list_empty(&fi->queued_writes));
e5e5558e
MS
81 if (fi->forget_req)
82 fuse_request_free(fi->forget_req);
d8a5ba45
MS
83 kmem_cache_free(fuse_inode_cachep, inode);
84}
85
e5e5558e 86void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
9e6268db 87 unsigned long nodeid, u64 nlookup)
e5e5558e
MS
88{
89 struct fuse_forget_in *inarg = &req->misc.forget_in;
9e6268db 90 inarg->nlookup = nlookup;
e5e5558e
MS
91 req->in.h.opcode = FUSE_FORGET;
92 req->in.h.nodeid = nodeid;
93 req->in.numargs = 1;
94 req->in.args[0].size = sizeof(struct fuse_forget_in);
95 req->in.args[0].value = inarg;
96 request_send_noreply(fc, req);
97}
98
d8a5ba45
MS
99static void fuse_clear_inode(struct inode *inode)
100{
1e9a4ed9
MS
101 if (inode->i_sb->s_flags & MS_ACTIVE) {
102 struct fuse_conn *fc = get_fuse_conn(inode);
e5e5558e 103 struct fuse_inode *fi = get_fuse_inode(inode);
9e6268db 104 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
e5e5558e
MS
105 fi->forget_req = NULL;
106 }
d8a5ba45
MS
107}
108
71421259
MS
109static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
110{
111 if (*flags & MS_MANDLOCK)
112 return -EINVAL;
113
114 return 0;
115}
116
3be5a52b 117void fuse_truncate(struct address_space *mapping, loff_t offset)
e00d2c2d
MS
118{
119 /* See vmtruncate() */
120 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
121 truncate_inode_pages(mapping, offset);
122 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
123}
124
3be5a52b
MS
125void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
126 u64 attr_valid)
d8a5ba45 127{
9ffbb916 128 struct fuse_conn *fc = get_fuse_conn(inode);
ebc14c4d 129 struct fuse_inode *fi = get_fuse_inode(inode);
d8a5ba45 130
1fb69e78
MS
131 fi->attr_version = ++fc->attr_version;
132 fi->i_time = attr_valid;
133
d8a5ba45 134 inode->i_ino = attr->ino;
ebc14c4d 135 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
d8a5ba45
MS
136 inode->i_nlink = attr->nlink;
137 inode->i_uid = attr->uid;
138 inode->i_gid = attr->gid;
d8a5ba45
MS
139 inode->i_blocks = attr->blocks;
140 inode->i_atime.tv_sec = attr->atime;
141 inode->i_atime.tv_nsec = attr->atimensec;
142 inode->i_mtime.tv_sec = attr->mtime;
143 inode->i_mtime.tv_nsec = attr->mtimensec;
144 inode->i_ctime.tv_sec = attr->ctime;
145 inode->i_ctime.tv_nsec = attr->ctimensec;
e00d2c2d 146
0e9663ee
MS
147 if (attr->blksize != 0)
148 inode->i_blkbits = ilog2(attr->blksize);
149 else
150 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
151
ebc14c4d
MS
152 /*
153 * Don't set the sticky bit in i_mode, unless we want the VFS
154 * to check permissions. This prevents failures due to the
155 * check in may_delete().
156 */
157 fi->orig_i_mode = inode->i_mode;
158 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
159 inode->i_mode &= ~S_ISVTX;
3be5a52b
MS
160}
161
162void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
163 u64 attr_valid, u64 attr_version)
164{
165 struct fuse_conn *fc = get_fuse_conn(inode);
166 struct fuse_inode *fi = get_fuse_inode(inode);
167 loff_t oldsize;
168
169 spin_lock(&fc->lock);
170 if (attr_version != 0 && fi->attr_version > attr_version) {
171 spin_unlock(&fc->lock);
172 return;
173 }
174
175 fuse_change_attributes_common(inode, attr, attr_valid);
ebc14c4d 176
e00d2c2d
MS
177 oldsize = inode->i_size;
178 i_size_write(inode, attr->size);
179 spin_unlock(&fc->lock);
180
181 if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
182 if (attr->size < oldsize)
183 fuse_truncate(inode->i_mapping, attr->size);
b1009979 184 invalidate_inode_pages2(inode->i_mapping);
e00d2c2d 185 }
d8a5ba45
MS
186}
187
188static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
189{
190 inode->i_mode = attr->mode & S_IFMT;
9ffbb916 191 inode->i_size = attr->size;
e5e5558e
MS
192 if (S_ISREG(inode->i_mode)) {
193 fuse_init_common(inode);
b6aeaded 194 fuse_init_file_inode(inode);
e5e5558e
MS
195 } else if (S_ISDIR(inode->i_mode))
196 fuse_init_dir(inode);
197 else if (S_ISLNK(inode->i_mode))
198 fuse_init_symlink(inode);
199 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
200 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
201 fuse_init_common(inode);
202 init_special_inode(inode, inode->i_mode,
203 new_decode_dev(attr->rdev));
39ee059a
MS
204 } else
205 BUG();
d8a5ba45
MS
206}
207
208static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
209{
210 unsigned long nodeid = *(unsigned long *) _nodeidp;
211 if (get_node_id(inode) == nodeid)
212 return 1;
213 else
214 return 0;
215}
216
217static int fuse_inode_set(struct inode *inode, void *_nodeidp)
218{
219 unsigned long nodeid = *(unsigned long *) _nodeidp;
220 get_fuse_inode(inode)->nodeid = nodeid;
221 return 0;
222}
223
224struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
1fb69e78
MS
225 int generation, struct fuse_attr *attr,
226 u64 attr_valid, u64 attr_version)
d8a5ba45
MS
227{
228 struct inode *inode;
9e6268db 229 struct fuse_inode *fi;
d8a5ba45 230 struct fuse_conn *fc = get_fuse_conn_super(sb);
d8a5ba45
MS
231
232 retry:
233 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
234 if (!inode)
235 return NULL;
236
237 if ((inode->i_state & I_NEW)) {
b36c31ba 238 inode->i_flags |= S_NOATIME|S_NOCMTIME;
d8a5ba45
MS
239 inode->i_generation = generation;
240 inode->i_data.backing_dev_info = &fc->bdi;
241 fuse_init_inode(inode, attr);
242 unlock_new_inode(inode);
243 } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
d8a5ba45
MS
244 /* Inode has changed type, any I/O on the old should fail */
245 make_bad_inode(inode);
246 iput(inode);
d8a5ba45
MS
247 goto retry;
248 }
249
9e6268db 250 fi = get_fuse_inode(inode);
8da5ff23 251 spin_lock(&fc->lock);
9e6268db 252 fi->nlookup ++;
8da5ff23 253 spin_unlock(&fc->lock);
1fb69e78
MS
254 fuse_change_attributes(inode, attr, attr_valid, attr_version);
255
d8a5ba45
MS
256 return inode;
257}
258
42faad99 259static void fuse_umount_begin(struct super_block *sb)
69a53bf2 260{
42faad99 261 fuse_abort_conn(get_fuse_conn_super(sb));
69a53bf2
MS
262}
263
0ec7ca41
MS
264static void fuse_send_destroy(struct fuse_conn *fc)
265{
266 struct fuse_req *req = fc->destroy_req;
267 if (req && fc->conn_init) {
268 fc->destroy_req = NULL;
269 req->in.h.opcode = FUSE_DESTROY;
270 req->force = 1;
271 request_send(fc, req);
272 fuse_put_request(fc, req);
273 }
274}
275
d8a5ba45
MS
276static void fuse_put_super(struct super_block *sb)
277{
278 struct fuse_conn *fc = get_fuse_conn_super(sb);
279
0ec7ca41 280 fuse_send_destroy(fc);
d7133114 281 spin_lock(&fc->lock);
9ba7cbba 282 fc->connected = 0;
51eb01e7 283 fc->blocked = 0;
d7133114 284 spin_unlock(&fc->lock);
334f485d 285 /* Flush all readers on this fs */
385a17bf 286 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
334f485d 287 wake_up_all(&fc->waitq);
51eb01e7 288 wake_up_all(&fc->blocked_waitq);
de5e3dec 289 wake_up_all(&fc->reserved_req_waitq);
bafa9654
MS
290 mutex_lock(&fuse_mutex);
291 list_del(&fc->entry);
292 fuse_ctl_remove_conn(fc);
293 mutex_unlock(&fuse_mutex);
294 fuse_conn_put(fc);
d8a5ba45
MS
295}
296
e5e5558e
MS
297static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
298{
299 stbuf->f_type = FUSE_SUPER_MAGIC;
300 stbuf->f_bsize = attr->bsize;
de5f1202 301 stbuf->f_frsize = attr->frsize;
e5e5558e
MS
302 stbuf->f_blocks = attr->blocks;
303 stbuf->f_bfree = attr->bfree;
304 stbuf->f_bavail = attr->bavail;
305 stbuf->f_files = attr->files;
306 stbuf->f_ffree = attr->ffree;
307 stbuf->f_namelen = attr->namelen;
308 /* fsid is left zero */
309}
310
726c3342 311static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
e5e5558e 312{
726c3342 313 struct super_block *sb = dentry->d_sb;
e5e5558e
MS
314 struct fuse_conn *fc = get_fuse_conn_super(sb);
315 struct fuse_req *req;
316 struct fuse_statfs_out outarg;
317 int err;
318
e57ac683
MS
319 if (!fuse_allow_task(fc, current)) {
320 buf->f_type = FUSE_SUPER_MAGIC;
321 return 0;
322 }
323
ce1d5a49
MS
324 req = fuse_get_req(fc);
325 if (IS_ERR(req))
326 return PTR_ERR(req);
e5e5558e 327
de5f1202 328 memset(&outarg, 0, sizeof(outarg));
e5e5558e
MS
329 req->in.numargs = 0;
330 req->in.h.opcode = FUSE_STATFS;
5b35e8e5 331 req->in.h.nodeid = get_node_id(dentry->d_inode);
e5e5558e 332 req->out.numargs = 1;
de5f1202
MS
333 req->out.args[0].size =
334 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
e5e5558e
MS
335 req->out.args[0].value = &outarg;
336 request_send(fc, req);
337 err = req->out.h.error;
338 if (!err)
339 convert_fuse_statfs(buf, &outarg.st);
340 fuse_put_request(fc, req);
341 return err;
342}
343
d8a5ba45
MS
344enum {
345 OPT_FD,
346 OPT_ROOTMODE,
347 OPT_USER_ID,
87729a55 348 OPT_GROUP_ID,
d8a5ba45
MS
349 OPT_DEFAULT_PERMISSIONS,
350 OPT_ALLOW_OTHER,
db50b96c 351 OPT_MAX_READ,
d8091614 352 OPT_BLKSIZE,
d8a5ba45
MS
353 OPT_ERR
354};
355
356static match_table_t tokens = {
357 {OPT_FD, "fd=%u"},
358 {OPT_ROOTMODE, "rootmode=%o"},
359 {OPT_USER_ID, "user_id=%u"},
87729a55 360 {OPT_GROUP_ID, "group_id=%u"},
d8a5ba45
MS
361 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
362 {OPT_ALLOW_OTHER, "allow_other"},
db50b96c 363 {OPT_MAX_READ, "max_read=%u"},
d8091614 364 {OPT_BLKSIZE, "blksize=%u"},
d8a5ba45
MS
365 {OPT_ERR, NULL}
366};
367
d8091614 368static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
d8a5ba45
MS
369{
370 char *p;
371 memset(d, 0, sizeof(struct fuse_mount_data));
db50b96c 372 d->max_read = ~0;
d1875dba 373 d->blksize = FUSE_DEFAULT_BLKSIZE;
d8a5ba45
MS
374
375 while ((p = strsep(&opt, ",")) != NULL) {
376 int token;
377 int value;
378 substring_t args[MAX_OPT_ARGS];
379 if (!*p)
380 continue;
381
382 token = match_token(p, tokens, args);
383 switch (token) {
384 case OPT_FD:
385 if (match_int(&args[0], &value))
386 return 0;
387 d->fd = value;
5a533682 388 d->fd_present = 1;
d8a5ba45
MS
389 break;
390
391 case OPT_ROOTMODE:
392 if (match_octal(&args[0], &value))
393 return 0;
a5bfffac
TS
394 if (!fuse_valid_type(value))
395 return 0;
d8a5ba45 396 d->rootmode = value;
5a533682 397 d->rootmode_present = 1;
d8a5ba45
MS
398 break;
399
400 case OPT_USER_ID:
401 if (match_int(&args[0], &value))
402 return 0;
403 d->user_id = value;
5a533682 404 d->user_id_present = 1;
d8a5ba45
MS
405 break;
406
87729a55
MS
407 case OPT_GROUP_ID:
408 if (match_int(&args[0], &value))
409 return 0;
410 d->group_id = value;
5a533682 411 d->group_id_present = 1;
87729a55
MS
412 break;
413
1e9a4ed9
MS
414 case OPT_DEFAULT_PERMISSIONS:
415 d->flags |= FUSE_DEFAULT_PERMISSIONS;
416 break;
417
418 case OPT_ALLOW_OTHER:
419 d->flags |= FUSE_ALLOW_OTHER;
420 break;
421
db50b96c
MS
422 case OPT_MAX_READ:
423 if (match_int(&args[0], &value))
424 return 0;
425 d->max_read = value;
426 break;
427
d8091614
MS
428 case OPT_BLKSIZE:
429 if (!is_bdev || match_int(&args[0], &value))
430 return 0;
431 d->blksize = value;
432 break;
433
d8a5ba45
MS
434 default:
435 return 0;
436 }
437 }
5a533682
MS
438
439 if (!d->fd_present || !d->rootmode_present ||
440 !d->user_id_present || !d->group_id_present)
d8a5ba45
MS
441 return 0;
442
443 return 1;
444}
445
446static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
447{
448 struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
449
450 seq_printf(m, ",user_id=%u", fc->user_id);
87729a55 451 seq_printf(m, ",group_id=%u", fc->group_id);
1e9a4ed9
MS
452 if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
453 seq_puts(m, ",default_permissions");
454 if (fc->flags & FUSE_ALLOW_OTHER)
455 seq_puts(m, ",allow_other");
db50b96c
MS
456 if (fc->max_read != ~0)
457 seq_printf(m, ",max_read=%u", fc->max_read);
d1875dba
MS
458 if (mnt->mnt_sb->s_bdev &&
459 mnt->mnt_sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
460 seq_printf(m, ",blksize=%lu", mnt->mnt_sb->s_blocksize);
d8a5ba45
MS
461 return 0;
462}
463
b6f2fcbc 464static struct fuse_conn *new_conn(struct super_block *sb)
d8a5ba45
MS
465{
466 struct fuse_conn *fc;
e0bf68dd 467 int err;
d8a5ba45 468
6383bdaa 469 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
f543f253 470 if (fc) {
d7133114 471 spin_lock_init(&fc->lock);
d2a85164 472 mutex_init(&fc->inst_mutex);
bafa9654 473 atomic_set(&fc->count, 1);
334f485d 474 init_waitqueue_head(&fc->waitq);
08a53cdc 475 init_waitqueue_head(&fc->blocked_waitq);
de5e3dec 476 init_waitqueue_head(&fc->reserved_req_waitq);
334f485d
MS
477 INIT_LIST_HEAD(&fc->pending);
478 INIT_LIST_HEAD(&fc->processing);
d77a1d5b 479 INIT_LIST_HEAD(&fc->io);
a4d27e75 480 INIT_LIST_HEAD(&fc->interrupts);
d12def1b 481 INIT_LIST_HEAD(&fc->bg_queue);
095da6cb 482 atomic_set(&fc->num_waiting, 0);
d8a5ba45
MS
483 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
484 fc->bdi.unplug_io_fn = default_unplug_io_fn;
3be5a52b
MS
485 /* fuse does it's own writeback accounting */
486 fc->bdi.capabilities = BDI_CAP_NO_ACCT_WB;
b6f2fcbc 487 fc->dev = sb->s_dev;
e0bf68dd 488 err = bdi_init(&fc->bdi);
b6f2fcbc
MS
489 if (err)
490 goto error_kfree;
491 err = bdi_register_dev(&fc->bdi, fc->dev);
492 if (err)
493 goto error_bdi_destroy;
3be5a52b
MS
494 /*
495 * For a single fuse filesystem use max 1% of dirty +
496 * writeback threshold.
497 *
498 * This gives about 1M of write buffer for memory maps on a
499 * machine with 1G and 10% dirty_ratio, which should be more
500 * than enough.
501 *
502 * Privileged users can raise it by writing to
503 *
504 * /sys/class/bdi/<bdi>/max_ratio
505 */
506 bdi_set_max_ratio(&fc->bdi, 1);
334f485d 507 fc->reqctr = 0;
08a53cdc 508 fc->blocked = 1;
1fb69e78 509 fc->attr_version = 1;
9c8ef561 510 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
d8a5ba45
MS
511 }
512 return fc;
b6f2fcbc
MS
513
514error_bdi_destroy:
515 bdi_destroy(&fc->bdi);
516error_kfree:
517 mutex_destroy(&fc->inst_mutex);
518 kfree(fc);
519 return NULL;
d8a5ba45
MS
520}
521
bafa9654
MS
522void fuse_conn_put(struct fuse_conn *fc)
523{
d2a85164 524 if (atomic_dec_and_test(&fc->count)) {
0ec7ca41
MS
525 if (fc->destroy_req)
526 fuse_request_free(fc->destroy_req);
d2a85164 527 mutex_destroy(&fc->inst_mutex);
e0bf68dd 528 bdi_destroy(&fc->bdi);
bafa9654 529 kfree(fc);
d2a85164 530 }
bafa9654
MS
531}
532
533struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
534{
535 atomic_inc(&fc->count);
536 return fc;
537}
538
d8a5ba45
MS
539static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
540{
541 struct fuse_attr attr;
542 memset(&attr, 0, sizeof(attr));
543
544 attr.mode = mode;
545 attr.ino = FUSE_ROOT_ID;
074406fa 546 attr.nlink = 1;
1fb69e78 547 return fuse_iget(sb, 1, 0, &attr, 0, 0);
d8a5ba45
MS
548}
549
ee9b6d61 550static const struct super_operations fuse_super_operations = {
d8a5ba45
MS
551 .alloc_inode = fuse_alloc_inode,
552 .destroy_inode = fuse_destroy_inode,
d8a5ba45 553 .clear_inode = fuse_clear_inode,
ead5f0b5 554 .drop_inode = generic_delete_inode,
71421259 555 .remount_fs = fuse_remount_fs,
d8a5ba45 556 .put_super = fuse_put_super,
69a53bf2 557 .umount_begin = fuse_umount_begin,
e5e5558e 558 .statfs = fuse_statfs,
d8a5ba45
MS
559 .show_options = fuse_show_options,
560};
561
9b9a0469
MS
562static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
563{
9b9a0469
MS
564 struct fuse_init_out *arg = &req->misc.init_out;
565
566 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
567 fc->conn_error = 1;
568 else {
9cd68455
MS
569 unsigned long ra_pages;
570
571 if (arg->minor >= 6) {
572 ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
573 if (arg->flags & FUSE_ASYNC_READ)
574 fc->async_read = 1;
71421259
MS
575 if (!(arg->flags & FUSE_POSIX_LOCKS))
576 fc->no_lock = 1;
6ff958ed
MS
577 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
578 fc->atomic_o_trunc = 1;
71421259 579 } else {
9cd68455 580 ra_pages = fc->max_read / PAGE_CACHE_SIZE;
71421259
MS
581 fc->no_lock = 1;
582 }
9cd68455
MS
583
584 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
9b9a0469
MS
585 fc->minor = arg->minor;
586 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
e5d9a0df 587 fc->max_write = min_t(unsigned, 4096, fc->max_write);
0ec7ca41 588 fc->conn_init = 1;
9b9a0469 589 }
9b9a0469 590 fuse_put_request(fc, req);
08a53cdc
MS
591 fc->blocked = 0;
592 wake_up_all(&fc->blocked_waitq);
9b9a0469
MS
593}
594
ce1d5a49 595static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
9b9a0469 596{
9b9a0469 597 struct fuse_init_in *arg = &req->misc.init_in;
095da6cb 598
9b9a0469
MS
599 arg->major = FUSE_KERNEL_VERSION;
600 arg->minor = FUSE_KERNEL_MINOR_VERSION;
9cd68455 601 arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
d0186b25 602 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC;
9b9a0469
MS
603 req->in.h.opcode = FUSE_INIT;
604 req->in.numargs = 1;
605 req->in.args[0].size = sizeof(*arg);
606 req->in.args[0].value = arg;
607 req->out.numargs = 1;
608 /* Variable length arguement used for backward compatibility
609 with interface version < 7.5. Rest of init_out is zeroed
610 by do_get_request(), so a short reply is not a problem */
611 req->out.argvar = 1;
612 req->out.args[0].size = sizeof(struct fuse_init_out);
613 req->out.args[0].value = &req->misc.init_out;
614 req->end = process_init_reply;
615 request_send_background(fc, req);
616}
617
d8a5ba45
MS
618static int fuse_fill_super(struct super_block *sb, void *data, int silent)
619{
620 struct fuse_conn *fc;
621 struct inode *root;
622 struct fuse_mount_data d;
623 struct file *file;
f543f253 624 struct dentry *root_dentry;
ce1d5a49 625 struct fuse_req *init_req;
d8a5ba45 626 int err;
d8091614 627 int is_bdev = sb->s_bdev != NULL;
d8a5ba45 628
71421259
MS
629 if (sb->s_flags & MS_MANDLOCK)
630 return -EINVAL;
631
d8091614 632 if (!parse_fuse_opt((char *) data, &d, is_bdev))
d8a5ba45
MS
633 return -EINVAL;
634
d8091614 635 if (is_bdev) {
875d95ec 636#ifdef CONFIG_BLOCK
d8091614
MS
637 if (!sb_set_blocksize(sb, d.blksize))
638 return -EINVAL;
875d95ec 639#endif
d8091614
MS
640 } else {
641 sb->s_blocksize = PAGE_CACHE_SIZE;
642 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
643 }
d8a5ba45
MS
644 sb->s_magic = FUSE_SUPER_MAGIC;
645 sb->s_op = &fuse_super_operations;
646 sb->s_maxbytes = MAX_LFS_FILESIZE;
647
648 file = fget(d.fd);
649 if (!file)
650 return -EINVAL;
651
0720b315
MS
652 if (file->f_op != &fuse_dev_operations)
653 return -EINVAL;
654
b6f2fcbc 655 fc = new_conn(sb);
0720b315
MS
656 if (!fc)
657 return -ENOMEM;
d8a5ba45 658
1e9a4ed9 659 fc->flags = d.flags;
d8a5ba45 660 fc->user_id = d.user_id;
87729a55 661 fc->group_id = d.group_id;
e5d9a0df 662 fc->max_read = min_t(unsigned, 4096, d.max_read);
d8a5ba45 663
f543f253
MS
664 /* Used by get_root_inode() */
665 sb->s_fs_info = fc;
666
d8a5ba45
MS
667 err = -ENOMEM;
668 root = get_root_inode(sb, d.rootmode);
f543f253 669 if (!root)
d8a5ba45
MS
670 goto err;
671
f543f253
MS
672 root_dentry = d_alloc_root(root);
673 if (!root_dentry) {
d8a5ba45
MS
674 iput(root);
675 goto err;
676 }
f543f253 677
ce1d5a49
MS
678 init_req = fuse_request_alloc();
679 if (!init_req)
680 goto err_put_root;
681
0ec7ca41
MS
682 if (is_bdev) {
683 fc->destroy_req = fuse_request_alloc();
684 if (!fc->destroy_req)
685 goto err_put_root;
686 }
687
bafa9654 688 mutex_lock(&fuse_mutex);
8aa09a50
MS
689 err = -EINVAL;
690 if (file->private_data)
bafa9654 691 goto err_unlock;
8aa09a50 692
bafa9654
MS
693 err = fuse_ctl_add_conn(fc);
694 if (err)
695 goto err_unlock;
696
697 list_add_tail(&fc->entry, &fuse_conn_list);
f543f253 698 sb->s_root = root_dentry;
f543f253 699 fc->connected = 1;
bafa9654
MS
700 file->private_data = fuse_conn_get(fc);
701 mutex_unlock(&fuse_mutex);
0720b315
MS
702 /*
703 * atomic_dec_and_test() in fput() provides the necessary
704 * memory barrier for file->private_data to be visible on all
705 * CPUs after this
706 */
707 fput(file);
f543f253 708
ce1d5a49 709 fuse_send_init(fc, init_req);
f543f253 710
d8a5ba45
MS
711 return 0;
712
bafa9654
MS
713 err_unlock:
714 mutex_unlock(&fuse_mutex);
ce1d5a49 715 fuse_request_free(init_req);
f543f253
MS
716 err_put_root:
717 dput(root_dentry);
d8a5ba45 718 err:
0720b315 719 fput(file);
bafa9654 720 fuse_conn_put(fc);
d8a5ba45
MS
721 return err;
722}
723
454e2398
DH
724static int fuse_get_sb(struct file_system_type *fs_type,
725 int flags, const char *dev_name,
726 void *raw_data, struct vfsmount *mnt)
d8a5ba45 727{
454e2398 728 return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
d8a5ba45
MS
729}
730
875d95ec
MS
731static struct file_system_type fuse_fs_type = {
732 .owner = THIS_MODULE,
733 .name = "fuse",
79c0b2df 734 .fs_flags = FS_HAS_SUBTYPE,
875d95ec
MS
735 .get_sb = fuse_get_sb,
736 .kill_sb = kill_anon_super,
737};
738
739#ifdef CONFIG_BLOCK
d6392f87
MS
740static int fuse_get_sb_blk(struct file_system_type *fs_type,
741 int flags, const char *dev_name,
742 void *raw_data, struct vfsmount *mnt)
743{
744 return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
745 mnt);
746}
747
d6392f87
MS
748static struct file_system_type fuseblk_fs_type = {
749 .owner = THIS_MODULE,
750 .name = "fuseblk",
751 .get_sb = fuse_get_sb_blk,
752 .kill_sb = kill_block_super,
edad01e2 753 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
d6392f87
MS
754};
755
875d95ec
MS
756static inline int register_fuseblk(void)
757{
758 return register_filesystem(&fuseblk_fs_type);
759}
760
761static inline void unregister_fuseblk(void)
762{
763 unregister_filesystem(&fuseblk_fs_type);
764}
765#else
766static inline int register_fuseblk(void)
767{
768 return 0;
769}
770
771static inline void unregister_fuseblk(void)
772{
773}
774#endif
775
4ba9b9d0 776static void fuse_inode_init_once(struct kmem_cache *cachep, void *foo)
d8a5ba45
MS
777{
778 struct inode * inode = foo;
779
a35afb83 780 inode_init_once(inode);
d8a5ba45
MS
781}
782
783static int __init fuse_fs_init(void)
784{
785 int err;
786
787 err = register_filesystem(&fuse_fs_type);
788 if (err)
d6392f87
MS
789 goto out;
790
875d95ec 791 err = register_fuseblk();
d6392f87
MS
792 if (err)
793 goto out_unreg;
794
795 fuse_inode_cachep = kmem_cache_create("fuse_inode",
796 sizeof(struct fuse_inode),
797 0, SLAB_HWCACHE_ALIGN,
20c2df83 798 fuse_inode_init_once);
d6392f87
MS
799 err = -ENOMEM;
800 if (!fuse_inode_cachep)
801 goto out_unreg2;
802
803 return 0;
d8a5ba45 804
d6392f87 805 out_unreg2:
875d95ec 806 unregister_fuseblk();
d6392f87
MS
807 out_unreg:
808 unregister_filesystem(&fuse_fs_type);
809 out:
d8a5ba45
MS
810 return err;
811}
812
813static void fuse_fs_cleanup(void)
814{
815 unregister_filesystem(&fuse_fs_type);
875d95ec 816 unregister_fuseblk();
d8a5ba45
MS
817 kmem_cache_destroy(fuse_inode_cachep);
818}
819
5c89e17e
GKH
820static struct kobject *fuse_kobj;
821static struct kobject *connections_kobj;
822
f543f253
MS
823static int fuse_sysfs_init(void)
824{
825 int err;
826
00d26666 827 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
5c89e17e
GKH
828 if (!fuse_kobj) {
829 err = -ENOMEM;
f543f253 830 goto out_err;
5c89e17e 831 }
f543f253 832
5c89e17e
GKH
833 connections_kobj = kobject_create_and_add("connections", fuse_kobj);
834 if (!connections_kobj) {
835 err = -ENOMEM;
f543f253 836 goto out_fuse_unregister;
5c89e17e 837 }
f543f253
MS
838
839 return 0;
840
841 out_fuse_unregister:
197b12d6 842 kobject_put(fuse_kobj);
f543f253
MS
843 out_err:
844 return err;
845}
846
847static void fuse_sysfs_cleanup(void)
848{
197b12d6
GKH
849 kobject_put(connections_kobj);
850 kobject_put(fuse_kobj);
f543f253
MS
851}
852
d8a5ba45
MS
853static int __init fuse_init(void)
854{
855 int res;
856
857 printk("fuse init (API version %i.%i)\n",
858 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
859
bafa9654 860 INIT_LIST_HEAD(&fuse_conn_list);
d8a5ba45
MS
861 res = fuse_fs_init();
862 if (res)
863 goto err;
864
334f485d
MS
865 res = fuse_dev_init();
866 if (res)
867 goto err_fs_cleanup;
868
f543f253
MS
869 res = fuse_sysfs_init();
870 if (res)
871 goto err_dev_cleanup;
872
bafa9654
MS
873 res = fuse_ctl_init();
874 if (res)
875 goto err_sysfs_cleanup;
876
d8a5ba45
MS
877 return 0;
878
bafa9654
MS
879 err_sysfs_cleanup:
880 fuse_sysfs_cleanup();
f543f253
MS
881 err_dev_cleanup:
882 fuse_dev_cleanup();
334f485d
MS
883 err_fs_cleanup:
884 fuse_fs_cleanup();
d8a5ba45
MS
885 err:
886 return res;
887}
888
889static void __exit fuse_exit(void)
890{
891 printk(KERN_DEBUG "fuse exit\n");
892
bafa9654 893 fuse_ctl_cleanup();
f543f253 894 fuse_sysfs_cleanup();
d8a5ba45 895 fuse_fs_cleanup();
334f485d 896 fuse_dev_cleanup();
d8a5ba45
MS
897}
898
899module_init(fuse_init);
900module_exit(fuse_exit);