Linux Hardening
 help / color / mirror / Atom feed
From: Kees Cook <keescook@chromium.org>
To: Heiko Carstens <hca@linux.ibm.com>
Cc: Alexander Gordeev <agordeev@linux.ibm.com>,
	linux-hardening@vger.kernel.org,
	Sven Schnelle <svens@linux.ibm.com>
Subject: Re: s390/defconfigs: set CONFIG_INIT_STACK_NONE=y
Date: Fri, 26 May 2023 09:37:16 -0700	[thread overview]
Message-ID: <202305260922.F98F90290@keescook> (raw)
In-Reply-To: <ZHC3YJ3FHwYxYrMG@osiris>

On Fri, May 26, 2023 at 03:42:56PM +0200, Heiko Carstens wrote:
> Hi Kees,
> 
> > I had this[1] patch pointed out to me, but I couldn't find any discussion
> > about it on public lists. Can you give me some background on this? There
> > haven't been any general workloads identified where this has been
> > a problem, so I'm curious why this was seen as globally an issue on
> > s390. The expectation was to use __uninitialized on any variables where
> > this was noticed as a performance issue, and where the memory safety of
> > the variable could be proven. Turning it off by default seems like
> > rather too much, but perhaps there is something unique to s390 I don't
> > know about. :)
> 
> This was the result of some micro benchmarks being reported "too slow".
> Actually our syscall entry/exit path got naturally slower since we switched
> to generic entry; now we are trying to improve things a bit again.
> 
> There is also this RFC from Sven, which tries to inline some of the
> generic system call functions, in order to avoid function calls:
> https://lore.kernel.org/lkml/20230516133810.171487-1-svens@linux.ibm.com/
> 
> I stumbled upon CONFIG_INIT_STACK_NONE only by accident when wondering why
> the compiler would generate quite some instructions which aren't necessary,
> just to zero variables. For the getpid() system call this makes a runtime
> difference of ~3%, which is quite a bit.

Hm, that does seem high. It implies there are large variable that are
being passed by reference, perhaps in the syscall path? I had similar
problems a while back on x86 but due to stack-protector seeing the
register arrays and thinking they needed protection. I had to explicitly
turn that off for the entry code, since they're provably safe. :)

> What is the overhead on other architectures?

It's been in the noise for real workloads.

> That said: I was also unaware of __uninitialized. But on the other hand,
> there is no sign of __uninitialized in the kernel, nor could I find
> anything that could match in compiler_attributes.h.
> Am I missing something here?

No, nothing missed -- there just have been no workloads identified yet
where it's needed.

> Thanks for bringing this up, I guess if there is some annotation available,
> we can revisit at least the architecture specific entry code, and maybe
> figure out how to avoid most of the extra runtime, but still keep the
> feature enabled.
> 
> (Adding Sven, since I will be offline the next two weeks).

Yeah, if you find a place where it's needed, please add the compiler
attribute and put it to use. It'll give people an example use-case for
it. :)

-- 
Kees Cook

  reply	other threads:[~2023-05-26 16:37 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-25 18:40 s390/defconfigs: set CONFIG_INIT_STACK_NONE=y Kees Cook
2023-05-26 13:42 ` Heiko Carstens
2023-05-26 16:37   ` Kees Cook [this message]
2023-05-30  6:44     ` Sven Schnelle

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=202305260922.F98F90290@keescook \
    --to=keescook@chromium.org \
    --cc=agordeev@linux.ibm.com \
    --cc=hca@linux.ibm.com \
    --cc=linux-hardening@vger.kernel.org \
    --cc=svens@linux.ibm.com \
    /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