]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - fs/fuse/inode.c
mm: document missing fields for /proc/meminfo
[mirror_ubuntu-eoan-kernel.git] / fs / fuse / inode.c
CommitLineData
d8a5ba45
MS
1/*
2 FUSE: Filesystem in Userspace
d7133114 3 Copyright (C) 2001-2006 Miklos Szeredi <miklos@szeredi.hu>
d8a5ba45
MS
4
5 This program can be distributed under the terms of the GNU GPL.
6 See the file COPYING.
7*/
8
9#include "fuse_i.h"
10
11#include <linux/pagemap.h>
12#include <linux/slab.h>
13#include <linux/file.h>
d8a5ba45
MS
14#include <linux/seq_file.h>
15#include <linux/init.h>
16#include <linux/module.h>
d8a5ba45
MS
17#include <linux/parser.h>
18#include <linux/statfs.h>
9c8ef561 19#include <linux/random.h>
e8edc6e0 20#include <linux/sched.h>
d8a5ba45
MS
21
22MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
23MODULE_DESCRIPTION("Filesystem in Userspace");
24MODULE_LICENSE("GPL");
25
e18b890b 26static struct kmem_cache *fuse_inode_cachep;
bafa9654
MS
27struct list_head fuse_conn_list;
28DEFINE_MUTEX(fuse_mutex);
d8a5ba45
MS
29
30#define FUSE_SUPER_MAGIC 0x65735546
31
d1875dba
MS
32#define FUSE_DEFAULT_BLKSIZE 512
33
d8a5ba45
MS
34struct fuse_mount_data {
35 int fd;
36 unsigned rootmode;
37 unsigned user_id;
87729a55 38 unsigned group_id;
5a533682
MS
39 unsigned fd_present : 1;
40 unsigned rootmode_present : 1;
41 unsigned user_id_present : 1;
42 unsigned group_id_present : 1;
1e9a4ed9 43 unsigned flags;
db50b96c 44 unsigned max_read;
d8091614 45 unsigned blksize;
d8a5ba45
MS
46};
47
48static struct inode *fuse_alloc_inode(struct super_block *sb)
49{
50 struct inode *inode;
51 struct fuse_inode *fi;
52
e94b1766 53 inode = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
d8a5ba45
MS
54 if (!inode)
55 return NULL;
56
57 fi = get_fuse_inode(inode);
0a0898cf 58 fi->i_time = 0;
d8a5ba45 59 fi->nodeid = 0;
9e6268db 60 fi->nlookup = 0;
fbee36b9 61 fi->attr_version = 0;
93a8c3cd 62 INIT_LIST_HEAD(&fi->write_files);
e5e5558e
MS
63 fi->forget_req = fuse_request_alloc();
64 if (!fi->forget_req) {
65 kmem_cache_free(fuse_inode_cachep, inode);
66 return NULL;
67 }
d8a5ba45
MS
68
69 return inode;
70}
71
72static void fuse_destroy_inode(struct inode *inode)
73{
e5e5558e 74 struct fuse_inode *fi = get_fuse_inode(inode);
93a8c3cd 75 BUG_ON(!list_empty(&fi->write_files));
e5e5558e
MS
76 if (fi->forget_req)
77 fuse_request_free(fi->forget_req);
d8a5ba45
MS
78 kmem_cache_free(fuse_inode_cachep, inode);
79}
80
e5e5558e 81void fuse_send_forget(struct fuse_conn *fc, struct fuse_req *req,
9e6268db 82 unsigned long nodeid, u64 nlookup)
e5e5558e
MS
83{
84 struct fuse_forget_in *inarg = &req->misc.forget_in;
9e6268db 85 inarg->nlookup = nlookup;
e5e5558e
MS
86 req->in.h.opcode = FUSE_FORGET;
87 req->in.h.nodeid = nodeid;
88 req->in.numargs = 1;
89 req->in.args[0].size = sizeof(struct fuse_forget_in);
90 req->in.args[0].value = inarg;
91 request_send_noreply(fc, req);
92}
93
d8a5ba45
MS
94static void fuse_clear_inode(struct inode *inode)
95{
1e9a4ed9
MS
96 if (inode->i_sb->s_flags & MS_ACTIVE) {
97 struct fuse_conn *fc = get_fuse_conn(inode);
e5e5558e 98 struct fuse_inode *fi = get_fuse_inode(inode);
9e6268db 99 fuse_send_forget(fc, fi->forget_req, fi->nodeid, fi->nlookup);
e5e5558e
MS
100 fi->forget_req = NULL;
101 }
d8a5ba45
MS
102}
103
71421259
MS
104static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
105{
106 if (*flags & MS_MANDLOCK)
107 return -EINVAL;
108
109 return 0;
110}
111
e00d2c2d
MS
112static void fuse_truncate(struct address_space *mapping, loff_t offset)
113{
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);
118}
119
1fb69e78
MS
120
121void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
122 u64 attr_valid, u64 attr_version)
d8a5ba45 123{
9ffbb916 124 struct fuse_conn *fc = get_fuse_conn(inode);
ebc14c4d 125 struct fuse_inode *fi = get_fuse_inode(inode);
e00d2c2d 126 loff_t oldsize;
d8a5ba45 127
1fb69e78
MS
128 spin_lock(&fc->lock);
129 if (attr_version != 0 && fi->attr_version > attr_version) {
130 spin_unlock(&fc->lock);
131 return;
132 }
133 fi->attr_version = ++fc->attr_version;
134 fi->i_time = attr_valid;
135
d8a5ba45 136 inode->i_ino = attr->ino;
ebc14c4d 137 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
d8a5ba45
MS
138 inode->i_nlink = attr->nlink;
139 inode->i_uid = attr->uid;
140 inode->i_gid = attr->gid;
d8a5ba45
MS
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;
e00d2c2d 148
0e9663ee
MS
149 if (attr->blksize != 0)
150 inode->i_blkbits = ilog2(attr->blksize);
151 else
152 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
153
ebc14c4d
MS
154 /*
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().
158 */
159 fi->orig_i_mode = inode->i_mode;
160 if (!(fc->flags & FUSE_DEFAULT_PERMISSIONS))
161 inode->i_mode &= ~S_ISVTX;
162
e00d2c2d
MS
163 oldsize = inode->i_size;
164 i_size_write(inode, attr->size);
165 spin_unlock(&fc->lock);
166
167 if (S_ISREG(inode->i_mode) && oldsize != attr->size) {
168 if (attr->size < oldsize)
169 fuse_truncate(inode->i_mapping, attr->size);
b1009979 170 invalidate_inode_pages2(inode->i_mapping);
e00d2c2d 171 }
d8a5ba45
MS
172}
173
174static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
175{
176 inode->i_mode = attr->mode & S_IFMT;
9ffbb916 177 inode->i_size = attr->size;
e5e5558e
MS
178 if (S_ISREG(inode->i_mode)) {
179 fuse_init_common(inode);
b6aeaded 180 fuse_init_file_inode(inode);
e5e5558e
MS
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));
39ee059a
MS
190 } else
191 BUG();
d8a5ba45
MS
192}
193
194static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
195{
196 unsigned long nodeid = *(unsigned long *) _nodeidp;
197 if (get_node_id(inode) == nodeid)
198 return 1;
199 else
200 return 0;
201}
202
203static int fuse_inode_set(struct inode *inode, void *_nodeidp)
204{
205 unsigned long nodeid = *(unsigned long *) _nodeidp;
206 get_fuse_inode(inode)->nodeid = nodeid;
207 return 0;
208}
209
210struct inode *fuse_iget(struct super_block *sb, unsigned long nodeid,
1fb69e78
MS
211 int generation, struct fuse_attr *attr,
212 u64 attr_valid, u64 attr_version)
d8a5ba45
MS
213{
214 struct inode *inode;
9e6268db 215 struct fuse_inode *fi;
d8a5ba45 216 struct fuse_conn *fc = get_fuse_conn_super(sb);
d8a5ba45
MS
217
218 retry:
219 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
220 if (!inode)
221 return NULL;
222
223 if ((inode->i_state & I_NEW)) {
b36c31ba 224 inode->i_flags |= S_NOATIME|S_NOCMTIME;
d8a5ba45
MS
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) {
d8a5ba45
MS
230 /* Inode has changed type, any I/O on the old should fail */
231 make_bad_inode(inode);
232 iput(inode);
d8a5ba45
MS
233 goto retry;
234 }
235
9e6268db 236 fi = get_fuse_inode(inode);
8da5ff23 237 spin_lock(&fc->lock);
9e6268db 238 fi->nlookup ++;
8da5ff23 239 spin_unlock(&fc->lock);
1fb69e78
MS
240 fuse_change_attributes(inode, attr, attr_valid, attr_version);
241
d8a5ba45
MS
242 return inode;
243}
244
42faad99 245static void fuse_umount_begin(struct super_block *sb)
69a53bf2 246{
42faad99 247 fuse_abort_conn(get_fuse_conn_super(sb));
69a53bf2
MS
248}
249
0ec7ca41
MS
250static void fuse_send_destroy(struct fuse_conn *fc)
251{
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;
256 req->force = 1;
257 request_send(fc, req);
258 fuse_put_request(fc, req);
259 }
260}
261
d8a5ba45
MS
262static void fuse_put_super(struct super_block *sb)
263{
264 struct fuse_conn *fc = get_fuse_conn_super(sb);
265
0ec7ca41 266 fuse_send_destroy(fc);
d7133114 267 spin_lock(&fc->lock);
9ba7cbba 268 fc->connected = 0;
51eb01e7 269 fc->blocked = 0;
d7133114 270 spin_unlock(&fc->lock);
334f485d 271 /* Flush all readers on this fs */
385a17bf 272 kill_fasync(&fc->fasync, SIGIO, POLL_IN);
334f485d 273 wake_up_all(&fc->waitq);
51eb01e7 274 wake_up_all(&fc->blocked_waitq);
de5e3dec 275 wake_up_all(&fc->reserved_req_waitq);
bafa9654
MS
276 mutex_lock(&fuse_mutex);
277 list_del(&fc->entry);
278 fuse_ctl_remove_conn(fc);
279 mutex_unlock(&fuse_mutex);
280 fuse_conn_put(fc);
d8a5ba45
MS
281}
282
e5e5558e
MS
283static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
284{
285 stbuf->f_type = FUSE_SUPER_MAGIC;
286 stbuf->f_bsize = attr->bsize;
de5f1202 287 stbuf->f_frsize = attr->frsize;
e5e5558e
MS
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 */
295}
296
726c3342 297static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
e5e5558e 298{
726c3342 299 struct super_block *sb = dentry->d_sb;
e5e5558e
MS
300 struct fuse_conn *fc = get_fuse_conn_super(sb);
301 struct fuse_req *req;
302 struct fuse_statfs_out outarg;
303 int err;
304
e57ac683
MS
305 if (!fuse_allow_task(fc, current)) {
306 buf->f_type = FUSE_SUPER_MAGIC;
307 return 0;
308 }
309
ce1d5a49
MS
310 req = fuse_get_req(fc);
311 if (IS_ERR(req))
312 return PTR_ERR(req);
e5e5558e 313
de5f1202 314 memset(&outarg, 0, sizeof(outarg));
e5e5558e
MS
315 req->in.numargs = 0;
316 req->in.h.opcode = FUSE_STATFS;
5b35e8e5 317 req->in.h.nodeid = get_node_id(dentry->d_inode);
e5e5558e 318 req->out.numargs = 1;
de5f1202
MS
319 req->out.args[0].size =
320 fc->minor < 4 ? FUSE_COMPAT_STATFS_SIZE : sizeof(outarg);
e5e5558e
MS
321 req->out.args[0].value = &outarg;
322 request_send(fc, req);
323 err = req->out.h.error;
324 if (!err)
325 convert_fuse_statfs(buf, &outarg.st);
326 fuse_put_request(fc, req);
327 return err;
328}
329
d8a5ba45
MS
330enum {
331 OPT_FD,
332 OPT_ROOTMODE,
333 OPT_USER_ID,
87729a55 334 OPT_GROUP_ID,
d8a5ba45
MS
335 OPT_DEFAULT_PERMISSIONS,
336 OPT_ALLOW_OTHER,
db50b96c 337 OPT_MAX_READ,
d8091614 338 OPT_BLKSIZE,
d8a5ba45
MS
339 OPT_ERR
340};
341
342static match_table_t tokens = {
343 {OPT_FD, "fd=%u"},
344 {OPT_ROOTMODE, "rootmode=%o"},
345 {OPT_USER_ID, "user_id=%u"},
87729a55 346 {OPT_GROUP_ID, "group_id=%u"},
d8a5ba45
MS
347 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
348 {OPT_ALLOW_OTHER, "allow_other"},
db50b96c 349 {OPT_MAX_READ, "max_read=%u"},
d8091614 350 {OPT_BLKSIZE, "blksize=%u"},
d8a5ba45
MS
351 {OPT_ERR, NULL}
352};
353
d8091614 354static int parse_fuse_opt(char *opt, struct fuse_mount_data *d, int is_bdev)
d8a5ba45
MS
355{
356 char *p;
357 memset(d, 0, sizeof(struct fuse_mount_data));
db50b96c 358 d->max_read = ~0;
d1875dba 359 d->blksize = FUSE_DEFAULT_BLKSIZE;
d8a5ba45
MS
360
361 while ((p = strsep(&opt, ",")) != NULL) {
362 int token;
363 int value;
364 substring_t args[MAX_OPT_ARGS];
365 if (!*p)
366 continue;
367
368 token = match_token(p, tokens, args);
369 switch (token) {
370 case OPT_FD:
371 if (match_int(&args[0], &value))
372 return 0;
373 d->fd = value;
5a533682 374 d->fd_present = 1;
d8a5ba45
MS
375 break;
376
377 case OPT_ROOTMODE:
378 if (match_octal(&args[0], &value))
379 return 0;
a5bfffac
TS
380 if (!fuse_valid_type(value))
381 return 0;
d8a5ba45 382 d->rootmode = value;
5a533682 383 d->rootmode_present = 1;
d8a5ba45
MS
384 break;
385
386 case OPT_USER_ID:
387 if (match_int(&args[0], &value))
388 return 0;
389 d->user_id = value;
5a533682 390 d->user_id_present = 1;
d8a5ba45
MS
391 break;
392
87729a55
MS
393 case OPT_GROUP_ID:
394 if (match_int(&args[0], &value))
395 return 0;
396 d->group_id = value;
5a533682 397 d->group_id_present = 1;
87729a55
MS
398 break;
399
1e9a4ed9
MS
400 case OPT_DEFAULT_PERMISSIONS:
401 d->flags |= FUSE_DEFAULT_PERMISSIONS;
402 break;
403
404 case OPT_ALLOW_OTHER:
405 d->flags |= FUSE_ALLOW_OTHER;
406 break;
407
db50b96c
MS
408 case OPT_MAX_READ:
409 if (match_int(&args[0], &value))
410 return 0;
411 d->max_read = value;
412 break;
413
d8091614
MS
414 case OPT_BLKSIZE:
415 if (!is_bdev || match_int(&args[0], &value))
416 return 0;
417 d->blksize = value;
418 break;
419
d8a5ba45
MS
420 default:
421 return 0;
422 }
423 }
5a533682
MS
424
425 if (!d->fd_present || !d->rootmode_present ||
426 !d->user_id_present || !d->group_id_present)
d8a5ba45
MS
427 return 0;
428
429 return 1;
430}
431
432static int fuse_show_options(struct seq_file *m, struct vfsmount *mnt)
433{
434 struct fuse_conn *fc = get_fuse_conn_super(mnt->mnt_sb);
435
436 seq_printf(m, ",user_id=%u", fc->user_id);
87729a55 437 seq_printf(m, ",group_id=%u", fc->group_id);
1e9a4ed9
MS
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");
db50b96c
MS
442 if (fc->max_read != ~0)
443 seq_printf(m, ",max_read=%u", fc->max_read);
d1875dba
MS
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);
d8a5ba45
MS
447 return 0;
448}
449
b6f2fcbc 450static struct fuse_conn *new_conn(struct super_block *sb)
d8a5ba45
MS
451{
452 struct fuse_conn *fc;
e0bf68dd 453 int err;
d8a5ba45 454
6383bdaa 455 fc = kzalloc(sizeof(*fc), GFP_KERNEL);
f543f253 456 if (fc) {
d7133114 457 spin_lock_init(&fc->lock);
d2a85164 458 mutex_init(&fc->inst_mutex);
bafa9654 459 atomic_set(&fc->count, 1);
334f485d 460 init_waitqueue_head(&fc->waitq);
08a53cdc 461 init_waitqueue_head(&fc->blocked_waitq);
de5e3dec 462 init_waitqueue_head(&fc->reserved_req_waitq);
334f485d
MS
463 INIT_LIST_HEAD(&fc->pending);
464 INIT_LIST_HEAD(&fc->processing);
d77a1d5b 465 INIT_LIST_HEAD(&fc->io);
a4d27e75 466 INIT_LIST_HEAD(&fc->interrupts);
d12def1b 467 INIT_LIST_HEAD(&fc->bg_queue);
095da6cb 468 atomic_set(&fc->num_waiting, 0);
d8a5ba45
MS
469 fc->bdi.ra_pages = (VM_MAX_READAHEAD * 1024) / PAGE_CACHE_SIZE;
470 fc->bdi.unplug_io_fn = default_unplug_io_fn;
b6f2fcbc 471 fc->dev = sb->s_dev;
e0bf68dd 472 err = bdi_init(&fc->bdi);
b6f2fcbc
MS
473 if (err)
474 goto error_kfree;
475 err = bdi_register_dev(&fc->bdi, fc->dev);
476 if (err)
477 goto error_bdi_destroy;
334f485d 478 fc->reqctr = 0;
08a53cdc 479 fc->blocked = 1;
1fb69e78 480 fc->attr_version = 1;
9c8ef561 481 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
d8a5ba45
MS
482 }
483 return fc;
b6f2fcbc
MS
484
485error_bdi_destroy:
486 bdi_destroy(&fc->bdi);
487error_kfree:
488 mutex_destroy(&fc->inst_mutex);
489 kfree(fc);
490 return NULL;
d8a5ba45
MS
491}
492
bafa9654
MS
493void fuse_conn_put(struct fuse_conn *fc)
494{
d2a85164 495 if (atomic_dec_and_test(&fc->count)) {
0ec7ca41
MS
496 if (fc->destroy_req)
497 fuse_request_free(fc->destroy_req);
d2a85164 498 mutex_destroy(&fc->inst_mutex);
e0bf68dd 499 bdi_destroy(&fc->bdi);
bafa9654 500 kfree(fc);
d2a85164 501 }
bafa9654
MS
502}
503
504struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
505{
506 atomic_inc(&fc->count);
507 return fc;
508}
509
d8a5ba45
MS
510static struct inode *get_root_inode(struct super_block *sb, unsigned mode)
511{
512 struct fuse_attr attr;
513 memset(&attr, 0, sizeof(attr));
514
515 attr.mode = mode;
516 attr.ino = FUSE_ROOT_ID;
074406fa 517 attr.nlink = 1;
1fb69e78 518 return fuse_iget(sb, 1, 0, &attr, 0, 0);
d8a5ba45
MS
519}
520
ee9b6d61 521static const struct super_operations fuse_super_operations = {
d8a5ba45
MS
522 .alloc_inode = fuse_alloc_inode,
523 .destroy_inode = fuse_destroy_inode,
d8a5ba45 524 .clear_inode = fuse_clear_inode,
ead5f0b5 525 .drop_inode = generic_delete_inode,
71421259 526 .remount_fs = fuse_remount_fs,
d8a5ba45 527 .put_super = fuse_put_super,
69a53bf2 528 .umount_begin = fuse_umount_begin,
e5e5558e 529 .statfs = fuse_statfs,
d8a5ba45
MS
530 .show_options = fuse_show_options,
531};
532
9b9a0469
MS
533static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
534{
9b9a0469
MS
535 struct fuse_init_out *arg = &req->misc.init_out;
536
537 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
538 fc->conn_error = 1;
539 else {
9cd68455
MS
540 unsigned long ra_pages;
541
542 if (arg->minor >= 6) {
543 ra_pages = arg->max_readahead / PAGE_CACHE_SIZE;
544 if (arg->flags & FUSE_ASYNC_READ)
545 fc->async_read = 1;
71421259
MS
546 if (!(arg->flags & FUSE_POSIX_LOCKS))
547 fc->no_lock = 1;
6ff958ed
MS
548 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
549 fc->atomic_o_trunc = 1;
71421259 550 } else {
9cd68455 551 ra_pages = fc->max_read / PAGE_CACHE_SIZE;
71421259
MS
552 fc->no_lock = 1;
553 }
9cd68455
MS
554
555 fc->bdi.ra_pages = min(fc->bdi.ra_pages, ra_pages);
9b9a0469
MS
556 fc->minor = arg->minor;
557 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
0ec7ca41 558 fc->conn_init = 1;
9b9a0469 559 }
9b9a0469 560 fuse_put_request(fc, req);
08a53cdc
MS
561 fc->blocked = 0;
562 wake_up_all(&fc->blocked_waitq);
9b9a0469
MS
563}
564
ce1d5a49 565static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
9b9a0469 566{
9b9a0469 567 struct fuse_init_in *arg = &req->misc.init_in;
095da6cb 568
9b9a0469
MS
569 arg->major = FUSE_KERNEL_VERSION;
570 arg->minor = FUSE_KERNEL_MINOR_VERSION;
9cd68455 571 arg->max_readahead = fc->bdi.ra_pages * PAGE_CACHE_SIZE;
d0186b25 572 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC;
9b9a0469
MS
573 req->in.h.opcode = FUSE_INIT;
574 req->in.numargs = 1;
575 req->in.args[0].size = sizeof(*arg);
576 req->in.args[0].value = arg;
577 req->out.numargs = 1;
578 /* Variable length arguement used for backward compatibility
579 with interface version < 7.5. Rest of init_out is zeroed
580 by do_get_request(), so a short reply is not a problem */
581 req->out.argvar = 1;
582 req->out.args[0].size = sizeof(struct fuse_init_out);
583 req->out.args[0].value = &req->misc.init_out;
584 req->end = process_init_reply;
585 request_send_background(fc, req);
586}
587
d8a5ba45
MS
588static int fuse_fill_super(struct super_block *sb, void *data, int silent)
589{
590 struct fuse_conn *fc;
591 struct inode *root;
592 struct fuse_mount_data d;
593 struct file *file;
f543f253 594 struct dentry *root_dentry;
ce1d5a49 595 struct fuse_req *init_req;
d8a5ba45 596 int err;
d8091614 597 int is_bdev = sb->s_bdev != NULL;
d8a5ba45 598
71421259
MS
599 if (sb->s_flags & MS_MANDLOCK)
600 return -EINVAL;
601
d8091614 602 if (!parse_fuse_opt((char *) data, &d, is_bdev))
d8a5ba45
MS
603 return -EINVAL;
604
d8091614 605 if (is_bdev) {
875d95ec 606#ifdef CONFIG_BLOCK
d8091614
MS
607 if (!sb_set_blocksize(sb, d.blksize))
608 return -EINVAL;
875d95ec 609#endif
d8091614
MS
610 } else {
611 sb->s_blocksize = PAGE_CACHE_SIZE;
612 sb->s_blocksize_bits = PAGE_CACHE_SHIFT;
613 }
d8a5ba45
MS
614 sb->s_magic = FUSE_SUPER_MAGIC;
615 sb->s_op = &fuse_super_operations;
616 sb->s_maxbytes = MAX_LFS_FILESIZE;
617
618 file = fget(d.fd);
619 if (!file)
620 return -EINVAL;
621
0720b315
MS
622 if (file->f_op != &fuse_dev_operations)
623 return -EINVAL;
624
b6f2fcbc 625 fc = new_conn(sb);
0720b315
MS
626 if (!fc)
627 return -ENOMEM;
d8a5ba45 628
1e9a4ed9 629 fc->flags = d.flags;
d8a5ba45 630 fc->user_id = d.user_id;
87729a55 631 fc->group_id = d.group_id;
db50b96c 632 fc->max_read = d.max_read;
d8a5ba45 633
f543f253
MS
634 /* Used by get_root_inode() */
635 sb->s_fs_info = fc;
636
d8a5ba45
MS
637 err = -ENOMEM;
638 root = get_root_inode(sb, d.rootmode);
f543f253 639 if (!root)
d8a5ba45
MS
640 goto err;
641
f543f253
MS
642 root_dentry = d_alloc_root(root);
643 if (!root_dentry) {
d8a5ba45
MS
644 iput(root);
645 goto err;
646 }
f543f253 647
ce1d5a49
MS
648 init_req = fuse_request_alloc();
649 if (!init_req)
650 goto err_put_root;
651
0ec7ca41
MS
652 if (is_bdev) {
653 fc->destroy_req = fuse_request_alloc();
654 if (!fc->destroy_req)
655 goto err_put_root;
656 }
657
bafa9654 658 mutex_lock(&fuse_mutex);
8aa09a50
MS
659 err = -EINVAL;
660 if (file->private_data)
bafa9654 661 goto err_unlock;
8aa09a50 662
bafa9654
MS
663 err = fuse_ctl_add_conn(fc);
664 if (err)
665 goto err_unlock;
666
667 list_add_tail(&fc->entry, &fuse_conn_list);
f543f253 668 sb->s_root = root_dentry;
f543f253 669 fc->connected = 1;
bafa9654
MS
670 file->private_data = fuse_conn_get(fc);
671 mutex_unlock(&fuse_mutex);
0720b315
MS
672 /*
673 * atomic_dec_and_test() in fput() provides the necessary
674 * memory barrier for file->private_data to be visible on all
675 * CPUs after this
676 */
677 fput(file);
f543f253 678
ce1d5a49 679 fuse_send_init(fc, init_req);
f543f253 680
d8a5ba45
MS
681 return 0;
682
bafa9654
MS
683 err_unlock:
684 mutex_unlock(&fuse_mutex);
ce1d5a49 685 fuse_request_free(init_req);
f543f253
MS
686 err_put_root:
687 dput(root_dentry);
d8a5ba45 688 err:
0720b315 689 fput(file);
bafa9654 690 fuse_conn_put(fc);
d8a5ba45
MS
691 return err;
692}
693
454e2398
DH
694static int fuse_get_sb(struct file_system_type *fs_type,
695 int flags, const char *dev_name,
696 void *raw_data, struct vfsmount *mnt)
d8a5ba45 697{
454e2398 698 return get_sb_nodev(fs_type, flags, raw_data, fuse_fill_super, mnt);
d8a5ba45
MS
699}
700
875d95ec
MS
701static struct file_system_type fuse_fs_type = {
702 .owner = THIS_MODULE,
703 .name = "fuse",
79c0b2df 704 .fs_flags = FS_HAS_SUBTYPE,
875d95ec
MS
705 .get_sb = fuse_get_sb,
706 .kill_sb = kill_anon_super,
707};
708
709#ifdef CONFIG_BLOCK
d6392f87
MS
710static 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)
713{
714 return get_sb_bdev(fs_type, flags, dev_name, raw_data, fuse_fill_super,
715 mnt);
716}
717
d6392f87
MS
718static struct file_system_type fuseblk_fs_type = {
719 .owner = THIS_MODULE,
720 .name = "fuseblk",
721 .get_sb = fuse_get_sb_blk,
722 .kill_sb = kill_block_super,
edad01e2 723 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
d6392f87
MS
724};
725
875d95ec
MS
726static inline int register_fuseblk(void)
727{
728 return register_filesystem(&fuseblk_fs_type);
729}
730
731static inline void unregister_fuseblk(void)
732{
733 unregister_filesystem(&fuseblk_fs_type);
734}
735#else
736static inline int register_fuseblk(void)
737{
738 return 0;
739}
740
741static inline void unregister_fuseblk(void)
742{
743}
744#endif
745
4ba9b9d0 746static void fuse_inode_init_once(struct kmem_cache *cachep, void *foo)
d8a5ba45
MS
747{
748 struct inode * inode = foo;
749
a35afb83 750 inode_init_once(inode);
d8a5ba45
MS
751}
752
753static int __init fuse_fs_init(void)
754{
755 int err;
756
757 err = register_filesystem(&fuse_fs_type);
758 if (err)
d6392f87
MS
759 goto out;
760
875d95ec 761 err = register_fuseblk();
d6392f87
MS
762 if (err)
763 goto out_unreg;
764
765 fuse_inode_cachep = kmem_cache_create("fuse_inode",
766 sizeof(struct fuse_inode),
767 0, SLAB_HWCACHE_ALIGN,
20c2df83 768 fuse_inode_init_once);
d6392f87
MS
769 err = -ENOMEM;
770 if (!fuse_inode_cachep)
771 goto out_unreg2;
772
773 return 0;
d8a5ba45 774
d6392f87 775 out_unreg2:
875d95ec 776 unregister_fuseblk();
d6392f87
MS
777 out_unreg:
778 unregister_filesystem(&fuse_fs_type);
779 out:
d8a5ba45
MS
780 return err;
781}
782
783static void fuse_fs_cleanup(void)
784{
785 unregister_filesystem(&fuse_fs_type);
875d95ec 786 unregister_fuseblk();
d8a5ba45
MS
787 kmem_cache_destroy(fuse_inode_cachep);
788}
789
5c89e17e
GKH
790static struct kobject *fuse_kobj;
791static struct kobject *connections_kobj;
792
f543f253
MS
793static int fuse_sysfs_init(void)
794{
795 int err;
796
00d26666 797 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
5c89e17e
GKH
798 if (!fuse_kobj) {
799 err = -ENOMEM;
f543f253 800 goto out_err;
5c89e17e 801 }
f543f253 802
5c89e17e
GKH
803 connections_kobj = kobject_create_and_add("connections", fuse_kobj);
804 if (!connections_kobj) {
805 err = -ENOMEM;
f543f253 806 goto out_fuse_unregister;
5c89e17e 807 }
f543f253
MS
808
809 return 0;
810
811 out_fuse_unregister:
197b12d6 812 kobject_put(fuse_kobj);
f543f253
MS
813 out_err:
814 return err;
815}
816
817static void fuse_sysfs_cleanup(void)
818{
197b12d6
GKH
819 kobject_put(connections_kobj);
820 kobject_put(fuse_kobj);
f543f253
MS
821}
822
d8a5ba45
MS
823static int __init fuse_init(void)
824{
825 int res;
826
827 printk("fuse init (API version %i.%i)\n",
828 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
829
bafa9654 830 INIT_LIST_HEAD(&fuse_conn_list);
d8a5ba45
MS
831 res = fuse_fs_init();
832 if (res)
833 goto err;
834
334f485d
MS
835 res = fuse_dev_init();
836 if (res)
837 goto err_fs_cleanup;
838
f543f253
MS
839 res = fuse_sysfs_init();
840 if (res)
841 goto err_dev_cleanup;
842
bafa9654
MS
843 res = fuse_ctl_init();
844 if (res)
845 goto err_sysfs_cleanup;
846
d8a5ba45
MS
847 return 0;
848
bafa9654
MS
849 err_sysfs_cleanup:
850 fuse_sysfs_cleanup();
f543f253
MS
851 err_dev_cleanup:
852 fuse_dev_cleanup();
334f485d
MS
853 err_fs_cleanup:
854 fuse_fs_cleanup();
d8a5ba45
MS
855 err:
856 return res;
857}
858
859static void __exit fuse_exit(void)
860{
861 printk(KERN_DEBUG "fuse exit\n");
862
bafa9654 863 fuse_ctl_cleanup();
f543f253 864 fuse_sysfs_cleanup();
d8a5ba45 865 fuse_fs_cleanup();
334f485d 866 fuse_dev_cleanup();
d8a5ba45
MS
867}
868
869module_init(fuse_init);
870module_exit(fuse_exit);