From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 2/2] arm64: signal: Report signal frame size to userspace via auxv
Date: Fri, 25 May 2018 12:32:51 +0100 [thread overview]
Message-ID: <20180525113251.GB3255@arm.com> (raw)
In-Reply-To: <20180524170713.GY13470@e103592.cambridge.arm.com>
On Thu, May 24, 2018 at 06:07:13PM +0100, Dave Martin wrote:
> On Thu, May 24, 2018 at 05:50:48PM +0100, Will Deacon wrote:
> > On Thu, May 24, 2018 at 04:55:17PM +0100, Dave Martin wrote:
> > > On Thu, May 24, 2018 at 01:49:21PM +0100, Will Deacon wrote:
> > > > On Wed, May 23, 2018 at 06:46:56PM +0100, Dave Martin wrote:
> > > > > @@ -936,3 +949,28 @@ asmlinkage void do_notify_resume(struct pt_regs *regs,
> > > > > thread_flags = READ_ONCE(current_thread_info()->flags);
> > > > > } while (thread_flags & _TIF_WORK_MASK);
> > > > > }
> > > > > +
> > > > > +unsigned long __ro_after_init signal_minsigstksz;
> > > > > +
> > > > > +/*
> > > > > + * Determine the stack space required for guaranteed signal devliery.
> > > > > + * This function is used to populate AT_MINSIGSTKSZ at process startup.
> > > > > + * cpufeatures setup is assumed to be complete.
> > > > > + */
> > > > > +void __init minsigstksz_setup(void)
> > > > > +{
> > > > > + struct rt_sigframe_user_layout user;
> > > > > +
> > > > > + init_user_layout(&user);
> > > > > +
> > > > > + /*
> > > > > + * If this fails, SIGFRAME_MAXSZ needs to be enlarged. It won't
> > > > > + * be big enough, but it's our best guess:
> > > > > + */
> > > > > + if (WARN_ON(setup_sigframe_layout(&user, true)))
> > > > > + signal_minsigstksz = SIGFRAME_MAXSZ;
> > > >
> > > > Can we not leave signal_minsigstksz as zero in this case?
> > >
> > > I prefer to distinguish the "kernel went wrong" case (where we just omit
> > > AT_MINSIGSTKSZ for backwards compatibilty) from the "sigframe too
> > > large" case.
> >
> > Hmm, so I'm confused as to the distinction here. Wouldn't an allocation
> > failure in setup_sigframe_layout be indicative of "kernel went wrong"?
> >
> > To put it another way, if we could determine the maximum sigframe size
> > at build time, surely we'd fail the build if SIGFRAME_MAXSZ wasn't big
> > enough? In that case, detecting this at runtime is also pretty bad (hence
>
> Yup
Good, I was starting to worry I was missing something!
> > the WARN_ON) and I think we should drop the aux entry rather than provide
> > a value that is known to be incorrect.
>
> Telling userspace the signal frame size is not optional: by omitting
> AT_MINSIGSTKSZ we implicitly tell userspace than MINSIGSTKSZ
> is sufficient. But in this case we not only know that this is false, we
> know that SIGFRAME_MAXSZ is not sufficient either. But we also know
> that SIGFRAME_MAXSZ is a closer estimate to the true requirement, because
> it's the larger value.
>
> This falls under the heading of "being no more wrong than necessary".
I think I just prefer distinguishing between "AT_MINSIGSTKSZ isn't
present, I'll assume MINSIGSTKSZ is sufficient but it might not be" and
"AT_MINSIGSTKSZ is present, I know that it's sufficient".
> Either way, this is trying to paper over a kernel bug, by telling
> userspace something "sensible". This may not be a sensible course
> of action...
>
> So if you feel strongly I'm happy to not distinguish the two cases and
> just WARN() in minsigstksz_setup() as at present.
Yes, please.
Will
next prev parent reply other threads:[~2018-05-25 11:32 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-23 17:46 [PATCH v4 0/2] arm64: signal: Report signal frame size to userspace via auxv Dave Martin
2018-05-23 17:46 ` [PATCH v4 1/2] arm64/sve: Thin out initialisation sanity-checks for sve_max_vl Dave Martin
2018-05-24 10:40 ` Will Deacon
2018-05-23 17:46 ` [PATCH v4 2/2] arm64: signal: Report signal frame size to userspace via auxv Dave Martin
2018-05-24 12:49 ` Will Deacon
2018-05-24 15:55 ` Dave Martin
2018-05-24 16:50 ` Will Deacon
2018-05-24 17:07 ` Dave Martin
2018-05-25 11:32 ` Will Deacon [this message]
2018-05-25 14:39 ` Dave Martin
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=20180525113251.GB3255@arm.com \
--to=will.deacon@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.