mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-12-28 16:56:26 +00:00
9beccca098
In order to allow arches to use code patching to conditionally emit the shadow stack pushes and pops, rather than always taking the performance hit even on CPUs that implement alternatives such as stack pointer authentication on arm64, add a Kconfig symbol that can be set by the arch to omit the SCS codegen itself, without otherwise affecting how support code for SCS and compiler options (for register reservation, for instance) are emitted. Also, add a static key and some plumbing to omit the allocation of shadow call stack for dynamic SCS configurations if SCS is disabled at runtime. Signed-off-by: Ard Biesheuvel <ardb@kernel.org> Reviewed-by: Nick Desaulniers <ndesaulniers@google.com> Reviewed-by: Kees Cook <keescook@chromium.org> Reviewed-by: Sami Tolvanen <samitolvanen@google.com> Tested-by: Sami Tolvanen <samitolvanen@google.com> Link: https://lore.kernel.org/r/20221027155908.1940624-3-ardb@kernel.org Signed-off-by: Will Deacon <will@kernel.org>
87 lines
2.3 KiB
C
87 lines
2.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Shadow Call Stack support.
|
|
*
|
|
* Copyright (C) 2019 Google LLC
|
|
*/
|
|
|
|
#ifndef _LINUX_SCS_H
|
|
#define _LINUX_SCS_H
|
|
|
|
#include <linux/gfp.h>
|
|
#include <linux/poison.h>
|
|
#include <linux/sched.h>
|
|
#include <linux/sizes.h>
|
|
|
|
#ifdef CONFIG_SHADOW_CALL_STACK
|
|
|
|
#define SCS_ORDER 0
|
|
#define SCS_SIZE (PAGE_SIZE << SCS_ORDER)
|
|
#define GFP_SCS (GFP_KERNEL | __GFP_ZERO)
|
|
|
|
/* An illegal pointer value to mark the end of the shadow stack. */
|
|
#define SCS_END_MAGIC (0x5f6UL + POISON_POINTER_DELTA)
|
|
|
|
#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);
|
|
|
|
static inline void scs_task_reset(struct task_struct *tsk)
|
|
{
|
|
/*
|
|
* Reset the shadow stack to the base address in case the task
|
|
* is reused.
|
|
*/
|
|
task_scs_sp(tsk) = task_scs(tsk);
|
|
}
|
|
|
|
static inline unsigned long *__scs_magic(void *s)
|
|
{
|
|
return (unsigned long *)(s + SCS_SIZE) - 1;
|
|
}
|
|
|
|
static inline bool task_scs_end_corrupted(struct task_struct *tsk)
|
|
{
|
|
unsigned long *magic = __scs_magic(task_scs(tsk));
|
|
unsigned long sz = task_scs_sp(tsk) - task_scs(tsk);
|
|
|
|
return sz >= SCS_SIZE - 1 || READ_ONCE_NOCHECK(*magic) != SCS_END_MAGIC;
|
|
}
|
|
|
|
DECLARE_STATIC_KEY_FALSE(dynamic_scs_enabled);
|
|
|
|
static inline bool scs_is_dynamic(void)
|
|
{
|
|
if (!IS_ENABLED(CONFIG_DYNAMIC_SCS))
|
|
return false;
|
|
return static_branch_likely(&dynamic_scs_enabled);
|
|
}
|
|
|
|
static inline bool scs_is_enabled(void)
|
|
{
|
|
if (!IS_ENABLED(CONFIG_DYNAMIC_SCS))
|
|
return true;
|
|
return scs_is_dynamic();
|
|
}
|
|
|
|
#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; }
|
|
static inline void scs_release(struct task_struct *tsk) {}
|
|
static inline bool task_scs_end_corrupted(struct task_struct *tsk) { return false; }
|
|
static inline bool scs_is_enabled(void) { return false; }
|
|
static inline bool scs_is_dynamic(void) { return false; }
|
|
|
|
#endif /* CONFIG_SHADOW_CALL_STACK */
|
|
|
|
#endif /* _LINUX_SCS_H */
|