From: Dmitry V. Levin <ldv@altlinux.org>
To: ltp@lists.linux.it
Subject: [LTP] [bug?] clone(CLONE_IO) failing after kernel commit commit ef2c41cf38a7
Date: Tue, 5 May 2020 14:49:49 +0300 [thread overview]
Message-ID: <20200505114948.GC30017@altlinux.org> (raw)
In-Reply-To: <20200505114332.tj5dvfj4olv27j32@wittgenstein>
On Tue, May 05, 2020 at 01:43:32PM +0200, Christian Brauner wrote:
> On Tue, May 05, 2020 at 02:35:14PM +0300, Dmitry V. Levin wrote:
> > On Tue, May 05, 2020 at 12:21:54PM +0200, Christian Brauner wrote:
> > > On Tue, May 05, 2020 at 11:58:13AM +0200, Christian Brauner wrote:
> > > > On Tue, May 05, 2020 at 11:36:36AM +0200, Florian Weimer wrote:
> > > > > * Christian Brauner:
> > > > > >> Have any flags been added recently?
> > > > > >
> > > > > > /* Flags for the clone3() syscall. */
> > > > > > #define CLONE_CLEAR_SIGHAND 0x100000000ULL /* Clear any signal handler and reset to SIG_DFL. */
> > > > > > #define CLONE_INTO_CGROUP 0x200000000ULL /* Clone into a specific cgroup given the right permissions. */
> > > > >
> > > > > Are those flags expected to be compatible with the legacy clone
> > > > > interface on 64-bit architectures?
> > > >
> > > > No, they are clone3() only. clone() is deprecated wrt to new features.
> > > >
> > > > >
> > > > > >> > (Note, that CLONE_LEGACY_FLAGS is already defined as
> > > > > >> > #define CLONE_LEGACY_FLAGS 0xffffffffULL
> > > > > >> > and used in clone3().)
> > > > > >> >
> > > > > >> > So the better option might be to do what you suggested, Florian:
> > > > > >> > if (clone_flags & ~CLONE_LEGACY_FLAGS)
> > > > > >> > clone_flags = CLONE_LEGACY_FLAGS?
> > > > > >> > and move on?
> > > > > >>
> > > > > >> Not sure what you are suggesting here. Do you mean an unconditional
> > > > > >> masking of excess bits?
> > > > > >>
> > > > > >> clone_flags &= CLONE_LEGACY_FLAGS;
> > > > > >>
> > > > > >> I think I would prefer this:
> > > > > >>
> > > > > >> /* Userspace may have passed a sign-extended int value. */
> > > > > >> if (clone_flags != (int) clone_flags) /*
> > > > > >> return -EINVAL;
> > > > > >> clone_flags = (unsigned) clone_flags;
> > > > > >
> > > > > > My worry is that this will cause regressions because clone() has never
> > > > > > failed on invalid flag values. I was looking for a way to not have this
> > > > > > problem. But given what you say below this change might be ok/worth
> > > > > > risking?
> > > > >
> > > > > I was under the impression that current kernels perform such a check,
> > > > > causing the problem with sign extension.
> > > >
> > > > No, it doesn't, it never did. It only does it for clone3(). Legacy
> > > > clone() _never_ reported an error no matter if you passed garbage flags
> > > > or not. That's why we can't re-use clone() flags that have essentially
> > > > been removed in kernel version before I could even program. :) Unless
> > > > I'm misunderstanding what check you're referring to.
> > > >
> > > > If I understood the original mail correctly, then the issue is caused by
> > > > an interaction with sign extension and a the new flag value
> > > > CLONE_INTO_CGROUP being defined.
> > > > So from what I gather from Jan's initial mail is that when clone() is
> > > > called on ppc64le with the CLONE_IO|SIGCHLD flag:
> > > > clone(do_child, stack+1024*1024, CLONE_IO|SIGCHLD, NULL, NULL, NULL, NULL);
> > > > that the sign extension causes bits to be set that raise the
> > > > CLONE_INTO_CGROUP flag. And since the do_fork() codepath is the same for
> > > > legacy clone() and clone3() the kernel will think that someone requested
> > > > CLONE_INTO_CGROUP but hasn't passed a valid fd to a cgroup. If that is
> > > > the only issue here then couldn't we just do:
> > > >
> > > > clone_flags &= ~CLONE3_ONLY_FLAGS?
> > > >
> > > > and move on, i.e. all future clone3() flags we'll just remove since we
> > > > can assume that they have been accidently set. Even if they have been
> > > > intentionally set we can just ignore them since that's in line with
> > > > legacy clone()'s (questionable) tradition of ignoring unknown flags.
> > > > Thoughts? Or am I missing some subtlety here?
> > >
> > > So essentially:
> > >
> > > diff --git a/kernel/fork.c b/kernel/fork.c
> > > index 8c700f881d92..e192089f133e 100644
> > > --- a/kernel/fork.c
> > > +++ b/kernel/fork.c
> > > @@ -2569,12 +2569,15 @@ SYSCALL_DEFINE5(clone, unsigned long, clone_flags, unsigned long, newsp,
> > > unsigned long, tls)
> > > #endif
> > > {
> > > + /* Ignore the upper 32 bits. */
> > > + unsigned int flags = (clone_flags & 0xfffffff);
> >
> > Not enough f's. What about
> > unsigned int flags = (unsigned int) clone_flags;
> > instead?
>
> Yeah, I guess that should do it. Though maybe:
>
> u32 flags = (u32)clone_flags;
>
> is more transparent since we're stating visually "we're capping this to
> 32 bits"?
Yes, this should work as well.
I wonder whether we could just change the type of clone_flags to unsigned int
in this function.
--
ldv
next prev parent reply other threads:[~2020-05-05 11:49 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <100149681.11244932.1588661282331.JavaMail.zimbra@redhat.com>
2020-05-05 7:28 ` [LTP] [bug?] clone(CLONE_IO) failing after kernel commit commit ef2c41cf38a7 Jan Stancek
2020-05-05 7:49 ` Florian Weimer
2020-05-05 7:59 ` Christian Brauner
2020-05-05 8:02 ` Christian Brauner
2020-05-05 8:32 ` Christian Brauner
2020-05-05 8:58 ` Jan Stancek
2020-05-05 9:05 ` Florian Weimer
2020-05-05 9:15 ` Christian Brauner
2020-05-05 9:36 ` Florian Weimer
2020-05-05 9:58 ` Christian Brauner
2020-05-05 10:21 ` Christian Brauner
2020-05-05 11:34 ` Florian Weimer
2020-05-05 11:35 ` Dmitry V. Levin
2020-05-05 11:43 ` Christian Brauner
2020-05-05 11:49 ` Dmitry V. Levin [this message]
2020-05-05 11:57 ` Christian Brauner
2020-05-05 11:08 ` Florian Weimer
2020-05-05 11:26 ` Christian Brauner
2020-05-05 7:54 ` Andreas Schwab
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=20200505114948.GC30017@altlinux.org \
--to=ldv@altlinux.org \
--cc=ltp@lists.linux.it \
/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