From: Vivek Goyal <vgoyal@redhat.com>
To: Amir Goldstein <amir73il@gmail.com>
Cc: Miklos Szeredi <miklos@szeredi.hu>,
overlayfs <linux-unionfs@vger.kernel.org>
Subject: Re: [PATCH v2] ovl: return error on mount if metacopy cannot be enabled
Date: Wed, 31 Oct 2018 15:23:41 -0400 [thread overview]
Message-ID: <20181031192341.GA3093@redhat.com> (raw)
In-Reply-To: <CAOQ4uxgLWHHK3RLE_zKXkM_S5Lfc7Hn2rpKvOvJda5RtE97C3Q@mail.gmail.com>
On Wed, Oct 31, 2018 at 08:37:04PM +0200, Amir Goldstein wrote:
> On Wed, Oct 31, 2018 at 6:39 PM Vivek Goyal <vgoyal@redhat.com> wrote:
> >
> ...
> > >
> > > Yes, but keep in mind that strict=off will NOT be applied to stable
> > > v4.19.y *unless* a real user really reports a bug, a-priori, we assume
> > > that implicit metacopy=on => redirect_dir=on,strict=on is sufficient
> > > to solve the bug, so it is sufficient for stable.
> >
> > Did not understand this. So strict=on will be in stable or not? I mean,
> > all the behavior strict=on enforces will be in 4.19 or not.
> >
> > If it is not, then it will become backward compatibility issue by the
> > time 4.20 releases.
> >
> > If strict=on is not part of 4.19 stable, then you can't switch it
> > on in 4.20.
> >
> > What am I missing.
> >
>
> I guess I haven't thought this through. Let's see:
>
> 1.a. In 4.19, specifying metacopy=on will result in metacopy=on
> OR -EINVAL (a.k.a. "the bug fix") [*]
>
> 1.b. In 4.19, user will not be able to mount with metacopy=on with
> an upper fs that does not support xattr/d_type/RENAME_WHITEOUT.
Ok, so metacopy will trigger strict=on internally. And that in-turn
will trigger all the checks on upper fs (xattr/d_type/RENAME_WHITEOUT).
>
> 1.d. In 4.19, mount will fail if given mount option metacopy=on and
> nfs_export is enabled (even if enabled by default) or if redirect_dir
> is disabled (even if disabled by default).
Ok, so no automatic enable/disable of redirect_dir/nfs_export options.
>
> 1.d. In 4.19, mount will fail if given mount option metacopy=on,
> index is enabled (even if enabled by default) and underlying fs does
> not support file handles.
Ok, so index might be enabled by default but we will not disable it
because metacopy=on has triggered strict behavior.
>
> [*] I intentionally reduced the scope of the bug fix to not infer
> redirect_dir=on and the like, to keep the stable fix small and
> stay away from the discussion about conflicting explicit mount options.
> Kconfig already has the correct inter dependencies between
> metacopy, redirect_dir and nfs_export. mount options can implement
> those inter dependencies in 4.20 to reduce the cases of mount failure.
I think that's reasonable. Automatically enabling (redirect_dir) and
disabling (nfs_export) is another level of complexity. So not allowing
it in 4.19 and doing something more smart in 4.20 makes sense.
IOW, in 4.19 you are not introducing user visible option strict=on/off
but internally implementing it which will be triggered by metacopy=on.
That should work as long as we make sure anything existing configuration
which needs to be blocked behind strict, is properly done and nothing
is missed.
>
> 2.a. In 4.20, user will be able to configure strict=on by default
> to always enforce xattr and RENAME_WHITEOUT support on upper fs
>
> 2.b. In 4.20, user will be able to use strict=off to mount metacopy=on
> without RENAME_WHITEOUT/d_type requirements on upper fs
>
> 2.c. In 4.20, metacopy=on will set redirect_dir=on and nfs_export=off
> unless otherwise specified explicitly by user, in which case mount will fail.
>
> An alternative to 2.c. is what Miklos proposed - conflicting options are
> allowed - last option among conflicting options is the effective one.
Ok, so 4.20 will be more about creating user visible strict=on/off and
auto enable/disable of redirect_dir/nfs_export features.
>
> ...
> > >
> > > + /* We must honor user explicit request to enable metacopy */
> > > + if (config->metacopy && !ovl_metacopy_def)
> > > + config->strict = true;
> > > +
> >
> > So if a user loads module with metacopy=on and also specifies metacopy=on
> > mount option, then strict will not be enforced?
> >
>
> Mmm, right. I guess the previous version I posted was better:
>
> @@ -548,6 +586,7 @@ static int ovl_parse_opt(char *opt, struct
> ovl_config *config)
>
> case OPT_METACOPY_ON:
> config->metacopy = true;
> + config->strict = true;
> break;
>
> ---
>
> I was trying to avoid having to do:
>
> @@@ -524,6 -519,6 +560,8 @@@ static int ovl_parse_opt(char *opt, str
> continue;
>
> token = match_token(p, ovl_tokens, args);
> + if (token >= 0 && token < OPT_ERR)
> + config->user_opts |= 1UL << token;
> switch (token) {
> case OPT_UPPERDIR:
> ---
>
> At the moment, the only way I see to avoid it is by adopting Miklos'
> concept of last option is effective one.
I think "last option is the effective one" makes sense to me. It will
override all the previous instances of same option.
>
> Seeing that it is getting late, I will try to post patch(es) for my 4.19
> stable proposal and the 4.20 strict=on config patch.
>
> I'll probably end up leaving the redirect_dir=on logic for you to
> handle. It's up to you if you want to promote it as stable patch as
> well - I don't see the point, because it is ok for something that didn't
> work in 4.19 (redirect_dir_def=off,metacopy=on) to start working in 4.20.
> and users of metacopy can always "work around" this behavior from
> userspace by explicitly providing redirect_dir=on,metacopy=on.
I agree that lets get basic stuff in 4.19 stable. (Make sure anything
which needs to be blocked behind strict=on, is taken care of).
All the auto enabling/disabling of dependent options can be taken care
of in 4.20.
Thanks
Vivek
>
> Thanks,
> Amir.
next prev parent reply other threads:[~2018-10-31 19:23 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-10-31 11:10 [PATCH v2] ovl: return error on mount if metacopy cannot be enabled Amir Goldstein
2018-10-31 11:48 ` Miklos Szeredi
2018-10-31 12:19 ` Miklos Szeredi
2018-10-31 12:26 ` Amir Goldstein
2018-10-31 12:35 ` Miklos Szeredi
2018-10-31 12:37 ` Miklos Szeredi
2018-10-31 13:42 ` Amir Goldstein
2018-10-31 14:05 ` Vivek Goyal
2018-10-31 13:29 ` Amir Goldstein
2018-10-31 13:47 ` Vivek Goyal
2018-10-31 14:05 ` Amir Goldstein
2018-10-31 14:17 ` Vivek Goyal
2018-10-31 15:31 ` Amir Goldstein
2018-10-31 15:39 ` Vivek Goyal
2018-10-31 16:04 ` Amir Goldstein
2018-10-31 16:39 ` Vivek Goyal
2018-10-31 18:37 ` Amir Goldstein
2018-10-31 19:23 ` Vivek Goyal [this message]
2018-10-31 19:56 ` Vivek Goyal
2018-10-31 20:24 ` Amir Goldstein
2018-10-31 21:24 ` Vivek Goyal
2018-10-31 22:16 ` Amir Goldstein
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20181031192341.GA3093@redhat.com \
--to=vgoyal@redhat.com \
--cc=amir73il@gmail.com \
--cc=linux-unionfs@vger.kernel.org \
--cc=miklos@szeredi.hu \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox