fuse: export fuse_send_init_request()
[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{
f22f812d
MS
829 /*
830 * The default maximum number of async requests is calculated to consume
831 * 1/2^13 of the total memory, assuming 392 bytes per request.
832 */
487ea5af 833 if (*limit == 0)
f22f812d 834 *limit = ((totalram_pages() << PAGE_SHIFT) >> 13) / 392;
487ea5af
CH
835
836 if (*limit >= 1 << 16)
837 *limit = (1 << 16) - 1;
838}
839
e4dca7b7 840static int set_global_limit(const char *val, const struct kernel_param *kp)
487ea5af
CH
841{
842 int rv;
843
844 rv = param_set_uint(val, kp);
845 if (rv)
846 return rv;
847
848 sanitize_global_limit((unsigned *)kp->arg);
849
850 return 0;
851}
852
853static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg)
854{
855 int cap_sys_admin = capable(CAP_SYS_ADMIN);
856
857 if (arg->minor < 13)
858 return;
859
860 sanitize_global_limit(&max_user_bgreq);
861 sanitize_global_limit(&max_user_congthresh);
862
ae2dffa3 863 spin_lock(&fc->bg_lock);
487ea5af
CH
864 if (arg->max_background) {
865 fc->max_background = arg->max_background;
866
867 if (!cap_sys_admin && fc->max_background > max_user_bgreq)
868 fc->max_background = max_user_bgreq;
869 }
870 if (arg->congestion_threshold) {
871 fc->congestion_threshold = arg->congestion_threshold;
872
873 if (!cap_sys_admin &&
874 fc->congestion_threshold > max_user_congthresh)
875 fc->congestion_threshold = max_user_congthresh;
876 }
ae2dffa3 877 spin_unlock(&fc->bg_lock);
487ea5af
CH
878}
879
615047ef
MS
880struct fuse_init_args {
881 struct fuse_args args;
882 struct fuse_init_in in;
883 struct fuse_init_out out;
884};
885
886static void process_init_reply(struct fuse_conn *fc, struct fuse_args *args,
887 int error)
9b9a0469 888{
615047ef
MS
889 struct fuse_init_args *ia = container_of(args, typeof(*ia), args);
890 struct fuse_init_out *arg = &ia->out;
9b9a0469 891
615047ef 892 if (error || arg->major != FUSE_KERNEL_VERSION)
9b9a0469
MS
893 fc->conn_error = 1;
894 else {
9cd68455
MS
895 unsigned long ra_pages;
896
487ea5af
CH
897 process_init_limits(fc, arg);
898
9cd68455 899 if (arg->minor >= 6) {
09cbfeaf 900 ra_pages = arg->max_readahead / PAGE_SIZE;
9cd68455
MS
901 if (arg->flags & FUSE_ASYNC_READ)
902 fc->async_read = 1;
71421259
MS
903 if (!(arg->flags & FUSE_POSIX_LOCKS))
904 fc->no_lock = 1;
37fb3a30
MS
905 if (arg->minor >= 17) {
906 if (!(arg->flags & FUSE_FLOCK_LOCKS))
907 fc->no_flock = 1;
24114504
MS
908 } else {
909 if (!(arg->flags & FUSE_POSIX_LOCKS))
910 fc->no_flock = 1;
37fb3a30 911 }
6ff958ed
MS
912 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
913 fc->atomic_o_trunc = 1;
33670fa2
MS
914 if (arg->minor >= 9) {
915 /* LOOKUP has dependency on proto version */
916 if (arg->flags & FUSE_EXPORT_SUPPORT)
917 fc->export_support = 1;
918 }
78bb6cb9
MS
919 if (arg->flags & FUSE_BIG_WRITES)
920 fc->big_writes = 1;
e0a43ddc
MS
921 if (arg->flags & FUSE_DONT_MASK)
922 fc->dont_mask = 1;
72d0d248
BF
923 if (arg->flags & FUSE_AUTO_INVAL_DATA)
924 fc->auto_inval_data = 1;
ad2ba64d
KS
925 else if (arg->flags & FUSE_EXPLICIT_INVAL_DATA)
926 fc->explicit_inval_data = 1;
28420dad 927 if (arg->flags & FUSE_DO_READDIRPLUS) {
0b05b183 928 fc->do_readdirplus = 1;
28420dad
MS
929 if (arg->flags & FUSE_READDIRPLUS_AUTO)
930 fc->readdirplus_auto = 1;
931 }
60b9df7a
MS
932 if (arg->flags & FUSE_ASYNC_DIO)
933 fc->async_dio = 1;
4d99ff8f
PE
934 if (arg->flags & FUSE_WRITEBACK_CACHE)
935 fc->writeback_cache = 1;
5c672ab3
MS
936 if (arg->flags & FUSE_PARALLEL_DIROPS)
937 fc->parallel_dirops = 1;
5e940c1d
MS
938 if (arg->flags & FUSE_HANDLE_KILLPRIV)
939 fc->handle_killpriv = 1;
e27c9d38
MS
940 if (arg->time_gran && arg->time_gran <= 1000000000)
941 fc->sb->s_time_gran = arg->time_gran;
60bcc88a 942 if ((arg->flags & FUSE_POSIX_ACL)) {
29433a29 943 fc->default_permissions = 1;
60bcc88a
SF
944 fc->posix_acl = 1;
945 fc->sb->s_xattr = fuse_acl_xattr_handlers;
946 }
5571f1e6
DS
947 if (arg->flags & FUSE_CACHE_SYMLINKS)
948 fc->cache_symlinks = 1;
3b7008b2
SL
949 if (arg->flags & FUSE_ABORT_ERROR)
950 fc->abort_err = 1;
5da784cc
CS
951 if (arg->flags & FUSE_MAX_PAGES) {
952 fc->max_pages =
953 min_t(unsigned int, FUSE_MAX_MAX_PAGES,
954 max_t(unsigned int, arg->max_pages, 1));
955 }
71421259 956 } else {
09cbfeaf 957 ra_pages = fc->max_read / PAGE_SIZE;
71421259 958 fc->no_lock = 1;
37fb3a30 959 fc->no_flock = 1;
71421259 960 }
9cd68455 961
5f7f7543
JK
962 fc->sb->s_bdi->ra_pages =
963 min(fc->sb->s_bdi->ra_pages, ra_pages);
9b9a0469
MS
964 fc->minor = arg->minor;
965 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
f948d564 966 fc->max_write = max_t(unsigned, 4096, fc->max_write);
0ec7ca41 967 fc->conn_init = 1;
9b9a0469 968 }
615047ef
MS
969 kfree(ia);
970
9759bd51 971 fuse_set_initialized(fc);
08a53cdc 972 wake_up_all(&fc->blocked_waitq);
9b9a0469
MS
973}
974
95a84cdb 975void fuse_send_init(struct fuse_conn *fc)
9b9a0469 976{
615047ef 977 struct fuse_init_args *ia;
095da6cb 978
615047ef
MS
979 ia = kzalloc(sizeof(*ia), GFP_KERNEL | __GFP_NOFAIL);
980
981 ia->in.major = FUSE_KERNEL_VERSION;
982 ia->in.minor = FUSE_KERNEL_MINOR_VERSION;
983 ia->in.max_readahead = fc->sb->s_bdi->ra_pages * PAGE_SIZE;
984 ia->in.flags |=
985 FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
37fb3a30 986 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES | FUSE_DONT_MASK |
69fe05c9 987 FUSE_SPLICE_WRITE | FUSE_SPLICE_MOVE | FUSE_SPLICE_READ |
9446385f 988 FUSE_FLOCK_LOCKS | FUSE_HAS_IOCTL_DIR | FUSE_AUTO_INVAL_DATA |
4d99ff8f 989 FUSE_DO_READDIRPLUS | FUSE_READDIRPLUS_AUTO | FUSE_ASYNC_DIO |
5c672ab3 990 FUSE_WRITEBACK_CACHE | FUSE_NO_OPEN_SUPPORT |
3b7008b2 991 FUSE_PARALLEL_DIROPS | FUSE_HANDLE_KILLPRIV | FUSE_POSIX_ACL |
d9a9ea94 992 FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
ad2ba64d 993 FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA;
615047ef
MS
994 ia->args.opcode = FUSE_INIT;
995 ia->args.in_numargs = 1;
996 ia->args.in_args[0].size = sizeof(ia->in);
997 ia->args.in_args[0].value = &ia->in;
998 ia->args.out_numargs = 1;
3ad2f3fb 999 /* Variable length argument used for backward compatibility
9b9a0469
MS
1000 with interface version < 7.5. Rest of init_out is zeroed
1001 by do_get_request(), so a short reply is not a problem */
615047ef
MS
1002 ia->args.out_argvar = 1;
1003 ia->args.out_args[0].size = sizeof(ia->out);
1004 ia->args.out_args[0].value = &ia->out;
1005 ia->args.force = true;
1006 ia->args.nocreds = true;
1007 ia->args.end = process_init_reply;
1008
1009 if (fuse_simple_background(fc, &ia->args, GFP_KERNEL) != 0)
1010 process_init_reply(fc, &ia->args, -ENOTCONN);
9b9a0469 1011}
95a84cdb 1012EXPORT_SYMBOL_GPL(fuse_send_init);
9b9a0469 1013
43901aab
TH
1014static void fuse_free_conn(struct fuse_conn *fc)
1015{
cc080e9e 1016 WARN_ON(!list_empty(&fc->devices));
dd3e2c55 1017 kfree_rcu(fc, rcu);
43901aab
TH
1018}
1019
a325f9b9
TH
1020static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
1021{
1022 int err;
5f7f7543 1023 char *suffix = "";
a325f9b9 1024
69c8ebf8 1025 if (sb->s_bdev) {
5f7f7543 1026 suffix = "-fuseblk";
69c8ebf8
JK
1027 /*
1028 * sb->s_bdi points to blkdev's bdi however we want to redirect
1029 * it to our private bdi...
1030 */
1031 bdi_put(sb->s_bdi);
1032 sb->s_bdi = &noop_backing_dev_info;
1033 }
5f7f7543
JK
1034 err = super_setup_bdi_name(sb, "%u:%u%s", MAJOR(fc->dev),
1035 MINOR(fc->dev), suffix);
a325f9b9
TH
1036 if (err)
1037 return err;
1038
b5420237 1039 sb->s_bdi->ra_pages = VM_READAHEAD_PAGES;
5f7f7543
JK
1040 /* fuse does it's own writeback accounting */
1041 sb->s_bdi->capabilities = BDI_CAP_NO_ACCT_WB | BDI_CAP_STRICTLIMIT;
a325f9b9 1042
a325f9b9
TH
1043 /*
1044 * For a single fuse filesystem use max 1% of dirty +
1045 * writeback threshold.
1046 *
1047 * This gives about 1M of write buffer for memory maps on a
1048 * machine with 1G and 10% dirty_ratio, which should be more
1049 * than enough.
1050 *
1051 * Privileged users can raise it by writing to
1052 *
1053 * /sys/class/bdi/<bdi>/max_ratio
1054 */
5f7f7543 1055 bdi_set_max_ratio(sb->s_bdi, 1);
a325f9b9
TH
1056
1057 return 0;
1058}
1059
cc080e9e
MS
1060struct fuse_dev *fuse_dev_alloc(struct fuse_conn *fc)
1061{
1062 struct fuse_dev *fud;
be2ff42c 1063 struct list_head *pq;
cc080e9e
MS
1064
1065 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL);
be2ff42c
KT
1066 if (!fud)
1067 return NULL;
cc080e9e 1068
be2ff42c
KT
1069 pq = kcalloc(FUSE_PQ_HASH_SIZE, sizeof(struct list_head), GFP_KERNEL);
1070 if (!pq) {
1071 kfree(fud);
1072 return NULL;
cc080e9e
MS
1073 }
1074
be2ff42c
KT
1075 fud->pq.processing = pq;
1076 fud->fc = fuse_conn_get(fc);
1077 fuse_pqueue_init(&fud->pq);
1078
1079 spin_lock(&fc->lock);
1080 list_add_tail(&fud->entry, &fc->devices);
1081 spin_unlock(&fc->lock);
1082
cc080e9e
MS
1083 return fud;
1084}
1085EXPORT_SYMBOL_GPL(fuse_dev_alloc);
1086
1087void fuse_dev_free(struct fuse_dev *fud)
1088{
1089 struct fuse_conn *fc = fud->fc;
1090
1091 if (fc) {
1092 spin_lock(&fc->lock);
1093 list_del(&fud->entry);
1094 spin_unlock(&fc->lock);
1095
1096 fuse_conn_put(fc);
1097 }
d72f70da 1098 kfree(fud->pq.processing);
cc080e9e
MS
1099 kfree(fud);
1100}
1101EXPORT_SYMBOL_GPL(fuse_dev_free);
1102
c30da2e9 1103static int fuse_fill_super(struct super_block *sb, struct fs_context *fsc)
d8a5ba45 1104{
c30da2e9 1105 struct fuse_fs_context *ctx = fsc->fs_private;
cc080e9e 1106 struct fuse_dev *fud;
d8a5ba45
MS
1107 struct fuse_conn *fc;
1108 struct inode *root;
d8a5ba45 1109 struct file *file;
f543f253 1110 struct dentry *root_dentry;
d8a5ba45 1111 int err;
d8091614 1112 int is_bdev = sb->s_bdev != NULL;
d8a5ba45 1113
c2b8f006 1114 err = -EINVAL;
1751e8a6 1115 if (sb->s_flags & SB_MANDLOCK)
c2b8f006 1116 goto err;
71421259 1117
1751e8a6 1118 sb->s_flags &= ~(SB_NOSEC | SB_I_VERSION);
9e1f1de0 1119
d8091614 1120 if (is_bdev) {
875d95ec 1121#ifdef CONFIG_BLOCK
c2b8f006 1122 err = -EINVAL;
c30da2e9 1123 if (!sb_set_blocksize(sb, ctx->blksize))
c2b8f006 1124 goto err;
875d95ec 1125#endif
d8091614 1126 } else {
09cbfeaf
KS
1127 sb->s_blocksize = PAGE_SIZE;
1128 sb->s_blocksize_bits = PAGE_SHIFT;
d8091614 1129 }
c30da2e9
DH
1130
1131 sb->s_subtype = ctx->subtype;
1132 ctx->subtype = NULL;
d8a5ba45
MS
1133 sb->s_magic = FUSE_SUPER_MAGIC;
1134 sb->s_op = &fuse_super_operations;
703c7362 1135 sb->s_xattr = fuse_xattr_handlers;
d8a5ba45 1136 sb->s_maxbytes = MAX_LFS_FILESIZE;
0a2da9b2 1137 sb->s_time_gran = 1;
dbd561d2 1138 sb->s_export_op = &fuse_export_operations;
0834136a
MZ
1139 sb->s_iflags |= SB_I_IMA_UNVERIFIABLE_SIGNATURE;
1140 if (sb->s_user_ns != &init_user_ns)
1141 sb->s_iflags |= SB_I_UNTRUSTED_MOUNTER;
d8a5ba45 1142
c30da2e9 1143 file = fget(ctx->fd);
c2b8f006 1144 err = -EINVAL;
d8a5ba45 1145 if (!file)
c2b8f006 1146 goto err;
d8a5ba45 1147
8cb08329
EB
1148 /*
1149 * Require mount to happen from the same user namespace which
1150 * opened /dev/fuse to prevent potential attacks.
1151 */
1152 if (file->f_op != &fuse_dev_operations ||
1153 file->f_cred->user_ns != sb->s_user_ns)
c2b8f006 1154 goto err_fput;
0720b315 1155
e45b2546
EB
1156 /*
1157 * If we are not in the initial user namespace posix
1158 * acls must be translated.
1159 */
1160 if (sb->s_user_ns != &init_user_ns)
1161 sb->s_xattr = fuse_no_acl_xattr_handlers;
1162
0d179aa5 1163 fc = kmalloc(sizeof(*fc), GFP_KERNEL);
c2b8f006
MS
1164 err = -ENOMEM;
1165 if (!fc)
1166 goto err_fput;
d8a5ba45 1167
8cb08329 1168 fuse_conn_init(fc, sb->s_user_ns);
0ad0b325 1169 fc->release = fuse_free_conn;
a325f9b9 1170
cc080e9e
MS
1171 fud = fuse_dev_alloc(fc);
1172 if (!fud)
1173 goto err_put_conn;
1174
a325f9b9 1175 fc->dev = sb->s_dev;
3b463ae0 1176 fc->sb = sb;
a325f9b9
TH
1177 err = fuse_bdi_init(fc, sb);
1178 if (err)
cc080e9e 1179 goto err_dev_free;
0d179aa5 1180
e0a43ddc 1181 /* Handle umasking inside the fuse code */
1751e8a6 1182 if (sb->s_flags & SB_POSIXACL)
e0a43ddc 1183 fc->dont_mask = 1;
1751e8a6 1184 sb->s_flags |= SB_POSIXACL;
e0a43ddc 1185
c30da2e9
DH
1186 fc->default_permissions = ctx->default_permissions;
1187 fc->allow_other = ctx->allow_other;
1188 fc->user_id = ctx->user_id;
1189 fc->group_id = ctx->group_id;
1190 fc->max_read = max_t(unsigned, 4096, ctx->max_read);
1ccd1ea2 1191 fc->destroy = is_bdev;
d8a5ba45 1192
f543f253
MS
1193 /* Used by get_root_inode() */
1194 sb->s_fs_info = fc;
1195
d8a5ba45 1196 err = -ENOMEM;
c30da2e9 1197 root = fuse_get_root_inode(sb, ctx->rootmode);
0ce267ff 1198 sb->s_d_op = &fuse_root_dentry_operations;
48fde701
AV
1199 root_dentry = d_make_root(root);
1200 if (!root_dentry)
cc080e9e 1201 goto err_dev_free;
0ce267ff 1202 /* Root dentry doesn't have .d_revalidate */
c35eebe9 1203 sb->s_d_op = &fuse_dentry_operations;
f543f253 1204
bafa9654 1205 mutex_lock(&fuse_mutex);
8aa09a50
MS
1206 err = -EINVAL;
1207 if (file->private_data)
bafa9654 1208 goto err_unlock;
8aa09a50 1209
bafa9654
MS
1210 err = fuse_ctl_add_conn(fc);
1211 if (err)
1212 goto err_unlock;
1213
1214 list_add_tail(&fc->entry, &fuse_conn_list);
f543f253 1215 sb->s_root = root_dentry;
cc080e9e 1216 file->private_data = fud;
bafa9654 1217 mutex_unlock(&fuse_mutex);
0720b315
MS
1218 /*
1219 * atomic_dec_and_test() in fput() provides the necessary
1220 * memory barrier for file->private_data to be visible on all
1221 * CPUs after this
1222 */
1223 fput(file);
f543f253 1224
615047ef 1225 fuse_send_init(fc);
f543f253 1226
d8a5ba45
MS
1227 return 0;
1228
bafa9654
MS
1229 err_unlock:
1230 mutex_unlock(&fuse_mutex);
f543f253 1231 dput(root_dentry);
cc080e9e
MS
1232 err_dev_free:
1233 fuse_dev_free(fud);
c2b8f006 1234 err_put_conn:
bafa9654 1235 fuse_conn_put(fc);
543b8f86 1236 sb->s_fs_info = NULL;
c2b8f006
MS
1237 err_fput:
1238 fput(file);
1239 err:
d8a5ba45
MS
1240 return err;
1241}
1242
c30da2e9 1243static int fuse_get_tree(struct fs_context *fc)
d8a5ba45 1244{
c30da2e9
DH
1245 struct fuse_fs_context *ctx = fc->fs_private;
1246
1247 if (!ctx->fd_present || !ctx->rootmode_present ||
1248 !ctx->user_id_present || !ctx->group_id_present)
1249 return -EINVAL;
1250
1251#ifdef CONFIG_BLOCK
1252 if (ctx->is_bdev)
1253 return get_tree_bdev(fc, fuse_fill_super);
1254#endif
1255
1256 return get_tree_nodev(fc, fuse_fill_super);
1257}
1258
1259static const struct fs_context_operations fuse_context_ops = {
1260 .free = fuse_free_fc,
1261 .parse_param = fuse_parse_param,
1262 .get_tree = fuse_get_tree,
1263};
1264
1265/*
1266 * Set up the filesystem mount context.
1267 */
1268static int fuse_init_fs_context(struct fs_context *fc)
1269{
1270 struct fuse_fs_context *ctx;
1271
1272 ctx = kzalloc(sizeof(struct fuse_fs_context), GFP_KERNEL);
1273 if (!ctx)
1274 return -ENOMEM;
1275
1276 ctx->max_read = ~0;
1277 ctx->blksize = FUSE_DEFAULT_BLKSIZE;
1278
1279#ifdef CONFIG_BLOCK
1280 if (fc->fs_type == &fuseblk_fs_type)
1281 ctx->is_bdev = true;
1282#endif
1283
1284 fc->fs_private = ctx;
1285 fc->ops = &fuse_context_ops;
1286 return 0;
d8a5ba45
MS
1287}
1288
e8f3bd77 1289static void fuse_sb_destroy(struct super_block *sb)
3b463ae0
JM
1290{
1291 struct fuse_conn *fc = get_fuse_conn_super(sb);
1292
1293 if (fc) {
1ccd1ea2
MS
1294 if (fc->destroy)
1295 fuse_send_destroy(fc);
e8f3bd77 1296
eb98e3bd 1297 fuse_abort_conn(fc);
e8f3bd77
MS
1298 fuse_wait_aborted(fc);
1299
3b463ae0
JM
1300 down_write(&fc->killsb);
1301 fc->sb = NULL;
1302 up_write(&fc->killsb);
1303 }
e8f3bd77 1304}
3b463ae0 1305
e8f3bd77
MS
1306static void fuse_kill_sb_anon(struct super_block *sb)
1307{
1308 fuse_sb_destroy(sb);
3b463ae0
JM
1309 kill_anon_super(sb);
1310}
1311
875d95ec
MS
1312static struct file_system_type fuse_fs_type = {
1313 .owner = THIS_MODULE,
1314 .name = "fuse",
4ad769f3 1315 .fs_flags = FS_HAS_SUBTYPE | FS_USERNS_MOUNT,
c30da2e9
DH
1316 .init_fs_context = fuse_init_fs_context,
1317 .parameters = &fuse_fs_parameters,
3b463ae0 1318 .kill_sb = fuse_kill_sb_anon,
875d95ec 1319};
7f78e035 1320MODULE_ALIAS_FS("fuse");
875d95ec
MS
1321
1322#ifdef CONFIG_BLOCK
3b463ae0
JM
1323static void fuse_kill_sb_blk(struct super_block *sb)
1324{
e8f3bd77 1325 fuse_sb_destroy(sb);
3b463ae0
JM
1326 kill_block_super(sb);
1327}
1328
d6392f87
MS
1329static struct file_system_type fuseblk_fs_type = {
1330 .owner = THIS_MODULE,
1331 .name = "fuseblk",
c30da2e9
DH
1332 .init_fs_context = fuse_init_fs_context,
1333 .parameters = &fuse_fs_parameters,
3b463ae0 1334 .kill_sb = fuse_kill_sb_blk,
edad01e2 1335 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
d6392f87 1336};
7f78e035 1337MODULE_ALIAS_FS("fuseblk");
d6392f87 1338
875d95ec
MS
1339static inline int register_fuseblk(void)
1340{
1341 return register_filesystem(&fuseblk_fs_type);
1342}
1343
1344static inline void unregister_fuseblk(void)
1345{
1346 unregister_filesystem(&fuseblk_fs_type);
1347}
1348#else
1349static inline int register_fuseblk(void)
1350{
1351 return 0;
1352}
1353
1354static inline void unregister_fuseblk(void)
1355{
1356}
1357#endif
1358
51cc5068 1359static void fuse_inode_init_once(void *foo)
d8a5ba45 1360{
1729a16c 1361 struct inode *inode = foo;
d8a5ba45 1362
a35afb83 1363 inode_init_once(inode);
d8a5ba45
MS
1364}
1365
1366static int __init fuse_fs_init(void)
1367{
1368 int err;
1369
d6392f87 1370 fuse_inode_cachep = kmem_cache_create("fuse_inode",
df206988
JW
1371 sizeof(struct fuse_inode), 0,
1372 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT|SLAB_RECLAIM_ACCOUNT,
1373 fuse_inode_init_once);
d6392f87
MS
1374 err = -ENOMEM;
1375 if (!fuse_inode_cachep)
988f0325
AV
1376 goto out;
1377
1378 err = register_fuseblk();
1379 if (err)
1380 goto out2;
1381
1382 err = register_filesystem(&fuse_fs_type);
1383 if (err)
1384 goto out3;
d6392f87
MS
1385
1386 return 0;
d8a5ba45 1387
988f0325 1388 out3:
875d95ec 1389 unregister_fuseblk();
988f0325
AV
1390 out2:
1391 kmem_cache_destroy(fuse_inode_cachep);
d6392f87 1392 out:
d8a5ba45
MS
1393 return err;
1394}
1395
1396static void fuse_fs_cleanup(void)
1397{
1398 unregister_filesystem(&fuse_fs_type);
875d95ec 1399 unregister_fuseblk();
8c0a8537
KS
1400
1401 /*
1402 * Make sure all delayed rcu free inodes are flushed before we
1403 * destroy cache.
1404 */
1405 rcu_barrier();
d8a5ba45
MS
1406 kmem_cache_destroy(fuse_inode_cachep);
1407}
1408
5c89e17e 1409static struct kobject *fuse_kobj;
5c89e17e 1410
f543f253
MS
1411static int fuse_sysfs_init(void)
1412{
1413 int err;
1414
00d26666 1415 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
5c89e17e
GKH
1416 if (!fuse_kobj) {
1417 err = -ENOMEM;
f543f253 1418 goto out_err;
5c89e17e 1419 }
f543f253 1420
f9bb4882
EB
1421 err = sysfs_create_mount_point(fuse_kobj, "connections");
1422 if (err)
f543f253
MS
1423 goto out_fuse_unregister;
1424
1425 return 0;
1426
1427 out_fuse_unregister:
197b12d6 1428 kobject_put(fuse_kobj);
f543f253
MS
1429 out_err:
1430 return err;
1431}
1432
1433static void fuse_sysfs_cleanup(void)
1434{
f9bb4882 1435 sysfs_remove_mount_point(fuse_kobj, "connections");
197b12d6 1436 kobject_put(fuse_kobj);
f543f253
MS
1437}
1438
d8a5ba45
MS
1439static int __init fuse_init(void)
1440{
1441 int res;
1442
f2294482
KS
1443 pr_info("init (API version %i.%i)\n",
1444 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
d8a5ba45 1445
bafa9654 1446 INIT_LIST_HEAD(&fuse_conn_list);
d8a5ba45
MS
1447 res = fuse_fs_init();
1448 if (res)
1449 goto err;
1450
334f485d
MS
1451 res = fuse_dev_init();
1452 if (res)
1453 goto err_fs_cleanup;
1454
f543f253
MS
1455 res = fuse_sysfs_init();
1456 if (res)
1457 goto err_dev_cleanup;
1458
bafa9654
MS
1459 res = fuse_ctl_init();
1460 if (res)
1461 goto err_sysfs_cleanup;
1462
487ea5af
CH
1463 sanitize_global_limit(&max_user_bgreq);
1464 sanitize_global_limit(&max_user_congthresh);
1465
d8a5ba45
MS
1466 return 0;
1467
bafa9654
MS
1468 err_sysfs_cleanup:
1469 fuse_sysfs_cleanup();
f543f253
MS
1470 err_dev_cleanup:
1471 fuse_dev_cleanup();
334f485d
MS
1472 err_fs_cleanup:
1473 fuse_fs_cleanup();
d8a5ba45
MS
1474 err:
1475 return res;
1476}
1477
1478static void __exit fuse_exit(void)
1479{
f2294482 1480 pr_debug("exit\n");
d8a5ba45 1481
bafa9654 1482 fuse_ctl_cleanup();
f543f253 1483 fuse_sysfs_cleanup();
d8a5ba45 1484 fuse_fs_cleanup();
334f485d 1485 fuse_dev_cleanup();
d8a5ba45
MS
1486}
1487
1488module_init(fuse_init);
1489module_exit(fuse_exit);