From: Will Deacon <will@kernel.org>
To: Sami Tolvanen <samitolvanen@google.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
Kees Cook <keescook@chromium.org>,
Ard Biesheuvel <ard.biesheuvel@linaro.org>,
Catalin Marinas <catalin.marinas@arm.com>,
linux-kernel@vger.kernel.org, James Morse <james.morse@arm.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH 2/2] arm64: scs: use vmapped IRQ and SDEI shadow stacks
Date: Thu, 19 Nov 2020 13:11:18 +0000 [thread overview]
Message-ID: <20201119131118.GB4331@willie-the-truck> (raw)
In-Reply-To: <20201022202355.3529836-3-samitolvanen@google.com>
On Thu, Oct 22, 2020 at 01:23:55PM -0700, Sami Tolvanen wrote:
> Use scs_alloc() to allocate also IRQ and SDEI shadow stacks instead of
> using statically allocated stacks.
>
> Signed-off-by: Sami Tolvanen <samitolvanen@google.com>
> ---
> arch/arm64/include/asm/scs.h | 21 ++++++++++-
> arch/arm64/kernel/entry.S | 6 ++--
> arch/arm64/kernel/irq.c | 2 ++
> arch/arm64/kernel/scs.c | 67 +++++++++++++++++++++++++++++++++---
> arch/arm64/kernel/sdei.c | 7 ++++
> include/linux/scs.h | 8 ++---
> kernel/scs.c | 4 +--
> 7 files changed, 101 insertions(+), 14 deletions(-)
>
> diff --git a/arch/arm64/include/asm/scs.h b/arch/arm64/include/asm/scs.h
> index eaa2cd92e4c1..e9d2c3e67ff9 100644
> --- a/arch/arm64/include/asm/scs.h
> +++ b/arch/arm64/include/asm/scs.h
> @@ -24,6 +24,25 @@
> .endm
> #endif /* CONFIG_SHADOW_CALL_STACK */
>
> -#endif /* __ASSEMBLY __ */
> +#else /* __ASSEMBLY__ */
> +
> +#include <linux/scs.h>
> +
> +#ifdef CONFIG_SHADOW_CALL_STACK
> +
> +extern void scs_init_irq(void);
> +
> +extern void scs_free_sdei(void);
This is only called on the scs_init_sdei() failure path, so it can be
static. But see below, because I think we should move all of these functions
out of scs.c anyway.
> diff --git a/arch/arm64/kernel/irq.c b/arch/arm64/kernel/irq.c
> index 9cf2fb87584a..54ba3725bc0e 100644
> --- a/arch/arm64/kernel/irq.c
> +++ b/arch/arm64/kernel/irq.c
> @@ -20,6 +20,7 @@
> #include <linux/seq_file.h>
> #include <linux/vmalloc.h>
> #include <asm/daifflags.h>
> +#include <asm/scs.h>
> #include <asm/vmap_stack.h>
>
> /* Only access this in an NMI enter/exit */
> @@ -54,6 +55,7 @@ static void init_irq_stacks(void)
> void __init init_IRQ(void)
> {
> init_irq_stacks();
> + scs_init_irq();
If we internalise this in init_irq_stacks()...
> diff --git a/arch/arm64/kernel/sdei.c b/arch/arm64/kernel/sdei.c
> index 7689f2031c0c..04519a7cb51d 100644
> --- a/arch/arm64/kernel/sdei.c
> +++ b/arch/arm64/kernel/sdei.c
> @@ -13,6 +13,7 @@
> #include <asm/kprobes.h>
> #include <asm/mmu.h>
> #include <asm/ptrace.h>
> +#include <asm/scs.h>
> #include <asm/sections.h>
> #include <asm/stacktrace.h>
> #include <asm/sysreg.h>
> @@ -138,6 +139,12 @@ unsigned long sdei_arch_get_entry_point(int conduit)
> return 0;
> }
>
> + if (scs_init_sdei()) {
... and this in init_sdei_stacks(), then I think we remove all of the code
from arch/arm64/kernel/scs.c.
> diff --git a/include/linux/scs.h b/include/linux/scs.h
> index 86e3c4b7b714..6b35a83576d4 100644
> --- a/include/linux/scs.h
> +++ b/include/linux/scs.h
> @@ -21,13 +21,11 @@
> /* An illegal pointer value to mark the end of the shadow stack. */
> #define SCS_END_MAGIC (0x5f6UL + POISON_POINTER_DELTA)
>
> -/* Allocate a static per-CPU shadow stack */
> -#define DEFINE_SCS(name) \
> - DEFINE_PER_CPU(unsigned long [SCS_SIZE/sizeof(long)], name) \
> -
> #define task_scs(tsk) (task_thread_info(tsk)->scs_base)
> #define task_scs_sp(tsk) (task_thread_info(tsk)->scs_sp)
>
> +void *scs_alloc(int node);
> +void scs_free(void *s);
> void scs_init(void);
> int scs_prepare(struct task_struct *tsk, int node);
> void scs_release(struct task_struct *tsk);
> @@ -56,6 +54,8 @@ static inline bool task_scs_end_corrupted(struct task_struct *tsk)
>
> #else /* CONFIG_SHADOW_CALL_STACK */
>
> +static inline void *scs_alloc(int node) { return NULL; }
> +static inline void scs_free(void *s) {}
> static inline void scs_init(void) {}
> static inline void scs_task_reset(struct task_struct *tsk) {}
> static inline int scs_prepare(struct task_struct *tsk, int node) { return 0; }
> diff --git a/kernel/scs.c b/kernel/scs.c
> index 2136edba548d..8df4a92cd939 100644
> --- a/kernel/scs.c
> +++ b/kernel/scs.c
> @@ -24,7 +24,7 @@ static void __scs_account(void *s, int account)
> #define NR_CACHED_SCS 2
> static DEFINE_PER_CPU(void *, scs_cache[NR_CACHED_SCS]);
>
> -static void *scs_alloc(int node)
> +void *scs_alloc(int node)
> {
> int i;
> void *s;
> @@ -63,7 +63,7 @@ static void *scs_alloc(int node)
> return s;
> }
>
> -static void scs_free(void *s)
> +void scs_free(void *s)
Should be part of the first patch?
Will
_______________________________________________
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:[~2020-11-19 13:13 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-10-22 20:23 [PATCH 0/2] scs: switch to vmapped shadow stacks Sami Tolvanen
2020-10-22 20:23 ` [PATCH 1/2] " Sami Tolvanen
2020-10-22 22:38 ` Kees Cook
2020-11-19 13:00 ` Will Deacon
2020-11-20 17:00 ` Sami Tolvanen
2020-11-23 11:08 ` Will Deacon
2020-10-22 20:23 ` [PATCH 2/2] arm64: scs: use vmapped IRQ and SDEI " Sami Tolvanen
2020-10-22 22:38 ` Kees Cook
2020-11-19 13:11 ` Will Deacon [this message]
2020-11-17 17:35 ` [PATCH 0/2] scs: switch to vmapped " Catalin Marinas
2020-11-18 9:27 ` Will Deacon
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=20201119131118.GB4331@willie-the-truck \
--to=will@kernel.org \
--cc=ard.biesheuvel@linaro.org \
--cc=catalin.marinas@arm.com \
--cc=james.morse@arm.com \
--cc=keescook@chromium.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
--cc=samitolvanen@google.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