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