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