1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Shadow Call Stack support.
5 * Copyright (C) 2019 Google LLC
11 #include <linux/gfp.h>
12 #include <linux/poison.h>
13 #include <linux/sched.h>
14 #include <linux/sizes.h>
16 #ifdef CONFIG_SHADOW_CALL_STACK
19 #define SCS_SIZE (PAGE_SIZE << SCS_ORDER)
20 #define GFP_SCS (GFP_KERNEL | __GFP_ZERO)
22 /* An illegal pointer value to mark the end of the shadow stack. */
23 #define SCS_END_MAGIC (0x5f6UL + POISON_POINTER_DELTA)
25 #define task_scs(tsk) (task_thread_info(tsk)->scs_base)
26 #define task_scs_sp(tsk) (task_thread_info(tsk)->scs_sp)
28 void *scs_alloc(int node);
29 void scs_free(void *s);
31 int scs_prepare(struct task_struct *tsk, int node);
32 void scs_release(struct task_struct *tsk);
34 static inline void scs_task_reset(struct task_struct *tsk)
37 * Reset the shadow stack to the base address in case the task
40 task_scs_sp(tsk) = task_scs(tsk);
43 static inline unsigned long *__scs_magic(void *s)
45 return (unsigned long *)(s + SCS_SIZE) - 1;
48 static inline bool task_scs_end_corrupted(struct task_struct *tsk)
50 unsigned long *magic = __scs_magic(task_scs(tsk));
51 unsigned long sz = task_scs_sp(tsk) - task_scs(tsk);
53 return sz >= SCS_SIZE - 1 || READ_ONCE_NOCHECK(*magic) != SCS_END_MAGIC;
56 DECLARE_STATIC_KEY_FALSE(dynamic_scs_enabled);
58 static inline bool scs_is_dynamic(void)
60 if (!IS_ENABLED(CONFIG_DYNAMIC_SCS))
62 return static_branch_likely(&dynamic_scs_enabled);
65 static inline bool scs_is_enabled(void)
67 if (!IS_ENABLED(CONFIG_DYNAMIC_SCS))
69 return scs_is_dynamic();
72 #else /* CONFIG_SHADOW_CALL_STACK */
74 static inline void *scs_alloc(int node) { return NULL; }
75 static inline void scs_free(void *s) {}
76 static inline void scs_init(void) {}
77 static inline void scs_task_reset(struct task_struct *tsk) {}
78 static inline int scs_prepare(struct task_struct *tsk, int node) { return 0; }
79 static inline void scs_release(struct task_struct *tsk) {}
80 static inline bool task_scs_end_corrupted(struct task_struct *tsk) { return false; }
81 static inline bool scs_is_enabled(void) { return false; }
82 static inline bool scs_is_dynamic(void) { return false; }
84 #endif /* CONFIG_SHADOW_CALL_STACK */
86 #endif /* _LINUX_SCS_H */