| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184 |
- From 45b01b77bd3529e761bca6de0f0ed79549377479 Mon Sep 17 00:00:00 2001
- From: Andy Lutomirski <[email protected]>
- Date: Mon, 4 Dec 2017 15:07:13 +0100
- Subject: [PATCH 143/242] x86/dumpstack: Add get_stack_info() support for the
- SYSENTER stack
- MIME-Version: 1.0
- Content-Type: text/plain; charset=UTF-8
- Content-Transfer-Encoding: 8bit
- CVE-2017-5754
- get_stack_info() doesn't currently know about the SYSENTER stack, so
- unwinding will fail if we entered the kernel on the SYSENTER stack
- and haven't fully switched off. Teach get_stack_info() about the
- SYSENTER stack.
- With future patches applied that run part of the entry code on the
- SYSENTER stack and introduce an intentional BUG(), I would get:
- PANIC: double fault, error_code: 0x0
- ...
- RIP: 0010:do_error_trap+0x33/0x1c0
- ...
- Call Trace:
- Code: ...
- With this patch, I get:
- PANIC: double fault, error_code: 0x0
- ...
- Call Trace:
- <SYSENTER>
- ? async_page_fault+0x36/0x60
- ? invalid_op+0x22/0x40
- ? async_page_fault+0x36/0x60
- ? sync_regs+0x3c/0x40
- ? sync_regs+0x2e/0x40
- ? error_entry+0x6c/0xd0
- ? async_page_fault+0x36/0x60
- </SYSENTER>
- Code: ...
- which is a lot more informative.
- Signed-off-by: Andy Lutomirski <[email protected]>
- Signed-off-by: Thomas Gleixner <[email protected]>
- Reviewed-by: Borislav Petkov <[email protected]>
- Cc: Boris Ostrovsky <[email protected]>
- Cc: Borislav Petkov <[email protected]>
- Cc: Borislav Petkov <[email protected]>
- Cc: Brian Gerst <[email protected]>
- Cc: Dave Hansen <[email protected]>
- Cc: Dave Hansen <[email protected]>
- Cc: David Laight <[email protected]>
- Cc: Denys Vlasenko <[email protected]>
- Cc: Eduardo Valentin <[email protected]>
- Cc: Greg KH <[email protected]>
- Cc: H. Peter Anvin <[email protected]>
- Cc: Josh Poimboeuf <[email protected]>
- Cc: Juergen Gross <[email protected]>
- Cc: Linus Torvalds <[email protected]>
- Cc: Peter Zijlstra <[email protected]>
- Cc: Rik van Riel <[email protected]>
- Cc: Will Deacon <[email protected]>
- Cc: [email protected]
- Cc: [email protected]
- Cc: [email protected]
- Cc: [email protected]
- Link: https://lkml.kernel.org/r/[email protected]
- Signed-off-by: Ingo Molnar <[email protected]>
- (cherry picked from commit 33a2f1a6c4d7c0a02d1c006fb0379cc5ca3b96bb)
- Signed-off-by: Andy Whitcroft <[email protected]>
- Signed-off-by: Kleber Sacilotto de Souza <[email protected]>
- (cherry picked from commit 72e90cc5463cf882c5f9508817029d85b317f2b5)
- Signed-off-by: Fabian Grünbichler <[email protected]>
- ---
- arch/x86/include/asm/stacktrace.h | 3 +++
- arch/x86/kernel/dumpstack.c | 19 +++++++++++++++++++
- arch/x86/kernel/dumpstack_32.c | 6 ++++++
- arch/x86/kernel/dumpstack_64.c | 6 ++++++
- 4 files changed, 34 insertions(+)
- diff --git a/arch/x86/include/asm/stacktrace.h b/arch/x86/include/asm/stacktrace.h
- index 2e41c50ddf47..95f999576131 100644
- --- a/arch/x86/include/asm/stacktrace.h
- +++ b/arch/x86/include/asm/stacktrace.h
- @@ -15,6 +15,7 @@ enum stack_type {
- STACK_TYPE_TASK,
- STACK_TYPE_IRQ,
- STACK_TYPE_SOFTIRQ,
- + STACK_TYPE_SYSENTER,
- STACK_TYPE_EXCEPTION,
- STACK_TYPE_EXCEPTION_LAST = STACK_TYPE_EXCEPTION + N_EXCEPTION_STACKS-1,
- };
- @@ -27,6 +28,8 @@ struct stack_info {
- bool in_task_stack(unsigned long *stack, struct task_struct *task,
- struct stack_info *info);
-
- +bool in_sysenter_stack(unsigned long *stack, struct stack_info *info);
- +
- int get_stack_info(unsigned long *stack, struct task_struct *task,
- struct stack_info *info, unsigned long *visit_mask);
-
- diff --git a/arch/x86/kernel/dumpstack.c b/arch/x86/kernel/dumpstack.c
- index 695cdce5dfc8..c211cbdff709 100644
- --- a/arch/x86/kernel/dumpstack.c
- +++ b/arch/x86/kernel/dumpstack.c
- @@ -43,6 +43,25 @@ bool in_task_stack(unsigned long *stack, struct task_struct *task,
- return true;
- }
-
- +bool in_sysenter_stack(unsigned long *stack, struct stack_info *info)
- +{
- + struct tss_struct *tss = this_cpu_ptr(&cpu_tss);
- +
- + /* Treat the canary as part of the stack for unwinding purposes. */
- + void *begin = &tss->SYSENTER_stack_canary;
- + void *end = (void *)&tss->SYSENTER_stack + sizeof(tss->SYSENTER_stack);
- +
- + if ((void *)stack < begin || (void *)stack >= end)
- + return false;
- +
- + info->type = STACK_TYPE_SYSENTER;
- + info->begin = begin;
- + info->end = end;
- + info->next_sp = NULL;
- +
- + return true;
- +}
- +
- static void printk_stack_address(unsigned long address, int reliable,
- char *log_lvl)
- {
- diff --git a/arch/x86/kernel/dumpstack_32.c b/arch/x86/kernel/dumpstack_32.c
- index e5f0b40e66d2..3160bf2d100e 100644
- --- a/arch/x86/kernel/dumpstack_32.c
- +++ b/arch/x86/kernel/dumpstack_32.c
- @@ -25,6 +25,9 @@ const char *stack_type_name(enum stack_type type)
- if (type == STACK_TYPE_SOFTIRQ)
- return "SOFTIRQ";
-
- + if (type == STACK_TYPE_SYSENTER)
- + return "SYSENTER";
- +
- return NULL;
- }
-
- @@ -92,6 +95,9 @@ int get_stack_info(unsigned long *stack, struct task_struct *task,
- if (task != current)
- goto unknown;
-
- + if (in_sysenter_stack(stack, info))
- + goto recursion_check;
- +
- if (in_hardirq_stack(stack, info))
- goto recursion_check;
-
- diff --git a/arch/x86/kernel/dumpstack_64.c b/arch/x86/kernel/dumpstack_64.c
- index 3e1471d57487..f5107b659f86 100644
- --- a/arch/x86/kernel/dumpstack_64.c
- +++ b/arch/x86/kernel/dumpstack_64.c
- @@ -36,6 +36,9 @@ const char *stack_type_name(enum stack_type type)
- if (type == STACK_TYPE_IRQ)
- return "IRQ";
-
- + if (type == STACK_TYPE_SYSENTER)
- + return "SYSENTER";
- +
- if (type >= STACK_TYPE_EXCEPTION && type <= STACK_TYPE_EXCEPTION_LAST)
- return exception_stack_names[type - STACK_TYPE_EXCEPTION];
-
- @@ -114,6 +117,9 @@ int get_stack_info(unsigned long *stack, struct task_struct *task,
- if (in_irq_stack(stack, info))
- goto recursion_check;
-
- + if (in_sysenter_stack(stack, info))
- + goto recursion_check;
- +
- goto unknown;
-
- recursion_check:
- --
- 2.14.2
|