[PATCH] fuse: add blksize option
[safe/jmp/linux-2.6] / fs / fuse / inode.c
1 /*
2   FUSE: Filesystem in Userspace
3   Copyright (C) 2001-2006  Miklos Szeredi <miklos@szeredi.hu>
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>
14 #include <linux/seq_file.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/parser.h>
18 #include <linux/statfs.h>
19 #include <linux/random.h>
20
21 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
22 MODULE_DESCRIPTION("Filesystem in Userspace");
23 MODULE_LICENSE("GPL");
24
25 static struct kmem_cache *fuse_inode_cachep;
26 struct list_head fuse_conn_list;
27 DEFINE_MUTEX(fuse_mutex);
28
29 #define FUSE_SUPER_MAGIC 0x65735546
30
31 struct fuse_mount_data {
32         int fd;
33         unsigned rootmode;
34         unsigned user_id;
35         unsigned group_id;
36         unsigned fd_present : 1;
37         unsigned rootmode_present : 1;
38         unsigned user_id_present : 1;
39         unsigned group_id_present : 1;
40         unsigned flags;
41         unsigned max_read;
42         unsigned blksize;
43 };
44
45 static struct inode *fuse_alloc_inode(struct super_block *sb)
46 {
47         struct inode *inode;
48         struct fuse_inode *fi;
49
50         inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
51         if (!inode)
52                 return NULL;
53
54         fi = get_fuse_inode(inode);
55         fi->i_time = 0;
56         fi->nodeid = 0;
57         fi->nlookup = 0;
58         fi->forget_req = fuse_request_alloc();
59         if (!fi->forget_req) {
60                 kmem_cache_free(fuse_inode_cachep, inode);
61                 return NULL;
62         }
63
64         return inode;
65 }
66
67 static void fuse_destroy_inode(struct inode *inode)
68 {
69         struct fuse_inode *fi = get_fuse_inode(inode);
70         if (fi->forget_req)
71                 fuse_request_free(fi->forget_req);
72         kmem_cache_free(fuse_inode_cachep, inode);
73 }
74
75 static void fuse_read_inode(struct inode *inode)
76 {
77         /* No op */
78 }
79
80 void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
81                       unsigned long nodeid, u64 nlookup)
82 {
83         struct fuse_forget_in *inarg = &req->misc.forget_in;
84         inarg->nlookup = nlookup;
85         req->in.h.opcode = FUSE_FORGET;
86         req->in.h.nodeid = nodeid;
87         req->in.numargs = 1;
88         req->in.args[0].size = sizeof(struct fuse_forget_in);
89         req->in.args[0].value = inarg;
90         request_send_noreply(fc, req);
91 }
92
93 static void fuse_clear_inode(struct inode *inode)
94 {
95         if (inode->i_sb->s_flags & MS_ACTIVE) {
96                 struct fuse_conn *fc = get_fuse_conn(inode);
97                 struct fuse_inode *fi = get_fuse_inode(inode);
98                 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
99                 fi->forget_req = NULL;
100         }
101 }
102
103 static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
104 {
105         if (*flags & MS_MANDLOCK)
106                 return -EINVAL;
107
108         return 0;
109 }
110
111 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr)
112 {
113         struct fuse_conn *fc = get_fuse_conn(inode);
114         if (S_ISREG(inode->i_mode) && i_size_read(inode) != attr->size)
115                 invalidate_inode_pages(inode->i_mapping);
116
117         inode->i_ino     = attr->ino;
118         inode->i_mode    = (inode->i_mode & S_IFMT) + (attr->mode & 07777);
119         inode->i_nlink   = attr->nlink;
120         inode->i_uid     = attr->uid;
121         inode->i_gid     = attr->gid;
122         spin_lock(&fc->lock);
123         i_size_write(inode, attr->size);
124         spin_unlock(&fc->lock);
125         inode->i_blocks  = attr->blocks;
126         inode->i_atime.tv_sec   = attr->atime;
127         inode->i_atime.tv_nsec  = attr->atimensec;
128         inode->i_mtime.tv_sec   = attr->mtime;
129         inode->i_mtime.tv_nsec  = attr->mtimensec;
130         inode->i_ctime.tv_sec   = attr->ctime;
131         inode->i_ctime.tv_nsec  = attr->ctimensec;
132 }
133
134 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
135 {
136         inode->i_mode = attr->mode & S_IFMT;
137         inode->i_size = attr->size;
138         if (S_ISREG(inode->i_mode)) {
139                 fuse_init_common(inode);
140                 fuse_init_file_inode(inode);
141         } else if (S_ISDIR(inode->i_mode))
142                 fuse_init_dir(inode);
143         else if (S_ISLNK(inode->i_mode))
144                 fuse_init_symlink(inode);
145         else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
146                  S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
147                 fuse_init_common(inode);
148                 init_special_inode(inode, inode->i_mode,
149                                    new_decode_dev(attr->rdev));
150         } else
151                 BUG();
152 }
153
154 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
155 {
156         unsigned long nodeid = *(unsigned long *) _nodeidp;
157         if (get_node_id(inode) == nodeid)
158                 return 1;
159         else
160                 return 0;
161 }
162
163 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
164 {
165         unsigned long nodeid = *(unsigned long *) _nodeidp;
166         get_fuse_inode(inode)->nodeid = nodeid;
167         return 0;
168 }
169
170 struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
171                         int generation, struct fuse_attr *attr)
172 {
173         struct inode *inode;
174         struct fuse_inode *fi;
175         struct fuse_conn *fc = get_fuse_conn_super(sb);
176
177  retry:
178         inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
179         if (!inode)
180                 return NULL;
181
182         if ((inode->i_state & I_NEW)) {
183                 inode->i_flags |= S_NOATIME|S_NOCMTIME;
184                 inode->i_generation = generation;
185                 inode->i_data.backing_dev_info = &fc->bdi;
186                 fuse_init_inode(inode, attr);
187                 unlock_new_inode(inode);
188         } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
189                 /* Inode has changed type, any I/O on the old should fail */
190                 make_bad_inode(inode);
191                 iput(inode);
192                 goto retry;
193         }
194
195         fi = get_fuse_inode(inode);
196         spin_lock(&fc->lock);
197         fi->nlookup ++;
198         spin_unlock(&fc->lock);
199         fuse_change_attributes(inode, attr);
200         return inode;
201 }
202
203 static void fuse_umount_begin(struct vfsmount *vfsmnt, int flags)
204 {
205         if (flags & MNT_FORCE)
206                 fuse_abort_conn(get_fuse_conn_super(vfsmnt->mnt_sb));
207 }
208
209 static void fuse_put_super(struct super_block *sb)
210 {
211         struct fuse_conn *fc = get_fuse_conn_super(sb);
212
213         spin_lock(&fc->lock);
214         fc->connected = 0;
215         fc->blocked = 0;
216         spin_unlock(&fc->lock);
217         /* Flush all readers on this fs */
218         kill_fasync(&fc->fasync, SIGIO, POLL_IN);
219         wake_up_all(&fc->waitq);
220         wake_up_all(&fc->blocked_waitq);
221         mutex_lock(&fuse_mutex);
222         list_del(&fc->entry);
223         fuse_ctl_remove_conn(fc);
224         mutex_unlock(&fuse_mutex);
225         fuse_conn_put(fc);
226 }
227
228 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
229 {
230         stbuf->f_type    = FUSE_SUPER_MAGIC;
231         stbuf->f_bsize   = attr->bsize;
232         stbuf->f_frsize  = attr->frsize;
233         stbuf->f_blocks  = attr->blocks;
234         stbuf->f_bfree   = attr->bfree;
235         stbuf->f_bavail  = attr->bavail;
236         stbuf->f_files   = attr->files;
237         stbuf->f_ffree   = attr->ffree;
238         stbuf->f_namelen = attr->namelen;
239         /* fsid is left zero */
240 }
241
242 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
243 {
244         struct super_block *sb = dentry->d_sb;
245         struct fuse_conn *fc = get_fuse_conn_super(sb);
246         struct fuse_req *req;
247         struct fuse_statfs_out outarg;
248         int err;
249
250         req = fuse_get_req(fc);
251         if (IS_ERR(req))
252                 return PTR_ERR(req);
253
254         memset(&outarg, 0, sizeof(outarg));
255         req->in.numargs = 0;
256         req->in.h.opcode = FUSE_STATFS;
257         req->in.h.nodeid = get_node_id(dentry->d_inode);
258         req->out.numargs = 1;
259         req->out.args[0].size =
260                 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
261         req->out.args[0].value = &outarg;
262         request_send(fc, req);
263         err = req->out.h.error;
264         if (!err)
265                 convert_fuse_statfs(buf, &outarg.st);
266         fuse_put_request(fc, req);
267         return err;
268 }
269
270 enum {
271         OPT_FD,
272         OPT_ROOTMODE,
273         OPT_USER_ID,
274         OPT_GROUP_ID,
275         OPT_DEFAULT_PERMISSIONS,
276         OPT_ALLOW_OTHER,
277         OPT_MAX_READ,
278         OPT_BLKSIZE,
279         OPT_ERR
280 };
281
282 static match_table_t tokens = {
283         {OPT_FD,                        "fd=%u"},
284         {OPT_ROOTMODE,                  "rootmode=%o"},
285         {OPT_USER_ID,                   "user_id=%u"},
286         {OPT_GROUP_ID,                  "group_id=%u"},
287         {OPT_DEFAULT_PERMISSIONS,       "default_permissions"},
288         {OPT_ALLOW_OTHER,               "allow_other"},
289         {OPT_MAX_READ,                  "max_read=%u"},
290         {OPT_BLKSIZE,                   "blksize=%u"},
291         {OPT_ERR,                       NULL}
292 };
293
294 static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
295 {
296         char *p;
297         memset(d, 0, sizeof(struct fuse_mount_data));
298         d->max_read = ~0;
299         d->blksize = 512;
300
301         while ((p = strsep(&opt, ",")) != NULL) {
302                 int token;
303                 int value;
304                 substring_t args[MAX_OPT_ARGS];
305                 if (!*p)
306                         continue;
307
308                 token = match_token(p, tokens, args);
309                 switch (token) {
310                 case OPT_FD:
311                         if (match_int(&args[0], &value))
312                                 return 0;
313                         d->fd = value;
314                         d->fd_present = 1;
315                         break;
316
317                 case OPT_ROOTMODE:
318                         if (match_octal(&args[0], &value))
319                                 return 0;
320                         d->rootmode = value;
321                         d->rootmode_present = 1;
322                         break;
323
324                 case OPT_USER_ID:
325                         if (match_int(&args[0], &value))
326                                 return 0;
327                         d->user_id = value;
328                         d->user_id_present = 1;
329                         break;
330
331                 case OPT_GROUP_ID:
332                         if (match_int(&args[0], &value))
333                                 return 0;
334                         d->group_id = value;
335                         d->group_id_present = 1;
336                         break;
337
338                 case OPT_DEFAULT_PERMISSIONS:
339                         d->flags |= FUSE_DEFAULT_PERMISSIONS;
340                         break;
341
342                 case OPT_ALLOW_OTHER:
343                         d->flags |= FUSE_ALLOW_OTHER;
344                         break;
345
346                 case OPT_MAX_READ:
347                         if (match_int(&args[0], &value))
348                                 return 0;
349                         d->max_read = value;
350                         break;
351
352                 case OPT_BLKSIZE:
353                         if (!is_bdev || match_int(&args[0], &value))
354                                 return 0;
355                         d->blksize = value;
356                         break;
357
358                 default:
359                         return 0;
360                 }
361         }
362
363         if (!d->fd_present || !d->rootmode_present ||
364             !d->user_id_present || !d->group_id_present)
365                 return 0;
366
367         return 1;
368 }
369
370 static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
371 {
372         struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
373
374         seq_printf(m, ",user_id=%u", fc->user_id);
375         seq_printf(m, ",group_id=%u", fc->group_id);
376         if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
377                 seq_puts(m, ",default_permissions");
378         if (fc->flags & FUSE_ALLOW_OTHER)
379                 seq_puts(m, ",allow_other");
380         if (fc->max_read != ~0)
381                 seq_printf(m, ",max_read=%u", fc->max_read);
382         return 0;
383 }
384
385 static struct fuse_conn *new_conn(void)
386 {
387         struct fuse_conn *fc;
388
389         fc = kzalloc(sizeof(*fc), GFP_KERNEL);
390         if (fc) {
391                 spin_lock_init(&fc->lock);
392                 mutex_init(&fc->inst_mutex);
393                 atomic_set(&fc->count, 1);
394                 init_waitqueue_head(&fc->waitq);
395                 init_waitqueue_head(&fc->blocked_waitq);
396                 INIT_LIST_HEAD(&fc->pending);
397                 INIT_LIST_HEAD(&fc->processing);
398                 INIT_LIST_HEAD(&fc->io);
399                 INIT_LIST_HEAD(&fc->interrupts);
400                 atomic_set(&fc->num_waiting, 0);
401                 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
402                 fc->bdi.unplug_io_fn = default_unplug_io_fn;
403                 fc->reqctr = 0;
404                 fc->blocked = 1;
405                 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
406         }
407         return fc;
408 }
409
410 void fuse_conn_put(struct fuse_conn *fc)
411 {
412         if (atomic_dec_and_test(&fc->count)) {
413                 mutex_destroy(&fc->inst_mutex);
414                 kfree(fc);
415         }
416 }
417
418 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
419 {
420         atomic_inc(&fc->count);
421         return fc;
422 }
423
424 static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
425 {
426         struct fuse_attr attr;
427         memset(&attr, 0, sizeof(attr));
428
429         attr.mode = mode;
430         attr.ino = FUSE_ROOT_ID;
431         return fuse_iget(sb, 1, 0, &attr);
432 }
433
434 static struct super_operations fuse_super_operations = {
435         .alloc_inode    = fuse_alloc_inode,
436         .destroy_inode  = fuse_destroy_inode,
437         .read_inode     = fuse_read_inode,
438         .clear_inode    = fuse_clear_inode,
439         .remount_fs     = fuse_remount_fs,
440         .put_super      = fuse_put_super,
441         .umount_begin   = fuse_umount_begin,
442         .statfs         = fuse_statfs,
443         .show_options   = fuse_show_options,
444 };
445
446 static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
447 {
448         struct fuse_init_out *arg = &req->misc.init_out;
449
450         if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
451                 fc->conn_error = 1;
452         else {
453                 unsigned long ra_pages;
454
455                 if (arg->minor >= 6) {
456                         ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
457                         if (arg->flags & FUSE_ASYNC_READ)
458                                 fc->async_read = 1;
459                         if (!(arg->flags & FUSE_POSIX_LOCKS))
460                                 fc->no_lock = 1;
461                 } else {
462                         ra_pages = fc->max_read / PAGE_CACHE_SIZE;
463                         fc->no_lock = 1;
464                 }
465
466                 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
467                 fc->minor = arg->minor;
468                 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
469         }
470         fuse_put_request(fc, req);
471         fc->blocked = 0;
472         wake_up_all(&fc->blocked_waitq);
473 }
474
475 static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
476 {
477         struct fuse_init_in *arg = &req->misc.init_in;
478
479         arg->major = FUSE_KERNEL_VERSION;
480         arg->minor = FUSE_KERNEL_MINOR_VERSION;
481         arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
482         arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS;
483         req->in.h.opcode = FUSE_INIT;
484         req->in.numargs = 1;
485         req->in.args[0].size = sizeof(*arg);
486         req->in.args[0].value = arg;
487         req->out.numargs = 1;
488         /* Variable length arguement used for backward compatibility
489            with interface version < 7.5.  Rest of init_out is zeroed
490            by do_get_request(), so a short reply is not a problem */
491         req->out.argvar = 1;
492         req->out.args[0].size = sizeof(struct fuse_init_out);
493         req->out.args[0].value = &req->misc.init_out;
494         req->end = process_init_reply;
495         request_send_background(fc, req);
496 }
497
498 static u64 conn_id(void)
499 {
500         static u64 ctr = 1;
501         return ctr++;
502 }
503
504 static int fuse_fill_super(struct super_block *sb, void *data, int silent)
505 {
506         struct fuse_conn *fc;
507         struct inode *root;
508         struct fuse_mount_data d;
509         struct file *file;
510         struct dentry *root_dentry;
511         struct fuse_req *init_req;
512         int err;
513         int is_bdev = sb->s_bdev != NULL;
514
515         if (sb->s_flags & MS_MANDLOCK)
516                 return -EINVAL;
517
518         if (!parse_fuse_opt((char *) data, &d, is_bdev))
519                 return -EINVAL;
520
521         if (is_bdev) {
522                 if (!sb_set_blocksize(sb, d.blksize))
523                         return -EINVAL;
524         } else {
525                 sb->s_blocksize = PAGE_CACHE_SIZE;
526                 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
527         }
528         sb->s_magic = FUSE_SUPER_MAGIC;
529         sb->s_op = &fuse_super_operations;
530         sb->s_maxbytes = MAX_LFS_FILESIZE;
531
532         file = fget(d.fd);
533         if (!file)
534                 return -EINVAL;
535
536         if (file->f_op != &fuse_dev_operations)
537                 return -EINVAL;
538
539         fc = new_conn();
540         if (!fc)
541                 return -ENOMEM;
542
543         fc->flags = d.flags;
544         fc->user_id = d.user_id;
545         fc->group_id = d.group_id;
546         fc->max_read = d.max_read;
547
548         /* Used by get_root_inode() */
549         sb->s_fs_info = fc;
550
551         err = -ENOMEM;
552         root = get_root_inode(sb, d.rootmode);
553         if (!root)
554                 goto err;
555
556         root_dentry = d_alloc_root(root);
557         if (!root_dentry) {
558                 iput(root);
559                 goto err;
560         }
561
562         init_req = fuse_request_alloc();
563         if (!init_req)
564                 goto err_put_root;
565
566         mutex_lock(&fuse_mutex);
567         err = -EINVAL;
568         if (file->private_data)
569                 goto err_unlock;
570
571         fc->id = conn_id();
572         err = fuse_ctl_add_conn(fc);
573         if (err)
574                 goto err_unlock;
575
576         list_add_tail(&fc->entry, &fuse_conn_list);
577         sb->s_root = root_dentry;
578         fc->connected = 1;
579         file->private_data = fuse_conn_get(fc);
580         mutex_unlock(&fuse_mutex);
581         /*
582          * atomic_dec_and_test() in fput() provides the necessary
583          * memory barrier for file->private_data to be visible on all
584          * CPUs after this
585          */
586         fput(file);
587
588         fuse_send_init(fc, init_req);
589
590         return 0;
591
592  err_unlock:
593         mutex_unlock(&fuse_mutex);
594         fuse_request_free(init_req);
595  err_put_root:
596         dput(root_dentry);
597  err:
598         fput(file);
599         fuse_conn_put(fc);
600         return err;
601 }
602
603 static int fuse_get_sb(struct file_system_type *fs_type,
604                        int flags, const char *dev_name,
605                        void *raw_data, struct vfsmount *mnt)
606 {
607         return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
608 }
609
610 static int fuse_get_sb_blk(struct file_system_type *fs_type,
611                            int flags, const char *dev_name,
612                            void *raw_data, struct vfsmount *mnt)
613 {
614         return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
615                            mnt);
616 }
617
618 static struct file_system_type fuse_fs_type = {
619         .owner          = THIS_MODULE,
620         .name           = "fuse",
621         .get_sb         = fuse_get_sb,
622         .kill_sb        = kill_anon_super,
623 };
624
625 static struct file_system_type fuseblk_fs_type = {
626         .owner          = THIS_MODULE,
627         .name           = "fuseblk",
628         .get_sb         = fuse_get_sb_blk,
629         .kill_sb        = kill_block_super,
630         .fs_flags       = FS_REQUIRES_DEV,
631 };
632
633 static decl_subsys(fuse, NULL, NULL);
634 static decl_subsys(connections, NULL, NULL);
635
636 static void fuse_inode_init_once(void *foo, struct kmem_cache *cachep,
637                                  unsigned long flags)
638 {
639         struct inode * inode = foo;
640
641         if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
642             SLAB_CTOR_CONSTRUCTOR)
643                 inode_init_once(inode);
644 }
645
646 static int __init fuse_fs_init(void)
647 {
648         int err;
649
650         err = register_filesystem(&fuse_fs_type);
651         if (err)
652                 goto out;
653
654         err = register_filesystem(&fuseblk_fs_type);
655         if (err)
656                 goto out_unreg;
657
658         fuse_inode_cachep = kmem_cache_create("fuse_inode",
659                                               sizeof(struct fuse_inode),
660                                               0, SLAB_HWCACHE_ALIGN,
661                                               fuse_inode_init_once, NULL);
662         err = -ENOMEM;
663         if (!fuse_inode_cachep)
664                 goto out_unreg2;
665
666         return 0;
667
668  out_unreg2:
669         unregister_filesystem(&fuseblk_fs_type);
670  out_unreg:
671         unregister_filesystem(&fuse_fs_type);
672  out:
673         return err;
674 }
675
676 static void fuse_fs_cleanup(void)
677 {
678         unregister_filesystem(&fuse_fs_type);
679         unregister_filesystem(&fuseblk_fs_type);
680         kmem_cache_destroy(fuse_inode_cachep);
681 }
682
683 static int fuse_sysfs_init(void)
684 {
685         int err;
686
687         kset_set_kset_s(&fuse_subsys, fs_subsys);
688         err = subsystem_register(&fuse_subsys);
689         if (err)
690                 goto out_err;
691
692         kset_set_kset_s(&connections_subsys, fuse_subsys);
693         err = subsystem_register(&connections_subsys);
694         if (err)
695                 goto out_fuse_unregister;
696
697         return 0;
698
699  out_fuse_unregister:
700         subsystem_unregister(&fuse_subsys);
701  out_err:
702         return err;
703 }
704
705 static void fuse_sysfs_cleanup(void)
706 {
707         subsystem_unregister(&connections_subsys);
708         subsystem_unregister(&fuse_subsys);
709 }
710
711 static int __init fuse_init(void)
712 {
713         int res;
714
715         printk("fuse init (API version %i.%i)\n",
716                FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
717
718         INIT_LIST_HEAD(&fuse_conn_list);
719         res = fuse_fs_init();
720         if (res)
721                 goto err;
722
723         res = fuse_dev_init();
724         if (res)
725                 goto err_fs_cleanup;
726
727         res = fuse_sysfs_init();
728         if (res)
729                 goto err_dev_cleanup;
730
731         res = fuse_ctl_init();
732         if (res)
733                 goto err_sysfs_cleanup;
734
735         return 0;
736
737  err_sysfs_cleanup:
738         fuse_sysfs_cleanup();
739  err_dev_cleanup:
740         fuse_dev_cleanup();
741  err_fs_cleanup:
742         fuse_fs_cleanup();
743  err:
744         return res;
745 }
746
747 static void __exit fuse_exit(void)
748 {
749         printk(KERN_DEBUG "fuse exit\n");
750
751         fuse_ctl_cleanup();
752         fuse_sysfs_cleanup();
753         fuse_fs_cleanup();
754         fuse_dev_cleanup();
755 }
756
757 module_init(fuse_init);
758 module_exit(fuse_exit);