GNU Linux-libre 4.19.207-gnu1
[releases.git] / fs / overlayfs / super.c
1 /*
2  *
3  * Copyright (C) 2011 Novell Inc.
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License version 2 as published by
7  * the Free Software Foundation.
8  */
9
10 #include <uapi/linux/magic.h>
11 #include <linux/fs.h>
12 #include <linux/namei.h>
13 #include <linux/xattr.h>
14 #include <linux/mount.h>
15 #include <linux/parser.h>
16 #include <linux/module.h>
17 #include <linux/statfs.h>
18 #include <linux/seq_file.h>
19 #include <linux/posix_acl_xattr.h>
20 #include <linux/exportfs.h>
21 #include "overlayfs.h"
22
23 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
24 MODULE_DESCRIPTION("Overlay filesystem");
25 MODULE_LICENSE("GPL");
26
27
28 struct ovl_dir_cache;
29
30 #define OVL_MAX_STACK 500
31
32 static bool ovl_redirect_dir_def = IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR);
33 module_param_named(redirect_dir, ovl_redirect_dir_def, bool, 0644);
34 MODULE_PARM_DESC(ovl_redirect_dir_def,
35                  "Default to on or off for the redirect_dir feature");
36
37 static bool ovl_redirect_always_follow =
38         IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW);
39 module_param_named(redirect_always_follow, ovl_redirect_always_follow,
40                    bool, 0644);
41 MODULE_PARM_DESC(ovl_redirect_always_follow,
42                  "Follow redirects even if redirect_dir feature is turned off");
43
44 static bool ovl_index_def = IS_ENABLED(CONFIG_OVERLAY_FS_INDEX);
45 module_param_named(index, ovl_index_def, bool, 0644);
46 MODULE_PARM_DESC(ovl_index_def,
47                  "Default to on or off for the inodes index feature");
48
49 static bool ovl_nfs_export_def = IS_ENABLED(CONFIG_OVERLAY_FS_NFS_EXPORT);
50 module_param_named(nfs_export, ovl_nfs_export_def, bool, 0644);
51 MODULE_PARM_DESC(ovl_nfs_export_def,
52                  "Default to on or off for the NFS export feature");
53
54 static bool ovl_xino_auto_def = IS_ENABLED(CONFIG_OVERLAY_FS_XINO_AUTO);
55 module_param_named(xino_auto, ovl_xino_auto_def, bool, 0644);
56 MODULE_PARM_DESC(ovl_xino_auto_def,
57                  "Auto enable xino feature");
58
59 static void ovl_entry_stack_free(struct ovl_entry *oe)
60 {
61         unsigned int i;
62
63         for (i = 0; i < oe->numlower; i++)
64                 dput(oe->lowerstack[i].dentry);
65 }
66
67 static bool ovl_metacopy_def = IS_ENABLED(CONFIG_OVERLAY_FS_METACOPY);
68 module_param_named(metacopy, ovl_metacopy_def, bool, 0644);
69 MODULE_PARM_DESC(ovl_metacopy_def,
70                  "Default to on or off for the metadata only copy up feature");
71
72 static void ovl_dentry_release(struct dentry *dentry)
73 {
74         struct ovl_entry *oe = dentry->d_fsdata;
75
76         if (oe) {
77                 ovl_entry_stack_free(oe);
78                 kfree_rcu(oe, rcu);
79         }
80 }
81
82 static struct dentry *ovl_d_real(struct dentry *dentry,
83                                  const struct inode *inode)
84 {
85         struct dentry *real = NULL, *lower;
86
87         /* It's an overlay file */
88         if (inode && d_inode(dentry) == inode)
89                 return dentry;
90
91         if (!d_is_reg(dentry)) {
92                 if (!inode || inode == d_inode(dentry))
93                         return dentry;
94                 goto bug;
95         }
96
97         real = ovl_dentry_upper(dentry);
98         if (real && (inode == d_inode(real)))
99                 return real;
100
101         if (real && !inode && ovl_has_upperdata(d_inode(dentry)))
102                 return real;
103
104         lower = ovl_dentry_lowerdata(dentry);
105         if (!lower)
106                 goto bug;
107         real = lower;
108
109         /* Handle recursion */
110         real = d_real(real, inode);
111
112         if (!inode || inode == d_inode(real))
113                 return real;
114 bug:
115         WARN(1, "%s(%pd4, %s:%lu): real dentry (%p/%lu) not found\n",
116              __func__, dentry, inode ? inode->i_sb->s_id : "NULL",
117              inode ? inode->i_ino : 0, real,
118              real && d_inode(real) ? d_inode(real)->i_ino : 0);
119         return dentry;
120 }
121
122 static int ovl_dentry_revalidate(struct dentry *dentry, unsigned int flags)
123 {
124         struct ovl_entry *oe = dentry->d_fsdata;
125         unsigned int i;
126         int ret = 1;
127
128         for (i = 0; i < oe->numlower; i++) {
129                 struct dentry *d = oe->lowerstack[i].dentry;
130
131                 if (d->d_flags & DCACHE_OP_REVALIDATE) {
132                         ret = d->d_op->d_revalidate(d, flags);
133                         if (ret < 0)
134                                 return ret;
135                         if (!ret) {
136                                 if (!(flags & LOOKUP_RCU))
137                                         d_invalidate(d);
138                                 return -ESTALE;
139                         }
140                 }
141         }
142         return 1;
143 }
144
145 static int ovl_dentry_weak_revalidate(struct dentry *dentry, unsigned int flags)
146 {
147         struct ovl_entry *oe = dentry->d_fsdata;
148         unsigned int i;
149         int ret = 1;
150
151         for (i = 0; i < oe->numlower; i++) {
152                 struct dentry *d = oe->lowerstack[i].dentry;
153
154                 if (d->d_flags & DCACHE_OP_WEAK_REVALIDATE) {
155                         ret = d->d_op->d_weak_revalidate(d, flags);
156                         if (ret <= 0)
157                                 break;
158                 }
159         }
160         return ret;
161 }
162
163 static const struct dentry_operations ovl_dentry_operations = {
164         .d_release = ovl_dentry_release,
165         .d_real = ovl_d_real,
166 };
167
168 static const struct dentry_operations ovl_reval_dentry_operations = {
169         .d_release = ovl_dentry_release,
170         .d_real = ovl_d_real,
171         .d_revalidate = ovl_dentry_revalidate,
172         .d_weak_revalidate = ovl_dentry_weak_revalidate,
173 };
174
175 static struct kmem_cache *ovl_inode_cachep;
176
177 static struct inode *ovl_alloc_inode(struct super_block *sb)
178 {
179         struct ovl_inode *oi = kmem_cache_alloc(ovl_inode_cachep, GFP_KERNEL);
180
181         if (!oi)
182                 return NULL;
183
184         oi->cache = NULL;
185         oi->redirect = NULL;
186         oi->version = 0;
187         oi->flags = 0;
188         oi->__upperdentry = NULL;
189         oi->lower = NULL;
190         oi->lowerdata = NULL;
191         mutex_init(&oi->lock);
192
193         return &oi->vfs_inode;
194 }
195
196 static void ovl_i_callback(struct rcu_head *head)
197 {
198         struct inode *inode = container_of(head, struct inode, i_rcu);
199
200         kmem_cache_free(ovl_inode_cachep, OVL_I(inode));
201 }
202
203 static void ovl_destroy_inode(struct inode *inode)
204 {
205         struct ovl_inode *oi = OVL_I(inode);
206
207         dput(oi->__upperdentry);
208         iput(oi->lower);
209         if (S_ISDIR(inode->i_mode))
210                 ovl_dir_cache_free(inode);
211         else
212                 iput(oi->lowerdata);
213         kfree(oi->redirect);
214         mutex_destroy(&oi->lock);
215
216         call_rcu(&inode->i_rcu, ovl_i_callback);
217 }
218
219 static void ovl_free_fs(struct ovl_fs *ofs)
220 {
221         unsigned i;
222
223         iput(ofs->workbasedir_trap);
224         iput(ofs->indexdir_trap);
225         iput(ofs->workdir_trap);
226         iput(ofs->upperdir_trap);
227         dput(ofs->indexdir);
228         dput(ofs->workdir);
229         if (ofs->workdir_locked)
230                 ovl_inuse_unlock(ofs->workbasedir);
231         dput(ofs->workbasedir);
232         if (ofs->upperdir_locked)
233                 ovl_inuse_unlock(ofs->upper_mnt->mnt_root);
234         mntput(ofs->upper_mnt);
235         for (i = 0; i < ofs->numlower; i++) {
236                 iput(ofs->lower_layers[i].trap);
237                 mntput(ofs->lower_layers[i].mnt);
238         }
239         for (i = 0; i < ofs->numlowerfs; i++)
240                 free_anon_bdev(ofs->lower_fs[i].pseudo_dev);
241         kfree(ofs->lower_layers);
242         kfree(ofs->lower_fs);
243
244         kfree(ofs->config.lowerdir);
245         kfree(ofs->config.upperdir);
246         kfree(ofs->config.workdir);
247         kfree(ofs->config.redirect_mode);
248         if (ofs->creator_cred)
249                 put_cred(ofs->creator_cred);
250         kfree(ofs);
251 }
252
253 static void ovl_put_super(struct super_block *sb)
254 {
255         struct ovl_fs *ofs = sb->s_fs_info;
256
257         ovl_free_fs(ofs);
258 }
259
260 /* Sync real dirty inodes in upper filesystem (if it exists) */
261 static int ovl_sync_fs(struct super_block *sb, int wait)
262 {
263         struct ovl_fs *ofs = sb->s_fs_info;
264         struct super_block *upper_sb;
265         int ret;
266
267         if (!ofs->upper_mnt)
268                 return 0;
269
270         /*
271          * If this is a sync(2) call or an emergency sync, all the super blocks
272          * will be iterated, including upper_sb, so no need to do anything.
273          *
274          * If this is a syncfs(2) call, then we do need to call
275          * sync_filesystem() on upper_sb, but enough if we do it when being
276          * called with wait == 1.
277          */
278         if (!wait)
279                 return 0;
280
281         upper_sb = ofs->upper_mnt->mnt_sb;
282
283         down_read(&upper_sb->s_umount);
284         ret = sync_filesystem(upper_sb);
285         up_read(&upper_sb->s_umount);
286
287         return ret;
288 }
289
290 /**
291  * ovl_statfs
292  * @sb: The overlayfs super block
293  * @buf: The struct kstatfs to fill in with stats
294  *
295  * Get the filesystem statistics.  As writes always target the upper layer
296  * filesystem pass the statfs to the upper filesystem (if it exists)
297  */
298 static int ovl_statfs(struct dentry *dentry, struct kstatfs *buf)
299 {
300         struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
301         struct dentry *root_dentry = dentry->d_sb->s_root;
302         struct path path;
303         int err;
304
305         ovl_path_real(root_dentry, &path);
306
307         err = vfs_statfs(&path, buf);
308         if (!err) {
309                 buf->f_namelen = ofs->namelen;
310                 buf->f_type = OVERLAYFS_SUPER_MAGIC;
311         }
312
313         return err;
314 }
315
316 /* Will this overlay be forced to mount/remount ro? */
317 static bool ovl_force_readonly(struct ovl_fs *ofs)
318 {
319         return (!ofs->upper_mnt || !ofs->workdir);
320 }
321
322 static const char *ovl_redirect_mode_def(void)
323 {
324         return ovl_redirect_dir_def ? "on" : "off";
325 }
326
327 enum {
328         OVL_XINO_OFF,
329         OVL_XINO_AUTO,
330         OVL_XINO_ON,
331 };
332
333 static const char * const ovl_xino_str[] = {
334         "off",
335         "auto",
336         "on",
337 };
338
339 static inline int ovl_xino_def(void)
340 {
341         return ovl_xino_auto_def ? OVL_XINO_AUTO : OVL_XINO_OFF;
342 }
343
344 /**
345  * ovl_show_options
346  *
347  * Prints the mount options for a given superblock.
348  * Returns zero; does not fail.
349  */
350 static int ovl_show_options(struct seq_file *m, struct dentry *dentry)
351 {
352         struct super_block *sb = dentry->d_sb;
353         struct ovl_fs *ofs = sb->s_fs_info;
354
355         seq_show_option(m, "lowerdir", ofs->config.lowerdir);
356         if (ofs->config.upperdir) {
357                 seq_show_option(m, "upperdir", ofs->config.upperdir);
358                 seq_show_option(m, "workdir", ofs->config.workdir);
359         }
360         if (ofs->config.default_permissions)
361                 seq_puts(m, ",default_permissions");
362         if (strcmp(ofs->config.redirect_mode, ovl_redirect_mode_def()) != 0)
363                 seq_printf(m, ",redirect_dir=%s", ofs->config.redirect_mode);
364         if (ofs->config.index != ovl_index_def)
365                 seq_printf(m, ",index=%s", ofs->config.index ? "on" : "off");
366         if (ofs->config.nfs_export != ovl_nfs_export_def)
367                 seq_printf(m, ",nfs_export=%s", ofs->config.nfs_export ?
368                                                 "on" : "off");
369         if (ofs->config.xino != ovl_xino_def())
370                 seq_printf(m, ",xino=%s", ovl_xino_str[ofs->config.xino]);
371         if (ofs->config.metacopy != ovl_metacopy_def)
372                 seq_printf(m, ",metacopy=%s",
373                            ofs->config.metacopy ? "on" : "off");
374         return 0;
375 }
376
377 static int ovl_remount(struct super_block *sb, int *flags, char *data)
378 {
379         struct ovl_fs *ofs = sb->s_fs_info;
380
381         if (!(*flags & SB_RDONLY) && ovl_force_readonly(ofs))
382                 return -EROFS;
383
384         return 0;
385 }
386
387 static const struct super_operations ovl_super_operations = {
388         .alloc_inode    = ovl_alloc_inode,
389         .destroy_inode  = ovl_destroy_inode,
390         .drop_inode     = generic_delete_inode,
391         .put_super      = ovl_put_super,
392         .sync_fs        = ovl_sync_fs,
393         .statfs         = ovl_statfs,
394         .show_options   = ovl_show_options,
395         .remount_fs     = ovl_remount,
396 };
397
398 enum {
399         OPT_LOWERDIR,
400         OPT_UPPERDIR,
401         OPT_WORKDIR,
402         OPT_DEFAULT_PERMISSIONS,
403         OPT_REDIRECT_DIR,
404         OPT_INDEX_ON,
405         OPT_INDEX_OFF,
406         OPT_NFS_EXPORT_ON,
407         OPT_NFS_EXPORT_OFF,
408         OPT_XINO_ON,
409         OPT_XINO_OFF,
410         OPT_XINO_AUTO,
411         OPT_METACOPY_ON,
412         OPT_METACOPY_OFF,
413         OPT_ERR,
414 };
415
416 static const match_table_t ovl_tokens = {
417         {OPT_LOWERDIR,                  "lowerdir=%s"},
418         {OPT_UPPERDIR,                  "upperdir=%s"},
419         {OPT_WORKDIR,                   "workdir=%s"},
420         {OPT_DEFAULT_PERMISSIONS,       "default_permissions"},
421         {OPT_REDIRECT_DIR,              "redirect_dir=%s"},
422         {OPT_INDEX_ON,                  "index=on"},
423         {OPT_INDEX_OFF,                 "index=off"},
424         {OPT_NFS_EXPORT_ON,             "nfs_export=on"},
425         {OPT_NFS_EXPORT_OFF,            "nfs_export=off"},
426         {OPT_XINO_ON,                   "xino=on"},
427         {OPT_XINO_OFF,                  "xino=off"},
428         {OPT_XINO_AUTO,                 "xino=auto"},
429         {OPT_METACOPY_ON,               "metacopy=on"},
430         {OPT_METACOPY_OFF,              "metacopy=off"},
431         {OPT_ERR,                       NULL}
432 };
433
434 static char *ovl_next_opt(char **s)
435 {
436         char *sbegin = *s;
437         char *p;
438
439         if (sbegin == NULL)
440                 return NULL;
441
442         for (p = sbegin; *p; p++) {
443                 if (*p == '\\') {
444                         p++;
445                         if (!*p)
446                                 break;
447                 } else if (*p == ',') {
448                         *p = '\0';
449                         *s = p + 1;
450                         return sbegin;
451                 }
452         }
453         *s = NULL;
454         return sbegin;
455 }
456
457 static int ovl_parse_redirect_mode(struct ovl_config *config, const char *mode)
458 {
459         if (strcmp(mode, "on") == 0) {
460                 config->redirect_dir = true;
461                 /*
462                  * Does not make sense to have redirect creation without
463                  * redirect following.
464                  */
465                 config->redirect_follow = true;
466         } else if (strcmp(mode, "follow") == 0) {
467                 config->redirect_follow = true;
468         } else if (strcmp(mode, "off") == 0) {
469                 if (ovl_redirect_always_follow)
470                         config->redirect_follow = true;
471         } else if (strcmp(mode, "nofollow") != 0) {
472                 pr_err("overlayfs: bad mount option \"redirect_dir=%s\"\n",
473                        mode);
474                 return -EINVAL;
475         }
476
477         return 0;
478 }
479
480 static int ovl_parse_opt(char *opt, struct ovl_config *config)
481 {
482         char *p;
483         int err;
484         bool metacopy_opt = false, redirect_opt = false;
485
486         config->redirect_mode = kstrdup(ovl_redirect_mode_def(), GFP_KERNEL);
487         if (!config->redirect_mode)
488                 return -ENOMEM;
489
490         while ((p = ovl_next_opt(&opt)) != NULL) {
491                 int token;
492                 substring_t args[MAX_OPT_ARGS];
493
494                 if (!*p)
495                         continue;
496
497                 token = match_token(p, ovl_tokens, args);
498                 switch (token) {
499                 case OPT_UPPERDIR:
500                         kfree(config->upperdir);
501                         config->upperdir = match_strdup(&args[0]);
502                         if (!config->upperdir)
503                                 return -ENOMEM;
504                         break;
505
506                 case OPT_LOWERDIR:
507                         kfree(config->lowerdir);
508                         config->lowerdir = match_strdup(&args[0]);
509                         if (!config->lowerdir)
510                                 return -ENOMEM;
511                         break;
512
513                 case OPT_WORKDIR:
514                         kfree(config->workdir);
515                         config->workdir = match_strdup(&args[0]);
516                         if (!config->workdir)
517                                 return -ENOMEM;
518                         break;
519
520                 case OPT_DEFAULT_PERMISSIONS:
521                         config->default_permissions = true;
522                         break;
523
524                 case OPT_REDIRECT_DIR:
525                         kfree(config->redirect_mode);
526                         config->redirect_mode = match_strdup(&args[0]);
527                         if (!config->redirect_mode)
528                                 return -ENOMEM;
529                         redirect_opt = true;
530                         break;
531
532                 case OPT_INDEX_ON:
533                         config->index = true;
534                         break;
535
536                 case OPT_INDEX_OFF:
537                         config->index = false;
538                         break;
539
540                 case OPT_NFS_EXPORT_ON:
541                         config->nfs_export = true;
542                         break;
543
544                 case OPT_NFS_EXPORT_OFF:
545                         config->nfs_export = false;
546                         break;
547
548                 case OPT_XINO_ON:
549                         config->xino = OVL_XINO_ON;
550                         break;
551
552                 case OPT_XINO_OFF:
553                         config->xino = OVL_XINO_OFF;
554                         break;
555
556                 case OPT_XINO_AUTO:
557                         config->xino = OVL_XINO_AUTO;
558                         break;
559
560                 case OPT_METACOPY_ON:
561                         config->metacopy = true;
562                         metacopy_opt = true;
563                         break;
564
565                 case OPT_METACOPY_OFF:
566                         config->metacopy = false;
567                         break;
568
569                 default:
570                         pr_err("overlayfs: unrecognized mount option \"%s\" or missing value\n", p);
571                         return -EINVAL;
572                 }
573         }
574
575         /* Workdir is useless in non-upper mount */
576         if (!config->upperdir && config->workdir) {
577                 pr_info("overlayfs: option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
578                         config->workdir);
579                 kfree(config->workdir);
580                 config->workdir = NULL;
581         }
582
583         err = ovl_parse_redirect_mode(config, config->redirect_mode);
584         if (err)
585                 return err;
586
587         /*
588          * This is to make the logic below simpler.  It doesn't make any other
589          * difference, since config->redirect_dir is only used for upper.
590          */
591         if (!config->upperdir && config->redirect_follow)
592                 config->redirect_dir = true;
593
594         /* Resolve metacopy -> redirect_dir dependency */
595         if (config->metacopy && !config->redirect_dir) {
596                 if (metacopy_opt && redirect_opt) {
597                         pr_err("overlayfs: conflicting options: metacopy=on,redirect_dir=%s\n",
598                                config->redirect_mode);
599                         return -EINVAL;
600                 }
601                 if (redirect_opt) {
602                         /*
603                          * There was an explicit redirect_dir=... that resulted
604                          * in this conflict.
605                          */
606                         pr_info("overlayfs: disabling metacopy due to redirect_dir=%s\n",
607                                 config->redirect_mode);
608                         config->metacopy = false;
609                 } else {
610                         /* Automatically enable redirect otherwise. */
611                         config->redirect_follow = config->redirect_dir = true;
612                 }
613         }
614
615         return 0;
616 }
617
618 #define OVL_WORKDIR_NAME "work"
619 #define OVL_INDEXDIR_NAME "index"
620
621 static struct dentry *ovl_workdir_create(struct ovl_fs *ofs,
622                                          const char *name, bool persist)
623 {
624         struct inode *dir =  ofs->workbasedir->d_inode;
625         struct vfsmount *mnt = ofs->upper_mnt;
626         struct dentry *work;
627         int err;
628         bool retried = false;
629         bool locked = false;
630
631         inode_lock_nested(dir, I_MUTEX_PARENT);
632         locked = true;
633
634 retry:
635         work = lookup_one_len(name, ofs->workbasedir, strlen(name));
636
637         if (!IS_ERR(work)) {
638                 struct iattr attr = {
639                         .ia_valid = ATTR_MODE,
640                         .ia_mode = S_IFDIR | 0,
641                 };
642
643                 if (work->d_inode) {
644                         err = -EEXIST;
645                         if (retried)
646                                 goto out_dput;
647
648                         if (persist)
649                                 goto out_unlock;
650
651                         retried = true;
652                         ovl_workdir_cleanup(dir, mnt, work, 0);
653                         dput(work);
654                         goto retry;
655                 }
656
657                 work = ovl_create_real(dir, work, OVL_CATTR(attr.ia_mode));
658                 err = PTR_ERR(work);
659                 if (IS_ERR(work))
660                         goto out_err;
661
662                 /*
663                  * Try to remove POSIX ACL xattrs from workdir.  We are good if:
664                  *
665                  * a) success (there was a POSIX ACL xattr and was removed)
666                  * b) -ENODATA (there was no POSIX ACL xattr)
667                  * c) -EOPNOTSUPP (POSIX ACL xattrs are not supported)
668                  *
669                  * There are various other error values that could effectively
670                  * mean that the xattr doesn't exist (e.g. -ERANGE is returned
671                  * if the xattr name is too long), but the set of filesystems
672                  * allowed as upper are limited to "normal" ones, where checking
673                  * for the above two errors is sufficient.
674                  */
675                 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_DEFAULT);
676                 if (err && err != -ENODATA && err != -EOPNOTSUPP)
677                         goto out_dput;
678
679                 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_ACCESS);
680                 if (err && err != -ENODATA && err != -EOPNOTSUPP)
681                         goto out_dput;
682
683                 /* Clear any inherited mode bits */
684                 inode_lock(work->d_inode);
685                 err = notify_change(work, &attr, NULL);
686                 inode_unlock(work->d_inode);
687                 if (err)
688                         goto out_dput;
689         } else {
690                 err = PTR_ERR(work);
691                 goto out_err;
692         }
693 out_unlock:
694         if (locked)
695                 inode_unlock(dir);
696
697         return work;
698
699 out_dput:
700         dput(work);
701 out_err:
702         pr_warn("overlayfs: failed to create directory %s/%s (errno: %i); mounting read-only\n",
703                 ofs->config.workdir, name, -err);
704         work = NULL;
705         goto out_unlock;
706 }
707
708 static void ovl_unescape(char *s)
709 {
710         char *d = s;
711
712         for (;; s++, d++) {
713                 if (*s == '\\')
714                         s++;
715                 *d = *s;
716                 if (!*s)
717                         break;
718         }
719 }
720
721 static int ovl_mount_dir_noesc(const char *name, struct path *path)
722 {
723         int err = -EINVAL;
724
725         if (!*name) {
726                 pr_err("overlayfs: empty lowerdir\n");
727                 goto out;
728         }
729         err = kern_path(name, LOOKUP_FOLLOW, path);
730         if (err) {
731                 pr_err("overlayfs: failed to resolve '%s': %i\n", name, err);
732                 goto out;
733         }
734         err = -EINVAL;
735         if (ovl_dentry_weird(path->dentry)) {
736                 pr_err("overlayfs: filesystem on '%s' not supported\n", name);
737                 goto out_put;
738         }
739         if (!d_is_dir(path->dentry)) {
740                 pr_err("overlayfs: '%s' not a directory\n", name);
741                 goto out_put;
742         }
743         return 0;
744
745 out_put:
746         path_put_init(path);
747 out:
748         return err;
749 }
750
751 static int ovl_mount_dir(const char *name, struct path *path)
752 {
753         int err = -ENOMEM;
754         char *tmp = kstrdup(name, GFP_KERNEL);
755
756         if (tmp) {
757                 ovl_unescape(tmp);
758                 err = ovl_mount_dir_noesc(tmp, path);
759
760                 if (!err)
761                         if (ovl_dentry_remote(path->dentry)) {
762                                 pr_err("overlayfs: filesystem on '%s' not supported as upperdir\n",
763                                        tmp);
764                                 path_put_init(path);
765                                 err = -EINVAL;
766                         }
767                 kfree(tmp);
768         }
769         return err;
770 }
771
772 static int ovl_check_namelen(struct path *path, struct ovl_fs *ofs,
773                              const char *name)
774 {
775         struct kstatfs statfs;
776         int err = vfs_statfs(path, &statfs);
777
778         if (err)
779                 pr_err("overlayfs: statfs failed on '%s'\n", name);
780         else
781                 ofs->namelen = max(ofs->namelen, statfs.f_namelen);
782
783         return err;
784 }
785
786 static int ovl_lower_dir(const char *name, struct path *path,
787                          struct ovl_fs *ofs, int *stack_depth, bool *remote)
788 {
789         int fh_type;
790         int err;
791
792         err = ovl_mount_dir_noesc(name, path);
793         if (err)
794                 goto out;
795
796         err = ovl_check_namelen(path, ofs, name);
797         if (err)
798                 goto out_put;
799
800         *stack_depth = max(*stack_depth, path->mnt->mnt_sb->s_stack_depth);
801
802         if (ovl_dentry_remote(path->dentry))
803                 *remote = true;
804
805         /*
806          * The inodes index feature and NFS export need to encode and decode
807          * file handles, so they require that all layers support them.
808          */
809         fh_type = ovl_can_decode_fh(path->dentry->d_sb);
810         if ((ofs->config.nfs_export ||
811              (ofs->config.index && ofs->config.upperdir)) && !fh_type) {
812                 ofs->config.index = false;
813                 ofs->config.nfs_export = false;
814                 pr_warn("overlayfs: fs on '%s' does not support file handles, falling back to index=off,nfs_export=off.\n",
815                         name);
816         }
817
818         /* Check if lower fs has 32bit inode numbers */
819         if (fh_type != FILEID_INO32_GEN)
820                 ofs->xino_bits = 0;
821
822         return 0;
823
824 out_put:
825         path_put_init(path);
826 out:
827         return err;
828 }
829
830 /* Workdir should not be subdir of upperdir and vice versa */
831 static bool ovl_workdir_ok(struct dentry *workdir, struct dentry *upperdir)
832 {
833         bool ok = false;
834
835         if (workdir != upperdir) {
836                 ok = (lock_rename(workdir, upperdir) == NULL);
837                 unlock_rename(workdir, upperdir);
838         }
839         return ok;
840 }
841
842 static unsigned int ovl_split_lowerdirs(char *str)
843 {
844         unsigned int ctr = 1;
845         char *s, *d;
846
847         for (s = d = str;; s++, d++) {
848                 if (*s == '\\') {
849                         s++;
850                 } else if (*s == ':') {
851                         *d = '\0';
852                         ctr++;
853                         continue;
854                 }
855                 *d = *s;
856                 if (!*s)
857                         break;
858         }
859         return ctr;
860 }
861
862 static int __maybe_unused
863 ovl_posix_acl_xattr_get(const struct xattr_handler *handler,
864                         struct dentry *dentry, struct inode *inode,
865                         const char *name, void *buffer, size_t size)
866 {
867         return ovl_xattr_get(dentry, inode, handler->name, buffer, size);
868 }
869
870 static int __maybe_unused
871 ovl_posix_acl_xattr_set(const struct xattr_handler *handler,
872                         struct dentry *dentry, struct inode *inode,
873                         const char *name, const void *value,
874                         size_t size, int flags)
875 {
876         struct dentry *workdir = ovl_workdir(dentry);
877         struct inode *realinode = ovl_inode_real(inode);
878         struct posix_acl *acl = NULL;
879         int err;
880
881         /* Check that everything is OK before copy-up */
882         if (value) {
883                 acl = posix_acl_from_xattr(&init_user_ns, value, size);
884                 if (IS_ERR(acl))
885                         return PTR_ERR(acl);
886         }
887         err = -EOPNOTSUPP;
888         if (!IS_POSIXACL(d_inode(workdir)))
889                 goto out_acl_release;
890         if (!realinode->i_op->set_acl)
891                 goto out_acl_release;
892         if (handler->flags == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode)) {
893                 err = acl ? -EACCES : 0;
894                 goto out_acl_release;
895         }
896         err = -EPERM;
897         if (!inode_owner_or_capable(inode))
898                 goto out_acl_release;
899
900         posix_acl_release(acl);
901
902         /*
903          * Check if sgid bit needs to be cleared (actual setacl operation will
904          * be done with mounter's capabilities and so that won't do it for us).
905          */
906         if (unlikely(inode->i_mode & S_ISGID) &&
907             handler->flags == ACL_TYPE_ACCESS &&
908             !in_group_p(inode->i_gid) &&
909             !capable_wrt_inode_uidgid(inode, CAP_FSETID)) {
910                 struct iattr iattr = { .ia_valid = ATTR_KILL_SGID };
911
912                 err = ovl_setattr(dentry, &iattr);
913                 if (err)
914                         return err;
915         }
916
917         err = ovl_xattr_set(dentry, inode, handler->name, value, size, flags);
918         if (!err)
919                 ovl_copyattr(ovl_inode_real(inode), inode);
920
921         return err;
922
923 out_acl_release:
924         posix_acl_release(acl);
925         return err;
926 }
927
928 static int ovl_own_xattr_get(const struct xattr_handler *handler,
929                              struct dentry *dentry, struct inode *inode,
930                              const char *name, void *buffer, size_t size)
931 {
932         return -EOPNOTSUPP;
933 }
934
935 static int ovl_own_xattr_set(const struct xattr_handler *handler,
936                              struct dentry *dentry, struct inode *inode,
937                              const char *name, const void *value,
938                              size_t size, int flags)
939 {
940         return -EOPNOTSUPP;
941 }
942
943 static int ovl_other_xattr_get(const struct xattr_handler *handler,
944                                struct dentry *dentry, struct inode *inode,
945                                const char *name, void *buffer, size_t size)
946 {
947         return ovl_xattr_get(dentry, inode, name, buffer, size);
948 }
949
950 static int ovl_other_xattr_set(const struct xattr_handler *handler,
951                                struct dentry *dentry, struct inode *inode,
952                                const char *name, const void *value,
953                                size_t size, int flags)
954 {
955         return ovl_xattr_set(dentry, inode, name, value, size, flags);
956 }
957
958 static const struct xattr_handler __maybe_unused
959 ovl_posix_acl_access_xattr_handler = {
960         .name = XATTR_NAME_POSIX_ACL_ACCESS,
961         .flags = ACL_TYPE_ACCESS,
962         .get = ovl_posix_acl_xattr_get,
963         .set = ovl_posix_acl_xattr_set,
964 };
965
966 static const struct xattr_handler __maybe_unused
967 ovl_posix_acl_default_xattr_handler = {
968         .name = XATTR_NAME_POSIX_ACL_DEFAULT,
969         .flags = ACL_TYPE_DEFAULT,
970         .get = ovl_posix_acl_xattr_get,
971         .set = ovl_posix_acl_xattr_set,
972 };
973
974 static const struct xattr_handler ovl_own_xattr_handler = {
975         .prefix = OVL_XATTR_PREFIX,
976         .get = ovl_own_xattr_get,
977         .set = ovl_own_xattr_set,
978 };
979
980 static const struct xattr_handler ovl_other_xattr_handler = {
981         .prefix = "", /* catch all */
982         .get = ovl_other_xattr_get,
983         .set = ovl_other_xattr_set,
984 };
985
986 static const struct xattr_handler *ovl_xattr_handlers[] = {
987 #ifdef CONFIG_FS_POSIX_ACL
988         &ovl_posix_acl_access_xattr_handler,
989         &ovl_posix_acl_default_xattr_handler,
990 #endif
991         &ovl_own_xattr_handler,
992         &ovl_other_xattr_handler,
993         NULL
994 };
995
996 static int ovl_setup_trap(struct super_block *sb, struct dentry *dir,
997                           struct inode **ptrap, const char *name)
998 {
999         struct inode *trap;
1000         int err;
1001
1002         trap = ovl_get_trap_inode(sb, dir);
1003         err = PTR_ERR_OR_ZERO(trap);
1004         if (err) {
1005                 if (err == -ELOOP)
1006                         pr_err("overlayfs: conflicting %s path\n", name);
1007                 return err;
1008         }
1009
1010         *ptrap = trap;
1011         return 0;
1012 }
1013
1014 /*
1015  * Determine how we treat concurrent use of upperdir/workdir based on the
1016  * index feature. This is papering over mount leaks of container runtimes,
1017  * for example, an old overlay mount is leaked and now its upperdir is
1018  * attempted to be used as a lower layer in a new overlay mount.
1019  */
1020 static int ovl_report_in_use(struct ovl_fs *ofs, const char *name)
1021 {
1022         if (ofs->config.index) {
1023                 pr_err("overlayfs: %s is in-use as upperdir/workdir of another mount, mount with '-o index=off' to override exclusive upperdir protection.\n",
1024                        name);
1025                 return -EBUSY;
1026         } else {
1027                 pr_warn("overlayfs: %s is in-use as upperdir/workdir of another mount, accessing files from both mounts will result in undefined behavior.\n",
1028                         name);
1029                 return 0;
1030         }
1031 }
1032
1033 static int ovl_get_upper(struct super_block *sb, struct ovl_fs *ofs,
1034                          struct path *upperpath)
1035 {
1036         struct vfsmount *upper_mnt;
1037         int err;
1038
1039         err = ovl_mount_dir(ofs->config.upperdir, upperpath);
1040         if (err)
1041                 goto out;
1042
1043         /* Upper fs should not be r/o */
1044         if (sb_rdonly(upperpath->mnt->mnt_sb)) {
1045                 pr_err("overlayfs: upper fs is r/o, try multi-lower layers mount\n");
1046                 err = -EINVAL;
1047                 goto out;
1048         }
1049
1050         err = ovl_check_namelen(upperpath, ofs, ofs->config.upperdir);
1051         if (err)
1052                 goto out;
1053
1054         err = ovl_setup_trap(sb, upperpath->dentry, &ofs->upperdir_trap,
1055                              "upperdir");
1056         if (err)
1057                 goto out;
1058
1059         upper_mnt = clone_private_mount(upperpath);
1060         err = PTR_ERR(upper_mnt);
1061         if (IS_ERR(upper_mnt)) {
1062                 pr_err("overlayfs: failed to clone upperpath\n");
1063                 goto out;
1064         }
1065
1066         /* Don't inherit atime flags */
1067         upper_mnt->mnt_flags &= ~(MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME);
1068         ofs->upper_mnt = upper_mnt;
1069
1070         if (ovl_inuse_trylock(ofs->upper_mnt->mnt_root)) {
1071                 ofs->upperdir_locked = true;
1072         } else {
1073                 err = ovl_report_in_use(ofs, "upperdir");
1074                 if (err)
1075                         goto out;
1076         }
1077
1078         err = 0;
1079 out:
1080         return err;
1081 }
1082
1083 static int ovl_make_workdir(struct super_block *sb, struct ovl_fs *ofs,
1084                             struct path *workpath)
1085 {
1086         struct vfsmount *mnt = ofs->upper_mnt;
1087         struct dentry *temp;
1088         int fh_type;
1089         int err;
1090
1091         err = mnt_want_write(mnt);
1092         if (err)
1093                 return err;
1094
1095         ofs->workdir = ovl_workdir_create(ofs, OVL_WORKDIR_NAME, false);
1096         if (!ofs->workdir)
1097                 goto out;
1098
1099         err = ovl_setup_trap(sb, ofs->workdir, &ofs->workdir_trap, "workdir");
1100         if (err)
1101                 goto out;
1102
1103         /*
1104          * Upper should support d_type, else whiteouts are visible.  Given
1105          * workdir and upper are on same fs, we can do iterate_dir() on
1106          * workdir. This check requires successful creation of workdir in
1107          * previous step.
1108          */
1109         err = ovl_check_d_type_supported(workpath);
1110         if (err < 0)
1111                 goto out;
1112
1113         /*
1114          * We allowed this configuration and don't want to break users over
1115          * kernel upgrade. So warn instead of erroring out.
1116          */
1117         if (!err)
1118                 pr_warn("overlayfs: upper fs needs to support d_type.\n");
1119
1120         /* Check if upper/work fs supports O_TMPFILE */
1121         temp = ovl_do_tmpfile(ofs->workdir, S_IFREG | 0);
1122         ofs->tmpfile = !IS_ERR(temp);
1123         if (ofs->tmpfile)
1124                 dput(temp);
1125         else
1126                 pr_warn("overlayfs: upper fs does not support tmpfile.\n");
1127
1128         /*
1129          * Check if upper/work fs supports trusted.overlay.* xattr
1130          */
1131         err = ovl_do_setxattr(ofs->workdir, OVL_XATTR_OPAQUE, "0", 1, 0);
1132         if (err) {
1133                 ofs->noxattr = true;
1134                 ofs->config.index = false;
1135                 ofs->config.metacopy = false;
1136                 pr_warn("overlayfs: upper fs does not support xattr, falling back to index=off and metacopy=off.\n");
1137                 err = 0;
1138         } else {
1139                 vfs_removexattr(ofs->workdir, OVL_XATTR_OPAQUE);
1140         }
1141
1142         /* Check if upper/work fs supports file handles */
1143         fh_type = ovl_can_decode_fh(ofs->workdir->d_sb);
1144         if (ofs->config.index && !fh_type) {
1145                 ofs->config.index = false;
1146                 pr_warn("overlayfs: upper fs does not support file handles, falling back to index=off.\n");
1147         }
1148
1149         /* Check if upper fs has 32bit inode numbers */
1150         if (fh_type != FILEID_INO32_GEN)
1151                 ofs->xino_bits = 0;
1152
1153         /* NFS export of r/w mount depends on index */
1154         if (ofs->config.nfs_export && !ofs->config.index) {
1155                 pr_warn("overlayfs: NFS export requires \"index=on\", falling back to nfs_export=off.\n");
1156                 ofs->config.nfs_export = false;
1157         }
1158 out:
1159         mnt_drop_write(mnt);
1160         return err;
1161 }
1162
1163 static int ovl_get_workdir(struct super_block *sb, struct ovl_fs *ofs,
1164                            struct path *upperpath)
1165 {
1166         int err;
1167         struct path workpath = { };
1168
1169         err = ovl_mount_dir(ofs->config.workdir, &workpath);
1170         if (err)
1171                 goto out;
1172
1173         err = -EINVAL;
1174         if (upperpath->mnt != workpath.mnt) {
1175                 pr_err("overlayfs: workdir and upperdir must reside under the same mount\n");
1176                 goto out;
1177         }
1178         if (!ovl_workdir_ok(workpath.dentry, upperpath->dentry)) {
1179                 pr_err("overlayfs: workdir and upperdir must be separate subtrees\n");
1180                 goto out;
1181         }
1182
1183         ofs->workbasedir = dget(workpath.dentry);
1184
1185         if (ovl_inuse_trylock(ofs->workbasedir)) {
1186                 ofs->workdir_locked = true;
1187         } else {
1188                 err = ovl_report_in_use(ofs, "workdir");
1189                 if (err)
1190                         goto out;
1191         }
1192
1193         err = ovl_setup_trap(sb, ofs->workbasedir, &ofs->workbasedir_trap,
1194                              "workdir");
1195         if (err)
1196                 goto out;
1197
1198         err = ovl_make_workdir(sb, ofs, &workpath);
1199
1200 out:
1201         path_put(&workpath);
1202
1203         return err;
1204 }
1205
1206 static int ovl_get_indexdir(struct super_block *sb, struct ovl_fs *ofs,
1207                             struct ovl_entry *oe, struct path *upperpath)
1208 {
1209         struct vfsmount *mnt = ofs->upper_mnt;
1210         int err;
1211
1212         err = mnt_want_write(mnt);
1213         if (err)
1214                 return err;
1215
1216         /* Verify lower root is upper root origin */
1217         err = ovl_verify_origin(upperpath->dentry, oe->lowerstack[0].dentry,
1218                                 true);
1219         if (err) {
1220                 pr_err("overlayfs: failed to verify upper root origin\n");
1221                 goto out;
1222         }
1223
1224         ofs->indexdir = ovl_workdir_create(ofs, OVL_INDEXDIR_NAME, true);
1225         if (ofs->indexdir) {
1226                 err = ovl_setup_trap(sb, ofs->indexdir, &ofs->indexdir_trap,
1227                                      "indexdir");
1228                 if (err)
1229                         goto out;
1230
1231                 /*
1232                  * Verify upper root is exclusively associated with index dir.
1233                  * Older kernels stored upper fh in "trusted.overlay.origin"
1234                  * xattr. If that xattr exists, verify that it is a match to
1235                  * upper dir file handle. In any case, verify or set xattr
1236                  * "trusted.overlay.upper" to indicate that index may have
1237                  * directory entries.
1238                  */
1239                 if (ovl_check_origin_xattr(ofs->indexdir)) {
1240                         err = ovl_verify_set_fh(ofs->indexdir, OVL_XATTR_ORIGIN,
1241                                                 upperpath->dentry, true, false);
1242                         if (err)
1243                                 pr_err("overlayfs: failed to verify index dir 'origin' xattr\n");
1244                 }
1245                 err = ovl_verify_upper(ofs->indexdir, upperpath->dentry, true);
1246                 if (err)
1247                         pr_err("overlayfs: failed to verify index dir 'upper' xattr\n");
1248
1249                 /* Cleanup bad/stale/orphan index entries */
1250                 if (!err)
1251                         err = ovl_indexdir_cleanup(ofs);
1252         }
1253         if (err || !ofs->indexdir)
1254                 pr_warn("overlayfs: try deleting index dir or mounting with '-o index=off' to disable inodes index.\n");
1255
1256 out:
1257         mnt_drop_write(mnt);
1258         return err;
1259 }
1260
1261 /* Get a unique fsid for the layer */
1262 static int ovl_get_fsid(struct ovl_fs *ofs, struct super_block *sb)
1263 {
1264         unsigned int i;
1265         dev_t dev;
1266         int err;
1267
1268         /* fsid 0 is reserved for upper fs even with non upper overlay */
1269         if (ofs->upper_mnt && ofs->upper_mnt->mnt_sb == sb)
1270                 return 0;
1271
1272         for (i = 0; i < ofs->numlowerfs; i++) {
1273                 if (ofs->lower_fs[i].sb == sb)
1274                         return i + 1;
1275         }
1276
1277         err = get_anon_bdev(&dev);
1278         if (err) {
1279                 pr_err("overlayfs: failed to get anonymous bdev for lowerpath\n");
1280                 return err;
1281         }
1282
1283         ofs->lower_fs[ofs->numlowerfs].sb = sb;
1284         ofs->lower_fs[ofs->numlowerfs].pseudo_dev = dev;
1285         ofs->numlowerfs++;
1286
1287         return ofs->numlowerfs;
1288 }
1289
1290 static int ovl_get_lower_layers(struct super_block *sb, struct ovl_fs *ofs,
1291                                 struct path *stack, unsigned int numlower)
1292 {
1293         int err;
1294         unsigned int i;
1295
1296         err = -ENOMEM;
1297         ofs->lower_layers = kcalloc(numlower, sizeof(struct ovl_layer),
1298                                     GFP_KERNEL);
1299         if (ofs->lower_layers == NULL)
1300                 goto out;
1301
1302         ofs->lower_fs = kcalloc(numlower, sizeof(struct ovl_sb),
1303                                 GFP_KERNEL);
1304         if (ofs->lower_fs == NULL)
1305                 goto out;
1306
1307         for (i = 0; i < numlower; i++) {
1308                 struct vfsmount *mnt;
1309                 struct inode *trap;
1310                 int fsid;
1311
1312                 err = fsid = ovl_get_fsid(ofs, stack[i].mnt->mnt_sb);
1313                 if (err < 0)
1314                         goto out;
1315
1316                 /*
1317                  * Check if lower root conflicts with this overlay layers before
1318                  * checking if it is in-use as upperdir/workdir of "another"
1319                  * mount, because we do not bother to check in ovl_is_inuse() if
1320                  * the upperdir/workdir is in fact in-use by our
1321                  * upperdir/workdir.
1322                  */
1323                 err = ovl_setup_trap(sb, stack[i].dentry, &trap, "lowerdir");
1324                 if (err)
1325                         goto out;
1326
1327                 if (ovl_is_inuse(stack[i].dentry)) {
1328                         err = ovl_report_in_use(ofs, "lowerdir");
1329                         if (err) {
1330                                 iput(trap);
1331                                 goto out;
1332                         }
1333                 }
1334
1335                 mnt = clone_private_mount(&stack[i]);
1336                 err = PTR_ERR(mnt);
1337                 if (IS_ERR(mnt)) {
1338                         pr_err("overlayfs: failed to clone lowerpath\n");
1339                         iput(trap);
1340                         goto out;
1341                 }
1342
1343                 /*
1344                  * Make lower layers R/O.  That way fchmod/fchown on lower file
1345                  * will fail instead of modifying lower fs.
1346                  */
1347                 mnt->mnt_flags |= MNT_READONLY | MNT_NOATIME;
1348
1349                 ofs->lower_layers[ofs->numlower].trap = trap;
1350                 ofs->lower_layers[ofs->numlower].mnt = mnt;
1351                 ofs->lower_layers[ofs->numlower].idx = i + 1;
1352                 ofs->lower_layers[ofs->numlower].fsid = fsid;
1353                 if (fsid) {
1354                         ofs->lower_layers[ofs->numlower].fs =
1355                                 &ofs->lower_fs[fsid - 1];
1356                 }
1357                 ofs->numlower++;
1358         }
1359
1360         /*
1361          * When all layers on same fs, overlay can use real inode numbers.
1362          * With mount option "xino=on", mounter declares that there are enough
1363          * free high bits in underlying fs to hold the unique fsid.
1364          * If overlayfs does encounter underlying inodes using the high xino
1365          * bits reserved for fsid, it emits a warning and uses the original
1366          * inode number.
1367          */
1368         if (!ofs->numlowerfs || (ofs->numlowerfs == 1 && !ofs->upper_mnt)) {
1369                 ofs->xino_bits = 0;
1370                 ofs->config.xino = OVL_XINO_OFF;
1371         } else if (ofs->config.xino == OVL_XINO_ON && !ofs->xino_bits) {
1372                 /*
1373                  * This is a roundup of number of bits needed for numlowerfs+1
1374                  * (i.e. ilog2(numlowerfs+1 - 1) + 1). fsid 0 is reserved for
1375                  * upper fs even with non upper overlay.
1376                  */
1377                 BUILD_BUG_ON(ilog2(OVL_MAX_STACK) > 31);
1378                 ofs->xino_bits = ilog2(ofs->numlowerfs) + 1;
1379         }
1380
1381         if (ofs->xino_bits) {
1382                 pr_info("overlayfs: \"xino\" feature enabled using %d upper inode bits.\n",
1383                         ofs->xino_bits);
1384         }
1385
1386         err = 0;
1387 out:
1388         return err;
1389 }
1390
1391 static struct ovl_entry *ovl_get_lowerstack(struct super_block *sb,
1392                                             struct ovl_fs *ofs)
1393 {
1394         int err;
1395         char *lowertmp, *lower;
1396         struct path *stack = NULL;
1397         unsigned int stacklen, numlower = 0, i;
1398         bool remote = false;
1399         struct ovl_entry *oe;
1400
1401         err = -ENOMEM;
1402         lowertmp = kstrdup(ofs->config.lowerdir, GFP_KERNEL);
1403         if (!lowertmp)
1404                 goto out_err;
1405
1406         err = -EINVAL;
1407         stacklen = ovl_split_lowerdirs(lowertmp);
1408         if (stacklen > OVL_MAX_STACK) {
1409                 pr_err("overlayfs: too many lower directories, limit is %d\n",
1410                        OVL_MAX_STACK);
1411                 goto out_err;
1412         } else if (!ofs->config.upperdir && stacklen == 1) {
1413                 pr_err("overlayfs: at least 2 lowerdir are needed while upperdir nonexistent\n");
1414                 goto out_err;
1415         } else if (!ofs->config.upperdir && ofs->config.nfs_export &&
1416                    ofs->config.redirect_follow) {
1417                 pr_warn("overlayfs: NFS export requires \"redirect_dir=nofollow\" on non-upper mount, falling back to nfs_export=off.\n");
1418                 ofs->config.nfs_export = false;
1419         }
1420
1421         err = -ENOMEM;
1422         stack = kcalloc(stacklen, sizeof(struct path), GFP_KERNEL);
1423         if (!stack)
1424                 goto out_err;
1425
1426         err = -EINVAL;
1427         lower = lowertmp;
1428         for (numlower = 0; numlower < stacklen; numlower++) {
1429                 err = ovl_lower_dir(lower, &stack[numlower], ofs,
1430                                     &sb->s_stack_depth, &remote);
1431                 if (err)
1432                         goto out_err;
1433
1434                 lower = strchr(lower, '\0') + 1;
1435         }
1436
1437         err = -EINVAL;
1438         sb->s_stack_depth++;
1439         if (sb->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
1440                 pr_err("overlayfs: maximum fs stacking depth exceeded\n");
1441                 goto out_err;
1442         }
1443
1444         err = ovl_get_lower_layers(sb, ofs, stack, numlower);
1445         if (err)
1446                 goto out_err;
1447
1448         err = -ENOMEM;
1449         oe = ovl_alloc_entry(numlower);
1450         if (!oe)
1451                 goto out_err;
1452
1453         for (i = 0; i < numlower; i++) {
1454                 oe->lowerstack[i].dentry = dget(stack[i].dentry);
1455                 oe->lowerstack[i].layer = &ofs->lower_layers[i];
1456         }
1457
1458         if (remote)
1459                 sb->s_d_op = &ovl_reval_dentry_operations;
1460         else
1461                 sb->s_d_op = &ovl_dentry_operations;
1462
1463 out:
1464         for (i = 0; i < numlower; i++)
1465                 path_put(&stack[i]);
1466         kfree(stack);
1467         kfree(lowertmp);
1468
1469         return oe;
1470
1471 out_err:
1472         oe = ERR_PTR(err);
1473         goto out;
1474 }
1475
1476 /*
1477  * Check if this layer root is a descendant of:
1478  * - another layer of this overlayfs instance
1479  * - upper/work dir of any overlayfs instance
1480  */
1481 static int ovl_check_layer(struct super_block *sb, struct ovl_fs *ofs,
1482                            struct dentry *dentry, const char *name,
1483                            bool is_lower)
1484 {
1485         struct dentry *next = dentry, *parent;
1486         int err = 0;
1487
1488         if (!dentry)
1489                 return 0;
1490
1491         parent = dget_parent(next);
1492
1493         /* Walk back ancestors to root (inclusive) looking for traps */
1494         while (!err && parent != next) {
1495                 if (is_lower && ovl_lookup_trap_inode(sb, parent)) {
1496                         err = -ELOOP;
1497                         pr_err("overlayfs: overlapping %s path\n", name);
1498                 } else if (ovl_is_inuse(parent)) {
1499                         err = ovl_report_in_use(ofs, name);
1500                 }
1501                 next = parent;
1502                 parent = dget_parent(next);
1503                 dput(next);
1504         }
1505
1506         dput(parent);
1507
1508         return err;
1509 }
1510
1511 /*
1512  * Check if any of the layers or work dirs overlap.
1513  */
1514 static int ovl_check_overlapping_layers(struct super_block *sb,
1515                                         struct ovl_fs *ofs)
1516 {
1517         int i, err;
1518
1519         if (ofs->upper_mnt) {
1520                 err = ovl_check_layer(sb, ofs, ofs->upper_mnt->mnt_root,
1521                                       "upperdir", false);
1522                 if (err)
1523                         return err;
1524
1525                 /*
1526                  * Checking workbasedir avoids hitting ovl_is_inuse(parent) of
1527                  * this instance and covers overlapping work and index dirs,
1528                  * unless work or index dir have been moved since created inside
1529                  * workbasedir.  In that case, we already have their traps in
1530                  * inode cache and we will catch that case on lookup.
1531                  */
1532                 err = ovl_check_layer(sb, ofs, ofs->workbasedir, "workdir",
1533                                       false);
1534                 if (err)
1535                         return err;
1536         }
1537
1538         for (i = 0; i < ofs->numlower; i++) {
1539                 err = ovl_check_layer(sb, ofs,
1540                                       ofs->lower_layers[i].mnt->mnt_root,
1541                                       "lowerdir", true);
1542                 if (err)
1543                         return err;
1544         }
1545
1546         return 0;
1547 }
1548
1549 static int ovl_fill_super(struct super_block *sb, void *data, int silent)
1550 {
1551         struct path upperpath = { };
1552         struct dentry *root_dentry;
1553         struct ovl_entry *oe;
1554         struct ovl_fs *ofs;
1555         struct cred *cred;
1556         int err;
1557
1558         err = -ENOMEM;
1559         ofs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
1560         if (!ofs)
1561                 goto out;
1562
1563         ofs->creator_cred = cred = prepare_creds();
1564         if (!cred)
1565                 goto out_err;
1566
1567         ofs->config.index = ovl_index_def;
1568         ofs->config.nfs_export = ovl_nfs_export_def;
1569         ofs->config.xino = ovl_xino_def();
1570         ofs->config.metacopy = ovl_metacopy_def;
1571         err = ovl_parse_opt((char *) data, &ofs->config);
1572         if (err)
1573                 goto out_err;
1574
1575         err = -EINVAL;
1576         if (!ofs->config.lowerdir) {
1577                 if (!silent)
1578                         pr_err("overlayfs: missing 'lowerdir'\n");
1579                 goto out_err;
1580         }
1581
1582         sb->s_stack_depth = 0;
1583         sb->s_maxbytes = MAX_LFS_FILESIZE;
1584         /* Assume underlaying fs uses 32bit inodes unless proven otherwise */
1585         if (ofs->config.xino != OVL_XINO_OFF)
1586                 ofs->xino_bits = BITS_PER_LONG - 32;
1587
1588         /* alloc/destroy_inode needed for setting up traps in inode cache */
1589         sb->s_op = &ovl_super_operations;
1590
1591         if (ofs->config.upperdir) {
1592                 if (!ofs->config.workdir) {
1593                         pr_err("overlayfs: missing 'workdir'\n");
1594                         goto out_err;
1595                 }
1596
1597                 err = ovl_get_upper(sb, ofs, &upperpath);
1598                 if (err)
1599                         goto out_err;
1600
1601                 err = ovl_get_workdir(sb, ofs, &upperpath);
1602                 if (err)
1603                         goto out_err;
1604
1605                 if (!ofs->workdir)
1606                         sb->s_flags |= SB_RDONLY;
1607
1608                 sb->s_stack_depth = ofs->upper_mnt->mnt_sb->s_stack_depth;
1609                 sb->s_time_gran = ofs->upper_mnt->mnt_sb->s_time_gran;
1610
1611         }
1612         oe = ovl_get_lowerstack(sb, ofs);
1613         err = PTR_ERR(oe);
1614         if (IS_ERR(oe))
1615                 goto out_err;
1616
1617         /* If the upper fs is nonexistent, we mark overlayfs r/o too */
1618         if (!ofs->upper_mnt)
1619                 sb->s_flags |= SB_RDONLY;
1620
1621         if (!(ovl_force_readonly(ofs)) && ofs->config.index) {
1622                 err = ovl_get_indexdir(sb, ofs, oe, &upperpath);
1623                 if (err)
1624                         goto out_free_oe;
1625
1626                 /* Force r/o mount with no index dir */
1627                 if (!ofs->indexdir) {
1628                         dput(ofs->workdir);
1629                         ofs->workdir = NULL;
1630                         sb->s_flags |= SB_RDONLY;
1631                 }
1632
1633         }
1634
1635         err = ovl_check_overlapping_layers(sb, ofs);
1636         if (err)
1637                 goto out_free_oe;
1638
1639         /* Show index=off in /proc/mounts for forced r/o mount */
1640         if (!ofs->indexdir) {
1641                 ofs->config.index = false;
1642                 if (ofs->upper_mnt && ofs->config.nfs_export) {
1643                         pr_warn("overlayfs: NFS export requires an index dir, falling back to nfs_export=off.\n");
1644                         ofs->config.nfs_export = false;
1645                 }
1646         }
1647
1648         if (ofs->config.metacopy && ofs->config.nfs_export) {
1649                 pr_warn("overlayfs: NFS export is not supported with metadata only copy up, falling back to nfs_export=off.\n");
1650                 ofs->config.nfs_export = false;
1651         }
1652
1653         if (ofs->config.nfs_export)
1654                 sb->s_export_op = &ovl_export_operations;
1655
1656         /* Never override disk quota limits or use reserved space */
1657         cap_lower(cred->cap_effective, CAP_SYS_RESOURCE);
1658
1659         sb->s_magic = OVERLAYFS_SUPER_MAGIC;
1660         sb->s_xattr = ovl_xattr_handlers;
1661         sb->s_fs_info = ofs;
1662         sb->s_flags |= SB_POSIXACL;
1663
1664         err = -ENOMEM;
1665         root_dentry = d_make_root(ovl_new_inode(sb, S_IFDIR, 0));
1666         if (!root_dentry)
1667                 goto out_free_oe;
1668
1669         root_dentry->d_fsdata = oe;
1670
1671         mntput(upperpath.mnt);
1672         if (upperpath.dentry) {
1673                 ovl_dentry_set_upper_alias(root_dentry);
1674                 if (ovl_is_impuredir(upperpath.dentry))
1675                         ovl_set_flag(OVL_IMPURE, d_inode(root_dentry));
1676         }
1677
1678         /* Root is always merge -> can have whiteouts */
1679         ovl_set_flag(OVL_WHITEOUTS, d_inode(root_dentry));
1680         ovl_dentry_set_flag(OVL_E_CONNECTED, root_dentry);
1681         ovl_set_upperdata(d_inode(root_dentry));
1682         ovl_inode_init(d_inode(root_dentry), upperpath.dentry,
1683                        ovl_dentry_lower(root_dentry), NULL);
1684
1685         sb->s_root = root_dentry;
1686
1687         return 0;
1688
1689 out_free_oe:
1690         ovl_entry_stack_free(oe);
1691         kfree(oe);
1692 out_err:
1693         path_put(&upperpath);
1694         ovl_free_fs(ofs);
1695 out:
1696         return err;
1697 }
1698
1699 static struct dentry *ovl_mount(struct file_system_type *fs_type, int flags,
1700                                 const char *dev_name, void *raw_data)
1701 {
1702         return mount_nodev(fs_type, flags, raw_data, ovl_fill_super);
1703 }
1704
1705 static struct file_system_type ovl_fs_type = {
1706         .owner          = THIS_MODULE,
1707         .name           = "overlay",
1708         .mount          = ovl_mount,
1709         .kill_sb        = kill_anon_super,
1710 };
1711 MODULE_ALIAS_FS("overlay");
1712
1713 static void ovl_inode_init_once(void *foo)
1714 {
1715         struct ovl_inode *oi = foo;
1716
1717         inode_init_once(&oi->vfs_inode);
1718 }
1719
1720 static int __init ovl_init(void)
1721 {
1722         int err;
1723
1724         ovl_inode_cachep = kmem_cache_create("ovl_inode",
1725                                              sizeof(struct ovl_inode), 0,
1726                                              (SLAB_RECLAIM_ACCOUNT|
1727                                               SLAB_MEM_SPREAD|SLAB_ACCOUNT),
1728                                              ovl_inode_init_once);
1729         if (ovl_inode_cachep == NULL)
1730                 return -ENOMEM;
1731
1732         err = register_filesystem(&ovl_fs_type);
1733         if (err)
1734                 kmem_cache_destroy(ovl_inode_cachep);
1735
1736         return err;
1737 }
1738
1739 static void __exit ovl_exit(void)
1740 {
1741         unregister_filesystem(&ovl_fs_type);
1742
1743         /*
1744          * Make sure all delayed rcu free inodes are flushed before we
1745          * destroy cache.
1746          */
1747         rcu_barrier();
1748         kmem_cache_destroy(ovl_inode_cachep);
1749
1750 }
1751
1752 module_init(ovl_init);
1753 module_exit(ovl_exit);