From: Dave Hansen <dave.hansen@intel.com>
To: Thomas Gleixner <tglx@linutronix.de>,
Dave Hansen <dave.hansen@linux.intel.com>,
linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org, mingo@redhat.com, bp@alien8.de,
x86@kernel.org, luto@kernel.org, shuah@kernel.org,
babu.moger@amd.com, dave.kleikamp@oracle.com,
linuxram@us.ibm.com, bauerman@linux.ibm.com
Subject: Re: [PATCH 0/5] x86/pkeys: PKRU manipulation bug fixes and cleanups
Date: Fri, 28 May 2021 09:11:09 -0700 [thread overview]
Message-ID: <4c3bfc27-a542-8e91-7ccf-4be8b1e6c844@intel.com> (raw)
In-Reply-To: <87eedq7u2b.ffs@nanos.tec.linutronix.de>
On 5/28/21 8:32 AM, Thomas Gleixner wrote:
>>
>> This series:
>> * Moves the PKRU manipulation to a more appropriate location,
>> away from the page table code
>> * Wraps get_xsave_addr() with more structured, less error-prone
>> interfaces.
>> * Conditionally hides a pkey debugfs file, eliminating the need
>> for new runtime checks to work with the new interface.
>> * Add a selftest to make it more likely to catch bugs like this
>> in the future. This improved selftest catches this issue on
>> Intel CPUs. Without the improvement, it only triggers on AMD.
> I think all of this is fundamentaly wrong.
>
> Contrary to FPU state, PKRU has to be updated at context switch
> time. There is absolutely no point in having PKRU XSAVES managed.
>
> It's broken in several ways. Anything which clears and loads the FPU
> will load the wrong PKRU value. Go figure...
>
> So the right thing is to disable PKRU in XCR0 and on sched out simply do
>
> task->thread.pkru = read_pkru();
>
> and on sched in
>
> write_pkru(task->thread.pkru);
>
> Simple, trivial and not going to be wreckaged by anything which fiddles
> with xstates. We all know by now that xstates is a trainwreck and not
> having stuff like that in there is making the fixes I'm doing way
> simpler.
As for the general sentiment that PKRU is not suitable for management
with XSAVE, I'm with you.
I have a few concerns about moving away from XSAVE management, though.
I'm not nixing the whole idea, but there are some things we need to resolve.
First is that there _may_ be ABI concerns. The pkey selftest, for
instance, manipulates the PKRU state on the signal stack and expects
PKRU to be set in XCR0 so that it can do this. I wouldn't be shocked if
some other pkey user depended on the XSAVE signal stack ABI this way.
There are also the usual concerns that folks doing user-level context
switching or other insanity get PKRU context switching for "free" when
it's XSAVE-managed. Moving away from that could break them.
I'll ask around. We could also pretty trivially put some surveillance
in the sigreturn code to look for PKRU changes.
Second, the XSAVE/FPU abomination is actually really handy for pkeys:
1. It establishes a *different* state upon signal delivery. Like
sigaltstack, this means that the signal handler can recover from
what would normally be a fatal condition like WRPKRU(0x3). I *think*
this is OK today even if the signal entry XRSTOR did not touch PKRU
since there's another write_pkru() in this path.
2. It allows the signal handler to inspect the interrupted context's
PKRU value. (used in the selftest)
3. It allows the signal handler to *override* the PKRU value of the
interrupted context. This is used in the selftest as an easy way
to let a memory access instruction execute that initially causes
a pkey-induced page fault as opposed to messing with RIP.
None of this is insurmountable. For the selftest, I need to go looking
at how important that functionality is and look for some alternatives.
next prev parent reply other threads:[~2021-05-28 16:14 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-27 23:51 Dave Hansen
2021-05-27 23:51 ` [PATCH 1/5] x86/pkeys: move read_pkru() and write_pkru() Dave Hansen
2021-05-27 23:51 ` [PATCH 2/5] x86/pkeys: rename write_pkru() Dave Hansen
2021-05-27 23:51 ` [PATCH 3/5] x86/pkeys: skip 'init_pkru' debugfs file creation when pkeys not supported Dave Hansen
2021-05-27 23:51 ` [PATCH 4/5] x86/pkeys: replace PKRU modification infrastructure Dave Hansen
2021-05-28 1:17 ` Mika Penttilä
2021-05-28 17:00 ` Dave Kleikamp
2021-06-01 21:54 ` Babu Moger
2021-06-01 22:43 ` Dave Kleikamp
2021-06-01 22:49 ` Dave Hansen
2021-05-27 23:51 ` [PATCH 5/5] selftests/vm/pkeys: exercise x86 XSAVE init state Dave Hansen
2021-05-28 15:32 ` [PATCH 0/5] x86/pkeys: PKRU manipulation bug fixes and cleanups Thomas Gleixner
2021-05-28 16:11 ` Dave Hansen [this message]
2021-05-28 17:13 ` Andy Lutomirski
2021-05-28 17:19 ` Thomas Gleixner
2021-05-28 17:19 ` Thomas Gleixner
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=4c3bfc27-a542-8e91-7ccf-4be8b1e6c844@intel.com \
--to=dave.hansen@intel.com \
--cc=babu.moger@amd.com \
--cc=bauerman@linux.ibm.com \
--cc=bp@alien8.de \
--cc=dave.hansen@linux.intel.com \
--cc=dave.kleikamp@oracle.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=linuxram@us.ibm.com \
--cc=luto@kernel.org \
--cc=mingo@redhat.com \
--cc=shuah@kernel.org \
--cc=tglx@linutronix.de \
--cc=x86@kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox