f2fs: don't need to call set_page_dirty for io error
[linux-2.6/btrfs-unstable.git] / fs / overlayfs / super.c
blob8d826bd56b26b10d641d7ce1f7a47b747851fac9
1 /*
3 * Copyright (C) 2011 Novell Inc.
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 */
10 #include <linux/fs.h>
11 #include <linux/namei.h>
12 #include <linux/pagemap.h>
13 #include <linux/xattr.h>
14 #include <linux/security.h>
15 #include <linux/mount.h>
16 #include <linux/slab.h>
17 #include <linux/parser.h>
18 #include <linux/module.h>
19 #include <linux/pagemap.h>
20 #include <linux/sched.h>
21 #include <linux/statfs.h>
22 #include <linux/seq_file.h>
23 #include "overlayfs.h"
25 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
26 MODULE_DESCRIPTION("Overlay filesystem");
27 MODULE_LICENSE("GPL");
29 struct ovl_config {
30 char *lowerdir;
31 char *upperdir;
32 char *workdir;
33 bool default_permissions;
36 /* private information held for overlayfs's superblock */
37 struct ovl_fs {
38 struct vfsmount *upper_mnt;
39 unsigned numlower;
40 struct vfsmount **lower_mnt;
41 struct dentry *workdir;
42 long lower_namelen;
43 /* pathnames of lower and upper dirs, for show_options */
44 struct ovl_config config;
47 struct ovl_dir_cache;
49 /* private information held for every overlayfs dentry */
50 struct ovl_entry {
51 struct dentry *__upperdentry;
52 struct ovl_dir_cache *cache;
53 union {
54 struct {
55 u64 version;
56 bool opaque;
58 struct rcu_head rcu;
60 unsigned numlower;
61 struct path lowerstack[];
64 #define OVL_MAX_STACK 500
66 static struct dentry *__ovl_dentry_lower(struct ovl_entry *oe)
68 return oe->numlower ? oe->lowerstack[0].dentry : NULL;
71 enum ovl_path_type ovl_path_type(struct dentry *dentry)
73 struct ovl_entry *oe = dentry->d_fsdata;
74 enum ovl_path_type type = 0;
76 if (oe->__upperdentry) {
77 type = __OVL_PATH_UPPER;
79 if (oe->numlower) {
80 if (S_ISDIR(dentry->d_inode->i_mode))
81 type |= __OVL_PATH_MERGE;
82 } else if (!oe->opaque) {
83 type |= __OVL_PATH_PURE;
85 } else {
86 if (oe->numlower > 1)
87 type |= __OVL_PATH_MERGE;
89 return type;
92 static struct dentry *ovl_upperdentry_dereference(struct ovl_entry *oe)
94 return lockless_dereference(oe->__upperdentry);
97 void ovl_path_upper(struct dentry *dentry, struct path *path)
99 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
100 struct ovl_entry *oe = dentry->d_fsdata;
102 path->mnt = ofs->upper_mnt;
103 path->dentry = ovl_upperdentry_dereference(oe);
106 enum ovl_path_type ovl_path_real(struct dentry *dentry, struct path *path)
108 enum ovl_path_type type = ovl_path_type(dentry);
110 if (!OVL_TYPE_UPPER(type))
111 ovl_path_lower(dentry, path);
112 else
113 ovl_path_upper(dentry, path);
115 return type;
118 struct dentry *ovl_dentry_upper(struct dentry *dentry)
120 struct ovl_entry *oe = dentry->d_fsdata;
122 return ovl_upperdentry_dereference(oe);
125 struct dentry *ovl_dentry_lower(struct dentry *dentry)
127 struct ovl_entry *oe = dentry->d_fsdata;
129 return __ovl_dentry_lower(oe);
132 struct dentry *ovl_dentry_real(struct dentry *dentry)
134 struct ovl_entry *oe = dentry->d_fsdata;
135 struct dentry *realdentry;
137 realdentry = ovl_upperdentry_dereference(oe);
138 if (!realdentry)
139 realdentry = __ovl_dentry_lower(oe);
141 return realdentry;
144 struct dentry *ovl_entry_real(struct ovl_entry *oe, bool *is_upper)
146 struct dentry *realdentry;
148 realdentry = ovl_upperdentry_dereference(oe);
149 if (realdentry) {
150 *is_upper = true;
151 } else {
152 realdentry = __ovl_dentry_lower(oe);
153 *is_upper = false;
155 return realdentry;
158 struct vfsmount *ovl_entry_mnt_real(struct ovl_entry *oe, struct inode *inode,
159 bool is_upper)
161 if (is_upper) {
162 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
164 return ofs->upper_mnt;
165 } else {
166 return oe->numlower ? oe->lowerstack[0].mnt : NULL;
170 struct ovl_dir_cache *ovl_dir_cache(struct dentry *dentry)
172 struct ovl_entry *oe = dentry->d_fsdata;
174 return oe->cache;
177 bool ovl_is_default_permissions(struct inode *inode)
179 struct ovl_fs *ofs = inode->i_sb->s_fs_info;
181 return ofs->config.default_permissions;
184 void ovl_set_dir_cache(struct dentry *dentry, struct ovl_dir_cache *cache)
186 struct ovl_entry *oe = dentry->d_fsdata;
188 oe->cache = cache;
191 void ovl_path_lower(struct dentry *dentry, struct path *path)
193 struct ovl_entry *oe = dentry->d_fsdata;
195 *path = oe->numlower ? oe->lowerstack[0] : (struct path) { NULL, NULL };
198 int ovl_want_write(struct dentry *dentry)
200 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
201 return mnt_want_write(ofs->upper_mnt);
204 void ovl_drop_write(struct dentry *dentry)
206 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
207 mnt_drop_write(ofs->upper_mnt);
210 struct dentry *ovl_workdir(struct dentry *dentry)
212 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
213 return ofs->workdir;
216 bool ovl_dentry_is_opaque(struct dentry *dentry)
218 struct ovl_entry *oe = dentry->d_fsdata;
219 return oe->opaque;
222 void ovl_dentry_set_opaque(struct dentry *dentry, bool opaque)
224 struct ovl_entry *oe = dentry->d_fsdata;
225 oe->opaque = opaque;
228 void ovl_dentry_update(struct dentry *dentry, struct dentry *upperdentry)
230 struct ovl_entry *oe = dentry->d_fsdata;
232 WARN_ON(!inode_is_locked(upperdentry->d_parent->d_inode));
233 WARN_ON(oe->__upperdentry);
234 BUG_ON(!upperdentry->d_inode);
236 * Make sure upperdentry is consistent before making it visible to
237 * ovl_upperdentry_dereference().
239 smp_wmb();
240 oe->__upperdentry = upperdentry;
243 void ovl_dentry_version_inc(struct dentry *dentry)
245 struct ovl_entry *oe = dentry->d_fsdata;
247 WARN_ON(!inode_is_locked(dentry->d_inode));
248 oe->version++;
251 u64 ovl_dentry_version_get(struct dentry *dentry)
253 struct ovl_entry *oe = dentry->d_fsdata;
255 WARN_ON(!inode_is_locked(dentry->d_inode));
256 return oe->version;
259 bool ovl_is_whiteout(struct dentry *dentry)
261 struct inode *inode = dentry->d_inode;
263 return inode && IS_WHITEOUT(inode);
266 static bool ovl_is_opaquedir(struct dentry *dentry)
268 int res;
269 char val;
270 struct inode *inode = dentry->d_inode;
272 if (!S_ISDIR(inode->i_mode) || !inode->i_op->getxattr)
273 return false;
275 res = inode->i_op->getxattr(dentry, OVL_XATTR_OPAQUE, &val, 1);
276 if (res == 1 && val == 'y')
277 return true;
279 return false;
282 static void ovl_dentry_release(struct dentry *dentry)
284 struct ovl_entry *oe = dentry->d_fsdata;
286 if (oe) {
287 unsigned int i;
289 dput(oe->__upperdentry);
290 for (i = 0; i < oe->numlower; i++)
291 dput(oe->lowerstack[i].dentry);
292 kfree_rcu(oe, rcu);
296 static int ovl_dentry_revalidate(struct dentry *dentry, unsigned int flags)
298 struct ovl_entry *oe = dentry->d_fsdata;
299 unsigned int i;
300 int ret = 1;
302 for (i = 0; i < oe->numlower; i++) {
303 struct dentry *d = oe->lowerstack[i].dentry;
305 if (d->d_flags & DCACHE_OP_REVALIDATE) {
306 ret = d->d_op->d_revalidate(d, flags);
307 if (ret < 0)
308 return ret;
309 if (!ret) {
310 if (!(flags & LOOKUP_RCU))
311 d_invalidate(d);
312 return -ESTALE;
316 return 1;
319 static int ovl_dentry_weak_revalidate(struct dentry *dentry, unsigned int flags)
321 struct ovl_entry *oe = dentry->d_fsdata;
322 unsigned int i;
323 int ret = 1;
325 for (i = 0; i < oe->numlower; i++) {
326 struct dentry *d = oe->lowerstack[i].dentry;
328 if (d->d_flags & DCACHE_OP_WEAK_REVALIDATE) {
329 ret = d->d_op->d_weak_revalidate(d, flags);
330 if (ret <= 0)
331 break;
334 return ret;
337 static const struct dentry_operations ovl_dentry_operations = {
338 .d_release = ovl_dentry_release,
339 .d_select_inode = ovl_d_select_inode,
342 static const struct dentry_operations ovl_reval_dentry_operations = {
343 .d_release = ovl_dentry_release,
344 .d_revalidate = ovl_dentry_revalidate,
345 .d_weak_revalidate = ovl_dentry_weak_revalidate,
348 static struct ovl_entry *ovl_alloc_entry(unsigned int numlower)
350 size_t size = offsetof(struct ovl_entry, lowerstack[numlower]);
351 struct ovl_entry *oe = kzalloc(size, GFP_KERNEL);
353 if (oe)
354 oe->numlower = numlower;
356 return oe;
359 static bool ovl_dentry_remote(struct dentry *dentry)
361 return dentry->d_flags &
362 (DCACHE_OP_REVALIDATE | DCACHE_OP_WEAK_REVALIDATE);
365 static bool ovl_dentry_weird(struct dentry *dentry)
367 return dentry->d_flags & (DCACHE_NEED_AUTOMOUNT |
368 DCACHE_MANAGE_TRANSIT |
369 DCACHE_OP_HASH |
370 DCACHE_OP_COMPARE);
373 static inline struct dentry *ovl_lookup_real(struct dentry *dir,
374 struct qstr *name)
376 struct dentry *dentry;
378 inode_lock(dir->d_inode);
379 dentry = lookup_one_len(name->name, dir, name->len);
380 inode_unlock(dir->d_inode);
382 if (IS_ERR(dentry)) {
383 if (PTR_ERR(dentry) == -ENOENT)
384 dentry = NULL;
385 } else if (!dentry->d_inode) {
386 dput(dentry);
387 dentry = NULL;
388 } else if (ovl_dentry_weird(dentry)) {
389 dput(dentry);
390 /* Don't support traversing automounts and other weirdness */
391 dentry = ERR_PTR(-EREMOTE);
393 return dentry;
397 * Returns next layer in stack starting from top.
398 * Returns -1 if this is the last layer.
400 int ovl_path_next(int idx, struct dentry *dentry, struct path *path)
402 struct ovl_entry *oe = dentry->d_fsdata;
404 BUG_ON(idx < 0);
405 if (idx == 0) {
406 ovl_path_upper(dentry, path);
407 if (path->dentry)
408 return oe->numlower ? 1 : -1;
409 idx++;
411 BUG_ON(idx > oe->numlower);
412 *path = oe->lowerstack[idx - 1];
414 return (idx < oe->numlower) ? idx + 1 : -1;
417 struct dentry *ovl_lookup(struct inode *dir, struct dentry *dentry,
418 unsigned int flags)
420 struct ovl_entry *oe;
421 struct ovl_entry *poe = dentry->d_parent->d_fsdata;
422 struct path *stack = NULL;
423 struct dentry *upperdir, *upperdentry = NULL;
424 unsigned int ctr = 0;
425 struct inode *inode = NULL;
426 bool upperopaque = false;
427 struct dentry *this, *prev = NULL;
428 unsigned int i;
429 int err;
431 upperdir = ovl_upperdentry_dereference(poe);
432 if (upperdir) {
433 this = ovl_lookup_real(upperdir, &dentry->d_name);
434 err = PTR_ERR(this);
435 if (IS_ERR(this))
436 goto out;
438 if (this) {
439 if (unlikely(ovl_dentry_remote(this))) {
440 dput(this);
441 err = -EREMOTE;
442 goto out;
444 if (ovl_is_whiteout(this)) {
445 dput(this);
446 this = NULL;
447 upperopaque = true;
448 } else if (poe->numlower && ovl_is_opaquedir(this)) {
449 upperopaque = true;
452 upperdentry = prev = this;
455 if (!upperopaque && poe->numlower) {
456 err = -ENOMEM;
457 stack = kcalloc(poe->numlower, sizeof(struct path), GFP_KERNEL);
458 if (!stack)
459 goto out_put_upper;
462 for (i = 0; !upperopaque && i < poe->numlower; i++) {
463 bool opaque = false;
464 struct path lowerpath = poe->lowerstack[i];
466 this = ovl_lookup_real(lowerpath.dentry, &dentry->d_name);
467 err = PTR_ERR(this);
468 if (IS_ERR(this)) {
470 * If it's positive, then treat ENAMETOOLONG as ENOENT.
472 if (err == -ENAMETOOLONG && (upperdentry || ctr))
473 continue;
474 goto out_put;
476 if (!this)
477 continue;
478 if (ovl_is_whiteout(this)) {
479 dput(this);
480 break;
483 * Only makes sense to check opaque dir if this is not the
484 * lowermost layer.
486 if (i < poe->numlower - 1 && ovl_is_opaquedir(this))
487 opaque = true;
489 if (prev && (!S_ISDIR(prev->d_inode->i_mode) ||
490 !S_ISDIR(this->d_inode->i_mode))) {
492 * FIXME: check for upper-opaqueness maybe better done
493 * in remove code.
495 if (prev == upperdentry)
496 upperopaque = true;
497 dput(this);
498 break;
501 * If this is a non-directory then stop here.
503 if (!S_ISDIR(this->d_inode->i_mode))
504 opaque = true;
506 stack[ctr].dentry = this;
507 stack[ctr].mnt = lowerpath.mnt;
508 ctr++;
509 prev = this;
510 if (opaque)
511 break;
514 oe = ovl_alloc_entry(ctr);
515 err = -ENOMEM;
516 if (!oe)
517 goto out_put;
519 if (upperdentry || ctr) {
520 struct dentry *realdentry;
522 realdentry = upperdentry ? upperdentry : stack[0].dentry;
524 err = -ENOMEM;
525 inode = ovl_new_inode(dentry->d_sb, realdentry->d_inode->i_mode,
526 oe);
527 if (!inode)
528 goto out_free_oe;
529 ovl_copyattr(realdentry->d_inode, inode);
532 oe->opaque = upperopaque;
533 oe->__upperdentry = upperdentry;
534 memcpy(oe->lowerstack, stack, sizeof(struct path) * ctr);
535 kfree(stack);
536 dentry->d_fsdata = oe;
537 d_add(dentry, inode);
539 return NULL;
541 out_free_oe:
542 kfree(oe);
543 out_put:
544 for (i = 0; i < ctr; i++)
545 dput(stack[i].dentry);
546 kfree(stack);
547 out_put_upper:
548 dput(upperdentry);
549 out:
550 return ERR_PTR(err);
553 struct file *ovl_path_open(struct path *path, int flags)
555 return dentry_open(path, flags, current_cred());
558 static void ovl_put_super(struct super_block *sb)
560 struct ovl_fs *ufs = sb->s_fs_info;
561 unsigned i;
563 dput(ufs->workdir);
564 mntput(ufs->upper_mnt);
565 for (i = 0; i < ufs->numlower; i++)
566 mntput(ufs->lower_mnt[i]);
567 kfree(ufs->lower_mnt);
569 kfree(ufs->config.lowerdir);
570 kfree(ufs->config.upperdir);
571 kfree(ufs->config.workdir);
572 kfree(ufs);
576 * ovl_statfs
577 * @sb: The overlayfs super block
578 * @buf: The struct kstatfs to fill in with stats
580 * Get the filesystem statistics. As writes always target the upper layer
581 * filesystem pass the statfs to the upper filesystem (if it exists)
583 static int ovl_statfs(struct dentry *dentry, struct kstatfs *buf)
585 struct ovl_fs *ofs = dentry->d_sb->s_fs_info;
586 struct dentry *root_dentry = dentry->d_sb->s_root;
587 struct path path;
588 int err;
590 ovl_path_real(root_dentry, &path);
592 err = vfs_statfs(&path, buf);
593 if (!err) {
594 buf->f_namelen = max(buf->f_namelen, ofs->lower_namelen);
595 buf->f_type = OVERLAYFS_SUPER_MAGIC;
598 return err;
602 * ovl_show_options
604 * Prints the mount options for a given superblock.
605 * Returns zero; does not fail.
607 static int ovl_show_options(struct seq_file *m, struct dentry *dentry)
609 struct super_block *sb = dentry->d_sb;
610 struct ovl_fs *ufs = sb->s_fs_info;
612 seq_show_option(m, "lowerdir", ufs->config.lowerdir);
613 if (ufs->config.upperdir) {
614 seq_show_option(m, "upperdir", ufs->config.upperdir);
615 seq_show_option(m, "workdir", ufs->config.workdir);
617 if (ufs->config.default_permissions)
618 seq_puts(m, ",default_permissions");
619 return 0;
622 static int ovl_remount(struct super_block *sb, int *flags, char *data)
624 struct ovl_fs *ufs = sb->s_fs_info;
626 if (!(*flags & MS_RDONLY) && (!ufs->upper_mnt || !ufs->workdir))
627 return -EROFS;
629 return 0;
632 static const struct super_operations ovl_super_operations = {
633 .put_super = ovl_put_super,
634 .statfs = ovl_statfs,
635 .show_options = ovl_show_options,
636 .remount_fs = ovl_remount,
639 enum {
640 OPT_LOWERDIR,
641 OPT_UPPERDIR,
642 OPT_WORKDIR,
643 OPT_DEFAULT_PERMISSIONS,
644 OPT_ERR,
647 static const match_table_t ovl_tokens = {
648 {OPT_LOWERDIR, "lowerdir=%s"},
649 {OPT_UPPERDIR, "upperdir=%s"},
650 {OPT_WORKDIR, "workdir=%s"},
651 {OPT_DEFAULT_PERMISSIONS, "default_permissions"},
652 {OPT_ERR, NULL}
655 static char *ovl_next_opt(char **s)
657 char *sbegin = *s;
658 char *p;
660 if (sbegin == NULL)
661 return NULL;
663 for (p = sbegin; *p; p++) {
664 if (*p == '\\') {
665 p++;
666 if (!*p)
667 break;
668 } else if (*p == ',') {
669 *p = '\0';
670 *s = p + 1;
671 return sbegin;
674 *s = NULL;
675 return sbegin;
678 static int ovl_parse_opt(char *opt, struct ovl_config *config)
680 char *p;
682 while ((p = ovl_next_opt(&opt)) != NULL) {
683 int token;
684 substring_t args[MAX_OPT_ARGS];
686 if (!*p)
687 continue;
689 token = match_token(p, ovl_tokens, args);
690 switch (token) {
691 case OPT_UPPERDIR:
692 kfree(config->upperdir);
693 config->upperdir = match_strdup(&args[0]);
694 if (!config->upperdir)
695 return -ENOMEM;
696 break;
698 case OPT_LOWERDIR:
699 kfree(config->lowerdir);
700 config->lowerdir = match_strdup(&args[0]);
701 if (!config->lowerdir)
702 return -ENOMEM;
703 break;
705 case OPT_WORKDIR:
706 kfree(config->workdir);
707 config->workdir = match_strdup(&args[0]);
708 if (!config->workdir)
709 return -ENOMEM;
710 break;
712 case OPT_DEFAULT_PERMISSIONS:
713 config->default_permissions = true;
714 break;
716 default:
717 pr_err("overlayfs: unrecognized mount option \"%s\" or missing value\n", p);
718 return -EINVAL;
722 /* Workdir is useless in non-upper mount */
723 if (!config->upperdir && config->workdir) {
724 pr_info("overlayfs: option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
725 config->workdir);
726 kfree(config->workdir);
727 config->workdir = NULL;
730 return 0;
733 #define OVL_WORKDIR_NAME "work"
735 static struct dentry *ovl_workdir_create(struct vfsmount *mnt,
736 struct dentry *dentry)
738 struct inode *dir = dentry->d_inode;
739 struct dentry *work;
740 int err;
741 bool retried = false;
743 err = mnt_want_write(mnt);
744 if (err)
745 return ERR_PTR(err);
747 inode_lock_nested(dir, I_MUTEX_PARENT);
748 retry:
749 work = lookup_one_len(OVL_WORKDIR_NAME, dentry,
750 strlen(OVL_WORKDIR_NAME));
752 if (!IS_ERR(work)) {
753 struct kstat stat = {
754 .mode = S_IFDIR | 0,
757 if (work->d_inode) {
758 err = -EEXIST;
759 if (retried)
760 goto out_dput;
762 retried = true;
763 ovl_cleanup(dir, work);
764 dput(work);
765 goto retry;
768 err = ovl_create_real(dir, work, &stat, NULL, NULL, true);
769 if (err)
770 goto out_dput;
772 out_unlock:
773 inode_unlock(dir);
774 mnt_drop_write(mnt);
776 return work;
778 out_dput:
779 dput(work);
780 work = ERR_PTR(err);
781 goto out_unlock;
784 static void ovl_unescape(char *s)
786 char *d = s;
788 for (;; s++, d++) {
789 if (*s == '\\')
790 s++;
791 *d = *s;
792 if (!*s)
793 break;
797 static int ovl_mount_dir_noesc(const char *name, struct path *path)
799 int err = -EINVAL;
801 if (!*name) {
802 pr_err("overlayfs: empty lowerdir\n");
803 goto out;
805 err = kern_path(name, LOOKUP_FOLLOW, path);
806 if (err) {
807 pr_err("overlayfs: failed to resolve '%s': %i\n", name, err);
808 goto out;
810 err = -EINVAL;
811 if (ovl_dentry_weird(path->dentry)) {
812 pr_err("overlayfs: filesystem on '%s' not supported\n", name);
813 goto out_put;
815 if (!S_ISDIR(path->dentry->d_inode->i_mode)) {
816 pr_err("overlayfs: '%s' not a directory\n", name);
817 goto out_put;
819 return 0;
821 out_put:
822 path_put(path);
823 out:
824 return err;
827 static int ovl_mount_dir(const char *name, struct path *path)
829 int err = -ENOMEM;
830 char *tmp = kstrdup(name, GFP_KERNEL);
832 if (tmp) {
833 ovl_unescape(tmp);
834 err = ovl_mount_dir_noesc(tmp, path);
836 if (!err)
837 if (ovl_dentry_remote(path->dentry)) {
838 pr_err("overlayfs: filesystem on '%s' not supported as upperdir\n",
839 tmp);
840 path_put(path);
841 err = -EINVAL;
843 kfree(tmp);
845 return err;
848 static int ovl_lower_dir(const char *name, struct path *path, long *namelen,
849 int *stack_depth, bool *remote)
851 int err;
852 struct kstatfs statfs;
854 err = ovl_mount_dir_noesc(name, path);
855 if (err)
856 goto out;
858 err = vfs_statfs(path, &statfs);
859 if (err) {
860 pr_err("overlayfs: statfs failed on '%s'\n", name);
861 goto out_put;
863 *namelen = max(*namelen, statfs.f_namelen);
864 *stack_depth = max(*stack_depth, path->mnt->mnt_sb->s_stack_depth);
866 if (ovl_dentry_remote(path->dentry))
867 *remote = true;
869 return 0;
871 out_put:
872 path_put(path);
873 out:
874 return err;
877 /* Workdir should not be subdir of upperdir and vice versa */
878 static bool ovl_workdir_ok(struct dentry *workdir, struct dentry *upperdir)
880 bool ok = false;
882 if (workdir != upperdir) {
883 ok = (lock_rename(workdir, upperdir) == NULL);
884 unlock_rename(workdir, upperdir);
886 return ok;
889 static unsigned int ovl_split_lowerdirs(char *str)
891 unsigned int ctr = 1;
892 char *s, *d;
894 for (s = d = str;; s++, d++) {
895 if (*s == '\\') {
896 s++;
897 } else if (*s == ':') {
898 *d = '\0';
899 ctr++;
900 continue;
902 *d = *s;
903 if (!*s)
904 break;
906 return ctr;
909 static int ovl_fill_super(struct super_block *sb, void *data, int silent)
911 struct path upperpath = { NULL, NULL };
912 struct path workpath = { NULL, NULL };
913 struct dentry *root_dentry;
914 struct ovl_entry *oe;
915 struct ovl_fs *ufs;
916 struct path *stack = NULL;
917 char *lowertmp;
918 char *lower;
919 unsigned int numlower;
920 unsigned int stacklen = 0;
921 unsigned int i;
922 bool remote = false;
923 int err;
925 err = -ENOMEM;
926 ufs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
927 if (!ufs)
928 goto out;
930 err = ovl_parse_opt((char *) data, &ufs->config);
931 if (err)
932 goto out_free_config;
934 err = -EINVAL;
935 if (!ufs->config.lowerdir) {
936 pr_err("overlayfs: missing 'lowerdir'\n");
937 goto out_free_config;
940 sb->s_stack_depth = 0;
941 sb->s_maxbytes = MAX_LFS_FILESIZE;
942 if (ufs->config.upperdir) {
943 if (!ufs->config.workdir) {
944 pr_err("overlayfs: missing 'workdir'\n");
945 goto out_free_config;
948 err = ovl_mount_dir(ufs->config.upperdir, &upperpath);
949 if (err)
950 goto out_free_config;
952 /* Upper fs should not be r/o */
953 if (upperpath.mnt->mnt_sb->s_flags & MS_RDONLY) {
954 pr_err("overlayfs: upper fs is r/o, try multi-lower layers mount\n");
955 err = -EINVAL;
956 goto out_put_upperpath;
959 err = ovl_mount_dir(ufs->config.workdir, &workpath);
960 if (err)
961 goto out_put_upperpath;
963 err = -EINVAL;
964 if (upperpath.mnt != workpath.mnt) {
965 pr_err("overlayfs: workdir and upperdir must reside under the same mount\n");
966 goto out_put_workpath;
968 if (!ovl_workdir_ok(workpath.dentry, upperpath.dentry)) {
969 pr_err("overlayfs: workdir and upperdir must be separate subtrees\n");
970 goto out_put_workpath;
972 sb->s_stack_depth = upperpath.mnt->mnt_sb->s_stack_depth;
974 err = -ENOMEM;
975 lowertmp = kstrdup(ufs->config.lowerdir, GFP_KERNEL);
976 if (!lowertmp)
977 goto out_put_workpath;
979 err = -EINVAL;
980 stacklen = ovl_split_lowerdirs(lowertmp);
981 if (stacklen > OVL_MAX_STACK) {
982 pr_err("overlayfs: too many lower directries, limit is %d\n",
983 OVL_MAX_STACK);
984 goto out_free_lowertmp;
985 } else if (!ufs->config.upperdir && stacklen == 1) {
986 pr_err("overlayfs: at least 2 lowerdir are needed while upperdir nonexistent\n");
987 goto out_free_lowertmp;
990 stack = kcalloc(stacklen, sizeof(struct path), GFP_KERNEL);
991 if (!stack)
992 goto out_free_lowertmp;
994 lower = lowertmp;
995 for (numlower = 0; numlower < stacklen; numlower++) {
996 err = ovl_lower_dir(lower, &stack[numlower],
997 &ufs->lower_namelen, &sb->s_stack_depth,
998 &remote);
999 if (err)
1000 goto out_put_lowerpath;
1002 lower = strchr(lower, '\0') + 1;
1005 err = -EINVAL;
1006 sb->s_stack_depth++;
1007 if (sb->s_stack_depth > FILESYSTEM_MAX_STACK_DEPTH) {
1008 pr_err("overlayfs: maximum fs stacking depth exceeded\n");
1009 goto out_put_lowerpath;
1012 if (ufs->config.upperdir) {
1013 ufs->upper_mnt = clone_private_mount(&upperpath);
1014 err = PTR_ERR(ufs->upper_mnt);
1015 if (IS_ERR(ufs->upper_mnt)) {
1016 pr_err("overlayfs: failed to clone upperpath\n");
1017 goto out_put_lowerpath;
1020 ufs->workdir = ovl_workdir_create(ufs->upper_mnt, workpath.dentry);
1021 err = PTR_ERR(ufs->workdir);
1022 if (IS_ERR(ufs->workdir)) {
1023 pr_warn("overlayfs: failed to create directory %s/%s (errno: %i); mounting read-only\n",
1024 ufs->config.workdir, OVL_WORKDIR_NAME, -err);
1025 sb->s_flags |= MS_RDONLY;
1026 ufs->workdir = NULL;
1030 err = -ENOMEM;
1031 ufs->lower_mnt = kcalloc(numlower, sizeof(struct vfsmount *), GFP_KERNEL);
1032 if (ufs->lower_mnt == NULL)
1033 goto out_put_workdir;
1034 for (i = 0; i < numlower; i++) {
1035 struct vfsmount *mnt = clone_private_mount(&stack[i]);
1037 err = PTR_ERR(mnt);
1038 if (IS_ERR(mnt)) {
1039 pr_err("overlayfs: failed to clone lowerpath\n");
1040 goto out_put_lower_mnt;
1043 * Make lower_mnt R/O. That way fchmod/fchown on lower file
1044 * will fail instead of modifying lower fs.
1046 mnt->mnt_flags |= MNT_READONLY;
1048 ufs->lower_mnt[ufs->numlower] = mnt;
1049 ufs->numlower++;
1052 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
1053 if (!ufs->upper_mnt)
1054 sb->s_flags |= MS_RDONLY;
1056 if (remote)
1057 sb->s_d_op = &ovl_reval_dentry_operations;
1058 else
1059 sb->s_d_op = &ovl_dentry_operations;
1061 err = -ENOMEM;
1062 oe = ovl_alloc_entry(numlower);
1063 if (!oe)
1064 goto out_put_lower_mnt;
1066 root_dentry = d_make_root(ovl_new_inode(sb, S_IFDIR, oe));
1067 if (!root_dentry)
1068 goto out_free_oe;
1070 mntput(upperpath.mnt);
1071 for (i = 0; i < numlower; i++)
1072 mntput(stack[i].mnt);
1073 path_put(&workpath);
1074 kfree(lowertmp);
1076 oe->__upperdentry = upperpath.dentry;
1077 for (i = 0; i < numlower; i++) {
1078 oe->lowerstack[i].dentry = stack[i].dentry;
1079 oe->lowerstack[i].mnt = ufs->lower_mnt[i];
1081 kfree(stack);
1083 root_dentry->d_fsdata = oe;
1085 ovl_copyattr(ovl_dentry_real(root_dentry)->d_inode,
1086 root_dentry->d_inode);
1088 sb->s_magic = OVERLAYFS_SUPER_MAGIC;
1089 sb->s_op = &ovl_super_operations;
1090 sb->s_root = root_dentry;
1091 sb->s_fs_info = ufs;
1093 return 0;
1095 out_free_oe:
1096 kfree(oe);
1097 out_put_lower_mnt:
1098 for (i = 0; i < ufs->numlower; i++)
1099 mntput(ufs->lower_mnt[i]);
1100 kfree(ufs->lower_mnt);
1101 out_put_workdir:
1102 dput(ufs->workdir);
1103 mntput(ufs->upper_mnt);
1104 out_put_lowerpath:
1105 for (i = 0; i < numlower; i++)
1106 path_put(&stack[i]);
1107 kfree(stack);
1108 out_free_lowertmp:
1109 kfree(lowertmp);
1110 out_put_workpath:
1111 path_put(&workpath);
1112 out_put_upperpath:
1113 path_put(&upperpath);
1114 out_free_config:
1115 kfree(ufs->config.lowerdir);
1116 kfree(ufs->config.upperdir);
1117 kfree(ufs->config.workdir);
1118 kfree(ufs);
1119 out:
1120 return err;
1123 static struct dentry *ovl_mount(struct file_system_type *fs_type, int flags,
1124 const char *dev_name, void *raw_data)
1126 return mount_nodev(fs_type, flags, raw_data, ovl_fill_super);
1129 static struct file_system_type ovl_fs_type = {
1130 .owner = THIS_MODULE,
1131 .name = "overlay",
1132 .mount = ovl_mount,
1133 .kill_sb = kill_anon_super,
1135 MODULE_ALIAS_FS("overlay");
1137 static int __init ovl_init(void)
1139 return register_filesystem(&ovl_fs_type);
1142 static void __exit ovl_exit(void)
1144 unregister_filesystem(&ovl_fs_type);
1147 module_init(ovl_init);
1148 module_exit(ovl_exit);