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