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