diff options
author | Alexander Shishkin <alexander.shishkin@linux.intel.com> | 2017-07-24 06:04:28 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2017-11-10 02:04:19 -0500 |
commit | b8347c2196492f4e1cccde3d92fda1cc2cc7de7e (patch) | |
tree | 5de43435f937ffaa8ea5525517c5aef848faf2bb | |
parent | be739f4b5ddece74ef25e2304b17a7fd24575e9b (diff) |
x86/debug: Handle warnings before the notifier chain, to fix KGDB crash
Commit:
9a93848fe787 ("x86/debug: Implement __WARN() using UD0")
turned warnings into UD0, but the fixup code only runs after the
notify_die() chain. This is a problem, in particular, with kgdb,
which kicks in as if it was a BUG().
Fix this by running the fixup code before the notifier chain in
the invalid op handler path.
Signed-off-by: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Tested-by: Ilya Dryomov <idryomov@gmail.com>
Acked-by: Daniel Thompson <daniel.thompson@linaro.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason Wessel <jason.wessel@windriver.com>
Cc: Arjan van de Ven <arjan@linux.intel.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Richard Weinberger <richard.weinberger@gmail.com>
Cc: <stable@vger.kernel.org> # v4.12+
Link: http://lkml.kernel.org/r/20170724100428.19173-1-alexander.shishkin@linux.intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r-- | arch/x86/kernel/traps.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c index 67db4f43309e..5a6b8f809792 100644 --- a/arch/x86/kernel/traps.c +++ b/arch/x86/kernel/traps.c | |||
@@ -209,9 +209,6 @@ do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str, | |||
209 | if (fixup_exception(regs, trapnr)) | 209 | if (fixup_exception(regs, trapnr)) |
210 | return 0; | 210 | return 0; |
211 | 211 | ||
212 | if (fixup_bug(regs, trapnr)) | ||
213 | return 0; | ||
214 | |||
215 | tsk->thread.error_code = error_code; | 212 | tsk->thread.error_code = error_code; |
216 | tsk->thread.trap_nr = trapnr; | 213 | tsk->thread.trap_nr = trapnr; |
217 | die(str, regs, error_code); | 214 | die(str, regs, error_code); |
@@ -292,6 +289,13 @@ static void do_error_trap(struct pt_regs *regs, long error_code, char *str, | |||
292 | 289 | ||
293 | RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU"); | 290 | RCU_LOCKDEP_WARN(!rcu_is_watching(), "entry code didn't wake RCU"); |
294 | 291 | ||
292 | /* | ||
293 | * WARN*()s end up here; fix them up before we call the | ||
294 | * notifier chain. | ||
295 | */ | ||
296 | if (!user_mode(regs) && fixup_bug(regs, trapnr)) | ||
297 | return; | ||
298 | |||
295 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) != | 299 | if (notify_die(DIE_TRAP, str, regs, error_code, trapnr, signr) != |
296 | NOTIFY_STOP) { | 300 | NOTIFY_STOP) { |
297 | cond_local_irq_enable(regs); | 301 | cond_local_irq_enable(regs); |