1 /*
2 FUSE: Filesystem in Userspace
3 Copyright (C) 2001-2008 Miklos Szeredi <miklos@szeredi.hu>
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>
14 #include <linux/seq_file.h>
15 #include <linux/init.h>
16 #include <linux/module.h>
17 #include <linux/moduleparam.h>
18 #include <linux/fs_context.h>
19 #include <linux/fs_parser.h>
20 #include <linux/statfs.h>
21 #include <linux/random.h>
22 #include <linux/sched.h>
23 #include <linux/exportfs.h>
24 #include <linux/posix_acl.h>
25 #include <linux/pid_namespace.h>
26
27 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
28 MODULE_DESCRIPTION("Filesystem in Userspace");
29 MODULE_LICENSE("GPL");
30
31 static struct kmem_cache *fuse_inode_cachep;
32 struct list_head fuse_conn_list;
33 DEFINE_MUTEX(fuse_mutex);
34
35 static int set_global_limit(const char *val, const struct kernel_param *kp);
36
37 unsigned max_user_bgreq;
38 module_param_call(max_user_bgreq, set_global_limit, param_get_uint,
39 &max_user_bgreq, 0644);
40 __MODULE_PARM_TYPE(max_user_bgreq, "uint");
41 MODULE_PARM_DESC(max_user_bgreq,
42 "Global limit for the maximum number of backgrounded requests an "
43 "unprivileged user can set");
44
45 unsigned max_user_congthresh;
46 module_param_call(max_user_congthresh, set_global_limit, param_get_uint,
47 &max_user_congthresh, 0644);
48 __MODULE_PARM_TYPE(max_user_congthresh, "uint");
49 MODULE_PARM_DESC(max_user_congthresh,
50 "Global limit for the maximum congestion threshold an "
51 "unprivileged user can set");
52
53 #define FUSE_SUPER_MAGIC 0x65735546
54
55 #define FUSE_DEFAULT_BLKSIZE 512
56
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
63 #ifdef CONFIG_BLOCK
64 static struct file_system_type fuseblk_fs_type;
65 #endif
66
fuse_alloc_forget(void)67 struct fuse_forget_link *fuse_alloc_forget(void)
68 {
69 return kzalloc(sizeof(struct fuse_forget_link), GFP_KERNEL_ACCOUNT);
70 }
71
fuse_alloc_inode(struct super_block * sb)72 static struct inode *fuse_alloc_inode(struct super_block *sb)
73 {
74 struct fuse_inode *fi;
75
76 fi = kmem_cache_alloc(fuse_inode_cachep, GFP_KERNEL);
77 if (!fi)
78 return NULL;
79
80 fi->i_time = 0;
81 fi->inval_mask = 0;
82 fi->nodeid = 0;
83 fi->nlookup = 0;
84 fi->attr_version = 0;
85 fi->orig_ino = 0;
86 fi->state = 0;
87 mutex_init(&fi->mutex);
88 init_rwsem(&fi->i_mmap_sem);
89 spin_lock_init(&fi->lock);
90 fi->forget = fuse_alloc_forget();
91 if (!fi->forget)
92 goto out_free;
93
94 if (IS_ENABLED(CONFIG_FUSE_DAX) && !fuse_dax_inode_alloc(sb, fi))
95 goto out_free_forget;
96
97 return &fi->inode;
98
99 out_free_forget:
100 kfree(fi->forget);
101 out_free:
102 kmem_cache_free(fuse_inode_cachep, fi);
103 return NULL;
104 }
105
fuse_free_inode(struct inode * inode)106 static void fuse_free_inode(struct inode *inode)
107 {
108 struct fuse_inode *fi = get_fuse_inode(inode);
109
110 mutex_destroy(&fi->mutex);
111 kfree(fi->forget);
112 #ifdef CONFIG_FUSE_DAX
113 kfree(fi->dax);
114 #endif
115 kmem_cache_free(fuse_inode_cachep, fi);
116 }
117
fuse_evict_inode(struct inode * inode)118 static void fuse_evict_inode(struct inode *inode)
119 {
120 struct fuse_inode *fi = get_fuse_inode(inode);
121
122 /* Will write inode on close/munmap and in all other dirtiers */
123 WARN_ON(inode->i_state & I_DIRTY_INODE);
124
125 truncate_inode_pages_final(&inode->i_data);
126 clear_inode(inode);
127 if (inode->i_sb->s_flags & SB_ACTIVE) {
128 struct fuse_conn *fc = get_fuse_conn(inode);
129
130 if (FUSE_IS_DAX(inode))
131 fuse_dax_inode_cleanup(inode);
132 if (fi->nlookup) {
133 fuse_queue_forget(fc, fi->forget, fi->nodeid,
134 fi->nlookup);
135 fi->forget = NULL;
136 }
137 }
138 if (S_ISREG(inode->i_mode) && !fuse_is_bad(inode)) {
139 WARN_ON(!list_empty(&fi->write_files));
140 WARN_ON(!list_empty(&fi->queued_writes));
141 }
142 }
143
fuse_reconfigure(struct fs_context * fc)144 static int fuse_reconfigure(struct fs_context *fc)
145 {
146 struct super_block *sb = fc->root->d_sb;
147
148 sync_filesystem(sb);
149 if (fc->sb_flags & SB_MANDLOCK)
150 return -EINVAL;
151
152 return 0;
153 }
154
155 /*
156 * ino_t is 32-bits on 32-bit arch. We have to squash the 64-bit value down
157 * so that it will fit.
158 */
fuse_squash_ino(u64 ino64)159 static ino_t fuse_squash_ino(u64 ino64)
160 {
161 ino_t ino = (ino_t) ino64;
162 if (sizeof(ino_t) < sizeof(u64))
163 ino ^= ino64 >> (sizeof(u64) - sizeof(ino_t)) * 8;
164 return ino;
165 }
166
fuse_change_attributes_common(struct inode * inode,struct fuse_attr * attr,u64 attr_valid)167 void fuse_change_attributes_common(struct inode *inode, struct fuse_attr *attr,
168 u64 attr_valid)
169 {
170 struct fuse_conn *fc = get_fuse_conn(inode);
171 struct fuse_inode *fi = get_fuse_inode(inode);
172
173 lockdep_assert_held(&fi->lock);
174
175 fi->attr_version = atomic64_inc_return(&fc->attr_version);
176 fi->i_time = attr_valid;
177 WRITE_ONCE(fi->inval_mask, 0);
178
179 inode->i_ino = fuse_squash_ino(attr->ino);
180 inode->i_mode = (inode->i_mode & S_IFMT) | (attr->mode & 07777);
181 set_nlink(inode, attr->nlink);
182 inode->i_uid = make_kuid(fc->user_ns, attr->uid);
183 inode->i_gid = make_kgid(fc->user_ns, attr->gid);
184 inode->i_blocks = attr->blocks;
185 inode->i_atime.tv_sec = attr->atime;
186 inode->i_atime.tv_nsec = attr->atimensec;
187 /* mtime from server may be stale due to local buffered write */
188 if (!fc->writeback_cache || !S_ISREG(inode->i_mode)) {
189 inode->i_mtime.tv_sec = attr->mtime;
190 inode->i_mtime.tv_nsec = attr->mtimensec;
191 inode->i_ctime.tv_sec = attr->ctime;
192 inode->i_ctime.tv_nsec = attr->ctimensec;
193 }
194
195 if (attr->blksize != 0)
196 inode->i_blkbits = ilog2(attr->blksize);
197 else
198 inode->i_blkbits = inode->i_sb->s_blocksize_bits;
199
200 /*
201 * Don't set the sticky bit in i_mode, unless we want the VFS
202 * to check permissions. This prevents failures due to the
203 * check in may_delete().
204 */
205 fi->orig_i_mode = inode->i_mode;
206 if (!fc->default_permissions)
207 inode->i_mode &= ~S_ISVTX;
208
209 fi->orig_ino = attr->ino;
210 }
211
fuse_change_attributes(struct inode * inode,struct fuse_attr * attr,u64 attr_valid,u64 attr_version)212 void fuse_change_attributes(struct inode *inode, struct fuse_attr *attr,
213 u64 attr_valid, u64 attr_version)
214 {
215 struct fuse_conn *fc = get_fuse_conn(inode);
216 struct fuse_inode *fi = get_fuse_inode(inode);
217 bool is_wb = fc->writeback_cache;
218 loff_t oldsize;
219 struct timespec64 old_mtime;
220
221 spin_lock(&fi->lock);
222 if ((attr_version != 0 && fi->attr_version > attr_version) ||
223 test_bit(FUSE_I_SIZE_UNSTABLE, &fi->state)) {
224 spin_unlock(&fi->lock);
225 return;
226 }
227
228 old_mtime = inode->i_mtime;
229 fuse_change_attributes_common(inode, attr, attr_valid);
230
231 oldsize = inode->i_size;
232 /*
233 * In case of writeback_cache enabled, the cached writes beyond EOF
234 * extend local i_size without keeping userspace server in sync. So,
235 * attr->size coming from server can be stale. We cannot trust it.
236 */
237 if (!is_wb || !S_ISREG(inode->i_mode))
238 i_size_write(inode, attr->size);
239 spin_unlock(&fi->lock);
240
241 if (!is_wb && S_ISREG(inode->i_mode)) {
242 bool inval = false;
243
244 if (oldsize != attr->size) {
245 truncate_pagecache(inode, attr->size);
246 if (!fc->explicit_inval_data)
247 inval = true;
248 } else if (fc->auto_inval_data) {
249 struct timespec64 new_mtime = {
250 .tv_sec = attr->mtime,
251 .tv_nsec = attr->mtimensec,
252 };
253
254 /*
255 * Auto inval mode also checks and invalidates if mtime
256 * has changed.
257 */
258 if (!timespec64_equal(&old_mtime, &new_mtime))
259 inval = true;
260 }
261
262 if (inval)
263 invalidate_inode_pages2(inode->i_mapping);
264 }
265 }
266
fuse_init_inode(struct inode * inode,struct fuse_attr * attr)267 static void fuse_init_inode(struct inode *inode, struct fuse_attr *attr)
268 {
269 inode->i_mode = attr->mode & S_IFMT;
270 inode->i_size = attr->size;
271 inode->i_mtime.tv_sec = attr->mtime;
272 inode->i_mtime.tv_nsec = attr->mtimensec;
273 inode->i_ctime.tv_sec = attr->ctime;
274 inode->i_ctime.tv_nsec = attr->ctimensec;
275 if (S_ISREG(inode->i_mode)) {
276 fuse_init_common(inode);
277 fuse_init_file_inode(inode);
278 } else if (S_ISDIR(inode->i_mode))
279 fuse_init_dir(inode);
280 else if (S_ISLNK(inode->i_mode))
281 fuse_init_symlink(inode);
282 else if (S_ISCHR(inode->i_mode) || S_ISBLK(inode->i_mode) ||
283 S_ISFIFO(inode->i_mode) || S_ISSOCK(inode->i_mode)) {
284 fuse_init_common(inode);
285 init_special_inode(inode, inode->i_mode,
286 new_decode_dev(attr->rdev));
287 } else
288 BUG();
289 }
290
fuse_inode_eq(struct inode * inode,void * _nodeidp)291 static int fuse_inode_eq(struct inode *inode, void *_nodeidp)
292 {
293 u64 nodeid = *(u64 *) _nodeidp;
294 if (get_node_id(inode) == nodeid)
295 return 1;
296 else
297 return 0;
298 }
299
fuse_inode_set(struct inode * inode,void * _nodeidp)300 static int fuse_inode_set(struct inode *inode, void *_nodeidp)
301 {
302 u64 nodeid = *(u64 *) _nodeidp;
303 get_fuse_inode(inode)->nodeid = nodeid;
304 return 0;
305 }
306
fuse_iget(struct super_block * sb,u64 nodeid,int generation,struct fuse_attr * attr,u64 attr_valid,u64 attr_version)307 struct inode *fuse_iget(struct super_block *sb, u64 nodeid,
308 int generation, struct fuse_attr *attr,
309 u64 attr_valid, u64 attr_version)
310 {
311 struct inode *inode;
312 struct fuse_inode *fi;
313 struct fuse_conn *fc = get_fuse_conn_super(sb);
314
315 /*
316 * Auto mount points get their node id from the submount root, which is
317 * not a unique identifier within this filesystem.
318 *
319 * To avoid conflicts, do not place submount points into the inode hash
320 * table.
321 */
322 if (fc->auto_submounts && (attr->flags & FUSE_ATTR_SUBMOUNT) &&
323 S_ISDIR(attr->mode)) {
324 inode = new_inode(sb);
325 if (!inode)
326 return NULL;
327
328 fuse_init_inode(inode, attr);
329 get_fuse_inode(inode)->nodeid = nodeid;
330 inode->i_flags |= S_AUTOMOUNT;
331 goto done;
332 }
333
334 retry:
335 inode = iget5_locked(sb, nodeid, fuse_inode_eq, fuse_inode_set, &nodeid);
336 if (!inode)
337 return NULL;
338
339 if ((inode->i_state & I_NEW)) {
340 inode->i_flags |= S_NOATIME;
341 if (!fc->writeback_cache || !S_ISREG(attr->mode))
342 inode->i_flags |= S_NOCMTIME;
343 inode->i_generation = generation;
344 fuse_init_inode(inode, attr);
345 unlock_new_inode(inode);
346 } else if (fuse_stale_inode(inode, generation, attr)) {
347 /* nodeid was reused, any I/O on the old inode should fail */
348 fuse_make_bad(inode);
349 iput(inode);
350 goto retry;
351 }
352 done:
353 fi = get_fuse_inode(inode);
354 spin_lock(&fi->lock);
355 fi->nlookup++;
356 spin_unlock(&fi->lock);
357 fuse_change_attributes(inode, attr, attr_valid, attr_version);
358
359 return inode;
360 }
361
fuse_ilookup(struct fuse_conn * fc,u64 nodeid,struct fuse_mount ** fm)362 struct inode *fuse_ilookup(struct fuse_conn *fc, u64 nodeid,
363 struct fuse_mount **fm)
364 {
365 struct fuse_mount *fm_iter;
366 struct inode *inode;
367
368 WARN_ON(!rwsem_is_locked(&fc->killsb));
369 list_for_each_entry(fm_iter, &fc->mounts, fc_entry) {
370 if (!fm_iter->sb)
371 continue;
372
373 inode = ilookup5(fm_iter->sb, nodeid, fuse_inode_eq, &nodeid);
374 if (inode) {
375 if (fm)
376 *fm = fm_iter;
377 return inode;
378 }
379 }
380
381 return NULL;
382 }
383
fuse_reverse_inval_inode(struct fuse_conn * fc,u64 nodeid,loff_t offset,loff_t len)384 int fuse_reverse_inval_inode(struct fuse_conn *fc, u64 nodeid,
385 loff_t offset, loff_t len)
386 {
387 struct fuse_inode *fi;
388 struct inode *inode;
389 pgoff_t pg_start;
390 pgoff_t pg_end;
391
392 inode = fuse_ilookup(fc, nodeid, NULL);
393 if (!inode)
394 return -ENOENT;
395
396 fi = get_fuse_inode(inode);
397 spin_lock(&fi->lock);
398 fi->attr_version = atomic64_inc_return(&fc->attr_version);
399 spin_unlock(&fi->lock);
400
401 fuse_invalidate_attr(inode);
402 forget_all_cached_acls(inode);
403 if (offset >= 0) {
404 pg_start = offset >> PAGE_SHIFT;
405 if (len <= 0)
406 pg_end = -1;
407 else
408 pg_end = (offset + len - 1) >> PAGE_SHIFT;
409 invalidate_inode_pages2_range(inode->i_mapping,
410 pg_start, pg_end);
411 }
412 iput(inode);
413 return 0;
414 }
415
fuse_lock_inode(struct inode * inode)416 bool fuse_lock_inode(struct inode *inode)
417 {
418 bool locked = false;
419
420 if (!get_fuse_conn(inode)->parallel_dirops) {
421 mutex_lock(&get_fuse_inode(inode)->mutex);
422 locked = true;
423 }
424
425 return locked;
426 }
427
fuse_unlock_inode(struct inode * inode,bool locked)428 void fuse_unlock_inode(struct inode *inode, bool locked)
429 {
430 if (locked)
431 mutex_unlock(&get_fuse_inode(inode)->mutex);
432 }
433
fuse_umount_begin(struct super_block * sb)434 static void fuse_umount_begin(struct super_block *sb)
435 {
436 struct fuse_conn *fc = get_fuse_conn_super(sb);
437
438 if (!fc->no_force_umount)
439 fuse_abort_conn(fc);
440 }
441
fuse_send_destroy(struct fuse_mount * fm)442 static void fuse_send_destroy(struct fuse_mount *fm)
443 {
444 if (fm->fc->conn_init) {
445 FUSE_ARGS(args);
446
447 args.opcode = FUSE_DESTROY;
448 args.force = true;
449 args.nocreds = true;
450 fuse_simple_request(fm, &args);
451 }
452 }
453
fuse_put_super(struct super_block * sb)454 static void fuse_put_super(struct super_block *sb)
455 {
456 struct fuse_mount *fm = get_fuse_mount_super(sb);
457
458 fuse_mount_put(fm);
459 }
460
convert_fuse_statfs(struct kstatfs * stbuf,struct fuse_kstatfs * attr)461 static void convert_fuse_statfs(struct kstatfs *stbuf, struct fuse_kstatfs *attr)
462 {
463 stbuf->f_type = FUSE_SUPER_MAGIC;
464 stbuf->f_bsize = attr->bsize;
465 stbuf->f_frsize = attr->frsize;
466 stbuf->f_blocks = attr->blocks;
467 stbuf->f_bfree = attr->bfree;
468 stbuf->f_bavail = attr->bavail;
469 stbuf->f_files = attr->files;
470 stbuf->f_ffree = attr->ffree;
471 stbuf->f_namelen = attr->namelen;
472 /* fsid is left zero */
473 }
474
fuse_statfs(struct dentry * dentry,struct kstatfs * buf)475 static int fuse_statfs(struct dentry *dentry, struct kstatfs *buf)
476 {
477 struct super_block *sb = dentry->d_sb;
478 struct fuse_mount *fm = get_fuse_mount_super(sb);
479 FUSE_ARGS(args);
480 struct fuse_statfs_out outarg;
481 int err;
482
483 if (!fuse_allow_current_process(fm->fc)) {
484 buf->f_type = FUSE_SUPER_MAGIC;
485 return 0;
486 }
487
488 memset(&outarg, 0, sizeof(outarg));
489 args.in_numargs = 0;
490 args.opcode = FUSE_STATFS;
491 args.nodeid = get_node_id(d_inode(dentry));
492 args.out_numargs = 1;
493 args.out_args[0].size = sizeof(outarg);
494 args.out_args[0].value = &outarg;
495 err = fuse_simple_request(fm, &args);
496 if (!err)
497 convert_fuse_statfs(buf, &outarg.st);
498 return err;
499 }
500
501 enum {
502 OPT_SOURCE,
503 OPT_SUBTYPE,
504 OPT_FD,
505 OPT_ROOTMODE,
506 OPT_USER_ID,
507 OPT_GROUP_ID,
508 OPT_DEFAULT_PERMISSIONS,
509 OPT_ALLOW_OTHER,
510 OPT_MAX_READ,
511 OPT_BLKSIZE,
512 OPT_ERR
513 };
514
515 static const struct fs_parameter_spec fuse_fs_parameters[] = {
516 fsparam_string ("source", OPT_SOURCE),
517 fsparam_u32 ("fd", OPT_FD),
518 fsparam_u32oct ("rootmode", OPT_ROOTMODE),
519 fsparam_u32 ("user_id", OPT_USER_ID),
520 fsparam_u32 ("group_id", OPT_GROUP_ID),
521 fsparam_flag ("default_permissions", OPT_DEFAULT_PERMISSIONS),
522 fsparam_flag ("allow_other", OPT_ALLOW_OTHER),
523 fsparam_u32 ("max_read", OPT_MAX_READ),
524 fsparam_u32 ("blksize", OPT_BLKSIZE),
525 fsparam_string ("subtype", OPT_SUBTYPE),
526 {}
527 };
528
fuse_parse_param(struct fs_context * fc,struct fs_parameter * param)529 static int fuse_parse_param(struct fs_context *fc, struct fs_parameter *param)
530 {
531 struct fs_parse_result result;
532 struct fuse_fs_context *ctx = fc->fs_private;
533 int opt;
534
535 if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE) {
536 /*
537 * Ignore options coming from mount(MS_REMOUNT) for backward
538 * compatibility.
539 */
540 if (fc->oldapi)
541 return 0;
542
543 return invalfc(fc, "No changes allowed in reconfigure");
544 }
545
546 opt = fs_parse(fc, fuse_fs_parameters, param, &result);
547 if (opt < 0)
548 return opt;
549
550 switch (opt) {
551 case OPT_SOURCE:
552 if (fc->source)
553 return invalfc(fc, "Multiple sources specified");
554 fc->source = param->string;
555 param->string = NULL;
556 break;
557
558 case OPT_SUBTYPE:
559 if (ctx->subtype)
560 return invalfc(fc, "Multiple subtypes specified");
561 ctx->subtype = param->string;
562 param->string = NULL;
563 return 0;
564
565 case OPT_FD:
566 ctx->fd = result.uint_32;
567 ctx->fd_present = true;
568 break;
569
570 case OPT_ROOTMODE:
571 if (!fuse_valid_type(result.uint_32))
572 return invalfc(fc, "Invalid rootmode");
573 ctx->rootmode = result.uint_32;
574 ctx->rootmode_present = true;
575 break;
576
577 case OPT_USER_ID:
578 ctx->user_id = make_kuid(fc->user_ns, result.uint_32);
579 if (!uid_valid(ctx->user_id))
580 return invalfc(fc, "Invalid user_id");
581 ctx->user_id_present = true;
582 break;
583
584 case OPT_GROUP_ID:
585 ctx->group_id = make_kgid(fc->user_ns, result.uint_32);
586 if (!gid_valid(ctx->group_id))
587 return invalfc(fc, "Invalid group_id");
588 ctx->group_id_present = true;
589 break;
590
591 case OPT_DEFAULT_PERMISSIONS:
592 ctx->default_permissions = true;
593 break;
594
595 case OPT_ALLOW_OTHER:
596 ctx->allow_other = true;
597 break;
598
599 case OPT_MAX_READ:
600 ctx->max_read = result.uint_32;
601 break;
602
603 case OPT_BLKSIZE:
604 if (!ctx->is_bdev)
605 return invalfc(fc, "blksize only supported for fuseblk");
606 ctx->blksize = result.uint_32;
607 break;
608
609 default:
610 return -EINVAL;
611 }
612
613 return 0;
614 }
615
fuse_free_fc(struct fs_context * fc)616 static void fuse_free_fc(struct fs_context *fc)
617 {
618 struct fuse_fs_context *ctx = fc->fs_private;
619
620 if (ctx) {
621 kfree(ctx->subtype);
622 kfree(ctx);
623 }
624 }
625
fuse_show_options(struct seq_file * m,struct dentry * root)626 static int fuse_show_options(struct seq_file *m, struct dentry *root)
627 {
628 struct super_block *sb = root->d_sb;
629 struct fuse_conn *fc = get_fuse_conn_super(sb);
630
631 if (fc->legacy_opts_show) {
632 seq_printf(m, ",user_id=%u",
633 from_kuid_munged(fc->user_ns, fc->user_id));
634 seq_printf(m, ",group_id=%u",
635 from_kgid_munged(fc->user_ns, fc->group_id));
636 if (fc->default_permissions)
637 seq_puts(m, ",default_permissions");
638 if (fc->allow_other)
639 seq_puts(m, ",allow_other");
640 if (fc->max_read != ~0)
641 seq_printf(m, ",max_read=%u", fc->max_read);
642 if (sb->s_bdev && sb->s_blocksize != FUSE_DEFAULT_BLKSIZE)
643 seq_printf(m, ",blksize=%lu", sb->s_blocksize);
644 }
645 #ifdef CONFIG_FUSE_DAX
646 if (fc->dax)
647 seq_puts(m, ",dax");
648 #endif
649
650 return 0;
651 }
652
fuse_iqueue_init(struct fuse_iqueue * fiq,const struct fuse_iqueue_ops * ops,void * priv)653 static void fuse_iqueue_init(struct fuse_iqueue *fiq,
654 const struct fuse_iqueue_ops *ops,
655 void *priv)
656 {
657 memset(fiq, 0, sizeof(struct fuse_iqueue));
658 spin_lock_init(&fiq->lock);
659 init_waitqueue_head(&fiq->waitq);
660 INIT_LIST_HEAD(&fiq->pending);
661 INIT_LIST_HEAD(&fiq->interrupts);
662 fiq->forget_list_tail = &fiq->forget_list_head;
663 fiq->connected = 1;
664 fiq->ops = ops;
665 fiq->priv = priv;
666 }
667
fuse_pqueue_init(struct fuse_pqueue * fpq)668 static void fuse_pqueue_init(struct fuse_pqueue *fpq)
669 {
670 unsigned int i;
671
672 spin_lock_init(&fpq->lock);
673 for (i = 0; i < FUSE_PQ_HASH_SIZE; i++)
674 INIT_LIST_HEAD(&fpq->processing[i]);
675 INIT_LIST_HEAD(&fpq->io);
676 fpq->connected = 1;
677 }
678
fuse_conn_init(struct fuse_conn * fc,struct fuse_mount * fm,struct user_namespace * user_ns,const struct fuse_iqueue_ops * fiq_ops,void * fiq_priv)679 void fuse_conn_init(struct fuse_conn *fc, struct fuse_mount *fm,
680 struct user_namespace *user_ns,
681 const struct fuse_iqueue_ops *fiq_ops, void *fiq_priv)
682 {
683 memset(fc, 0, sizeof(*fc));
684 spin_lock_init(&fc->lock);
685 spin_lock_init(&fc->bg_lock);
686 init_rwsem(&fc->killsb);
687 refcount_set(&fc->count, 1);
688 atomic_set(&fc->dev_count, 1);
689 init_waitqueue_head(&fc->blocked_waitq);
690 fuse_iqueue_init(&fc->iq, fiq_ops, fiq_priv);
691 INIT_LIST_HEAD(&fc->bg_queue);
692 INIT_LIST_HEAD(&fc->entry);
693 INIT_LIST_HEAD(&fc->devices);
694 atomic_set(&fc->num_waiting, 0);
695 fc->max_background = FUSE_DEFAULT_MAX_BACKGROUND;
696 fc->congestion_threshold = FUSE_DEFAULT_CONGESTION_THRESHOLD;
697 atomic64_set(&fc->khctr, 0);
698 fc->polled_files = RB_ROOT;
699 fc->blocked = 0;
700 fc->initialized = 0;
701 fc->connected = 1;
702 atomic64_set(&fc->attr_version, 1);
703 get_random_bytes(&fc->scramble_key, sizeof(fc->scramble_key));
704 fc->pid_ns = get_pid_ns(task_active_pid_ns(current));
705 fc->user_ns = get_user_ns(user_ns);
706 fc->max_pages = FUSE_DEFAULT_MAX_PAGES_PER_REQ;
707
708 INIT_LIST_HEAD(&fc->mounts);
709 list_add(&fm->fc_entry, &fc->mounts);
710 fm->fc = fc;
711 refcount_set(&fm->count, 1);
712 }
713 EXPORT_SYMBOL_GPL(fuse_conn_init);
714
fuse_conn_put(struct fuse_conn * fc)715 void fuse_conn_put(struct fuse_conn *fc)
716 {
717 if (refcount_dec_and_test(&fc->count)) {
718 struct fuse_iqueue *fiq = &fc->iq;
719
720 if (IS_ENABLED(CONFIG_FUSE_DAX))
721 fuse_dax_conn_free(fc);
722 if (fiq->ops->release)
723 fiq->ops->release(fiq);
724 put_pid_ns(fc->pid_ns);
725 put_user_ns(fc->user_ns);
726 fc->release(fc);
727 }
728 }
729 EXPORT_SYMBOL_GPL(fuse_conn_put);
730
fuse_conn_get(struct fuse_conn * fc)731 struct fuse_conn *fuse_conn_get(struct fuse_conn *fc)
732 {
733 refcount_inc(&fc->count);
734 return fc;
735 }
736 EXPORT_SYMBOL_GPL(fuse_conn_get);
737
fuse_mount_put(struct fuse_mount * fm)738 void fuse_mount_put(struct fuse_mount *fm)
739 {
740 if (refcount_dec_and_test(&fm->count)) {
741 if (fm->fc)
742 fuse_conn_put(fm->fc);
743 kfree(fm);
744 }
745 }
746 EXPORT_SYMBOL_GPL(fuse_mount_put);
747
fuse_mount_get(struct fuse_mount * fm)748 struct fuse_mount *fuse_mount_get(struct fuse_mount *fm)
749 {
750 refcount_inc(&fm->count);
751 return fm;
752 }
753 EXPORT_SYMBOL_GPL(fuse_mount_get);
754
fuse_get_root_inode(struct super_block * sb,unsigned mode)755 static struct inode *fuse_get_root_inode(struct super_block *sb, unsigned mode)
756 {
757 struct fuse_attr attr;
758 memset(&attr, 0, sizeof(attr));
759
760 attr.mode = mode;
761 attr.ino = FUSE_ROOT_ID;
762 attr.nlink = 1;
763 return fuse_iget(sb, 1, 0, &attr, 0, 0);
764 }
765
766 struct fuse_inode_handle {
767 u64 nodeid;
768 u32 generation;
769 };
770
fuse_get_dentry(struct super_block * sb,struct fuse_inode_handle * handle)771 static struct dentry *fuse_get_dentry(struct super_block *sb,
772 struct fuse_inode_handle *handle)
773 {
774 struct fuse_conn *fc = get_fuse_conn_super(sb);
775 struct inode *inode;
776 struct dentry *entry;
777 int err = -ESTALE;
778
779 if (handle->nodeid == 0)
780 goto out_err;
781
782 inode = ilookup5(sb, handle->nodeid, fuse_inode_eq, &handle->nodeid);
783 if (!inode) {
784 struct fuse_entry_out outarg;
785 const struct qstr name = QSTR_INIT(".", 1);
786
787 if (!fc->export_support)
788 goto out_err;
789
790 err = fuse_lookup_name(sb, handle->nodeid, &name, &outarg,
791 &inode);
792 if (err && err != -ENOENT)
793 goto out_err;
794 if (err || !inode) {
795 err = -ESTALE;
796 goto out_err;
797 }
798 err = -EIO;
799 if (get_node_id(inode) != handle->nodeid)
800 goto out_iput;
801 }
802 err = -ESTALE;
803 if (inode->i_generation != handle->generation)
804 goto out_iput;
805
806 entry = d_obtain_alias(inode);
807 if (!IS_ERR(entry) && get_node_id(inode) != FUSE_ROOT_ID)
808 fuse_invalidate_entry_cache(entry);
809
810 return entry;
811
812 out_iput:
813 iput(inode);
814 out_err:
815 return ERR_PTR(err);
816 }
817
fuse_encode_fh(struct inode * inode,u32 * fh,int * max_len,struct inode * parent)818 static int fuse_encode_fh(struct inode *inode, u32 *fh, int *max_len,
819 struct inode *parent)
820 {
821 int len = parent ? 6 : 3;
822 u64 nodeid;
823 u32 generation;
824
825 if (*max_len < len) {
826 *max_len = len;
827 return FILEID_INVALID;
828 }
829
830 nodeid = get_fuse_inode(inode)->nodeid;
831 generation = inode->i_generation;
832
833 fh[0] = (u32)(nodeid >> 32);
834 fh[1] = (u32)(nodeid & 0xffffffff);
835 fh[2] = generation;
836
837 if (parent) {
838 nodeid = get_fuse_inode(parent)->nodeid;
839 generation = parent->i_generation;
840
841 fh[3] = (u32)(nodeid >> 32);
842 fh[4] = (u32)(nodeid & 0xffffffff);
843 fh[5] = generation;
844 }
845
846 *max_len = len;
847 return parent ? 0x82 : 0x81;
848 }
849
fuse_fh_to_dentry(struct super_block * sb,struct fid * fid,int fh_len,int fh_type)850 static struct dentry *fuse_fh_to_dentry(struct super_block *sb,
851 struct fid *fid, int fh_len, int fh_type)
852 {
853 struct fuse_inode_handle handle;
854
855 if ((fh_type != 0x81 && fh_type != 0x82) || fh_len < 3)
856 return NULL;
857
858 handle.nodeid = (u64) fid->raw[0] << 32;
859 handle.nodeid |= (u64) fid->raw[1];
860 handle.generation = fid->raw[2];
861 return fuse_get_dentry(sb, &handle);
862 }
863
fuse_fh_to_parent(struct super_block * sb,struct fid * fid,int fh_len,int fh_type)864 static struct dentry *fuse_fh_to_parent(struct super_block *sb,
865 struct fid *fid, int fh_len, int fh_type)
866 {
867 struct fuse_inode_handle parent;
868
869 if (fh_type != 0x82 || fh_len < 6)
870 return NULL;
871
872 parent.nodeid = (u64) fid->raw[3] << 32;
873 parent.nodeid |= (u64) fid->raw[4];
874 parent.generation = fid->raw[5];
875 return fuse_get_dentry(sb, &parent);
876 }
877
fuse_get_parent(struct dentry * child)878 static struct dentry *fuse_get_parent(struct dentry *child)
879 {
880 struct inode *child_inode = d_inode(child);
881 struct fuse_conn *fc = get_fuse_conn(child_inode);
882 struct inode *inode;
883 struct dentry *parent;
884 struct fuse_entry_out outarg;
885 const struct qstr name = QSTR_INIT("..", 2);
886 int err;
887
888 if (!fc->export_support)
889 return ERR_PTR(-ESTALE);
890
891 err = fuse_lookup_name(child_inode->i_sb, get_node_id(child_inode),
892 &name, &outarg, &inode);
893 if (err) {
894 if (err == -ENOENT)
895 return ERR_PTR(-ESTALE);
896 return ERR_PTR(err);
897 }
898
899 parent = d_obtain_alias(inode);
900 if (!IS_ERR(parent) && get_node_id(inode) != FUSE_ROOT_ID)
901 fuse_invalidate_entry_cache(parent);
902
903 return parent;
904 }
905
906 static const struct export_operations fuse_export_operations = {
907 .fh_to_dentry = fuse_fh_to_dentry,
908 .fh_to_parent = fuse_fh_to_parent,
909 .encode_fh = fuse_encode_fh,
910 .get_parent = fuse_get_parent,
911 };
912
913 static const struct super_operations fuse_super_operations = {
914 .alloc_inode = fuse_alloc_inode,
915 .free_inode = fuse_free_inode,
916 .evict_inode = fuse_evict_inode,
917 .write_inode = fuse_write_inode,
918 .drop_inode = generic_delete_inode,
919 .put_super = fuse_put_super,
920 .umount_begin = fuse_umount_begin,
921 .statfs = fuse_statfs,
922 .show_options = fuse_show_options,
923 };
924
sanitize_global_limit(unsigned * limit)925 static void sanitize_global_limit(unsigned *limit)
926 {
927 /*
928 * The default maximum number of async requests is calculated to consume
929 * 1/2^13 of the total memory, assuming 392 bytes per request.
930 */
931 if (*limit == 0)
932 *limit = ((totalram_pages() << PAGE_SHIFT) >> 13) / 392;
933
934 if (*limit >= 1 << 16)
935 *limit = (1 << 16) - 1;
936 }
937
set_global_limit(const char * val,const struct kernel_param * kp)938 static int set_global_limit(const char *val, const struct kernel_param *kp)
939 {
940 int rv;
941
942 rv = param_set_uint(val, kp);
943 if (rv)
944 return rv;
945
946 sanitize_global_limit((unsigned *)kp->arg);
947
948 return 0;
949 }
950
process_init_limits(struct fuse_conn * fc,struct fuse_init_out * arg)951 static void process_init_limits(struct fuse_conn *fc, struct fuse_init_out *arg)
952 {
953 int cap_sys_admin = capable(CAP_SYS_ADMIN);
954
955 if (arg->minor < 13)
956 return;
957
958 sanitize_global_limit(&max_user_bgreq);
959 sanitize_global_limit(&max_user_congthresh);
960
961 spin_lock(&fc->bg_lock);
962 if (arg->max_background) {
963 fc->max_background = arg->max_background;
964
965 if (!cap_sys_admin && fc->max_background > max_user_bgreq)
966 fc->max_background = max_user_bgreq;
967 }
968 if (arg->congestion_threshold) {
969 fc->congestion_threshold = arg->congestion_threshold;
970
971 if (!cap_sys_admin &&
972 fc->congestion_threshold > max_user_congthresh)
973 fc->congestion_threshold = max_user_congthresh;
974 }
975 spin_unlock(&fc->bg_lock);
976 }
977
978 struct fuse_init_args {
979 struct fuse_args args;
980 struct fuse_init_in in;
981 struct fuse_init_out out;
982 };
983
process_init_reply(struct fuse_mount * fm,struct fuse_args * args,int error)984 static void process_init_reply(struct fuse_mount *fm, struct fuse_args *args,
985 int error)
986 {
987 struct fuse_conn *fc = fm->fc;
988 struct fuse_init_args *ia = container_of(args, typeof(*ia), args);
989 struct fuse_init_out *arg = &ia->out;
990 bool ok = true;
991
992 if (error || arg->major != FUSE_KERNEL_VERSION)
993 ok = false;
994 else {
995 unsigned long ra_pages;
996
997 process_init_limits(fc, arg);
998
999 if (arg->minor >= 6) {
1000 ra_pages = arg->max_readahead / PAGE_SIZE;
1001 if (arg->flags & FUSE_ASYNC_READ)
1002 fc->async_read = 1;
1003 if (!(arg->flags & FUSE_POSIX_LOCKS))
1004 fc->no_lock = 1;
1005 if (arg->minor >= 17) {
1006 if (!(arg->flags & FUSE_FLOCK_LOCKS))
1007 fc->no_flock = 1;
1008 } else {
1009 if (!(arg->flags & FUSE_POSIX_LOCKS))
1010 fc->no_flock = 1;
1011 }
1012 if (arg->flags & FUSE_ATOMIC_O_TRUNC)
1013 fc->atomic_o_trunc = 1;
1014 if (arg->minor >= 9) {
1015 /* LOOKUP has dependency on proto version */
1016 if (arg->flags & FUSE_EXPORT_SUPPORT)
1017 fc->export_support = 1;
1018 }
1019 if (arg->flags & FUSE_BIG_WRITES)
1020 fc->big_writes = 1;
1021 if (arg->flags & FUSE_DONT_MASK)
1022 fc->dont_mask = 1;
1023 if (arg->flags & FUSE_AUTO_INVAL_DATA)
1024 fc->auto_inval_data = 1;
1025 else if (arg->flags & FUSE_EXPLICIT_INVAL_DATA)
1026 fc->explicit_inval_data = 1;
1027 if (arg->flags & FUSE_DO_READDIRPLUS) {
1028 fc->do_readdirplus = 1;
1029 if (arg->flags & FUSE_READDIRPLUS_AUTO)
1030 fc->readdirplus_auto = 1;
1031 }
1032 if (arg->flags & FUSE_ASYNC_DIO)
1033 fc->async_dio = 1;
1034 if (arg->flags & FUSE_WRITEBACK_CACHE)
1035 fc->writeback_cache = 1;
1036 if (arg->flags & FUSE_PARALLEL_DIROPS)
1037 fc->parallel_dirops = 1;
1038 if (arg->flags & FUSE_HANDLE_KILLPRIV)
1039 fc->handle_killpriv = 1;
1040 if (arg->time_gran && arg->time_gran <= 1000000000)
1041 fm->sb->s_time_gran = arg->time_gran;
1042 if ((arg->flags & FUSE_POSIX_ACL)) {
1043 fc->default_permissions = 1;
1044 fc->posix_acl = 1;
1045 fm->sb->s_xattr = fuse_acl_xattr_handlers;
1046 }
1047 if (arg->flags & FUSE_CACHE_SYMLINKS)
1048 fc->cache_symlinks = 1;
1049 if (arg->flags & FUSE_ABORT_ERROR)
1050 fc->abort_err = 1;
1051 if (arg->flags & FUSE_MAX_PAGES) {
1052 fc->max_pages =
1053 min_t(unsigned int, FUSE_MAX_MAX_PAGES,
1054 max_t(unsigned int, arg->max_pages, 1));
1055 }
1056 if (IS_ENABLED(CONFIG_FUSE_DAX) &&
1057 arg->flags & FUSE_MAP_ALIGNMENT &&
1058 !fuse_dax_check_alignment(fc, arg->map_alignment)) {
1059 ok = false;
1060 }
1061 } else {
1062 ra_pages = fc->max_read / PAGE_SIZE;
1063 fc->no_lock = 1;
1064 fc->no_flock = 1;
1065 }
1066
1067 fm->sb->s_bdi->ra_pages =
1068 min(fm->sb->s_bdi->ra_pages, ra_pages);
1069 fc->minor = arg->minor;
1070 fc->max_write = arg->minor < 5 ? 4096 : arg->max_write;
1071 fc->max_write = max_t(unsigned, 4096, fc->max_write);
1072 fc->conn_init = 1;
1073 }
1074 kfree(ia);
1075
1076 if (!ok) {
1077 fc->conn_init = 0;
1078 fc->conn_error = 1;
1079 }
1080
1081 fuse_set_initialized(fc);
1082 wake_up_all(&fc->blocked_waitq);
1083 }
1084
fuse_send_init(struct fuse_mount * fm)1085 void fuse_send_init(struct fuse_mount *fm)
1086 {
1087 struct fuse_init_args *ia;
1088
1089 ia = kzalloc(sizeof(*ia), GFP_KERNEL | __GFP_NOFAIL);
1090
1091 ia->in.major = FUSE_KERNEL_VERSION;
1092 ia->in.minor = FUSE_KERNEL_MINOR_VERSION;
1093 ia->in.max_readahead = fm->sb->s_bdi->ra_pages * PAGE_SIZE;
1094 ia->in.flags |=
1095 FUSE_ASYNC_READ | FUSE_POSIX_LOCKS | FUSE_ATOMIC_O_TRUNC |
1096 FUSE_EXPORT_SUPPORT | FUSE_BIG_WRITES | FUSE_DONT_MASK |
1097 FUSE_SPLICE_WRITE | FUSE_SPLICE_MOVE | FUSE_SPLICE_READ |
1098 FUSE_FLOCK_LOCKS | FUSE_HAS_IOCTL_DIR | FUSE_AUTO_INVAL_DATA |
1099 FUSE_DO_READDIRPLUS | FUSE_READDIRPLUS_AUTO | FUSE_ASYNC_DIO |
1100 FUSE_WRITEBACK_CACHE | FUSE_NO_OPEN_SUPPORT |
1101 FUSE_PARALLEL_DIROPS | FUSE_HANDLE_KILLPRIV | FUSE_POSIX_ACL |
1102 FUSE_ABORT_ERROR | FUSE_MAX_PAGES | FUSE_CACHE_SYMLINKS |
1103 FUSE_NO_OPENDIR_SUPPORT | FUSE_EXPLICIT_INVAL_DATA;
1104 #ifdef CONFIG_FUSE_DAX
1105 if (fm->fc->dax)
1106 ia->in.flags |= FUSE_MAP_ALIGNMENT;
1107 #endif
1108 if (fm->fc->auto_submounts)
1109 ia->in.flags |= FUSE_SUBMOUNTS;
1110
1111 ia->args.opcode = FUSE_INIT;
1112 ia->args.in_numargs = 1;
1113 ia->args.in_args[0].size = sizeof(ia->in);
1114 ia->args.in_args[0].value = &ia->in;
1115 ia->args.out_numargs = 1;
1116 /* Variable length argument used for backward compatibility
1117 with interface version < 7.5. Rest of init_out is zeroed
1118 by do_get_request(), so a short reply is not a problem */
1119 ia->args.out_argvar = true;
1120 ia->args.out_args[0].size = sizeof(ia->out);
1121 ia->args.out_args[0].value = &ia->out;
1122 ia->args.force = true;
1123 ia->args.nocreds = true;
1124 ia->args.end = process_init_reply;
1125
1126 if (fuse_simple_background(fm, &ia->args, GFP_KERNEL) != 0)
1127 process_init_reply(fm, &ia->args, -ENOTCONN);
1128 }
1129 EXPORT_SYMBOL_GPL(fuse_send_init);
1130
fuse_free_conn(struct fuse_conn * fc)1131 void fuse_free_conn(struct fuse_conn *fc)
1132 {
1133 WARN_ON(!list_empty(&fc->devices));
1134 kfree_rcu(fc, rcu);
1135 }
1136 EXPORT_SYMBOL_GPL(fuse_free_conn);
1137
fuse_bdi_init(struct fuse_conn * fc,struct super_block * sb)1138 static int fuse_bdi_init(struct fuse_conn *fc, struct super_block *sb)
1139 {
1140 int err;
1141 char *suffix = "";
1142
1143 if (sb->s_bdev) {
1144 suffix = "-fuseblk";
1145 /*
1146 * sb->s_bdi points to blkdev's bdi however we want to redirect
1147 * it to our private bdi...
1148 */
1149 bdi_put(sb->s_bdi);
1150 sb->s_bdi = &noop_backing_dev_info;
1151 }
1152 err = super_setup_bdi_name(sb, "%u:%u%s", MAJOR(fc->dev),
1153 MINOR(fc->dev), suffix);
1154 if (err)
1155 return err;
1156
1157 /* fuse does it's own writeback accounting */
1158 sb->s_bdi->capabilities &= ~BDI_CAP_WRITEBACK_ACCT;
1159 sb->s_bdi->capabilities |= BDI_CAP_STRICTLIMIT;
1160
1161 /*
1162 * For a single fuse filesystem use max 1% of dirty +
1163 * writeback threshold.
1164 *
1165 * This gives about 1M of write buffer for memory maps on a
1166 * machine with 1G and 10% dirty_ratio, which should be more
1167 * than enough.
1168 *
1169 * Privileged users can raise it by writing to
1170 *
1171 * /sys/class/bdi/<bdi>/max_ratio
1172 */
1173 bdi_set_max_ratio(sb->s_bdi, 1);
1174
1175 return 0;
1176 }
1177
fuse_dev_alloc(void)1178 struct fuse_dev *fuse_dev_alloc(void)
1179 {
1180 struct fuse_dev *fud;
1181 struct list_head *pq;
1182
1183 fud = kzalloc(sizeof(struct fuse_dev), GFP_KERNEL);
1184 if (!fud)
1185 return NULL;
1186
1187 pq = kcalloc(FUSE_PQ_HASH_SIZE, sizeof(struct list_head), GFP_KERNEL);
1188 if (!pq) {
1189 kfree(fud);
1190 return NULL;
1191 }
1192
1193 fud->pq.processing = pq;
1194 fuse_pqueue_init(&fud->pq);
1195
1196 return fud;
1197 }
1198 EXPORT_SYMBOL_GPL(fuse_dev_alloc);
1199
fuse_dev_install(struct fuse_dev * fud,struct fuse_conn * fc)1200 void fuse_dev_install(struct fuse_dev *fud, struct fuse_conn *fc)
1201 {
1202 fud->fc = fuse_conn_get(fc);
1203 spin_lock(&fc->lock);
1204 list_add_tail(&fud->entry, &fc->devices);
1205 spin_unlock(&fc->lock);
1206 }
1207 EXPORT_SYMBOL_GPL(fuse_dev_install);
1208
fuse_dev_alloc_install(struct fuse_conn * fc)1209 struct fuse_dev *fuse_dev_alloc_install(struct fuse_conn *fc)
1210 {
1211 struct fuse_dev *fud;
1212
1213 fud = fuse_dev_alloc();
1214 if (!fud)
1215 return NULL;
1216
1217 fuse_dev_install(fud, fc);
1218 return fud;
1219 }
1220 EXPORT_SYMBOL_GPL(fuse_dev_alloc_install);
1221
fuse_dev_free(struct fuse_dev * fud)1222 void fuse_dev_free(struct fuse_dev *fud)
1223 {
1224 struct fuse_conn *fc = fud->fc;
1225
1226 if (fc) {
1227 spin_lock(&fc->lock);
1228 list_del(&fud->entry);
1229 spin_unlock(&fc->lock);
1230
1231 fuse_conn_put(fc);
1232 }
1233 kfree(fud->pq.processing);
1234 kfree(fud);
1235 }
1236 EXPORT_SYMBOL_GPL(fuse_dev_free);
1237
fuse_fill_attr_from_inode(struct fuse_attr * attr,const struct fuse_inode * fi)1238 static void fuse_fill_attr_from_inode(struct fuse_attr *attr,
1239 const struct fuse_inode *fi)
1240 {
1241 *attr = (struct fuse_attr){
1242 .ino = fi->inode.i_ino,
1243 .size = fi->inode.i_size,
1244 .blocks = fi->inode.i_blocks,
1245 .atime = fi->inode.i_atime.tv_sec,
1246 .mtime = fi->inode.i_mtime.tv_sec,
1247 .ctime = fi->inode.i_ctime.tv_sec,
1248 .atimensec = fi->inode.i_atime.tv_nsec,
1249 .mtimensec = fi->inode.i_mtime.tv_nsec,
1250 .ctimensec = fi->inode.i_ctime.tv_nsec,
1251 .mode = fi->inode.i_mode,
1252 .nlink = fi->inode.i_nlink,
1253 .uid = fi->inode.i_uid.val,
1254 .gid = fi->inode.i_gid.val,
1255 .rdev = fi->inode.i_rdev,
1256 .blksize = 1u << fi->inode.i_blkbits,
1257 };
1258 }
1259
fuse_sb_defaults(struct super_block * sb)1260 static void fuse_sb_defaults(struct super_block *sb)
1261 {
1262 sb->s_magic = FUSE_SUPER_MAGIC;
1263 sb->s_op = &fuse_super_operations;
1264 sb->s_xattr = fuse_xattr_handlers;
1265 sb->s_maxbytes = MAX_LFS_FILESIZE;
1266 sb->s_time_gran = 1;
1267 sb->s_export_op = &fuse_export_operations;
1268 sb->s_iflags |= SB_I_IMA_UNVERIFIABLE_SIGNATURE;
1269 if (sb->s_user_ns != &init_user_ns)
1270 sb->s_iflags |= SB_I_UNTRUSTED_MOUNTER;
1271 sb->s_flags &= ~(SB_NOSEC | SB_I_VERSION);
1272
1273 /*
1274 * If we are not in the initial user namespace posix
1275 * acls must be translated.
1276 */
1277 if (sb->s_user_ns != &init_user_ns)
1278 sb->s_xattr = fuse_no_acl_xattr_handlers;
1279 }
1280
fuse_fill_super_submount(struct super_block * sb,struct fuse_inode * parent_fi)1281 int fuse_fill_super_submount(struct super_block *sb,
1282 struct fuse_inode *parent_fi)
1283 {
1284 struct fuse_mount *fm = get_fuse_mount_super(sb);
1285 struct super_block *parent_sb = parent_fi->inode.i_sb;
1286 struct fuse_attr root_attr;
1287 struct inode *root;
1288
1289 fuse_sb_defaults(sb);
1290 fm->sb = sb;
1291
1292 WARN_ON(sb->s_bdi != &noop_backing_dev_info);
1293 sb->s_bdi = bdi_get(parent_sb->s_bdi);
1294
1295 sb->s_xattr = parent_sb->s_xattr;
1296 sb->s_time_gran = parent_sb->s_time_gran;
1297 sb->s_blocksize = parent_sb->s_blocksize;
1298 sb->s_blocksize_bits = parent_sb->s_blocksize_bits;
1299 sb->s_subtype = kstrdup(parent_sb->s_subtype, GFP_KERNEL);
1300 if (parent_sb->s_subtype && !sb->s_subtype)
1301 return -ENOMEM;
1302
1303 fuse_fill_attr_from_inode(&root_attr, parent_fi);
1304 root = fuse_iget(sb, parent_fi->nodeid, 0, &root_attr, 0, 0);
1305 /*
1306 * This inode is just a duplicate, so it is not looked up and
1307 * its nlookup should not be incremented. fuse_iget() does
1308 * that, though, so undo it here.
1309 */
1310 get_fuse_inode(root)->nlookup--;
1311 sb->s_d_op = &fuse_dentry_operations;
1312 sb->s_root = d_make_root(root);
1313 if (!sb->s_root)
1314 return -ENOMEM;
1315
1316 return 0;
1317 }
1318
fuse_fill_super_common(struct super_block * sb,struct fuse_fs_context * ctx)1319 int fuse_fill_super_common(struct super_block *sb, struct fuse_fs_context *ctx)
1320 {
1321 struct fuse_dev *fud = NULL;
1322 struct fuse_mount *fm = get_fuse_mount_super(sb);
1323 struct fuse_conn *fc = fm->fc;
1324 struct inode *root;
1325 struct dentry *root_dentry;
1326 int err;
1327
1328 err = -EINVAL;
1329 if (sb->s_flags & SB_MANDLOCK)
1330 goto err;
1331
1332 fuse_sb_defaults(sb);
1333
1334 if (ctx->is_bdev) {
1335 #ifdef CONFIG_BLOCK
1336 err = -EINVAL;
1337 if (!sb_set_blocksize(sb, ctx->blksize))
1338 goto err;
1339 #endif
1340 } else {
1341 sb->s_blocksize = PAGE_SIZE;
1342 sb->s_blocksize_bits = PAGE_SHIFT;
1343 }
1344
1345 sb->s_subtype = ctx->subtype;
1346 ctx->subtype = NULL;
1347 if (IS_ENABLED(CONFIG_FUSE_DAX)) {
1348 err = fuse_dax_conn_alloc(fc, ctx->dax_dev);
1349 if (err)
1350 goto err;
1351 }
1352
1353 if (ctx->fudptr) {
1354 err = -ENOMEM;
1355 fud = fuse_dev_alloc_install(fc);
1356 if (!fud)
1357 goto err_free_dax;
1358 }
1359
1360 fc->dev = sb->s_dev;
1361 fm->sb = sb;
1362 err = fuse_bdi_init(fc, sb);
1363 if (err)
1364 goto err_dev_free;
1365
1366 /* Handle umasking inside the fuse code */
1367 if (sb->s_flags & SB_POSIXACL)
1368 fc->dont_mask = 1;
1369 sb->s_flags |= SB_POSIXACL;
1370
1371 fc->default_permissions = ctx->default_permissions;
1372 fc->allow_other = ctx->allow_other;
1373 fc->user_id = ctx->user_id;
1374 fc->group_id = ctx->group_id;
1375 fc->legacy_opts_show = ctx->legacy_opts_show;
1376 fc->max_read = max_t(unsigned int, 4096, ctx->max_read);
1377 fc->destroy = ctx->destroy;
1378 fc->no_control = ctx->no_control;
1379 fc->no_force_umount = ctx->no_force_umount;
1380
1381 err = -ENOMEM;
1382 root = fuse_get_root_inode(sb, ctx->rootmode);
1383 sb->s_d_op = &fuse_root_dentry_operations;
1384 root_dentry = d_make_root(root);
1385 if (!root_dentry)
1386 goto err_dev_free;
1387 /* Root dentry doesn't have .d_revalidate */
1388 sb->s_d_op = &fuse_dentry_operations;
1389
1390 mutex_lock(&fuse_mutex);
1391 err = -EINVAL;
1392 if (ctx->fudptr && *ctx->fudptr)
1393 goto err_unlock;
1394
1395 err = fuse_ctl_add_conn(fc);
1396 if (err)
1397 goto err_unlock;
1398
1399 list_add_tail(&fc->entry, &fuse_conn_list);
1400 sb->s_root = root_dentry;
1401 if (ctx->fudptr)
1402 *ctx->fudptr = fud;
1403 mutex_unlock(&fuse_mutex);
1404 return 0;
1405
1406 err_unlock:
1407 mutex_unlock(&fuse_mutex);
1408 dput(root_dentry);
1409 err_dev_free:
1410 if (fud)
1411 fuse_dev_free(fud);
1412 err_free_dax:
1413 if (IS_ENABLED(CONFIG_FUSE_DAX))
1414 fuse_dax_conn_free(fc);
1415 err:
1416 return err;
1417 }
1418 EXPORT_SYMBOL_GPL(fuse_fill_super_common);
1419
fuse_fill_super(struct super_block * sb,struct fs_context * fsc)1420 static int fuse_fill_super(struct super_block *sb, struct fs_context *fsc)
1421 {
1422 struct fuse_fs_context *ctx = fsc->fs_private;
1423 struct file *file;
1424 int err;
1425 struct fuse_conn *fc;
1426 struct fuse_mount *fm;
1427
1428 err = -EINVAL;
1429 file = fget(ctx->fd);
1430 if (!file)
1431 goto err;
1432
1433 /*
1434 * Require mount to happen from the same user namespace which
1435 * opened /dev/fuse to prevent potential attacks.
1436 */
1437 if ((file->f_op != &fuse_dev_operations) ||
1438 (file->f_cred->user_ns != sb->s_user_ns))
1439 goto err_fput;
1440 ctx->fudptr = &file->private_data;
1441
1442 fc = kmalloc(sizeof(*fc), GFP_KERNEL);
1443 err = -ENOMEM;
1444 if (!fc)
1445 goto err_fput;
1446
1447 fm = kzalloc(sizeof(*fm), GFP_KERNEL);
1448 if (!fm) {
1449 kfree(fc);
1450 goto err_fput;
1451 }
1452
1453 fuse_conn_init(fc, fm, sb->s_user_ns, &fuse_dev_fiq_ops, NULL);
1454 fc->release = fuse_free_conn;
1455
1456 sb->s_fs_info = fm;
1457
1458 err = fuse_fill_super_common(sb, ctx);
1459 if (err)
1460 goto err_put_conn;
1461 /*
1462 * atomic_dec_and_test() in fput() provides the necessary
1463 * memory barrier for file->private_data to be visible on all
1464 * CPUs after this
1465 */
1466 fput(file);
1467 fuse_send_init(get_fuse_mount_super(sb));
1468 return 0;
1469
1470 err_put_conn:
1471 fuse_mount_put(fm);
1472 sb->s_fs_info = NULL;
1473 err_fput:
1474 fput(file);
1475 err:
1476 return err;
1477 }
1478
fuse_get_tree(struct fs_context * fc)1479 static int fuse_get_tree(struct fs_context *fc)
1480 {
1481 struct fuse_fs_context *ctx = fc->fs_private;
1482
1483 if (!ctx->fd_present || !ctx->rootmode_present ||
1484 !ctx->user_id_present || !ctx->group_id_present)
1485 return -EINVAL;
1486
1487 #ifdef CONFIG_BLOCK
1488 if (ctx->is_bdev)
1489 return get_tree_bdev(fc, fuse_fill_super);
1490 #endif
1491
1492 return get_tree_nodev(fc, fuse_fill_super);
1493 }
1494
1495 static const struct fs_context_operations fuse_context_ops = {
1496 .free = fuse_free_fc,
1497 .parse_param = fuse_parse_param,
1498 .reconfigure = fuse_reconfigure,
1499 .get_tree = fuse_get_tree,
1500 };
1501
1502 /*
1503 * Set up the filesystem mount context.
1504 */
fuse_init_fs_context(struct fs_context * fc)1505 static int fuse_init_fs_context(struct fs_context *fc)
1506 {
1507 struct fuse_fs_context *ctx;
1508
1509 ctx = kzalloc(sizeof(struct fuse_fs_context), GFP_KERNEL);
1510 if (!ctx)
1511 return -ENOMEM;
1512
1513 ctx->max_read = ~0;
1514 ctx->blksize = FUSE_DEFAULT_BLKSIZE;
1515 ctx->legacy_opts_show = true;
1516
1517 #ifdef CONFIG_BLOCK
1518 if (fc->fs_type == &fuseblk_fs_type) {
1519 ctx->is_bdev = true;
1520 ctx->destroy = true;
1521 }
1522 #endif
1523
1524 fc->fs_private = ctx;
1525 fc->ops = &fuse_context_ops;
1526 return 0;
1527 }
1528
fuse_mount_remove(struct fuse_mount * fm)1529 bool fuse_mount_remove(struct fuse_mount *fm)
1530 {
1531 struct fuse_conn *fc = fm->fc;
1532 bool last = false;
1533
1534 down_write(&fc->killsb);
1535 list_del_init(&fm->fc_entry);
1536 if (list_empty(&fc->mounts))
1537 last = true;
1538 up_write(&fc->killsb);
1539
1540 return last;
1541 }
1542 EXPORT_SYMBOL_GPL(fuse_mount_remove);
1543
fuse_conn_destroy(struct fuse_mount * fm)1544 void fuse_conn_destroy(struct fuse_mount *fm)
1545 {
1546 struct fuse_conn *fc = fm->fc;
1547
1548 if (fc->destroy)
1549 fuse_send_destroy(fm);
1550
1551 fuse_abort_conn(fc);
1552 fuse_wait_aborted(fc);
1553
1554 if (!list_empty(&fc->entry)) {
1555 mutex_lock(&fuse_mutex);
1556 list_del(&fc->entry);
1557 fuse_ctl_remove_conn(fc);
1558 mutex_unlock(&fuse_mutex);
1559 }
1560 }
1561 EXPORT_SYMBOL_GPL(fuse_conn_destroy);
1562
fuse_kill_sb_anon(struct super_block * sb)1563 static void fuse_kill_sb_anon(struct super_block *sb)
1564 {
1565 struct fuse_mount *fm = get_fuse_mount_super(sb);
1566 bool last;
1567
1568 if (fm) {
1569 last = fuse_mount_remove(fm);
1570 if (last)
1571 fuse_conn_destroy(fm);
1572 }
1573 kill_anon_super(sb);
1574 }
1575
1576 static struct file_system_type fuse_fs_type = {
1577 .owner = THIS_MODULE,
1578 .name = "fuse",
1579 .fs_flags = FS_HAS_SUBTYPE | FS_USERNS_MOUNT,
1580 .init_fs_context = fuse_init_fs_context,
1581 .parameters = fuse_fs_parameters,
1582 .kill_sb = fuse_kill_sb_anon,
1583 };
1584 MODULE_ALIAS_FS("fuse");
1585
1586 #ifdef CONFIG_BLOCK
fuse_kill_sb_blk(struct super_block * sb)1587 static void fuse_kill_sb_blk(struct super_block *sb)
1588 {
1589 struct fuse_mount *fm = get_fuse_mount_super(sb);
1590 bool last;
1591
1592 if (fm) {
1593 last = fuse_mount_remove(fm);
1594 if (last)
1595 fuse_conn_destroy(fm);
1596 }
1597 kill_block_super(sb);
1598 }
1599
1600 static struct file_system_type fuseblk_fs_type = {
1601 .owner = THIS_MODULE,
1602 .name = "fuseblk",
1603 .init_fs_context = fuse_init_fs_context,
1604 .parameters = fuse_fs_parameters,
1605 .kill_sb = fuse_kill_sb_blk,
1606 .fs_flags = FS_REQUIRES_DEV | FS_HAS_SUBTYPE,
1607 };
1608 MODULE_ALIAS_FS("fuseblk");
1609
register_fuseblk(void)1610 static inline int register_fuseblk(void)
1611 {
1612 return register_filesystem(&fuseblk_fs_type);
1613 }
1614
unregister_fuseblk(void)1615 static inline void unregister_fuseblk(void)
1616 {
1617 unregister_filesystem(&fuseblk_fs_type);
1618 }
1619 #else
register_fuseblk(void)1620 static inline int register_fuseblk(void)
1621 {
1622 return 0;
1623 }
1624
unregister_fuseblk(void)1625 static inline void unregister_fuseblk(void)
1626 {
1627 }
1628 #endif
1629
fuse_inode_init_once(void * foo)1630 static void fuse_inode_init_once(void *foo)
1631 {
1632 struct inode *inode = foo;
1633
1634 inode_init_once(inode);
1635 }
1636
fuse_fs_init(void)1637 static int __init fuse_fs_init(void)
1638 {
1639 int err;
1640
1641 fuse_inode_cachep = kmem_cache_create("fuse_inode",
1642 sizeof(struct fuse_inode), 0,
1643 SLAB_HWCACHE_ALIGN|SLAB_ACCOUNT|SLAB_RECLAIM_ACCOUNT,
1644 fuse_inode_init_once);
1645 err = -ENOMEM;
1646 if (!fuse_inode_cachep)
1647 goto out;
1648
1649 err = register_fuseblk();
1650 if (err)
1651 goto out2;
1652
1653 err = register_filesystem(&fuse_fs_type);
1654 if (err)
1655 goto out3;
1656
1657 return 0;
1658
1659 out3:
1660 unregister_fuseblk();
1661 out2:
1662 kmem_cache_destroy(fuse_inode_cachep);
1663 out:
1664 return err;
1665 }
1666
fuse_fs_cleanup(void)1667 static void fuse_fs_cleanup(void)
1668 {
1669 unregister_filesystem(&fuse_fs_type);
1670 unregister_fuseblk();
1671
1672 /*
1673 * Make sure all delayed rcu free inodes are flushed before we
1674 * destroy cache.
1675 */
1676 rcu_barrier();
1677 kmem_cache_destroy(fuse_inode_cachep);
1678 }
1679
1680 static struct kobject *fuse_kobj;
1681
fuse_sysfs_init(void)1682 static int fuse_sysfs_init(void)
1683 {
1684 int err;
1685
1686 fuse_kobj = kobject_create_and_add("fuse", fs_kobj);
1687 if (!fuse_kobj) {
1688 err = -ENOMEM;
1689 goto out_err;
1690 }
1691
1692 err = sysfs_create_mount_point(fuse_kobj, "connections");
1693 if (err)
1694 goto out_fuse_unregister;
1695
1696 return 0;
1697
1698 out_fuse_unregister:
1699 kobject_put(fuse_kobj);
1700 out_err:
1701 return err;
1702 }
1703
fuse_sysfs_cleanup(void)1704 static void fuse_sysfs_cleanup(void)
1705 {
1706 sysfs_remove_mount_point(fuse_kobj, "connections");
1707 kobject_put(fuse_kobj);
1708 }
1709
fuse_init(void)1710 static int __init fuse_init(void)
1711 {
1712 int res;
1713
1714 pr_info("init (API version %i.%i)\n",
1715 FUSE_KERNEL_VERSION, FUSE_KERNEL_MINOR_VERSION);
1716
1717 INIT_LIST_HEAD(&fuse_conn_list);
1718 res = fuse_fs_init();
1719 if (res)
1720 goto err;
1721
1722 res = fuse_dev_init();
1723 if (res)
1724 goto err_fs_cleanup;
1725
1726 res = fuse_sysfs_init();
1727 if (res)
1728 goto err_dev_cleanup;
1729
1730 res = fuse_ctl_init();
1731 if (res)
1732 goto err_sysfs_cleanup;
1733
1734 sanitize_global_limit(&max_user_bgreq);
1735 sanitize_global_limit(&max_user_congthresh);
1736
1737 return 0;
1738
1739 err_sysfs_cleanup:
1740 fuse_sysfs_cleanup();
1741 err_dev_cleanup:
1742 fuse_dev_cleanup();
1743 err_fs_cleanup:
1744 fuse_fs_cleanup();
1745 err:
1746 return res;
1747 }
1748
fuse_exit(void)1749 static void __exit fuse_exit(void)
1750 {
1751 pr_debug("exit\n");
1752
1753 fuse_ctl_cleanup();
1754 fuse_sysfs_cleanup();
1755 fuse_fs_cleanup();
1756 fuse_dev_cleanup();
1757 }
1758
1759 module_init(fuse_init);
1760 module_exit(fuse_exit);
1761