fuse: convert writepages to simple api
[linux-2.6-block.git] / fs / fuse / inode.c
CommitLineData
d8a5ba45
MS
1/*
2 FUSE: Filesystem in Userspace
1729a16c 3 Copyright (C) 2001-2008 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>
487ea5af 17#include <linux/moduleparam.h>
c30da2e9
DH
18#include <linux/fs_context.h>
19#include <linux/fs_parser.h>
d8a5ba45 20#include <linux/statfs.h>
9c8ef561 21#include <linux/random.h>
e8edc6e0 22#include <linux/sched.h>
dbd561d2 23#include <linux/exportfs.h>
60bcc88a 24#include <linux/posix_acl.h>
0b6e9ea0 25#include <linux/pid_namespace.h>
d8a5ba45
MS
26
27MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
28MODULE_DESCRIPTION("Filesystem in Userspace");
29MODULE_LICENSE("GPL");
30
e18b890b 31static struct kmem_cache *fuse_inode_cachep;
bafa9654
MS
32struct list_head fuse_conn_list;
33DEFINE_MUTEX(fuse_mutex);
d8a5ba45 34
e4dca7b7 35static int set_global_limit(const char *val, const struct kernel_param *kp);
487ea5af 36
79a9d994 37unsigned max_user_bgreq;
487ea5af
CH
38module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
39 &max_user_bgreq, 0644);
40__MODULE_PARM_TYPE(max_user_bgreq, "uint");
41MODULE_PARM_DESC(max_user_bgreq,
42 "Global limit for the maximum number of backgrounded requests an "
43 "unprivileged user can set");
44
79a9d994 45unsigned max_user_congthresh;
487ea5af
CH
46module_param_call(max_user_congthresh, set_global_limit, param_get_uint,
47 &max_user_congthresh, 0644);
48__MODULE_PARM_TYPE(max_user_congthresh, "uint");
49MODULE_PARM_DESC(max_user_congthresh,
50 "Global limit for the maximum congestion threshold an "
51 "unprivileged user can set");
52
d8a5ba45
MS
53#define FUSE_SUPER_MAGIC 0x65735546
54
d1875dba
MS
55#define FUSE_DEFAULT_BLKSIZE 512
56
7a6d3c8b
CH
57/** Maximum number of outstanding background requests */
58#define FUSE_DEFAULT_MAX_BACKGROUND 12
59
60/** Congestion starts at 75% of maximum */
61#define FUSE_DEFAULT_CONGESTION_THRESHOLD (FUSE_DEFAULT_MAX_BACKGROUND * 3 / 4)
62
c30da2e9
DH
63#ifdef CONFIG_BLOCK
64static struct file_system_type fuseblk_fs_type;
65#endif
66
67struct fuse_fs_context {
68 const char *subtype;
69 bool is_bdev;
d8a5ba45
MS
70 int fd;
71 unsigned rootmode;
499dcf20
EB
72 kuid_t user_id;
73 kgid_t group_id;
1729a16c
MS
74 unsigned fd_present:1;
75 unsigned rootmode_present:1;
76 unsigned user_id_present:1;
77 unsigned group_id_present:1;
29433a29
MS
78 unsigned default_permissions:1;
79 unsigned allow_other:1;
db50b96c 80 unsigned max_read;
d8091614 81 unsigned blksize;
d8a5ba45
MS
82};
83
a2daff68 84struct fuse_forget_link *fuse_alloc_forget(void)
07e77dca
MS
85{
86 return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL);
87}
88
d8a5ba45
MS
89static struct inode *fuse_alloc_inode(struct super_block *sb)
90{
d8a5ba45
MS
91 struct fuse_inode *fi;
92
9031a69c 93 fi = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
94 if (!fi)
d8a5ba45
MS
95 return NULL;
96
0a0898cf 97 fi->i_time = 0;
2f1e8196 98 fi->inval_mask = 0;
d8a5ba45 99 fi->nodeid = 0;
9e6268db 100 fi->nlookup = 0;
fbee36b9 101 fi->attr_version = 0;
45c72cd7 102 fi->orig_ino = 0;
4582a4ab 103 fi->state = 0;
5c672ab3 104 mutex_init(&fi->mutex);
f15ecfef 105 spin_lock_init(&fi->lock);
07e77dca
MS
106 fi->forget = fuse_alloc_forget();
107 if (!fi->forget) {
9031a69c 108 kmem_cache_free(fuse_inode_cachep, fi);
e5e5558e
MS
109 return NULL;
110 }
d8a5ba45 111
9031a69c 112 return &fi->inode;
d8a5ba45
MS
113}
114
9baf28bb 115static void fuse_free_inode(struct inode *inode)
d8a5ba45 116{
e5e5558e 117 struct fuse_inode *fi = get_fuse_inode(inode);
9baf28bb 118
5c672ab3 119 mutex_destroy(&fi->mutex);
07e77dca 120 kfree(fi->forget);
9baf28bb 121 kmem_cache_free(fuse_inode_cachep, fi);
d8a5ba45
MS
122}
123
b57922d9 124static void fuse_evict_inode(struct inode *inode)
d8a5ba45 125{
9baf28bb
AV
126 struct fuse_inode *fi = get_fuse_inode(inode);
127
91b0abe3 128 truncate_inode_pages_final(&inode->i_data);
dbd5768f 129 clear_inode(inode);
1751e8a6 130 if (inode->i_sb->s_flags & SB_ACTIVE) {
1e9a4ed9 131 struct fuse_conn *fc = get_fuse_conn(inode);
07e77dca
MS
132 fuse_queue_forget(fc, fi->forget, fi->nodeid, fi->nlookup);
133 fi->forget = NULL;
e5e5558e 134 }
9baf28bb
AV
135 if (S_ISREG(inode->i_mode) && !is_bad_inode(inode)) {
136 WARN_ON(!list_empty(&fi->write_files));
137 WARN_ON(!list_empty(&fi->queued_writes));
138 }
d8a5ba45
MS
139}
140
71421259
MS
141static int fuse_remount_fs(struct super_block *sb, int *flags, char *data)
142{
02b9984d 143 sync_filesystem(sb);
1751e8a6 144 if (*flags & SB_MANDLOCK)
71421259
MS
145 return -EINVAL;
146
147 return 0;
148}
149
45c72cd7
PS
150/*
151 * ino_t is 32-bits on 32-bit arch. We have to squash the 64-bit value down
152 * so that it will fit.
153 */
154static ino_t fuse_squash_ino(u64 ino64)
155{
156 ino_t ino = (ino_t) ino64;
157 if (sizeof(ino_t) < sizeof(u64))
158 ino ^= ino64 >> (sizeof(u64) - sizeof(ino_t)) * 8;
159 return ino;
160}
161
3be5a52b
MS
162void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
163 u64 attr_valid)
d8a5ba45 164{
9ffbb916 165 struct fuse_conn *fc = get_fuse_conn(inode);
ebc14c4d 166 struct fuse_inode *fi = get_fuse_inode(inode);
d8a5ba45 167
f15ecfef
KT
168 lockdep_assert_held(&fi->lock);
169
4510d86f 170 fi->attr_version = atomic64_inc_return(&fc->attr_version);
1fb69e78 171 fi->i_time = attr_valid;
2f1e8196 172 WRITE_ONCE(fi->inval_mask, 0);
1fb69e78 173
45c72cd7 174 inode->i_ino = fuse_squash_ino(attr->ino);
ebc14c4d 175 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
bfe86848 176 set_nlink(inode, attr->nlink);
8cb08329
EB
177 inode->i_uid = make_kuid(fc->user_ns, attr->uid);
178 inode->i_gid = make_kgid(fc->user_ns, attr->gid);
d8a5ba45
MS
179 inode->i_blocks = attr->blocks;
180 inode->i_atime.tv_sec = attr->atime;
181 inode->i_atime.tv_nsec = attr->atimensec;
b0aa7606
MP
182 /* mtime from server may be stale due to local buffered write */
183 if (!fc->writeback_cache || !S_ISREG(inode->i_mode)) {
184 inode->i_mtime.tv_sec = attr->mtime;
185 inode->i_mtime.tv_nsec = attr->mtimensec;
31f3267b
MP
186 inode->i_ctime.tv_sec = attr->ctime;
187 inode->i_ctime.tv_nsec = attr->ctimensec;
b0aa7606 188 }
e00d2c2d 189
0e9663ee
MS
190 if (attr->blksize != 0)
191 inode->i_blkbits = ilog2(attr->blksize);
192 else
193 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
194
ebc14c4d
MS
195 /*
196 * Don't set the sticky bit in i_mode, unless we want the VFS
197 * to check permissions. This prevents failures due to the
198 * check in may_delete().
199 */
200 fi->orig_i_mode = inode->i_mode;
29433a29 201 if (!fc->default_permissions)
ebc14c4d 202 inode->i_mode &= ~S_ISVTX;
45c72cd7
PS
203
204 fi->orig_ino = attr->ino;
3be5a52b
MS
205}
206
207void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
208 u64 attr_valid, u64 attr_version)
209{
210 struct fuse_conn *fc = get_fuse_conn(inode);
211 struct fuse_inode *fi = get_fuse_inode(inode);
8373200b 212 bool is_wb = fc->writeback_cache;
3be5a52b 213 loff_t oldsize;
a64ba10f 214 struct timespec64 old_mtime;
3be5a52b 215
f15ecfef 216 spin_lock(&fi->lock);
06a7c3c2
MP
217 if ((attr_version != 0 && fi->attr_version > attr_version) ||
218 test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
f15ecfef 219 spin_unlock(&fi->lock);
3be5a52b
MS
220 return;
221 }
222
a64ba10f 223 old_mtime = inode->i_mtime;
3be5a52b 224 fuse_change_attributes_common(inode, attr, attr_valid);
ebc14c4d 225
e00d2c2d 226 oldsize = inode->i_size;
8373200b
PE
227 /*
228 * In case of writeback_cache enabled, the cached writes beyond EOF
229 * extend local i_size without keeping userspace server in sync. So,
230 * attr->size coming from server can be stale. We cannot trust it.
231 */
232 if (!is_wb || !S_ISREG(inode->i_mode))
233 i_size_write(inode, attr->size);
f15ecfef 234 spin_unlock(&fi->lock);
e00d2c2d 235
8373200b 236 if (!is_wb && S_ISREG(inode->i_mode)) {
eed2179e
BF
237 bool inval = false;
238
239 if (oldsize != attr->size) {
7caef267 240 truncate_pagecache(inode, attr->size);
ad2ba64d
KS
241 if (!fc->explicit_inval_data)
242 inval = true;
eed2179e 243 } else if (fc->auto_inval_data) {
a64ba10f 244 struct timespec64 new_mtime = {
eed2179e
BF
245 .tv_sec = attr->mtime,
246 .tv_nsec = attr->mtimensec,
247 };
248
249 /*
250 * Auto inval mode also checks and invalidates if mtime
251 * has changed.
252 */
a64ba10f 253 if (!timespec64_equal(&old_mtime, &new_mtime))
eed2179e
BF
254 inval = true;
255 }
256
257 if (inval)
258 invalidate_inode_pages2(inode->i_mapping);
e00d2c2d 259 }
d8a5ba45
MS
260}
261
262static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
263{
264 inode->i_mode = attr->mode & S_IFMT;
9ffbb916 265 inode->i_size = attr->size;
b0aa7606
MP
266 inode->i_mtime.tv_sec = attr->mtime;
267 inode->i_mtime.tv_nsec = attr->mtimensec;
31f3267b
MP
268 inode->i_ctime.tv_sec = attr->ctime;
269 inode->i_ctime.tv_nsec = attr->ctimensec;
e5e5558e
MS
270 if (S_ISREG(inode->i_mode)) {
271 fuse_init_common(inode);
b6aeaded 272 fuse_init_file_inode(inode);
e5e5558e
MS
273 } else if (S_ISDIR(inode->i_mode))
274 fuse_init_dir(inode);
275 else if (S_ISLNK(inode->i_mode))
276 fuse_init_symlink(inode);
277 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
278 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
279 fuse_init_common(inode);
280 init_special_inode(inode, inode->i_mode,
281 new_decode_dev(attr->rdev));
39ee059a
MS
282 } else
283 BUG();
d8a5ba45
MS
284}
285
3b463ae0 286int fuse_inode_eq(struct inode *inode, void *_nodeidp)
d8a5ba45 287{
b48badf0 288 u64 nodeid = *(u64 *) _nodeidp;
d8a5ba45
MS
289 if (get_node_id(inode) == nodeid)
290 return 1;
291 else
292 return 0;
293}
294
295static int fuse_inode_set(struct inode *inode, void *_nodeidp)
296{
b48badf0 297 u64 nodeid = *(u64 *) _nodeidp;
d8a5ba45
MS
298 get_fuse_inode(inode)->nodeid = nodeid;
299 return 0;
300}
301
b48badf0 302struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
1fb69e78
MS
303 int generation, struct fuse_attr *attr,
304 u64 attr_valid, u64 attr_version)
d8a5ba45
MS
305{
306 struct inode *inode;
9e6268db 307 struct fuse_inode *fi;
d8a5ba45 308 struct fuse_conn *fc = get_fuse_conn_super(sb);
d8a5ba45
MS
309
310 retry:
311 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
312 if (!inode)
313 return NULL;
314
315 if ((inode->i_state & I_NEW)) {
b0aa7606 316 inode->i_flags |= S_NOATIME;
d31433c8 317 if (!fc->writeback_cache || !S_ISREG(attr->mode))
b0aa7606 318 inode->i_flags |= S_NOCMTIME;
d8a5ba45 319 inode->i_generation = generation;
d8a5ba45
MS
320 fuse_init_inode(inode, attr);
321 unlock_new_inode(inode);
322 } else if ((inode->i_mode ^ attr->mode) & S_IFMT) {
d8a5ba45
MS
323 /* Inode has changed type, any I/O on the old should fail */
324 make_bad_inode(inode);
325 iput(inode);
d8a5ba45
MS
326 goto retry;
327 }
328
9e6268db 329 fi = get_fuse_inode(inode);
c9d8f5f0 330 spin_lock(&fi->lock);
1729a16c 331 fi->nlookup++;
c9d8f5f0 332 spin_unlock(&fi->lock);
1fb69e78
MS
333 fuse_change_attributes(inode, attr, attr_valid, attr_version);
334
d8a5ba45
MS
335 return inode;
336}
337
3b463ae0
JM
338int fuse_reverse_inval_inode(struct super_block *sb, u64 nodeid,
339 loff_t offset, loff_t len)
340{
341 struct inode *inode;
342 pgoff_t pg_start;
343 pgoff_t pg_end;
344
345 inode = ilookup5(sb, nodeid, fuse_inode_eq, &nodeid);
346 if (!inode)
347 return -ENOENT;
348
349 fuse_invalidate_attr(inode);
60bcc88a 350 forget_all_cached_acls(inode);
3b463ae0 351 if (offset >= 0) {
09cbfeaf 352 pg_start = offset >> PAGE_SHIFT;
3b463ae0
JM
353 if (len <= 0)
354 pg_end = -1;
355 else
09cbfeaf 356 pg_end = (offset + len - 1) >> PAGE_SHIFT;
3b463ae0
JM
357 invalidate_inode_pages2_range(inode->i_mapping,
358 pg_start, pg_end);
359 }
360 iput(inode);
361 return 0;
362}
363
63576c13 364bool fuse_lock_inode(struct inode *inode)
5c672ab3 365{
63576c13
MS
366 bool locked = false;
367
368 if (!get_fuse_conn(inode)->parallel_dirops) {
5c672ab3 369 mutex_lock(&get_fuse_inode(inode)->mutex);
63576c13
MS
370 locked = true;
371 }
372
373 return locked;
5c672ab3
MS
374}
375
63576c13 376void fuse_unlock_inode(struct inode *inode, bool locked)
5c672ab3 377{
63576c13 378 if (locked)
5c672ab3
MS
379 mutex_unlock(&get_fuse_inode(inode)->mutex);
380}
381
42faad99 382static void fuse_umount_begin(struct super_block *sb)
69a53bf2 383{
eb98e3bd 384 fuse_abort_conn(get_fuse_conn_super(sb));
69a53bf2
MS
385}
386
0ec7ca41
MS
387static void fuse_send_destroy(struct fuse_conn *fc)
388{
1ccd1ea2
MS
389 if (fc->conn_init) {
390 FUSE_ARGS(args);
391
392 args.opcode = FUSE_DESTROY;
393 args.force = true;
394 args.nocreds = true;
395 fuse_simple_request(fc, &args);
0ec7ca41
MS
396 }
397}
398
a325f9b9
TH
399static void fuse_put_super(struct super_block *sb)
400{
401 struct fuse_conn *fc = get_fuse_conn_super(sb);
402
bbd99797
MS
403 mutex_lock(&fuse_mutex);
404 list_del(&fc->entry);
405 fuse_ctl_remove_conn(fc);
406 mutex_unlock(&fuse_mutex);
bbd99797 407
bafa9654 408 fuse_conn_put(fc);
d8a5ba45
MS
409}
410
e5e5558e
MS
411static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
412{
413 stbuf->f_type = FUSE_SUPER_MAGIC;
414 stbuf->f_bsize = attr->bsize;
de5f1202 415 stbuf->f_frsize = attr->frsize;
e5e5558e
MS
416 stbuf->f_blocks = attr->blocks;
417 stbuf->f_bfree = attr->bfree;
418 stbuf->f_bavail = attr->bavail;
419 stbuf->f_files = attr->files;
420 stbuf->f_ffree = attr->ffree;
421 stbuf->f_namelen = attr->namelen;
422 /* fsid is left zero */
423}
424
726c3342 425static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
e5e5558e 426{
726c3342 427 struct super_block *sb = dentry->d_sb;
e5e5558e 428 struct fuse_conn *fc = get_fuse_conn_super(sb);
7078187a 429 FUSE_ARGS(args);
e5e5558e
MS
430 struct fuse_statfs_out outarg;
431 int err;
432
c2132c1b 433 if (!fuse_allow_current_process(fc)) {
e57ac683
MS
434 buf->f_type = FUSE_SUPER_MAGIC;
435 return 0;
436 }
437
de5f1202 438 memset(&outarg, 0, sizeof(outarg));
d5b48543
MS
439 args.in_numargs = 0;
440 args.opcode = FUSE_STATFS;
441 args.nodeid = get_node_id(d_inode(dentry));
442 args.out_numargs = 1;
443 args.out_args[0].size = sizeof(outarg);
444 args.out_args[0].value = &outarg;
7078187a 445 err = fuse_simple_request(fc, &args);
e5e5558e
MS
446 if (!err)
447 convert_fuse_statfs(buf, &outarg.st);
e5e5558e
MS
448 return err;
449}
450
d8a5ba45 451enum {
c30da2e9
DH
452 OPT_SOURCE,
453 OPT_SUBTYPE,
d8a5ba45
MS
454 OPT_FD,
455 OPT_ROOTMODE,
456 OPT_USER_ID,
87729a55 457 OPT_GROUP_ID,
d8a5ba45
MS
458 OPT_DEFAULT_PERMISSIONS,
459 OPT_ALLOW_OTHER,
db50b96c 460 OPT_MAX_READ,
d8091614 461 OPT_BLKSIZE,
d8a5ba45
MS
462 OPT_ERR
463};
464
c30da2e9
DH
465static const struct fs_parameter_spec fuse_param_specs[] = {
466 fsparam_string ("source", OPT_SOURCE),
467 fsparam_u32 ("fd", OPT_FD),
468 fsparam_u32oct ("rootmode", OPT_ROOTMODE),
469 fsparam_u32 ("user_id", OPT_USER_ID),
470 fsparam_u32 ("group_id", OPT_GROUP_ID),
471 fsparam_flag ("default_permissions", OPT_DEFAULT_PERMISSIONS),
472 fsparam_flag ("allow_other", OPT_ALLOW_OTHER),
473 fsparam_u32 ("max_read", OPT_MAX_READ),
474 fsparam_u32 ("blksize", OPT_BLKSIZE),
c7eb6869 475 fsparam_string ("subtype", OPT_SUBTYPE),
c30da2e9
DH
476 {}
477};
478
479static const struct fs_parameter_description fuse_fs_parameters = {
480 .name = "fuse",
481 .specs = fuse_param_specs,
d8a5ba45
MS
482};
483
c30da2e9 484static int fuse_parse_param(struct fs_context *fc, struct fs_parameter *param)
233a01fa 485{
c30da2e9
DH
486 struct fs_parse_result result;
487 struct fuse_fs_context *ctx = fc->fs_private;
488 int opt;
489
490 opt = fs_parse(fc, &fuse_fs_parameters, param, &result);
491 if (opt < 0)
492 return opt;
493
494 switch (opt) {
495 case OPT_SOURCE:
496 if (fc->source)
497 return invalf(fc, "fuse: Multiple sources specified");
498 fc->source = param->string;
499 param->string = NULL;
500 break;
501
502 case OPT_SUBTYPE:
503 if (ctx->subtype)
504 return invalf(fc, "fuse: Multiple subtypes specified");
505 ctx->subtype = param->string;
506 param->string = NULL;
507 return 0;
508
509 case OPT_FD:
510 ctx->fd = result.uint_32;
511 ctx->fd_present = 1;
512 break;
513
514 case OPT_ROOTMODE:
515 if (!fuse_valid_type(result.uint_32))
516 return invalf(fc, "fuse: Invalid rootmode");
517 ctx->rootmode = result.uint_32;
518 ctx->rootmode_present = 1;
519 break;
520
521 case OPT_USER_ID:
522 ctx->user_id = make_kuid(fc->user_ns, result.uint_32);
523 if (!uid_valid(ctx->user_id))
524 return invalf(fc, "fuse: Invalid user_id");
525 ctx->user_id_present = 1;
526 break;
527
528 case OPT_GROUP_ID:
529 ctx->group_id = make_kgid(fc->user_ns, result.uint_32);
530 if (!gid_valid(ctx->group_id))
531 return invalf(fc, "fuse: Invalid group_id");
532 ctx->group_id_present = 1;
533 break;
534
535 case OPT_DEFAULT_PERMISSIONS:
536 ctx->default_permissions = 1;
537 break;
538
539 case OPT_ALLOW_OTHER:
540 ctx->allow_other = 1;
541 break;
542
543 case OPT_MAX_READ:
544 ctx->max_read = result.uint_32;
545 break;
546
547 case OPT_BLKSIZE:
548 if (!ctx->is_bdev)
549 return invalf(fc, "fuse: blksize only supported for fuseblk");
550 ctx->blksize = result.uint_32;
551 break;
552
553 default:
554 return -EINVAL;
233a01fa 555 }
c30da2e9
DH
556
557 return 0;
233a01fa
MS
558}
559
c30da2e9 560static void fuse_free_fc(struct fs_context *fc)
d8a5ba45 561{
c30da2e9 562 struct fuse_fs_context *ctx = fc->fs_private;
5a533682 563
c30da2e9
DH
564 if (ctx) {
565 kfree(ctx->subtype);
566 kfree(ctx);
567 }
d8a5ba45
MS
568}
569
34c80b1d 570static int fuse_show_options(struct seq_file *m, struct dentry *root)
d8a5ba45 571{
34c80b1d
AV
572 struct super_block *sb = root->d_sb;
573 struct fuse_conn *fc = get_fuse_conn_super(sb);
d8a5ba45 574
8cb08329
EB
575 seq_printf(m, ",user_id=%u", from_kuid_munged(fc->user_ns, fc->user_id));
576 seq_printf(m, ",group_id=%u", from_kgid_munged(fc->user_ns, fc->group_id));
29433a29 577 if (fc->default_permissions)
1e9a4ed9 578 seq_puts(m, ",default_permissions");
29433a29 579 if (fc->allow_other)
1e9a4ed9 580 seq_puts(m, ",allow_other");
db50b96c
MS
581 if (fc->max_read != ~0)
582 seq_printf(m, ",max_read=%u", fc->max_read);
34c80b1d
AV
583 if (sb->s_bdev && sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
584 seq_printf(m, ",blksize=%lu", sb->s_blocksize);
d8a5ba45
MS
585 return 0;
586}
587
f88996a9
MS
588static void fuse_iqueue_init(struct fuse_iqueue *fiq)
589{
590 memset(fiq, 0, sizeof(struct fuse_iqueue));
76e43c8c 591 spin_lock_init(&fiq->lock);
f88996a9
MS
592 init_waitqueue_head(&fiq->waitq);
593 INIT_LIST_HEAD(&fiq->pending);
594 INIT_LIST_HEAD(&fiq->interrupts);
595 fiq->forget_list_tail = &fiq->forget_list_head;
e16714d8 596 fiq->connected = 1;
f88996a9
MS
597}
598
3a2b5b9c
MS
599static void fuse_pqueue_init(struct fuse_pqueue *fpq)
600{
be2ff42c
KT
601 unsigned int i;
602
45a91cb1 603 spin_lock_init(&fpq->lock);
be2ff42c
KT
604 for (i = 0; i < FUSE_PQ_HASH_SIZE; i++)
605 INIT_LIST_HEAD(&fpq->processing[i]);
3a2b5b9c 606 INIT_LIST_HEAD(&fpq->io);
e96edd94 607 fpq->connected = 1;
3a2b5b9c
MS
608}
609
8cb08329 610void fuse_conn_init(struct fuse_conn *fc, struct user_namespace *user_ns)
d8a5ba45 611{
0d179aa5
TH
612 memset(fc, 0, sizeof(*fc));
613 spin_lock_init(&fc->lock);
ae2dffa3 614 spin_lock_init(&fc->bg_lock);
3b463ae0 615 init_rwsem(&fc->killsb);
095fc40a 616 refcount_set(&fc->count, 1);
c3696046 617 atomic_set(&fc->dev_count, 1);
0d179aa5 618 init_waitqueue_head(&fc->blocked_waitq);
f88996a9 619 fuse_iqueue_init(&fc->iq);
0d179aa5
TH
620 INIT_LIST_HEAD(&fc->bg_queue);
621 INIT_LIST_HEAD(&fc->entry);
cc080e9e 622 INIT_LIST_HEAD(&fc->devices);
0d179aa5 623 atomic_set(&fc->num_waiting, 0);
7a6d3c8b
CH
624 fc->max_background = FUSE_DEFAULT_MAX_BACKGROUND;
625 fc->congestion_threshold = FUSE_DEFAULT_CONGESTION_THRESHOLD;
75126f55 626 atomic64_set(&fc->khctr, 0);
0d179aa5 627 fc->polled_files = RB_ROOT;
0aada884 628 fc->blocked = 0;
796523fb 629 fc->initialized = 0;
e16714d8 630 fc->connected = 1;
4510d86f 631 atomic64_set(&fc->attr_version, 1);
0d179aa5 632 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
0b6e9ea0 633 fc->pid_ns = get_pid_ns(task_active_pid_ns(current));
8cb08329 634 fc->user_ns = get_user_ns(user_ns);
8a3177db 635 fc->max_pages = FUSE_DEFAULT_MAX_PAGES_PER_REQ;
d8a5ba45 636}
0d179aa5 637EXPORT_SYMBOL_GPL(fuse_conn_init);
d8a5ba45 638
bafa9654
MS
639void fuse_conn_put(struct fuse_conn *fc)
640{
095fc40a 641 if (refcount_dec_and_test(&fc->count)) {
0b6e9ea0 642 put_pid_ns(fc->pid_ns);
8cb08329 643 put_user_ns(fc->user_ns);
43901aab 644 fc->release(fc);
d2a85164 645 }
bafa9654 646}
08cbf542 647EXPORT_SYMBOL_GPL(fuse_conn_put);
bafa9654
MS
648
649struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
650{
095fc40a 651 refcount_inc(&fc->count);
bafa9654
MS
652 return fc;
653}
08cbf542 654EXPORT_SYMBOL_GPL(fuse_conn_get);
bafa9654 655
b93f858a 656static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
d8a5ba45
MS
657{
658 struct fuse_attr attr;
659 memset(&attr, 0, sizeof(attr));
660
661 attr.mode = mode;
662 attr.ino = FUSE_ROOT_ID;
074406fa 663 attr.nlink = 1;
1fb69e78 664 return fuse_iget(sb, 1, 0, &attr, 0, 0);
d8a5ba45
MS
665}
666
1729a16c 667struct fuse_inode_handle {
dbd561d2
MS
668 u64 nodeid;
669 u32 generation;
670};
671
672static struct dentry *fuse_get_dentry(struct super_block *sb,
673 struct fuse_inode_handle *handle)
674{
33670fa2 675 struct fuse_conn *fc = get_fuse_conn_super(sb);
dbd561d2
MS
676 struct inode *inode;
677 struct dentry *entry;
678 int err = -ESTALE;
679
680 if (handle->nodeid == 0)
681 goto out_err;
682
683 inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid);
33670fa2
MS
684 if (!inode) {
685 struct fuse_entry_out outarg;
13983d06 686 const struct qstr name = QSTR_INIT(".", 1);
33670fa2
MS
687
688 if (!fc->export_support)
689 goto out_err;
690
33670fa2
MS
691 err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg,
692 &inode);
693 if (err && err != -ENOENT)
694 goto out_err;
695 if (err || !inode) {
696 err = -ESTALE;
697 goto out_err;
698 }
699 err = -EIO;
700 if (get_node_id(inode) != handle->nodeid)
701 goto out_iput;
702 }
dbd561d2
MS
703 err = -ESTALE;
704 if (inode->i_generation != handle->generation)
705 goto out_iput;
706
44003728 707 entry = d_obtain_alias(inode);
c35eebe9 708 if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID)
dbd561d2 709 fuse_invalidate_entry_cache(entry);
dbd561d2
MS
710
711 return entry;
712
713 out_iput:
714 iput(inode);
715 out_err:
716 return ERR_PTR(err);
717}
718
b0b0382b
AV
719static int fuse_encode_fh(struct inode *inode, u32 *fh, int *max_len,
720 struct inode *parent)
dbd561d2 721{
b0b0382b 722 int len = parent ? 6 : 3;
dbd561d2
MS
723 u64 nodeid;
724 u32 generation;
725
5fe0c237
AK
726 if (*max_len < len) {
727 *max_len = len;
94e07a75 728 return FILEID_INVALID;
5fe0c237 729 }
dbd561d2
MS
730
731 nodeid = get_fuse_inode(inode)->nodeid;
732 generation = inode->i_generation;
733
734 fh[0] = (u32)(nodeid >> 32);
735 fh[1] = (u32)(nodeid & 0xffffffff);
736 fh[2] = generation;
737
b0b0382b 738 if (parent) {
dbd561d2
MS
739 nodeid = get_fuse_inode(parent)->nodeid;
740 generation = parent->i_generation;
dbd561d2
MS
741
742 fh[3] = (u32)(nodeid >> 32);
743 fh[4] = (u32)(nodeid & 0xffffffff);
744 fh[5] = generation;
745 }
746
747 *max_len = len;
b0b0382b 748 return parent ? 0x82 : 0x81;
dbd561d2
MS
749}
750
751static struct dentry *fuse_fh_to_dentry(struct super_block *sb,
752 struct fid *fid, int fh_len, int fh_type)
753{
754 struct fuse_inode_handle handle;
755
756 if ((fh_type != 0x81 && fh_type != 0x82) || fh_len < 3)
757 return NULL;
758
759 handle.nodeid = (u64) fid->raw[0] << 32;
760 handle.nodeid |= (u64) fid->raw[1];
761 handle.generation = fid->raw[2];
762 return fuse_get_dentry(sb, &handle);
763}
764
765static struct dentry *fuse_fh_to_parent(struct super_block *sb,
766 struct fid *fid, int fh_len, int fh_type)
767{
768 struct fuse_inode_handle parent;
769
770 if (fh_type != 0x82 || fh_len < 6)
771 return NULL;
772
773 parent.nodeid = (u64) fid->raw[3] << 32;
774 parent.nodeid |= (u64) fid->raw[4];
775 parent.generation = fid->raw[5];
776 return fuse_get_dentry(sb, &parent);
777}
778
33670fa2
MS
779static struct dentry *fuse_get_parent(struct dentry *child)
780{
2b0143b5 781 struct inode *child_inode = d_inode(child);
33670fa2
MS
782 struct fuse_conn *fc = get_fuse_conn(child_inode);
783 struct inode *inode;
784 struct dentry *parent;
785 struct fuse_entry_out outarg;
13983d06 786 const struct qstr name = QSTR_INIT("..", 2);
33670fa2
MS
787 int err;
788
789 if (!fc->export_support)
790 return ERR_PTR(-ESTALE);
791
33670fa2
MS
792 err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode),
793 &name, &outarg, &inode);
44003728
CH
794 if (err) {
795 if (err == -ENOENT)
796 return ERR_PTR(-ESTALE);
33670fa2 797 return ERR_PTR(err);
33670fa2 798 }
44003728
CH
799
800 parent = d_obtain_alias(inode);
c35eebe9 801 if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID)
33670fa2 802 fuse_invalidate_entry_cache(parent);
33670fa2
MS
803
804 return parent;
805}
dbd561d2
MS
806
807static const struct export_operations fuse_export_operations = {
808 .fh_to_dentry = fuse_fh_to_dentry,
809 .fh_to_parent = fuse_fh_to_parent,
810 .encode_fh = fuse_encode_fh,
33670fa2 811 .get_parent = fuse_get_parent,
dbd561d2
MS
812};
813
ee9b6d61 814static const struct super_operations fuse_super_operations = {
d8a5ba45 815 .alloc_inode = fuse_alloc_inode,
9baf28bb 816 .free_inode = fuse_free_inode,
b57922d9 817 .evict_inode = fuse_evict_inode,
1e18bda8 818 .write_inode = fuse_write_inode,
ead5f0b5 819 .drop_inode = generic_delete_inode,
71421259 820 .remount_fs = fuse_remount_fs,
d8a5ba45 821 .put_super = fuse_put_super,
69a53bf2 822 .umount_begin = fuse_umount_begin,
e5e5558e 823 .statfs = fuse_statfs,
d8a5ba45
MS
824 .show_options = fuse_show_options,
825};
826
487ea5af
CH
827static void sanitize_global_limit(unsigned *limit)
828{
829 if (*limit == 0)
ca79b0c2 830 *limit = ((totalram_pages() << PAGE_SHIFT) >> 13) /
487ea5af
CH
831 sizeof(struct fuse_req);
832
833 if (*limit >= 1 << 16)
834 *limit = (1 << 16) - 1;
835}
836
e4dca7b7 837static int set_global_limit(const char *val, const struct kernel_param *kp)
487ea5af
CH
838{
839 int rv;
840
841 rv = param_set_uint(val, kp);
842 if (rv)
843 return rv;
844
845 sanitize_global_limit((unsigned *)kp->arg);
846
847 return 0;
848}
849
850static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg)
851{
852 int cap_sys_admin = capable(CAP_SYS_ADMIN);
853
854 if (arg->minor < 13)
855 return;
856
857 sanitize_global_limit(&max_user_bgreq);
858 sanitize_global_limit(&max_user_congthresh);
859
ae2dffa3 860 spin_lock(&fc->bg_lock);
487ea5af
CH
861 if (arg->max_background) {
862 fc->max_background = arg->max_background;
863
864 if (!cap_sys_admin && fc->max_background > max_user_bgreq)
865 fc->max_background = max_user_bgreq;
866 }
867 if (arg->congestion_threshold) {
868 fc->congestion_threshold = arg->congestion_threshold;
869
870 if (!cap_sys_admin &&
871 fc->congestion_threshold > max_user_congthresh)
872 fc->congestion_threshold = max_user_congthresh;
873 }
ae2dffa3 874 spin_unlock(&fc->bg_lock);
487ea5af
CH
875}
876
9b9a0469
MS
877static void process_init_reply(struct fuse_conn *fc, struct fuse_req *req)
878{
9b9a0469
MS
879 struct fuse_init_out *arg = &req->misc.init_out;
880
881 if (req->out.h.error || arg->major != FUSE_KERNEL_VERSION)
882 fc->conn_error = 1;
883 else {
9cd68455
MS
884 unsigned long ra_pages;
885
487ea5af
CH
886 process_init_limits(fc, arg);
887
9cd68455 888 if (arg->minor >= 6) {
09cbfeaf 889 ra_pages = arg->max_readahead / PAGE_SIZE;
9cd68455
MS
890 if (arg->flags & FUSE_ASYNC_READ)
891 fc->async_read = 1;
71421259
MS
892 if (!(arg->flags & FUSE_POSIX_LOCKS))
893 fc->no_lock = 1;
37fb3a30
MS
894 if (arg->minor >= 17) {
895 if (!(arg->flags & FUSE_FLOCK_LOCKS))
896 fc->no_flock = 1;
24114504
MS
897 } else {
898 if (!(arg->flags & FUSE_POSIX_LOCKS))
899 fc->no_flock = 1;
37fb3a30 900 }
6ff958ed
MS
901 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
902 fc->atomic_o_trunc = 1;
33670fa2
MS
903 if (arg->minor >= 9) {
904 /* LOOKUP has dependency on proto version */
905 if (arg->flags & FUSE_EXPORT_SUPPORT)
906 fc->export_support = 1;
907 }
78bb6cb9
MS
908 if (arg->flags & FUSE_BIG_WRITES)
909 fc->big_writes = 1;
e0a43ddc
MS
910 if (arg->flags & FUSE_DONT_MASK)
911 fc->dont_mask = 1;
72d0d248
BF
912 if (arg->flags & FUSE_AUTO_INVAL_DATA)
913 fc->auto_inval_data = 1;
ad2ba64d
KS
914 else if (arg->flags & FUSE_EXPLICIT_INVAL_DATA)
915 fc->explicit_inval_data = 1;
28420dad 916 if (arg->flags & FUSE_DO_READDIRPLUS) {
0b05b183 917 fc->do_readdirplus = 1;
28420dad
MS
918 if (arg->flags & FUSE_READDIRPLUS_AUTO)
919 fc->readdirplus_auto = 1;
920 }
60b9df7a
MS
921 if (arg->flags & FUSE_ASYNC_DIO)
922 fc->async_dio = 1;
4d99ff8f
PE
923 if (arg->flags & FUSE_WRITEBACK_CACHE)
924 fc->writeback_cache = 1;
5c672ab3
MS
925 if (arg->flags & FUSE_PARALLEL_DIROPS)
926 fc->parallel_dirops = 1;
5e940c1d
MS
927 if (arg->flags & FUSE_HANDLE_KILLPRIV)
928 fc->handle_killpriv = 1;
e27c9d38
MS
929 if (arg->time_gran && arg->time_gran <= 1000000000)
930 fc->sb->s_time_gran = arg->time_gran;
60bcc88a 931 if ((arg->flags & FUSE_POSIX_ACL)) {
29433a29 932 fc->default_permissions = 1;
60bcc88a
SF
933 fc->posix_acl = 1;
934 fc->sb->s_xattr = fuse_acl_xattr_handlers;
935 }
5571f1e6
DS
936 if (arg->flags & FUSE_CACHE_SYMLINKS)
937 fc->cache_symlinks = 1;
3b7008b2
SL
938 if (arg->flags & FUSE_ABORT_ERROR)
939 fc->abort_err = 1;
5da784cc
CS
940 if (arg->flags & FUSE_MAX_PAGES) {
941 fc->max_pages =
942 min_t(unsigned int, FUSE_MAX_MAX_PAGES,
943 max_t(unsigned int, arg->max_pages, 1));
944 }
71421259 945 } else {
09cbfeaf 946 ra_pages = fc->max_read / PAGE_SIZE;
71421259 947 fc->no_lock = 1;
37fb3a30 948 fc->no_flock = 1;
71421259 949 }
9cd68455 950
5f7f7543
JK
951 fc->sb->s_bdi->ra_pages =
952 min(fc->sb->s_bdi->ra_pages, ra_pages);
9b9a0469
MS
953 fc->minor = arg->minor;
954 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
f948d564 955 fc->max_write = max_t(unsigned, 4096, fc->max_write);
0ec7ca41 956 fc->conn_init = 1;
9b9a0469 957 }
9759bd51 958 fuse_set_initialized(fc);
08a53cdc 959 wake_up_all(&fc->blocked_waitq);
9b9a0469
MS
960}
961
ce1d5a49 962static void fuse_send_init(struct fuse_conn *fc, struct fuse_req *req)
9b9a0469 963{
9b9a0469 964 struct fuse_init_in *arg = &req->misc.init_in;
095da6cb 965
9b9a0469
MS
966 arg->major = FUSE_KERNEL_VERSION;
967 arg->minor = FUSE_KERNEL_MINOR_VERSION;
5f7f7543 968 arg->max_readahead = fc->sb->s_bdi->ra_pages * PAGE_SIZE;
78bb6cb9 969 arg->flags |= FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
37fb3a30 970 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES | FUSE_DONT_MASK |
69fe05c9 971 FUSE_SPLICE_WRITE | FUSE_SPLICE_MOVE | FUSE_SPLICE_READ |
9446385f 972 FUSE_FLOCK_LOCKS | FUSE_HAS_IOCTL_DIR | FUSE_AUTO_INVAL_DATA |
4d99ff8f 973 FUSE_DO_READDIRPLUS | FUSE_READDIRPLUS_AUTO | FUSE_ASYNC_DIO |
5c672ab3 974 FUSE_WRITEBACK_CACHE | FUSE_NO_OPEN_SUPPORT |
3b7008b2 975 FUSE_PARALLEL_DIROPS | FUSE_HANDLE_KILLPRIV | FUSE_POSIX_ACL |
d9a9ea94 976 FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
ad2ba64d 977 FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA;
9b9a0469
MS
978 req->in.h.opcode = FUSE_INIT;
979 req->in.numargs = 1;
980 req->in.args[0].size = sizeof(*arg);
981 req->in.args[0].value = arg;
982 req->out.numargs = 1;
3ad2f3fb 983 /* Variable length argument used for backward compatibility
9b9a0469
MS
984 with interface version < 7.5. Rest of init_out is zeroed
985 by do_get_request(), so a short reply is not a problem */
986 req->out.argvar = 1;
987 req->out.args[0].size = sizeof(struct fuse_init_out);
988 req->out.args[0].value = &req->misc.init_out;
989 req->end = process_init_reply;
b93f858a 990 fuse_request_send_background(fc, req);
9b9a0469
MS
991}
992
43901aab
TH
993static void fuse_free_conn(struct fuse_conn *fc)
994{
cc080e9e 995 WARN_ON(!list_empty(&fc->devices));
dd3e2c55 996 kfree_rcu(fc, rcu);
43901aab
TH
997}
998
a325f9b9
TH
999static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
1000{
1001 int err;
5f7f7543 1002 char *suffix = "";
a325f9b9 1003
69c8ebf8 1004 if (sb->s_bdev) {
5f7f7543 1005 suffix = "-fuseblk";
69c8ebf8
JK
1006 /*
1007 * sb->s_bdi points to blkdev's bdi however we want to redirect
1008 * it to our private bdi...
1009 */
1010 bdi_put(sb->s_bdi);
1011 sb->s_bdi = &noop_backing_dev_info;
1012 }
5f7f7543
JK
1013 err = super_setup_bdi_name(sb, "%u:%u%s", MAJOR(fc->dev),
1014 MINOR(fc->dev), suffix);
a325f9b9
TH
1015 if (err)
1016 return err;
1017
b5420237 1018 sb->s_bdi->ra_pages = VM_READAHEAD_PAGES;
5f7f7543
JK
1019 /* fuse does it's own writeback accounting */
1020 sb->s_bdi->capabilities = BDI_CAP_NO_ACCT_WB | BDI_CAP_STRICTLIMIT;
a325f9b9 1021
a325f9b9
TH
1022 /*
1023 * For a single fuse filesystem use max 1% of dirty +
1024 * writeback threshold.
1025 *
1026 * This gives about 1M of write buffer for memory maps on a
1027 * machine with 1G and 10% dirty_ratio, which should be more
1028 * than enough.
1029 *
1030 * Privileged users can raise it by writing to
1031 *
1032 * /sys/class/bdi/<bdi>/max_ratio
1033 */
5f7f7543 1034 bdi_set_max_ratio(sb->s_bdi, 1);
a325f9b9
TH
1035
1036 return 0;
1037}
1038
cc080e9e
MS
1039struct fuse_dev *fuse_dev_alloc(struct fuse_conn *fc)
1040{
1041 struct fuse_dev *fud;
be2ff42c 1042 struct list_head *pq;
cc080e9e
MS
1043
1044 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL);
be2ff42c
KT
1045 if (!fud)
1046 return NULL;
cc080e9e 1047
be2ff42c
KT
1048 pq = kcalloc(FUSE_PQ_HASH_SIZE, sizeof(struct list_head), GFP_KERNEL);
1049 if (!pq) {
1050 kfree(fud);
1051 return NULL;
cc080e9e
MS
1052 }
1053
be2ff42c
KT
1054 fud->pq.processing = pq;
1055 fud->fc = fuse_conn_get(fc);
1056 fuse_pqueue_init(&fud->pq);
1057
1058 spin_lock(&fc->lock);
1059 list_add_tail(&fud->entry, &fc->devices);
1060 spin_unlock(&fc->lock);
1061
cc080e9e
MS
1062 return fud;
1063}
1064EXPORT_SYMBOL_GPL(fuse_dev_alloc);
1065
1066void fuse_dev_free(struct fuse_dev *fud)
1067{
1068 struct fuse_conn *fc = fud->fc;
1069
1070 if (fc) {
1071 spin_lock(&fc->lock);
1072 list_del(&fud->entry);
1073 spin_unlock(&fc->lock);
1074
1075 fuse_conn_put(fc);
1076 }
d72f70da 1077 kfree(fud->pq.processing);
cc080e9e
MS
1078 kfree(fud);
1079}
1080EXPORT_SYMBOL_GPL(fuse_dev_free);
1081
c30da2e9 1082static int fuse_fill_super(struct super_block *sb, struct fs_context *fsc)
d8a5ba45 1083{
c30da2e9 1084 struct fuse_fs_context *ctx = fsc->fs_private;
cc080e9e 1085 struct fuse_dev *fud;
d8a5ba45
MS
1086 struct fuse_conn *fc;
1087 struct inode *root;
d8a5ba45 1088 struct file *file;
f543f253 1089 struct dentry *root_dentry;
ce1d5a49 1090 struct fuse_req *init_req;
d8a5ba45 1091 int err;
d8091614 1092 int is_bdev = sb->s_bdev != NULL;
d8a5ba45 1093
c2b8f006 1094 err = -EINVAL;
1751e8a6 1095 if (sb->s_flags & SB_MANDLOCK)
c2b8f006 1096 goto err;
71421259 1097
1751e8a6 1098 sb->s_flags &= ~(SB_NOSEC | SB_I_VERSION);
9e1f1de0 1099
d8091614 1100 if (is_bdev) {
875d95ec 1101#ifdef CONFIG_BLOCK
c2b8f006 1102 err = -EINVAL;
c30da2e9 1103 if (!sb_set_blocksize(sb, ctx->blksize))
c2b8f006 1104 goto err;
875d95ec 1105#endif
d8091614 1106 } else {
09cbfeaf
KS
1107 sb->s_blocksize = PAGE_SIZE;
1108 sb->s_blocksize_bits = PAGE_SHIFT;
d8091614 1109 }
c30da2e9
DH
1110
1111 sb->s_subtype = ctx->subtype;
1112 ctx->subtype = NULL;
d8a5ba45
MS
1113 sb->s_magic = FUSE_SUPER_MAGIC;
1114 sb->s_op = &fuse_super_operations;
703c7362 1115 sb->s_xattr = fuse_xattr_handlers;
d8a5ba45 1116 sb->s_maxbytes = MAX_LFS_FILESIZE;
0a2da9b2 1117 sb->s_time_gran = 1;
dbd561d2 1118 sb->s_export_op = &fuse_export_operations;
0834136a
MZ
1119 sb->s_iflags |= SB_I_IMA_UNVERIFIABLE_SIGNATURE;
1120 if (sb->s_user_ns != &init_user_ns)
1121 sb->s_iflags |= SB_I_UNTRUSTED_MOUNTER;
d8a5ba45 1122
c30da2e9 1123 file = fget(ctx->fd);
c2b8f006 1124 err = -EINVAL;
d8a5ba45 1125 if (!file)
c2b8f006 1126 goto err;
d8a5ba45 1127
8cb08329
EB
1128 /*
1129 * Require mount to happen from the same user namespace which
1130 * opened /dev/fuse to prevent potential attacks.
1131 */
1132 if (file->f_op != &fuse_dev_operations ||
1133 file->f_cred->user_ns != sb->s_user_ns)
c2b8f006 1134 goto err_fput;
0720b315 1135
e45b2546
EB
1136 /*
1137 * If we are not in the initial user namespace posix
1138 * acls must be translated.
1139 */
1140 if (sb->s_user_ns != &init_user_ns)
1141 sb->s_xattr = fuse_no_acl_xattr_handlers;
1142
0d179aa5 1143 fc = kmalloc(sizeof(*fc), GFP_KERNEL);
c2b8f006
MS
1144 err = -ENOMEM;
1145 if (!fc)
1146 goto err_fput;
d8a5ba45 1147
8cb08329 1148 fuse_conn_init(fc, sb->s_user_ns);
0ad0b325 1149 fc->release = fuse_free_conn;
a325f9b9 1150
cc080e9e
MS
1151 fud = fuse_dev_alloc(fc);
1152 if (!fud)
1153 goto err_put_conn;
1154
a325f9b9 1155 fc->dev = sb->s_dev;
3b463ae0 1156 fc->sb = sb;
a325f9b9
TH
1157 err = fuse_bdi_init(fc, sb);
1158 if (err)
cc080e9e 1159 goto err_dev_free;
0d179aa5 1160
e0a43ddc 1161 /* Handle umasking inside the fuse code */
1751e8a6 1162 if (sb->s_flags & SB_POSIXACL)
e0a43ddc 1163 fc->dont_mask = 1;
1751e8a6 1164 sb->s_flags |= SB_POSIXACL;
e0a43ddc 1165
c30da2e9
DH
1166 fc->default_permissions = ctx->default_permissions;
1167 fc->allow_other = ctx->allow_other;
1168 fc->user_id = ctx->user_id;
1169 fc->group_id = ctx->group_id;
1170 fc->max_read = max_t(unsigned, 4096, ctx->max_read);
1ccd1ea2 1171 fc->destroy = is_bdev;
d8a5ba45 1172
f543f253
MS
1173 /* Used by get_root_inode() */
1174 sb->s_fs_info = fc;
1175
d8a5ba45 1176 err = -ENOMEM;
c30da2e9 1177 root = fuse_get_root_inode(sb, ctx->rootmode);
0ce267ff 1178 sb->s_d_op = &fuse_root_dentry_operations;
48fde701
AV
1179 root_dentry = d_make_root(root);
1180 if (!root_dentry)
cc080e9e 1181 goto err_dev_free;
0ce267ff 1182 /* Root dentry doesn't have .d_revalidate */
c35eebe9 1183 sb->s_d_op = &fuse_dentry_operations;
f543f253 1184
4250c066 1185 init_req = fuse_request_alloc(0);
ce1d5a49
MS
1186 if (!init_req)
1187 goto err_put_root;
825d6d33 1188 __set_bit(FR_BACKGROUND, &init_req->flags);
ce1d5a49 1189
bafa9654 1190 mutex_lock(&fuse_mutex);
8aa09a50
MS
1191 err = -EINVAL;
1192 if (file->private_data)
bafa9654 1193 goto err_unlock;
8aa09a50 1194
bafa9654
MS
1195 err = fuse_ctl_add_conn(fc);
1196 if (err)
1197 goto err_unlock;
1198
1199 list_add_tail(&fc->entry, &fuse_conn_list);
f543f253 1200 sb->s_root = root_dentry;
cc080e9e 1201 file->private_data = fud;
bafa9654 1202 mutex_unlock(&fuse_mutex);
0720b315
MS
1203 /*
1204 * atomic_dec_and_test() in fput() provides the necessary
1205 * memory barrier for file->private_data to be visible on all
1206 * CPUs after this
1207 */
1208 fput(file);
f543f253 1209
ce1d5a49 1210 fuse_send_init(fc, init_req);
f543f253 1211
d8a5ba45
MS
1212 return 0;
1213
bafa9654
MS
1214 err_unlock:
1215 mutex_unlock(&fuse_mutex);
ce1d5a49 1216 fuse_request_free(init_req);
f543f253
MS
1217 err_put_root:
1218 dput(root_dentry);
cc080e9e
MS
1219 err_dev_free:
1220 fuse_dev_free(fud);
c2b8f006 1221 err_put_conn:
bafa9654 1222 fuse_conn_put(fc);
543b8f86 1223 sb->s_fs_info = NULL;
c2b8f006
MS
1224 err_fput:
1225 fput(file);
1226 err:
d8a5ba45
MS
1227 return err;
1228}
1229
c30da2e9 1230static int fuse_get_tree(struct fs_context *fc)
d8a5ba45 1231{
c30da2e9
DH
1232 struct fuse_fs_context *ctx = fc->fs_private;
1233
1234 if (!ctx->fd_present || !ctx->rootmode_present ||
1235 !ctx->user_id_present || !ctx->group_id_present)
1236 return -EINVAL;
1237
1238#ifdef CONFIG_BLOCK
1239 if (ctx->is_bdev)
1240 return get_tree_bdev(fc, fuse_fill_super);
1241#endif
1242
1243 return get_tree_nodev(fc, fuse_fill_super);
1244}
1245
1246static const struct fs_context_operations fuse_context_ops = {
1247 .free = fuse_free_fc,
1248 .parse_param = fuse_parse_param,
1249 .get_tree = fuse_get_tree,
1250};
1251
1252/*
1253 * Set up the filesystem mount context.
1254 */
1255static int fuse_init_fs_context(struct fs_context *fc)
1256{
1257 struct fuse_fs_context *ctx;
1258
1259 ctx = kzalloc(sizeof(struct fuse_fs_context), GFP_KERNEL);
1260 if (!ctx)
1261 return -ENOMEM;
1262
1263 ctx->max_read = ~0;
1264 ctx->blksize = FUSE_DEFAULT_BLKSIZE;
1265
1266#ifdef CONFIG_BLOCK
1267 if (fc->fs_type == &fuseblk_fs_type)
1268 ctx->is_bdev = true;
1269#endif
1270
1271 fc->fs_private = ctx;
1272 fc->ops = &fuse_context_ops;
1273 return 0;
d8a5ba45
MS
1274}
1275
e8f3bd77 1276static void fuse_sb_destroy(struct super_block *sb)
3b463ae0
JM
1277{
1278 struct fuse_conn *fc = get_fuse_conn_super(sb);
1279
1280 if (fc) {
1ccd1ea2
MS
1281 if (fc->destroy)
1282 fuse_send_destroy(fc);
e8f3bd77 1283
eb98e3bd 1284 fuse_abort_conn(fc);
e8f3bd77
MS
1285 fuse_wait_aborted(fc);
1286
3b463ae0
JM
1287 down_write(&fc->killsb);
1288 fc->sb = NULL;
1289 up_write(&fc->killsb);
1290 }
e8f3bd77 1291}
3b463ae0 1292
e8f3bd77
MS
1293static void fuse_kill_sb_anon(struct super_block *sb)
1294{
1295 fuse_sb_destroy(sb);
3b463ae0
JM
1296 kill_anon_super(sb);
1297}
1298
875d95ec
MS
1299static struct file_system_type fuse_fs_type = {
1300 .owner = THIS_MODULE,
1301 .name = "fuse",
4ad769f3 1302 .fs_flags = FS_HAS_SUBTYPE | FS_USERNS_MOUNT,
c30da2e9
DH
1303 .init_fs_context = fuse_init_fs_context,
1304 .parameters = &fuse_fs_parameters,
3b463ae0 1305 .kill_sb = fuse_kill_sb_anon,
875d95ec 1306};
7f78e035 1307MODULE_ALIAS_FS("fuse");
875d95ec
MS
1308
1309#ifdef CONFIG_BLOCK
3b463ae0
JM
1310static void fuse_kill_sb_blk(struct super_block *sb)
1311{
e8f3bd77 1312 fuse_sb_destroy(sb);
3b463ae0
JM
1313 kill_block_super(sb);
1314}
1315
d6392f87
MS
1316static struct file_system_type fuseblk_fs_type = {
1317 .owner = THIS_MODULE,
1318 .name = "fuseblk",
c30da2e9
DH
1319 .init_fs_context = fuse_init_fs_context,
1320 .parameters = &fuse_fs_parameters,
3b463ae0 1321 .kill_sb = fuse_kill_sb_blk,
edad01e2 1322 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
d6392f87 1323};
7f78e035 1324MODULE_ALIAS_FS("fuseblk");
d6392f87 1325
875d95ec
MS
1326static inline int register_fuseblk(void)
1327{
1328 return register_filesystem(&fuseblk_fs_type);
1329}
1330
1331static inline void unregister_fuseblk(void)
1332{
1333 unregister_filesystem(&fuseblk_fs_type);
1334}
1335#else
1336static inline int register_fuseblk(void)
1337{
1338 return 0;
1339}
1340
1341static inline void unregister_fuseblk(void)
1342{
1343}
1344#endif
1345
51cc5068 1346static void fuse_inode_init_once(void *foo)
d8a5ba45 1347{
1729a16c 1348 struct inode *inode = foo;
d8a5ba45 1349
a35afb83 1350 inode_init_once(inode);
d8a5ba45
MS
1351}
1352
1353static int __init fuse_fs_init(void)
1354{
1355 int err;
1356
d6392f87 1357 fuse_inode_cachep = kmem_cache_create("fuse_inode",
df206988
JW
1358 sizeof(struct fuse_inode), 0,
1359 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT|SLAB_RECLAIM_ACCOUNT,
1360 fuse_inode_init_once);
d6392f87
MS
1361 err = -ENOMEM;
1362 if (!fuse_inode_cachep)
988f0325
AV
1363 goto out;
1364
1365 err = register_fuseblk();
1366 if (err)
1367 goto out2;
1368
1369 err = register_filesystem(&fuse_fs_type);
1370 if (err)
1371 goto out3;
d6392f87
MS
1372
1373 return 0;
d8a5ba45 1374
988f0325 1375 out3:
875d95ec 1376 unregister_fuseblk();
988f0325
AV
1377 out2:
1378 kmem_cache_destroy(fuse_inode_cachep);
d6392f87 1379 out:
d8a5ba45
MS
1380 return err;
1381}
1382
1383static void fuse_fs_cleanup(void)
1384{
1385 unregister_filesystem(&fuse_fs_type);
875d95ec 1386 unregister_fuseblk();
8c0a8537
KS
1387
1388 /*
1389 * Make sure all delayed rcu free inodes are flushed before we
1390 * destroy cache.
1391 */
1392 rcu_barrier();
d8a5ba45
MS
1393 kmem_cache_destroy(fuse_inode_cachep);
1394}
1395
5c89e17e 1396static struct kobject *fuse_kobj;
5c89e17e 1397
f543f253
MS
1398static int fuse_sysfs_init(void)
1399{
1400 int err;
1401
00d26666 1402 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
5c89e17e
GKH
1403 if (!fuse_kobj) {
1404 err = -ENOMEM;
f543f253 1405 goto out_err;
5c89e17e 1406 }
f543f253 1407
f9bb4882
EB
1408 err = sysfs_create_mount_point(fuse_kobj, "connections");
1409 if (err)
f543f253
MS
1410 goto out_fuse_unregister;
1411
1412 return 0;
1413
1414 out_fuse_unregister:
197b12d6 1415 kobject_put(fuse_kobj);
f543f253
MS
1416 out_err:
1417 return err;
1418}
1419
1420static void fuse_sysfs_cleanup(void)
1421{
f9bb4882 1422 sysfs_remove_mount_point(fuse_kobj, "connections");
197b12d6 1423 kobject_put(fuse_kobj);
f543f253
MS
1424}
1425
d8a5ba45
MS
1426static int __init fuse_init(void)
1427{
1428 int res;
1429
f2294482
KS
1430 pr_info("init (API version %i.%i)\n",
1431 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
d8a5ba45 1432
bafa9654 1433 INIT_LIST_HEAD(&fuse_conn_list);
d8a5ba45
MS
1434 res = fuse_fs_init();
1435 if (res)
1436 goto err;
1437
334f485d
MS
1438 res = fuse_dev_init();
1439 if (res)
1440 goto err_fs_cleanup;
1441
f543f253
MS
1442 res = fuse_sysfs_init();
1443 if (res)
1444 goto err_dev_cleanup;
1445
bafa9654
MS
1446 res = fuse_ctl_init();
1447 if (res)
1448 goto err_sysfs_cleanup;
1449
487ea5af
CH
1450 sanitize_global_limit(&max_user_bgreq);
1451 sanitize_global_limit(&max_user_congthresh);
1452
d8a5ba45
MS
1453 return 0;
1454
bafa9654
MS
1455 err_sysfs_cleanup:
1456 fuse_sysfs_cleanup();
f543f253
MS
1457 err_dev_cleanup:
1458 fuse_dev_cleanup();
334f485d
MS
1459 err_fs_cleanup:
1460 fuse_fs_cleanup();
d8a5ba45
MS
1461 err:
1462 return res;
1463}
1464
1465static void __exit fuse_exit(void)
1466{
f2294482 1467 pr_debug("exit\n");
d8a5ba45 1468
bafa9654 1469 fuse_ctl_cleanup();
f543f253 1470 fuse_sysfs_cleanup();
d8a5ba45 1471 fuse_fs_cleanup();
334f485d 1472 fuse_dev_cleanup();
d8a5ba45
MS
1473}
1474
1475module_init(fuse_init);
1476module_exit(fuse_exit);