1 // SPDX-License-Identifier: GPL-2.0-only
4 #include <linux/module.h>
5 #include <linux/namei.h>
6 #include <linux/fs_context.h>
7 #include <linux/fs_parser.h>
8 #include <linux/posix_acl_xattr.h>
9 #include <linux/seq_file.h>
10 #include <linux/xattr.h>
11 #include "overlayfs.h"
14 static bool ovl_redirect_dir_def = IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_DIR);
15 module_param_named(redirect_dir, ovl_redirect_dir_def, bool, 0644);
16 MODULE_PARM_DESC(redirect_dir,
17 "Default to on or off for the redirect_dir feature");
19 static bool ovl_redirect_always_follow =
20 IS_ENABLED(CONFIG_OVERLAY_FS_REDIRECT_ALWAYS_FOLLOW);
21 module_param_named(redirect_always_follow, ovl_redirect_always_follow,
23 MODULE_PARM_DESC(redirect_always_follow,
24 "Follow redirects even if redirect_dir feature is turned off");
26 static bool ovl_xino_auto_def = IS_ENABLED(CONFIG_OVERLAY_FS_XINO_AUTO);
27 module_param_named(xino_auto, ovl_xino_auto_def, bool, 0644);
28 MODULE_PARM_DESC(xino_auto,
29 "Auto enable xino feature");
31 static bool ovl_index_def = IS_ENABLED(CONFIG_OVERLAY_FS_INDEX);
32 module_param_named(index, ovl_index_def, bool, 0644);
33 MODULE_PARM_DESC(index,
34 "Default to on or off for the inodes index feature");
36 static bool ovl_nfs_export_def = IS_ENABLED(CONFIG_OVERLAY_FS_NFS_EXPORT);
37 module_param_named(nfs_export, ovl_nfs_export_def, bool, 0644);
38 MODULE_PARM_DESC(nfs_export,
39 "Default to on or off for the NFS export feature");
41 static bool ovl_metacopy_def = IS_ENABLED(CONFIG_OVERLAY_FS_METACOPY);
42 module_param_named(metacopy, ovl_metacopy_def, bool, 0644);
43 MODULE_PARM_DESC(metacopy,
44 "Default to on or off for the metadata only copy up feature");
52 Opt_default_permissions,
64 static const struct constant_table ovl_parameter_bool[] = {
70 static const struct constant_table ovl_parameter_uuid[] = {
71 { "off", OVL_UUID_OFF },
72 { "null", OVL_UUID_NULL },
73 { "auto", OVL_UUID_AUTO },
74 { "on", OVL_UUID_ON },
78 static const char *ovl_uuid_mode(struct ovl_config *config)
80 return ovl_parameter_uuid[config->uuid].name;
83 static int ovl_uuid_def(void)
88 static const struct constant_table ovl_parameter_xino[] = {
89 { "off", OVL_XINO_OFF },
90 { "auto", OVL_XINO_AUTO },
91 { "on", OVL_XINO_ON },
95 const char *ovl_xino_mode(struct ovl_config *config)
97 return ovl_parameter_xino[config->xino].name;
100 static int ovl_xino_def(void)
102 return ovl_xino_auto_def ? OVL_XINO_AUTO : OVL_XINO_OFF;
105 const struct constant_table ovl_parameter_redirect_dir[] = {
106 { "off", OVL_REDIRECT_OFF },
107 { "follow", OVL_REDIRECT_FOLLOW },
108 { "nofollow", OVL_REDIRECT_NOFOLLOW },
109 { "on", OVL_REDIRECT_ON },
113 static const char *ovl_redirect_mode(struct ovl_config *config)
115 return ovl_parameter_redirect_dir[config->redirect_mode].name;
118 static int ovl_redirect_mode_def(void)
120 return ovl_redirect_dir_def ? OVL_REDIRECT_ON :
121 ovl_redirect_always_follow ? OVL_REDIRECT_FOLLOW :
122 OVL_REDIRECT_NOFOLLOW;
125 static const struct constant_table ovl_parameter_verity[] = {
126 { "off", OVL_VERITY_OFF },
127 { "on", OVL_VERITY_ON },
128 { "require", OVL_VERITY_REQUIRE },
132 static const char *ovl_verity_mode(struct ovl_config *config)
134 return ovl_parameter_verity[config->verity_mode].name;
137 static int ovl_verity_mode_def(void)
139 return OVL_VERITY_OFF;
142 const struct fs_parameter_spec ovl_parameter_spec[] = {
143 fsparam_string_empty("lowerdir", Opt_lowerdir),
144 fsparam_string("lowerdir+", Opt_lowerdir_add),
145 fsparam_string("datadir+", Opt_datadir_add),
146 fsparam_string("upperdir", Opt_upperdir),
147 fsparam_string("workdir", Opt_workdir),
148 fsparam_flag("default_permissions", Opt_default_permissions),
149 fsparam_enum("redirect_dir", Opt_redirect_dir, ovl_parameter_redirect_dir),
150 fsparam_enum("index", Opt_index, ovl_parameter_bool),
151 fsparam_enum("uuid", Opt_uuid, ovl_parameter_uuid),
152 fsparam_enum("nfs_export", Opt_nfs_export, ovl_parameter_bool),
153 fsparam_flag("userxattr", Opt_userxattr),
154 fsparam_enum("xino", Opt_xino, ovl_parameter_xino),
155 fsparam_enum("metacopy", Opt_metacopy, ovl_parameter_bool),
156 fsparam_enum("verity", Opt_verity, ovl_parameter_verity),
157 fsparam_flag("volatile", Opt_volatile),
161 static char *ovl_next_opt(char **s)
169 for (p = sbegin; *p; p++) {
174 } else if (*p == ',') {
184 static int ovl_parse_monolithic(struct fs_context *fc, void *data)
186 return vfs_parse_monolithic_sep(fc, data, ovl_next_opt);
189 static ssize_t ovl_parse_param_split_lowerdirs(char *str)
191 ssize_t nr_layers = 1, nr_colons = 0;
194 for (s = d = str;; s++, d++) {
196 /* keep esc chars in split lowerdir */
198 } else if (*s == ':') {
199 bool next_colon = (*(s + 1) == ':');
202 if (nr_colons == 2 && next_colon) {
203 pr_err("only single ':' or double '::' sequences of unescaped colons in lowerdir mount option allowed.\n");
206 /* count layers, not colons */
216 /* trailing colons */
218 pr_err("unescaped trailing colons in lowerdir mount option.\n");
229 static int ovl_mount_dir_noesc(const char *name, struct path *path)
234 pr_err("empty lowerdir\n");
237 err = kern_path(name, LOOKUP_FOLLOW, path);
239 pr_err("failed to resolve '%s': %i\n", name, err);
248 static void ovl_unescape(char *s)
261 static int ovl_mount_dir(const char *name, struct path *path)
264 char *tmp = kstrdup(name, GFP_KERNEL);
268 err = ovl_mount_dir_noesc(tmp, path);
274 static int ovl_mount_dir_check(struct fs_context *fc, const struct path *path,
275 enum ovl_opt layer, const char *name, bool upper)
277 struct ovl_fs_context *ctx = fc->fs_private;
279 if (!d_is_dir(path->dentry))
280 return invalfc(fc, "%s is not a directory", name);
283 * Root dentries of case-insensitive capable filesystems might
284 * not have the dentry operations set, but still be incompatible
285 * with overlayfs. Check explicitly to prevent post-mount
288 if (sb_has_encoding(path->mnt->mnt_sb))
289 return invalfc(fc, "case-insensitive capable filesystem on %s not supported", name);
291 if (ovl_dentry_weird(path->dentry))
292 return invalfc(fc, "filesystem on %s not supported", name);
295 * Check whether upper path is read-only here to report failures
296 * early. Don't forget to recheck when the superblock is created
297 * as the mount attributes could change.
300 if (path->dentry->d_flags & DCACHE_OP_REAL)
301 return invalfc(fc, "filesystem on %s not supported as upperdir", name);
302 if (__mnt_is_readonly(path->mnt))
303 return invalfc(fc, "filesystem on %s is read-only", name);
305 if (ctx->lowerdir_all && layer != Opt_lowerdir)
306 return invalfc(fc, "lowerdir+ and datadir+ cannot follow lowerdir");
307 if (ctx->nr_data && layer == Opt_lowerdir_add)
308 return invalfc(fc, "regular lower layers cannot follow data layers");
309 if (ctx->nr == OVL_MAX_STACK)
310 return invalfc(fc, "too many lower directories, limit is %d",
316 static int ovl_ctx_realloc_lower(struct fs_context *fc)
318 struct ovl_fs_context *ctx = fc->fs_private;
319 struct ovl_fs_context_layer *l;
322 if (ctx->nr < ctx->capacity)
325 nr = min_t(size_t, max(4096 / sizeof(*l), ctx->capacity * 2),
327 l = krealloc_array(ctx->lower, nr, sizeof(*l), GFP_KERNEL_ACCOUNT);
336 static void ovl_add_layer(struct fs_context *fc, enum ovl_opt layer,
337 struct path *path, char **pname)
339 struct ovl_fs *ofs = fc->s_fs_info;
340 struct ovl_config *config = &ofs->config;
341 struct ovl_fs_context *ctx = fc->fs_private;
342 struct ovl_fs_context_layer *l;
346 swap(config->workdir, *pname);
347 swap(ctx->work, *path);
350 swap(config->upperdir, *pname);
351 swap(ctx->upper, *path);
353 case Opt_datadir_add:
356 case Opt_lowerdir_add:
357 WARN_ON(ctx->nr >= ctx->capacity);
358 l = &ctx->lower[ctx->nr++];
359 memset(l, 0, sizeof(*l));
360 swap(l->name, *pname);
361 swap(l->path, *path);
368 static int ovl_parse_layer(struct fs_context *fc, struct fs_parameter *param,
371 char *name = kstrdup(param->string, GFP_KERNEL);
372 bool upper = (layer == Opt_upperdir || layer == Opt_workdir);
380 err = ovl_mount_dir(name, &path);
382 err = ovl_mount_dir_noesc(name, &path);
386 err = ovl_mount_dir_check(fc, &path, layer, name, upper);
391 err = ovl_ctx_realloc_lower(fc);
396 /* Store the user provided path string in ctx to show in mountinfo */
397 ovl_add_layer(fc, layer, &path, &name);
406 static void ovl_reset_lowerdirs(struct ovl_fs_context *ctx)
408 struct ovl_fs_context_layer *l = ctx->lower;
410 // Reset old user provided lowerdir string
411 kfree(ctx->lowerdir_all);
412 ctx->lowerdir_all = NULL;
414 for (size_t nr = 0; nr < ctx->nr; nr++, l++) {
424 * Parse lowerdir= mount option:
426 * e.g.: lowerdir=/lower1:/lower2:/lower3::/data1::/data2
427 * Set "/lower1", "/lower2", and "/lower3" as lower layers and
428 * "/data1" and "/data2" as data lower layers. Any existing lower
429 * layers are replaced.
431 static int ovl_parse_param_lowerdir(const char *name, struct fs_context *fc)
434 struct ovl_fs_context *ctx = fc->fs_private;
435 struct ovl_fs_context_layer *l;
436 char *dup = NULL, *iter;
437 ssize_t nr_lower, nr;
438 bool data_layer = false;
441 * Ensure we're backwards compatible with mount(2)
442 * by allowing relative paths.
445 /* drop all existing lower layers */
446 ovl_reset_lowerdirs(ctx);
452 pr_err("cannot append lower layer");
456 // Store user provided lowerdir string to show in mount options
457 ctx->lowerdir_all = kstrdup(name, GFP_KERNEL);
458 if (!ctx->lowerdir_all)
461 dup = kstrdup(name, GFP_KERNEL);
466 nr_lower = ovl_parse_param_split_lowerdirs(dup);
470 if (nr_lower > OVL_MAX_STACK) {
471 pr_err("too many lower directories, limit is %d\n", OVL_MAX_STACK);
475 if (nr_lower > ctx->capacity) {
477 l = krealloc_array(ctx->lower, nr_lower, sizeof(*ctx->lower),
483 ctx->capacity = nr_lower;
488 for (nr = 0; nr < nr_lower; nr++, l++) {
490 memset(l, 0, sizeof(*l));
492 err = ovl_mount_dir(iter, &l->path);
496 err = ovl_mount_dir_check(fc, &l->path, Opt_lowerdir, iter, false);
501 l->name = kstrdup(iter, GFP_KERNEL_ACCOUNT);
508 /* Calling strchr() again would overrun. */
509 if (ctx->nr == nr_lower)
513 iter = strchr(iter, '\0') + 1;
516 * This is a regular layer so we require that
517 * there are no data layers.
519 if (ctx->nr_data > 0) {
520 pr_err("regular lower layers cannot follow data lower layers");
528 /* This is a data lower layer. */
536 ovl_reset_lowerdirs(ctx);
541 /* Intentionally don't realloc to a smaller size. */
545 static int ovl_parse_param(struct fs_context *fc, struct fs_parameter *param)
548 struct fs_parse_result result;
549 struct ovl_fs *ofs = fc->s_fs_info;
550 struct ovl_config *config = &ofs->config;
551 struct ovl_fs_context *ctx = fc->fs_private;
554 if (fc->purpose == FS_CONTEXT_FOR_RECONFIGURE) {
556 * On remount overlayfs has always ignored all mount
557 * options no matter if malformed or not so for
558 * backwards compatibility we do the same here.
564 * Give us the freedom to allow changing mount options
565 * with the new mount api in the future. So instead of
566 * silently ignoring everything we report a proper
567 * error. This is only visible for users of the new
570 return invalfc(fc, "No changes allowed in reconfigure");
573 opt = fs_parse(fc, ovl_parameter_spec, param, &result);
579 err = ovl_parse_param_lowerdir(param->string, fc);
581 case Opt_lowerdir_add:
582 case Opt_datadir_add:
585 err = ovl_parse_layer(fc, param, opt);
587 case Opt_default_permissions:
588 config->default_permissions = true;
590 case Opt_redirect_dir:
591 config->redirect_mode = result.uint_32;
592 if (config->redirect_mode == OVL_REDIRECT_OFF) {
593 config->redirect_mode = ovl_redirect_always_follow ?
594 OVL_REDIRECT_FOLLOW :
595 OVL_REDIRECT_NOFOLLOW;
597 ctx->set.redirect = true;
600 config->index = result.uint_32;
601 ctx->set.index = true;
604 config->uuid = result.uint_32;
607 config->nfs_export = result.uint_32;
608 ctx->set.nfs_export = true;
611 config->xino = result.uint_32;
614 config->metacopy = result.uint_32;
615 ctx->set.metacopy = true;
618 config->verity_mode = result.uint_32;
621 config->ovl_volatile = true;
624 config->userxattr = true;
627 pr_err("unrecognized mount option \"%s\" or missing value\n",
635 static int ovl_get_tree(struct fs_context *fc)
637 return get_tree_nodev(fc, ovl_fill_super);
640 static inline void ovl_fs_context_free(struct ovl_fs_context *ctx)
642 ovl_reset_lowerdirs(ctx);
643 path_put(&ctx->upper);
644 path_put(&ctx->work);
649 static void ovl_free(struct fs_context *fc)
651 struct ovl_fs *ofs = fc->s_fs_info;
652 struct ovl_fs_context *ctx = fc->fs_private;
655 * ofs is stored in the fs_context when it is initialized.
656 * ofs is transferred to the superblock on a successful mount,
657 * but if an error occurs before the transfer we have to free
664 ovl_fs_context_free(ctx);
667 static int ovl_reconfigure(struct fs_context *fc)
669 struct super_block *sb = fc->root->d_sb;
670 struct ovl_fs *ofs = OVL_FS(sb);
671 struct super_block *upper_sb;
674 if (!(fc->sb_flags & SB_RDONLY) && ovl_force_readonly(ofs))
677 if (fc->sb_flags & SB_RDONLY && !sb_rdonly(sb)) {
678 upper_sb = ovl_upper_mnt(ofs)->mnt_sb;
679 if (ovl_should_sync(ofs)) {
680 down_read(&upper_sb->s_umount);
681 ret = sync_filesystem(upper_sb);
682 up_read(&upper_sb->s_umount);
689 static const struct fs_context_operations ovl_context_ops = {
690 .parse_monolithic = ovl_parse_monolithic,
691 .parse_param = ovl_parse_param,
692 .get_tree = ovl_get_tree,
693 .reconfigure = ovl_reconfigure,
698 * This is called during fsopen() and will record the user namespace of
699 * the caller in fc->user_ns since we've raised FS_USERNS_MOUNT. We'll
700 * need it when we actually create the superblock to verify that the
701 * process creating the superblock is in the same user namespace as
702 * process that called fsopen().
704 int ovl_init_fs_context(struct fs_context *fc)
706 struct ovl_fs_context *ctx;
709 ctx = kzalloc(sizeof(*ctx), GFP_KERNEL_ACCOUNT);
714 * By default we allocate for three lower layers. It's likely
715 * that it'll cover most users.
717 ctx->lower = kmalloc_array(3, sizeof(*ctx->lower), GFP_KERNEL_ACCOUNT);
722 ofs = kzalloc(sizeof(struct ovl_fs), GFP_KERNEL);
726 ofs->config.redirect_mode = ovl_redirect_mode_def();
727 ofs->config.index = ovl_index_def;
728 ofs->config.uuid = ovl_uuid_def();
729 ofs->config.nfs_export = ovl_nfs_export_def;
730 ofs->config.xino = ovl_xino_def();
731 ofs->config.metacopy = ovl_metacopy_def;
734 fc->fs_private = ctx;
735 fc->ops = &ovl_context_ops;
739 ovl_fs_context_free(ctx);
744 void ovl_free_fs(struct ovl_fs *ofs)
746 struct vfsmount **mounts;
749 iput(ofs->workbasedir_trap);
750 iput(ofs->workdir_trap);
753 if (ofs->workdir_locked)
754 ovl_inuse_unlock(ofs->workbasedir);
755 dput(ofs->workbasedir);
756 if (ofs->upperdir_locked)
757 ovl_inuse_unlock(ovl_upper_mnt(ofs)->mnt_root);
759 /* Reuse ofs->config.lowerdirs as a vfsmount array before freeing it */
760 mounts = (struct vfsmount **) ofs->config.lowerdirs;
761 for (i = 0; i < ofs->numlayer; i++) {
762 iput(ofs->layers[i].trap);
763 kfree(ofs->config.lowerdirs[i]);
764 mounts[i] = ofs->layers[i].mnt;
766 kern_unmount_array(mounts, ofs->numlayer);
768 for (i = 0; i < ofs->numfs; i++)
769 free_anon_bdev(ofs->fs[i].pseudo_dev);
772 kfree(ofs->config.lowerdirs);
773 kfree(ofs->config.upperdir);
774 kfree(ofs->config.workdir);
775 if (ofs->creator_cred)
776 put_cred(ofs->creator_cred);
780 int ovl_fs_params_verify(const struct ovl_fs_context *ctx,
781 struct ovl_config *config)
783 struct ovl_opt_set set = ctx->set;
785 if (ctx->nr_data > 0 && !config->metacopy) {
786 pr_err("lower data-only dirs require metacopy support.\n");
790 /* Workdir/index are useless in non-upper mount */
791 if (!config->upperdir) {
792 if (config->workdir) {
793 pr_info("option \"workdir=%s\" is useless in a non-upper mount, ignore\n",
795 kfree(config->workdir);
796 config->workdir = NULL;
798 if (config->index && set.index) {
799 pr_info("option \"index=on\" is useless in a non-upper mount, ignore\n");
802 config->index = false;
805 if (!config->upperdir && config->ovl_volatile) {
806 pr_info("option \"volatile\" is meaningless in a non-upper mount, ignoring it.\n");
807 config->ovl_volatile = false;
810 if (!config->upperdir && config->uuid == OVL_UUID_ON) {
811 pr_info("option \"uuid=on\" requires an upper fs, falling back to uuid=null.\n");
812 config->uuid = OVL_UUID_NULL;
815 /* Resolve verity -> metacopy dependency */
816 if (config->verity_mode && !config->metacopy) {
817 /* Don't allow explicit specified conflicting combinations */
819 pr_err("conflicting options: metacopy=off,verity=%s\n",
820 ovl_verity_mode(config));
823 /* Otherwise automatically enable metacopy. */
824 config->metacopy = true;
828 * This is to make the logic below simpler. It doesn't make any other
829 * difference, since redirect_dir=on is only used for upper.
831 if (!config->upperdir && config->redirect_mode == OVL_REDIRECT_FOLLOW)
832 config->redirect_mode = OVL_REDIRECT_ON;
834 /* Resolve verity -> metacopy -> redirect_dir dependency */
835 if (config->metacopy && config->redirect_mode != OVL_REDIRECT_ON) {
836 if (set.metacopy && set.redirect) {
837 pr_err("conflicting options: metacopy=on,redirect_dir=%s\n",
838 ovl_redirect_mode(config));
841 if (config->verity_mode && set.redirect) {
842 pr_err("conflicting options: verity=%s,redirect_dir=%s\n",
843 ovl_verity_mode(config), ovl_redirect_mode(config));
848 * There was an explicit redirect_dir=... that resulted
851 pr_info("disabling metacopy due to redirect_dir=%s\n",
852 ovl_redirect_mode(config));
853 config->metacopy = false;
855 /* Automatically enable redirect otherwise. */
856 config->redirect_mode = OVL_REDIRECT_ON;
860 /* Resolve nfs_export -> index dependency */
861 if (config->nfs_export && !config->index) {
862 if (!config->upperdir &&
863 config->redirect_mode != OVL_REDIRECT_NOFOLLOW) {
864 pr_info("NFS export requires \"redirect_dir=nofollow\" on non-upper mount, falling back to nfs_export=off.\n");
865 config->nfs_export = false;
866 } else if (set.nfs_export && set.index) {
867 pr_err("conflicting options: nfs_export=on,index=off\n");
869 } else if (set.index) {
871 * There was an explicit index=off that resulted
874 pr_info("disabling nfs_export due to index=off\n");
875 config->nfs_export = false;
877 /* Automatically enable index otherwise. */
878 config->index = true;
882 /* Resolve nfs_export -> !metacopy && !verity dependency */
883 if (config->nfs_export && config->metacopy) {
884 if (set.nfs_export && set.metacopy) {
885 pr_err("conflicting options: nfs_export=on,metacopy=on\n");
890 * There was an explicit metacopy=on that resulted
893 pr_info("disabling nfs_export due to metacopy=on\n");
894 config->nfs_export = false;
895 } else if (config->verity_mode) {
897 * There was an explicit verity=.. that resulted
900 pr_info("disabling nfs_export due to verity=%s\n",
901 ovl_verity_mode(config));
902 config->nfs_export = false;
905 * There was an explicit nfs_export=on that resulted
908 pr_info("disabling metacopy due to nfs_export=on\n");
909 config->metacopy = false;
914 /* Resolve userxattr -> !redirect && !metacopy && !verity dependency */
915 if (config->userxattr) {
917 config->redirect_mode != OVL_REDIRECT_NOFOLLOW) {
918 pr_err("conflicting options: userxattr,redirect_dir=%s\n",
919 ovl_redirect_mode(config));
922 if (config->metacopy && set.metacopy) {
923 pr_err("conflicting options: userxattr,metacopy=on\n");
926 if (config->verity_mode) {
927 pr_err("conflicting options: userxattr,verity=%s\n",
928 ovl_verity_mode(config));
932 * Silently disable default setting of redirect and metacopy.
933 * This shall be the default in the future as well: these
934 * options must be explicitly enabled if used together with
937 config->redirect_mode = OVL_REDIRECT_NOFOLLOW;
938 config->metacopy = false;
946 * @m: the seq_file handle
947 * @dentry: The dentry to query
949 * Prints the mount options for a given superblock.
950 * Returns zero; does not fail.
952 int ovl_show_options(struct seq_file *m, struct dentry *dentry)
954 struct super_block *sb = dentry->d_sb;
955 struct ovl_fs *ofs = OVL_FS(sb);
956 size_t nr, nr_merged_lower, nr_lower = 0;
957 char **lowerdirs = ofs->config.lowerdirs;
960 * lowerdirs[0] holds the colon separated list that user provided
961 * with lowerdir mount option.
962 * lowerdirs[1..numlayer] hold the lowerdir paths that were added
963 * using the lowerdir+ and datadir+ mount options.
964 * For now, we do not allow mixing the legacy lowerdir mount option
965 * with the new lowerdir+ and datadir+ mount options.
968 seq_show_option(m, "lowerdir", lowerdirs[0]);
970 nr_lower = ofs->numlayer;
971 nr_merged_lower = nr_lower - ofs->numdatalayer;
973 for (nr = 1; nr < nr_lower; nr++) {
974 if (nr < nr_merged_lower)
975 seq_show_option(m, "lowerdir+", lowerdirs[nr]);
977 seq_show_option(m, "datadir+", lowerdirs[nr]);
979 if (ofs->config.upperdir) {
980 seq_show_option(m, "upperdir", ofs->config.upperdir);
981 seq_show_option(m, "workdir", ofs->config.workdir);
983 if (ofs->config.default_permissions)
984 seq_puts(m, ",default_permissions");
985 if (ofs->config.redirect_mode != ovl_redirect_mode_def())
986 seq_printf(m, ",redirect_dir=%s",
987 ovl_redirect_mode(&ofs->config));
988 if (ofs->config.index != ovl_index_def)
989 seq_printf(m, ",index=%s", ofs->config.index ? "on" : "off");
990 if (ofs->config.uuid != ovl_uuid_def())
991 seq_printf(m, ",uuid=%s", ovl_uuid_mode(&ofs->config));
992 if (ofs->config.nfs_export != ovl_nfs_export_def)
993 seq_printf(m, ",nfs_export=%s", ofs->config.nfs_export ?
995 if (ofs->config.xino != ovl_xino_def() && !ovl_same_fs(ofs))
996 seq_printf(m, ",xino=%s", ovl_xino_mode(&ofs->config));
997 if (ofs->config.metacopy != ovl_metacopy_def)
998 seq_printf(m, ",metacopy=%s",
999 ofs->config.metacopy ? "on" : "off");
1000 if (ofs->config.ovl_volatile)
1001 seq_puts(m, ",volatile");
1002 if (ofs->config.userxattr)
1003 seq_puts(m, ",userxattr");
1004 if (ofs->config.verity_mode != ovl_verity_mode_def())
1005 seq_printf(m, ",verity=%s",
1006 ovl_verity_mode(&ofs->config));