blob: 7ba4d351da6541ce93d873aa797d18335eac5d47 [file] [log] [blame]
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001/*
2 FUSE: Filesystem in Userspace
Miklos Szeredi1729a162008-11-26 12:03:54 +01003 Copyright (C) 2001-2008 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>
Csaba Henk487ea5a2009-08-26 19:17:22 +020017#include <linux/moduleparam.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070018#include <linux/parser.h>
19#include <linux/statfs.h>
Miklos Szeredi9c8ef562006-06-25 05:48:55 -070020#include <linux/random.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040021#include <linux/sched.h>
Miklos Szeredidbd561d2008-07-25 01:49:00 -070022#include <linux/exportfs.h>
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070023
24MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
25MODULE_DESCRIPTION("Filesystem in Userspace");
26MODULE_LICENSE("GPL");
27
Christoph Lametere18b8902006-12-06 20:33:20 -080028static struct kmem_cache *fuse_inode_cachep;
Miklos Szeredibafa9652006-06-25 05:48:51 -070029struct list_head fuse_conn_list;
30DEFINE_MUTEX(fuse_mutex);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070031
Csaba Henk487ea5a2009-08-26 19:17:22 +020032static int set_global_limit(const char *val, struct kernel_param *kp);
33
Csaba Henk79a9d992009-08-26 19:18:24 +020034unsigned max_user_bgreq;
Csaba Henk487ea5a2009-08-26 19:17:22 +020035module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
36 &max_user_bgreq, 0644);
37__MODULE_PARM_TYPE(max_user_bgreq, "uint");
38MODULE_PARM_DESC(max_user_bgreq,
39 "Global limit for the maximum number of backgrounded requests an "
40 "unprivileged user can set");
41
Csaba Henk79a9d992009-08-26 19:18:24 +020042unsigned max_user_congthresh;
Csaba Henk487ea5a2009-08-26 19:17:22 +020043module_param_call(max_user_congthresh, set_global_limit, param_get_uint,
44 &max_user_congthresh, 0644);
45__MODULE_PARM_TYPE(max_user_congthresh, "uint");
46MODULE_PARM_DESC(max_user_congthresh,
47 "Global limit for the maximum congestion threshold an "
48 "unprivileged user can set");
49
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070050#define FUSE_SUPER_MAGIC 0x65735546
51
Miklos Szeredid1875db2008-02-08 04:21:43 -080052#define FUSE_DEFAULT_BLKSIZE 512
53
Csaba Henk7a6d3c82009-07-01 17:28:41 -070054/** Maximum number of outstanding background requests */
55#define FUSE_DEFAULT_MAX_BACKGROUND 12
56
57/** Congestion starts at 75% of maximum */
58#define FUSE_DEFAULT_CONGESTION_THRESHOLD (FUSE_DEFAULT_MAX_BACKGROUND * 3 / 4)
59
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070060struct fuse_mount_data {
61 int fd;
62 unsigned rootmode;
63 unsigned user_id;
Miklos Szeredi87729a52005-09-09 13:10:34 -070064 unsigned group_id;
Miklos Szeredi1729a162008-11-26 12:03:54 +010065 unsigned fd_present:1;
66 unsigned rootmode_present:1;
67 unsigned user_id_present:1;
68 unsigned group_id_present:1;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -070069 unsigned flags;
Miklos Szeredidb50b962005-09-09 13:10:33 -070070 unsigned max_read;
Miklos Szeredid8091612006-12-06 20:35:48 -080071 unsigned blksize;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070072};
73
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010074struct fuse_forget_link *fuse_alloc_forget()
75{
76 return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL);
77}
78
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070079static struct inode *fuse_alloc_inode(struct super_block *sb)
80{
81 struct inode *inode;
82 struct fuse_inode *fi;
83
Christoph Lametere94b1762006-12-06 20:33:17 -080084 inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070085 if (!inode)
86 return NULL;
87
88 fi = get_fuse_inode(inode);
Miklos Szeredi0a0898c2006-07-30 03:04:10 -070089 fi->i_time = 0;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -070090 fi->nodeid = 0;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -070091 fi->nlookup = 0;
John Muirfbee36b2007-11-28 16:22:02 -080092 fi->attr_version = 0;
Miklos Szeredi3be5a522008-04-30 00:54:41 -070093 fi->writectr = 0;
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -070094 INIT_LIST_HEAD(&fi->write_files);
Miklos Szeredi3be5a522008-04-30 00:54:41 -070095 INIT_LIST_HEAD(&fi->queued_writes);
96 INIT_LIST_HEAD(&fi->writepages);
97 init_waitqueue_head(&fi->page_waitq);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +010098 fi->forget = fuse_alloc_forget();
99 if (!fi->forget) {
Miklos Szeredie5e55582005-09-09 13:10:28 -0700100 kmem_cache_free(fuse_inode_cachep, inode);
101 return NULL;
102 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700103
104 return inode;
105}
106
107static void fuse_destroy_inode(struct inode *inode)
108{
Miklos Szeredie5e55582005-09-09 13:10:28 -0700109 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi93a8c3c2007-10-18 03:07:03 -0700110 BUG_ON(!list_empty(&fi->write_files));
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700111 BUG_ON(!list_empty(&fi->queued_writes));
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100112 kfree(fi->forget);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700113 kmem_cache_free(fuse_inode_cachep, inode);
114}
115
Al Virob57922d2010-06-07 14:34:48 -0400116static void fuse_evict_inode(struct inode *inode)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700117{
Al Virob57922d2010-06-07 14:34:48 -0400118 truncate_inode_pages(&inode->i_data, 0);
119 end_writeback(inode);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700120 if (inode->i_sb->s_flags & MS_ACTIVE) {
121 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700122 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100123 fuse_queue_forget(fc, fi->forget, fi->nodeid, fi->nlookup);
124 fi->forget = NULL;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700125 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700126}
127
Miklos Szeredi71421252006-06-25 05:48:52 -0700128static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
129{
130 if (*flags & MS_MANDLOCK)
131 return -EINVAL;
132
133 return 0;
134}
135
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700136void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
137 u64 attr_valid)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700138{
Miklos Szeredi9ffbb912006-10-17 00:10:06 -0700139 struct fuse_conn *fc = get_fuse_conn(inode);
Miklos Szerediebc14c42007-10-16 23:31:03 -0700140 struct fuse_inode *fi = get_fuse_inode(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700141
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700142 fi->attr_version = ++fc->attr_version;
143 fi->i_time = attr_valid;
144
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700145 inode->i_ino = attr->ino;
Miklos Szerediebc14c42007-10-16 23:31:03 -0700146 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700147 inode->i_nlink = attr->nlink;
148 inode->i_uid = attr->uid;
149 inode->i_gid = attr->gid;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700150 inode->i_blocks = attr->blocks;
151 inode->i_atime.tv_sec = attr->atime;
152 inode->i_atime.tv_nsec = attr->atimensec;
153 inode->i_mtime.tv_sec = attr->mtime;
154 inode->i_mtime.tv_nsec = attr->mtimensec;
155 inode->i_ctime.tv_sec = attr->ctime;
156 inode->i_ctime.tv_nsec = attr->ctimensec;
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700157
Miklos Szeredi0e9663e2007-10-18 03:07:05 -0700158 if (attr->blksize != 0)
159 inode->i_blkbits = ilog2(attr->blksize);
160 else
161 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
162
Miklos Szerediebc14c42007-10-16 23:31:03 -0700163 /*
164 * Don't set the sticky bit in i_mode, unless we want the VFS
165 * to check permissions. This prevents failures due to the
166 * check in may_delete().
167 */
168 fi->orig_i_mode = inode->i_mode;
169 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
170 inode->i_mode &= ~S_ISVTX;
Miklos Szeredi3be5a522008-04-30 00:54:41 -0700171}
172
173void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
174 u64 attr_valid, u64 attr_version)
175{
176 struct fuse_conn *fc = get_fuse_conn(inode);
177 struct fuse_inode *fi = get_fuse_inode(inode);
178 loff_t oldsize;
179
180 spin_lock(&fc->lock);
181 if (attr_version != 0 && fi->attr_version > attr_version) {
182 spin_unlock(&fc->lock);
183 return;
184 }
185
186 fuse_change_attributes_common(inode, attr, attr_valid);
Miklos Szerediebc14c42007-10-16 23:31:03 -0700187
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700188 oldsize = inode->i_size;
189 i_size_write(inode, attr->size);
190 spin_unlock(&fc->lock);
191
192 if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
npiggin@suse.dec08d3b02009-08-21 02:35:06 +1000193 truncate_pagecache(inode, oldsize, attr->size);
Miklos Szeredib1009972007-10-16 23:31:01 -0700194 invalidate_inode_pages2(inode->i_mapping);
Miklos Szeredie00d2c22007-10-16 23:31:01 -0700195 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700196}
197
198static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
199{
200 inode->i_mode = attr->mode & S_IFMT;
Miklos Szeredi9ffbb912006-10-17 00:10:06 -0700201 inode->i_size = attr->size;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700202 if (S_ISREG(inode->i_mode)) {
203 fuse_init_common(inode);
Miklos Szeredib6aeade2005-09-09 13:10:30 -0700204 fuse_init_file_inode(inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700205 } else if (S_ISDIR(inode->i_mode))
206 fuse_init_dir(inode);
207 else if (S_ISLNK(inode->i_mode))
208 fuse_init_symlink(inode);
209 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
210 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
211 fuse_init_common(inode);
212 init_special_inode(inode, inode->i_mode,
213 new_decode_dev(attr->rdev));
Miklos Szeredi39ee0592006-01-06 00:19:43 -0800214 } else
215 BUG();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700216}
217
John Muir3b463ae2009-05-31 11:13:57 -0400218int fuse_inode_eq(struct inode *inode, void *_nodeidp)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700219{
Miklos Szeredib48badf2008-04-30 00:54:44 -0700220 u64 nodeid = *(u64 *) _nodeidp;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700221 if (get_node_id(inode) == nodeid)
222 return 1;
223 else
224 return 0;
225}
226
227static int fuse_inode_set(struct inode *inode, void *_nodeidp)
228{
Miklos Szeredib48badf2008-04-30 00:54:44 -0700229 u64 nodeid = *(u64 *) _nodeidp;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700230 get_fuse_inode(inode)->nodeid = nodeid;
231 return 0;
232}
233
Miklos Szeredib48badf2008-04-30 00:54:44 -0700234struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700235 int generation, struct fuse_attr *attr,
236 u64 attr_valid, u64 attr_version)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700237{
238 struct inode *inode;
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700239 struct fuse_inode *fi;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700240 struct fuse_conn *fc = get_fuse_conn_super(sb);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700241
242 retry:
243 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
244 if (!inode)
245 return NULL;
246
247 if ((inode->i_state & I_NEW)) {
Miklos Szeredib36c31b2005-09-09 13:10:38 -0700248 inode->i_flags |= S_NOATIME|S_NOCMTIME;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700249 inode->i_generation = generation;
250 inode->i_data.backing_dev_info = &fc->bdi;
251 fuse_init_inode(inode, attr);
252 unlock_new_inode(inode);
253 } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700254 /* Inode has changed type, any I/O on the old should fail */
255 make_bad_inode(inode);
256 iput(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700257 goto retry;
258 }
259
Miklos Szeredi9e6268d2005-09-09 13:10:29 -0700260 fi = get_fuse_inode(inode);
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700261 spin_lock(&fc->lock);
Miklos Szeredi1729a162008-11-26 12:03:54 +0100262 fi->nlookup++;
Miklos Szeredi8da5ff22006-10-17 00:10:08 -0700263 spin_unlock(&fc->lock);
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700264 fuse_change_attributes(inode, attr, attr_valid, attr_version);
265
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700266 return inode;
267}
268
John Muir3b463ae2009-05-31 11:13:57 -0400269int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid,
270 loff_t offset, loff_t len)
271{
272 struct inode *inode;
273 pgoff_t pg_start;
274 pgoff_t pg_end;
275
276 inode = ilookup5(sb, nodeid, fuse_inode_eq, &nodeid);
277 if (!inode)
278 return -ENOENT;
279
280 fuse_invalidate_attr(inode);
281 if (offset >= 0) {
282 pg_start = offset >> PAGE_CACHE_SHIFT;
283 if (len <= 0)
284 pg_end = -1;
285 else
286 pg_end = (offset + len - 1) >> PAGE_CACHE_SHIFT;
287 invalidate_inode_pages2_range(inode->i_mapping,
288 pg_start, pg_end);
289 }
290 iput(inode);
291 return 0;
292}
293
Al Viro42faad92008-04-24 07:21:56 -0400294static void fuse_umount_begin(struct super_block *sb)
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800295{
Al Viro42faad92008-04-24 07:21:56 -0400296 fuse_abort_conn(get_fuse_conn_super(sb));
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800297}
298
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800299static void fuse_send_destroy(struct fuse_conn *fc)
300{
301 struct fuse_req *req = fc->destroy_req;
302 if (req && fc->conn_init) {
303 fc->destroy_req = NULL;
304 req->in.h.opcode = FUSE_DESTROY;
305 req->force = 1;
Tejun Heob93f8582008-11-26 12:03:55 +0100306 fuse_request_send(fc, req);
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800307 fuse_put_request(fc, req);
308 }
309}
310
Tejun Heoa325f9b2009-04-14 10:54:52 +0900311static void fuse_bdi_destroy(struct fuse_conn *fc)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700312{
Tejun Heoa325f9b2009-04-14 10:54:52 +0900313 if (fc->bdi_initialized)
314 bdi_destroy(&fc->bdi);
315}
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700316
Tejun Heo08cbf542009-04-14 10:54:53 +0900317void fuse_conn_kill(struct fuse_conn *fc)
Tejun Heoa325f9b2009-04-14 10:54:52 +0900318{
Miklos Szeredid7133112006-04-10 22:54:55 -0700319 spin_lock(&fc->lock);
Miklos Szeredi9ba7cbb2006-01-16 22:14:34 -0800320 fc->connected = 0;
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700321 fc->blocked = 0;
Miklos Szeredid7133112006-04-10 22:54:55 -0700322 spin_unlock(&fc->lock);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700323 /* Flush all readers on this fs */
Jeff Dike385a17b2006-04-10 22:54:52 -0700324 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
Miklos Szeredi334f4852005-09-09 13:10:27 -0700325 wake_up_all(&fc->waitq);
Miklos Szeredi51eb01e2006-06-25 05:48:50 -0700326 wake_up_all(&fc->blocked_waitq);
Miklos Szeredide5e3de2007-10-16 23:31:00 -0700327 wake_up_all(&fc->reserved_req_waitq);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700328 mutex_lock(&fuse_mutex);
329 list_del(&fc->entry);
330 fuse_ctl_remove_conn(fc);
331 mutex_unlock(&fuse_mutex);
Tejun Heoa325f9b2009-04-14 10:54:52 +0900332 fuse_bdi_destroy(fc);
333}
Tejun Heo08cbf542009-04-14 10:54:53 +0900334EXPORT_SYMBOL_GPL(fuse_conn_kill);
Tejun Heoa325f9b2009-04-14 10:54:52 +0900335
336static void fuse_put_super(struct super_block *sb)
337{
338 struct fuse_conn *fc = get_fuse_conn_super(sb);
339
340 fuse_send_destroy(fc);
341 fuse_conn_kill(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700342 fuse_conn_put(fc);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700343}
344
Miklos Szeredie5e55582005-09-09 13:10:28 -0700345static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
346{
347 stbuf->f_type = FUSE_SUPER_MAGIC;
348 stbuf->f_bsize = attr->bsize;
Miklos Szeredide5f1202006-01-06 00:19:37 -0800349 stbuf->f_frsize = attr->frsize;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700350 stbuf->f_blocks = attr->blocks;
351 stbuf->f_bfree = attr->bfree;
352 stbuf->f_bavail = attr->bavail;
353 stbuf->f_files = attr->files;
354 stbuf->f_ffree = attr->ffree;
355 stbuf->f_namelen = attr->namelen;
356 /* fsid is left zero */
357}
358
David Howells726c3342006-06-23 02:02:58 -0700359static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
Miklos Szeredie5e55582005-09-09 13:10:28 -0700360{
David Howells726c3342006-06-23 02:02:58 -0700361 struct super_block *sb = dentry->d_sb;
Miklos Szeredie5e55582005-09-09 13:10:28 -0700362 struct fuse_conn *fc = get_fuse_conn_super(sb);
363 struct fuse_req *req;
364 struct fuse_statfs_out outarg;
365 int err;
366
Miklos Szeredie57ac682007-10-18 03:06:58 -0700367 if (!fuse_allow_task(fc, current)) {
368 buf->f_type = FUSE_SUPER_MAGIC;
369 return 0;
370 }
371
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700372 req = fuse_get_req(fc);
373 if (IS_ERR(req))
374 return PTR_ERR(req);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700375
Miklos Szeredide5f1202006-01-06 00:19:37 -0800376 memset(&outarg, 0, sizeof(outarg));
Miklos Szeredie5e55582005-09-09 13:10:28 -0700377 req->in.numargs = 0;
378 req->in.h.opcode = FUSE_STATFS;
Miklos Szeredi5b35e8e2006-09-29 01:59:34 -0700379 req->in.h.nodeid = get_node_id(dentry->d_inode);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700380 req->out.numargs = 1;
Miklos Szeredide5f1202006-01-06 00:19:37 -0800381 req->out.args[0].size =
382 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700383 req->out.args[0].value = &outarg;
Tejun Heob93f8582008-11-26 12:03:55 +0100384 fuse_request_send(fc, req);
Miklos Szeredie5e55582005-09-09 13:10:28 -0700385 err = req->out.h.error;
386 if (!err)
387 convert_fuse_statfs(buf, &outarg.st);
388 fuse_put_request(fc, req);
389 return err;
390}
391
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700392enum {
393 OPT_FD,
394 OPT_ROOTMODE,
395 OPT_USER_ID,
Miklos Szeredi87729a52005-09-09 13:10:34 -0700396 OPT_GROUP_ID,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700397 OPT_DEFAULT_PERMISSIONS,
398 OPT_ALLOW_OTHER,
Miklos Szeredidb50b962005-09-09 13:10:33 -0700399 OPT_MAX_READ,
Miklos Szeredid8091612006-12-06 20:35:48 -0800400 OPT_BLKSIZE,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700401 OPT_ERR
402};
403
Steven Whitehousea447c092008-10-13 10:46:57 +0100404static const match_table_t tokens = {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700405 {OPT_FD, "fd=%u"},
406 {OPT_ROOTMODE, "rootmode=%o"},
407 {OPT_USER_ID, "user_id=%u"},
Miklos Szeredi87729a52005-09-09 13:10:34 -0700408 {OPT_GROUP_ID, "group_id=%u"},
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700409 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
410 {OPT_ALLOW_OTHER, "allow_other"},
Miklos Szeredidb50b962005-09-09 13:10:33 -0700411 {OPT_MAX_READ, "max_read=%u"},
Miklos Szeredid8091612006-12-06 20:35:48 -0800412 {OPT_BLKSIZE, "blksize=%u"},
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700413 {OPT_ERR, NULL}
414};
415
Miklos Szeredid8091612006-12-06 20:35:48 -0800416static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700417{
418 char *p;
419 memset(d, 0, sizeof(struct fuse_mount_data));
Miklos Szeredidb50b962005-09-09 13:10:33 -0700420 d->max_read = ~0;
Miklos Szeredid1875db2008-02-08 04:21:43 -0800421 d->blksize = FUSE_DEFAULT_BLKSIZE;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700422
423 while ((p = strsep(&opt, ",")) != NULL) {
424 int token;
425 int value;
426 substring_t args[MAX_OPT_ARGS];
427 if (!*p)
428 continue;
429
430 token = match_token(p, tokens, args);
431 switch (token) {
432 case OPT_FD:
433 if (match_int(&args[0], &value))
434 return 0;
435 d->fd = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700436 d->fd_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700437 break;
438
439 case OPT_ROOTMODE:
440 if (match_octal(&args[0], &value))
441 return 0;
Timo Savolaa5bfffac2007-04-08 16:04:00 -0700442 if (!fuse_valid_type(value))
443 return 0;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700444 d->rootmode = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700445 d->rootmode_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700446 break;
447
448 case OPT_USER_ID:
449 if (match_int(&args[0], &value))
450 return 0;
451 d->user_id = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700452 d->user_id_present = 1;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700453 break;
454
Miklos Szeredi87729a52005-09-09 13:10:34 -0700455 case OPT_GROUP_ID:
456 if (match_int(&args[0], &value))
457 return 0;
458 d->group_id = value;
Miklos Szeredi5a533682005-09-09 13:10:34 -0700459 d->group_id_present = 1;
Miklos Szeredi87729a52005-09-09 13:10:34 -0700460 break;
461
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700462 case OPT_DEFAULT_PERMISSIONS:
463 d->flags |= FUSE_DEFAULT_PERMISSIONS;
464 break;
465
466 case OPT_ALLOW_OTHER:
467 d->flags |= FUSE_ALLOW_OTHER;
468 break;
469
Miklos Szeredidb50b962005-09-09 13:10:33 -0700470 case OPT_MAX_READ:
471 if (match_int(&args[0], &value))
472 return 0;
473 d->max_read = value;
474 break;
475
Miklos Szeredid8091612006-12-06 20:35:48 -0800476 case OPT_BLKSIZE:
477 if (!is_bdev || match_int(&args[0], &value))
478 return 0;
479 d->blksize = value;
480 break;
481
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700482 default:
483 return 0;
484 }
485 }
Miklos Szeredi5a533682005-09-09 13:10:34 -0700486
487 if (!d->fd_present || !d->rootmode_present ||
488 !d->user_id_present || !d->group_id_present)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700489 return 0;
490
491 return 1;
492}
493
494static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
495{
496 struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
497
498 seq_printf(m, ",user_id=%u", fc->user_id);
Miklos Szeredi87729a52005-09-09 13:10:34 -0700499 seq_printf(m, ",group_id=%u", fc->group_id);
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700500 if (fc->flags & FUSE_DEFAULT_PERMISSIONS)
501 seq_puts(m, ",default_permissions");
502 if (fc->flags & FUSE_ALLOW_OTHER)
503 seq_puts(m, ",allow_other");
Miklos Szeredidb50b962005-09-09 13:10:33 -0700504 if (fc->max_read != ~0)
505 seq_printf(m, ",max_read=%u", fc->max_read);
Miklos Szeredid1875db2008-02-08 04:21:43 -0800506 if (mnt->mnt_sb->s_bdev &&
507 mnt->mnt_sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
508 seq_printf(m, ",blksize=%lu", mnt->mnt_sb->s_blocksize);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700509 return 0;
510}
511
Tejun Heoa325f9b2009-04-14 10:54:52 +0900512void fuse_conn_init(struct fuse_conn *fc)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700513{
Tejun Heo0d179aa2008-11-26 12:03:55 +0100514 memset(fc, 0, sizeof(*fc));
515 spin_lock_init(&fc->lock);
516 mutex_init(&fc->inst_mutex);
John Muir3b463ae2009-05-31 11:13:57 -0400517 init_rwsem(&fc->killsb);
Tejun Heo0d179aa2008-11-26 12:03:55 +0100518 atomic_set(&fc->count, 1);
519 init_waitqueue_head(&fc->waitq);
520 init_waitqueue_head(&fc->blocked_waitq);
521 init_waitqueue_head(&fc->reserved_req_waitq);
522 INIT_LIST_HEAD(&fc->pending);
523 INIT_LIST_HEAD(&fc->processing);
524 INIT_LIST_HEAD(&fc->io);
525 INIT_LIST_HEAD(&fc->interrupts);
526 INIT_LIST_HEAD(&fc->bg_queue);
527 INIT_LIST_HEAD(&fc->entry);
Miklos Szeredi07e77dc2010-12-07 20:16:56 +0100528 fc->forget_list_tail = &fc->forget_list_head;
Tejun Heo0d179aa2008-11-26 12:03:55 +0100529 atomic_set(&fc->num_waiting, 0);
Csaba Henk7a6d3c82009-07-01 17:28:41 -0700530 fc->max_background = FUSE_DEFAULT_MAX_BACKGROUND;
531 fc->congestion_threshold = FUSE_DEFAULT_CONGESTION_THRESHOLD;
Tejun Heo0d179aa2008-11-26 12:03:55 +0100532 fc->khctr = 0;
533 fc->polled_files = RB_ROOT;
Tejun Heo0d179aa2008-11-26 12:03:55 +0100534 fc->reqctr = 0;
535 fc->blocked = 1;
536 fc->attr_version = 1;
537 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700538}
Tejun Heo0d179aa2008-11-26 12:03:55 +0100539EXPORT_SYMBOL_GPL(fuse_conn_init);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700540
Miklos Szeredibafa9652006-06-25 05:48:51 -0700541void fuse_conn_put(struct fuse_conn *fc)
542{
Miklos Szeredid2a85162006-10-17 00:10:11 -0700543 if (atomic_dec_and_test(&fc->count)) {
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800544 if (fc->destroy_req)
545 fuse_request_free(fc->destroy_req);
Miklos Szeredid2a85162006-10-17 00:10:11 -0700546 mutex_destroy(&fc->inst_mutex);
Tejun Heo43901aa2008-11-26 12:03:56 +0100547 fc->release(fc);
Miklos Szeredid2a85162006-10-17 00:10:11 -0700548 }
Miklos Szeredibafa9652006-06-25 05:48:51 -0700549}
Tejun Heo08cbf542009-04-14 10:54:53 +0900550EXPORT_SYMBOL_GPL(fuse_conn_put);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700551
552struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
553{
554 atomic_inc(&fc->count);
555 return fc;
556}
Tejun Heo08cbf542009-04-14 10:54:53 +0900557EXPORT_SYMBOL_GPL(fuse_conn_get);
Miklos Szeredibafa9652006-06-25 05:48:51 -0700558
Tejun Heob93f8582008-11-26 12:03:55 +0100559static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700560{
561 struct fuse_attr attr;
562 memset(&attr, 0, sizeof(attr));
563
564 attr.mode = mode;
565 attr.ino = FUSE_ROOT_ID;
Miklos Szeredi074406f2007-10-16 23:31:02 -0700566 attr.nlink = 1;
Miklos Szeredi1fb69e72007-10-18 03:06:58 -0700567 return fuse_iget(sb, 1, 0, &attr, 0, 0);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700568}
569
Miklos Szeredi1729a162008-11-26 12:03:54 +0100570struct fuse_inode_handle {
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700571 u64 nodeid;
572 u32 generation;
573};
574
575static struct dentry *fuse_get_dentry(struct super_block *sb,
576 struct fuse_inode_handle *handle)
577{
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700578 struct fuse_conn *fc = get_fuse_conn_super(sb);
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700579 struct inode *inode;
580 struct dentry *entry;
581 int err = -ESTALE;
582
583 if (handle->nodeid == 0)
584 goto out_err;
585
586 inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid);
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700587 if (!inode) {
588 struct fuse_entry_out outarg;
589 struct qstr name;
590
591 if (!fc->export_support)
592 goto out_err;
593
594 name.len = 1;
595 name.name = ".";
596 err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg,
597 &inode);
598 if (err && err != -ENOENT)
599 goto out_err;
600 if (err || !inode) {
601 err = -ESTALE;
602 goto out_err;
603 }
604 err = -EIO;
605 if (get_node_id(inode) != handle->nodeid)
606 goto out_iput;
607 }
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700608 err = -ESTALE;
609 if (inode->i_generation != handle->generation)
610 goto out_iput;
611
Christoph Hellwig44003722008-08-11 15:49:04 +0200612 entry = d_obtain_alias(inode);
613 if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID) {
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700614 entry->d_op = &fuse_dentry_operations;
615 fuse_invalidate_entry_cache(entry);
616 }
617
618 return entry;
619
620 out_iput:
621 iput(inode);
622 out_err:
623 return ERR_PTR(err);
624}
625
626static int fuse_encode_fh(struct dentry *dentry, u32 *fh, int *max_len,
627 int connectable)
628{
629 struct inode *inode = dentry->d_inode;
630 bool encode_parent = connectable && !S_ISDIR(inode->i_mode);
631 int len = encode_parent ? 6 : 3;
632 u64 nodeid;
633 u32 generation;
634
635 if (*max_len < len)
636 return 255;
637
638 nodeid = get_fuse_inode(inode)->nodeid;
639 generation = inode->i_generation;
640
641 fh[0] = (u32)(nodeid >> 32);
642 fh[1] = (u32)(nodeid & 0xffffffff);
643 fh[2] = generation;
644
645 if (encode_parent) {
646 struct inode *parent;
647
648 spin_lock(&dentry->d_lock);
649 parent = dentry->d_parent->d_inode;
650 nodeid = get_fuse_inode(parent)->nodeid;
651 generation = parent->i_generation;
652 spin_unlock(&dentry->d_lock);
653
654 fh[3] = (u32)(nodeid >> 32);
655 fh[4] = (u32)(nodeid & 0xffffffff);
656 fh[5] = generation;
657 }
658
659 *max_len = len;
660 return encode_parent ? 0x82 : 0x81;
661}
662
663static struct dentry *fuse_fh_to_dentry(struct super_block *sb,
664 struct fid *fid, int fh_len, int fh_type)
665{
666 struct fuse_inode_handle handle;
667
668 if ((fh_type != 0x81 && fh_type != 0x82) || fh_len < 3)
669 return NULL;
670
671 handle.nodeid = (u64) fid->raw[0] << 32;
672 handle.nodeid |= (u64) fid->raw[1];
673 handle.generation = fid->raw[2];
674 return fuse_get_dentry(sb, &handle);
675}
676
677static struct dentry *fuse_fh_to_parent(struct super_block *sb,
678 struct fid *fid, int fh_len, int fh_type)
679{
680 struct fuse_inode_handle parent;
681
682 if (fh_type != 0x82 || fh_len < 6)
683 return NULL;
684
685 parent.nodeid = (u64) fid->raw[3] << 32;
686 parent.nodeid |= (u64) fid->raw[4];
687 parent.generation = fid->raw[5];
688 return fuse_get_dentry(sb, &parent);
689}
690
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700691static struct dentry *fuse_get_parent(struct dentry *child)
692{
693 struct inode *child_inode = child->d_inode;
694 struct fuse_conn *fc = get_fuse_conn(child_inode);
695 struct inode *inode;
696 struct dentry *parent;
697 struct fuse_entry_out outarg;
698 struct qstr name;
699 int err;
700
701 if (!fc->export_support)
702 return ERR_PTR(-ESTALE);
703
704 name.len = 2;
705 name.name = "..";
706 err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode),
707 &name, &outarg, &inode);
Christoph Hellwig44003722008-08-11 15:49:04 +0200708 if (err) {
709 if (err == -ENOENT)
710 return ERR_PTR(-ESTALE);
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700711 return ERR_PTR(err);
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700712 }
Christoph Hellwig44003722008-08-11 15:49:04 +0200713
714 parent = d_obtain_alias(inode);
715 if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID) {
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700716 parent->d_op = &fuse_dentry_operations;
717 fuse_invalidate_entry_cache(parent);
718 }
719
720 return parent;
721}
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700722
723static const struct export_operations fuse_export_operations = {
724 .fh_to_dentry = fuse_fh_to_dentry,
725 .fh_to_parent = fuse_fh_to_parent,
726 .encode_fh = fuse_encode_fh,
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700727 .get_parent = fuse_get_parent,
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700728};
729
Josef 'Jeff' Sipekee9b6d62007-02-12 00:55:41 -0800730static const struct super_operations fuse_super_operations = {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700731 .alloc_inode = fuse_alloc_inode,
732 .destroy_inode = fuse_destroy_inode,
Al Virob57922d2010-06-07 14:34:48 -0400733 .evict_inode = fuse_evict_inode,
Miklos Szerediead5f0b2007-05-23 13:57:54 -0700734 .drop_inode = generic_delete_inode,
Miklos Szeredi71421252006-06-25 05:48:52 -0700735 .remount_fs = fuse_remount_fs,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700736 .put_super = fuse_put_super,
Miklos Szeredi69a53bf2006-01-16 22:14:41 -0800737 .umount_begin = fuse_umount_begin,
Miklos Szeredie5e55582005-09-09 13:10:28 -0700738 .statfs = fuse_statfs,
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700739 .show_options = fuse_show_options,
740};
741
Csaba Henk487ea5a2009-08-26 19:17:22 +0200742static void sanitize_global_limit(unsigned *limit)
743{
744 if (*limit == 0)
745 *limit = ((num_physpages << PAGE_SHIFT) >> 13) /
746 sizeof(struct fuse_req);
747
748 if (*limit >= 1 << 16)
749 *limit = (1 << 16) - 1;
750}
751
752static int set_global_limit(const char *val, struct kernel_param *kp)
753{
754 int rv;
755
756 rv = param_set_uint(val, kp);
757 if (rv)
758 return rv;
759
760 sanitize_global_limit((unsigned *)kp->arg);
761
762 return 0;
763}
764
765static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg)
766{
767 int cap_sys_admin = capable(CAP_SYS_ADMIN);
768
769 if (arg->minor < 13)
770 return;
771
772 sanitize_global_limit(&max_user_bgreq);
773 sanitize_global_limit(&max_user_congthresh);
774
775 if (arg->max_background) {
776 fc->max_background = arg->max_background;
777
778 if (!cap_sys_admin && fc->max_background > max_user_bgreq)
779 fc->max_background = max_user_bgreq;
780 }
781 if (arg->congestion_threshold) {
782 fc->congestion_threshold = arg->congestion_threshold;
783
784 if (!cap_sys_admin &&
785 fc->congestion_threshold > max_user_congthresh)
786 fc->congestion_threshold = max_user_congthresh;
787 }
788}
789
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800790static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
791{
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800792 struct fuse_init_out *arg = &req->misc.init_out;
793
794 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
795 fc->conn_error = 1;
796 else {
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800797 unsigned long ra_pages;
798
Csaba Henk487ea5a2009-08-26 19:17:22 +0200799 process_init_limits(fc, arg);
800
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800801 if (arg->minor >= 6) {
802 ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
803 if (arg->flags & FUSE_ASYNC_READ)
804 fc->async_read = 1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700805 if (!(arg->flags & FUSE_POSIX_LOCKS))
806 fc->no_lock = 1;
Miklos Szeredi6ff958e2007-10-18 03:07:02 -0700807 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
808 fc->atomic_o_trunc = 1;
Miklos Szeredi33670fa2008-07-25 01:49:02 -0700809 if (arg->minor >= 9) {
810 /* LOOKUP has dependency on proto version */
811 if (arg->flags & FUSE_EXPORT_SUPPORT)
812 fc->export_support = 1;
813 }
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700814 if (arg->flags & FUSE_BIG_WRITES)
815 fc->big_writes = 1;
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200816 if (arg->flags & FUSE_DONT_MASK)
817 fc->dont_mask = 1;
Miklos Szeredi71421252006-06-25 05:48:52 -0700818 } else {
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800819 ra_pages = fc->max_read / PAGE_CACHE_SIZE;
Miklos Szeredi71421252006-06-25 05:48:52 -0700820 fc->no_lock = 1;
821 }
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800822
823 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800824 fc->minor = arg->minor;
825 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
Miklos Szeredif948d562008-06-17 18:05:40 +0200826 fc->max_write = max_t(unsigned, 4096, fc->max_write);
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800827 fc->conn_init = 1;
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800828 }
Miklos Szeredi08a53cd2006-04-10 22:54:59 -0700829 fc->blocked = 0;
830 wake_up_all(&fc->blocked_waitq);
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800831}
832
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700833static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800834{
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800835 struct fuse_init_in *arg = &req->misc.init_in;
Miklos Szeredi095da6c2006-01-16 22:14:52 -0800836
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800837 arg->major = FUSE_KERNEL_VERSION;
838 arg->minor = FUSE_KERNEL_MINOR_VERSION;
Miklos Szeredi9cd68452006-02-01 03:04:40 -0800839 arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
Miklos Szeredi78bb6cb2008-05-12 14:02:32 -0700840 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200841 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES | FUSE_DONT_MASK;
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800842 req->in.h.opcode = FUSE_INIT;
843 req->in.numargs = 1;
844 req->in.args[0].size = sizeof(*arg);
845 req->in.args[0].value = arg;
846 req->out.numargs = 1;
Daniel Mack3ad2f3f2010-02-03 08:01:28 +0800847 /* Variable length argument used for backward compatibility
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800848 with interface version < 7.5. Rest of init_out is zeroed
849 by do_get_request(), so a short reply is not a problem */
850 req->out.argvar = 1;
851 req->out.args[0].size = sizeof(struct fuse_init_out);
852 req->out.args[0].value = &req->misc.init_out;
853 req->end = process_init_reply;
Tejun Heob93f8582008-11-26 12:03:55 +0100854 fuse_request_send_background(fc, req);
Miklos Szeredi9b9a0462006-01-16 22:14:44 -0800855}
856
Tejun Heo43901aa2008-11-26 12:03:56 +0100857static void fuse_free_conn(struct fuse_conn *fc)
858{
859 kfree(fc);
860}
861
Tejun Heoa325f9b2009-04-14 10:54:52 +0900862static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
863{
864 int err;
865
Jens Axboed9938312009-06-12 14:45:52 +0200866 fc->bdi.name = "fuse";
Tejun Heoa325f9b2009-04-14 10:54:52 +0900867 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
868 fc->bdi.unplug_io_fn = default_unplug_io_fn;
869 /* fuse does it's own writeback accounting */
870 fc->bdi.capabilities = BDI_CAP_NO_ACCT_WB;
871
872 err = bdi_init(&fc->bdi);
873 if (err)
874 return err;
875
876 fc->bdi_initialized = 1;
877
878 if (sb->s_bdev) {
879 err = bdi_register(&fc->bdi, NULL, "%u:%u-fuseblk",
880 MAJOR(fc->dev), MINOR(fc->dev));
881 } else {
882 err = bdi_register_dev(&fc->bdi, fc->dev);
883 }
884
885 if (err)
886 return err;
887
888 /*
889 * For a single fuse filesystem use max 1% of dirty +
890 * writeback threshold.
891 *
892 * This gives about 1M of write buffer for memory maps on a
893 * machine with 1G and 10% dirty_ratio, which should be more
894 * than enough.
895 *
896 * Privileged users can raise it by writing to
897 *
898 * /sys/class/bdi/<bdi>/max_ratio
899 */
900 bdi_set_max_ratio(&fc->bdi, 1);
901
902 return 0;
903}
904
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700905static int fuse_fill_super(struct super_block *sb, void *data, int silent)
906{
907 struct fuse_conn *fc;
908 struct inode *root;
909 struct fuse_mount_data d;
910 struct file *file;
Miklos Szeredif543f252006-01-16 22:14:35 -0800911 struct dentry *root_dentry;
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700912 struct fuse_req *init_req;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700913 int err;
Miklos Szeredid8091612006-12-06 20:35:48 -0800914 int is_bdev = sb->s_bdev != NULL;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700915
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100916 err = -EINVAL;
Miklos Szeredi71421252006-06-25 05:48:52 -0700917 if (sb->s_flags & MS_MANDLOCK)
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100918 goto err;
Miklos Szeredi71421252006-06-25 05:48:52 -0700919
Miklos Szeredid8091612006-12-06 20:35:48 -0800920 if (!parse_fuse_opt((char *) data, &d, is_bdev))
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100921 goto err;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700922
Miklos Szeredid8091612006-12-06 20:35:48 -0800923 if (is_bdev) {
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800924#ifdef CONFIG_BLOCK
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100925 err = -EINVAL;
Miklos Szeredid8091612006-12-06 20:35:48 -0800926 if (!sb_set_blocksize(sb, d.blksize))
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100927 goto err;
Miklos Szeredi875d95e2006-12-06 20:35:54 -0800928#endif
Miklos Szeredid8091612006-12-06 20:35:48 -0800929 } else {
930 sb->s_blocksize = PAGE_CACHE_SIZE;
931 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
932 }
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700933 sb->s_magic = FUSE_SUPER_MAGIC;
934 sb->s_op = &fuse_super_operations;
935 sb->s_maxbytes = MAX_LFS_FILESIZE;
Miklos Szeredidbd561d2008-07-25 01:49:00 -0700936 sb->s_export_op = &fuse_export_operations;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700937
938 file = fget(d.fd);
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100939 err = -EINVAL;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700940 if (!file)
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100941 goto err;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700942
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100943 if (file->f_op != &fuse_dev_operations)
944 goto err_fput;
Miklos Szeredi0720b312006-04-10 22:54:55 -0700945
Tejun Heo0d179aa2008-11-26 12:03:55 +0100946 fc = kmalloc(sizeof(*fc), GFP_KERNEL);
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100947 err = -ENOMEM;
948 if (!fc)
949 goto err_fput;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700950
Tejun Heoa325f9b2009-04-14 10:54:52 +0900951 fuse_conn_init(fc);
952
953 fc->dev = sb->s_dev;
John Muir3b463ae2009-05-31 11:13:57 -0400954 fc->sb = sb;
Tejun Heoa325f9b2009-04-14 10:54:52 +0900955 err = fuse_bdi_init(fc, sb);
956 if (err)
957 goto err_put_conn;
Tejun Heo0d179aa2008-11-26 12:03:55 +0100958
Jens Axboe32a88aa2009-09-16 15:02:33 +0200959 sb->s_bdi = &fc->bdi;
960
Miklos Szeredie0a43dd2009-06-30 20:12:23 +0200961 /* Handle umasking inside the fuse code */
962 if (sb->s_flags & MS_POSIXACL)
963 fc->dont_mask = 1;
964 sb->s_flags |= MS_POSIXACL;
965
Tejun Heo43901aa2008-11-26 12:03:56 +0100966 fc->release = fuse_free_conn;
Miklos Szeredi1e9a4ed2005-09-09 13:10:31 -0700967 fc->flags = d.flags;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700968 fc->user_id = d.user_id;
Miklos Szeredi87729a52005-09-09 13:10:34 -0700969 fc->group_id = d.group_id;
Miklos Szeredif948d562008-06-17 18:05:40 +0200970 fc->max_read = max_t(unsigned, 4096, d.max_read);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700971
Miklos Szeredif543f252006-01-16 22:14:35 -0800972 /* Used by get_root_inode() */
973 sb->s_fs_info = fc;
974
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700975 err = -ENOMEM;
Tejun Heob93f8582008-11-26 12:03:55 +0100976 root = fuse_get_root_inode(sb, d.rootmode);
Miklos Szeredif543f252006-01-16 22:14:35 -0800977 if (!root)
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100978 goto err_put_conn;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700979
Miklos Szeredif543f252006-01-16 22:14:35 -0800980 root_dentry = d_alloc_root(root);
981 if (!root_dentry) {
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700982 iput(root);
Miklos Szeredic2b8f002009-01-26 15:00:58 +0100983 goto err_put_conn;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -0700984 }
Miklos Szeredif543f252006-01-16 22:14:35 -0800985
Miklos Szeredice1d5a42006-04-10 22:54:58 -0700986 init_req = fuse_request_alloc();
987 if (!init_req)
988 goto err_put_root;
989
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800990 if (is_bdev) {
991 fc->destroy_req = fuse_request_alloc();
992 if (!fc->destroy_req)
Julia Lawall17e18ab2008-10-16 16:08:56 +0200993 goto err_free_init_req;
Miklos Szeredi0ec7ca42006-12-06 20:35:52 -0800994 }
995
Miklos Szeredibafa9652006-06-25 05:48:51 -0700996 mutex_lock(&fuse_mutex);
Miklos Szeredi8aa09a52006-04-26 10:49:16 +0200997 err = -EINVAL;
998 if (file->private_data)
Miklos Szeredibafa9652006-06-25 05:48:51 -0700999 goto err_unlock;
Miklos Szeredi8aa09a52006-04-26 10:49:16 +02001000
Miklos Szeredibafa9652006-06-25 05:48:51 -07001001 err = fuse_ctl_add_conn(fc);
1002 if (err)
1003 goto err_unlock;
1004
1005 list_add_tail(&fc->entry, &fuse_conn_list);
Miklos Szeredif543f252006-01-16 22:14:35 -08001006 sb->s_root = root_dentry;
Miklos Szeredif543f252006-01-16 22:14:35 -08001007 fc->connected = 1;
Miklos Szeredibafa9652006-06-25 05:48:51 -07001008 file->private_data = fuse_conn_get(fc);
1009 mutex_unlock(&fuse_mutex);
Miklos Szeredi0720b312006-04-10 22:54:55 -07001010 /*
1011 * atomic_dec_and_test() in fput() provides the necessary
1012 * memory barrier for file->private_data to be visible on all
1013 * CPUs after this
1014 */
1015 fput(file);
Miklos Szeredif543f252006-01-16 22:14:35 -08001016
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001017 fuse_send_init(fc, init_req);
Miklos Szeredif543f252006-01-16 22:14:35 -08001018
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001019 return 0;
1020
Miklos Szeredibafa9652006-06-25 05:48:51 -07001021 err_unlock:
1022 mutex_unlock(&fuse_mutex);
Julia Lawall17e18ab2008-10-16 16:08:56 +02001023 err_free_init_req:
Miklos Szeredice1d5a42006-04-10 22:54:58 -07001024 fuse_request_free(init_req);
Miklos Szeredif543f252006-01-16 22:14:35 -08001025 err_put_root:
1026 dput(root_dentry);
Miklos Szeredic2b8f002009-01-26 15:00:58 +01001027 err_put_conn:
Tejun Heoa325f9b2009-04-14 10:54:52 +09001028 fuse_bdi_destroy(fc);
Miklos Szeredibafa9652006-06-25 05:48:51 -07001029 fuse_conn_put(fc);
Miklos Szeredic2b8f002009-01-26 15:00:58 +01001030 err_fput:
1031 fput(file);
1032 err:
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001033 return err;
1034}
1035
Al Viro3c26ff62010-07-25 11:46:36 +04001036static struct dentry *fuse_mount(struct file_system_type *fs_type,
David Howells454e2392006-06-23 02:02:57 -07001037 int flags, const char *dev_name,
Al Viro3c26ff62010-07-25 11:46:36 +04001038 void *raw_data)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001039{
Al Viro3c26ff62010-07-25 11:46:36 +04001040 return mount_nodev(fs_type, flags, raw_data, fuse_fill_super);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001041}
1042
John Muir3b463ae2009-05-31 11:13:57 -04001043static void fuse_kill_sb_anon(struct super_block *sb)
1044{
1045 struct fuse_conn *fc = get_fuse_conn_super(sb);
1046
1047 if (fc) {
1048 down_write(&fc->killsb);
1049 fc->sb = NULL;
1050 up_write(&fc->killsb);
1051 }
1052
1053 kill_anon_super(sb);
1054}
1055
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001056static struct file_system_type fuse_fs_type = {
1057 .owner = THIS_MODULE,
1058 .name = "fuse",
Miklos Szeredi79c0b2d2007-05-08 00:25:43 -07001059 .fs_flags = FS_HAS_SUBTYPE,
Al Viro3c26ff62010-07-25 11:46:36 +04001060 .mount = fuse_mount,
John Muir3b463ae2009-05-31 11:13:57 -04001061 .kill_sb = fuse_kill_sb_anon,
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001062};
1063
1064#ifdef CONFIG_BLOCK
Al Viro152a0832010-07-25 00:46:55 +04001065static struct dentry *fuse_mount_blk(struct file_system_type *fs_type,
Miklos Szeredid6392f82006-12-06 20:35:44 -08001066 int flags, const char *dev_name,
Al Viro152a0832010-07-25 00:46:55 +04001067 void *raw_data)
Miklos Szeredid6392f82006-12-06 20:35:44 -08001068{
Al Viro152a0832010-07-25 00:46:55 +04001069 return mount_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super);
Miklos Szeredid6392f82006-12-06 20:35:44 -08001070}
1071
John Muir3b463ae2009-05-31 11:13:57 -04001072static void fuse_kill_sb_blk(struct super_block *sb)
1073{
1074 struct fuse_conn *fc = get_fuse_conn_super(sb);
1075
1076 if (fc) {
1077 down_write(&fc->killsb);
1078 fc->sb = NULL;
1079 up_write(&fc->killsb);
1080 }
1081
1082 kill_block_super(sb);
1083}
1084
Miklos Szeredid6392f82006-12-06 20:35:44 -08001085static struct file_system_type fuseblk_fs_type = {
1086 .owner = THIS_MODULE,
1087 .name = "fuseblk",
Al Viro152a0832010-07-25 00:46:55 +04001088 .mount = fuse_mount_blk,
John Muir3b463ae2009-05-31 11:13:57 -04001089 .kill_sb = fuse_kill_sb_blk,
Alexey Dobriyanedad01e2007-06-16 10:16:05 -07001090 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
Miklos Szeredid6392f82006-12-06 20:35:44 -08001091};
1092
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001093static inline int register_fuseblk(void)
1094{
1095 return register_filesystem(&fuseblk_fs_type);
1096}
1097
1098static inline void unregister_fuseblk(void)
1099{
1100 unregister_filesystem(&fuseblk_fs_type);
1101}
1102#else
1103static inline int register_fuseblk(void)
1104{
1105 return 0;
1106}
1107
1108static inline void unregister_fuseblk(void)
1109{
1110}
1111#endif
1112
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001113static void fuse_inode_init_once(void *foo)
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001114{
Miklos Szeredi1729a162008-11-26 12:03:54 +01001115 struct inode *inode = foo;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001116
Christoph Lametera35afb82007-05-16 22:10:57 -07001117 inode_init_once(inode);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001118}
1119
1120static int __init fuse_fs_init(void)
1121{
1122 int err;
1123
1124 err = register_filesystem(&fuse_fs_type);
1125 if (err)
Miklos Szeredid6392f82006-12-06 20:35:44 -08001126 goto out;
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001127
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001128 err = register_fuseblk();
Miklos Szeredid6392f82006-12-06 20:35:44 -08001129 if (err)
1130 goto out_unreg;
1131
1132 fuse_inode_cachep = kmem_cache_create("fuse_inode",
1133 sizeof(struct fuse_inode),
1134 0, SLAB_HWCACHE_ALIGN,
Paul Mundt20c2df82007-07-20 10:11:58 +09001135 fuse_inode_init_once);
Miklos Szeredid6392f82006-12-06 20:35:44 -08001136 err = -ENOMEM;
1137 if (!fuse_inode_cachep)
1138 goto out_unreg2;
1139
1140 return 0;
1141
1142 out_unreg2:
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001143 unregister_fuseblk();
Miklos Szeredid6392f82006-12-06 20:35:44 -08001144 out_unreg:
1145 unregister_filesystem(&fuse_fs_type);
1146 out:
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001147 return err;
1148}
1149
1150static void fuse_fs_cleanup(void)
1151{
1152 unregister_filesystem(&fuse_fs_type);
Miklos Szeredi875d95e2006-12-06 20:35:54 -08001153 unregister_fuseblk();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001154 kmem_cache_destroy(fuse_inode_cachep);
1155}
1156
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +01001157static struct kobject *fuse_kobj;
1158static struct kobject *connections_kobj;
1159
Miklos Szeredif543f252006-01-16 22:14:35 -08001160static int fuse_sysfs_init(void)
1161{
1162 int err;
1163
Greg Kroah-Hartman00d26662007-10-29 14:17:23 -06001164 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +01001165 if (!fuse_kobj) {
1166 err = -ENOMEM;
Miklos Szeredif543f252006-01-16 22:14:35 -08001167 goto out_err;
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +01001168 }
Miklos Szeredif543f252006-01-16 22:14:35 -08001169
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +01001170 connections_kobj = kobject_create_and_add("connections", fuse_kobj);
1171 if (!connections_kobj) {
1172 err = -ENOMEM;
Miklos Szeredif543f252006-01-16 22:14:35 -08001173 goto out_fuse_unregister;
Greg Kroah-Hartman5c89e172007-10-29 20:13:17 +01001174 }
Miklos Szeredif543f252006-01-16 22:14:35 -08001175
1176 return 0;
1177
1178 out_fuse_unregister:
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -08001179 kobject_put(fuse_kobj);
Miklos Szeredif543f252006-01-16 22:14:35 -08001180 out_err:
1181 return err;
1182}
1183
1184static void fuse_sysfs_cleanup(void)
1185{
Greg Kroah-Hartman197b12d2007-12-20 08:13:05 -08001186 kobject_put(connections_kobj);
1187 kobject_put(fuse_kobj);
Miklos Szeredif543f252006-01-16 22:14:35 -08001188}
1189
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001190static int __init fuse_init(void)
1191{
1192 int res;
1193
Miklos Szeredi1729a162008-11-26 12:03:54 +01001194 printk(KERN_INFO "fuse init (API version %i.%i)\n",
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001195 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
1196
Miklos Szeredibafa9652006-06-25 05:48:51 -07001197 INIT_LIST_HEAD(&fuse_conn_list);
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001198 res = fuse_fs_init();
1199 if (res)
1200 goto err;
1201
Miklos Szeredi334f4852005-09-09 13:10:27 -07001202 res = fuse_dev_init();
1203 if (res)
1204 goto err_fs_cleanup;
1205
Miklos Szeredif543f252006-01-16 22:14:35 -08001206 res = fuse_sysfs_init();
1207 if (res)
1208 goto err_dev_cleanup;
1209
Miklos Szeredibafa9652006-06-25 05:48:51 -07001210 res = fuse_ctl_init();
1211 if (res)
1212 goto err_sysfs_cleanup;
1213
Csaba Henk487ea5a2009-08-26 19:17:22 +02001214 sanitize_global_limit(&max_user_bgreq);
1215 sanitize_global_limit(&max_user_congthresh);
1216
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001217 return 0;
1218
Miklos Szeredibafa9652006-06-25 05:48:51 -07001219 err_sysfs_cleanup:
1220 fuse_sysfs_cleanup();
Miklos Szeredif543f252006-01-16 22:14:35 -08001221 err_dev_cleanup:
1222 fuse_dev_cleanup();
Miklos Szeredi334f4852005-09-09 13:10:27 -07001223 err_fs_cleanup:
1224 fuse_fs_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001225 err:
1226 return res;
1227}
1228
1229static void __exit fuse_exit(void)
1230{
1231 printk(KERN_DEBUG "fuse exit\n");
1232
Miklos Szeredibafa9652006-06-25 05:48:51 -07001233 fuse_ctl_cleanup();
Miklos Szeredif543f252006-01-16 22:14:35 -08001234 fuse_sysfs_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001235 fuse_fs_cleanup();
Miklos Szeredi334f4852005-09-09 13:10:27 -07001236 fuse_dev_cleanup();
Miklos Szeredid8a5ba42005-09-09 13:10:26 -07001237}
1238
1239module_init(fuse_init);
1240module_exit(fuse_exit);