aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/traps_64.c
diff options
context:
space:
mode:
authorJan Beulich <jbeulich@novell.com>2008-01-30 07:31:23 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:23 -0500
commit22f5991c85dec1281cce5c8df9ee92b43b1738c8 (patch)
tree9a0814a5b3c37b3752ee7dfcc6f6b2b6793dfe91 /arch/x86/kernel/traps_64.c
parentd88879b2d0225da3ba460bbdb8361bb049653671 (diff)
x86-64: honor notify_die() returning NOTIFY_STOP
This requires making die() return a value, making its callers honor this (and be prepared that it may return), and making oops_end() have two additional parameters. Signed-off-by: Jan Beulich <jbeulich@novell.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/traps_64.c')
-rw-r--r--arch/x86/kernel/traps_64.c23
1 files changed, 15 insertions, 8 deletions
diff --git a/arch/x86/kernel/traps_64.c b/arch/x86/kernel/traps_64.c
index 1a12a81fdb1..cf90ceb48f5 100644
--- a/arch/x86/kernel/traps_64.c
+++ b/arch/x86/kernel/traps_64.c
@@ -488,7 +488,7 @@ unsigned __kprobes long oops_begin(void)
488 return flags; 488 return flags;
489} 489}
490 490
491void __kprobes oops_end(unsigned long flags) 491void __kprobes oops_end(unsigned long flags, struct pt_regs *regs, int signr)
492{ 492{
493 die_owner = -1; 493 die_owner = -1;
494 bust_spinlocks(0); 494 bust_spinlocks(0);
@@ -497,12 +497,17 @@ void __kprobes oops_end(unsigned long flags)
497 /* Nest count reaches zero, release the lock. */ 497 /* Nest count reaches zero, release the lock. */
498 __raw_spin_unlock(&die_lock); 498 __raw_spin_unlock(&die_lock);
499 raw_local_irq_restore(flags); 499 raw_local_irq_restore(flags);
500 if (!regs) {
501 oops_exit();
502 return;
503 }
500 if (panic_on_oops) 504 if (panic_on_oops)
501 panic("Fatal exception"); 505 panic("Fatal exception");
502 oops_exit(); 506 oops_exit();
507 do_exit(signr);
503} 508}
504 509
505void __kprobes __die(const char * str, struct pt_regs * regs, long err) 510int __kprobes __die(const char * str, struct pt_regs * regs, long err)
506{ 511{
507 static int die_counter; 512 static int die_counter;
508 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter); 513 printk(KERN_EMERG "%s: %04lx [%u] ", str, err & 0xffff,++die_counter);
@@ -516,7 +521,8 @@ void __kprobes __die(const char * str, struct pt_regs * regs, long err)
516 printk("DEBUG_PAGEALLOC"); 521 printk("DEBUG_PAGEALLOC");
517#endif 522#endif
518 printk("\n"); 523 printk("\n");
519 notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV); 524 if (notify_die(DIE_OOPS, str, regs, err, current->thread.trap_no, SIGSEGV) == NOTIFY_STOP)
525 return 1;
520 show_registers(regs); 526 show_registers(regs);
521 add_taint(TAINT_DIE); 527 add_taint(TAINT_DIE);
522 /* Executive summary in case the oops scrolled away */ 528 /* Executive summary in case the oops scrolled away */
@@ -525,6 +531,7 @@ void __kprobes __die(const char * str, struct pt_regs * regs, long err)
525 printk(" RSP <%016lx>\n", regs->sp); 531 printk(" RSP <%016lx>\n", regs->sp);
526 if (kexec_should_crash(current)) 532 if (kexec_should_crash(current))
527 crash_kexec(regs); 533 crash_kexec(regs);
534 return 0;
528} 535}
529 536
530void die(const char * str, struct pt_regs * regs, long err) 537void die(const char * str, struct pt_regs * regs, long err)
@@ -534,9 +541,9 @@ void die(const char * str, struct pt_regs * regs, long err)
534 if (!user_mode(regs)) 541 if (!user_mode(regs))
535 report_bug(regs->ip, regs); 542 report_bug(regs->ip, regs);
536 543
537 __die(str, regs, err); 544 if (__die(str, regs, err))
538 oops_end(flags); 545 regs = NULL;
539 do_exit(SIGSEGV); 546 oops_end(flags, regs, SIGSEGV);
540} 547}
541 548
542void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic) 549void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
@@ -553,10 +560,10 @@ void __kprobes die_nmi(char *str, struct pt_regs *regs, int do_panic)
553 crash_kexec(regs); 560 crash_kexec(regs);
554 if (do_panic || panic_on_oops) 561 if (do_panic || panic_on_oops)
555 panic("Non maskable interrupt"); 562 panic("Non maskable interrupt");
556 oops_end(flags); 563 oops_end(flags, NULL, SIGBUS);
557 nmi_exit(); 564 nmi_exit();
558 local_irq_enable(); 565 local_irq_enable();
559 do_exit(SIGSEGV); 566 do_exit(SIGBUS);
560} 567}
561 568
562static void __kprobes do_trap(int trapnr, int signr, char *str, 569static void __kprobes do_trap(int trapnr, int signr, char *str,