From: "Arnd Bergmann" <arnd@arndb.de>
To: "Kees Cook" <keescook@chromium.org>
Cc: "Jeremy Linton" <jeremy.linton@arm.com>,
linux-arm-kernel@lists.infradead.org,
"Catalin Marinas" <catalin.marinas@arm.com>,
"Will Deacon" <will@kernel.org>,
"Jason A . Donenfeld" <Jason@zx2c4.com>,
"Gustavo A. R. Silva" <gustavoars@kernel.org>,
"Mark Rutland" <mark.rutland@arm.com>,
"Steven Rostedt" <rostedt@goodmis.org>,
"Mark Brown" <broonie@kernel.org>,
"Guo Hui" <guohui@uniontech.com>,
Manoj.Iyer@arm.com, linux-kernel@vger.kernel.org,
linux-hardening@vger.kernel.org,
"James Yang" <james.yang@arm.com>,
"Shiyou Huang" <shiyou.huang@arm.com>
Subject: Re: [PATCH 1/1] arm64: syscall: Direct PRNG kstack randomization
Date: Thu, 07 Mar 2024 23:02:44 +0100 [thread overview]
Message-ID: <db9bc2dc-6a66-4248-b8ab-abc2723af053@app.fastmail.com> (raw)
In-Reply-To: <202403071112.01B4579@keescook>
On Thu, Mar 7, 2024, at 20:15, Kees Cook wrote:
> On Thu, Mar 07, 2024 at 12:10:34PM +0100, Arnd Bergmann wrote:
>> There is not even any attempt to use the most random bits of
>> the cycle counter, as both the high 22 to 24 bits get masked
>> out (to keep the wasted stack space small) and the low 3 or 4
>> bits get ignored because of stack alignment. If there was
>> any desire to make it more random, a trivial improvement
>> would be:
>>
>> +++ b/include/linux/randomize_kstack.h
>> @@ -80,7 +80,7 @@ DECLARE_PER_CPU(u32, kstack_offset);
>> if (static_branch_maybe(CONFIG_RANDOMIZE_KSTACK_OFFSET_DEFAULT, \
>> &randomize_kstack_offset)) { \
>> u32 offset = raw_cpu_read(kstack_offset); \
>> - offset ^= (rand); \
>> + offset = ror32(offset, 5) & (rand); \
>
> Shouldn't this stay ^ instead of & ?
Yes, my mistake.
>> raw_cpu_write(kstack_offset, offset); \
>> } \
>> } while (0)
>
> But yeah, we should likely make this change regardless.
Ok, do you want to send a patch, or should I?
Arnd
_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
next prev parent reply other threads:[~2024-03-07 22:03 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-05 22:18 [PATCH 0/1] Bring kstack randomized perf closer to unrandomized Jeremy Linton
2024-03-05 22:18 ` [PATCH 1/1] arm64: syscall: Direct PRNG kstack randomization Jeremy Linton
2024-03-05 23:33 ` Kees Cook
2024-03-06 20:46 ` Arnd Bergmann
2024-03-06 21:54 ` Jeremy Linton
2024-03-07 11:10 ` Arnd Bergmann
2024-03-07 19:10 ` Kees Cook
2024-03-07 21:56 ` Arnd Bergmann
2024-03-07 19:15 ` Kees Cook
2024-03-07 22:02 ` Arnd Bergmann [this message]
2024-03-08 16:49 ` Jeremy Linton
2024-03-08 20:29 ` Arnd Bergmann
2024-03-22 23:40 ` Jeremy Linton
2024-03-23 12:47 ` Arnd Bergmann
2024-03-07 19:05 ` kernel test robot
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=db9bc2dc-6a66-4248-b8ab-abc2723af053@app.fastmail.com \
--to=arnd@arndb.de \
--cc=Jason@zx2c4.com \
--cc=Manoj.Iyer@arm.com \
--cc=broonie@kernel.org \
--cc=catalin.marinas@arm.com \
--cc=guohui@uniontech.com \
--cc=gustavoars@kernel.org \
--cc=james.yang@arm.com \
--cc=jeremy.linton@arm.com \
--cc=keescook@chromium.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-hardening@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=rostedt@goodmis.org \
--cc=shiyou.huang@arm.com \
--cc=will@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