From: Dave Hansen <dave.hansen@intel.com>
To: Kevin Brodsky <kevin.brodsky@arm.com>,
linux-arm-kernel@lists.infradead.org
Cc: akpm@linux-foundation.org, anshuman.khandual@arm.com,
aruna.ramakrishna@oracle.com, broonie@kernel.org,
catalin.marinas@arm.com, dave.hansen@linux.intel.com,
dave.martin@arm.com, jeffxu@chromium.org, joey.gouly@arm.com,
pierre.langlois@arm.com, shuah@kernel.org, sroettger@google.com,
will@kernel.org, linux-kselftest@vger.kernel.org, x86@kernel.org,
Yury Khrustalev <Yury.Khrustalev@arm.com>
Subject: Re: [PATCH v2 4/5] selftests/mm: Use generic pkey register manipulation
Date: Fri, 25 Oct 2024 08:09:18 -0700 [thread overview]
Message-ID: <5fa27331-db95-4d60-8fd9-19fbd18f12bb@intel.com> (raw)
In-Reply-To: <c35d8783-c754-4864-b964-4a3bfaa4cd11@arm.com>
On 10/25/24 01:31, Kevin Brodsky wrote:
> I agree, the naming is not ideal, I lacked inspiration! Maybe
> PKEY_REG_ALLOW_NONE to remain generic?
Works for me.
>>> static inline void __page_o_noops(void)
>>> {
>>> /* 8-bytes of instruction * 512 bytes = 1 page */
>>> diff --git a/tools/testing/selftests/mm/pkey_sighandler_tests.c b/tools/testing/selftests/mm/pkey_sighandler_tests.c
>>> index a8088b645ad6..b5e1767ee5d9 100644
>>> --- a/tools/testing/selftests/mm/pkey_sighandler_tests.c
>>> +++ b/tools/testing/selftests/mm/pkey_sighandler_tests.c
>>> @@ -37,6 +37,8 @@ pthread_mutex_t mutex = PTHREAD_MUTEX_INITIALIZER;
>>> pthread_cond_t cond = PTHREAD_COND_INITIALIZER;
>>> siginfo_t siginfo = {0};
>>>
>>> +static u64 pkey_reg_no_access;
>> Ideally, this would be a real const or a #define because it really is
>> static. Right? Or is there something dynamic about the ARM
>> implementation's value?
>
> It isn't dynamic no, the issue is that on architectures where pkeys
> restrict execution we need to allow X for pkey 0. Of course it would be
> possible to define PKEY_REG_ALLOW_ALL in such a way that X is allowed
> for pkey 0, but I was concerned this might be misleading. No strong
> opinion either way, happy to make it purely a macro, maybe with a better
> name?
I do think we should differentiate truly "no access" value from the one
that allows X on pkey 0, at least in the selftest. Define a helper that
uses the *real* "no access" value:
/*
* Returns the most restrictive register value
* that can be used in the selftest.
*/
static inline u64 pkey_reg_restrictive_default(void)
{
/*
* The selftest code runs (mostly) with its code mapped with
* pkey-0. Allows execution on pkey-0 so that each site doesn't
* have to do this:
*/
return set_pkey_bits(PKEY_REG_NO_ACCESS, 0, PKEY_X);
}
and then use it like this:
pkey_reg = pkey_reg_restrictive_default();
pkey_reg = set_pkey_bits(pkey_reg, 1, PKEY_ALLOW_ALL);
>>> * Setup alternate signal stack, which should be pkey_mprotect()ed by
>>> @@ -142,7 +145,8 @@ static void *thread_segv_maperr_ptr(void *ptr)
>>> syscall_raw(SYS_sigaltstack, (long)stack, 0, 0, 0, 0, 0);
>>>
>>> /* Disable MPK 0. Only MPK 1 is enabled. */
>>> - __write_pkey_reg(0x55555551);
>>> + pkey_reg = set_pkey_bits(pkey_reg_no_access, 1, 0);
>>> + __write_pkey_reg(pkey_reg);
>> The existing magic numbers are not great, but could we do:
>>
>> #define PKEY_ALLOW_ALL 0x0
>>
>> So that this can be written like this:
>>
>> pkey_reg = PKRU_ALLOW_NONE;
>> pkey_reg = set_pkey_bits(pkey_reg, 1, PKEY_ALLOW_ALL);
>>
>> That would get rid of the magic '0'.
>
> Definitely better yes. But how about using Yury's uapi addition,
> PKEY_UNRESTRICTED [1]?
>
Works for me.
>> ...
>>> + /* Only allow X for MPK 0 and nothing for other keys */
>>> + pkey_reg_no_access = set_pkey_bits(PKEY_ALLOW_NONE, 0,
>>> + PKEY_DISABLE_ACCESS);
>> If the comment says "only allow X", then I'd expect the code to say:
>>
>> pkey_reg_no_access = set_pkey_bits(PKEY_ALLOW_NONE, 0, PKEY_X);
>>
>> ... or something similar.
>
> I could #define PKEY_X PKEY_DISABLE_ACCESS but is the mixture of
> negative and positive polarity really helping? We cannot define PKEY_R
> and PKEY_W so that (for instance) PKEY_R | PKEY_X does what it says.
> Having to use PKEY_DISABLE_ACCESS to mean "X only" is not ideal, but
> this is what userspace already has to do.
There would be some churn, but we could also convert the whole thing
over to just use explicit RWX enable bits, like in the
thread_segv_maperr_ptr() test:
// Truly turn everything off:
pkey_reg = PKEY_REG_NO_ACCESS;
pkey_reg = set_pkey_perm(pkey_reg, 1, PKEY_RW);
I'm not sure that's worth the churn though.
next prev parent reply other threads:[~2024-10-25 15:33 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-23 15:05 [PATCH v2 0/5] Improve arm64 pkeys handling in signal delivery Kevin Brodsky
2024-10-23 15:05 ` [PATCH v2 1/5] arm64: signal: Remove unused macro Kevin Brodsky
2024-10-23 15:05 ` [PATCH v2 2/5] arm64: signal: Remove unnecessary check when saving POE state Kevin Brodsky
2024-10-23 15:05 ` [PATCH v2 3/5] arm64: signal: Improve POR_EL0 handling to avoid uaccess failures Kevin Brodsky
2024-10-24 10:59 ` Catalin Marinas
2024-10-24 14:55 ` Kevin Brodsky
2024-10-24 15:42 ` Catalin Marinas
2024-10-24 16:19 ` Dave Martin
2024-10-25 8:24 ` Kevin Brodsky
2024-10-25 11:04 ` Dave Martin
2024-10-25 11:33 ` Dave Martin
2024-10-25 15:34 ` Kevin Brodsky
2024-11-18 15:06 ` Dave Martin
2024-10-23 15:05 ` [PATCH v2 4/5] selftests/mm: Use generic pkey register manipulation Kevin Brodsky
2024-10-23 16:51 ` Dave Hansen
2024-10-25 8:31 ` Kevin Brodsky
2024-10-25 15:09 ` Dave Hansen [this message]
2024-10-28 10:20 ` Kevin Brodsky
2024-10-23 15:05 ` [PATCH v2 5/5] selftests/mm: Enable pkey_sighandler_tests on arm64 Kevin Brodsky
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=5fa27331-db95-4d60-8fd9-19fbd18f12bb@intel.com \
--to=dave.hansen@intel.com \
--cc=Yury.Khrustalev@arm.com \
--cc=akpm@linux-foundation.org \
--cc=anshuman.khandual@arm.com \
--cc=aruna.ramakrishna@oracle.com \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=dave.hansen@linux.intel.com \
--cc=dave.martin@arm.com \
--cc=jeffxu@chromium.org \
--cc=joey.gouly@arm.com \
--cc=kevin.brodsky@arm.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kselftest@vger.kernel.org \
--cc=pierre.langlois@arm.com \
--cc=shuah@kernel.org \
--cc=sroettger@google.com \
--cc=will@kernel.org \
--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;
as well as URLs for NNTP newsgroup(s).