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