]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/overlayfs/super.c
UBUNTU: [Config] updateconfigs after removing powerpc builds
[mirror_ubuntu-zesty-kernel.git] / fs / overlayfs / super.c
CommitLineData
e9be9d5e
MS
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 <linux/fs.h>
11#include <linux/namei.h>
12#include <linux/xattr.h>
e9be9d5e 13#include <linux/mount.h>
e9be9d5e
MS
14#include <linux/parser.h>
15#include <linux/module.h>
cc259639 16#include <linux/statfs.h>
f45827e8 17#include <linux/seq_file.h>
d837a49b 18#include <linux/posix_acl_xattr.h>
e9be9d5e 19#include "overlayfs.h"
bbb1e54d 20#include "ovl_entry.h"
e9be9d5e
MS
21
22MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
23MODULE_DESCRIPTION("Overlay filesystem");
24MODULE_LICENSE("GPL");
25
e9be9d5e
MS
26
27struct ovl_dir_cache;
28
a78d9f0d
MS
29#define OVL_MAX_STACK 500
30
688ea0e5
MS
31static bool ovl_redirect_dir_def = IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR);
32module_param_named(redirect_dir, ovl_redirect_dir_def, bool, 0644);
33MODULE_PARM_DESC(ovl_redirect_dir_def,
34 "Default to on or off for the redirect_dir feature");
e9be9d5e
MS
35
36static void ovl_dentry_release(struct dentry *dentry)
37{
38 struct ovl_entry *oe = dentry->d_fsdata;
39
40 if (oe) {
dd662667
MS
41 unsigned int i;
42
e9be9d5e 43 dput(oe->__upperdentry);
02b69b28 44 kfree(oe->redirect);
dd662667
MS
45 for (i = 0; i < oe->numlower; i++)
46 dput(oe->lowerstack[i].dentry);
e9be9d5e
MS
47 kfree_rcu(oe, rcu);
48 }
49}
50
2d902671
MS
51static struct dentry *ovl_d_real(struct dentry *dentry,
52 const struct inode *inode,
53 unsigned int open_flags)
d101a125
MS
54{
55 struct dentry *real;
56
ca4c8a3a 57 if (!d_is_reg(dentry)) {
d101a125
MS
58 if (!inode || inode == d_inode(dentry))
59 return dentry;
60 goto bug;
61 }
62
2d902671
MS
63 if (d_is_negative(dentry))
64 return dentry;
65
66 if (open_flags) {
67 int err = ovl_open_maybe_copy_up(dentry, open_flags);
68
69 if (err)
70 return ERR_PTR(err);
71 }
72
d101a125
MS
73 real = ovl_dentry_upper(dentry);
74 if (real && (!inode || inode == d_inode(real)))
75 return real;
76
77 real = ovl_dentry_lower(dentry);
78 if (!real)
79 goto bug;
80
c4fcfc16
MS
81 /* Handle recursion */
82 real = d_real(real, inode, open_flags);
83
d101a125
MS
84 if (!inode || inode == d_inode(real))
85 return real;
d101a125 86bug:
656189d2 87 WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry,
d101a125
MS
88 inode ? inode->i_sb->s_id : "NULL", inode ? inode->i_ino : 0);
89 return dentry;
90}
91
7c03b5d4
MS
92static int ovl_dentry_revalidate(struct dentry *dentry, unsigned int flags)
93{
94 struct ovl_entry *oe = dentry->d_fsdata;
95 unsigned int i;
96 int ret = 1;
97
98 for (i = 0; i < oe->numlower; i++) {
99 struct dentry *d = oe->lowerstack[i].dentry;
100
101 if (d->d_flags & DCACHE_OP_REVALIDATE) {
102 ret = d->d_op->d_revalidate(d, flags);
103 if (ret < 0)
104 return ret;
105 if (!ret) {
106 if (!(flags & LOOKUP_RCU))
107 d_invalidate(d);
108 return -ESTALE;
109 }
110 }
111 }
112 return 1;
113}
114
115static int ovl_dentry_weak_revalidate(struct dentry *dentry, unsigned int flags)
116{
117 struct ovl_entry *oe = dentry->d_fsdata;
118 unsigned int i;
119 int ret = 1;
120
121 for (i = 0; i < oe->numlower; i++) {
122 struct dentry *d = oe->lowerstack[i].dentry;
123
124 if (d->d_flags & DCACHE_OP_WEAK_REVALIDATE) {
125 ret = d->d_op->d_weak_revalidate(d, flags);
126 if (ret <= 0)
127 break;
128 }
129 }
130 return ret;
131}
132
e9be9d5e
MS
133static const struct dentry_operations ovl_dentry_operations = {
134 .d_release = ovl_dentry_release,
d101a125 135 .d_real = ovl_d_real,
e9be9d5e
MS
136};
137
7c03b5d4
MS
138static const struct dentry_operations ovl_reval_dentry_operations = {
139 .d_release = ovl_dentry_release,
d101a125 140 .d_real = ovl_d_real,
7c03b5d4
MS
141 .d_revalidate = ovl_dentry_revalidate,
142 .d_weak_revalidate = ovl_dentry_weak_revalidate,
143};
144
e9be9d5e
MS
145static void ovl_put_super(struct super_block *sb)
146{
147 struct ovl_fs *ufs = sb->s_fs_info;
dd662667 148 unsigned i;
e9be9d5e
MS
149
150 dput(ufs->workdir);
151 mntput(ufs->upper_mnt);
dd662667
MS
152 for (i = 0; i < ufs->numlower; i++)
153 mntput(ufs->lower_mnt[i]);
5ffdbe8b 154 kfree(ufs->lower_mnt);
e9be9d5e 155
f45827e8
EZ
156 kfree(ufs->config.lowerdir);
157 kfree(ufs->config.upperdir);
158 kfree(ufs->config.workdir);
3fe6e52f 159 put_cred(ufs->creator_cred);
e9be9d5e
MS
160 kfree(ufs);
161}
162
cc259639
AW
163/**
164 * ovl_statfs
165 * @sb: The overlayfs super block
166 * @buf: The struct kstatfs to fill in with stats
167 *
168 * Get the filesystem statistics. As writes always target the upper layer
4ebc5818 169 * filesystem pass the statfs to the upper filesystem (if it exists)
cc259639
AW
170 */
171static int ovl_statfs(struct dentry *dentry, struct kstatfs *buf)
172{
173 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
174 struct dentry *root_dentry = dentry->d_sb->s_root;
175 struct path path;
176 int err;
177
4ebc5818 178 ovl_path_real(root_dentry, &path);
cc259639
AW
179
180 err = vfs_statfs(&path, buf);
181 if (!err) {
6b2d5fe4 182 buf->f_namelen = ofs->namelen;
cc259639
AW
183 buf->f_type = OVERLAYFS_SUPER_MAGIC;
184 }
185
186 return err;
187}
188
f45827e8
EZ
189/**
190 * ovl_show_options
191 *
192 * Prints the mount options for a given superblock.
193 * Returns zero; does not fail.
194 */
195static int ovl_show_options(struct seq_file *m, struct dentry *dentry)
196{
197 struct super_block *sb = dentry->d_sb;
198 struct ovl_fs *ufs = sb->s_fs_info;
199
a068acf2 200 seq_show_option(m, "lowerdir", ufs->config.lowerdir);
53a08cb9 201 if (ufs->config.upperdir) {
a068acf2
KC
202 seq_show_option(m, "upperdir", ufs->config.upperdir);
203 seq_show_option(m, "workdir", ufs->config.workdir);
53a08cb9 204 }
8d3095f4
MS
205 if (ufs->config.default_permissions)
206 seq_puts(m, ",default_permissions");
c5bef3a7
AG
207 if (ufs->config.redirect_dir != ovl_redirect_dir_def)
208 seq_printf(m, ",redirect_dir=%s",
209 ufs->config.redirect_dir ? "on" : "off");
f45827e8
EZ
210 return 0;
211}
212
3cdf6fe9
SL
213static int ovl_remount(struct super_block *sb, int *flags, char *data)
214{
215 struct ovl_fs *ufs = sb->s_fs_info;
216
cc6f67bc 217 if (!(*flags & MS_RDONLY) && (!ufs->upper_mnt || !ufs->workdir))
3cdf6fe9
SL
218 return -EROFS;
219
220 return 0;
221}
222
e9be9d5e
MS
223static const struct super_operations ovl_super_operations = {
224 .put_super = ovl_put_super,
cc259639 225 .statfs = ovl_statfs,
f45827e8 226 .show_options = ovl_show_options,
3cdf6fe9 227 .remount_fs = ovl_remount,
eead4f2d 228 .drop_inode = generic_delete_inode,
e9be9d5e
MS
229};
230
231enum {
232 OPT_LOWERDIR,
233 OPT_UPPERDIR,
234 OPT_WORKDIR,
8d3095f4 235 OPT_DEFAULT_PERMISSIONS,
a6c60655
MS
236 OPT_REDIRECT_DIR_ON,
237 OPT_REDIRECT_DIR_OFF,
e9be9d5e
MS
238 OPT_ERR,
239};
240
241static const match_table_t ovl_tokens = {
242 {OPT_LOWERDIR, "lowerdir=%s"},
243 {OPT_UPPERDIR, "upperdir=%s"},
244 {OPT_WORKDIR, "workdir=%s"},
8d3095f4 245 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
a6c60655
MS
246 {OPT_REDIRECT_DIR_ON, "redirect_dir=on"},
247 {OPT_REDIRECT_DIR_OFF, "redirect_dir=off"},
e9be9d5e
MS
248 {OPT_ERR, NULL}
249};
250
91c77947
MS
251static char *ovl_next_opt(char **s)
252{
253 char *sbegin = *s;
254 char *p;
255
256 if (sbegin == NULL)
257 return NULL;
258
259 for (p = sbegin; *p; p++) {
260 if (*p == '\\') {
261 p++;
262 if (!*p)
263 break;
264 } else if (*p == ',') {
265 *p = '\0';
266 *s = p + 1;
267 return sbegin;
268 }
269 }
270 *s = NULL;
271 return sbegin;
272}
273
e9be9d5e
MS
274static int ovl_parse_opt(char *opt, struct ovl_config *config)
275{
276 char *p;
277
91c77947 278 while ((p = ovl_next_opt(&opt)) != NULL) {
e9be9d5e
MS
279 int token;
280 substring_t args[MAX_OPT_ARGS];
281
282 if (!*p)
283 continue;
284
285 token = match_token(p, ovl_tokens, args);
286 switch (token) {
287 case OPT_UPPERDIR:
288 kfree(config->upperdir);
289 config->upperdir = match_strdup(&args[0]);
290 if (!config->upperdir)
291 return -ENOMEM;
292 break;
293
294 case OPT_LOWERDIR:
295 kfree(config->lowerdir);
296 config->lowerdir = match_strdup(&args[0]);
297 if (!config->lowerdir)
298 return -ENOMEM;
299 break;
300
301 case OPT_WORKDIR:
302 kfree(config->workdir);
303 config->workdir = match_strdup(&args[0]);
304 if (!config->workdir)
305 return -ENOMEM;
306 break;
307
8d3095f4
MS
308 case OPT_DEFAULT_PERMISSIONS:
309 config->default_permissions = true;
310 break;
311
a6c60655
MS
312 case OPT_REDIRECT_DIR_ON:
313 config->redirect_dir = true;
314 break;
315
316 case OPT_REDIRECT_DIR_OFF:
317 config->redirect_dir = false;
318 break;
319
e9be9d5e 320 default:
bead55ef 321 pr_err("overlayfs: unrecognized mount option \"%s\" or missing value\n", p);
e9be9d5e
MS
322 return -EINVAL;
323 }
324 }
71cbad7e 325
326 /* Workdir is useless in non-upper mount */
327 if (!config->upperdir && config->workdir) {
328 pr_info("overlayfs: option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
329 config->workdir);
330 kfree(config->workdir);
331 config->workdir = NULL;
332 }
333
e9be9d5e
MS
334 return 0;
335}
336
337#define OVL_WORKDIR_NAME "work"
338
339static struct dentry *ovl_workdir_create(struct vfsmount *mnt,
340 struct dentry *dentry)
341{
342 struct inode *dir = dentry->d_inode;
343 struct dentry *work;
344 int err;
345 bool retried = false;
346
347 err = mnt_want_write(mnt);
348 if (err)
349 return ERR_PTR(err);
350
5955102c 351 inode_lock_nested(dir, I_MUTEX_PARENT);
e9be9d5e
MS
352retry:
353 work = lookup_one_len(OVL_WORKDIR_NAME, dentry,
354 strlen(OVL_WORKDIR_NAME));
355
356 if (!IS_ERR(work)) {
c11b9fdd
MS
357 struct iattr attr = {
358 .ia_valid = ATTR_MODE,
32a3d848 359 .ia_mode = S_IFDIR | 0,
c11b9fdd 360 };
e9be9d5e
MS
361
362 if (work->d_inode) {
363 err = -EEXIST;
364 if (retried)
365 goto out_dput;
366
367 retried = true;
eea2fb48 368 ovl_workdir_cleanup(dir, mnt, work, 0);
e9be9d5e
MS
369 dput(work);
370 goto retry;
371 }
372
32a3d848
AV
373 err = ovl_create_real(dir, work,
374 &(struct cattr){.mode = S_IFDIR | 0},
375 NULL, true);
e9be9d5e
MS
376 if (err)
377 goto out_dput;
c11b9fdd 378
cb348edb
MS
379 /*
380 * Try to remove POSIX ACL xattrs from workdir. We are good if:
381 *
382 * a) success (there was a POSIX ACL xattr and was removed)
383 * b) -ENODATA (there was no POSIX ACL xattr)
384 * c) -EOPNOTSUPP (POSIX ACL xattrs are not supported)
385 *
386 * There are various other error values that could effectively
387 * mean that the xattr doesn't exist (e.g. -ERANGE is returned
388 * if the xattr name is too long), but the set of filesystems
389 * allowed as upper are limited to "normal" ones, where checking
390 * for the above two errors is sufficient.
391 */
c11b9fdd 392 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_DEFAULT);
e1ff3dd1 393 if (err && err != -ENODATA && err != -EOPNOTSUPP)
c11b9fdd
MS
394 goto out_dput;
395
396 err = vfs_removexattr(work, XATTR_NAME_POSIX_ACL_ACCESS);
e1ff3dd1 397 if (err && err != -ENODATA && err != -EOPNOTSUPP)
c11b9fdd
MS
398 goto out_dput;
399
400 /* Clear any inherited mode bits */
401 inode_lock(work->d_inode);
402 err = notify_change(work, &attr, NULL);
403 inode_unlock(work->d_inode);
404 if (err)
405 goto out_dput;
e9be9d5e
MS
406 }
407out_unlock:
5955102c 408 inode_unlock(dir);
e9be9d5e
MS
409 mnt_drop_write(mnt);
410
411 return work;
412
413out_dput:
414 dput(work);
415 work = ERR_PTR(err);
416 goto out_unlock;
417}
418
91c77947
MS
419static void ovl_unescape(char *s)
420{
421 char *d = s;
422
423 for (;; s++, d++) {
424 if (*s == '\\')
425 s++;
426 *d = *s;
427 if (!*s)
428 break;
429 }
430}
431
ab508822
MS
432static int ovl_mount_dir_noesc(const char *name, struct path *path)
433{
a78d9f0d 434 int err = -EINVAL;
ab508822 435
a78d9f0d
MS
436 if (!*name) {
437 pr_err("overlayfs: empty lowerdir\n");
438 goto out;
439 }
ab508822
MS
440 err = kern_path(name, LOOKUP_FOLLOW, path);
441 if (err) {
442 pr_err("overlayfs: failed to resolve '%s': %i\n", name, err);
443 goto out;
444 }
445 err = -EINVAL;
7c03b5d4 446 if (ovl_dentry_weird(path->dentry)) {
ab508822
MS
447 pr_err("overlayfs: filesystem on '%s' not supported\n", name);
448 goto out_put;
449 }
2b8c30e9 450 if (!d_is_dir(path->dentry)) {
ab508822
MS
451 pr_err("overlayfs: '%s' not a directory\n", name);
452 goto out_put;
453 }
454 return 0;
455
456out_put:
457 path_put(path);
458out:
459 return err;
460}
461
462static int ovl_mount_dir(const char *name, struct path *path)
463{
464 int err = -ENOMEM;
465 char *tmp = kstrdup(name, GFP_KERNEL);
466
467 if (tmp) {
468 ovl_unescape(tmp);
469 err = ovl_mount_dir_noesc(tmp, path);
7c03b5d4
MS
470
471 if (!err)
472 if (ovl_dentry_remote(path->dentry)) {
473 pr_err("overlayfs: filesystem on '%s' not supported as upperdir\n",
474 tmp);
475 path_put(path);
476 err = -EINVAL;
477 }
ab508822
MS
478 kfree(tmp);
479 }
480 return err;
481}
482
6b2d5fe4
MS
483static int ovl_check_namelen(struct path *path, struct ovl_fs *ofs,
484 const char *name)
ab508822 485{
ab508822 486 struct kstatfs statfs;
6b2d5fe4
MS
487 int err = vfs_statfs(path, &statfs);
488
489 if (err)
490 pr_err("overlayfs: statfs failed on '%s'\n", name);
491 else
492 ofs->namelen = max(ofs->namelen, statfs.f_namelen);
493
494 return err;
495}
496
497static int ovl_lower_dir(const char *name, struct path *path,
498 struct ovl_fs *ofs, int *stack_depth, bool *remote)
499{
500 int err;
ab508822 501
a78d9f0d 502 err = ovl_mount_dir_noesc(name, path);
ab508822
MS
503 if (err)
504 goto out;
505
6b2d5fe4
MS
506 err = ovl_check_namelen(path, ofs, name);
507 if (err)
ab508822 508 goto out_put;
6b2d5fe4 509
ab508822
MS
510 *stack_depth = max(*stack_depth, path->mnt->mnt_sb->s_stack_depth);
511
7c03b5d4
MS
512 if (ovl_dentry_remote(path->dentry))
513 *remote = true;
514
ab508822
MS
515 return 0;
516
517out_put:
518 path_put(path);
519out:
520 return err;
521}
522
e9be9d5e
MS
523/* Workdir should not be subdir of upperdir and vice versa */
524static bool ovl_workdir_ok(struct dentry *workdir, struct dentry *upperdir)
525{
526 bool ok = false;
527
528 if (workdir != upperdir) {
529 ok = (lock_rename(workdir, upperdir) == NULL);
530 unlock_rename(workdir, upperdir);
531 }
532 return ok;
533}
534
a78d9f0d
MS
535static unsigned int ovl_split_lowerdirs(char *str)
536{
537 unsigned int ctr = 1;
538 char *s, *d;
539
540 for (s = d = str;; s++, d++) {
541 if (*s == '\\') {
542 s++;
543 } else if (*s == ':') {
544 *d = '\0';
545 ctr++;
546 continue;
547 }
548 *d = *s;
549 if (!*s)
550 break;
551 }
552 return ctr;
553}
554
0eb45fc3
AG
555static int __maybe_unused
556ovl_posix_acl_xattr_get(const struct xattr_handler *handler,
557 struct dentry *dentry, struct inode *inode,
558 const char *name, void *buffer, size_t size)
559{
560 return ovl_xattr_get(dentry, handler->name, buffer, size);
561}
562
0c97be22
AG
563static int __maybe_unused
564ovl_posix_acl_xattr_set(const struct xattr_handler *handler,
565 struct dentry *dentry, struct inode *inode,
566 const char *name, const void *value,
567 size_t size, int flags)
d837a49b
MS
568{
569 struct dentry *workdir = ovl_workdir(dentry);
570 struct inode *realinode = ovl_inode_real(inode, NULL);
571 struct posix_acl *acl = NULL;
572 int err;
573
574 /* Check that everything is OK before copy-up */
575 if (value) {
576 acl = posix_acl_from_xattr(&init_user_ns, value, size);
577 if (IS_ERR(acl))
578 return PTR_ERR(acl);
579 }
580 err = -EOPNOTSUPP;
581 if (!IS_POSIXACL(d_inode(workdir)))
582 goto out_acl_release;
583 if (!realinode->i_op->set_acl)
584 goto out_acl_release;
585 if (handler->flags == ACL_TYPE_DEFAULT && !S_ISDIR(inode->i_mode)) {
586 err = acl ? -EACCES : 0;
587 goto out_acl_release;
588 }
589 err = -EPERM;
590 if (!inode_owner_or_capable(inode))
591 goto out_acl_release;
592
593 posix_acl_release(acl);
594
fd3220d3
MS
595 /*
596 * Check if sgid bit needs to be cleared (actual setacl operation will
597 * be done with mounter's capabilities and so that won't do it for us).
598 */
599 if (unlikely(inode->i_mode & S_ISGID) &&
600 handler->flags == ACL_TYPE_ACCESS &&
601 !in_group_p(inode->i_gid) &&
602 !capable_wrt_inode_uidgid(inode, CAP_FSETID)) {
603 struct iattr iattr = { .ia_valid = ATTR_KILL_SGID };
604
605 err = ovl_setattr(dentry, &iattr);
606 if (err)
607 return err;
608 }
609
ce31513a
MS
610 err = ovl_xattr_set(dentry, handler->name, value, size, flags);
611 if (!err)
612 ovl_copyattr(ovl_inode_real(inode, NULL), inode);
613
614 return err;
d837a49b
MS
615
616out_acl_release:
617 posix_acl_release(acl);
618 return err;
619}
620
0eb45fc3
AG
621static int ovl_own_xattr_get(const struct xattr_handler *handler,
622 struct dentry *dentry, struct inode *inode,
623 const char *name, void *buffer, size_t size)
624{
48fab5d7 625 return -EOPNOTSUPP;
0eb45fc3
AG
626}
627
d837a49b
MS
628static int ovl_own_xattr_set(const struct xattr_handler *handler,
629 struct dentry *dentry, struct inode *inode,
630 const char *name, const void *value,
631 size_t size, int flags)
632{
48fab5d7 633 return -EOPNOTSUPP;
d837a49b
MS
634}
635
0eb45fc3
AG
636static int ovl_other_xattr_get(const struct xattr_handler *handler,
637 struct dentry *dentry, struct inode *inode,
638 const char *name, void *buffer, size_t size)
639{
640 return ovl_xattr_get(dentry, name, buffer, size);
641}
642
0e585ccc
AG
643static int ovl_other_xattr_set(const struct xattr_handler *handler,
644 struct dentry *dentry, struct inode *inode,
645 const char *name, const void *value,
646 size_t size, int flags)
647{
648 return ovl_xattr_set(dentry, name, value, size, flags);
649}
650
0c97be22
AG
651static const struct xattr_handler __maybe_unused
652ovl_posix_acl_access_xattr_handler = {
d837a49b
MS
653 .name = XATTR_NAME_POSIX_ACL_ACCESS,
654 .flags = ACL_TYPE_ACCESS,
0eb45fc3 655 .get = ovl_posix_acl_xattr_get,
d837a49b
MS
656 .set = ovl_posix_acl_xattr_set,
657};
658
0c97be22
AG
659static const struct xattr_handler __maybe_unused
660ovl_posix_acl_default_xattr_handler = {
d837a49b
MS
661 .name = XATTR_NAME_POSIX_ACL_DEFAULT,
662 .flags = ACL_TYPE_DEFAULT,
0eb45fc3 663 .get = ovl_posix_acl_xattr_get,
d837a49b
MS
664 .set = ovl_posix_acl_xattr_set,
665};
666
667static const struct xattr_handler ovl_own_xattr_handler = {
668 .prefix = OVL_XATTR_PREFIX,
0eb45fc3 669 .get = ovl_own_xattr_get,
d837a49b
MS
670 .set = ovl_own_xattr_set,
671};
672
673static const struct xattr_handler ovl_other_xattr_handler = {
674 .prefix = "", /* catch all */
0eb45fc3 675 .get = ovl_other_xattr_get,
d837a49b
MS
676 .set = ovl_other_xattr_set,
677};
678
679static const struct xattr_handler *ovl_xattr_handlers[] = {
0c97be22 680#ifdef CONFIG_FS_POSIX_ACL
d837a49b
MS
681 &ovl_posix_acl_access_xattr_handler,
682 &ovl_posix_acl_default_xattr_handler,
0c97be22 683#endif
d837a49b
MS
684 &ovl_own_xattr_handler,
685 &ovl_other_xattr_handler,
686 NULL
687};
688
e9be9d5e
MS
689static int ovl_fill_super(struct super_block *sb, void *data, int silent)
690{
53a08cb9
MS
691 struct path upperpath = { NULL, NULL };
692 struct path workpath = { NULL, NULL };
e9be9d5e 693 struct dentry *root_dentry;
39b681f8 694 struct inode *realinode;
e9be9d5e
MS
695 struct ovl_entry *oe;
696 struct ovl_fs *ufs;
a78d9f0d
MS
697 struct path *stack = NULL;
698 char *lowertmp;
699 char *lower;
700 unsigned int numlower;
701 unsigned int stacklen = 0;
dd662667 702 unsigned int i;
7c03b5d4 703 bool remote = false;
e9be9d5e
MS
704 int err;
705
f45827e8
EZ
706 err = -ENOMEM;
707 ufs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
708 if (!ufs)
e9be9d5e
MS
709 goto out;
710
688ea0e5 711 ufs->config.redirect_dir = ovl_redirect_dir_def;
f45827e8
EZ
712 err = ovl_parse_opt((char *) data, &ufs->config);
713 if (err)
714 goto out_free_config;
715
e9be9d5e 716 err = -EINVAL;
53a08cb9 717 if (!ufs->config.lowerdir) {
07f2af7b
KK
718 if (!silent)
719 pr_err("overlayfs: missing 'lowerdir'\n");
e9be9d5e
MS
720 goto out_free_config;
721 }
722
53a08cb9 723 sb->s_stack_depth = 0;
cf9a6784 724 sb->s_maxbytes = MAX_LFS_FILESIZE;
53a08cb9 725 if (ufs->config.upperdir) {
53a08cb9
MS
726 if (!ufs->config.workdir) {
727 pr_err("overlayfs: missing 'workdir'\n");
728 goto out_free_config;
729 }
e9be9d5e 730
53a08cb9
MS
731 err = ovl_mount_dir(ufs->config.upperdir, &upperpath);
732 if (err)
733 goto out_free_config;
e9be9d5e 734
71cbad7e 735 /* Upper fs should not be r/o */
736 if (upperpath.mnt->mnt_sb->s_flags & MS_RDONLY) {
737 pr_err("overlayfs: upper fs is r/o, try multi-lower layers mount\n");
738 err = -EINVAL;
739 goto out_put_upperpath;
740 }
741
6b2d5fe4
MS
742 err = ovl_check_namelen(&upperpath, ufs, ufs->config.upperdir);
743 if (err)
744 goto out_put_upperpath;
745
53a08cb9
MS
746 err = ovl_mount_dir(ufs->config.workdir, &workpath);
747 if (err)
748 goto out_put_upperpath;
749
2f83fd8c 750 err = -EINVAL;
53a08cb9
MS
751 if (upperpath.mnt != workpath.mnt) {
752 pr_err("overlayfs: workdir and upperdir must reside under the same mount\n");
753 goto out_put_workpath;
754 }
755 if (!ovl_workdir_ok(workpath.dentry, upperpath.dentry)) {
756 pr_err("overlayfs: workdir and upperdir must be separate subtrees\n");
757 goto out_put_workpath;
758 }
759 sb->s_stack_depth = upperpath.mnt->mnt_sb->s_stack_depth;
cc259639 760 }
a78d9f0d
MS
761 err = -ENOMEM;
762 lowertmp = kstrdup(ufs->config.lowerdir, GFP_KERNEL);
763 if (!lowertmp)
ab508822 764 goto out_put_workpath;
69c433ed 765
a78d9f0d
MS
766 err = -EINVAL;
767 stacklen = ovl_split_lowerdirs(lowertmp);
6be4506e 768 if (stacklen > OVL_MAX_STACK) {
fd36570a 769 pr_err("overlayfs: too many lower directories, limit is %d\n",
6be4506e 770 OVL_MAX_STACK);
a78d9f0d 771 goto out_free_lowertmp;
6be4506e 772 } else if (!ufs->config.upperdir && stacklen == 1) {
773 pr_err("overlayfs: at least 2 lowerdir are needed while upperdir nonexistent\n");
774 goto out_free_lowertmp;
775 }
a78d9f0d 776
313684c4 777 err = -ENOMEM;
a78d9f0d
MS
778 stack = kcalloc(stacklen, sizeof(struct path), GFP_KERNEL);
779 if (!stack)
780 goto out_free_lowertmp;
781
313684c4 782 err = -EINVAL;
a78d9f0d
MS
783 lower = lowertmp;
784 for (numlower = 0; numlower < stacklen; numlower++) {
6b2d5fe4
MS
785 err = ovl_lower_dir(lower, &stack[numlower], ufs,
786 &sb->s_stack_depth, &remote);
a78d9f0d
MS
787 if (err)
788 goto out_put_lowerpath;
789
790 lower = strchr(lower, '\0') + 1;
791 }
792
69c433ed 793 err = -EINVAL;
ab508822 794 sb->s_stack_depth++;
69c433ed
MS
795 if (sb->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
796 pr_err("overlayfs: maximum fs stacking depth exceeded\n");
3b7a9a24 797 goto out_put_lowerpath;
69c433ed
MS
798 }
799
53a08cb9
MS
800 if (ufs->config.upperdir) {
801 ufs->upper_mnt = clone_private_mount(&upperpath);
802 err = PTR_ERR(ufs->upper_mnt);
803 if (IS_ERR(ufs->upper_mnt)) {
804 pr_err("overlayfs: failed to clone upperpath\n");
805 goto out_put_lowerpath;
806 }
d719e8f2
MS
807 /* Don't inherit atime flags */
808 ufs->upper_mnt->mnt_flags &= ~(MNT_NOATIME | MNT_NODIRATIME | MNT_RELATIME);
809
810 sb->s_time_gran = ufs->upper_mnt->mnt_sb->s_time_gran;
3b7a9a24 811
8f060a31
SF
812 if (ufs->upper_mnt->mnt_flags & MNT_NOSUID)
813 sb->s_iflags |= SB_I_NOSUID;
814
53a08cb9
MS
815 ufs->workdir = ovl_workdir_create(ufs->upper_mnt, workpath.dentry);
816 err = PTR_ERR(ufs->workdir);
817 if (IS_ERR(ufs->workdir)) {
cc6f67bc
MS
818 pr_warn("overlayfs: failed to create directory %s/%s (errno: %i); mounting read-only\n",
819 ufs->config.workdir, OVL_WORKDIR_NAME, -err);
820 sb->s_flags |= MS_RDONLY;
821 ufs->workdir = NULL;
53a08cb9 822 }
45aebeaf
VG
823
824 /*
825 * Upper should support d_type, else whiteouts are visible.
826 * Given workdir and upper are on same fs, we can do
21765194
VG
827 * iterate_dir() on workdir. This check requires successful
828 * creation of workdir in previous step.
45aebeaf 829 */
21765194
VG
830 if (ufs->workdir) {
831 err = ovl_check_d_type_supported(&workpath);
832 if (err < 0)
833 goto out_put_workdir;
45aebeaf 834
e7c0b599
VG
835 /*
836 * We allowed this configuration and don't want to
837 * break users over kernel upgrade. So warn instead
838 * of erroring out.
839 */
840 if (!err)
841 pr_warn("overlayfs: upper fs needs to support d_type.\n");
45aebeaf 842 }
e9be9d5e
MS
843 }
844
2f83fd8c 845 err = -ENOMEM;
a78d9f0d 846 ufs->lower_mnt = kcalloc(numlower, sizeof(struct vfsmount *), GFP_KERNEL);
dd662667 847 if (ufs->lower_mnt == NULL)
3b7a9a24 848 goto out_put_workdir;
a78d9f0d
MS
849 for (i = 0; i < numlower; i++) {
850 struct vfsmount *mnt = clone_private_mount(&stack[i]);
dd662667 851
2f83fd8c 852 err = PTR_ERR(mnt);
a78d9f0d
MS
853 if (IS_ERR(mnt)) {
854 pr_err("overlayfs: failed to clone lowerpath\n");
855 goto out_put_lower_mnt;
856 }
857 /*
858 * Make lower_mnt R/O. That way fchmod/fchown on lower file
859 * will fail instead of modifying lower fs.
860 */
d719e8f2 861 mnt->mnt_flags |= MNT_READONLY | MNT_NOATIME;
dd662667 862
8f060a31
SF
863 if (mnt->mnt_flags & MNT_NOSUID)
864 sb->s_iflags |= SB_I_NOSUID;
865
a78d9f0d
MS
866 ufs->lower_mnt[ufs->numlower] = mnt;
867 ufs->numlower++;
868 }
e9be9d5e 869
71cbad7e 870 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
871 if (!ufs->upper_mnt)
e9be9d5e
MS
872 sb->s_flags |= MS_RDONLY;
873
7c03b5d4
MS
874 if (remote)
875 sb->s_d_op = &ovl_reval_dentry_operations;
876 else
877 sb->s_d_op = &ovl_dentry_operations;
e9be9d5e 878
3fe6e52f
AM
879 ufs->creator_cred = prepare_creds();
880 if (!ufs->creator_cred)
881 goto out_put_lower_mnt;
882
e9be9d5e 883 err = -ENOMEM;
a78d9f0d 884 oe = ovl_alloc_entry(numlower);
3b7a9a24 885 if (!oe)
3fe6e52f 886 goto out_put_cred;
e9be9d5e 887
655042cc
VG
888 sb->s_magic = OVERLAYFS_SUPER_MAGIC;
889 sb->s_op = &ovl_super_operations;
890 sb->s_xattr = ovl_xattr_handlers;
891 sb->s_fs_info = ufs;
892 sb->s_flags |= MS_POSIXACL | MS_NOREMOTELOCK;
893
ca4c8a3a 894 root_dentry = d_make_root(ovl_new_inode(sb, S_IFDIR, 0));
e9be9d5e 895 if (!root_dentry)
3b7a9a24 896 goto out_free_oe;
e9be9d5e
MS
897
898 mntput(upperpath.mnt);
a78d9f0d
MS
899 for (i = 0; i < numlower; i++)
900 mntput(stack[i].mnt);
e9be9d5e 901 path_put(&workpath);
a78d9f0d 902 kfree(lowertmp);
e9be9d5e
MS
903
904 oe->__upperdentry = upperpath.dentry;
a78d9f0d
MS
905 for (i = 0; i < numlower; i++) {
906 oe->lowerstack[i].dentry = stack[i].dentry;
907 oe->lowerstack[i].mnt = ufs->lower_mnt[i];
908 }
0f95502a 909 kfree(stack);
e9be9d5e
MS
910
911 root_dentry->d_fsdata = oe;
912
39b681f8
MS
913 realinode = d_inode(ovl_dentry_real(root_dentry));
914 ovl_inode_init(d_inode(root_dentry), realinode, !!upperpath.dentry);
915 ovl_copyattr(realinode, d_inode(root_dentry));
ed06e069 916
e9be9d5e 917 sb->s_root = root_dentry;
e9be9d5e
MS
918
919 return 0;
920
3b7a9a24
MS
921out_free_oe:
922 kfree(oe);
3fe6e52f
AM
923out_put_cred:
924 put_cred(ufs->creator_cred);
e9be9d5e 925out_put_lower_mnt:
dd662667
MS
926 for (i = 0; i < ufs->numlower; i++)
927 mntput(ufs->lower_mnt[i]);
928 kfree(ufs->lower_mnt);
3b7a9a24
MS
929out_put_workdir:
930 dput(ufs->workdir);
e9be9d5e 931 mntput(ufs->upper_mnt);
e9be9d5e 932out_put_lowerpath:
a78d9f0d
MS
933 for (i = 0; i < numlower; i++)
934 path_put(&stack[i]);
935 kfree(stack);
936out_free_lowertmp:
937 kfree(lowertmp);
3b7a9a24
MS
938out_put_workpath:
939 path_put(&workpath);
e9be9d5e
MS
940out_put_upperpath:
941 path_put(&upperpath);
e9be9d5e 942out_free_config:
f45827e8
EZ
943 kfree(ufs->config.lowerdir);
944 kfree(ufs->config.upperdir);
945 kfree(ufs->config.workdir);
946 kfree(ufs);
e9be9d5e
MS
947out:
948 return err;
949}
950
951static struct dentry *ovl_mount(struct file_system_type *fs_type, int flags,
952 const char *dev_name, void *raw_data)
953{
954 return mount_nodev(fs_type, flags, raw_data, ovl_fill_super);
955}
956
957static struct file_system_type ovl_fs_type = {
958 .owner = THIS_MODULE,
ef94b186 959 .name = "overlay",
e9be9d5e
MS
960 .mount = ovl_mount,
961 .kill_sb = kill_anon_super,
f7ed5f56 962 .fs_flags = FS_USERNS_MOUNT,
e9be9d5e 963};
ef94b186 964MODULE_ALIAS_FS("overlay");
e9be9d5e
MS
965
966static int __init ovl_init(void)
967{
968 return register_filesystem(&ovl_fs_type);
969}
970
971static void __exit ovl_exit(void)
972{
973 unregister_filesystem(&ovl_fs_type);
974}
975
976module_init(ovl_init);
977module_exit(ovl_exit);