Skip to content

Commit 0cfa2cc

Browse files
mrutland-armkees
authored andcommitted
stackleak: rework stack high bound handling
Prior to returning to userspace, we reset current->lowest_stack to a reasonable high bound. Currently we do this by subtracting the arbitrary value `THREAD_SIZE/64` from the top of the stack, for reasons lost to history. Looking at configurations today: * On i386 where THREAD_SIZE is 8K, the bound will be 128 bytes. The pt_regs at the top of the stack is 68 bytes (with 0 to 16 bytes of padding above), and so this covers an additional portion of 44 to 60 bytes. * On x86_64 where THREAD_SIZE is at least 16K (up to 32K with KASAN) the bound will be at least 256 bytes (up to 512 with KASAN). The pt_regs at the top of the stack is 168 bytes, and so this cover an additional 88 bytes of stack (up to 344 with KASAN). * On arm64 where THREAD_SIZE is at least 16K (up to 64K with 64K pages and VMAP_STACK), the bound will be at least 256 bytes (up to 1024 with KASAN). The pt_regs at the top of the stack is 336 bytes, so this can fall within the pt_regs, or can cover an additional 688 bytes of stack. Clearly the `THREAD_SIZE/64` value doesn't make much sense -- in the worst case, this will cause more than 600 bytes of stack to be erased for every syscall, even if actual stack usage were substantially smaller. This patches makes this slightly less nonsensical by consistently resetting current->lowest_stack to the base of the task pt_regs. For clarity and for consistency with the handling of the low bound, the generation of the high bound is split into a helper with commentary explaining why. Since the pt_regs at the top of the stack will be clobbered upon the next exception entry, we don't need to poison these at exception exit. By using task_pt_regs() as the high stack boundary instead of current_top_of_stack() we avoid some redundant poisoning, and the compiler can share the address generation between the poisoning and resetting of `current->lowest_stack`, making the generated code more optimal. It's not clear to me whether the existing `THREAD_SIZE/64` offset was a dodgy heuristic to skip the pt_regs, or whether it was attempting to minimize the number of times stackleak_check_stack() would have to update `current->lowest_stack` when stack usage was shallow at the cost of unconditionally poisoning a small portion of the stack for every exit to userspace. For now I've simply removed the offset, and if we need/want to minimize updates for shallow stack usage it should be easy to add a better heuristic atop, with appropriate commentary so we know what's going on. Signed-off-by: Mark Rutland <mark.rutland@arm.com> Cc: Alexander Popov <alex.popov@linux.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: Andy Lutomirski <luto@kernel.org> Cc: Kees Cook <keescook@chromium.org> Signed-off-by: Kees Cook <keescook@chromium.org> Link: https://lore.kernel.org/r/20220427173128.2603085-7-mark.rutland@arm.com
1 parent 1723d39 commit 0cfa2cc

2 files changed

Lines changed: 28 additions & 5 deletions

File tree

include/linux/stackleak.h

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,20 @@ stackleak_task_low_bound(const struct task_struct *tsk)
2828
return (unsigned long)end_of_stack(tsk) + sizeof(unsigned long);
2929
}
3030

31+
/*
32+
* The address immediately after the highest address on tsk's stack which we
33+
* can plausibly erase.
34+
*/
35+
static __always_inline unsigned long
36+
stackleak_task_high_bound(const struct task_struct *tsk)
37+
{
38+
/*
39+
* The task's pt_regs lives at the top of the task stack and will be
40+
* overwritten by exception entry, so there's no need to erase them.
41+
*/
42+
return (unsigned long)task_pt_regs(tsk);
43+
}
44+
3145
static inline void stackleak_task_init(struct task_struct *t)
3246
{
3347
t->lowest_stack = stackleak_task_low_bound(t);

kernel/stackleak.c

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ late_initcall(stackleak_sysctls_init);
7373
static __always_inline void __stackleak_erase(void)
7474
{
7575
const unsigned long task_stack_low = stackleak_task_low_bound(current);
76+
const unsigned long task_stack_high = stackleak_task_high_bound(current);
7677
unsigned long erase_low = current->lowest_stack;
7778
unsigned long erase_high;
7879
unsigned int poison_count = 0;
@@ -93,22 +94,30 @@ static __always_inline void __stackleak_erase(void)
9394
#endif
9495

9596
/*
96-
* Now write the poison value to the kernel stack between 'erase_low'
97-
* and 'erase_high'. We assume that the stack pointer doesn't change
98-
* when we write poison.
97+
* Write poison to the task's stack between 'erase_low' and
98+
* 'erase_high'.
99+
*
100+
* If we're running on a different stack (e.g. an entry trampoline
101+
* stack) we can erase everything below the pt_regs at the top of the
102+
* task stack.
103+
*
104+
* If we're running on the task stack itself, we must not clobber any
105+
* stack used by this function and its caller. We assume that this
106+
* function has a fixed-size stack frame, and the current stack pointer
107+
* doesn't change while we write poison.
99108
*/
100109
if (on_thread_stack())
101110
erase_high = current_stack_pointer;
102111
else
103-
erase_high = current_top_of_stack();
112+
erase_high = task_stack_high;
104113

105114
while (erase_low < erase_high) {
106115
*(unsigned long *)erase_low = STACKLEAK_POISON;
107116
erase_low += sizeof(unsigned long);
108117
}
109118

110119
/* Reset the 'lowest_stack' value for the next syscall */
111-
current->lowest_stack = current_top_of_stack() - THREAD_SIZE/64;
120+
current->lowest_stack = task_stack_high;
112121
}
113122

114123
asmlinkage void noinstr stackleak_erase(void)

0 commit comments

Comments
 (0)