xref: /linux-6.15/kernel/panic.c (revision 2e3fc6ca)
1457c8996SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
21da177e4SLinus Torvalds /*
31da177e4SLinus Torvalds  *  linux/kernel/panic.c
41da177e4SLinus Torvalds  *
51da177e4SLinus Torvalds  *  Copyright (C) 1991, 1992  Linus Torvalds
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds /*
91da177e4SLinus Torvalds  * This function is used through-out the kernel (including mm and fs)
101da177e4SLinus Torvalds  * to indicate a major problem.
111da177e4SLinus Torvalds  */
12657b3010SAndrew Morton #include <linux/debug_locks.h>
13b17b0153SIngo Molnar #include <linux/sched/debug.h>
14c95dbf27SIngo Molnar #include <linux/interrupt.h>
157d92bda2SDouglas Anderson #include <linux/kgdb.h>
16456b565cSSimon Kagstrom #include <linux/kmsg_dump.h>
1779b4cc5eSArjan van de Ven #include <linux/kallsyms.h>
18c95dbf27SIngo Molnar #include <linux/notifier.h>
19c7c3f05eSSergey Senozhatsky #include <linux/vt_kern.h>
20c95dbf27SIngo Molnar #include <linux/module.h>
21c95dbf27SIngo Molnar #include <linux/random.h>
22de7edd31SSteven Rostedt (Red Hat) #include <linux/ftrace.h>
23c95dbf27SIngo Molnar #include <linux/reboot.h>
24c95dbf27SIngo Molnar #include <linux/delay.h>
25c95dbf27SIngo Molnar #include <linux/kexec.h>
26f39650deSAndy Shevchenko #include <linux/panic_notifier.h>
27c95dbf27SIngo Molnar #include <linux/sched.h>
285d5dd3e4SAndy Shevchenko #include <linux/string_helpers.h>
29c95dbf27SIngo Molnar #include <linux/sysrq.h>
30c95dbf27SIngo Molnar #include <linux/init.h>
31c95dbf27SIngo Molnar #include <linux/nmi.h>
3208d78658SVitaly Kuznetsov #include <linux/console.h>
332553b67aSJosh Poimboeuf #include <linux/bug.h>
347a46ec0eSKees Cook #include <linux/ratelimit.h>
35b1fca27dSAndi Kleen #include <linux/debugfs.h>
368b05aa26SKees Cook #include <linux/sysfs.h>
375a5d7e9bSPeter Zijlstra #include <linux/context_tracking.h>
3823b36fecSMarco Elver #include <trace/events/error_report.h>
39b1fca27dSAndi Kleen #include <asm/sections.h>
401da177e4SLinus Torvalds 
41c7ff0d9cSTAMUKI Shoichi #define PANIC_TIMER_STEP 100
42c7ff0d9cSTAMUKI Shoichi #define PANIC_BLINK_SPD 18
43c7ff0d9cSTAMUKI Shoichi 
4460c958d8SGuilherme G. Piccoli #ifdef CONFIG_SMP
4560c958d8SGuilherme G. Piccoli /*
4660c958d8SGuilherme G. Piccoli  * Should we dump all CPUs backtraces in an oops event?
4760c958d8SGuilherme G. Piccoli  * Defaults to 0, can be changed via sysctl.
4860c958d8SGuilherme G. Piccoli  */
499df91869Stangmeng static unsigned int __read_mostly sysctl_oops_all_cpu_backtrace;
509df91869Stangmeng #else
519df91869Stangmeng #define sysctl_oops_all_cpu_backtrace 0
5260c958d8SGuilherme G. Piccoli #endif /* CONFIG_SMP */
5360c958d8SGuilherme G. Piccoli 
542a01bb38SKyle McMartin int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE;
55bc4f2f54SKees Cook static unsigned long tainted_mask =
56595b893eSKees Cook 	IS_ENABLED(CONFIG_RANDSTRUCT) ? (1 << TAINT_RANDSTRUCT) : 0;
57dd287796SAndrew Morton static int pause_on_oops;
58dd287796SAndrew Morton static int pause_on_oops_flag;
59dd287796SAndrew Morton static DEFINE_SPINLOCK(pause_on_oops_lock);
605375b708SHATAYAMA Daisuke bool crash_kexec_post_notifiers;
619e3961a0SPrarit Bhargava int panic_on_warn __read_mostly;
62db38d5c1SRafael Aquini unsigned long panic_on_taint;
63db38d5c1SRafael Aquini bool panic_on_taint_nousertaint = false;
649fc9e278SKees Cook static unsigned int warn_limit __read_mostly;
651da177e4SLinus Torvalds 
665800dc3cSJason Baron int panic_timeout = CONFIG_PANIC_TIMEOUT;
6781e88fdcSHuang Ying EXPORT_SYMBOL_GPL(panic_timeout);
681da177e4SLinus Torvalds 
69d999bd93SFeng Tang #define PANIC_PRINT_TASK_INFO		0x00000001
70d999bd93SFeng Tang #define PANIC_PRINT_MEM_INFO		0x00000002
71d999bd93SFeng Tang #define PANIC_PRINT_TIMER_INFO		0x00000004
72d999bd93SFeng Tang #define PANIC_PRINT_LOCK_INFO		0x00000008
73d999bd93SFeng Tang #define PANIC_PRINT_FTRACE_INFO		0x00000010
74de6da1e8SFeng Tang #define PANIC_PRINT_ALL_PRINTK_MSG	0x00000020
758d470a45SGuilherme G. Piccoli #define PANIC_PRINT_ALL_CPU_BT		0x00000040
76*2e3fc6caSFeng Tang #define PANIC_PRINT_BLOCKED_TASKS	0x00000080
7781c9d43fSFeng Tang unsigned long panic_print;
78d999bd93SFeng Tang 
79e041c683SAlan Stern ATOMIC_NOTIFIER_HEAD(panic_notifier_list);
801da177e4SLinus Torvalds 
811da177e4SLinus Torvalds EXPORT_SYMBOL(panic_notifier_list);
821da177e4SLinus Torvalds 
839360d035SKees Cook #ifdef CONFIG_SYSCTL
849df91869Stangmeng static struct ctl_table kern_panic_table[] = {
859360d035SKees Cook #ifdef CONFIG_SMP
869df91869Stangmeng 	{
879df91869Stangmeng 		.procname       = "oops_all_cpu_backtrace",
889df91869Stangmeng 		.data           = &sysctl_oops_all_cpu_backtrace,
899df91869Stangmeng 		.maxlen         = sizeof(int),
909df91869Stangmeng 		.mode           = 0644,
919df91869Stangmeng 		.proc_handler   = proc_dointvec_minmax,
929df91869Stangmeng 		.extra1         = SYSCTL_ZERO,
939df91869Stangmeng 		.extra2         = SYSCTL_ONE,
949df91869Stangmeng 	},
959360d035SKees Cook #endif
969fc9e278SKees Cook 	{
979fc9e278SKees Cook 		.procname       = "warn_limit",
989fc9e278SKees Cook 		.data           = &warn_limit,
999fc9e278SKees Cook 		.maxlen         = sizeof(warn_limit),
1009fc9e278SKees Cook 		.mode           = 0644,
1019fc9e278SKees Cook 		.proc_handler   = proc_douintvec,
1029fc9e278SKees Cook 	},
1039df91869Stangmeng 	{ }
1049df91869Stangmeng };
1059df91869Stangmeng 
1069df91869Stangmeng static __init int kernel_panic_sysctls_init(void)
1079df91869Stangmeng {
1089df91869Stangmeng 	register_sysctl_init("kernel", kern_panic_table);
1099df91869Stangmeng 	return 0;
1109df91869Stangmeng }
1119df91869Stangmeng late_initcall(kernel_panic_sysctls_init);
1129df91869Stangmeng #endif
1139df91869Stangmeng 
1148b05aa26SKees Cook static atomic_t warn_count = ATOMIC_INIT(0);
1158b05aa26SKees Cook 
1168b05aa26SKees Cook #ifdef CONFIG_SYSFS
1178b05aa26SKees Cook static ssize_t warn_count_show(struct kobject *kobj, struct kobj_attribute *attr,
1188b05aa26SKees Cook 			       char *page)
1198b05aa26SKees Cook {
1208b05aa26SKees Cook 	return sysfs_emit(page, "%d\n", atomic_read(&warn_count));
1218b05aa26SKees Cook }
1228b05aa26SKees Cook 
1238b05aa26SKees Cook static struct kobj_attribute warn_count_attr = __ATTR_RO(warn_count);
1248b05aa26SKees Cook 
1258b05aa26SKees Cook static __init int kernel_panic_sysfs_init(void)
1268b05aa26SKees Cook {
1278b05aa26SKees Cook 	sysfs_add_file_to_group(kernel_kobj, &warn_count_attr.attr, NULL);
1288b05aa26SKees Cook 	return 0;
1298b05aa26SKees Cook }
1308b05aa26SKees Cook late_initcall(kernel_panic_sysfs_init);
1318b05aa26SKees Cook #endif
1328b05aa26SKees Cook 
133c7ff0d9cSTAMUKI Shoichi static long no_blink(int state)
1348aeee85aSAnton Blanchard {
135c7ff0d9cSTAMUKI Shoichi 	return 0;
136c7ff0d9cSTAMUKI Shoichi }
1378aeee85aSAnton Blanchard 
138c7ff0d9cSTAMUKI Shoichi /* Returns how long it waited in ms */
139c7ff0d9cSTAMUKI Shoichi long (*panic_blink)(int state);
140c7ff0d9cSTAMUKI Shoichi EXPORT_SYMBOL(panic_blink);
1418aeee85aSAnton Blanchard 
14293e13a36SMichael Holzheu /*
14393e13a36SMichael Holzheu  * Stop ourself in panic -- architecture code may override this
14493e13a36SMichael Holzheu  */
1457412a60dSJosh Poimboeuf void __weak __noreturn panic_smp_self_stop(void)
14693e13a36SMichael Holzheu {
14793e13a36SMichael Holzheu 	while (1)
14893e13a36SMichael Holzheu 		cpu_relax();
14993e13a36SMichael Holzheu }
15093e13a36SMichael Holzheu 
15158c5661fSHidehiro Kawai /*
15258c5661fSHidehiro Kawai  * Stop ourselves in NMI context if another CPU has already panicked. Arch code
15358c5661fSHidehiro Kawai  * may override this to prepare for crash dumping, e.g. save regs info.
15458c5661fSHidehiro Kawai  */
15527dea14cSJosh Poimboeuf void __weak __noreturn nmi_panic_self_stop(struct pt_regs *regs)
15658c5661fSHidehiro Kawai {
15758c5661fSHidehiro Kawai 	panic_smp_self_stop();
15858c5661fSHidehiro Kawai }
15958c5661fSHidehiro Kawai 
1600ee59413SHidehiro Kawai /*
1610ee59413SHidehiro Kawai  * Stop other CPUs in panic.  Architecture dependent code may override this
1620ee59413SHidehiro Kawai  * with more suitable version.  For example, if the architecture supports
1630ee59413SHidehiro Kawai  * crash dump, it should save registers of each stopped CPU and disable
1640ee59413SHidehiro Kawai  * per-CPU features such as virtualization extensions.
1650ee59413SHidehiro Kawai  */
1660ee59413SHidehiro Kawai void __weak crash_smp_send_stop(void)
1670ee59413SHidehiro Kawai {
1680ee59413SHidehiro Kawai 	static int cpus_stopped;
1690ee59413SHidehiro Kawai 
1700ee59413SHidehiro Kawai 	/*
1710ee59413SHidehiro Kawai 	 * This function can be called twice in panic path, but obviously
1720ee59413SHidehiro Kawai 	 * we execute this only once.
1730ee59413SHidehiro Kawai 	 */
1740ee59413SHidehiro Kawai 	if (cpus_stopped)
1750ee59413SHidehiro Kawai 		return;
1760ee59413SHidehiro Kawai 
1770ee59413SHidehiro Kawai 	/*
1780ee59413SHidehiro Kawai 	 * Note smp_send_stop is the usual smp shutdown function, which
1790ee59413SHidehiro Kawai 	 * unfortunately means it may not be hardened to work in a panic
1800ee59413SHidehiro Kawai 	 * situation.
1810ee59413SHidehiro Kawai 	 */
1820ee59413SHidehiro Kawai 	smp_send_stop();
1830ee59413SHidehiro Kawai 	cpus_stopped = 1;
1840ee59413SHidehiro Kawai }
1850ee59413SHidehiro Kawai 
1861717f209SHidehiro Kawai atomic_t panic_cpu = ATOMIC_INIT(PANIC_CPU_INVALID);
1871717f209SHidehiro Kawai 
188ebc41f20SHidehiro Kawai /*
189ebc41f20SHidehiro Kawai  * A variant of panic() called from NMI context. We return if we've already
190ebc41f20SHidehiro Kawai  * panicked on this CPU. If another CPU already panicked, loop in
191ebc41f20SHidehiro Kawai  * nmi_panic_self_stop() which can provide architecture dependent code such
192ebc41f20SHidehiro Kawai  * as saving register state for crash dump.
193ebc41f20SHidehiro Kawai  */
194ebc41f20SHidehiro Kawai void nmi_panic(struct pt_regs *regs, const char *msg)
195ebc41f20SHidehiro Kawai {
1969734fe4dSUros Bizjak 	int old_cpu, this_cpu;
197ebc41f20SHidehiro Kawai 
1989734fe4dSUros Bizjak 	old_cpu = PANIC_CPU_INVALID;
1999734fe4dSUros Bizjak 	this_cpu = raw_smp_processor_id();
200ebc41f20SHidehiro Kawai 
2019734fe4dSUros Bizjak 	/* atomic_try_cmpxchg updates old_cpu on failure */
2029734fe4dSUros Bizjak 	if (atomic_try_cmpxchg(&panic_cpu, &old_cpu, this_cpu))
203ebc41f20SHidehiro Kawai 		panic("%s", msg);
2049734fe4dSUros Bizjak 	else if (old_cpu != this_cpu)
205ebc41f20SHidehiro Kawai 		nmi_panic_self_stop(regs);
206ebc41f20SHidehiro Kawai }
207ebc41f20SHidehiro Kawai EXPORT_SYMBOL(nmi_panic);
208ebc41f20SHidehiro Kawai 
209f953f140SGuilherme G. Piccoli static void panic_print_sys_info(bool console_flush)
210d999bd93SFeng Tang {
211f953f140SGuilherme G. Piccoli 	if (console_flush) {
212de6da1e8SFeng Tang 		if (panic_print & PANIC_PRINT_ALL_PRINTK_MSG)
213de6da1e8SFeng Tang 			console_flush_on_panic(CONSOLE_REPLAY_ALL);
214f953f140SGuilherme G. Piccoli 		return;
215f953f140SGuilherme G. Piccoli 	}
216de6da1e8SFeng Tang 
217d999bd93SFeng Tang 	if (panic_print & PANIC_PRINT_TASK_INFO)
218d999bd93SFeng Tang 		show_state();
219d999bd93SFeng Tang 
220d999bd93SFeng Tang 	if (panic_print & PANIC_PRINT_MEM_INFO)
221527ed4f7SKefeng Wang 		show_mem();
222d999bd93SFeng Tang 
223d999bd93SFeng Tang 	if (panic_print & PANIC_PRINT_TIMER_INFO)
224d999bd93SFeng Tang 		sysrq_timer_list_show();
225d999bd93SFeng Tang 
226d999bd93SFeng Tang 	if (panic_print & PANIC_PRINT_LOCK_INFO)
227d999bd93SFeng Tang 		debug_show_all_locks();
228d999bd93SFeng Tang 
229d999bd93SFeng Tang 	if (panic_print & PANIC_PRINT_FTRACE_INFO)
230d999bd93SFeng Tang 		ftrace_dump(DUMP_ALL);
231*2e3fc6caSFeng Tang 
232*2e3fc6caSFeng Tang 	if (panic_print & PANIC_PRINT_BLOCKED_TASKS)
233*2e3fc6caSFeng Tang 		show_state_filter(TASK_UNINTERRUPTIBLE);
234d999bd93SFeng Tang }
235d999bd93SFeng Tang 
23679cc1ba7SKees Cook void check_panic_on_warn(const char *origin)
23779cc1ba7SKees Cook {
2387535b832SKees Cook 	unsigned int limit;
2397535b832SKees Cook 
24079cc1ba7SKees Cook 	if (panic_on_warn)
24179cc1ba7SKees Cook 		panic("%s: panic_on_warn set ...\n", origin);
2429fc9e278SKees Cook 
2437535b832SKees Cook 	limit = READ_ONCE(warn_limit);
2447535b832SKees Cook 	if (atomic_inc_return(&warn_count) >= limit && limit)
2459fc9e278SKees Cook 		panic("%s: system warned too often (kernel.warn_limit is %d)",
2467535b832SKees Cook 		      origin, limit);
24779cc1ba7SKees Cook }
24879cc1ba7SKees Cook 
249b905039eSGuilherme G. Piccoli /*
250b905039eSGuilherme G. Piccoli  * Helper that triggers the NMI backtrace (if set in panic_print)
251b905039eSGuilherme G. Piccoli  * and then performs the secondary CPUs shutdown - we cannot have
252b905039eSGuilherme G. Piccoli  * the NMI backtrace after the CPUs are off!
253b905039eSGuilherme G. Piccoli  */
254b905039eSGuilherme G. Piccoli static void panic_other_cpus_shutdown(bool crash_kexec)
255b905039eSGuilherme G. Piccoli {
256b905039eSGuilherme G. Piccoli 	if (panic_print & PANIC_PRINT_ALL_CPU_BT)
257b905039eSGuilherme G. Piccoli 		trigger_all_cpu_backtrace();
258b905039eSGuilherme G. Piccoli 
259b905039eSGuilherme G. Piccoli 	/*
260b905039eSGuilherme G. Piccoli 	 * Note that smp_send_stop() is the usual SMP shutdown function,
261b905039eSGuilherme G. Piccoli 	 * which unfortunately may not be hardened to work in a panic
262b905039eSGuilherme G. Piccoli 	 * situation. If we want to do crash dump after notifier calls
263b905039eSGuilherme G. Piccoli 	 * and kmsg_dump, we will need architecture dependent extra
264b905039eSGuilherme G. Piccoli 	 * bits in addition to stopping other CPUs, hence we rely on
265b905039eSGuilherme G. Piccoli 	 * crash_smp_send_stop() for that.
266b905039eSGuilherme G. Piccoli 	 */
267b905039eSGuilherme G. Piccoli 	if (!crash_kexec)
268b905039eSGuilherme G. Piccoli 		smp_send_stop();
269b905039eSGuilherme G. Piccoli 	else
270b905039eSGuilherme G. Piccoli 		crash_smp_send_stop();
271b905039eSGuilherme G. Piccoli }
272b905039eSGuilherme G. Piccoli 
2731da177e4SLinus Torvalds /**
2741da177e4SLinus Torvalds  *	panic - halt the system
2751da177e4SLinus Torvalds  *	@fmt: The text string to print
2761da177e4SLinus Torvalds  *
2771da177e4SLinus Torvalds  *	Display a message, then perform cleanups.
2781da177e4SLinus Torvalds  *
2791da177e4SLinus Torvalds  *	This function never returns.
2801da177e4SLinus Torvalds  */
2819402c95fSJoe Perches void panic(const char *fmt, ...)
2821da177e4SLinus Torvalds {
2831da177e4SLinus Torvalds 	static char buf[1024];
2841da177e4SLinus Torvalds 	va_list args;
285b49dec1cSBorislav Petkov 	long i, i_next = 0, len;
286c7ff0d9cSTAMUKI Shoichi 	int state = 0;
2871717f209SHidehiro Kawai 	int old_cpu, this_cpu;
288b26e27ddSHidehiro Kawai 	bool _crash_kexec_post_notifiers = crash_kexec_post_notifiers;
2891da177e4SLinus Torvalds 
2901a2383e8STiezhu Yang 	if (panic_on_warn) {
2911a2383e8STiezhu Yang 		/*
2921a2383e8STiezhu Yang 		 * This thread may hit another WARN() in the panic path.
2931a2383e8STiezhu Yang 		 * Resetting this prevents additional WARN() from panicking the
2941a2383e8STiezhu Yang 		 * system on this thread.  Other threads are blocked by the
2951a2383e8STiezhu Yang 		 * panic_mutex in panic().
2961a2383e8STiezhu Yang 		 */
2971a2383e8STiezhu Yang 		panic_on_warn = 0;
2981a2383e8STiezhu Yang 	}
2991a2383e8STiezhu Yang 
300dc009d92SEric W. Biederman 	/*
301190320c3SVikram Mulukutla 	 * Disable local interrupts. This will prevent panic_smp_self_stop
302190320c3SVikram Mulukutla 	 * from deadlocking the first cpu that invokes the panic, since
303190320c3SVikram Mulukutla 	 * there is nothing to prevent an interrupt handler (that runs
3041717f209SHidehiro Kawai 	 * after setting panic_cpu) from invoking panic() again.
305190320c3SVikram Mulukutla 	 */
306190320c3SVikram Mulukutla 	local_irq_disable();
30720bb759aSWill Deacon 	preempt_disable_notrace();
308190320c3SVikram Mulukutla 
309190320c3SVikram Mulukutla 	/*
310c95dbf27SIngo Molnar 	 * It's possible to come here directly from a panic-assertion and
311c95dbf27SIngo Molnar 	 * not have preempt disabled. Some functions called from here want
312dc009d92SEric W. Biederman 	 * preempt to be disabled. No point enabling it later though...
31393e13a36SMichael Holzheu 	 *
31493e13a36SMichael Holzheu 	 * Only one CPU is allowed to execute the panic code from here. For
31593e13a36SMichael Holzheu 	 * multiple parallel invocations of panic, all other CPUs either
31693e13a36SMichael Holzheu 	 * stop themself or will wait until they are stopped by the 1st CPU
31793e13a36SMichael Holzheu 	 * with smp_send_stop().
3181717f209SHidehiro Kawai 	 *
3199734fe4dSUros Bizjak 	 * cmpxchg success means this is the 1st CPU which comes here,
3209734fe4dSUros Bizjak 	 * so go ahead.
3211717f209SHidehiro Kawai 	 * `old_cpu == this_cpu' means we came from nmi_panic() which sets
3221717f209SHidehiro Kawai 	 * panic_cpu to this CPU.  In this case, this is also the 1st CPU.
323dc009d92SEric W. Biederman 	 */
3249734fe4dSUros Bizjak 	old_cpu = PANIC_CPU_INVALID;
3251717f209SHidehiro Kawai 	this_cpu = raw_smp_processor_id();
3261717f209SHidehiro Kawai 
3279734fe4dSUros Bizjak 	/* atomic_try_cmpxchg updates old_cpu on failure */
3289734fe4dSUros Bizjak 	if (atomic_try_cmpxchg(&panic_cpu, &old_cpu, this_cpu)) {
3299734fe4dSUros Bizjak 		/* go ahead */
3309734fe4dSUros Bizjak 	} else if (old_cpu != this_cpu)
33193e13a36SMichael Holzheu 		panic_smp_self_stop();
332dc009d92SEric W. Biederman 
3335b530fc1SAnton Blanchard 	console_verbose();
3341da177e4SLinus Torvalds 	bust_spinlocks(1);
3351da177e4SLinus Torvalds 	va_start(args, fmt);
336b49dec1cSBorislav Petkov 	len = vscnprintf(buf, sizeof(buf), fmt, args);
3371da177e4SLinus Torvalds 	va_end(args);
338b49dec1cSBorislav Petkov 
339b49dec1cSBorislav Petkov 	if (len && buf[len - 1] == '\n')
340b49dec1cSBorislav Petkov 		buf[len - 1] = '\0';
341b49dec1cSBorislav Petkov 
342d7c0847fSFabian Frederick 	pr_emerg("Kernel panic - not syncing: %s\n", buf);
3435cb27301SIngo Molnar #ifdef CONFIG_DEBUG_BUGVERBOSE
3446e6f0a1fSAndi Kleen 	/*
3456e6f0a1fSAndi Kleen 	 * Avoid nested stack-dumping if a panic occurs during oops processing
3466e6f0a1fSAndi Kleen 	 */
347026ee1f6SJason Wessel 	if (!test_taint(TAINT_DIE) && oops_in_progress <= 1)
3485cb27301SIngo Molnar 		dump_stack();
3495cb27301SIngo Molnar #endif
3501da177e4SLinus Torvalds 
351dc009d92SEric W. Biederman 	/*
3527d92bda2SDouglas Anderson 	 * If kgdb is enabled, give it a chance to run before we stop all
3537d92bda2SDouglas Anderson 	 * the other CPUs or else we won't be able to debug processes left
3547d92bda2SDouglas Anderson 	 * running on them.
3557d92bda2SDouglas Anderson 	 */
3567d92bda2SDouglas Anderson 	kgdb_panic(buf);
3577d92bda2SDouglas Anderson 
3587d92bda2SDouglas Anderson 	/*
359dc009d92SEric W. Biederman 	 * If we have crashed and we have a crash kernel loaded let it handle
360dc009d92SEric W. Biederman 	 * everything else.
361f06e5153SMasami Hiramatsu 	 * If we want to run this after calling panic_notifiers, pass
362f06e5153SMasami Hiramatsu 	 * the "crash_kexec_post_notifiers" option to the kernel.
3637bbee5caSHidehiro Kawai 	 *
3647bbee5caSHidehiro Kawai 	 * Bypass the panic_cpu check and call __crash_kexec directly.
365dc009d92SEric W. Biederman 	 */
366b905039eSGuilherme G. Piccoli 	if (!_crash_kexec_post_notifiers)
3677bbee5caSHidehiro Kawai 		__crash_kexec(NULL);
368dc009d92SEric W. Biederman 
369b905039eSGuilherme G. Piccoli 	panic_other_cpus_shutdown(_crash_kexec_post_notifiers);
3701da177e4SLinus Torvalds 
3716723734cSKees Cook 	/*
3726723734cSKees Cook 	 * Run any panic handlers, including those that might need to
3736723734cSKees Cook 	 * add information to the kmsg dump output.
3746723734cSKees Cook 	 */
375e041c683SAlan Stern 	atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
3761da177e4SLinus Torvalds 
377f953f140SGuilherme G. Piccoli 	panic_print_sys_info(false);
378f953f140SGuilherme G. Piccoli 
3796723734cSKees Cook 	kmsg_dump(KMSG_DUMP_PANIC);
3806723734cSKees Cook 
381f06e5153SMasami Hiramatsu 	/*
382f06e5153SMasami Hiramatsu 	 * If you doubt kdump always works fine in any situation,
383f06e5153SMasami Hiramatsu 	 * "crash_kexec_post_notifiers" offers you a chance to run
384f06e5153SMasami Hiramatsu 	 * panic_notifiers and dumping kmsg before kdump.
385f06e5153SMasami Hiramatsu 	 * Note: since some panic_notifiers can make crashed kernel
386f06e5153SMasami Hiramatsu 	 * more unstable, it can increase risks of the kdump failure too.
3877bbee5caSHidehiro Kawai 	 *
3887bbee5caSHidehiro Kawai 	 * Bypass the panic_cpu check and call __crash_kexec directly.
389f06e5153SMasami Hiramatsu 	 */
390b26e27ddSHidehiro Kawai 	if (_crash_kexec_post_notifiers)
3917bbee5caSHidehiro Kawai 		__crash_kexec(NULL);
392f06e5153SMasami Hiramatsu 
393c7c3f05eSSergey Senozhatsky 	console_unblank();
394d014e889SAaro Koskinen 
39508d78658SVitaly Kuznetsov 	/*
39608d78658SVitaly Kuznetsov 	 * We may have ended up stopping the CPU holding the lock (in
39708d78658SVitaly Kuznetsov 	 * smp_send_stop()) while still having some valuable data in the console
39808d78658SVitaly Kuznetsov 	 * buffer.  Try to acquire the lock then release it regardless of the
3997625b3a0SVitaly Kuznetsov 	 * result.  The release will also print the buffers out.  Locks debug
4007625b3a0SVitaly Kuznetsov 	 * should be disabled to avoid reporting bad unlock balance when
4017625b3a0SVitaly Kuznetsov 	 * panic() is not being callled from OOPS.
40208d78658SVitaly Kuznetsov 	 */
4037625b3a0SVitaly Kuznetsov 	debug_locks_off();
404de6da1e8SFeng Tang 	console_flush_on_panic(CONSOLE_FLUSH_PENDING);
40508d78658SVitaly Kuznetsov 
406f953f140SGuilherme G. Piccoli 	panic_print_sys_info(true);
407d999bd93SFeng Tang 
408c7ff0d9cSTAMUKI Shoichi 	if (!panic_blink)
409c7ff0d9cSTAMUKI Shoichi 		panic_blink = no_blink;
410c7ff0d9cSTAMUKI Shoichi 
411dc009d92SEric W. Biederman 	if (panic_timeout > 0) {
4121da177e4SLinus Torvalds 		/*
4131da177e4SLinus Torvalds 		 * Delay timeout seconds before rebooting the machine.
414c95dbf27SIngo Molnar 		 * We can't use the "normal" timers since we just panicked.
4151da177e4SLinus Torvalds 		 */
416ff7a28a0SJiri Slaby 		pr_emerg("Rebooting in %d seconds..\n", panic_timeout);
417c95dbf27SIngo Molnar 
418c7ff0d9cSTAMUKI Shoichi 		for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
4191da177e4SLinus Torvalds 			touch_nmi_watchdog();
420c7ff0d9cSTAMUKI Shoichi 			if (i >= i_next) {
421c7ff0d9cSTAMUKI Shoichi 				i += panic_blink(state ^= 1);
422c7ff0d9cSTAMUKI Shoichi 				i_next = i + 3600 / PANIC_BLINK_SPD;
423c7ff0d9cSTAMUKI Shoichi 			}
424c7ff0d9cSTAMUKI Shoichi 			mdelay(PANIC_TIMER_STEP);
4251da177e4SLinus Torvalds 		}
4264302fbc8SHugh Dickins 	}
4274302fbc8SHugh Dickins 	if (panic_timeout != 0) {
428c95dbf27SIngo Molnar 		/*
429c95dbf27SIngo Molnar 		 * This will not be a clean reboot, with everything
4302f048ea8SEric W. Biederman 		 * shutting down.  But if there is a chance of
4312f048ea8SEric W. Biederman 		 * rebooting the system it will be rebooted.
4321da177e4SLinus Torvalds 		 */
433b287a25aSAaro Koskinen 		if (panic_reboot_mode != REBOOT_UNDEFINED)
434b287a25aSAaro Koskinen 			reboot_mode = panic_reboot_mode;
4352f048ea8SEric W. Biederman 		emergency_restart();
4361da177e4SLinus Torvalds 	}
4371da177e4SLinus Torvalds #ifdef __sparc__
4381da177e4SLinus Torvalds 	{
4391da177e4SLinus Torvalds 		extern int stop_a_enabled;
440a271c241STom 'spot' Callaway 		/* Make sure the user can actually press Stop-A (L1-A) */
4411da177e4SLinus Torvalds 		stop_a_enabled = 1;
4427db60d05SVijay Kumar 		pr_emerg("Press Stop-A (L1-A) from sun keyboard or send break\n"
4437db60d05SVijay Kumar 			 "twice on console to return to the boot prom\n");
4441da177e4SLinus Torvalds 	}
4451da177e4SLinus Torvalds #endif
446347a8dc3SMartin Schwidefsky #if defined(CONFIG_S390)
44798587c2dSMartin Schwidefsky 	disabled_wait();
4481da177e4SLinus Torvalds #endif
4495ad75105SBorislav Petkov 	pr_emerg("---[ end Kernel panic - not syncing: %s ]---\n", buf);
450c39ea0b9SFeng Tang 
451c39ea0b9SFeng Tang 	/* Do not scroll important messages printed above */
452c39ea0b9SFeng Tang 	suppress_printk = 1;
4531da177e4SLinus Torvalds 	local_irq_enable();
454c7ff0d9cSTAMUKI Shoichi 	for (i = 0; ; i += PANIC_TIMER_STEP) {
455c22db941SJan Beulich 		touch_softlockup_watchdog();
456c7ff0d9cSTAMUKI Shoichi 		if (i >= i_next) {
457c7ff0d9cSTAMUKI Shoichi 			i += panic_blink(state ^= 1);
458c7ff0d9cSTAMUKI Shoichi 			i_next = i + 3600 / PANIC_BLINK_SPD;
459c7ff0d9cSTAMUKI Shoichi 		}
460c7ff0d9cSTAMUKI Shoichi 		mdelay(PANIC_TIMER_STEP);
4611da177e4SLinus Torvalds 	}
4621da177e4SLinus Torvalds }
4631da177e4SLinus Torvalds 
4641da177e4SLinus Torvalds EXPORT_SYMBOL(panic);
4651da177e4SLinus Torvalds 
4667fd8329bSPetr Mladek /*
4677fd8329bSPetr Mladek  * TAINT_FORCED_RMMOD could be a per-module flag but the module
4687fd8329bSPetr Mladek  * is being removed anyway.
4697fd8329bSPetr Mladek  */
4707fd8329bSPetr Mladek const struct taint_flag taint_flags[TAINT_FLAGS_COUNT] = {
47147d4b263SKees Cook 	[ TAINT_PROPRIETARY_MODULE ]	= { 'P', 'G', true },
47247d4b263SKees Cook 	[ TAINT_FORCED_MODULE ]		= { 'F', ' ', true },
47347d4b263SKees Cook 	[ TAINT_CPU_OUT_OF_SPEC ]	= { 'S', ' ', false },
47447d4b263SKees Cook 	[ TAINT_FORCED_RMMOD ]		= { 'R', ' ', false },
47547d4b263SKees Cook 	[ TAINT_MACHINE_CHECK ]		= { 'M', ' ', false },
47647d4b263SKees Cook 	[ TAINT_BAD_PAGE ]		= { 'B', ' ', false },
47747d4b263SKees Cook 	[ TAINT_USER ]			= { 'U', ' ', false },
47847d4b263SKees Cook 	[ TAINT_DIE ]			= { 'D', ' ', false },
47947d4b263SKees Cook 	[ TAINT_OVERRIDDEN_ACPI_TABLE ]	= { 'A', ' ', false },
48047d4b263SKees Cook 	[ TAINT_WARN ]			= { 'W', ' ', false },
48147d4b263SKees Cook 	[ TAINT_CRAP ]			= { 'C', ' ', true },
48247d4b263SKees Cook 	[ TAINT_FIRMWARE_WORKAROUND ]	= { 'I', ' ', false },
48347d4b263SKees Cook 	[ TAINT_OOT_MODULE ]		= { 'O', ' ', true },
48447d4b263SKees Cook 	[ TAINT_UNSIGNED_MODULE ]	= { 'E', ' ', true },
48547d4b263SKees Cook 	[ TAINT_SOFTLOCKUP ]		= { 'L', ' ', false },
48647d4b263SKees Cook 	[ TAINT_LIVEPATCH ]		= { 'K', ' ', true },
48747d4b263SKees Cook 	[ TAINT_AUX ]			= { 'X', ' ', true },
488bc4f2f54SKees Cook 	[ TAINT_RANDSTRUCT ]		= { 'T', ' ', true },
4892852ca7fSDavid Gow 	[ TAINT_TEST ]			= { 'N', ' ', true },
49025ddbb18SAndi Kleen };
49125ddbb18SAndi Kleen 
4921da177e4SLinus Torvalds /**
4931da177e4SLinus Torvalds  * print_tainted - return a string to represent the kernel taint state.
4941da177e4SLinus Torvalds  *
49557043247SMauro Carvalho Chehab  * For individual taint flag meanings, see Documentation/admin-guide/sysctl/kernel.rst
4961da177e4SLinus Torvalds  *
4979c4560e5SKees Cook  * The string is overwritten by the next call to print_tainted(),
4989c4560e5SKees Cook  * but is always NULL terminated.
4991da177e4SLinus Torvalds  */
5001da177e4SLinus Torvalds const char *print_tainted(void)
5011da177e4SLinus Torvalds {
5027fd8329bSPetr Mladek 	static char buf[TAINT_FLAGS_COUNT + sizeof("Tainted: ")];
50325ddbb18SAndi Kleen 
50447d4b263SKees Cook 	BUILD_BUG_ON(ARRAY_SIZE(taint_flags) != TAINT_FLAGS_COUNT);
50547d4b263SKees Cook 
50625ddbb18SAndi Kleen 	if (tainted_mask) {
50725ddbb18SAndi Kleen 		char *s;
50825ddbb18SAndi Kleen 		int i;
50925ddbb18SAndi Kleen 
51025ddbb18SAndi Kleen 		s = buf + sprintf(buf, "Tainted: ");
5117fd8329bSPetr Mladek 		for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
5127fd8329bSPetr Mladek 			const struct taint_flag *t = &taint_flags[i];
5137fd8329bSPetr Mladek 			*s++ = test_bit(i, &tainted_mask) ?
5145eb7c0d0SLarry Finger 					t->c_true : t->c_false;
5151da177e4SLinus Torvalds 		}
51625ddbb18SAndi Kleen 		*s = 0;
51725ddbb18SAndi Kleen 	} else
5181da177e4SLinus Torvalds 		snprintf(buf, sizeof(buf), "Not tainted");
519c95dbf27SIngo Molnar 
520c95dbf27SIngo Molnar 	return buf;
5211da177e4SLinus Torvalds }
5221da177e4SLinus Torvalds 
52325ddbb18SAndi Kleen int test_taint(unsigned flag)
52425ddbb18SAndi Kleen {
52525ddbb18SAndi Kleen 	return test_bit(flag, &tainted_mask);
52625ddbb18SAndi Kleen }
52725ddbb18SAndi Kleen EXPORT_SYMBOL(test_taint);
52825ddbb18SAndi Kleen 
52925ddbb18SAndi Kleen unsigned long get_taint(void)
53025ddbb18SAndi Kleen {
53125ddbb18SAndi Kleen 	return tainted_mask;
53225ddbb18SAndi Kleen }
53325ddbb18SAndi Kleen 
534373d4d09SRusty Russell /**
535373d4d09SRusty Russell  * add_taint: add a taint flag if not already set.
536373d4d09SRusty Russell  * @flag: one of the TAINT_* constants.
537373d4d09SRusty Russell  * @lockdep_ok: whether lock debugging is still OK.
538373d4d09SRusty Russell  *
539373d4d09SRusty Russell  * If something bad has gone wrong, you'll want @lockdebug_ok = false, but for
540373d4d09SRusty Russell  * some notewortht-but-not-corrupting cases, it can be set to true.
5419eeba613SFrederic Weisbecker  */
542373d4d09SRusty Russell void add_taint(unsigned flag, enum lockdep_ok lockdep_ok)
543373d4d09SRusty Russell {
544373d4d09SRusty Russell 	if (lockdep_ok == LOCKDEP_NOW_UNRELIABLE && __debug_locks_off())
545d7c0847fSFabian Frederick 		pr_warn("Disabling lock debugging due to kernel taint\n");
5469eeba613SFrederic Weisbecker 
54725ddbb18SAndi Kleen 	set_bit(flag, &tainted_mask);
548db38d5c1SRafael Aquini 
549db38d5c1SRafael Aquini 	if (tainted_mask & panic_on_taint) {
550db38d5c1SRafael Aquini 		panic_on_taint = 0;
551db38d5c1SRafael Aquini 		panic("panic_on_taint set ...");
552db38d5c1SRafael Aquini 	}
5531da177e4SLinus Torvalds }
5541da177e4SLinus Torvalds EXPORT_SYMBOL(add_taint);
555dd287796SAndrew Morton 
556dd287796SAndrew Morton static void spin_msec(int msecs)
557dd287796SAndrew Morton {
558dd287796SAndrew Morton 	int i;
559dd287796SAndrew Morton 
560dd287796SAndrew Morton 	for (i = 0; i < msecs; i++) {
561dd287796SAndrew Morton 		touch_nmi_watchdog();
562dd287796SAndrew Morton 		mdelay(1);
563dd287796SAndrew Morton 	}
564dd287796SAndrew Morton }
565dd287796SAndrew Morton 
566dd287796SAndrew Morton /*
567dd287796SAndrew Morton  * It just happens that oops_enter() and oops_exit() are identically
568dd287796SAndrew Morton  * implemented...
569dd287796SAndrew Morton  */
570dd287796SAndrew Morton static void do_oops_enter_exit(void)
571dd287796SAndrew Morton {
572dd287796SAndrew Morton 	unsigned long flags;
573dd287796SAndrew Morton 	static int spin_counter;
574dd287796SAndrew Morton 
575dd287796SAndrew Morton 	if (!pause_on_oops)
576dd287796SAndrew Morton 		return;
577dd287796SAndrew Morton 
578dd287796SAndrew Morton 	spin_lock_irqsave(&pause_on_oops_lock, flags);
579dd287796SAndrew Morton 	if (pause_on_oops_flag == 0) {
580dd287796SAndrew Morton 		/* This CPU may now print the oops message */
581dd287796SAndrew Morton 		pause_on_oops_flag = 1;
582dd287796SAndrew Morton 	} else {
583dd287796SAndrew Morton 		/* We need to stall this CPU */
584dd287796SAndrew Morton 		if (!spin_counter) {
585dd287796SAndrew Morton 			/* This CPU gets to do the counting */
586dd287796SAndrew Morton 			spin_counter = pause_on_oops;
587dd287796SAndrew Morton 			do {
588dd287796SAndrew Morton 				spin_unlock(&pause_on_oops_lock);
589dd287796SAndrew Morton 				spin_msec(MSEC_PER_SEC);
590dd287796SAndrew Morton 				spin_lock(&pause_on_oops_lock);
591dd287796SAndrew Morton 			} while (--spin_counter);
592dd287796SAndrew Morton 			pause_on_oops_flag = 0;
593dd287796SAndrew Morton 		} else {
594dd287796SAndrew Morton 			/* This CPU waits for a different one */
595dd287796SAndrew Morton 			while (spin_counter) {
596dd287796SAndrew Morton 				spin_unlock(&pause_on_oops_lock);
597dd287796SAndrew Morton 				spin_msec(1);
598dd287796SAndrew Morton 				spin_lock(&pause_on_oops_lock);
599dd287796SAndrew Morton 			}
600dd287796SAndrew Morton 		}
601dd287796SAndrew Morton 	}
602dd287796SAndrew Morton 	spin_unlock_irqrestore(&pause_on_oops_lock, flags);
603dd287796SAndrew Morton }
604dd287796SAndrew Morton 
605dd287796SAndrew Morton /*
606c95dbf27SIngo Molnar  * Return true if the calling CPU is allowed to print oops-related info.
607c95dbf27SIngo Molnar  * This is a bit racy..
608dd287796SAndrew Morton  */
60979076e12STiezhu Yang bool oops_may_print(void)
610dd287796SAndrew Morton {
611dd287796SAndrew Morton 	return pause_on_oops_flag == 0;
612dd287796SAndrew Morton }
613dd287796SAndrew Morton 
614dd287796SAndrew Morton /*
615dd287796SAndrew Morton  * Called when the architecture enters its oops handler, before it prints
616c95dbf27SIngo Molnar  * anything.  If this is the first CPU to oops, and it's oopsing the first
617c95dbf27SIngo Molnar  * time then let it proceed.
618dd287796SAndrew Morton  *
619c95dbf27SIngo Molnar  * This is all enabled by the pause_on_oops kernel boot option.  We do all
620c95dbf27SIngo Molnar  * this to ensure that oopses don't scroll off the screen.  It has the
621c95dbf27SIngo Molnar  * side-effect of preventing later-oopsing CPUs from mucking up the display,
622c95dbf27SIngo Molnar  * too.
623dd287796SAndrew Morton  *
624c95dbf27SIngo Molnar  * It turns out that the CPU which is allowed to print ends up pausing for
625c95dbf27SIngo Molnar  * the right duration, whereas all the other CPUs pause for twice as long:
626c95dbf27SIngo Molnar  * once in oops_enter(), once in oops_exit().
627dd287796SAndrew Morton  */
628dd287796SAndrew Morton void oops_enter(void)
629dd287796SAndrew Morton {
630bdff7870SThomas Gleixner 	tracing_off();
631c95dbf27SIngo Molnar 	/* can't trust the integrity of the kernel anymore: */
632c95dbf27SIngo Molnar 	debug_locks_off();
633dd287796SAndrew Morton 	do_oops_enter_exit();
63460c958d8SGuilherme G. Piccoli 
63560c958d8SGuilherme G. Piccoli 	if (sysctl_oops_all_cpu_backtrace)
63660c958d8SGuilherme G. Piccoli 		trigger_all_cpu_backtrace();
637dd287796SAndrew Morton }
638dd287796SAndrew Morton 
63963037f74SYue Hu static void print_oops_end_marker(void)
64071c33911SArjan van de Ven {
641e83a4472SSebastian Andrzej Siewior 	pr_warn("---[ end trace %016llx ]---\n", 0ULL);
64271c33911SArjan van de Ven }
64371c33911SArjan van de Ven 
6442c3b20e9SArjan van de Ven /*
645dd287796SAndrew Morton  * Called when the architecture exits its oops handler, after printing
646dd287796SAndrew Morton  * everything.
647dd287796SAndrew Morton  */
648dd287796SAndrew Morton void oops_exit(void)
649dd287796SAndrew Morton {
650dd287796SAndrew Morton 	do_oops_enter_exit();
65171c33911SArjan van de Ven 	print_oops_end_marker();
652456b565cSSimon Kagstrom 	kmsg_dump(KMSG_DUMP_OOPS);
653dd287796SAndrew Morton }
6543162f751SArjan van de Ven 
6552553b67aSJosh Poimboeuf struct warn_args {
6560f6f49a8SLinus Torvalds 	const char *fmt;
657a8f18b90SArjan van de Ven 	va_list args;
6580f6f49a8SLinus Torvalds };
6590f6f49a8SLinus Torvalds 
6602553b67aSJosh Poimboeuf void __warn(const char *file, int line, void *caller, unsigned taint,
6612553b67aSJosh Poimboeuf 	    struct pt_regs *regs, struct warn_args *args)
6620f6f49a8SLinus Torvalds {
663de7edd31SSteven Rostedt (Red Hat) 	disable_trace_on_warning();
664de7edd31SSteven Rostedt (Red Hat) 
6652553b67aSJosh Poimboeuf 	if (file)
6662553b67aSJosh Poimboeuf 		pr_warn("WARNING: CPU: %d PID: %d at %s:%d %pS\n",
6672553b67aSJosh Poimboeuf 			raw_smp_processor_id(), current->pid, file, line,
6682553b67aSJosh Poimboeuf 			caller);
6692553b67aSJosh Poimboeuf 	else
6702553b67aSJosh Poimboeuf 		pr_warn("WARNING: CPU: %d PID: %d at %pS\n",
6712553b67aSJosh Poimboeuf 			raw_smp_processor_id(), current->pid, caller);
67274853dbaSArjan van de Ven 
673b73aa539SBaoquan He #pragma GCC diagnostic push
674b73aa539SBaoquan He #ifndef __clang__
675b73aa539SBaoquan He #pragma GCC diagnostic ignored "-Wsuggest-attribute=format"
676b73aa539SBaoquan He #endif
6770f6f49a8SLinus Torvalds 	if (args)
6780f6f49a8SLinus Torvalds 		vprintk(args->fmt, args->args);
679b73aa539SBaoquan He #pragma GCC diagnostic pop
680a8f18b90SArjan van de Ven 
6813f388f28SAlexey Kardashevskiy 	print_modules();
6823f388f28SAlexey Kardashevskiy 
6833f388f28SAlexey Kardashevskiy 	if (regs)
6843f388f28SAlexey Kardashevskiy 		show_regs(regs);
6853f388f28SAlexey Kardashevskiy 
68679cc1ba7SKees Cook 	check_panic_on_warn("kernel");
6879e3961a0SPrarit Bhargava 
6882f31ad64SChristophe Leroy 	if (!regs)
689a8f18b90SArjan van de Ven 		dump_stack();
6902553b67aSJosh Poimboeuf 
6914c281074SSteven Rostedt (VMware) 	print_irqtrace_events(current);
6924c281074SSteven Rostedt (VMware) 
693a8f18b90SArjan van de Ven 	print_oops_end_marker();
69423b36fecSMarco Elver 	trace_error_report_end(ERROR_DETECTOR_WARN, (unsigned long)caller);
6952553b67aSJosh Poimboeuf 
696373d4d09SRusty Russell 	/* Just a warning, don't kill lockdep. */
697373d4d09SRusty Russell 	add_taint(taint, LOCKDEP_STILL_OK);
698a8f18b90SArjan van de Ven }
6990f6f49a8SLinus Torvalds 
700525bb813SArnd Bergmann #ifdef CONFIG_BUG
7012da1ead4SKees Cook #ifndef __WARN_FLAGS
702ee871133SKees Cook void warn_slowpath_fmt(const char *file, int line, unsigned taint,
703ee871133SKees Cook 		       const char *fmt, ...)
704b2be0527SBen Hutchings {
7055a5d7e9bSPeter Zijlstra 	bool rcu = warn_rcu_enter();
7062553b67aSJosh Poimboeuf 	struct warn_args args;
707b2be0527SBen Hutchings 
708f2f84b05SKees Cook 	pr_warn(CUT_HERE);
709d38aba49SKees Cook 
710d38aba49SKees Cook 	if (!fmt) {
711f2f84b05SKees Cook 		__warn(file, line, __builtin_return_address(0), taint,
712f2f84b05SKees Cook 		       NULL, NULL);
713cccd3281SLukas Wunner 		warn_rcu_exit(rcu);
714f2f84b05SKees Cook 		return;
715f2f84b05SKees Cook 	}
716f2f84b05SKees Cook 
717b2be0527SBen Hutchings 	args.fmt = fmt;
718b2be0527SBen Hutchings 	va_start(args.args, fmt);
7192553b67aSJosh Poimboeuf 	__warn(file, line, __builtin_return_address(0), taint, NULL, &args);
720b2be0527SBen Hutchings 	va_end(args.args);
7215a5d7e9bSPeter Zijlstra 	warn_rcu_exit(rcu);
722b2be0527SBen Hutchings }
723ee871133SKees Cook EXPORT_SYMBOL(warn_slowpath_fmt);
724a7bed27aSKees Cook #else
725a7bed27aSKees Cook void __warn_printk(const char *fmt, ...)
726a7bed27aSKees Cook {
7275a5d7e9bSPeter Zijlstra 	bool rcu = warn_rcu_enter();
728a7bed27aSKees Cook 	va_list args;
729a7bed27aSKees Cook 
730a7bed27aSKees Cook 	pr_warn(CUT_HERE);
731a7bed27aSKees Cook 
732a7bed27aSKees Cook 	va_start(args, fmt);
733a7bed27aSKees Cook 	vprintk(fmt, args);
734a7bed27aSKees Cook 	va_end(args);
7355a5d7e9bSPeter Zijlstra 	warn_rcu_exit(rcu);
736a7bed27aSKees Cook }
737a7bed27aSKees Cook EXPORT_SYMBOL(__warn_printk);
73879b4cc5eSArjan van de Ven #endif
73979b4cc5eSArjan van de Ven 
740b1fca27dSAndi Kleen /* Support resetting WARN*_ONCE state */
741b1fca27dSAndi Kleen 
742b1fca27dSAndi Kleen static int clear_warn_once_set(void *data, u64 val)
743b1fca27dSAndi Kleen {
744aaf5dcfbSAndi Kleen 	generic_bug_clear_once();
745b1fca27dSAndi Kleen 	memset(__start_once, 0, __end_once - __start_once);
746b1fca27dSAndi Kleen 	return 0;
747b1fca27dSAndi Kleen }
748b1fca27dSAndi Kleen 
7494169680eSYueHaibing DEFINE_DEBUGFS_ATTRIBUTE(clear_warn_once_fops, NULL, clear_warn_once_set,
750b1fca27dSAndi Kleen 			 "%lld\n");
751b1fca27dSAndi Kleen 
752b1fca27dSAndi Kleen static __init int register_warn_debugfs(void)
753b1fca27dSAndi Kleen {
754b1fca27dSAndi Kleen 	/* Don't care about failure */
7554169680eSYueHaibing 	debugfs_create_file_unsafe("clear_warn_once", 0200, NULL, NULL,
7564169680eSYueHaibing 				   &clear_warn_once_fops);
757b1fca27dSAndi Kleen 	return 0;
758b1fca27dSAndi Kleen }
759b1fca27dSAndi Kleen 
760b1fca27dSAndi Kleen device_initcall(register_warn_debugfs);
761b1fca27dSAndi Kleen #endif
762b1fca27dSAndi Kleen 
763050e9baaSLinus Torvalds #ifdef CONFIG_STACKPROTECTOR
76454371a43SArjan van de Ven 
7653162f751SArjan van de Ven /*
7663162f751SArjan van de Ven  * Called when gcc's -fstack-protector feature is used, and
7673162f751SArjan van de Ven  * gcc detects corruption of the on-stack canary value
7683162f751SArjan van de Ven  */
7695916d5f9SThomas Gleixner __visible noinstr void __stack_chk_fail(void)
7703162f751SArjan van de Ven {
7715916d5f9SThomas Gleixner 	instrumentation_begin();
77295c4fb78SBorislav Petkov 	panic("stack-protector: Kernel stack is corrupted in: %pB",
773517a92c4SIngo Molnar 		__builtin_return_address(0));
7745916d5f9SThomas Gleixner 	instrumentation_end();
7753162f751SArjan van de Ven }
7763162f751SArjan van de Ven EXPORT_SYMBOL(__stack_chk_fail);
77754371a43SArjan van de Ven 
7783162f751SArjan van de Ven #endif
779f44dd164SRusty Russell 
780f44dd164SRusty Russell core_param(panic, panic_timeout, int, 0644);
781d999bd93SFeng Tang core_param(panic_print, panic_print, ulong, 0644);
782f44dd164SRusty Russell core_param(pause_on_oops, pause_on_oops, int, 0644);
7839e3961a0SPrarit Bhargava core_param(panic_on_warn, panic_on_warn, int, 0644);
784b26e27ddSHidehiro Kawai core_param(crash_kexec_post_notifiers, crash_kexec_post_notifiers, bool, 0644);
785f06e5153SMasami Hiramatsu 
786d404ab0aSOlaf Hering static int __init oops_setup(char *s)
787d404ab0aSOlaf Hering {
788d404ab0aSOlaf Hering 	if (!s)
789d404ab0aSOlaf Hering 		return -EINVAL;
790d404ab0aSOlaf Hering 	if (!strcmp(s, "panic"))
791d404ab0aSOlaf Hering 		panic_on_oops = 1;
792d404ab0aSOlaf Hering 	return 0;
793d404ab0aSOlaf Hering }
794d404ab0aSOlaf Hering early_param("oops", oops_setup);
795db38d5c1SRafael Aquini 
796db38d5c1SRafael Aquini static int __init panic_on_taint_setup(char *s)
797db38d5c1SRafael Aquini {
798db38d5c1SRafael Aquini 	char *taint_str;
799db38d5c1SRafael Aquini 
800db38d5c1SRafael Aquini 	if (!s)
801db38d5c1SRafael Aquini 		return -EINVAL;
802db38d5c1SRafael Aquini 
803db38d5c1SRafael Aquini 	taint_str = strsep(&s, ",");
804db38d5c1SRafael Aquini 	if (kstrtoul(taint_str, 16, &panic_on_taint))
805db38d5c1SRafael Aquini 		return -EINVAL;
806db38d5c1SRafael Aquini 
807db38d5c1SRafael Aquini 	/* make sure panic_on_taint doesn't hold out-of-range TAINT flags */
808db38d5c1SRafael Aquini 	panic_on_taint &= TAINT_FLAGS_MAX;
809db38d5c1SRafael Aquini 
810db38d5c1SRafael Aquini 	if (!panic_on_taint)
811db38d5c1SRafael Aquini 		return -EINVAL;
812db38d5c1SRafael Aquini 
813db38d5c1SRafael Aquini 	if (s && !strcmp(s, "nousertaint"))
814db38d5c1SRafael Aquini 		panic_on_taint_nousertaint = true;
815db38d5c1SRafael Aquini 
8165d5dd3e4SAndy Shevchenko 	pr_info("panic_on_taint: bitmask=0x%lx nousertaint_mode=%s\n",
8175d5dd3e4SAndy Shevchenko 		panic_on_taint, str_enabled_disabled(panic_on_taint_nousertaint));
818db38d5c1SRafael Aquini 
819db38d5c1SRafael Aquini 	return 0;
820db38d5c1SRafael Aquini }
821db38d5c1SRafael Aquini early_param("panic_on_taint", panic_on_taint_setup);
822