2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* linux/kernel/panic.c
|
|
|
|
*
|
|
|
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function is used through-out the kernel (including mm and fs)
|
|
|
|
* to indicate a major problem.
|
|
|
|
*/
|
2009-03-13 10:14:06 +00:00
|
|
|
#include <linux/debug_locks.h>
|
|
|
|
#include <linux/interrupt.h>
|
2009-10-16 12:09:18 +00:00
|
|
|
#include <linux/kmsg_dump.h>
|
2009-03-13 10:14:06 +00:00
|
|
|
#include <linux/kallsyms.h>
|
|
|
|
#include <linux/notifier.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/module.h>
|
2009-03-13 10:14:06 +00:00
|
|
|
#include <linux/random.h>
|
2013-06-14 20:21:43 +00:00
|
|
|
#include <linux/ftrace.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/reboot.h>
|
2009-03-13 10:14:06 +00:00
|
|
|
#include <linux/delay.h>
|
|
|
|
#include <linux/kexec.h>
|
|
|
|
#include <linux/sched.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/sysrq.h>
|
2009-03-13 10:14:06 +00:00
|
|
|
#include <linux/init.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <linux/nmi.h>
|
2015-11-07 00:32:58 +00:00
|
|
|
#include <linux/console.h>
|
2016-03-17 21:23:04 +00:00
|
|
|
#include <linux/bug.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2010-08-11 01:03:28 +00:00
|
|
|
#define PANIC_TIMER_STEP 100
|
|
|
|
#define PANIC_BLINK_SPD 18
|
|
|
|
|
2012-04-11 12:15:29 +00:00
|
|
|
int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE;
|
2008-10-16 05:01:41 +00:00
|
|
|
static unsigned long tainted_mask;
|
2006-03-23 11:00:57 +00:00
|
|
|
static int pause_on_oops;
|
|
|
|
static int pause_on_oops_flag;
|
|
|
|
static DEFINE_SPINLOCK(pause_on_oops_lock);
|
2015-06-30 21:57:46 +00:00
|
|
|
bool crash_kexec_post_notifiers;
|
2014-12-10 23:45:50 +00:00
|
|
|
int panic_on_warn __read_mostly;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-11-25 23:23:04 +00:00
|
|
|
int panic_timeout = CONFIG_PANIC_TIMEOUT;
|
ACPI, APEI, Generic Hardware Error Source POLL/IRQ/NMI notification type support
Generic Hardware Error Source provides a way to report platform
hardware errors (such as that from chipset). It works in so called
"Firmware First" mode, that is, hardware errors are reported to
firmware firstly, then reported to Linux by firmware. This way, some
non-standard hardware error registers or non-standard hardware link
can be checked by firmware to produce more valuable hardware error
information for Linux.
This patch adds POLL/IRQ/NMI notification types support.
Because the memory area used to transfer hardware error information
from BIOS to Linux can be determined only in NMI, IRQ or timer
handler, but general ioremap can not be used in atomic context, so a
special version of atomic ioremap is implemented for that.
Known issue:
- Error information can not be printed for recoverable errors notified
via NMI, because printk is not NMI-safe. Will fix this via delay
printing to IRQ context via irq_work or make printk NMI-safe.
v2:
- adjust printk format per comments.
Signed-off-by: Huang Ying <ying.huang@intel.com>
Reviewed-by: Andi Kleen <ak@linux.intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
2011-01-12 06:44:55 +00:00
|
|
|
EXPORT_SYMBOL_GPL(panic_timeout);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
ATOMIC_NOTIFIER_HEAD(panic_notifier_list);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
EXPORT_SYMBOL(panic_notifier_list);
|
|
|
|
|
2010-08-11 01:03:28 +00:00
|
|
|
static long no_blink(int state)
|
2010-03-05 21:42:55 +00:00
|
|
|
{
|
2010-08-11 01:03:28 +00:00
|
|
|
return 0;
|
2010-03-05 21:42:55 +00:00
|
|
|
}
|
|
|
|
|
2010-08-11 01:03:28 +00:00
|
|
|
/* Returns how long it waited in ms */
|
|
|
|
long (*panic_blink)(int state);
|
|
|
|
EXPORT_SYMBOL(panic_blink);
|
|
|
|
|
2012-01-13 01:20:18 +00:00
|
|
|
/*
|
|
|
|
* Stop ourself in panic -- architecture code may override this
|
|
|
|
*/
|
|
|
|
void __weak panic_smp_self_stop(void)
|
|
|
|
{
|
|
|
|
while (1)
|
|
|
|
cpu_relax();
|
|
|
|
}
|
|
|
|
|
panic, x86: Allow CPUs to save registers even if looping in NMI context
Currently, kdump_nmi_shootdown_cpus(), a subroutine of crash_kexec(),
sends an NMI IPI to CPUs which haven't called panic() to stop them,
save their register information and do some cleanups for crash dumping.
However, if such a CPU is infinitely looping in NMI context, we fail to
save its register information into the crash dump.
For example, this can happen when unknown NMIs are broadcast to all
CPUs as follows:
CPU 0 CPU 1
=========================== ==========================
receive an unknown NMI
unknown_nmi_error()
panic() receive an unknown NMI
spin_trylock(&panic_lock) unknown_nmi_error()
crash_kexec() panic()
spin_trylock(&panic_lock)
panic_smp_self_stop()
infinite loop
kdump_nmi_shootdown_cpus()
issue NMI IPI -----------> blocked until IRET
infinite loop...
Here, since CPU 1 is in NMI context, the second NMI from CPU 0 is
blocked until CPU 1 executes IRET. However, CPU 1 never executes IRET,
so the NMI is not handled and the callback function to save registers is
never called.
In practice, this can happen on some servers which broadcast NMIs to all
CPUs when the NMI button is pushed.
To save registers in this case, we need to:
a) Return from NMI handler instead of looping infinitely
or
b) Call the callback function directly from the infinite loop
Inherently, a) is risky because NMI is also used to prevent corrupted
data from being propagated to devices. So, we chose b).
This patch does the following:
1. Move the infinite looping of CPUs which haven't called panic() in NMI
context (actually done by panic_smp_self_stop()) outside of panic() to
enable us to refer pt_regs. Please note that panic_smp_self_stop() is
still used for normal context.
2. Call a callback of kdump_nmi_shootdown_cpus() directly to save
registers and do some cleanups after setting waiting_for_crash_ipi which
is used for counting down the number of CPUs which handled the callback
Signed-off-by: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Acked-by: Michal Hocko <mhocko@suse.com>
Cc: Aaron Tomlin <atomlin@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Andy Lutomirski <luto@kernel.org>
Cc: Baoquan He <bhe@redhat.com>
Cc: Chris Metcalf <cmetcalf@ezchip.com>
Cc: Dave Young <dyoung@redhat.com>
Cc: David Hildenbrand <dahi@linux.vnet.ibm.com>
Cc: Don Zickus <dzickus@redhat.com>
Cc: Eric Biederman <ebiederm@xmission.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Gobinda Charan Maji <gobinda.cemk07@gmail.com>
Cc: HATAYAMA Daisuke <d.hatayama@jp.fujitsu.com>
Cc: Hidehiro Kawai <hidehiro.kawai.ez@hitachi.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Javi Merino <javi.merino@arm.com>
Cc: Jiang Liu <jiang.liu@linux.intel.com>
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: kexec@lists.infradead.org
Cc: linux-doc@vger.kernel.org
Cc: lkml <linux-kernel@vger.kernel.org>
Cc: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com>
Cc: Michal Nazarewicz <mina86@mina86.com>
Cc: Nicolas Iooss <nicolas.iooss_linux@m4x.org>
Cc: Oleg Nesterov <oleg@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Prarit Bhargava <prarit@redhat.com>
Cc: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Cc: Seth Jennings <sjenning@redhat.com>
Cc: Stefan Lippers-Hollmann <s.l-h@gmx.de>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ulrich Obergfell <uobergfe@redhat.com>
Cc: Vitaly Kuznetsov <vkuznets@redhat.com>
Cc: Vivek Goyal <vgoyal@redhat.com>
Cc: Yasuaki Ishimatsu <isimatu.yasuaki@jp.fujitsu.com>
Link: http://lkml.kernel.org/r/20151210014628.25437.75256.stgit@softrs
[ Cleanup comments, fixup formatting. ]
Signed-off-by: Borislav Petkov <bp@suse.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
2015-12-14 10:19:10 +00:00
|
|
|
/*
|
|
|
|
* Stop ourselves in NMI context if another CPU has already panicked. Arch code
|
|
|
|
* may override this to prepare for crash dumping, e.g. save regs info.
|
|
|
|
*/
|
|
|
|
void __weak nmi_panic_self_stop(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
panic_smp_self_stop();
|
|
|
|
}
|
|
|
|
|
2016-10-11 20:54:23 +00:00
|
|
|
/*
|
|
|
|
* Stop other CPUs in panic. Architecture dependent code may override this
|
|
|
|
* with more suitable version. For example, if the architecture supports
|
|
|
|
* crash dump, it should save registers of each stopped CPU and disable
|
|
|
|
* per-CPU features such as virtualization extensions.
|
|
|
|
*/
|
|
|
|
void __weak crash_smp_send_stop(void)
|
|
|
|
{
|
|
|
|
static int cpus_stopped;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function can be called twice in panic path, but obviously
|
|
|
|
* we execute this only once.
|
|
|
|
*/
|
|
|
|
if (cpus_stopped)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Note smp_send_stop is the usual smp shutdown function, which
|
|
|
|
* unfortunately means it may not be hardened to work in a panic
|
|
|
|
* situation.
|
|
|
|
*/
|
|
|
|
smp_send_stop();
|
|
|
|
cpus_stopped = 1;
|
|
|
|
}
|
|
|
|
|
2015-12-14 10:19:09 +00:00
|
|
|
atomic_t panic_cpu = ATOMIC_INIT(PANIC_CPU_INVALID);
|
|
|
|
|
2016-03-22 21:27:17 +00:00
|
|
|
/*
|
|
|
|
* A variant of panic() called from NMI context. We return if we've already
|
|
|
|
* panicked on this CPU. If another CPU already panicked, loop in
|
|
|
|
* nmi_panic_self_stop() which can provide architecture dependent code such
|
|
|
|
* as saving register state for crash dump.
|
|
|
|
*/
|
|
|
|
void nmi_panic(struct pt_regs *regs, const char *msg)
|
|
|
|
{
|
|
|
|
int old_cpu, cpu;
|
|
|
|
|
|
|
|
cpu = raw_smp_processor_id();
|
|
|
|
old_cpu = atomic_cmpxchg(&panic_cpu, PANIC_CPU_INVALID, cpu);
|
|
|
|
|
|
|
|
if (old_cpu == PANIC_CPU_INVALID)
|
|
|
|
panic("%s", msg);
|
|
|
|
else if (old_cpu != cpu)
|
|
|
|
nmi_panic_self_stop(regs);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(nmi_panic);
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* panic - halt the system
|
|
|
|
* @fmt: The text string to print
|
|
|
|
*
|
|
|
|
* Display a message, then perform cleanups.
|
|
|
|
*
|
|
|
|
* This function never returns.
|
|
|
|
*/
|
2012-01-13 01:17:17 +00:00
|
|
|
void panic(const char *fmt, ...)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
static char buf[1024];
|
|
|
|
va_list args;
|
2010-08-11 01:03:28 +00:00
|
|
|
long i, i_next = 0;
|
|
|
|
int state = 0;
|
2015-12-14 10:19:09 +00:00
|
|
|
int old_cpu, this_cpu;
|
2016-08-02 21:06:13 +00:00
|
|
|
bool _crash_kexec_post_notifiers = crash_kexec_post_notifiers;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2012-07-30 21:39:58 +00:00
|
|
|
/*
|
|
|
|
* Disable local interrupts. This will prevent panic_smp_self_stop
|
|
|
|
* from deadlocking the first cpu that invokes the panic, since
|
|
|
|
* there is nothing to prevent an interrupt handler (that runs
|
2015-12-14 10:19:09 +00:00
|
|
|
* after setting panic_cpu) from invoking panic() again.
|
2012-07-30 21:39:58 +00:00
|
|
|
*/
|
|
|
|
local_irq_disable();
|
|
|
|
|
2005-06-25 21:57:52 +00:00
|
|
|
/*
|
2009-03-13 10:14:06 +00:00
|
|
|
* It's possible to come here directly from a panic-assertion and
|
|
|
|
* not have preempt disabled. Some functions called from here want
|
2005-06-25 21:57:52 +00:00
|
|
|
* preempt to be disabled. No point enabling it later though...
|
2012-01-13 01:20:18 +00:00
|
|
|
*
|
|
|
|
* Only one CPU is allowed to execute the panic code from here. For
|
|
|
|
* multiple parallel invocations of panic, all other CPUs either
|
|
|
|
* stop themself or will wait until they are stopped by the 1st CPU
|
|
|
|
* with smp_send_stop().
|
2015-12-14 10:19:09 +00:00
|
|
|
*
|
|
|
|
* `old_cpu == PANIC_CPU_INVALID' means this is the 1st CPU which
|
|
|
|
* comes here, so go ahead.
|
|
|
|
* `old_cpu == this_cpu' means we came from nmi_panic() which sets
|
|
|
|
* panic_cpu to this CPU. In this case, this is also the 1st CPU.
|
2005-06-25 21:57:52 +00:00
|
|
|
*/
|
2015-12-14 10:19:09 +00:00
|
|
|
this_cpu = raw_smp_processor_id();
|
|
|
|
old_cpu = atomic_cmpxchg(&panic_cpu, PANIC_CPU_INVALID, this_cpu);
|
|
|
|
|
|
|
|
if (old_cpu != PANIC_CPU_INVALID && old_cpu != this_cpu)
|
2012-01-13 01:20:18 +00:00
|
|
|
panic_smp_self_stop();
|
2005-06-25 21:57:52 +00:00
|
|
|
|
2010-05-26 21:44:24 +00:00
|
|
|
console_verbose();
|
2005-04-16 22:20:36 +00:00
|
|
|
bust_spinlocks(1);
|
|
|
|
va_start(args, fmt);
|
|
|
|
vsnprintf(buf, sizeof(buf), fmt, args);
|
|
|
|
va_end(args);
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_emerg("Kernel panic - not syncing: %s\n", buf);
|
2008-02-14 08:07:01 +00:00
|
|
|
#ifdef CONFIG_DEBUG_BUGVERBOSE
|
2012-01-13 01:20:30 +00:00
|
|
|
/*
|
|
|
|
* Avoid nested stack-dumping if a panic occurs during oops processing
|
|
|
|
*/
|
2012-04-12 19:49:17 +00:00
|
|
|
if (!test_taint(TAINT_DIE) && oops_in_progress <= 1)
|
2012-01-13 01:20:30 +00:00
|
|
|
dump_stack();
|
2008-02-14 08:07:01 +00:00
|
|
|
#endif
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2005-06-25 21:57:52 +00:00
|
|
|
/*
|
|
|
|
* If we have crashed and we have a crash kernel loaded let it handle
|
|
|
|
* everything else.
|
2014-06-06 21:37:07 +00:00
|
|
|
* If we want to run this after calling panic_notifiers, pass
|
|
|
|
* the "crash_kexec_post_notifiers" option to the kernel.
|
2015-12-14 10:19:11 +00:00
|
|
|
*
|
|
|
|
* Bypass the panic_cpu check and call __crash_kexec directly.
|
2005-06-25 21:57:52 +00:00
|
|
|
*/
|
2016-08-02 21:06:13 +00:00
|
|
|
if (!_crash_kexec_post_notifiers) {
|
2016-05-21 00:00:42 +00:00
|
|
|
printk_nmi_flush_on_panic();
|
2015-12-14 10:19:11 +00:00
|
|
|
__crash_kexec(NULL);
|
2005-06-25 21:57:52 +00:00
|
|
|
|
2016-10-11 20:54:23 +00:00
|
|
|
/*
|
|
|
|
* Note smp_send_stop is the usual smp shutdown function, which
|
|
|
|
* unfortunately means it may not be hardened to work in a
|
|
|
|
* panic situation.
|
|
|
|
*/
|
|
|
|
smp_send_stop();
|
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* If we want to do crash dump after notifier calls and
|
|
|
|
* kmsg_dump, we will need architecture dependent extra
|
|
|
|
* works in addition to stopping other CPUs.
|
|
|
|
*/
|
|
|
|
crash_smp_send_stop();
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2013-09-11 21:25:49 +00:00
|
|
|
/*
|
|
|
|
* Run any panic handlers, including those that might need to
|
|
|
|
* add information to the kmsg dump output.
|
|
|
|
*/
|
[PATCH] Notifier chain update: API changes
The kernel's implementation of notifier chains is unsafe. There is no
protection against entries being added to or removed from a chain while the
chain is in use. The issues were discussed in this thread:
http://marc.theaimsgroup.com/?l=linux-kernel&m=113018709002036&w=2
We noticed that notifier chains in the kernel fall into two basic usage
classes:
"Blocking" chains are always called from a process context
and the callout routines are allowed to sleep;
"Atomic" chains can be called from an atomic context and
the callout routines are not allowed to sleep.
We decided to codify this distinction and make it part of the API. Therefore
this set of patches introduces three new, parallel APIs: one for blocking
notifiers, one for atomic notifiers, and one for "raw" notifiers (which is
really just the old API under a new name). New kinds of data structures are
used for the heads of the chains, and new routines are defined for
registration, unregistration, and calling a chain. The three APIs are
explained in include/linux/notifier.h and their implementation is in
kernel/sys.c.
With atomic and blocking chains, the implementation guarantees that the chain
links will not be corrupted and that chain callers will not get messed up by
entries being added or removed. For raw chains the implementation provides no
guarantees at all; users of this API must provide their own protections. (The
idea was that situations may come up where the assumptions of the atomic and
blocking APIs are not appropriate, so it should be possible for users to
handle these things in their own way.)
There are some limitations, which should not be too hard to live with. For
atomic/blocking chains, registration and unregistration must always be done in
a process context since the chain is protected by a mutex/rwsem. Also, a
callout routine for a non-raw chain must not try to register or unregister
entries on its own chain. (This did happen in a couple of places and the code
had to be changed to avoid it.)
Since atomic chains may be called from within an NMI handler, they cannot use
spinlocks for synchronization. Instead we use RCU. The overhead falls almost
entirely in the unregister routine, which is okay since unregistration is much
less frequent that calling a chain.
Here is the list of chains that we adjusted and their classifications. None
of them use the raw API, so for the moment it is only a placeholder.
ATOMIC CHAINS
-------------
arch/i386/kernel/traps.c: i386die_chain
arch/ia64/kernel/traps.c: ia64die_chain
arch/powerpc/kernel/traps.c: powerpc_die_chain
arch/sparc64/kernel/traps.c: sparc64die_chain
arch/x86_64/kernel/traps.c: die_chain
drivers/char/ipmi/ipmi_si_intf.c: xaction_notifier_list
kernel/panic.c: panic_notifier_list
kernel/profile.c: task_free_notifier
net/bluetooth/hci_core.c: hci_notifier
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_chain
net/ipv4/netfilter/ip_conntrack_core.c: ip_conntrack_expect_chain
net/ipv6/addrconf.c: inet6addr_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_chain
net/netfilter/nf_conntrack_core.c: nf_conntrack_expect_chain
net/netlink/af_netlink.c: netlink_chain
BLOCKING CHAINS
---------------
arch/powerpc/platforms/pseries/reconfig.c: pSeries_reconfig_chain
arch/s390/kernel/process.c: idle_chain
arch/x86_64/kernel/process.c idle_notifier
drivers/base/memory.c: memory_chain
drivers/cpufreq/cpufreq.c cpufreq_policy_notifier_list
drivers/cpufreq/cpufreq.c cpufreq_transition_notifier_list
drivers/macintosh/adb.c: adb_client_list
drivers/macintosh/via-pmu.c sleep_notifier_list
drivers/macintosh/via-pmu68k.c sleep_notifier_list
drivers/macintosh/windfarm_core.c wf_client_list
drivers/usb/core/notify.c usb_notifier_list
drivers/video/fbmem.c fb_notifier_list
kernel/cpu.c cpu_chain
kernel/module.c module_notify_list
kernel/profile.c munmap_notifier
kernel/profile.c task_exit_notifier
kernel/sys.c reboot_notifier_list
net/core/dev.c netdev_chain
net/decnet/dn_dev.c: dnaddr_chain
net/ipv4/devinet.c: inetaddr_chain
It's possible that some of these classifications are wrong. If they are,
please let us know or submit a patch to fix them. Note that any chain that
gets called very frequently should be atomic, because the rwsem read-locking
used for blocking chains is very likely to incur cache misses on SMP systems.
(However, if the chain's callout routines may sleep then the chain cannot be
atomic.)
The patch set was written by Alan Stern and Chandra Seetharaman, incorporating
material written by Keith Owens and suggestions from Paul McKenney and Andrew
Morton.
[jes@sgi.com: restructure the notifier chain initialization macros]
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Chandra Seetharaman <sekharan@us.ibm.com>
Signed-off-by: Jes Sorensen <jes@sgi.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-27 09:16:30 +00:00
|
|
|
atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2016-05-21 00:00:42 +00:00
|
|
|
/* Call flush even twice. It tries harder with a single online CPU */
|
|
|
|
printk_nmi_flush_on_panic();
|
2013-09-11 21:25:49 +00:00
|
|
|
kmsg_dump(KMSG_DUMP_PANIC);
|
|
|
|
|
2014-06-06 21:37:07 +00:00
|
|
|
/*
|
|
|
|
* If you doubt kdump always works fine in any situation,
|
|
|
|
* "crash_kexec_post_notifiers" offers you a chance to run
|
|
|
|
* panic_notifiers and dumping kmsg before kdump.
|
|
|
|
* Note: since some panic_notifiers can make crashed kernel
|
|
|
|
* more unstable, it can increase risks of the kdump failure too.
|
2015-12-14 10:19:11 +00:00
|
|
|
*
|
|
|
|
* Bypass the panic_cpu check and call __crash_kexec directly.
|
2014-06-06 21:37:07 +00:00
|
|
|
*/
|
2016-08-02 21:06:13 +00:00
|
|
|
if (_crash_kexec_post_notifiers)
|
2015-12-14 10:19:11 +00:00
|
|
|
__crash_kexec(NULL);
|
2014-06-06 21:37:07 +00:00
|
|
|
|
2009-10-02 11:41:20 +00:00
|
|
|
bust_spinlocks(0);
|
|
|
|
|
2015-11-07 00:32:58 +00:00
|
|
|
/*
|
|
|
|
* We may have ended up stopping the CPU holding the lock (in
|
|
|
|
* smp_send_stop()) while still having some valuable data in the console
|
|
|
|
* buffer. Try to acquire the lock then release it regardless of the
|
2015-11-20 23:57:24 +00:00
|
|
|
* result. The release will also print the buffers out. Locks debug
|
|
|
|
* should be disabled to avoid reporting bad unlock balance when
|
|
|
|
* panic() is not being callled from OOPS.
|
2015-11-07 00:32:58 +00:00
|
|
|
*/
|
2015-11-20 23:57:24 +00:00
|
|
|
debug_locks_off();
|
printk: do cond_resched() between lines while outputting to consoles
@console_may_schedule tracks whether console_sem was acquired through
lock or trylock. If the former, we're inside a sleepable context and
console_conditional_schedule() performs cond_resched(). This allows
console drivers which use console_lock for synchronization to yield
while performing time-consuming operations such as scrolling.
However, the actual console outputting is performed while holding
irq-safe logbuf_lock, so console_unlock() clears @console_may_schedule
before starting outputting lines. Also, only a few drivers call
console_conditional_schedule() to begin with. This means that when a
lot of lines need to be output by console_unlock(), for example on a
console registration, the task doing console_unlock() may not yield for
a long time on a non-preemptible kernel.
If this happens with a slow console devices, for example a serial
console, the outputting task may occupy the cpu for a very long time.
Long enough to trigger softlockup and/or RCU stall warnings, which in
turn pile more messages, sometimes enough to trigger the next cycle of
warnings incapacitating the system.
Fix it by making console_unlock() insert cond_resched() between lines if
@console_may_schedule.
Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Calvin Owens <calvinowens@fb.com>
Acked-by: Jan Kara <jack@suse.com>
Cc: Dave Jones <davej@codemonkey.org.uk>
Cc: Kyle McMartin <kyle@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2016-01-16 00:58:24 +00:00
|
|
|
console_flush_on_panic();
|
2015-11-07 00:32:58 +00:00
|
|
|
|
2010-08-11 01:03:28 +00:00
|
|
|
if (!panic_blink)
|
|
|
|
panic_blink = no_blink;
|
|
|
|
|
2005-06-25 21:57:52 +00:00
|
|
|
if (panic_timeout > 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2009-03-13 10:14:06 +00:00
|
|
|
* Delay timeout seconds before rebooting the machine.
|
|
|
|
* We can't use the "normal" timers since we just panicked.
|
|
|
|
*/
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_emerg("Rebooting in %d seconds..", panic_timeout);
|
2009-03-13 10:14:06 +00:00
|
|
|
|
2010-08-11 01:03:28 +00:00
|
|
|
for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
|
2005-04-16 22:20:36 +00:00
|
|
|
touch_nmi_watchdog();
|
2010-08-11 01:03:28 +00:00
|
|
|
if (i >= i_next) {
|
|
|
|
i += panic_blink(state ^= 1);
|
|
|
|
i_next = i + 3600 / PANIC_BLINK_SPD;
|
|
|
|
}
|
|
|
|
mdelay(PANIC_TIMER_STEP);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2011-07-26 23:08:52 +00:00
|
|
|
}
|
|
|
|
if (panic_timeout != 0) {
|
2009-03-13 10:14:06 +00:00
|
|
|
/*
|
|
|
|
* This will not be a clean reboot, with everything
|
|
|
|
* shutting down. But if there is a chance of
|
|
|
|
* rebooting the system it will be rebooted.
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
2005-07-26 17:49:23 +00:00
|
|
|
emergency_restart();
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
#ifdef __sparc__
|
|
|
|
{
|
|
|
|
extern int stop_a_enabled;
|
2005-04-25 03:38:02 +00:00
|
|
|
/* Make sure the user can actually press Stop-A (L1-A) */
|
2005-04-16 22:20:36 +00:00
|
|
|
stop_a_enabled = 1;
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_emerg("Press Stop-A (L1-A) to return to the boot prom\n");
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
#endif
|
2006-01-06 08:19:28 +00:00
|
|
|
#if defined(CONFIG_S390)
|
2009-03-13 10:14:06 +00:00
|
|
|
{
|
|
|
|
unsigned long caller;
|
|
|
|
|
|
|
|
caller = (unsigned long)__builtin_return_address(0);
|
|
|
|
disabled_wait(caller);
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
#endif
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_emerg("---[ end Kernel panic - not syncing: %s\n", buf);
|
2005-04-16 22:20:36 +00:00
|
|
|
local_irq_enable();
|
2010-08-11 01:03:28 +00:00
|
|
|
for (i = 0; ; i += PANIC_TIMER_STEP) {
|
2006-02-10 09:51:11 +00:00
|
|
|
touch_softlockup_watchdog();
|
2010-08-11 01:03:28 +00:00
|
|
|
if (i >= i_next) {
|
|
|
|
i += panic_blink(state ^= 1);
|
|
|
|
i_next = i + 3600 / PANIC_BLINK_SPD;
|
|
|
|
}
|
|
|
|
mdelay(PANIC_TIMER_STEP);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
EXPORT_SYMBOL(panic);
|
|
|
|
|
2007-10-18 10:06:08 +00:00
|
|
|
|
2008-10-16 05:01:41 +00:00
|
|
|
struct tnt {
|
2009-03-13 10:14:06 +00:00
|
|
|
u8 bit;
|
|
|
|
char true;
|
|
|
|
char false;
|
2008-10-16 05:01:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
static const struct tnt tnts[] = {
|
2009-03-13 10:14:06 +00:00
|
|
|
{ TAINT_PROPRIETARY_MODULE, 'P', 'G' },
|
|
|
|
{ TAINT_FORCED_MODULE, 'F', ' ' },
|
2014-02-26 15:49:49 +00:00
|
|
|
{ TAINT_CPU_OUT_OF_SPEC, 'S', ' ' },
|
2009-03-13 10:14:06 +00:00
|
|
|
{ TAINT_FORCED_RMMOD, 'R', ' ' },
|
|
|
|
{ TAINT_MACHINE_CHECK, 'M', ' ' },
|
|
|
|
{ TAINT_BAD_PAGE, 'B', ' ' },
|
|
|
|
{ TAINT_USER, 'U', ' ' },
|
|
|
|
{ TAINT_DIE, 'D', ' ' },
|
|
|
|
{ TAINT_OVERRIDDEN_ACPI_TABLE, 'A', ' ' },
|
|
|
|
{ TAINT_WARN, 'W', ' ' },
|
|
|
|
{ TAINT_CRAP, 'C', ' ' },
|
2010-04-03 18:36:42 +00:00
|
|
|
{ TAINT_FIRMWARE_WORKAROUND, 'I', ' ' },
|
2011-10-24 13:12:28 +00:00
|
|
|
{ TAINT_OOT_MODULE, 'O', ' ' },
|
2014-03-31 04:09:57 +00:00
|
|
|
{ TAINT_UNSIGNED_MODULE, 'E', ' ' },
|
2014-08-08 21:22:31 +00:00
|
|
|
{ TAINT_SOFTLOCKUP, 'L', ' ' },
|
2014-12-16 17:58:18 +00:00
|
|
|
{ TAINT_LIVEPATCH, 'K', ' ' },
|
2008-10-16 05:01:41 +00:00
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/**
|
|
|
|
* print_tainted - return a string to represent the kernel taint state.
|
|
|
|
*
|
|
|
|
* 'P' - Proprietary module has been loaded.
|
|
|
|
* 'F' - Module has been forcibly loaded.
|
|
|
|
* 'S' - SMP with CPUs not designed for SMP.
|
|
|
|
* 'R' - User forced a module unload.
|
2007-10-19 22:30:06 +00:00
|
|
|
* 'M' - System experienced a machine check exception.
|
2005-04-16 22:20:36 +00:00
|
|
|
* 'B' - System has hit bad_page.
|
2007-02-10 09:45:24 +00:00
|
|
|
* 'U' - Userspace-defined naughtiness.
|
2008-12-01 21:14:00 +00:00
|
|
|
* 'D' - Kernel has oopsed before
|
2008-04-29 07:58:39 +00:00
|
|
|
* 'A' - ACPI table overridden.
|
|
|
|
* 'W' - Taint on warning.
|
2008-09-24 21:46:44 +00:00
|
|
|
* 'C' - modules from drivers/staging are loaded.
|
2010-04-03 18:36:42 +00:00
|
|
|
* 'I' - Working around severe firmware bug.
|
2011-10-24 13:12:28 +00:00
|
|
|
* 'O' - Out-of-tree module has been loaded.
|
2014-03-31 04:09:57 +00:00
|
|
|
* 'E' - Unsigned module has been loaded.
|
2014-11-13 23:19:44 +00:00
|
|
|
* 'L' - A soft lockup has previously occurred.
|
2014-12-16 17:58:18 +00:00
|
|
|
* 'K' - Kernel has been live patched.
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
2009-06-29 01:10:07 +00:00
|
|
|
* The string is overwritten by the next call to print_tainted().
|
2005-04-16 22:20:36 +00:00
|
|
|
*/
|
|
|
|
const char *print_tainted(void)
|
|
|
|
{
|
2013-11-12 23:11:32 +00:00
|
|
|
static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ")];
|
2008-10-16 05:01:41 +00:00
|
|
|
|
|
|
|
if (tainted_mask) {
|
|
|
|
char *s;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
s = buf + sprintf(buf, "Tainted: ");
|
|
|
|
for (i = 0; i < ARRAY_SIZE(tnts); i++) {
|
|
|
|
const struct tnt *t = &tnts[i];
|
|
|
|
*s++ = test_bit(t->bit, &tainted_mask) ?
|
|
|
|
t->true : t->false;
|
|
|
|
}
|
|
|
|
*s = 0;
|
|
|
|
} else
|
2005-04-16 22:20:36 +00:00
|
|
|
snprintf(buf, sizeof(buf), "Not tainted");
|
2009-03-13 10:14:06 +00:00
|
|
|
|
|
|
|
return buf;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2008-10-16 05:01:41 +00:00
|
|
|
int test_taint(unsigned flag)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2008-10-16 05:01:41 +00:00
|
|
|
return test_bit(flag, &tainted_mask);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(test_taint);
|
|
|
|
|
|
|
|
unsigned long get_taint(void)
|
|
|
|
{
|
|
|
|
return tainted_mask;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
2006-03-23 11:00:57 +00:00
|
|
|
|
2013-01-21 06:47:39 +00:00
|
|
|
/**
|
|
|
|
* add_taint: add a taint flag if not already set.
|
|
|
|
* @flag: one of the TAINT_* constants.
|
|
|
|
* @lockdep_ok: whether lock debugging is still OK.
|
|
|
|
*
|
|
|
|
* If something bad has gone wrong, you'll want @lockdebug_ok = false, but for
|
|
|
|
* some notewortht-but-not-corrupting cases, it can be set to true.
|
|
|
|
*/
|
|
|
|
void add_taint(unsigned flag, enum lockdep_ok lockdep_ok)
|
2006-03-23 11:00:57 +00:00
|
|
|
{
|
2013-01-21 06:47:39 +00:00
|
|
|
if (lockdep_ok == LOCKDEP_NOW_UNRELIABLE && __debug_locks_off())
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_warn("Disabling lock debugging due to kernel taint\n");
|
2009-04-11 01:17:17 +00:00
|
|
|
|
2008-10-16 05:01:41 +00:00
|
|
|
set_bit(flag, &tainted_mask);
|
2006-03-23 11:00:57 +00:00
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
EXPORT_SYMBOL(add_taint);
|
2006-03-23 11:00:57 +00:00
|
|
|
|
|
|
|
static void spin_msec(int msecs)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < msecs; i++) {
|
|
|
|
touch_nmi_watchdog();
|
|
|
|
mdelay(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* It just happens that oops_enter() and oops_exit() are identically
|
|
|
|
* implemented...
|
|
|
|
*/
|
|
|
|
static void do_oops_enter_exit(void)
|
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
static int spin_counter;
|
|
|
|
|
|
|
|
if (!pause_on_oops)
|
|
|
|
return;
|
|
|
|
|
|
|
|
spin_lock_irqsave(&pause_on_oops_lock, flags);
|
|
|
|
if (pause_on_oops_flag == 0) {
|
|
|
|
/* This CPU may now print the oops message */
|
|
|
|
pause_on_oops_flag = 1;
|
|
|
|
} else {
|
|
|
|
/* We need to stall this CPU */
|
|
|
|
if (!spin_counter) {
|
|
|
|
/* This CPU gets to do the counting */
|
|
|
|
spin_counter = pause_on_oops;
|
|
|
|
do {
|
|
|
|
spin_unlock(&pause_on_oops_lock);
|
|
|
|
spin_msec(MSEC_PER_SEC);
|
|
|
|
spin_lock(&pause_on_oops_lock);
|
|
|
|
} while (--spin_counter);
|
|
|
|
pause_on_oops_flag = 0;
|
|
|
|
} else {
|
|
|
|
/* This CPU waits for a different one */
|
|
|
|
while (spin_counter) {
|
|
|
|
spin_unlock(&pause_on_oops_lock);
|
|
|
|
spin_msec(1);
|
|
|
|
spin_lock(&pause_on_oops_lock);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
spin_unlock_irqrestore(&pause_on_oops_lock, flags);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2009-03-13 10:14:06 +00:00
|
|
|
* Return true if the calling CPU is allowed to print oops-related info.
|
|
|
|
* This is a bit racy..
|
2006-03-23 11:00:57 +00:00
|
|
|
*/
|
|
|
|
int oops_may_print(void)
|
|
|
|
{
|
|
|
|
return pause_on_oops_flag == 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Called when the architecture enters its oops handler, before it prints
|
2009-03-13 10:14:06 +00:00
|
|
|
* anything. If this is the first CPU to oops, and it's oopsing the first
|
|
|
|
* time then let it proceed.
|
2006-03-23 11:00:57 +00:00
|
|
|
*
|
2009-03-13 10:14:06 +00:00
|
|
|
* This is all enabled by the pause_on_oops kernel boot option. We do all
|
|
|
|
* this to ensure that oopses don't scroll off the screen. It has the
|
|
|
|
* side-effect of preventing later-oopsing CPUs from mucking up the display,
|
|
|
|
* too.
|
2006-03-23 11:00:57 +00:00
|
|
|
*
|
2009-03-13 10:14:06 +00:00
|
|
|
* It turns out that the CPU which is allowed to print ends up pausing for
|
|
|
|
* the right duration, whereas all the other CPUs pause for twice as long:
|
|
|
|
* once in oops_enter(), once in oops_exit().
|
2006-03-23 11:00:57 +00:00
|
|
|
*/
|
|
|
|
void oops_enter(void)
|
|
|
|
{
|
2009-07-24 19:30:45 +00:00
|
|
|
tracing_off();
|
2009-03-13 10:14:06 +00:00
|
|
|
/* can't trust the integrity of the kernel anymore: */
|
|
|
|
debug_locks_off();
|
2006-03-23 11:00:57 +00:00
|
|
|
do_oops_enter_exit();
|
|
|
|
}
|
|
|
|
|
2007-12-20 14:01:17 +00:00
|
|
|
/*
|
|
|
|
* 64-bit random ID for oopses:
|
|
|
|
*/
|
|
|
|
static u64 oops_id;
|
|
|
|
|
|
|
|
static int init_oops_id(void)
|
|
|
|
{
|
|
|
|
if (!oops_id)
|
|
|
|
get_random_bytes(&oops_id, sizeof(oops_id));
|
2009-01-06 22:40:54 +00:00
|
|
|
else
|
|
|
|
oops_id++;
|
2007-12-20 14:01:17 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
late_initcall(init_oops_id);
|
|
|
|
|
2010-08-11 01:03:30 +00:00
|
|
|
void print_oops_end_marker(void)
|
2008-01-30 12:32:50 +00:00
|
|
|
{
|
|
|
|
init_oops_id();
|
2014-04-07 22:39:03 +00:00
|
|
|
pr_warn("---[ end trace %016llx ]---\n", (unsigned long long)oops_id);
|
2008-01-30 12:32:50 +00:00
|
|
|
}
|
|
|
|
|
2006-03-23 11:00:57 +00:00
|
|
|
/*
|
|
|
|
* Called when the architecture exits its oops handler, after printing
|
|
|
|
* everything.
|
|
|
|
*/
|
|
|
|
void oops_exit(void)
|
|
|
|
{
|
|
|
|
do_oops_enter_exit();
|
2008-01-30 12:32:50 +00:00
|
|
|
print_oops_end_marker();
|
2009-10-16 12:09:18 +00:00
|
|
|
kmsg_dump(KMSG_DUMP_OOPS);
|
2006-03-23 11:00:57 +00:00
|
|
|
}
|
2006-09-26 08:52:39 +00:00
|
|
|
|
2016-03-17 21:23:04 +00:00
|
|
|
struct warn_args {
|
2009-05-16 20:41:28 +00:00
|
|
|
const char *fmt;
|
2008-07-25 08:45:53 +00:00
|
|
|
va_list args;
|
2009-05-16 20:41:28 +00:00
|
|
|
};
|
2008-11-28 16:36:09 +00:00
|
|
|
|
2016-03-17 21:23:04 +00:00
|
|
|
void __warn(const char *file, int line, void *caller, unsigned taint,
|
|
|
|
struct pt_regs *regs, struct warn_args *args)
|
2009-05-16 20:41:28 +00:00
|
|
|
{
|
2013-06-14 20:21:43 +00:00
|
|
|
disable_trace_on_warning();
|
|
|
|
|
2013-07-08 23:00:42 +00:00
|
|
|
pr_warn("------------[ cut here ]------------\n");
|
2016-03-17 21:23:04 +00:00
|
|
|
|
|
|
|
if (file)
|
|
|
|
pr_warn("WARNING: CPU: %d PID: %d at %s:%d %pS\n",
|
|
|
|
raw_smp_processor_id(), current->pid, file, line,
|
|
|
|
caller);
|
|
|
|
else
|
|
|
|
pr_warn("WARNING: CPU: %d PID: %d at %pS\n",
|
|
|
|
raw_smp_processor_id(), current->pid, caller);
|
2008-11-28 16:35:25 +00:00
|
|
|
|
2009-05-16 20:41:28 +00:00
|
|
|
if (args)
|
|
|
|
vprintk(args->fmt, args->args);
|
2008-07-25 08:45:53 +00:00
|
|
|
|
2014-12-10 23:45:50 +00:00
|
|
|
if (panic_on_warn) {
|
|
|
|
/*
|
|
|
|
* This thread may hit another WARN() in the panic path.
|
|
|
|
* Resetting this prevents additional WARN() from panicking the
|
|
|
|
* system on this thread. Other threads are blocked by the
|
|
|
|
* panic_mutex in panic().
|
|
|
|
*/
|
|
|
|
panic_on_warn = 0;
|
|
|
|
panic("panic_on_warn set ...\n");
|
|
|
|
}
|
|
|
|
|
2008-07-25 08:45:53 +00:00
|
|
|
print_modules();
|
2016-03-17 21:23:04 +00:00
|
|
|
|
|
|
|
if (regs)
|
|
|
|
show_regs(regs);
|
|
|
|
else
|
|
|
|
dump_stack();
|
|
|
|
|
2008-07-25 08:45:53 +00:00
|
|
|
print_oops_end_marker();
|
2016-03-17 21:23:04 +00:00
|
|
|
|
2013-01-21 06:47:39 +00:00
|
|
|
/* Just a warning, don't kill lockdep. */
|
|
|
|
add_taint(taint, LOCKDEP_STILL_OK);
|
2008-07-25 08:45:53 +00:00
|
|
|
}
|
2009-05-16 20:41:28 +00:00
|
|
|
|
2016-03-17 21:23:04 +00:00
|
|
|
#ifdef WANT_WARN_ON_SLOWPATH
|
2009-05-16 20:41:28 +00:00
|
|
|
void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
|
|
|
|
{
|
2016-03-17 21:23:04 +00:00
|
|
|
struct warn_args args;
|
2009-05-16 20:41:28 +00:00
|
|
|
|
|
|
|
args.fmt = fmt;
|
|
|
|
va_start(args.args, fmt);
|
2016-03-17 21:23:04 +00:00
|
|
|
__warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL,
|
|
|
|
&args);
|
2009-05-16 20:41:28 +00:00
|
|
|
va_end(args.args);
|
|
|
|
}
|
2009-05-06 23:02:53 +00:00
|
|
|
EXPORT_SYMBOL(warn_slowpath_fmt);
|
|
|
|
|
2010-04-03 18:34:56 +00:00
|
|
|
void warn_slowpath_fmt_taint(const char *file, int line,
|
|
|
|
unsigned taint, const char *fmt, ...)
|
|
|
|
{
|
2016-03-17 21:23:04 +00:00
|
|
|
struct warn_args args;
|
2010-04-03 18:34:56 +00:00
|
|
|
|
|
|
|
args.fmt = fmt;
|
|
|
|
va_start(args.args, fmt);
|
2016-03-17 21:23:04 +00:00
|
|
|
__warn(file, line, __builtin_return_address(0), taint, NULL, &args);
|
2010-04-03 18:34:56 +00:00
|
|
|
va_end(args.args);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(warn_slowpath_fmt_taint);
|
|
|
|
|
2009-05-06 23:02:53 +00:00
|
|
|
void warn_slowpath_null(const char *file, int line)
|
|
|
|
{
|
2016-03-17 21:23:04 +00:00
|
|
|
__warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, NULL);
|
2009-05-06 23:02:53 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(warn_slowpath_null);
|
2008-01-30 12:32:50 +00:00
|
|
|
#endif
|
|
|
|
|
2006-09-26 08:52:39 +00:00
|
|
|
#ifdef CONFIG_CC_STACKPROTECTOR
|
2008-02-15 23:33:12 +00:00
|
|
|
|
2006-09-26 08:52:39 +00:00
|
|
|
/*
|
|
|
|
* Called when gcc's -fstack-protector feature is used, and
|
|
|
|
* gcc detects corruption of the on-stack canary value
|
|
|
|
*/
|
2014-02-08 07:52:06 +00:00
|
|
|
__visible void __stack_chk_fail(void)
|
2006-09-26 08:52:39 +00:00
|
|
|
{
|
2008-02-14 08:02:13 +00:00
|
|
|
panic("stack-protector: Kernel stack is corrupted in: %p\n",
|
|
|
|
__builtin_return_address(0));
|
2006-09-26 08:52:39 +00:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(__stack_chk_fail);
|
2008-02-15 23:33:12 +00:00
|
|
|
|
2006-09-26 08:52:39 +00:00
|
|
|
#endif
|
2008-10-22 15:00:24 +00:00
|
|
|
|
|
|
|
core_param(panic, panic_timeout, int, 0644);
|
|
|
|
core_param(pause_on_oops, pause_on_oops, int, 0644);
|
2014-12-10 23:45:50 +00:00
|
|
|
core_param(panic_on_warn, panic_on_warn, int, 0644);
|
2016-08-02 21:06:13 +00:00
|
|
|
core_param(crash_kexec_post_notifiers, crash_kexec_post_notifiers, bool, 0644);
|
2014-06-06 21:37:07 +00:00
|
|
|
|
2011-03-22 23:34:04 +00:00
|
|
|
static int __init oops_setup(char *s)
|
|
|
|
{
|
|
|
|
if (!s)
|
|
|
|
return -EINVAL;
|
|
|
|
if (!strcmp(s, "panic"))
|
|
|
|
panic_on_oops = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("oops", oops_setup);
|