1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2011 Novell Inc.
7 #include <uapi/linux/magic.h>
9 #include <linux/namei.h>
10 #include <linux/xattr.h>
11 #include <linux/mount.h>
12 #include <linux/parser.h>
13 #include <linux/module.h>
14 #include <linux/statfs.h>
15 #include <linux/seq_file.h>
16 #include <linux/posix_acl_xattr.h>
17 #include <linux/exportfs.h>
18 #include "overlayfs.h"
20 MODULE_AUTHOR("Miklos Szeredi <miklos@szeredi.hu>");
21 MODULE_DESCRIPTION("Overlay filesystem");
22 MODULE_LICENSE("GPL");
27 #define OVL_MAX_STACK 500
29 static bool ovl_redirect_dir_def
= IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR
);
30 module_param_named(redirect_dir
, ovl_redirect_dir_def
, bool, 0644);
31 MODULE_PARM_DESC(redirect_dir
,
32 "Default to on or off for the redirect_dir feature");
34 static bool ovl_redirect_always_follow
=
35 IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW
);
36 module_param_named(redirect_always_follow
, ovl_redirect_always_follow
,
38 MODULE_PARM_DESC(redirect_always_follow
,
39 "Follow redirects even if redirect_dir feature is turned off");
41 static bool ovl_index_def
= IS_ENABLED(CONFIG_OVERLAY_FS_INDEX
);
42 module_param_named(index
, ovl_index_def
, bool, 0644);
43 MODULE_PARM_DESC(index
,
44 "Default to on or off for the inodes index feature");
46 static bool ovl_nfs_export_def
= IS_ENABLED(CONFIG_OVERLAY_FS_NFS_EXPORT
);
47 module_param_named(nfs_export
, ovl_nfs_export_def
, bool, 0644);
48 MODULE_PARM_DESC(nfs_export
,
49 "Default to on or off for the NFS export feature");
51 static bool ovl_xino_auto_def
= IS_ENABLED(CONFIG_OVERLAY_FS_XINO_AUTO
);
52 module_param_named(xino_auto
, ovl_xino_auto_def
, bool, 0644);
53 MODULE_PARM_DESC(xino_auto
,
54 "Auto enable xino feature");
56 static void ovl_entry_stack_free(struct ovl_entry
*oe
)
60 for (i
= 0; i
< oe
->numlower
; i
++)
61 dput(oe
->lowerstack
[i
].dentry
);
64 static bool ovl_metacopy_def
= IS_ENABLED(CONFIG_OVERLAY_FS_METACOPY
);
65 module_param_named(metacopy
, ovl_metacopy_def
, bool, 0644);
66 MODULE_PARM_DESC(metacopy
,
67 "Default to on or off for the metadata only copy up feature");
69 static void ovl_dentry_release(struct dentry
*dentry
)
71 struct ovl_entry
*oe
= dentry
->d_fsdata
;
74 ovl_entry_stack_free(oe
);
79 static struct dentry
*ovl_d_real(struct dentry
*dentry
,
80 const struct inode
*inode
)
84 /* It's an overlay file */
85 if (inode
&& d_inode(dentry
) == inode
)
88 if (!d_is_reg(dentry
)) {
89 if (!inode
|| inode
== d_inode(dentry
))
94 real
= ovl_dentry_upper(dentry
);
95 if (real
&& (inode
== d_inode(real
)))
98 if (real
&& !inode
&& ovl_has_upperdata(d_inode(dentry
)))
101 real
= ovl_dentry_lowerdata(dentry
);
105 /* Handle recursion */
106 real
= d_real(real
, inode
);
108 if (!inode
|| inode
== d_inode(real
))
111 WARN(1, "ovl_d_real(%pd4, %s:%lu): real dentry not found\n", dentry
,
112 inode
? inode
->i_sb
->s_id
: "NULL", inode
? inode
->i_ino
: 0);
116 static int ovl_revalidate_real(struct dentry
*d
, unsigned int flags
, bool weak
)
121 if (d
->d_flags
& DCACHE_OP_WEAK_REVALIDATE
)
122 ret
= d
->d_op
->d_weak_revalidate(d
, flags
);
123 } else if (d
->d_flags
& DCACHE_OP_REVALIDATE
) {
124 ret
= d
->d_op
->d_revalidate(d
, flags
);
126 if (!(flags
& LOOKUP_RCU
))
134 static int ovl_dentry_revalidate_common(struct dentry
*dentry
,
135 unsigned int flags
, bool weak
)
137 struct ovl_entry
*oe
= dentry
->d_fsdata
;
138 struct dentry
*upper
;
142 upper
= ovl_dentry_upper(dentry
);
144 ret
= ovl_revalidate_real(upper
, flags
, weak
);
146 for (i
= 0; ret
> 0 && i
< oe
->numlower
; i
++) {
147 ret
= ovl_revalidate_real(oe
->lowerstack
[i
].dentry
, flags
,
153 static int ovl_dentry_revalidate(struct dentry
*dentry
, unsigned int flags
)
155 return ovl_dentry_revalidate_common(dentry
, flags
, false);
158 static int ovl_dentry_weak_revalidate(struct dentry
*dentry
, unsigned int flags
)
160 return ovl_dentry_revalidate_common(dentry
, flags
, true);
163 static const struct dentry_operations ovl_dentry_operations
= {
164 .d_release
= ovl_dentry_release
,
165 .d_real
= ovl_d_real
,
166 .d_revalidate
= ovl_dentry_revalidate
,
167 .d_weak_revalidate
= ovl_dentry_weak_revalidate
,
170 static struct kmem_cache
*ovl_inode_cachep
;
172 static struct inode
*ovl_alloc_inode(struct super_block
*sb
)
174 struct ovl_inode
*oi
= kmem_cache_alloc(ovl_inode_cachep
, GFP_KERNEL
);
183 oi
->__upperdentry
= NULL
;
185 oi
->lowerdata
= NULL
;
186 mutex_init(&oi
->lock
);
188 return &oi
->vfs_inode
;
191 static void ovl_free_inode(struct inode
*inode
)
193 struct ovl_inode
*oi
= OVL_I(inode
);
196 mutex_destroy(&oi
->lock
);
197 kmem_cache_free(ovl_inode_cachep
, oi
);
200 static void ovl_destroy_inode(struct inode
*inode
)
202 struct ovl_inode
*oi
= OVL_I(inode
);
204 dput(oi
->__upperdentry
);
206 if (S_ISDIR(inode
->i_mode
))
207 ovl_dir_cache_free(inode
);
212 static void ovl_free_fs(struct ovl_fs
*ofs
)
216 iput(ofs
->workbasedir_trap
);
217 iput(ofs
->indexdir_trap
);
218 iput(ofs
->workdir_trap
);
219 iput(ofs
->upperdir_trap
);
222 if (ofs
->workdir_locked
)
223 ovl_inuse_unlock(ofs
->workbasedir
);
224 dput(ofs
->workbasedir
);
225 if (ofs
->upperdir_locked
)
226 ovl_inuse_unlock(ofs
->upper_mnt
->mnt_root
);
227 mntput(ofs
->upper_mnt
);
228 for (i
= 1; i
< ofs
->numlayer
; i
++) {
229 iput(ofs
->layers
[i
].trap
);
230 mntput(ofs
->layers
[i
].mnt
);
233 for (i
= 0; i
< ofs
->numfs
; i
++)
234 free_anon_bdev(ofs
->fs
[i
].pseudo_dev
);
237 kfree(ofs
->config
.lowerdir
);
238 kfree(ofs
->config
.upperdir
);
239 kfree(ofs
->config
.workdir
);
240 kfree(ofs
->config
.redirect_mode
);
241 if (ofs
->creator_cred
)
242 put_cred(ofs
->creator_cred
);
246 static void ovl_put_super(struct super_block
*sb
)
248 struct ovl_fs
*ofs
= sb
->s_fs_info
;
253 /* Sync real dirty inodes in upper filesystem (if it exists) */
254 static int ovl_sync_fs(struct super_block
*sb
, int wait
)
256 struct ovl_fs
*ofs
= sb
->s_fs_info
;
257 struct super_block
*upper_sb
;
264 * If this is a sync(2) call or an emergency sync, all the super blocks
265 * will be iterated, including upper_sb, so no need to do anything.
267 * If this is a syncfs(2) call, then we do need to call
268 * sync_filesystem() on upper_sb, but enough if we do it when being
269 * called with wait == 1.
274 upper_sb
= ofs
->upper_mnt
->mnt_sb
;
276 down_read(&upper_sb
->s_umount
);
277 ret
= sync_filesystem(upper_sb
);
278 up_read(&upper_sb
->s_umount
);
285 * @sb: The overlayfs super block
286 * @buf: The struct kstatfs to fill in with stats
288 * Get the filesystem statistics. As writes always target the upper layer
289 * filesystem pass the statfs to the upper filesystem (if it exists)
291 static int ovl_statfs(struct dentry
*dentry
, struct kstatfs
*buf
)
293 struct ovl_fs
*ofs
= dentry
->d_sb
->s_fs_info
;
294 struct dentry
*root_dentry
= dentry
->d_sb
->s_root
;
298 ovl_path_real(root_dentry
, &path
);
300 err
= vfs_statfs(&path
, buf
);
302 buf
->f_namelen
= ofs
->namelen
;
303 buf
->f_type
= OVERLAYFS_SUPER_MAGIC
;
309 /* Will this overlay be forced to mount/remount ro? */
310 static bool ovl_force_readonly(struct ovl_fs
*ofs
)
312 return (!ofs
->upper_mnt
|| !ofs
->workdir
);
315 static const char *ovl_redirect_mode_def(void)
317 return ovl_redirect_dir_def
? "on" : "off";
320 static const char * const ovl_xino_str
[] = {
326 static inline int ovl_xino_def(void)
328 return ovl_xino_auto_def
? OVL_XINO_AUTO
: OVL_XINO_OFF
;
334 * Prints the mount options for a given superblock.
335 * Returns zero; does not fail.
337 static int ovl_show_options(struct seq_file
*m
, struct dentry
*dentry
)
339 struct super_block
*sb
= dentry
->d_sb
;
340 struct ovl_fs
*ofs
= sb
->s_fs_info
;
342 seq_show_option(m
, "lowerdir", ofs
->config
.lowerdir
);
343 if (ofs
->config
.upperdir
) {
344 seq_show_option(m
, "upperdir", ofs
->config
.upperdir
);
345 seq_show_option(m
, "workdir", ofs
->config
.workdir
);
347 if (ofs
->config
.default_permissions
)
348 seq_puts(m
, ",default_permissions");
349 if (strcmp(ofs
->config
.redirect_mode
, ovl_redirect_mode_def()) != 0)
350 seq_printf(m
, ",redirect_dir=%s", ofs
->config
.redirect_mode
);
351 if (ofs
->config
.index
!= ovl_index_def
)
352 seq_printf(m
, ",index=%s", ofs
->config
.index
? "on" : "off");
353 if (ofs
->config
.nfs_export
!= ovl_nfs_export_def
)
354 seq_printf(m
, ",nfs_export=%s", ofs
->config
.nfs_export
?
356 if (ofs
->config
.xino
!= ovl_xino_def() && !ovl_same_fs(sb
))
357 seq_printf(m
, ",xino=%s", ovl_xino_str
[ofs
->config
.xino
]);
358 if (ofs
->config
.metacopy
!= ovl_metacopy_def
)
359 seq_printf(m
, ",metacopy=%s",
360 ofs
->config
.metacopy
? "on" : "off");
364 static int ovl_remount(struct super_block
*sb
, int *flags
, char *data
)
366 struct ovl_fs
*ofs
= sb
->s_fs_info
;
368 if (!(*flags
& SB_RDONLY
) && ovl_force_readonly(ofs
))
374 static const struct super_operations ovl_super_operations
= {
375 .alloc_inode
= ovl_alloc_inode
,
376 .free_inode
= ovl_free_inode
,
377 .destroy_inode
= ovl_destroy_inode
,
378 .drop_inode
= generic_delete_inode
,
379 .put_super
= ovl_put_super
,
380 .sync_fs
= ovl_sync_fs
,
381 .statfs
= ovl_statfs
,
382 .show_options
= ovl_show_options
,
383 .remount_fs
= ovl_remount
,
390 OPT_DEFAULT_PERMISSIONS
,
404 static const match_table_t ovl_tokens
= {
405 {OPT_LOWERDIR
, "lowerdir=%s"},
406 {OPT_UPPERDIR
, "upperdir=%s"},
407 {OPT_WORKDIR
, "workdir=%s"},
408 {OPT_DEFAULT_PERMISSIONS
, "default_permissions"},
409 {OPT_REDIRECT_DIR
, "redirect_dir=%s"},
410 {OPT_INDEX_ON
, "index=on"},
411 {OPT_INDEX_OFF
, "index=off"},
412 {OPT_NFS_EXPORT_ON
, "nfs_export=on"},
413 {OPT_NFS_EXPORT_OFF
, "nfs_export=off"},
414 {OPT_XINO_ON
, "xino=on"},
415 {OPT_XINO_OFF
, "xino=off"},
416 {OPT_XINO_AUTO
, "xino=auto"},
417 {OPT_METACOPY_ON
, "metacopy=on"},
418 {OPT_METACOPY_OFF
, "metacopy=off"},
422 static char *ovl_next_opt(char **s
)
430 for (p
= sbegin
; *p
; p
++) {
435 } else if (*p
== ',') {
445 static int ovl_parse_redirect_mode(struct ovl_config
*config
, const char *mode
)
447 if (strcmp(mode
, "on") == 0) {
448 config
->redirect_dir
= true;
450 * Does not make sense to have redirect creation without
451 * redirect following.
453 config
->redirect_follow
= true;
454 } else if (strcmp(mode
, "follow") == 0) {
455 config
->redirect_follow
= true;
456 } else if (strcmp(mode
, "off") == 0) {
457 if (ovl_redirect_always_follow
)
458 config
->redirect_follow
= true;
459 } else if (strcmp(mode
, "nofollow") != 0) {
460 pr_err("bad mount option \"redirect_dir=%s\"\n",
468 static int ovl_parse_opt(char *opt
, struct ovl_config
*config
)
472 bool metacopy_opt
= false, redirect_opt
= false;
474 config
->redirect_mode
= kstrdup(ovl_redirect_mode_def(), GFP_KERNEL
);
475 if (!config
->redirect_mode
)
478 while ((p
= ovl_next_opt(&opt
)) != NULL
) {
480 substring_t args
[MAX_OPT_ARGS
];
485 token
= match_token(p
, ovl_tokens
, args
);
488 kfree(config
->upperdir
);
489 config
->upperdir
= match_strdup(&args
[0]);
490 if (!config
->upperdir
)
495 kfree(config
->lowerdir
);
496 config
->lowerdir
= match_strdup(&args
[0]);
497 if (!config
->lowerdir
)
502 kfree(config
->workdir
);
503 config
->workdir
= match_strdup(&args
[0]);
504 if (!config
->workdir
)
508 case OPT_DEFAULT_PERMISSIONS
:
509 config
->default_permissions
= true;
512 case OPT_REDIRECT_DIR
:
513 kfree(config
->redirect_mode
);
514 config
->redirect_mode
= match_strdup(&args
[0]);
515 if (!config
->redirect_mode
)
521 config
->index
= true;
525 config
->index
= false;
528 case OPT_NFS_EXPORT_ON
:
529 config
->nfs_export
= true;
532 case OPT_NFS_EXPORT_OFF
:
533 config
->nfs_export
= false;
537 config
->xino
= OVL_XINO_ON
;
541 config
->xino
= OVL_XINO_OFF
;
545 config
->xino
= OVL_XINO_AUTO
;
548 case OPT_METACOPY_ON
:
549 config
->metacopy
= true;
553 case OPT_METACOPY_OFF
:
554 config
->metacopy
= false;
558 pr_err("unrecognized mount option \"%s\" or missing value\n",
564 /* Workdir is useless in non-upper mount */
565 if (!config
->upperdir
&& config
->workdir
) {
566 pr_info("option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
568 kfree(config
->workdir
);
569 config
->workdir
= NULL
;
572 err
= ovl_parse_redirect_mode(config
, config
->redirect_mode
);
577 * This is to make the logic below simpler. It doesn't make any other
578 * difference, since config->redirect_dir is only used for upper.
580 if (!config
->upperdir
&& config
->redirect_follow
)
581 config
->redirect_dir
= true;
583 /* Resolve metacopy -> redirect_dir dependency */
584 if (config
->metacopy
&& !config
->redirect_dir
) {
585 if (metacopy_opt
&& redirect_opt
) {
586 pr_err("conflicting options: metacopy=on,redirect_dir=%s\n",
587 config
->redirect_mode
);
592 * There was an explicit redirect_dir=... that resulted
595 pr_info("disabling metacopy due to redirect_dir=%s\n",
596 config
->redirect_mode
);
597 config
->metacopy
= false;
599 /* Automatically enable redirect otherwise. */
600 config
->redirect_follow
= config
->redirect_dir
= true;
607 #define OVL_WORKDIR_NAME "work"
608 #define OVL_INDEXDIR_NAME "index"
610 static struct dentry
*ovl_workdir_create(struct ovl_fs
*ofs
,
611 const char *name
, bool persist
)
613 struct inode
*dir
= ofs
->workbasedir
->d_inode
;
614 struct vfsmount
*mnt
= ofs
->upper_mnt
;
617 bool retried
= false;
620 inode_lock_nested(dir
, I_MUTEX_PARENT
);
624 work
= lookup_one_len(name
, ofs
->workbasedir
, strlen(name
));
627 struct iattr attr
= {
628 .ia_valid
= ATTR_MODE
,
629 .ia_mode
= S_IFDIR
| 0,
641 ovl_workdir_cleanup(dir
, mnt
, work
, 0);
646 work
= ovl_create_real(dir
, work
, OVL_CATTR(attr
.ia_mode
));
652 * Try to remove POSIX ACL xattrs from workdir. We are good if:
654 * a) success (there was a POSIX ACL xattr and was removed)
655 * b) -ENODATA (there was no POSIX ACL xattr)
656 * c) -EOPNOTSUPP (POSIX ACL xattrs are not supported)
658 * There are various other error values that could effectively
659 * mean that the xattr doesn't exist (e.g. -ERANGE is returned
660 * if the xattr name is too long), but the set of filesystems
661 * allowed as upper are limited to "normal" ones, where checking
662 * for the above two errors is sufficient.
664 err
= vfs_removexattr(work
, XATTR_NAME_POSIX_ACL_DEFAULT
);
665 if (err
&& err
!= -ENODATA
&& err
!= -EOPNOTSUPP
)
668 err
= vfs_removexattr(work
, XATTR_NAME_POSIX_ACL_ACCESS
);
669 if (err
&& err
!= -ENODATA
&& err
!= -EOPNOTSUPP
)
672 /* Clear any inherited mode bits */
673 inode_lock(work
->d_inode
);
674 err
= notify_change(work
, &attr
, NULL
);
675 inode_unlock(work
->d_inode
);
691 pr_warn("failed to create directory %s/%s (errno: %i); mounting read-only\n",
692 ofs
->config
.workdir
, name
, -err
);
697 static void ovl_unescape(char *s
)
710 static int ovl_mount_dir_noesc(const char *name
, struct path
*path
)
715 pr_err("empty lowerdir\n");
718 err
= kern_path(name
, LOOKUP_FOLLOW
, path
);
720 pr_err("failed to resolve '%s': %i\n", name
, err
);
724 if (ovl_dentry_weird(path
->dentry
)) {
725 pr_err("filesystem on '%s' not supported\n", name
);
728 if (!d_is_dir(path
->dentry
)) {
729 pr_err("'%s' not a directory\n", name
);
740 static int ovl_mount_dir(const char *name
, struct path
*path
)
743 char *tmp
= kstrdup(name
, GFP_KERNEL
);
747 err
= ovl_mount_dir_noesc(tmp
, path
);
749 if (!err
&& path
->dentry
->d_flags
& DCACHE_OP_REAL
) {
750 pr_err("filesystem on '%s' not supported as upperdir\n",
760 static int ovl_check_namelen(struct path
*path
, struct ovl_fs
*ofs
,
763 struct kstatfs statfs
;
764 int err
= vfs_statfs(path
, &statfs
);
767 pr_err("statfs failed on '%s'\n", name
);
769 ofs
->namelen
= max(ofs
->namelen
, statfs
.f_namelen
);
774 static int ovl_lower_dir(const char *name
, struct path
*path
,
775 struct ovl_fs
*ofs
, int *stack_depth
)
780 err
= ovl_mount_dir_noesc(name
, path
);
784 err
= ovl_check_namelen(path
, ofs
, name
);
788 *stack_depth
= max(*stack_depth
, path
->mnt
->mnt_sb
->s_stack_depth
);
791 * The inodes index feature and NFS export need to encode and decode
792 * file handles, so they require that all layers support them.
794 fh_type
= ovl_can_decode_fh(path
->dentry
->d_sb
);
795 if ((ofs
->config
.nfs_export
||
796 (ofs
->config
.index
&& ofs
->config
.upperdir
)) && !fh_type
) {
797 ofs
->config
.index
= false;
798 ofs
->config
.nfs_export
= false;
799 pr_warn("fs on '%s' does not support file handles, falling back to index=off,nfs_export=off.\n",
803 /* Check if lower fs has 32bit inode numbers */
804 if (fh_type
!= FILEID_INO32_GEN
)
815 /* Workdir should not be subdir of upperdir and vice versa */
816 static bool ovl_workdir_ok(struct dentry
*workdir
, struct dentry
*upperdir
)
820 if (workdir
!= upperdir
) {
821 ok
= (lock_rename(workdir
, upperdir
) == NULL
);
822 unlock_rename(workdir
, upperdir
);
827 static unsigned int ovl_split_lowerdirs(char *str
)
829 unsigned int ctr
= 1;
832 for (s
= d
= str
;; s
++, d
++) {
835 } else if (*s
== ':') {
847 static int __maybe_unused
848 ovl_posix_acl_xattr_get(const struct xattr_handler
*handler
,
849 struct dentry
*dentry
, struct inode
*inode
,
850 const char *name
, void *buffer
, size_t size
)
852 return ovl_xattr_get(dentry
, inode
, handler
->name
, buffer
, size
);
855 static int __maybe_unused
856 ovl_posix_acl_xattr_set(const struct xattr_handler
*handler
,
857 struct dentry
*dentry
, struct inode
*inode
,
858 const char *name
, const void *value
,
859 size_t size
, int flags
)
861 struct dentry
*workdir
= ovl_workdir(dentry
);
862 struct inode
*realinode
= ovl_inode_real(inode
);
863 struct posix_acl
*acl
= NULL
;
866 /* Check that everything is OK before copy-up */
868 acl
= posix_acl_from_xattr(&init_user_ns
, value
, size
);
873 if (!IS_POSIXACL(d_inode(workdir
)))
874 goto out_acl_release
;
875 if (!realinode
->i_op
->set_acl
)
876 goto out_acl_release
;
877 if (handler
->flags
== ACL_TYPE_DEFAULT
&& !S_ISDIR(inode
->i_mode
)) {
878 err
= acl
? -EACCES
: 0;
879 goto out_acl_release
;
882 if (!inode_owner_or_capable(inode
))
883 goto out_acl_release
;
885 posix_acl_release(acl
);
888 * Check if sgid bit needs to be cleared (actual setacl operation will
889 * be done with mounter's capabilities and so that won't do it for us).
891 if (unlikely(inode
->i_mode
& S_ISGID
) &&
892 handler
->flags
== ACL_TYPE_ACCESS
&&
893 !in_group_p(inode
->i_gid
) &&
894 !capable_wrt_inode_uidgid(inode
, CAP_FSETID
)) {
895 struct iattr iattr
= { .ia_valid
= ATTR_KILL_SGID
};
897 err
= ovl_setattr(dentry
, &iattr
);
902 err
= ovl_xattr_set(dentry
, inode
, handler
->name
, value
, size
, flags
);
904 ovl_copyattr(ovl_inode_real(inode
), inode
);
909 posix_acl_release(acl
);
913 static int ovl_own_xattr_get(const struct xattr_handler
*handler
,
914 struct dentry
*dentry
, struct inode
*inode
,
915 const char *name
, void *buffer
, size_t size
)
920 static int ovl_own_xattr_set(const struct xattr_handler
*handler
,
921 struct dentry
*dentry
, struct inode
*inode
,
922 const char *name
, const void *value
,
923 size_t size
, int flags
)
928 static int ovl_other_xattr_get(const struct xattr_handler
*handler
,
929 struct dentry
*dentry
, struct inode
*inode
,
930 const char *name
, void *buffer
, size_t size
)
932 return ovl_xattr_get(dentry
, inode
, name
, buffer
, size
);
935 static int ovl_other_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
)
940 return ovl_xattr_set(dentry
, inode
, name
, value
, size
, flags
);
943 static const struct xattr_handler __maybe_unused
944 ovl_posix_acl_access_xattr_handler
= {
945 .name
= XATTR_NAME_POSIX_ACL_ACCESS
,
946 .flags
= ACL_TYPE_ACCESS
,
947 .get
= ovl_posix_acl_xattr_get
,
948 .set
= ovl_posix_acl_xattr_set
,
951 static const struct xattr_handler __maybe_unused
952 ovl_posix_acl_default_xattr_handler
= {
953 .name
= XATTR_NAME_POSIX_ACL_DEFAULT
,
954 .flags
= ACL_TYPE_DEFAULT
,
955 .get
= ovl_posix_acl_xattr_get
,
956 .set
= ovl_posix_acl_xattr_set
,
959 static const struct xattr_handler ovl_own_xattr_handler
= {
960 .prefix
= OVL_XATTR_PREFIX
,
961 .get
= ovl_own_xattr_get
,
962 .set
= ovl_own_xattr_set
,
965 static const struct xattr_handler ovl_other_xattr_handler
= {
966 .prefix
= "", /* catch all */
967 .get
= ovl_other_xattr_get
,
968 .set
= ovl_other_xattr_set
,
971 static const struct xattr_handler
*ovl_xattr_handlers
[] = {
972 #ifdef CONFIG_FS_POSIX_ACL
973 &ovl_posix_acl_access_xattr_handler
,
974 &ovl_posix_acl_default_xattr_handler
,
976 &ovl_own_xattr_handler
,
977 &ovl_other_xattr_handler
,
981 static int ovl_setup_trap(struct super_block
*sb
, struct dentry
*dir
,
982 struct inode
**ptrap
, const char *name
)
987 trap
= ovl_get_trap_inode(sb
, dir
);
988 err
= PTR_ERR_OR_ZERO(trap
);
991 pr_err("conflicting %s path\n", name
);
1000 * Determine how we treat concurrent use of upperdir/workdir based on the
1001 * index feature. This is papering over mount leaks of container runtimes,
1002 * for example, an old overlay mount is leaked and now its upperdir is
1003 * attempted to be used as a lower layer in a new overlay mount.
1005 static int ovl_report_in_use(struct ovl_fs
*ofs
, const char *name
)
1007 if (ofs
->config
.index
) {
1008 pr_err("%s is in-use as upperdir/workdir of another mount, mount with '-o index=off' to override exclusive upperdir protection.\n",
1012 pr_warn("%s is in-use as upperdir/workdir of another mount, accessing files from both mounts will result in undefined behavior.\n",
1018 static int ovl_get_upper(struct super_block
*sb
, struct ovl_fs
*ofs
,
1019 struct path
*upperpath
)
1021 struct vfsmount
*upper_mnt
;
1024 err
= ovl_mount_dir(ofs
->config
.upperdir
, upperpath
);
1028 /* Upper fs should not be r/o */
1029 if (sb_rdonly(upperpath
->mnt
->mnt_sb
)) {
1030 pr_err("upper fs is r/o, try multi-lower layers mount\n");
1035 err
= ovl_check_namelen(upperpath
, ofs
, ofs
->config
.upperdir
);
1039 err
= ovl_setup_trap(sb
, upperpath
->dentry
, &ofs
->upperdir_trap
,
1044 upper_mnt
= clone_private_mount(upperpath
);
1045 err
= PTR_ERR(upper_mnt
);
1046 if (IS_ERR(upper_mnt
)) {
1047 pr_err("failed to clone upperpath\n");
1051 /* Don't inherit atime flags */
1052 upper_mnt
->mnt_flags
&= ~(MNT_NOATIME
| MNT_NODIRATIME
| MNT_RELATIME
);
1053 ofs
->upper_mnt
= upper_mnt
;
1055 if (ovl_inuse_trylock(ofs
->upper_mnt
->mnt_root
)) {
1056 ofs
->upperdir_locked
= true;
1058 err
= ovl_report_in_use(ofs
, "upperdir");
1069 * Returns 1 if RENAME_WHITEOUT is supported, 0 if not supported and
1070 * negative values if error is encountered.
1072 static int ovl_check_rename_whiteout(struct dentry
*workdir
)
1074 struct inode
*dir
= d_inode(workdir
);
1075 struct dentry
*temp
;
1076 struct dentry
*dest
;
1077 struct dentry
*whiteout
;
1078 struct name_snapshot name
;
1081 inode_lock_nested(dir
, I_MUTEX_PARENT
);
1083 temp
= ovl_create_temp(workdir
, OVL_CATTR(S_IFREG
| 0));
1084 err
= PTR_ERR(temp
);
1088 dest
= ovl_lookup_temp(workdir
);
1089 err
= PTR_ERR(dest
);
1095 /* Name is inline and stable - using snapshot as a copy helper */
1096 take_dentry_name_snapshot(&name
, temp
);
1097 err
= ovl_do_rename(dir
, temp
, dir
, dest
, RENAME_WHITEOUT
);
1104 whiteout
= lookup_one_len(name
.name
.name
, workdir
, name
.name
.len
);
1105 err
= PTR_ERR(whiteout
);
1106 if (IS_ERR(whiteout
))
1109 err
= ovl_is_whiteout(whiteout
);
1111 /* Best effort cleanup of whiteout and temp file */
1113 ovl_cleanup(dir
, whiteout
);
1117 ovl_cleanup(dir
, temp
);
1118 release_dentry_name_snapshot(&name
);
1128 static int ovl_make_workdir(struct super_block
*sb
, struct ovl_fs
*ofs
,
1129 struct path
*workpath
)
1131 struct vfsmount
*mnt
= ofs
->upper_mnt
;
1132 struct dentry
*temp
;
1133 bool rename_whiteout
;
1138 err
= mnt_want_write(mnt
);
1142 ofs
->workdir
= ovl_workdir_create(ofs
, OVL_WORKDIR_NAME
, false);
1146 err
= ovl_setup_trap(sb
, ofs
->workdir
, &ofs
->workdir_trap
, "workdir");
1151 * Upper should support d_type, else whiteouts are visible. Given
1152 * workdir and upper are on same fs, we can do iterate_dir() on
1153 * workdir. This check requires successful creation of workdir in
1156 err
= ovl_check_d_type_supported(workpath
);
1162 pr_warn("upper fs needs to support d_type.\n");
1164 /* Check if upper/work fs supports O_TMPFILE */
1165 temp
= ovl_do_tmpfile(ofs
->workdir
, S_IFREG
| 0);
1166 ofs
->tmpfile
= !IS_ERR(temp
);
1170 pr_warn("upper fs does not support tmpfile.\n");
1173 /* Check if upper/work fs supports RENAME_WHITEOUT */
1174 err
= ovl_check_rename_whiteout(ofs
->workdir
);
1178 rename_whiteout
= err
;
1179 if (!rename_whiteout
)
1180 pr_warn("upper fs does not support RENAME_WHITEOUT.\n");
1183 * Check if upper/work fs supports trusted.overlay.* xattr
1185 err
= ovl_do_setxattr(ofs
->workdir
, OVL_XATTR_OPAQUE
, "0", 1, 0);
1187 ofs
->noxattr
= true;
1188 ofs
->config
.index
= false;
1189 ofs
->config
.metacopy
= false;
1190 pr_warn("upper fs does not support xattr, falling back to index=off and metacopy=off.\n");
1193 vfs_removexattr(ofs
->workdir
, OVL_XATTR_OPAQUE
);
1197 * We allowed sub-optimal upper fs configuration and don't want to break
1198 * users over kernel upgrade, but we never allowed remote upper fs, so
1199 * we can enforce strict requirements for remote upper fs.
1201 if (ovl_dentry_remote(ofs
->workdir
) &&
1202 (!d_type
|| !rename_whiteout
|| ofs
->noxattr
)) {
1203 pr_err("upper fs missing required features.\n");
1208 /* Check if upper/work fs supports file handles */
1209 fh_type
= ovl_can_decode_fh(ofs
->workdir
->d_sb
);
1210 if (ofs
->config
.index
&& !fh_type
) {
1211 ofs
->config
.index
= false;
1212 pr_warn("upper fs does not support file handles, falling back to index=off.\n");
1215 /* Check if upper fs has 32bit inode numbers */
1216 if (fh_type
!= FILEID_INO32_GEN
)
1217 ofs
->xino_mode
= -1;
1219 /* NFS export of r/w mount depends on index */
1220 if (ofs
->config
.nfs_export
&& !ofs
->config
.index
) {
1221 pr_warn("NFS export requires \"index=on\", falling back to nfs_export=off.\n");
1222 ofs
->config
.nfs_export
= false;
1225 mnt_drop_write(mnt
);
1229 static int ovl_get_workdir(struct super_block
*sb
, struct ovl_fs
*ofs
,
1230 struct path
*upperpath
)
1233 struct path workpath
= { };
1235 err
= ovl_mount_dir(ofs
->config
.workdir
, &workpath
);
1240 if (upperpath
->mnt
!= workpath
.mnt
) {
1241 pr_err("workdir and upperdir must reside under the same mount\n");
1244 if (!ovl_workdir_ok(workpath
.dentry
, upperpath
->dentry
)) {
1245 pr_err("workdir and upperdir must be separate subtrees\n");
1249 ofs
->workbasedir
= dget(workpath
.dentry
);
1251 if (ovl_inuse_trylock(ofs
->workbasedir
)) {
1252 ofs
->workdir_locked
= true;
1254 err
= ovl_report_in_use(ofs
, "workdir");
1259 err
= ovl_setup_trap(sb
, ofs
->workbasedir
, &ofs
->workbasedir_trap
,
1264 err
= ovl_make_workdir(sb
, ofs
, &workpath
);
1267 path_put(&workpath
);
1272 static int ovl_get_indexdir(struct super_block
*sb
, struct ovl_fs
*ofs
,
1273 struct ovl_entry
*oe
, struct path
*upperpath
)
1275 struct vfsmount
*mnt
= ofs
->upper_mnt
;
1278 err
= mnt_want_write(mnt
);
1282 /* Verify lower root is upper root origin */
1283 err
= ovl_verify_origin(upperpath
->dentry
, oe
->lowerstack
[0].dentry
,
1286 pr_err("failed to verify upper root origin\n");
1290 ofs
->indexdir
= ovl_workdir_create(ofs
, OVL_INDEXDIR_NAME
, true);
1291 if (ofs
->indexdir
) {
1292 err
= ovl_setup_trap(sb
, ofs
->indexdir
, &ofs
->indexdir_trap
,
1298 * Verify upper root is exclusively associated with index dir.
1299 * Older kernels stored upper fh in "trusted.overlay.origin"
1300 * xattr. If that xattr exists, verify that it is a match to
1301 * upper dir file handle. In any case, verify or set xattr
1302 * "trusted.overlay.upper" to indicate that index may have
1303 * directory entries.
1305 if (ovl_check_origin_xattr(ofs
->indexdir
)) {
1306 err
= ovl_verify_set_fh(ofs
->indexdir
, OVL_XATTR_ORIGIN
,
1307 upperpath
->dentry
, true, false);
1309 pr_err("failed to verify index dir 'origin' xattr\n");
1311 err
= ovl_verify_upper(ofs
->indexdir
, upperpath
->dentry
, true);
1313 pr_err("failed to verify index dir 'upper' xattr\n");
1315 /* Cleanup bad/stale/orphan index entries */
1317 err
= ovl_indexdir_cleanup(ofs
);
1319 if (err
|| !ofs
->indexdir
)
1320 pr_warn("try deleting index dir or mounting with '-o index=off' to disable inodes index.\n");
1323 mnt_drop_write(mnt
);
1327 static bool ovl_lower_uuid_ok(struct ovl_fs
*ofs
, const uuid_t
*uuid
)
1331 if (!ofs
->config
.nfs_export
&& !ofs
->upper_mnt
)
1334 for (i
= 0; i
< ofs
->numfs
; i
++) {
1336 * We use uuid to associate an overlay lower file handle with a
1337 * lower layer, so we can accept lower fs with null uuid as long
1338 * as all lower layers with null uuid are on the same fs.
1339 * if we detect multiple lower fs with the same uuid, we
1340 * disable lower file handle decoding on all of them.
1342 if (ofs
->fs
[i
].is_lower
&&
1343 uuid_equal(&ofs
->fs
[i
].sb
->s_uuid
, uuid
)) {
1344 ofs
->fs
[i
].bad_uuid
= true;
1351 /* Get a unique fsid for the layer */
1352 static int ovl_get_fsid(struct ovl_fs
*ofs
, const struct path
*path
)
1354 struct super_block
*sb
= path
->mnt
->mnt_sb
;
1358 bool bad_uuid
= false;
1360 for (i
= 0; i
< ofs
->numfs
; i
++) {
1361 if (ofs
->fs
[i
].sb
== sb
)
1365 if (!ovl_lower_uuid_ok(ofs
, &sb
->s_uuid
)) {
1367 if (ofs
->config
.index
|| ofs
->config
.nfs_export
) {
1368 ofs
->config
.index
= false;
1369 ofs
->config
.nfs_export
= false;
1370 pr_warn("%s uuid detected in lower fs '%pd2', falling back to index=off,nfs_export=off.\n",
1371 uuid_is_null(&sb
->s_uuid
) ? "null" :
1377 err
= get_anon_bdev(&dev
);
1379 pr_err("failed to get anonymous bdev for lowerpath\n");
1383 ofs
->fs
[ofs
->numfs
].sb
= sb
;
1384 ofs
->fs
[ofs
->numfs
].pseudo_dev
= dev
;
1385 ofs
->fs
[ofs
->numfs
].bad_uuid
= bad_uuid
;
1387 return ofs
->numfs
++;
1390 static int ovl_get_layers(struct super_block
*sb
, struct ovl_fs
*ofs
,
1391 struct path
*stack
, unsigned int numlower
)
1395 struct ovl_layer
*layers
;
1398 layers
= kcalloc(numlower
+ 1, sizeof(struct ovl_layer
), GFP_KERNEL
);
1401 ofs
->layers
= layers
;
1403 ofs
->fs
= kcalloc(numlower
+ 1, sizeof(struct ovl_sb
), GFP_KERNEL
);
1404 if (ofs
->fs
== NULL
)
1407 /* idx/fsid 0 are reserved for upper fs even with lower only overlay */
1410 layers
[0].mnt
= ofs
->upper_mnt
;
1416 * All lower layers that share the same fs as upper layer, use the same
1417 * pseudo_dev as upper layer. Allocate fs[0].pseudo_dev even for lower
1418 * only overlay to simplify ovl_fs_free().
1419 * is_lower will be set if upper fs is shared with a lower layer.
1421 err
= get_anon_bdev(&ofs
->fs
[0].pseudo_dev
);
1423 pr_err("failed to get anonymous bdev for upper fs\n");
1427 if (ofs
->upper_mnt
) {
1428 ofs
->fs
[0].sb
= ofs
->upper_mnt
->mnt_sb
;
1429 ofs
->fs
[0].is_lower
= false;
1432 for (i
= 0; i
< numlower
; i
++) {
1433 struct vfsmount
*mnt
;
1437 err
= fsid
= ovl_get_fsid(ofs
, &stack
[i
]);
1441 err
= ovl_setup_trap(sb
, stack
[i
].dentry
, &trap
, "lowerdir");
1445 if (ovl_is_inuse(stack
[i
].dentry
)) {
1446 err
= ovl_report_in_use(ofs
, "lowerdir");
1451 mnt
= clone_private_mount(&stack
[i
]);
1454 pr_err("failed to clone lowerpath\n");
1460 * Make lower layers R/O. That way fchmod/fchown on lower file
1461 * will fail instead of modifying lower fs.
1463 mnt
->mnt_flags
|= MNT_READONLY
| MNT_NOATIME
;
1465 layers
[ofs
->numlayer
].trap
= trap
;
1466 layers
[ofs
->numlayer
].mnt
= mnt
;
1467 layers
[ofs
->numlayer
].idx
= ofs
->numlayer
;
1468 layers
[ofs
->numlayer
].fsid
= fsid
;
1469 layers
[ofs
->numlayer
].fs
= &ofs
->fs
[fsid
];
1471 ofs
->fs
[fsid
].is_lower
= true;
1475 * When all layers on same fs, overlay can use real inode numbers.
1476 * With mount option "xino=<on|auto>", mounter declares that there are
1477 * enough free high bits in underlying fs to hold the unique fsid.
1478 * If overlayfs does encounter underlying inodes using the high xino
1479 * bits reserved for fsid, it emits a warning and uses the original
1480 * inode number or a non persistent inode number allocated from a
1483 if (ofs
->numfs
- !ofs
->upper_mnt
== 1) {
1484 if (ofs
->config
.xino
== OVL_XINO_ON
)
1485 pr_info("\"xino=on\" is useless with all layers on same fs, ignore.\n");
1487 } else if (ofs
->config
.xino
== OVL_XINO_OFF
) {
1488 ofs
->xino_mode
= -1;
1489 } else if (ofs
->xino_mode
< 0) {
1491 * This is a roundup of number of bits needed for encoding
1492 * fsid, where fsid 0 is reserved for upper fs (even with
1493 * lower only overlay) +1 extra bit is reserved for the non
1494 * persistent inode number range that is used for resolving
1495 * xino lower bits overflow.
1497 BUILD_BUG_ON(ilog2(OVL_MAX_STACK
) > 30);
1498 ofs
->xino_mode
= ilog2(ofs
->numfs
- 1) + 2;
1501 if (ofs
->xino_mode
> 0) {
1502 pr_info("\"xino\" feature enabled using %d upper inode bits.\n",
1511 static struct ovl_entry
*ovl_get_lowerstack(struct super_block
*sb
,
1515 char *lowertmp
, *lower
;
1516 struct path
*stack
= NULL
;
1517 unsigned int stacklen
, numlower
= 0, i
;
1518 struct ovl_entry
*oe
;
1521 lowertmp
= kstrdup(ofs
->config
.lowerdir
, GFP_KERNEL
);
1526 stacklen
= ovl_split_lowerdirs(lowertmp
);
1527 if (stacklen
> OVL_MAX_STACK
) {
1528 pr_err("too many lower directories, limit is %d\n",
1531 } else if (!ofs
->config
.upperdir
&& stacklen
== 1) {
1532 pr_err("at least 2 lowerdir are needed while upperdir nonexistent\n");
1534 } else if (!ofs
->config
.upperdir
&& ofs
->config
.nfs_export
&&
1535 ofs
->config
.redirect_follow
) {
1536 pr_warn("NFS export requires \"redirect_dir=nofollow\" on non-upper mount, falling back to nfs_export=off.\n");
1537 ofs
->config
.nfs_export
= false;
1541 stack
= kcalloc(stacklen
, sizeof(struct path
), GFP_KERNEL
);
1547 for (numlower
= 0; numlower
< stacklen
; numlower
++) {
1548 err
= ovl_lower_dir(lower
, &stack
[numlower
], ofs
,
1549 &sb
->s_stack_depth
);
1553 lower
= strchr(lower
, '\0') + 1;
1557 sb
->s_stack_depth
++;
1558 if (sb
->s_stack_depth
> FILESYSTEM_MAX_STACK_DEPTH
) {
1559 pr_err("maximum fs stacking depth exceeded\n");
1563 err
= ovl_get_layers(sb
, ofs
, stack
, numlower
);
1568 oe
= ovl_alloc_entry(numlower
);
1572 for (i
= 0; i
< numlower
; i
++) {
1573 oe
->lowerstack
[i
].dentry
= dget(stack
[i
].dentry
);
1574 oe
->lowerstack
[i
].layer
= &ofs
->layers
[i
+1];
1578 for (i
= 0; i
< numlower
; i
++)
1579 path_put(&stack
[i
]);
1591 * Check if this layer root is a descendant of:
1592 * - another layer of this overlayfs instance
1593 * - upper/work dir of any overlayfs instance
1595 static int ovl_check_layer(struct super_block
*sb
, struct ovl_fs
*ofs
,
1596 struct dentry
*dentry
, const char *name
)
1598 struct dentry
*next
= dentry
, *parent
;
1604 parent
= dget_parent(next
);
1606 /* Walk back ancestors to root (inclusive) looking for traps */
1607 while (!err
&& parent
!= next
) {
1608 if (ovl_lookup_trap_inode(sb
, parent
)) {
1610 pr_err("overlapping %s path\n", name
);
1611 } else if (ovl_is_inuse(parent
)) {
1612 err
= ovl_report_in_use(ofs
, name
);
1615 parent
= dget_parent(next
);
1625 * Check if any of the layers or work dirs overlap.
1627 static int ovl_check_overlapping_layers(struct super_block
*sb
,
1632 if (ofs
->upper_mnt
) {
1633 err
= ovl_check_layer(sb
, ofs
, ofs
->upper_mnt
->mnt_root
,
1639 * Checking workbasedir avoids hitting ovl_is_inuse(parent) of
1640 * this instance and covers overlapping work and index dirs,
1641 * unless work or index dir have been moved since created inside
1642 * workbasedir. In that case, we already have their traps in
1643 * inode cache and we will catch that case on lookup.
1645 err
= ovl_check_layer(sb
, ofs
, ofs
->workbasedir
, "workdir");
1650 for (i
= 1; i
< ofs
->numlayer
; i
++) {
1651 err
= ovl_check_layer(sb
, ofs
,
1652 ofs
->layers
[i
].mnt
->mnt_root
,
1661 static struct dentry
*ovl_get_root(struct super_block
*sb
,
1662 struct dentry
*upperdentry
,
1663 struct ovl_entry
*oe
)
1665 struct dentry
*root
;
1666 struct ovl_path
*lowerpath
= &oe
->lowerstack
[0];
1667 unsigned long ino
= d_inode(lowerpath
->dentry
)->i_ino
;
1668 int fsid
= lowerpath
->layer
->fsid
;
1669 struct ovl_inode_params oip
= {
1670 .upperdentry
= upperdentry
,
1671 .lowerpath
= lowerpath
,
1674 root
= d_make_root(ovl_new_inode(sb
, S_IFDIR
, 0));
1678 root
->d_fsdata
= oe
;
1681 /* Root inode uses upper st_ino/i_ino */
1682 ino
= d_inode(upperdentry
)->i_ino
;
1684 ovl_dentry_set_upper_alias(root
);
1685 if (ovl_is_impuredir(upperdentry
))
1686 ovl_set_flag(OVL_IMPURE
, d_inode(root
));
1689 /* Root is always merge -> can have whiteouts */
1690 ovl_set_flag(OVL_WHITEOUTS
, d_inode(root
));
1691 ovl_dentry_set_flag(OVL_E_CONNECTED
, root
);
1692 ovl_set_upperdata(d_inode(root
));
1693 ovl_inode_init(d_inode(root
), &oip
, ino
, fsid
);
1694 ovl_dentry_update_reval(root
, upperdentry
, DCACHE_OP_WEAK_REVALIDATE
);
1699 static int ovl_fill_super(struct super_block
*sb
, void *data
, int silent
)
1701 struct path upperpath
= { };
1702 struct dentry
*root_dentry
;
1703 struct ovl_entry
*oe
;
1708 sb
->s_d_op
= &ovl_dentry_operations
;
1711 ofs
= kzalloc(sizeof(struct ovl_fs
), GFP_KERNEL
);
1715 ofs
->creator_cred
= cred
= prepare_creds();
1719 ofs
->config
.index
= ovl_index_def
;
1720 ofs
->config
.nfs_export
= ovl_nfs_export_def
;
1721 ofs
->config
.xino
= ovl_xino_def();
1722 ofs
->config
.metacopy
= ovl_metacopy_def
;
1723 err
= ovl_parse_opt((char *) data
, &ofs
->config
);
1728 if (!ofs
->config
.lowerdir
) {
1730 pr_err("missing 'lowerdir'\n");
1734 sb
->s_stack_depth
= 0;
1735 sb
->s_maxbytes
= MAX_LFS_FILESIZE
;
1736 atomic_long_set(&ofs
->last_ino
, 1);
1737 /* Assume underlaying fs uses 32bit inodes unless proven otherwise */
1738 if (ofs
->config
.xino
!= OVL_XINO_OFF
) {
1739 ofs
->xino_mode
= BITS_PER_LONG
- 32;
1740 if (!ofs
->xino_mode
) {
1741 pr_warn("xino not supported on 32bit kernel, falling back to xino=off.\n");
1742 ofs
->config
.xino
= OVL_XINO_OFF
;
1746 /* alloc/destroy_inode needed for setting up traps in inode cache */
1747 sb
->s_op
= &ovl_super_operations
;
1749 if (ofs
->config
.upperdir
) {
1750 if (!ofs
->config
.workdir
) {
1751 pr_err("missing 'workdir'\n");
1755 err
= ovl_get_upper(sb
, ofs
, &upperpath
);
1759 err
= ovl_get_workdir(sb
, ofs
, &upperpath
);
1764 sb
->s_flags
|= SB_RDONLY
;
1766 sb
->s_stack_depth
= ofs
->upper_mnt
->mnt_sb
->s_stack_depth
;
1767 sb
->s_time_gran
= ofs
->upper_mnt
->mnt_sb
->s_time_gran
;
1770 oe
= ovl_get_lowerstack(sb
, ofs
);
1775 /* If the upper fs is nonexistent, we mark overlayfs r/o too */
1776 if (!ofs
->upper_mnt
)
1777 sb
->s_flags
|= SB_RDONLY
;
1779 if (!(ovl_force_readonly(ofs
)) && ofs
->config
.index
) {
1780 err
= ovl_get_indexdir(sb
, ofs
, oe
, &upperpath
);
1784 /* Force r/o mount with no index dir */
1785 if (!ofs
->indexdir
) {
1787 ofs
->workdir
= NULL
;
1788 sb
->s_flags
|= SB_RDONLY
;
1793 err
= ovl_check_overlapping_layers(sb
, ofs
);
1797 /* Show index=off in /proc/mounts for forced r/o mount */
1798 if (!ofs
->indexdir
) {
1799 ofs
->config
.index
= false;
1800 if (ofs
->upper_mnt
&& ofs
->config
.nfs_export
) {
1801 pr_warn("NFS export requires an index dir, falling back to nfs_export=off.\n");
1802 ofs
->config
.nfs_export
= false;
1806 if (ofs
->config
.metacopy
&& ofs
->config
.nfs_export
) {
1807 pr_warn("NFS export is not supported with metadata only copy up, falling back to nfs_export=off.\n");
1808 ofs
->config
.nfs_export
= false;
1811 if (ofs
->config
.nfs_export
)
1812 sb
->s_export_op
= &ovl_export_operations
;
1814 /* Never override disk quota limits or use reserved space */
1815 cap_lower(cred
->cap_effective
, CAP_SYS_RESOURCE
);
1817 sb
->s_magic
= OVERLAYFS_SUPER_MAGIC
;
1818 sb
->s_xattr
= ovl_xattr_handlers
;
1819 sb
->s_fs_info
= ofs
;
1820 sb
->s_flags
|= SB_POSIXACL
;
1823 root_dentry
= ovl_get_root(sb
, upperpath
.dentry
, oe
);
1827 mntput(upperpath
.mnt
);
1829 sb
->s_root
= root_dentry
;
1834 ovl_entry_stack_free(oe
);
1837 path_put(&upperpath
);
1843 static struct dentry
*ovl_mount(struct file_system_type
*fs_type
, int flags
,
1844 const char *dev_name
, void *raw_data
)
1846 return mount_nodev(fs_type
, flags
, raw_data
, ovl_fill_super
);
1849 static struct file_system_type ovl_fs_type
= {
1850 .owner
= THIS_MODULE
,
1853 .kill_sb
= kill_anon_super
,
1855 MODULE_ALIAS_FS("overlay");
1857 static void ovl_inode_init_once(void *foo
)
1859 struct ovl_inode
*oi
= foo
;
1861 inode_init_once(&oi
->vfs_inode
);
1864 static int __init
ovl_init(void)
1868 ovl_inode_cachep
= kmem_cache_create("ovl_inode",
1869 sizeof(struct ovl_inode
), 0,
1870 (SLAB_RECLAIM_ACCOUNT
|
1871 SLAB_MEM_SPREAD
|SLAB_ACCOUNT
),
1872 ovl_inode_init_once
);
1873 if (ovl_inode_cachep
== NULL
)
1876 err
= ovl_aio_request_cache_init();
1878 err
= register_filesystem(&ovl_fs_type
);
1882 ovl_aio_request_cache_destroy();
1884 kmem_cache_destroy(ovl_inode_cachep
);
1889 static void __exit
ovl_exit(void)
1891 unregister_filesystem(&ovl_fs_type
);
1894 * Make sure all delayed rcu free inodes are flushed before we
1898 kmem_cache_destroy(ovl_inode_cachep
);
1899 ovl_aio_request_cache_destroy();
1902 module_init(ovl_init
);
1903 module_exit(ovl_exit
);