11da177e4SLinus Torvalds /* 21da177e4SLinus Torvalds * linux/kernel/panic.c 31da177e4SLinus Torvalds * 41da177e4SLinus Torvalds * Copyright (C) 1991, 1992 Linus Torvalds 51da177e4SLinus Torvalds */ 61da177e4SLinus Torvalds 71da177e4SLinus Torvalds /* 81da177e4SLinus Torvalds * This function is used through-out the kernel (including mm and fs) 91da177e4SLinus Torvalds * to indicate a major problem. 101da177e4SLinus Torvalds */ 11657b3010SAndrew Morton #include <linux/debug_locks.h> 12c95dbf27SIngo Molnar #include <linux/interrupt.h> 13456b565cSSimon Kagstrom #include <linux/kmsg_dump.h> 1479b4cc5eSArjan van de Ven #include <linux/kallsyms.h> 15c95dbf27SIngo Molnar #include <linux/notifier.h> 16c95dbf27SIngo Molnar #include <linux/module.h> 17c95dbf27SIngo Molnar #include <linux/random.h> 18c95dbf27SIngo Molnar #include <linux/reboot.h> 19c95dbf27SIngo Molnar #include <linux/delay.h> 20c95dbf27SIngo Molnar #include <linux/kexec.h> 21c95dbf27SIngo Molnar #include <linux/sched.h> 22c95dbf27SIngo Molnar #include <linux/sysrq.h> 23c95dbf27SIngo Molnar #include <linux/init.h> 24c95dbf27SIngo Molnar #include <linux/nmi.h> 25bd89bb29SArjan van de Ven #include <linux/dmi.h> 261da177e4SLinus Torvalds 27c7ff0d9cSTAMUKI Shoichi #define PANIC_TIMER_STEP 100 28c7ff0d9cSTAMUKI Shoichi #define PANIC_BLINK_SPD 18 29c7ff0d9cSTAMUKI Shoichi 302a01bb38SKyle McMartin int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE; 3125ddbb18SAndi Kleen static unsigned long tainted_mask; 32dd287796SAndrew Morton static int pause_on_oops; 33dd287796SAndrew Morton static int pause_on_oops_flag; 34dd287796SAndrew Morton static DEFINE_SPINLOCK(pause_on_oops_lock); 351da177e4SLinus Torvalds 36dd287796SAndrew Morton int panic_timeout; 3781e88fdcSHuang Ying EXPORT_SYMBOL_GPL(panic_timeout); 381da177e4SLinus Torvalds 39e041c683SAlan Stern ATOMIC_NOTIFIER_HEAD(panic_notifier_list); 401da177e4SLinus Torvalds 411da177e4SLinus Torvalds EXPORT_SYMBOL(panic_notifier_list); 421da177e4SLinus Torvalds 43c7ff0d9cSTAMUKI Shoichi static long no_blink(int state) 448aeee85aSAnton Blanchard { 45c7ff0d9cSTAMUKI Shoichi return 0; 46c7ff0d9cSTAMUKI Shoichi } 478aeee85aSAnton Blanchard 48c7ff0d9cSTAMUKI Shoichi /* Returns how long it waited in ms */ 49c7ff0d9cSTAMUKI Shoichi long (*panic_blink)(int state); 50c7ff0d9cSTAMUKI Shoichi EXPORT_SYMBOL(panic_blink); 518aeee85aSAnton Blanchard 5293e13a36SMichael Holzheu /* 5393e13a36SMichael Holzheu * Stop ourself in panic -- architecture code may override this 5493e13a36SMichael Holzheu */ 5593e13a36SMichael Holzheu void __weak panic_smp_self_stop(void) 5693e13a36SMichael Holzheu { 5793e13a36SMichael Holzheu while (1) 5893e13a36SMichael Holzheu cpu_relax(); 5993e13a36SMichael Holzheu } 6093e13a36SMichael Holzheu 611da177e4SLinus Torvalds /** 621da177e4SLinus Torvalds * panic - halt the system 631da177e4SLinus Torvalds * @fmt: The text string to print 641da177e4SLinus Torvalds * 651da177e4SLinus Torvalds * Display a message, then perform cleanups. 661da177e4SLinus Torvalds * 671da177e4SLinus Torvalds * This function never returns. 681da177e4SLinus Torvalds */ 699402c95fSJoe Perches void panic(const char *fmt, ...) 701da177e4SLinus Torvalds { 7193e13a36SMichael Holzheu static DEFINE_SPINLOCK(panic_lock); 721da177e4SLinus Torvalds static char buf[1024]; 731da177e4SLinus Torvalds va_list args; 74c7ff0d9cSTAMUKI Shoichi long i, i_next = 0; 75c7ff0d9cSTAMUKI Shoichi int state = 0; 761da177e4SLinus Torvalds 77dc009d92SEric W. Biederman /* 78*190320c3SVikram Mulukutla * Disable local interrupts. This will prevent panic_smp_self_stop 79*190320c3SVikram Mulukutla * from deadlocking the first cpu that invokes the panic, since 80*190320c3SVikram Mulukutla * there is nothing to prevent an interrupt handler (that runs 81*190320c3SVikram Mulukutla * after the panic_lock is acquired) from invoking panic again. 82*190320c3SVikram Mulukutla */ 83*190320c3SVikram Mulukutla local_irq_disable(); 84*190320c3SVikram Mulukutla 85*190320c3SVikram Mulukutla /* 86c95dbf27SIngo Molnar * It's possible to come here directly from a panic-assertion and 87c95dbf27SIngo Molnar * not have preempt disabled. Some functions called from here want 88dc009d92SEric W. Biederman * preempt to be disabled. No point enabling it later though... 8993e13a36SMichael Holzheu * 9093e13a36SMichael Holzheu * Only one CPU is allowed to execute the panic code from here. For 9193e13a36SMichael Holzheu * multiple parallel invocations of panic, all other CPUs either 9293e13a36SMichael Holzheu * stop themself or will wait until they are stopped by the 1st CPU 9393e13a36SMichael Holzheu * with smp_send_stop(). 94dc009d92SEric W. Biederman */ 9593e13a36SMichael Holzheu if (!spin_trylock(&panic_lock)) 9693e13a36SMichael Holzheu panic_smp_self_stop(); 97dc009d92SEric W. Biederman 985b530fc1SAnton Blanchard console_verbose(); 991da177e4SLinus Torvalds bust_spinlocks(1); 1001da177e4SLinus Torvalds va_start(args, fmt); 1011da177e4SLinus Torvalds vsnprintf(buf, sizeof(buf), fmt, args); 1021da177e4SLinus Torvalds va_end(args); 1031da177e4SLinus Torvalds printk(KERN_EMERG "Kernel panic - not syncing: %s\n",buf); 1045cb27301SIngo Molnar #ifdef CONFIG_DEBUG_BUGVERBOSE 1056e6f0a1fSAndi Kleen /* 1066e6f0a1fSAndi Kleen * Avoid nested stack-dumping if a panic occurs during oops processing 1076e6f0a1fSAndi Kleen */ 108026ee1f6SJason Wessel if (!test_taint(TAINT_DIE) && oops_in_progress <= 1) 1095cb27301SIngo Molnar dump_stack(); 1105cb27301SIngo Molnar #endif 1111da177e4SLinus Torvalds 112dc009d92SEric W. Biederman /* 113dc009d92SEric W. Biederman * If we have crashed and we have a crash kernel loaded let it handle 114dc009d92SEric W. Biederman * everything else. 115dc009d92SEric W. Biederman * Do we want to call this before we try to display a message? 116dc009d92SEric W. Biederman */ 1176e274d14SAlexander Nyberg crash_kexec(NULL); 118dc009d92SEric W. Biederman 119dc009d92SEric W. Biederman /* 120dc009d92SEric W. Biederman * Note smp_send_stop is the usual smp shutdown function, which 121dc009d92SEric W. Biederman * unfortunately means it may not be hardened to work in a panic 122dc009d92SEric W. Biederman * situation. 123dc009d92SEric W. Biederman */ 1241da177e4SLinus Torvalds smp_send_stop(); 1251da177e4SLinus Torvalds 12662be73eaSSeiji Aguchi kmsg_dump(KMSG_DUMP_PANIC); 12762be73eaSSeiji Aguchi 128e041c683SAlan Stern atomic_notifier_call_chain(&panic_notifier_list, 0, buf); 1291da177e4SLinus Torvalds 130d014e889SAaro Koskinen bust_spinlocks(0); 131d014e889SAaro Koskinen 132c7ff0d9cSTAMUKI Shoichi if (!panic_blink) 133c7ff0d9cSTAMUKI Shoichi panic_blink = no_blink; 134c7ff0d9cSTAMUKI Shoichi 135dc009d92SEric W. Biederman if (panic_timeout > 0) { 1361da177e4SLinus Torvalds /* 1371da177e4SLinus Torvalds * Delay timeout seconds before rebooting the machine. 138c95dbf27SIngo Molnar * We can't use the "normal" timers since we just panicked. 1391da177e4SLinus Torvalds */ 1401da177e4SLinus Torvalds printk(KERN_EMERG "Rebooting in %d seconds..", panic_timeout); 141c95dbf27SIngo Molnar 142c7ff0d9cSTAMUKI Shoichi for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) { 1431da177e4SLinus Torvalds touch_nmi_watchdog(); 144c7ff0d9cSTAMUKI Shoichi if (i >= i_next) { 145c7ff0d9cSTAMUKI Shoichi i += panic_blink(state ^= 1); 146c7ff0d9cSTAMUKI Shoichi i_next = i + 3600 / PANIC_BLINK_SPD; 147c7ff0d9cSTAMUKI Shoichi } 148c7ff0d9cSTAMUKI Shoichi mdelay(PANIC_TIMER_STEP); 1491da177e4SLinus Torvalds } 1504302fbc8SHugh Dickins } 1514302fbc8SHugh Dickins if (panic_timeout != 0) { 152c95dbf27SIngo Molnar /* 153c95dbf27SIngo Molnar * This will not be a clean reboot, with everything 1542f048ea8SEric W. Biederman * shutting down. But if there is a chance of 1552f048ea8SEric W. Biederman * rebooting the system it will be rebooted. 1561da177e4SLinus Torvalds */ 1572f048ea8SEric W. Biederman emergency_restart(); 1581da177e4SLinus Torvalds } 1591da177e4SLinus Torvalds #ifdef __sparc__ 1601da177e4SLinus Torvalds { 1611da177e4SLinus Torvalds extern int stop_a_enabled; 162a271c241STom 'spot' Callaway /* Make sure the user can actually press Stop-A (L1-A) */ 1631da177e4SLinus Torvalds stop_a_enabled = 1; 164a271c241STom 'spot' Callaway printk(KERN_EMERG "Press Stop-A (L1-A) to return to the boot prom\n"); 1651da177e4SLinus Torvalds } 1661da177e4SLinus Torvalds #endif 167347a8dc3SMartin Schwidefsky #if defined(CONFIG_S390) 168c95dbf27SIngo Molnar { 169c95dbf27SIngo Molnar unsigned long caller; 170c95dbf27SIngo Molnar 171c95dbf27SIngo Molnar caller = (unsigned long)__builtin_return_address(0); 1721da177e4SLinus Torvalds disabled_wait(caller); 173c95dbf27SIngo Molnar } 1741da177e4SLinus Torvalds #endif 1751da177e4SLinus Torvalds local_irq_enable(); 176c7ff0d9cSTAMUKI Shoichi for (i = 0; ; i += PANIC_TIMER_STEP) { 177c22db941SJan Beulich touch_softlockup_watchdog(); 178c7ff0d9cSTAMUKI Shoichi if (i >= i_next) { 179c7ff0d9cSTAMUKI Shoichi i += panic_blink(state ^= 1); 180c7ff0d9cSTAMUKI Shoichi i_next = i + 3600 / PANIC_BLINK_SPD; 181c7ff0d9cSTAMUKI Shoichi } 182c7ff0d9cSTAMUKI Shoichi mdelay(PANIC_TIMER_STEP); 1831da177e4SLinus Torvalds } 1841da177e4SLinus Torvalds } 1851da177e4SLinus Torvalds 1861da177e4SLinus Torvalds EXPORT_SYMBOL(panic); 1871da177e4SLinus Torvalds 1881da177e4SLinus Torvalds 18925ddbb18SAndi Kleen struct tnt { 19025ddbb18SAndi Kleen u8 bit; 19125ddbb18SAndi Kleen char true; 19225ddbb18SAndi Kleen char false; 19325ddbb18SAndi Kleen }; 19425ddbb18SAndi Kleen 19525ddbb18SAndi Kleen static const struct tnt tnts[] = { 19625ddbb18SAndi Kleen { TAINT_PROPRIETARY_MODULE, 'P', 'G' }, 19725ddbb18SAndi Kleen { TAINT_FORCED_MODULE, 'F', ' ' }, 19825ddbb18SAndi Kleen { TAINT_UNSAFE_SMP, 'S', ' ' }, 19925ddbb18SAndi Kleen { TAINT_FORCED_RMMOD, 'R', ' ' }, 20025ddbb18SAndi Kleen { TAINT_MACHINE_CHECK, 'M', ' ' }, 20125ddbb18SAndi Kleen { TAINT_BAD_PAGE, 'B', ' ' }, 20225ddbb18SAndi Kleen { TAINT_USER, 'U', ' ' }, 20325ddbb18SAndi Kleen { TAINT_DIE, 'D', ' ' }, 20425ddbb18SAndi Kleen { TAINT_OVERRIDDEN_ACPI_TABLE, 'A', ' ' }, 20525ddbb18SAndi Kleen { TAINT_WARN, 'W', ' ' }, 20626e9a397SLinus Torvalds { TAINT_CRAP, 'C', ' ' }, 20792946bc7SBen Hutchings { TAINT_FIRMWARE_WORKAROUND, 'I', ' ' }, 2082449b8baSBen Hutchings { TAINT_OOT_MODULE, 'O', ' ' }, 20925ddbb18SAndi Kleen }; 21025ddbb18SAndi Kleen 2111da177e4SLinus Torvalds /** 2121da177e4SLinus Torvalds * print_tainted - return a string to represent the kernel taint state. 2131da177e4SLinus Torvalds * 2141da177e4SLinus Torvalds * 'P' - Proprietary module has been loaded. 2151da177e4SLinus Torvalds * 'F' - Module has been forcibly loaded. 2161da177e4SLinus Torvalds * 'S' - SMP with CPUs not designed for SMP. 2171da177e4SLinus Torvalds * 'R' - User forced a module unload. 2181da177e4SLinus Torvalds * 'M' - System experienced a machine check exception. 2191da177e4SLinus Torvalds * 'B' - System has hit bad_page. 2201da177e4SLinus Torvalds * 'U' - Userspace-defined naughtiness. 221a8005992SArjan van de Ven * 'D' - Kernel has oopsed before 2221da177e4SLinus Torvalds * 'A' - ACPI table overridden. 2231da177e4SLinus Torvalds * 'W' - Taint on warning. 224061b1bd3SGreg Kroah-Hartman * 'C' - modules from drivers/staging are loaded. 22592946bc7SBen Hutchings * 'I' - Working around severe firmware bug. 2262449b8baSBen Hutchings * 'O' - Out-of-tree module has been loaded. 2271da177e4SLinus Torvalds * 228fe002a41SRobert P. J. Day * The string is overwritten by the next call to print_tainted(). 2291da177e4SLinus Torvalds */ 2301da177e4SLinus Torvalds const char *print_tainted(void) 2311da177e4SLinus Torvalds { 23225ddbb18SAndi Kleen static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ") + 1]; 23325ddbb18SAndi Kleen 23425ddbb18SAndi Kleen if (tainted_mask) { 23525ddbb18SAndi Kleen char *s; 23625ddbb18SAndi Kleen int i; 23725ddbb18SAndi Kleen 23825ddbb18SAndi Kleen s = buf + sprintf(buf, "Tainted: "); 23925ddbb18SAndi Kleen for (i = 0; i < ARRAY_SIZE(tnts); i++) { 24025ddbb18SAndi Kleen const struct tnt *t = &tnts[i]; 24125ddbb18SAndi Kleen *s++ = test_bit(t->bit, &tainted_mask) ? 24225ddbb18SAndi Kleen t->true : t->false; 2431da177e4SLinus Torvalds } 24425ddbb18SAndi Kleen *s = 0; 24525ddbb18SAndi Kleen } else 2461da177e4SLinus Torvalds snprintf(buf, sizeof(buf), "Not tainted"); 247c95dbf27SIngo Molnar 248c95dbf27SIngo Molnar return buf; 2491da177e4SLinus Torvalds } 2501da177e4SLinus Torvalds 25125ddbb18SAndi Kleen int test_taint(unsigned flag) 25225ddbb18SAndi Kleen { 25325ddbb18SAndi Kleen return test_bit(flag, &tainted_mask); 25425ddbb18SAndi Kleen } 25525ddbb18SAndi Kleen EXPORT_SYMBOL(test_taint); 25625ddbb18SAndi Kleen 25725ddbb18SAndi Kleen unsigned long get_taint(void) 25825ddbb18SAndi Kleen { 25925ddbb18SAndi Kleen return tainted_mask; 26025ddbb18SAndi Kleen } 26125ddbb18SAndi Kleen 2621da177e4SLinus Torvalds void add_taint(unsigned flag) 2631da177e4SLinus Torvalds { 2649eeba613SFrederic Weisbecker /* 2659eeba613SFrederic Weisbecker * Can't trust the integrity of the kernel anymore. 2669eeba613SFrederic Weisbecker * We don't call directly debug_locks_off() because the issue 2679eeba613SFrederic Weisbecker * is not necessarily serious enough to set oops_in_progress to 1 2689ec84aceSBen Hutchings * Also we want to keep up lockdep for staging/out-of-tree 2699ec84aceSBen Hutchings * development and post-warning case. 2709eeba613SFrederic Weisbecker */ 271df754e6aSPeter Zijlstra switch (flag) { 272df754e6aSPeter Zijlstra case TAINT_CRAP: 2739ec84aceSBen Hutchings case TAINT_OOT_MODULE: 274df754e6aSPeter Zijlstra case TAINT_WARN: 275df754e6aSPeter Zijlstra case TAINT_FIRMWARE_WORKAROUND: 276df754e6aSPeter Zijlstra break; 277df754e6aSPeter Zijlstra 278df754e6aSPeter Zijlstra default: 279df754e6aSPeter Zijlstra if (__debug_locks_off()) 280b48ccb09SIngo Molnar printk(KERN_WARNING "Disabling lock debugging due to kernel taint\n"); 281df754e6aSPeter Zijlstra } 2829eeba613SFrederic Weisbecker 28325ddbb18SAndi Kleen set_bit(flag, &tainted_mask); 2841da177e4SLinus Torvalds } 2851da177e4SLinus Torvalds EXPORT_SYMBOL(add_taint); 286dd287796SAndrew Morton 287dd287796SAndrew Morton static void spin_msec(int msecs) 288dd287796SAndrew Morton { 289dd287796SAndrew Morton int i; 290dd287796SAndrew Morton 291dd287796SAndrew Morton for (i = 0; i < msecs; i++) { 292dd287796SAndrew Morton touch_nmi_watchdog(); 293dd287796SAndrew Morton mdelay(1); 294dd287796SAndrew Morton } 295dd287796SAndrew Morton } 296dd287796SAndrew Morton 297dd287796SAndrew Morton /* 298dd287796SAndrew Morton * It just happens that oops_enter() and oops_exit() are identically 299dd287796SAndrew Morton * implemented... 300dd287796SAndrew Morton */ 301dd287796SAndrew Morton static void do_oops_enter_exit(void) 302dd287796SAndrew Morton { 303dd287796SAndrew Morton unsigned long flags; 304dd287796SAndrew Morton static int spin_counter; 305dd287796SAndrew Morton 306dd287796SAndrew Morton if (!pause_on_oops) 307dd287796SAndrew Morton return; 308dd287796SAndrew Morton 309dd287796SAndrew Morton spin_lock_irqsave(&pause_on_oops_lock, flags); 310dd287796SAndrew Morton if (pause_on_oops_flag == 0) { 311dd287796SAndrew Morton /* This CPU may now print the oops message */ 312dd287796SAndrew Morton pause_on_oops_flag = 1; 313dd287796SAndrew Morton } else { 314dd287796SAndrew Morton /* We need to stall this CPU */ 315dd287796SAndrew Morton if (!spin_counter) { 316dd287796SAndrew Morton /* This CPU gets to do the counting */ 317dd287796SAndrew Morton spin_counter = pause_on_oops; 318dd287796SAndrew Morton do { 319dd287796SAndrew Morton spin_unlock(&pause_on_oops_lock); 320dd287796SAndrew Morton spin_msec(MSEC_PER_SEC); 321dd287796SAndrew Morton spin_lock(&pause_on_oops_lock); 322dd287796SAndrew Morton } while (--spin_counter); 323dd287796SAndrew Morton pause_on_oops_flag = 0; 324dd287796SAndrew Morton } else { 325dd287796SAndrew Morton /* This CPU waits for a different one */ 326dd287796SAndrew Morton while (spin_counter) { 327dd287796SAndrew Morton spin_unlock(&pause_on_oops_lock); 328dd287796SAndrew Morton spin_msec(1); 329dd287796SAndrew Morton spin_lock(&pause_on_oops_lock); 330dd287796SAndrew Morton } 331dd287796SAndrew Morton } 332dd287796SAndrew Morton } 333dd287796SAndrew Morton spin_unlock_irqrestore(&pause_on_oops_lock, flags); 334dd287796SAndrew Morton } 335dd287796SAndrew Morton 336dd287796SAndrew Morton /* 337c95dbf27SIngo Molnar * Return true if the calling CPU is allowed to print oops-related info. 338c95dbf27SIngo Molnar * This is a bit racy.. 339dd287796SAndrew Morton */ 340dd287796SAndrew Morton int oops_may_print(void) 341dd287796SAndrew Morton { 342dd287796SAndrew Morton return pause_on_oops_flag == 0; 343dd287796SAndrew Morton } 344dd287796SAndrew Morton 345dd287796SAndrew Morton /* 346dd287796SAndrew Morton * Called when the architecture enters its oops handler, before it prints 347c95dbf27SIngo Molnar * anything. If this is the first CPU to oops, and it's oopsing the first 348c95dbf27SIngo Molnar * time then let it proceed. 349dd287796SAndrew Morton * 350c95dbf27SIngo Molnar * This is all enabled by the pause_on_oops kernel boot option. We do all 351c95dbf27SIngo Molnar * this to ensure that oopses don't scroll off the screen. It has the 352c95dbf27SIngo Molnar * side-effect of preventing later-oopsing CPUs from mucking up the display, 353c95dbf27SIngo Molnar * too. 354dd287796SAndrew Morton * 355c95dbf27SIngo Molnar * It turns out that the CPU which is allowed to print ends up pausing for 356c95dbf27SIngo Molnar * the right duration, whereas all the other CPUs pause for twice as long: 357c95dbf27SIngo Molnar * once in oops_enter(), once in oops_exit(). 358dd287796SAndrew Morton */ 359dd287796SAndrew Morton void oops_enter(void) 360dd287796SAndrew Morton { 361bdff7870SThomas Gleixner tracing_off(); 362c95dbf27SIngo Molnar /* can't trust the integrity of the kernel anymore: */ 363c95dbf27SIngo Molnar debug_locks_off(); 364dd287796SAndrew Morton do_oops_enter_exit(); 365dd287796SAndrew Morton } 366dd287796SAndrew Morton 367dd287796SAndrew Morton /* 3682c3b20e9SArjan van de Ven * 64-bit random ID for oopses: 3692c3b20e9SArjan van de Ven */ 3702c3b20e9SArjan van de Ven static u64 oops_id; 3712c3b20e9SArjan van de Ven 3722c3b20e9SArjan van de Ven static int init_oops_id(void) 3732c3b20e9SArjan van de Ven { 3742c3b20e9SArjan van de Ven if (!oops_id) 3752c3b20e9SArjan van de Ven get_random_bytes(&oops_id, sizeof(oops_id)); 376d6624f99SArjan van de Ven else 377d6624f99SArjan van de Ven oops_id++; 3782c3b20e9SArjan van de Ven 3792c3b20e9SArjan van de Ven return 0; 3802c3b20e9SArjan van de Ven } 3812c3b20e9SArjan van de Ven late_initcall(init_oops_id); 3822c3b20e9SArjan van de Ven 383863a6049SAnton Blanchard void print_oops_end_marker(void) 38471c33911SArjan van de Ven { 38571c33911SArjan van de Ven init_oops_id(); 38671c33911SArjan van de Ven printk(KERN_WARNING "---[ end trace %016llx ]---\n", 38771c33911SArjan van de Ven (unsigned long long)oops_id); 38871c33911SArjan van de Ven } 38971c33911SArjan van de Ven 3902c3b20e9SArjan van de Ven /* 391dd287796SAndrew Morton * Called when the architecture exits its oops handler, after printing 392dd287796SAndrew Morton * everything. 393dd287796SAndrew Morton */ 394dd287796SAndrew Morton void oops_exit(void) 395dd287796SAndrew Morton { 396dd287796SAndrew Morton do_oops_enter_exit(); 39771c33911SArjan van de Ven print_oops_end_marker(); 398456b565cSSimon Kagstrom kmsg_dump(KMSG_DUMP_OOPS); 399dd287796SAndrew Morton } 4003162f751SArjan van de Ven 40179b4cc5eSArjan van de Ven #ifdef WANT_WARN_ON_SLOWPATH 4020f6f49a8SLinus Torvalds struct slowpath_args { 4030f6f49a8SLinus Torvalds const char *fmt; 404a8f18b90SArjan van de Ven va_list args; 4050f6f49a8SLinus Torvalds }; 4060f6f49a8SLinus Torvalds 407b2be0527SBen Hutchings static void warn_slowpath_common(const char *file, int line, void *caller, 408b2be0527SBen Hutchings unsigned taint, struct slowpath_args *args) 4090f6f49a8SLinus Torvalds { 410bd89bb29SArjan van de Ven const char *board; 411bd89bb29SArjan van de Ven 412a8f18b90SArjan van de Ven printk(KERN_WARNING "------------[ cut here ]------------\n"); 4130f6f49a8SLinus Torvalds printk(KERN_WARNING "WARNING: at %s:%d %pS()\n", file, line, caller); 414bd89bb29SArjan van de Ven board = dmi_get_system_info(DMI_PRODUCT_NAME); 415bd89bb29SArjan van de Ven if (board) 416bd89bb29SArjan van de Ven printk(KERN_WARNING "Hardware name: %s\n", board); 41774853dbaSArjan van de Ven 4180f6f49a8SLinus Torvalds if (args) 4190f6f49a8SLinus Torvalds vprintk(args->fmt, args->args); 420a8f18b90SArjan van de Ven 421a8f18b90SArjan van de Ven print_modules(); 422a8f18b90SArjan van de Ven dump_stack(); 423a8f18b90SArjan van de Ven print_oops_end_marker(); 424b2be0527SBen Hutchings add_taint(taint); 425a8f18b90SArjan van de Ven } 4260f6f49a8SLinus Torvalds 4270f6f49a8SLinus Torvalds void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...) 4280f6f49a8SLinus Torvalds { 4290f6f49a8SLinus Torvalds struct slowpath_args args; 4300f6f49a8SLinus Torvalds 4310f6f49a8SLinus Torvalds args.fmt = fmt; 4320f6f49a8SLinus Torvalds va_start(args.args, fmt); 433b2be0527SBen Hutchings warn_slowpath_common(file, line, __builtin_return_address(0), 434b2be0527SBen Hutchings TAINT_WARN, &args); 4350f6f49a8SLinus Torvalds va_end(args.args); 4360f6f49a8SLinus Torvalds } 43757adc4d2SAndi Kleen EXPORT_SYMBOL(warn_slowpath_fmt); 43857adc4d2SAndi Kleen 439b2be0527SBen Hutchings void warn_slowpath_fmt_taint(const char *file, int line, 440b2be0527SBen Hutchings unsigned taint, const char *fmt, ...) 441b2be0527SBen Hutchings { 442b2be0527SBen Hutchings struct slowpath_args args; 443b2be0527SBen Hutchings 444b2be0527SBen Hutchings args.fmt = fmt; 445b2be0527SBen Hutchings va_start(args.args, fmt); 446b2be0527SBen Hutchings warn_slowpath_common(file, line, __builtin_return_address(0), 447b2be0527SBen Hutchings taint, &args); 448b2be0527SBen Hutchings va_end(args.args); 449b2be0527SBen Hutchings } 450b2be0527SBen Hutchings EXPORT_SYMBOL(warn_slowpath_fmt_taint); 451b2be0527SBen Hutchings 45257adc4d2SAndi Kleen void warn_slowpath_null(const char *file, int line) 45357adc4d2SAndi Kleen { 454b2be0527SBen Hutchings warn_slowpath_common(file, line, __builtin_return_address(0), 455b2be0527SBen Hutchings TAINT_WARN, NULL); 45657adc4d2SAndi Kleen } 45757adc4d2SAndi Kleen EXPORT_SYMBOL(warn_slowpath_null); 45879b4cc5eSArjan van de Ven #endif 45979b4cc5eSArjan van de Ven 4603162f751SArjan van de Ven #ifdef CONFIG_CC_STACKPROTECTOR 46154371a43SArjan van de Ven 4623162f751SArjan van de Ven /* 4633162f751SArjan van de Ven * Called when gcc's -fstack-protector feature is used, and 4643162f751SArjan van de Ven * gcc detects corruption of the on-stack canary value 4653162f751SArjan van de Ven */ 4663162f751SArjan van de Ven void __stack_chk_fail(void) 4673162f751SArjan van de Ven { 468517a92c4SIngo Molnar panic("stack-protector: Kernel stack is corrupted in: %p\n", 469517a92c4SIngo Molnar __builtin_return_address(0)); 4703162f751SArjan van de Ven } 4713162f751SArjan van de Ven EXPORT_SYMBOL(__stack_chk_fail); 47254371a43SArjan van de Ven 4733162f751SArjan van de Ven #endif 474f44dd164SRusty Russell 475f44dd164SRusty Russell core_param(panic, panic_timeout, int, 0644); 476f44dd164SRusty Russell core_param(pause_on_oops, pause_on_oops, int, 0644); 477d404ab0aSOlaf Hering 478d404ab0aSOlaf Hering static int __init oops_setup(char *s) 479d404ab0aSOlaf Hering { 480d404ab0aSOlaf Hering if (!s) 481d404ab0aSOlaf Hering return -EINVAL; 482d404ab0aSOlaf Hering if (!strcmp(s, "panic")) 483d404ab0aSOlaf Hering panic_on_oops = 1; 484d404ab0aSOlaf Hering return 0; 485d404ab0aSOlaf Hering } 486d404ab0aSOlaf Hering early_param("oops", oops_setup); 487