2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
5 This program can be distributed under the terms of the GNU GPL.
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 #include <linux/sched.h>
22 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
23 MODULE_DESCRIPTION("Filesystem in Userspace");
24 MODULE_LICENSE("GPL");
26 static struct kmem_cache *fuse_inode_cachep;
27 struct list_head fuse_conn_list;
28 DEFINE_MUTEX(fuse_mutex);
30 #define FUSE_SUPER_MAGIC 0x65735546
32 #define FUSE_DEFAULT_BLKSIZE 512
34 struct fuse_mount_data {
39 unsigned fd_present : 1;
40 unsigned rootmode_present : 1;
41 unsigned user_id_present : 1;
42 unsigned group_id_present : 1;
48 static struct inode *fuse_alloc_inode(struct super_block *sb)
51 struct fuse_inode *fi;
53 inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
57 fi = get_fuse_inode(inode);
62 INIT_LIST_HEAD(&fi->write_files);
63 fi->forget_req = fuse_request_alloc();
64 if (!fi->forget_req) {
65 kmem_cache_free(fuse_inode_cachep, inode);
72 static void fuse_destroy_inode(struct inode *inode)
74 struct fuse_inode *fi = get_fuse_inode(inode);
75 BUG_ON(!list_empty(&fi->write_files));
77 fuse_request_free(fi->forget_req);
78 kmem_cache_free(fuse_inode_cachep, inode);
81 void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
82 unsigned long nodeid, u64 nlookup)
84 struct fuse_forget_in *inarg = &req->misc.forget_in;
85 inarg->nlookup = nlookup;
86 req->in.h.opcode = FUSE_FORGET;
87 req->in.h.nodeid = nodeid;
89 req->in.args[0].size = sizeof(struct fuse_forget_in);
90 req->in.args[0].value = inarg;
91 request_send_noreply(fc, req);
94 static void fuse_clear_inode(struct inode *inode)
96 if (inode->i_sb->s_flags & MS_ACTIVE) {
97 struct fuse_conn *fc = get_fuse_conn(inode);
98 struct fuse_inode *fi = get_fuse_inode(inode);
99 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
100 fi->forget_req = NULL;
104 static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
106 if (*flags & MS_MANDLOCK)
112 static void fuse_truncate(struct address_space *mapping, loff_t offset)
114 /* See vmtruncate() */
115 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
116 truncate_inode_pages(mapping, offset);
117 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
121 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
122 u64 attr_valid, u64 attr_version)
124 struct fuse_conn *fc = get_fuse_conn(inode);
125 struct fuse_inode *fi = get_fuse_inode(inode);
128 spin_lock(&fc->lock);
129 if (attr_version != 0 && fi->attr_version > attr_version) {
130 spin_unlock(&fc->lock);
133 fi->attr_version = ++fc->attr_version;
134 fi->i_time = attr_valid;
136 inode->i_ino = attr->ino;
137 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
138 inode->i_nlink = attr->nlink;
139 inode->i_uid = attr->uid;
140 inode->i_gid = attr->gid;
141 inode->i_blocks = attr->blocks;
142 inode->i_atime.tv_sec = attr->atime;
143 inode->i_atime.tv_nsec = attr->atimensec;
144 inode->i_mtime.tv_sec = attr->mtime;
145 inode->i_mtime.tv_nsec = attr->mtimensec;
146 inode->i_ctime.tv_sec = attr->ctime;
147 inode->i_ctime.tv_nsec = attr->ctimensec;
149 if (attr->blksize != 0)
150 inode->i_blkbits = ilog2(attr->blksize);
152 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
155 * Don't set the sticky bit in i_mode, unless we want the VFS
156 * to check permissions. This prevents failures due to the
157 * check in may_delete().
159 fi->orig_i_mode = inode->i_mode;
160 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
161 inode->i_mode &= ~S_ISVTX;
163 oldsize = inode->i_size;
164 i_size_write(inode, attr->size);
165 spin_unlock(&fc->lock);
167 if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
168 if (attr->size < oldsize)
169 fuse_truncate(inode->i_mapping, attr->size);
170 invalidate_inode_pages2(inode->i_mapping);
174 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
176 inode->i_mode = attr->mode & S_IFMT;
177 inode->i_size = attr->size;
178 if (S_ISREG(inode->i_mode)) {
179 fuse_init_common(inode);
180 fuse_init_file_inode(inode);
181 } else if (S_ISDIR(inode->i_mode))
182 fuse_init_dir(inode);
183 else if (S_ISLNK(inode->i_mode))
184 fuse_init_symlink(inode);
185 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
186 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
187 fuse_init_common(inode);
188 init_special_inode(inode, inode->i_mode,
189 new_decode_dev(attr->rdev));
194 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
196 unsigned long nodeid = *(unsigned long *) _nodeidp;
197 if (get_node_id(inode) == nodeid)
203 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
205 unsigned long nodeid = *(unsigned long *) _nodeidp;
206 get_fuse_inode(inode)->nodeid = nodeid;
210 struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
211 int generation, struct fuse_attr *attr,
212 u64 attr_valid, u64 attr_version)
215 struct fuse_inode *fi;
216 struct fuse_conn *fc = get_fuse_conn_super(sb);
219 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
223 if ((inode->i_state & I_NEW)) {
224 inode->i_flags |= S_NOATIME|S_NOCMTIME;
225 inode->i_generation = generation;
226 inode->i_data.backing_dev_info = &fc->bdi;
227 fuse_init_inode(inode, attr);
228 unlock_new_inode(inode);
229 } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
230 /* Inode has changed type, any I/O on the old should fail */
231 make_bad_inode(inode);
236 fi = get_fuse_inode(inode);
237 spin_lock(&fc->lock);
239 spin_unlock(&fc->lock);
240 fuse_change_attributes(inode, attr, attr_valid, attr_version);
245 static void fuse_umount_begin(struct super_block *sb)
247 fuse_abort_conn(get_fuse_conn_super(sb));
250 static void fuse_send_destroy(struct fuse_conn *fc)
252 struct fuse_req *req = fc->destroy_req;
253 if (req && fc->conn_init) {
254 fc->destroy_req = NULL;
255 req->in.h.opcode = FUSE_DESTROY;
257 request_send(fc, req);
258 fuse_put_request(fc, req);
262 static void fuse_put_super(struct super_block *sb)
264 struct fuse_conn *fc = get_fuse_conn_super(sb);
266 fuse_send_destroy(fc);
267 spin_lock(&fc->lock);
270 spin_unlock(&fc->lock);
271 /* Flush all readers on this fs */
272 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
273 wake_up_all(&fc->waitq);
274 wake_up_all(&fc->blocked_waitq);
275 wake_up_all(&fc->reserved_req_waitq);
276 mutex_lock(&fuse_mutex);
277 list_del(&fc->entry);
278 fuse_ctl_remove_conn(fc);
279 mutex_unlock(&fuse_mutex);
283 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
285 stbuf->f_type = FUSE_SUPER_MAGIC;
286 stbuf->f_bsize = attr->bsize;
287 stbuf->f_frsize = attr->frsize;
288 stbuf->f_blocks = attr->blocks;
289 stbuf->f_bfree = attr->bfree;
290 stbuf->f_bavail = attr->bavail;
291 stbuf->f_files = attr->files;
292 stbuf->f_ffree = attr->ffree;
293 stbuf->f_namelen = attr->namelen;
294 /* fsid is left zero */
297 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
299 struct super_block *sb = dentry->d_sb;
300 struct fuse_conn *fc = get_fuse_conn_super(sb);
301 struct fuse_req *req;
302 struct fuse_statfs_out outarg;
305 if (!fuse_allow_task(fc, current)) {
306 buf->f_type = FUSE_SUPER_MAGIC;
310 req = fuse_get_req(fc);
314 memset(&outarg, 0, sizeof(outarg));
316 req->in.h.opcode = FUSE_STATFS;
317 req->in.h.nodeid = get_node_id(dentry->d_inode);
318 req->out.numargs = 1;
319 req->out.args[0].size =
320 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
321 req->out.args[0].value = &outarg;
322 request_send(fc, req);
323 err = req->out.h.error;
325 convert_fuse_statfs(buf, &outarg.st);
326 fuse_put_request(fc, req);
335 OPT_DEFAULT_PERMISSIONS,
342 static match_table_t tokens = {
344 {OPT_ROOTMODE, "rootmode=%o"},
345 {OPT_USER_ID, "user_id=%u"},
346 {OPT_GROUP_ID, "group_id=%u"},
347 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
348 {OPT_ALLOW_OTHER, "allow_other"},
349 {OPT_MAX_READ, "max_read=%u"},
350 {OPT_BLKSIZE, "blksize=%u"},
354 static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
357 memset(d, 0, sizeof(struct fuse_mount_data));
359 d->blksize = FUSE_DEFAULT_BLKSIZE;
361 while ((p = strsep(&opt, ",")) != NULL) {
364 substring_t args[MAX_OPT_ARGS];
368 token = match_token(p, tokens, args);
371 if (match_int(&args[0], &value))
378 if (match_octal(&args[0], &value))
380 if (!fuse_valid_type(value))
383 d->rootmode_present = 1;
387 if (match_int(&args[0], &value))
390 d->user_id_present = 1;
394 if (match_int(&args[0], &value))
397 d->group_id_present = 1;
400 case OPT_DEFAULT_PERMISSIONS:
401 d->flags |= FUSE_DEFAULT_PERMISSIONS;
404 case OPT_ALLOW_OTHER:
405 d->flags |= FUSE_ALLOW_OTHER;
409 if (match_int(&args[0], &value))
415 if (!is_bdev || match_int(&args[0], &value))
425 if (!d->fd_present || !d->rootmode_present ||
426 !d->user_id_present || !d->group_id_present)
432 static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
434 struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
436 seq_printf(m, ",user_id=%u", fc->user_id);
437 seq_printf(m, ",group_id=%u", fc->group_id);
438 if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
439 seq_puts(m, ",default_permissions");
440 if (fc->flags & FUSE_ALLOW_OTHER)
441 seq_puts(m, ",allow_other");
442 if (fc->max_read != ~0)
443 seq_printf(m, ",max_read=%u", fc->max_read);
444 if (mnt->mnt_sb->s_bdev &&
445 mnt->mnt_sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
446 seq_printf(m, ",blksize=%lu", mnt->mnt_sb->s_blocksize);
450 static struct fuse_conn *new_conn(void)
452 struct fuse_conn *fc;
455 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
457 spin_lock_init(&fc->lock);
458 mutex_init(&fc->inst_mutex);
459 atomic_set(&fc->count, 1);
460 init_waitqueue_head(&fc->waitq);
461 init_waitqueue_head(&fc->blocked_waitq);
462 init_waitqueue_head(&fc->reserved_req_waitq);
463 INIT_LIST_HEAD(&fc->pending);
464 INIT_LIST_HEAD(&fc->processing);
465 INIT_LIST_HEAD(&fc->io);
466 INIT_LIST_HEAD(&fc->interrupts);
467 INIT_LIST_HEAD(&fc->bg_queue);
468 atomic_set(&fc->num_waiting, 0);
469 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
470 fc->bdi.unplug_io_fn = default_unplug_io_fn;
471 err = bdi_init(&fc->bdi);
479 fc->attr_version = 1;
480 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
486 void fuse_conn_put(struct fuse_conn *fc)
488 if (atomic_dec_and_test(&fc->count)) {
490 fuse_request_free(fc->destroy_req);
491 mutex_destroy(&fc->inst_mutex);
492 bdi_destroy(&fc->bdi);
497 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
499 atomic_inc(&fc->count);
503 static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
505 struct fuse_attr attr;
506 memset(&attr, 0, sizeof(attr));
509 attr.ino = FUSE_ROOT_ID;
511 return fuse_iget(sb, 1, 0, &attr, 0, 0);
514 static const struct super_operations fuse_super_operations = {
515 .alloc_inode = fuse_alloc_inode,
516 .destroy_inode = fuse_destroy_inode,
517 .clear_inode = fuse_clear_inode,
518 .drop_inode = generic_delete_inode,
519 .remount_fs = fuse_remount_fs,
520 .put_super = fuse_put_super,
521 .umount_begin = fuse_umount_begin,
522 .statfs = fuse_statfs,
523 .show_options = fuse_show_options,
526 static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
528 struct fuse_init_out *arg = &req->misc.init_out;
530 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
533 unsigned long ra_pages;
535 if (arg->minor >= 6) {
536 ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
537 if (arg->flags & FUSE_ASYNC_READ)
539 if (!(arg->flags & FUSE_POSIX_LOCKS))
541 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
542 fc->atomic_o_trunc = 1;
544 ra_pages = fc->max_read / PAGE_CACHE_SIZE;
548 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
549 fc->minor = arg->minor;
550 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
553 fuse_put_request(fc, req);
555 wake_up_all(&fc->blocked_waitq);
558 static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
560 struct fuse_init_in *arg = &req->misc.init_in;
562 arg->major = FUSE_KERNEL_VERSION;
563 arg->minor = FUSE_KERNEL_MINOR_VERSION;
564 arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
565 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC;
566 req->in.h.opcode = FUSE_INIT;
568 req->in.args[0].size = sizeof(*arg);
569 req->in.args[0].value = arg;
570 req->out.numargs = 1;
571 /* Variable length arguement used for backward compatibility
572 with interface version < 7.5. Rest of init_out is zeroed
573 by do_get_request(), so a short reply is not a problem */
575 req->out.args[0].size = sizeof(struct fuse_init_out);
576 req->out.args[0].value = &req->misc.init_out;
577 req->end = process_init_reply;
578 request_send_background(fc, req);
581 static u64 conn_id(void)
587 static int fuse_fill_super(struct super_block *sb, void *data, int silent)
589 struct fuse_conn *fc;
591 struct fuse_mount_data d;
593 struct dentry *root_dentry;
594 struct fuse_req *init_req;
596 int is_bdev = sb->s_bdev != NULL;
598 if (sb->s_flags & MS_MANDLOCK)
601 if (!parse_fuse_opt((char *) data, &d, is_bdev))
606 if (!sb_set_blocksize(sb, d.blksize))
610 sb->s_blocksize = PAGE_CACHE_SIZE;
611 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
613 sb->s_magic = FUSE_SUPER_MAGIC;
614 sb->s_op = &fuse_super_operations;
615 sb->s_maxbytes = MAX_LFS_FILESIZE;
621 if (file->f_op != &fuse_dev_operations)
629 fc->user_id = d.user_id;
630 fc->group_id = d.group_id;
631 fc->max_read = d.max_read;
633 /* Used by get_root_inode() */
637 root = get_root_inode(sb, d.rootmode);
641 root_dentry = d_alloc_root(root);
647 init_req = fuse_request_alloc();
652 fc->destroy_req = fuse_request_alloc();
653 if (!fc->destroy_req)
657 mutex_lock(&fuse_mutex);
659 if (file->private_data)
663 err = fuse_ctl_add_conn(fc);
667 list_add_tail(&fc->entry, &fuse_conn_list);
668 sb->s_root = root_dentry;
670 file->private_data = fuse_conn_get(fc);
671 mutex_unlock(&fuse_mutex);
673 * atomic_dec_and_test() in fput() provides the necessary
674 * memory barrier for file->private_data to be visible on all
679 fuse_send_init(fc, init_req);
684 mutex_unlock(&fuse_mutex);
685 fuse_request_free(init_req);
694 static int fuse_get_sb(struct file_system_type *fs_type,
695 int flags, const char *dev_name,
696 void *raw_data, struct vfsmount *mnt)
698 return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
701 static struct file_system_type fuse_fs_type = {
702 .owner = THIS_MODULE,
704 .fs_flags = FS_HAS_SUBTYPE,
705 .get_sb = fuse_get_sb,
706 .kill_sb = kill_anon_super,
710 static int fuse_get_sb_blk(struct file_system_type *fs_type,
711 int flags, const char *dev_name,
712 void *raw_data, struct vfsmount *mnt)
714 return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
718 static struct file_system_type fuseblk_fs_type = {
719 .owner = THIS_MODULE,
721 .get_sb = fuse_get_sb_blk,
722 .kill_sb = kill_block_super,
723 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
726 static inline int register_fuseblk(void)
728 return register_filesystem(&fuseblk_fs_type);
731 static inline void unregister_fuseblk(void)
733 unregister_filesystem(&fuseblk_fs_type);
736 static inline int register_fuseblk(void)
741 static inline void unregister_fuseblk(void)
746 static void fuse_inode_init_once(struct kmem_cache *cachep, void *foo)
748 struct inode * inode = foo;
750 inode_init_once(inode);
753 static int __init fuse_fs_init(void)
757 err = register_filesystem(&fuse_fs_type);
761 err = register_fuseblk();
765 fuse_inode_cachep = kmem_cache_create("fuse_inode",
766 sizeof(struct fuse_inode),
767 0, SLAB_HWCACHE_ALIGN,
768 fuse_inode_init_once);
770 if (!fuse_inode_cachep)
776 unregister_fuseblk();
778 unregister_filesystem(&fuse_fs_type);
783 static void fuse_fs_cleanup(void)
785 unregister_filesystem(&fuse_fs_type);
786 unregister_fuseblk();
787 kmem_cache_destroy(fuse_inode_cachep);
790 static struct kobject *fuse_kobj;
791 static struct kobject *connections_kobj;
793 static int fuse_sysfs_init(void)
797 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
803 connections_kobj = kobject_create_and_add("connections", fuse_kobj);
804 if (!connections_kobj) {
806 goto out_fuse_unregister;
812 kobject_put(fuse_kobj);
817 static void fuse_sysfs_cleanup(void)
819 kobject_put(connections_kobj);
820 kobject_put(fuse_kobj);
823 static int __init fuse_init(void)
827 printk("fuse init (API version %i.%i)\n",
828 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
830 INIT_LIST_HEAD(&fuse_conn_list);
831 res = fuse_fs_init();
835 res = fuse_dev_init();
839 res = fuse_sysfs_init();
841 goto err_dev_cleanup;
843 res = fuse_ctl_init();
845 goto err_sysfs_cleanup;
850 fuse_sysfs_cleanup();
859 static void __exit fuse_exit(void)
861 printk(KERN_DEBUG "fuse exit\n");
864 fuse_sysfs_cleanup();
869 module_init(fuse_init);
870 module_exit(fuse_exit);