blob: 3141690558c8aa6029128f7c2d8a5b9fc742696d [file] [log] [blame]
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredid7133112006-04-10 22:54:55 -07003 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07004
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>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070014#include <linux/seq_file.h>
15#include <linux/init.h>
16#include <linux/module.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070017#include <linux/parser.h>
18#include <linux/statfs.h>
Miklos Szeredi9c8ef562006-06-25 05:48:55 -070019#include <linux/random.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040020#include <linux/sched.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070021
22MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
23MODULE_DESCRIPTION("Filesystem in Userspace");
24MODULE_LICENSE("GPL");
25
Christoph Lametere18b8902006-12-06 20:33:20 -080026static struct kmem_cache *fuse_inode_cachep;
Miklos Szeredibafa9652006-06-25 05:48:51 -070027struct list_head fuse_conn_list;
28DEFINE_MUTEX(fuse_mutex);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070029
30#define FUSE_SUPER_MAGIC 0x65735546
31
Miklos Szeredid1875db2008-02-08 04:21:43 -080032#define FUSE_DEFAULT_BLKSIZE 512
33
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070034struct fuse_mount_data {
35 int fd;
36 unsigned rootmode;
37 unsigned user_id;
Miklos Szeredi87729a52005-09-09 13:10:34 -070038 unsigned group_id;
Miklos Szeredi5a533682005-09-09 13:10:34 -070039 unsigned fd_present : 1;
40 unsigned rootmode_present : 1;
41 unsigned user_id_present : 1;
42 unsigned group_id_present : 1;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -070043 unsigned flags;
Miklos Szeredidb50b962005-09-09 13:10:33 -070044 unsigned max_read;
Miklos Szeredid8091612006-12-06 20:35:48 -080045 unsigned blksize;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070046};
47
48static struct inode *fuse_alloc_inode(struct super_block *sb)
49{
50 struct inode *inode;
51 struct fuse_inode *fi;
52
Christoph Lametere94b1762006-12-06 20:33:17 -080053 inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070054 if (!inode)
55 return NULL;
56
57 fi = get_fuse_inode(inode);
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070058 fi->i_time = 0;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070059 fi->nodeid = 0;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070060 fi->nlookup = 0;
John Muirfbee36b2007-11-28 16:22:02 -080061 fi->attr_version = 0;
Miklos Szeredi3be5a522008-04-30 00:54:41 -070062 fi->writectr = 0;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -070063 INIT_LIST_HEAD(&fi->write_files);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070064 INIT_LIST_HEAD(&fi->queued_writes);
65 INIT_LIST_HEAD(&fi->writepages);
66 init_waitqueue_head(&fi->page_waitq);
Miklos Szeredie5e55582005-09-09 13:10:28 -070067 fi->forget_req = fuse_request_alloc();
68 if (!fi->forget_req) {
69 kmem_cache_free(fuse_inode_cachep, inode);
70 return NULL;
71 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070072
73 return inode;
74}
75
76static void fuse_destroy_inode(struct inode *inode)
77{
Miklos Szeredie5e55582005-09-09 13:10:28 -070078 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -070079 BUG_ON(!list_empty(&fi->write_files));
Miklos Szeredi3be5a522008-04-30 00:54:41 -070080 BUG_ON(!list_empty(&fi->queued_writes));
Miklos Szeredie5e55582005-09-09 13:10:28 -070081 if (fi->forget_req)
82 fuse_request_free(fi->forget_req);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070083 kmem_cache_free(fuse_inode_cachep, inode);
84}
85
Miklos Szeredie5e55582005-09-09 13:10:28 -070086void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
Miklos Szeredib48badf2008-04-30 00:54:44 -070087 u64 nodeid, u64 nlookup)
Miklos Szeredie5e55582005-09-09 13:10:28 -070088{
89 struct fuse_forget_in *inarg = &req->misc.forget_in;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070090 inarg->nlookup = nlookup;
Miklos Szeredie5e55582005-09-09 13:10:28 -070091 req->in.h.opcode = FUSE_FORGET;
92 req->in.h.nodeid = nodeid;
93 req->in.numargs = 1;
94 req->in.args[0].size = sizeof(struct fuse_forget_in);
95 req->in.args[0].value = inarg;
96 request_send_noreply(fc, req);
97}
98
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070099static void fuse_clear_inode(struct inode *inode)
100{
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700101 if (inode->i_sb->s_flags & MS_ACTIVE) {
102 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700103 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700104 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700105 fi->forget_req = NULL;
106 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700107}
108
Miklos Szeredi71421252006-06-25 05:48:52 -0700109static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
110{
111 if (*flags & MS_MANDLOCK)
112 return -EINVAL;
113
114 return 0;
115}
116
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700117void fuse_truncate(struct address_space *mapping, loff_t offset)
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700118{
119 /* See vmtruncate() */
120 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
121 truncate_inode_pages(mapping, offset);
122 unmap_mapping_range(mapping, offset + PAGE_SIZE - 1, 0, 1);
123}
124
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700125void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
126 u64 attr_valid)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700127{
Miklos Szeredi9ffbb912006-10-17 00:10:06 -0700128 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szerediebc14c42007-10-16 23:31:03 -0700129 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700130
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700131 fi->attr_version = ++fc->attr_version;
132 fi->i_time = attr_valid;
133
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700134 inode->i_ino = attr->ino;
Miklos Szerediebc14c42007-10-16 23:31:03 -0700135 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700136 inode->i_nlink = attr->nlink;
137 inode->i_uid = attr->uid;
138 inode->i_gid = attr->gid;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700139 inode->i_blocks = attr->blocks;
140 inode->i_atime.tv_sec = attr->atime;
141 inode->i_atime.tv_nsec = attr->atimensec;
142 inode->i_mtime.tv_sec = attr->mtime;
143 inode->i_mtime.tv_nsec = attr->mtimensec;
144 inode->i_ctime.tv_sec = attr->ctime;
145 inode->i_ctime.tv_nsec = attr->ctimensec;
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700146
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700147 if (attr->blksize != 0)
148 inode->i_blkbits = ilog2(attr->blksize);
149 else
150 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
151
Miklos Szerediebc14c42007-10-16 23:31:03 -0700152 /*
153 * Don't set the sticky bit in i_mode, unless we want the VFS
154 * to check permissions. This prevents failures due to the
155 * check in may_delete().
156 */
157 fi->orig_i_mode = inode->i_mode;
158 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
159 inode->i_mode &= ~S_ISVTX;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700160}
161
162void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
163 u64 attr_valid, u64 attr_version)
164{
165 struct fuse_conn *fc = get_fuse_conn(inode);
166 struct fuse_inode *fi = get_fuse_inode(inode);
167 loff_t oldsize;
168
169 spin_lock(&fc->lock);
170 if (attr_version != 0 && fi->attr_version > attr_version) {
171 spin_unlock(&fc->lock);
172 return;
173 }
174
175 fuse_change_attributes_common(inode, attr, attr_valid);
Miklos Szerediebc14c42007-10-16 23:31:03 -0700176
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700177 oldsize = inode->i_size;
178 i_size_write(inode, attr->size);
179 spin_unlock(&fc->lock);
180
181 if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
182 if (attr->size < oldsize)
183 fuse_truncate(inode->i_mapping, attr->size);
Miklos Szeredib1009972007-10-16 23:31:01 -0700184 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700185 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700186}
187
188static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
189{
190 inode->i_mode = attr->mode & S_IFMT;
Miklos Szeredi9ffbb912006-10-17 00:10:06 -0700191 inode->i_size = attr->size;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700192 if (S_ISREG(inode->i_mode)) {
193 fuse_init_common(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700194 fuse_init_file_inode(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700195 } else if (S_ISDIR(inode->i_mode))
196 fuse_init_dir(inode);
197 else if (S_ISLNK(inode->i_mode))
198 fuse_init_symlink(inode);
199 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
200 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
201 fuse_init_common(inode);
202 init_special_inode(inode, inode->i_mode,
203 new_decode_dev(attr->rdev));
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800204 } else
205 BUG();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700206}
207
208static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
209{
Miklos Szeredib48badf2008-04-30 00:54:44 -0700210 u64 nodeid = *(u64 *) _nodeidp;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700211 if (get_node_id(inode) == nodeid)
212 return 1;
213 else
214 return 0;
215}
216
217static int fuse_inode_set(struct inode *inode, void *_nodeidp)
218{
Miklos Szeredib48badf2008-04-30 00:54:44 -0700219 u64 nodeid = *(u64 *) _nodeidp;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700220 get_fuse_inode(inode)->nodeid = nodeid;
221 return 0;
222}
223
Miklos Szeredib48badf2008-04-30 00:54:44 -0700224struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700225 int generation, struct fuse_attr *attr,
226 u64 attr_valid, u64 attr_version)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700227{
228 struct inode *inode;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700229 struct fuse_inode *fi;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700230 struct fuse_conn *fc = get_fuse_conn_super(sb);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700231
232 retry:
233 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
234 if (!inode)
235 return NULL;
236
237 if ((inode->i_state & I_NEW)) {
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700238 inode->i_flags |= S_NOATIME|S_NOCMTIME;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700239 inode->i_generation = generation;
240 inode->i_data.backing_dev_info = &fc->bdi;
241 fuse_init_inode(inode, attr);
242 unlock_new_inode(inode);
243 } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700244 /* Inode has changed type, any I/O on the old should fail */
245 make_bad_inode(inode);
246 iput(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700247 goto retry;
248 }
249
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700250 fi = get_fuse_inode(inode);
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700251 spin_lock(&fc->lock);
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700252 fi->nlookup ++;
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700253 spin_unlock(&fc->lock);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700254 fuse_change_attributes(inode, attr, attr_valid, attr_version);
255
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700256 return inode;
257}
258
Al Viro42faad92008-04-24 07:21:56 -0400259static void fuse_umount_begin(struct super_block *sb)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800260{
Al Viro42faad92008-04-24 07:21:56 -0400261 fuse_abort_conn(get_fuse_conn_super(sb));
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800262}
263
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800264static void fuse_send_destroy(struct fuse_conn *fc)
265{
266 struct fuse_req *req = fc->destroy_req;
267 if (req && fc->conn_init) {
268 fc->destroy_req = NULL;
269 req->in.h.opcode = FUSE_DESTROY;
270 req->force = 1;
271 request_send(fc, req);
272 fuse_put_request(fc, req);
273 }
274}
275
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700276static void fuse_put_super(struct super_block *sb)
277{
278 struct fuse_conn *fc = get_fuse_conn_super(sb);
279
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800280 fuse_send_destroy(fc);
Miklos Szeredid7133112006-04-10 22:54:55 -0700281 spin_lock(&fc->lock);
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -0800282 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700283 fc->blocked = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -0700284 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700285 /* Flush all readers on this fs */
Jeff Dike385a17b2006-04-10 22:54:52 -0700286 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700287 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700288 wake_up_all(&fc->blocked_waitq);
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700289 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700290 mutex_lock(&fuse_mutex);
291 list_del(&fc->entry);
292 fuse_ctl_remove_conn(fc);
293 mutex_unlock(&fuse_mutex);
294 fuse_conn_put(fc);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700295}
296
Miklos Szeredie5e55582005-09-09 13:10:28 -0700297static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
298{
299 stbuf->f_type = FUSE_SUPER_MAGIC;
300 stbuf->f_bsize = attr->bsize;
Miklos Szeredide5f1202006-01-06 00:19:37 -0800301 stbuf->f_frsize = attr->frsize;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700302 stbuf->f_blocks = attr->blocks;
303 stbuf->f_bfree = attr->bfree;
304 stbuf->f_bavail = attr->bavail;
305 stbuf->f_files = attr->files;
306 stbuf->f_ffree = attr->ffree;
307 stbuf->f_namelen = attr->namelen;
308 /* fsid is left zero */
309}
310
David Howells726c3342006-06-23 02:02:58 -0700311static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700312{
David Howells726c3342006-06-23 02:02:58 -0700313 struct super_block *sb = dentry->d_sb;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700314 struct fuse_conn *fc = get_fuse_conn_super(sb);
315 struct fuse_req *req;
316 struct fuse_statfs_out outarg;
317 int err;
318
Miklos Szeredie57ac682007-10-18 03:06:58 -0700319 if (!fuse_allow_task(fc, current)) {
320 buf->f_type = FUSE_SUPER_MAGIC;
321 return 0;
322 }
323
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700324 req = fuse_get_req(fc);
325 if (IS_ERR(req))
326 return PTR_ERR(req);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700327
Miklos Szeredide5f1202006-01-06 00:19:37 -0800328 memset(&outarg, 0, sizeof(outarg));
Miklos Szeredie5e55582005-09-09 13:10:28 -0700329 req->in.numargs = 0;
330 req->in.h.opcode = FUSE_STATFS;
Miklos Szeredi5b35e8e2006-09-29 01:59:34 -0700331 req->in.h.nodeid = get_node_id(dentry->d_inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700332 req->out.numargs = 1;
Miklos Szeredide5f1202006-01-06 00:19:37 -0800333 req->out.args[0].size =
334 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700335 req->out.args[0].value = &outarg;
336 request_send(fc, req);
337 err = req->out.h.error;
338 if (!err)
339 convert_fuse_statfs(buf, &outarg.st);
340 fuse_put_request(fc, req);
341 return err;
342}
343
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700344enum {
345 OPT_FD,
346 OPT_ROOTMODE,
347 OPT_USER_ID,
Miklos Szeredi87729a52005-09-09 13:10:34 -0700348 OPT_GROUP_ID,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700349 OPT_DEFAULT_PERMISSIONS,
350 OPT_ALLOW_OTHER,
Miklos Szeredidb50b962005-09-09 13:10:33 -0700351 OPT_MAX_READ,
Miklos Szeredid8091612006-12-06 20:35:48 -0800352 OPT_BLKSIZE,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700353 OPT_ERR
354};
355
356static match_table_t tokens = {
357 {OPT_FD, "fd=%u"},
358 {OPT_ROOTMODE, "rootmode=%o"},
359 {OPT_USER_ID, "user_id=%u"},
Miklos Szeredi87729a52005-09-09 13:10:34 -0700360 {OPT_GROUP_ID, "group_id=%u"},
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700361 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
362 {OPT_ALLOW_OTHER, "allow_other"},
Miklos Szeredidb50b962005-09-09 13:10:33 -0700363 {OPT_MAX_READ, "max_read=%u"},
Miklos Szeredid8091612006-12-06 20:35:48 -0800364 {OPT_BLKSIZE, "blksize=%u"},
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700365 {OPT_ERR, NULL}
366};
367
Miklos Szeredid8091612006-12-06 20:35:48 -0800368static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700369{
370 char *p;
371 memset(d, 0, sizeof(struct fuse_mount_data));
Miklos Szeredidb50b962005-09-09 13:10:33 -0700372 d->max_read = ~0;
Miklos Szeredid1875db2008-02-08 04:21:43 -0800373 d->blksize = FUSE_DEFAULT_BLKSIZE;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700374
375 while ((p = strsep(&opt, ",")) != NULL) {
376 int token;
377 int value;
378 substring_t args[MAX_OPT_ARGS];
379 if (!*p)
380 continue;
381
382 token = match_token(p, tokens, args);
383 switch (token) {
384 case OPT_FD:
385 if (match_int(&args[0], &value))
386 return 0;
387 d->fd = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700388 d->fd_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700389 break;
390
391 case OPT_ROOTMODE:
392 if (match_octal(&args[0], &value))
393 return 0;
Timo Savolaa5bfffac2007-04-08 16:04:00 -0700394 if (!fuse_valid_type(value))
395 return 0;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700396 d->rootmode = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700397 d->rootmode_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700398 break;
399
400 case OPT_USER_ID:
401 if (match_int(&args[0], &value))
402 return 0;
403 d->user_id = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700404 d->user_id_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700405 break;
406
Miklos Szeredi87729a52005-09-09 13:10:34 -0700407 case OPT_GROUP_ID:
408 if (match_int(&args[0], &value))
409 return 0;
410 d->group_id = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700411 d->group_id_present = 1;
Miklos Szeredi87729a52005-09-09 13:10:34 -0700412 break;
413
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700414 case OPT_DEFAULT_PERMISSIONS:
415 d->flags |= FUSE_DEFAULT_PERMISSIONS;
416 break;
417
418 case OPT_ALLOW_OTHER:
419 d->flags |= FUSE_ALLOW_OTHER;
420 break;
421
Miklos Szeredidb50b962005-09-09 13:10:33 -0700422 case OPT_MAX_READ:
423 if (match_int(&args[0], &value))
424 return 0;
425 d->max_read = value;
426 break;
427
Miklos Szeredid8091612006-12-06 20:35:48 -0800428 case OPT_BLKSIZE:
429 if (!is_bdev || match_int(&args[0], &value))
430 return 0;
431 d->blksize = value;
432 break;
433
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700434 default:
435 return 0;
436 }
437 }
Miklos Szeredi5a533682005-09-09 13:10:34 -0700438
439 if (!d->fd_present || !d->rootmode_present ||
440 !d->user_id_present || !d->group_id_present)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700441 return 0;
442
443 return 1;
444}
445
446static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
447{
448 struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
449
450 seq_printf(m, ",user_id=%u", fc->user_id);
Miklos Szeredi87729a52005-09-09 13:10:34 -0700451 seq_printf(m, ",group_id=%u", fc->group_id);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700452 if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
453 seq_puts(m, ",default_permissions");
454 if (fc->flags & FUSE_ALLOW_OTHER)
455 seq_puts(m, ",allow_other");
Miklos Szeredidb50b962005-09-09 13:10:33 -0700456 if (fc->max_read != ~0)
457 seq_printf(m, ",max_read=%u", fc->max_read);
Miklos Szeredid1875db2008-02-08 04:21:43 -0800458 if (mnt->mnt_sb->s_bdev &&
459 mnt->mnt_sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
460 seq_printf(m, ",blksize=%lu", mnt->mnt_sb->s_blocksize);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700461 return 0;
462}
463
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700464static struct fuse_conn *new_conn(struct super_block *sb)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700465{
466 struct fuse_conn *fc;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700467 int err;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700468
Miklos Szeredi6383bda2006-01-16 22:14:29 -0800469 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
Miklos Szeredif543f252006-01-16 22:14:35 -0800470 if (fc) {
Miklos Szeredid7133112006-04-10 22:54:55 -0700471 spin_lock_init(&fc->lock);
Miklos Szeredid2a85162006-10-17 00:10:11 -0700472 mutex_init(&fc->inst_mutex);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700473 atomic_set(&fc->count, 1);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700474 init_waitqueue_head(&fc->waitq);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700475 init_waitqueue_head(&fc->blocked_waitq);
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700476 init_waitqueue_head(&fc->reserved_req_waitq);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700477 INIT_LIST_HEAD(&fc->pending);
478 INIT_LIST_HEAD(&fc->processing);
Miklos Szeredid77a1d52006-01-16 22:14:31 -0800479 INIT_LIST_HEAD(&fc->io);
Miklos Szeredia4d27e72006-06-25 05:48:54 -0700480 INIT_LIST_HEAD(&fc->interrupts);
Miklos Szeredid12def12008-02-06 01:38:39 -0800481 INIT_LIST_HEAD(&fc->bg_queue);
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800482 atomic_set(&fc->num_waiting, 0);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700483 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
484 fc->bdi.unplug_io_fn = default_unplug_io_fn;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700485 /* fuse does it's own writeback accounting */
486 fc->bdi.capabilities = BDI_CAP_NO_ACCT_WB;
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700487 fc->dev = sb->s_dev;
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700488 err = bdi_init(&fc->bdi);
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700489 if (err)
490 goto error_kfree;
Miklos Szeredi03fb0bc2008-05-23 13:04:19 -0700491 if (sb->s_bdev) {
492 err = bdi_register(&fc->bdi, NULL, "%u:%u-fuseblk",
493 MAJOR(fc->dev), MINOR(fc->dev));
494 } else {
495 err = bdi_register_dev(&fc->bdi, fc->dev);
496 }
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700497 if (err)
498 goto error_bdi_destroy;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700499 /*
500 * For a single fuse filesystem use max 1% of dirty +
501 * writeback threshold.
502 *
503 * This gives about 1M of write buffer for memory maps on a
504 * machine with 1G and 10% dirty_ratio, which should be more
505 * than enough.
506 *
507 * Privileged users can raise it by writing to
508 *
509 * /sys/class/bdi/<bdi>/max_ratio
510 */
511 bdi_set_max_ratio(&fc->bdi, 1);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700512 fc->reqctr = 0;
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700513 fc->blocked = 1;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700514 fc->attr_version = 1;
Miklos Szeredi9c8ef562006-06-25 05:48:55 -0700515 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700516 }
517 return fc;
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700518
519error_bdi_destroy:
520 bdi_destroy(&fc->bdi);
521error_kfree:
522 mutex_destroy(&fc->inst_mutex);
523 kfree(fc);
524 return NULL;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700525}
526
Miklos Szeredibafa9652006-06-25 05:48:51 -0700527void fuse_conn_put(struct fuse_conn *fc)
528{
Miklos Szeredid2a85162006-10-17 00:10:11 -0700529 if (atomic_dec_and_test(&fc->count)) {
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800530 if (fc->destroy_req)
531 fuse_request_free(fc->destroy_req);
Miklos Szeredid2a85162006-10-17 00:10:11 -0700532 mutex_destroy(&fc->inst_mutex);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700533 bdi_destroy(&fc->bdi);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700534 kfree(fc);
Miklos Szeredid2a85162006-10-17 00:10:11 -0700535 }
Miklos Szeredibafa9652006-06-25 05:48:51 -0700536}
537
538struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
539{
540 atomic_inc(&fc->count);
541 return fc;
542}
543
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700544static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
545{
546 struct fuse_attr attr;
547 memset(&attr, 0, sizeof(attr));
548
549 attr.mode = mode;
550 attr.ino = FUSE_ROOT_ID;
Miklos Szeredi074406f2007-10-16 23:31:02 -0700551 attr.nlink = 1;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700552 return fuse_iget(sb, 1, 0, &attr, 0, 0);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700553}
554
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800555static const struct super_operations fuse_super_operations = {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700556 .alloc_inode = fuse_alloc_inode,
557 .destroy_inode = fuse_destroy_inode,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700558 .clear_inode = fuse_clear_inode,
Miklos Szerediead5f0b2007-05-23 13:57:54 -0700559 .drop_inode = generic_delete_inode,
Miklos Szeredi71421252006-06-25 05:48:52 -0700560 .remount_fs = fuse_remount_fs,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700561 .put_super = fuse_put_super,
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800562 .umount_begin = fuse_umount_begin,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700563 .statfs = fuse_statfs,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700564 .show_options = fuse_show_options,
565};
566
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800567static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
568{
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800569 struct fuse_init_out *arg = &req->misc.init_out;
570
571 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
572 fc->conn_error = 1;
573 else {
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800574 unsigned long ra_pages;
575
576 if (arg->minor >= 6) {
577 ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
578 if (arg->flags & FUSE_ASYNC_READ)
579 fc->async_read = 1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700580 if (!(arg->flags & FUSE_POSIX_LOCKS))
581 fc->no_lock = 1;
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700582 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
583 fc->atomic_o_trunc = 1;
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700584 if (arg->flags & FUSE_BIG_WRITES)
585 fc->big_writes = 1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700586 } else {
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800587 ra_pages = fc->max_read / PAGE_CACHE_SIZE;
Miklos Szeredi71421252006-06-25 05:48:52 -0700588 fc->no_lock = 1;
589 }
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800590
591 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800592 fc->minor = arg->minor;
593 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
Miklos Szeredif948d562008-06-17 18:05:40 +0200594 fc->max_write = max_t(unsigned, 4096, fc->max_write);
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800595 fc->conn_init = 1;
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800596 }
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800597 fuse_put_request(fc, req);
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700598 fc->blocked = 0;
599 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800600}
601
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700602static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800603{
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800604 struct fuse_init_in *arg = &req->misc.init_in;
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800605
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800606 arg->major = FUSE_KERNEL_VERSION;
607 arg->minor = FUSE_KERNEL_MINOR_VERSION;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800608 arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700609 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
610 FUSE_BIG_WRITES;
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800611 req->in.h.opcode = FUSE_INIT;
612 req->in.numargs = 1;
613 req->in.args[0].size = sizeof(*arg);
614 req->in.args[0].value = arg;
615 req->out.numargs = 1;
616 /* Variable length arguement used for backward compatibility
617 with interface version < 7.5. Rest of init_out is zeroed
618 by do_get_request(), so a short reply is not a problem */
619 req->out.argvar = 1;
620 req->out.args[0].size = sizeof(struct fuse_init_out);
621 req->out.args[0].value = &req->misc.init_out;
622 req->end = process_init_reply;
623 request_send_background(fc, req);
624}
625
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700626static int fuse_fill_super(struct super_block *sb, void *data, int silent)
627{
628 struct fuse_conn *fc;
629 struct inode *root;
630 struct fuse_mount_data d;
631 struct file *file;
Miklos Szeredif543f252006-01-16 22:14:35 -0800632 struct dentry *root_dentry;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700633 struct fuse_req *init_req;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700634 int err;
Miklos Szeredid8091612006-12-06 20:35:48 -0800635 int is_bdev = sb->s_bdev != NULL;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700636
Miklos Szeredi71421252006-06-25 05:48:52 -0700637 if (sb->s_flags & MS_MANDLOCK)
638 return -EINVAL;
639
Miklos Szeredid8091612006-12-06 20:35:48 -0800640 if (!parse_fuse_opt((char *) data, &d, is_bdev))
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700641 return -EINVAL;
642
Miklos Szeredid8091612006-12-06 20:35:48 -0800643 if (is_bdev) {
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800644#ifdef CONFIG_BLOCK
Miklos Szeredid8091612006-12-06 20:35:48 -0800645 if (!sb_set_blocksize(sb, d.blksize))
646 return -EINVAL;
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800647#endif
Miklos Szeredid8091612006-12-06 20:35:48 -0800648 } else {
649 sb->s_blocksize = PAGE_CACHE_SIZE;
650 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
651 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700652 sb->s_magic = FUSE_SUPER_MAGIC;
653 sb->s_op = &fuse_super_operations;
654 sb->s_maxbytes = MAX_LFS_FILESIZE;
655
656 file = fget(d.fd);
657 if (!file)
658 return -EINVAL;
659
Miklos Szeredi0720b312006-04-10 22:54:55 -0700660 if (file->f_op != &fuse_dev_operations)
661 return -EINVAL;
662
Miklos Szeredib6f2fcb2008-04-30 00:54:34 -0700663 fc = new_conn(sb);
Miklos Szeredi0720b312006-04-10 22:54:55 -0700664 if (!fc)
665 return -ENOMEM;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700666
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700667 fc->flags = d.flags;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700668 fc->user_id = d.user_id;
Miklos Szeredi87729a52005-09-09 13:10:34 -0700669 fc->group_id = d.group_id;
Miklos Szeredif948d562008-06-17 18:05:40 +0200670 fc->max_read = max_t(unsigned, 4096, d.max_read);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700671
Miklos Szeredif543f252006-01-16 22:14:35 -0800672 /* Used by get_root_inode() */
673 sb->s_fs_info = fc;
674
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700675 err = -ENOMEM;
676 root = get_root_inode(sb, d.rootmode);
Miklos Szeredif543f252006-01-16 22:14:35 -0800677 if (!root)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700678 goto err;
679
Miklos Szeredif543f252006-01-16 22:14:35 -0800680 root_dentry = d_alloc_root(root);
681 if (!root_dentry) {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700682 iput(root);
683 goto err;
684 }
Miklos Szeredif543f252006-01-16 22:14:35 -0800685
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700686 init_req = fuse_request_alloc();
687 if (!init_req)
688 goto err_put_root;
689
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800690 if (is_bdev) {
691 fc->destroy_req = fuse_request_alloc();
692 if (!fc->destroy_req)
693 goto err_put_root;
694 }
695
Miklos Szeredibafa9652006-06-25 05:48:51 -0700696 mutex_lock(&fuse_mutex);
Miklos Szeredi8aa09a52006-04-26 10:49:16 +0200697 err = -EINVAL;
698 if (file->private_data)
Miklos Szeredibafa9652006-06-25 05:48:51 -0700699 goto err_unlock;
Miklos Szeredi8aa09a52006-04-26 10:49:16 +0200700
Miklos Szeredibafa9652006-06-25 05:48:51 -0700701 err = fuse_ctl_add_conn(fc);
702 if (err)
703 goto err_unlock;
704
705 list_add_tail(&fc->entry, &fuse_conn_list);
Miklos Szeredif543f252006-01-16 22:14:35 -0800706 sb->s_root = root_dentry;
Miklos Szeredif543f252006-01-16 22:14:35 -0800707 fc->connected = 1;
Miklos Szeredibafa9652006-06-25 05:48:51 -0700708 file->private_data = fuse_conn_get(fc);
709 mutex_unlock(&fuse_mutex);
Miklos Szeredi0720b312006-04-10 22:54:55 -0700710 /*
711 * atomic_dec_and_test() in fput() provides the necessary
712 * memory barrier for file->private_data to be visible on all
713 * CPUs after this
714 */
715 fput(file);
Miklos Szeredif543f252006-01-16 22:14:35 -0800716
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700717 fuse_send_init(fc, init_req);
Miklos Szeredif543f252006-01-16 22:14:35 -0800718
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700719 return 0;
720
Miklos Szeredibafa9652006-06-25 05:48:51 -0700721 err_unlock:
722 mutex_unlock(&fuse_mutex);
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700723 fuse_request_free(init_req);
Miklos Szeredif543f252006-01-16 22:14:35 -0800724 err_put_root:
725 dput(root_dentry);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700726 err:
Miklos Szeredi0720b312006-04-10 22:54:55 -0700727 fput(file);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700728 fuse_conn_put(fc);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700729 return err;
730}
731
David Howells454e2392006-06-23 02:02:57 -0700732static int fuse_get_sb(struct file_system_type *fs_type,
733 int flags, const char *dev_name,
734 void *raw_data, struct vfsmount *mnt)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700735{
David Howells454e2392006-06-23 02:02:57 -0700736 return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700737}
738
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800739static struct file_system_type fuse_fs_type = {
740 .owner = THIS_MODULE,
741 .name = "fuse",
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -0700742 .fs_flags = FS_HAS_SUBTYPE,
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800743 .get_sb = fuse_get_sb,
744 .kill_sb = kill_anon_super,
745};
746
747#ifdef CONFIG_BLOCK
Miklos Szeredid6392f82006-12-06 20:35:44 -0800748static int fuse_get_sb_blk(struct file_system_type *fs_type,
749 int flags, const char *dev_name,
750 void *raw_data, struct vfsmount *mnt)
751{
752 return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
753 mnt);
754}
755
Miklos Szeredid6392f82006-12-06 20:35:44 -0800756static struct file_system_type fuseblk_fs_type = {
757 .owner = THIS_MODULE,
758 .name = "fuseblk",
759 .get_sb = fuse_get_sb_blk,
760 .kill_sb = kill_block_super,
Alexey Dobriyanedad01e2007-06-16 10:16:05 -0700761 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
Miklos Szeredid6392f82006-12-06 20:35:44 -0800762};
763
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800764static inline int register_fuseblk(void)
765{
766 return register_filesystem(&fuseblk_fs_type);
767}
768
769static inline void unregister_fuseblk(void)
770{
771 unregister_filesystem(&fuseblk_fs_type);
772}
773#else
774static inline int register_fuseblk(void)
775{
776 return 0;
777}
778
779static inline void unregister_fuseblk(void)
780{
781}
782#endif
783
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -0700784static void fuse_inode_init_once(struct kmem_cache *cachep, void *foo)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700785{
786 struct inode * inode = foo;
787
Christoph Lametera35afb82007-05-16 22:10:57 -0700788 inode_init_once(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700789}
790
791static int __init fuse_fs_init(void)
792{
793 int err;
794
795 err = register_filesystem(&fuse_fs_type);
796 if (err)
Miklos Szeredid6392f82006-12-06 20:35:44 -0800797 goto out;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700798
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800799 err = register_fuseblk();
Miklos Szeredid6392f82006-12-06 20:35:44 -0800800 if (err)
801 goto out_unreg;
802
803 fuse_inode_cachep = kmem_cache_create("fuse_inode",
804 sizeof(struct fuse_inode),
805 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +0900806 fuse_inode_init_once);
Miklos Szeredid6392f82006-12-06 20:35:44 -0800807 err = -ENOMEM;
808 if (!fuse_inode_cachep)
809 goto out_unreg2;
810
811 return 0;
812
813 out_unreg2:
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800814 unregister_fuseblk();
Miklos Szeredid6392f82006-12-06 20:35:44 -0800815 out_unreg:
816 unregister_filesystem(&fuse_fs_type);
817 out:
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700818 return err;
819}
820
821static void fuse_fs_cleanup(void)
822{
823 unregister_filesystem(&fuse_fs_type);
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800824 unregister_fuseblk();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700825 kmem_cache_destroy(fuse_inode_cachep);
826}
827
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +0100828static struct kobject *fuse_kobj;
829static struct kobject *connections_kobj;
830
Miklos Szeredif543f252006-01-16 22:14:35 -0800831static int fuse_sysfs_init(void)
832{
833 int err;
834
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -0600835 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +0100836 if (!fuse_kobj) {
837 err = -ENOMEM;
Miklos Szeredif543f252006-01-16 22:14:35 -0800838 goto out_err;
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +0100839 }
Miklos Szeredif543f252006-01-16 22:14:35 -0800840
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +0100841 connections_kobj = kobject_create_and_add("connections", fuse_kobj);
842 if (!connections_kobj) {
843 err = -ENOMEM;
Miklos Szeredif543f252006-01-16 22:14:35 -0800844 goto out_fuse_unregister;
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +0100845 }
Miklos Szeredif543f252006-01-16 22:14:35 -0800846
847 return 0;
848
849 out_fuse_unregister:
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800850 kobject_put(fuse_kobj);
Miklos Szeredif543f252006-01-16 22:14:35 -0800851 out_err:
852 return err;
853}
854
855static void fuse_sysfs_cleanup(void)
856{
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -0800857 kobject_put(connections_kobj);
858 kobject_put(fuse_kobj);
Miklos Szeredif543f252006-01-16 22:14:35 -0800859}
860
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700861static int __init fuse_init(void)
862{
863 int res;
864
865 printk("fuse init (API version %i.%i)\n",
866 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
867
Miklos Szeredibafa9652006-06-25 05:48:51 -0700868 INIT_LIST_HEAD(&fuse_conn_list);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700869 res = fuse_fs_init();
870 if (res)
871 goto err;
872
Miklos Szeredi334f4852005-09-09 13:10:27 -0700873 res = fuse_dev_init();
874 if (res)
875 goto err_fs_cleanup;
876
Miklos Szeredif543f252006-01-16 22:14:35 -0800877 res = fuse_sysfs_init();
878 if (res)
879 goto err_dev_cleanup;
880
Miklos Szeredibafa9652006-06-25 05:48:51 -0700881 res = fuse_ctl_init();
882 if (res)
883 goto err_sysfs_cleanup;
884
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700885 return 0;
886
Miklos Szeredibafa9652006-06-25 05:48:51 -0700887 err_sysfs_cleanup:
888 fuse_sysfs_cleanup();
Miklos Szeredif543f252006-01-16 22:14:35 -0800889 err_dev_cleanup:
890 fuse_dev_cleanup();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700891 err_fs_cleanup:
892 fuse_fs_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700893 err:
894 return res;
895}
896
897static void __exit fuse_exit(void)
898{
899 printk(KERN_DEBUG "fuse exit\n");
900
Miklos Szeredibafa9652006-06-25 05:48:51 -0700901 fuse_ctl_cleanup();
Miklos Szeredif543f252006-01-16 22:14:35 -0800902 fuse_sysfs_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700903 fuse_fs_cleanup();
Miklos Szeredi334f4852005-09-09 13:10:27 -0700904 fuse_dev_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700905}
906
907module_init(fuse_init);
908module_exit(fuse_exit);