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