forked from mirrors/linux
		
	 79cc1ba7ba
			
		
	
	
		79cc1ba7ba
		
	
	
	
	
		
			
			Several run-time checkers (KASAN, UBSAN, KFENCE, KCSAN, sched) roll their own warnings, and each check "panic_on_warn". Consolidate this into a single function so that future instrumentation can be added in a single location. Cc: Marco Elver <elver@google.com> Cc: Dmitry Vyukov <dvyukov@google.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Juri Lelli <juri.lelli@redhat.com> Cc: Vincent Guittot <vincent.guittot@linaro.org> Cc: Dietmar Eggemann <dietmar.eggemann@arm.com> Cc: Steven Rostedt <rostedt@goodmis.org> Cc: Ben Segall <bsegall@google.com> Cc: Mel Gorman <mgorman@suse.de> Cc: Daniel Bristot de Oliveira <bristot@redhat.com> Cc: Valentin Schneider <vschneid@redhat.com> Cc: Andrey Ryabinin <ryabinin.a.a@gmail.com> Cc: Alexander Potapenko <glider@google.com> Cc: Andrey Konovalov <andreyknvl@gmail.com> Cc: Vincenzo Frascino <vincenzo.frascino@arm.com> Cc: Andrew Morton <akpm@linux-foundation.org> Cc: David Gow <davidgow@google.com> Cc: tangmeng <tangmeng@uniontech.com> Cc: Jann Horn <jannh@google.com> Cc: Shuah Khan <skhan@linuxfoundation.org> Cc: Petr Mladek <pmladek@suse.com> Cc: "Paul E. McKenney" <paulmck@kernel.org> Cc: Sebastian Andrzej Siewior <bigeasy@linutronix.de> Cc: "Guilherme G. Piccoli" <gpiccoli@igalia.com> Cc: Tiezhu Yang <yangtiezhu@loongson.cn> Cc: kasan-dev@googlegroups.com Cc: linux-mm@kvack.org Reviewed-by: Luis Chamberlain <mcgrof@kernel.org> Signed-off-by: Kees Cook <keescook@chromium.org> Reviewed-by: Marco Elver <elver@google.com> Reviewed-by: Andrey Konovalov <andreyknvl@gmail.com> Link: https://lore.kernel.org/r/20221117234328.594699-4-keescook@chromium.org
		
			
				
	
	
		
			94 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
	
		
			2.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* SPDX-License-Identifier: GPL-2.0 */
 | |
| #ifndef _LINUX_PANIC_H
 | |
| #define _LINUX_PANIC_H
 | |
| 
 | |
| #include <linux/compiler_attributes.h>
 | |
| #include <linux/types.h>
 | |
| 
 | |
| struct pt_regs;
 | |
| 
 | |
| extern long (*panic_blink)(int state);
 | |
| __printf(1, 2)
 | |
| void panic(const char *fmt, ...) __noreturn __cold;
 | |
| void nmi_panic(struct pt_regs *regs, const char *msg);
 | |
| void check_panic_on_warn(const char *origin);
 | |
| extern void oops_enter(void);
 | |
| extern void oops_exit(void);
 | |
| extern bool oops_may_print(void);
 | |
| 
 | |
| extern int panic_timeout;
 | |
| extern unsigned long panic_print;
 | |
| extern int panic_on_oops;
 | |
| extern int panic_on_unrecovered_nmi;
 | |
| extern int panic_on_io_nmi;
 | |
| extern int panic_on_warn;
 | |
| 
 | |
| extern unsigned long panic_on_taint;
 | |
| extern bool panic_on_taint_nousertaint;
 | |
| 
 | |
| extern int sysctl_panic_on_rcu_stall;
 | |
| extern int sysctl_max_rcu_stall_to_panic;
 | |
| extern int sysctl_panic_on_stackoverflow;
 | |
| 
 | |
| extern bool crash_kexec_post_notifiers;
 | |
| 
 | |
| /*
 | |
|  * panic_cpu is used for synchronizing panic() and crash_kexec() execution. It
 | |
|  * holds a CPU number which is executing panic() currently. A value of
 | |
|  * PANIC_CPU_INVALID means no CPU has entered panic() or crash_kexec().
 | |
|  */
 | |
| extern atomic_t panic_cpu;
 | |
| #define PANIC_CPU_INVALID	-1
 | |
| 
 | |
| /*
 | |
|  * Only to be used by arch init code. If the user over-wrote the default
 | |
|  * CONFIG_PANIC_TIMEOUT, honor it.
 | |
|  */
 | |
| static inline void set_arch_panic_timeout(int timeout, int arch_default_timeout)
 | |
| {
 | |
| 	if (panic_timeout == arch_default_timeout)
 | |
| 		panic_timeout = timeout;
 | |
| }
 | |
| 
 | |
| /* This cannot be an enum because some may be used in assembly source. */
 | |
| #define TAINT_PROPRIETARY_MODULE	0
 | |
| #define TAINT_FORCED_MODULE		1
 | |
| #define TAINT_CPU_OUT_OF_SPEC		2
 | |
| #define TAINT_FORCED_RMMOD		3
 | |
| #define TAINT_MACHINE_CHECK		4
 | |
| #define TAINT_BAD_PAGE			5
 | |
| #define TAINT_USER			6
 | |
| #define TAINT_DIE			7
 | |
| #define TAINT_OVERRIDDEN_ACPI_TABLE	8
 | |
| #define TAINT_WARN			9
 | |
| #define TAINT_CRAP			10
 | |
| #define TAINT_FIRMWARE_WORKAROUND	11
 | |
| #define TAINT_OOT_MODULE		12
 | |
| #define TAINT_UNSIGNED_MODULE		13
 | |
| #define TAINT_SOFTLOCKUP		14
 | |
| #define TAINT_LIVEPATCH			15
 | |
| #define TAINT_AUX			16
 | |
| #define TAINT_RANDSTRUCT		17
 | |
| #define TAINT_TEST			18
 | |
| #define TAINT_FLAGS_COUNT		19
 | |
| #define TAINT_FLAGS_MAX			((1UL << TAINT_FLAGS_COUNT) - 1)
 | |
| 
 | |
| struct taint_flag {
 | |
| 	char c_true;	/* character printed when tainted */
 | |
| 	char c_false;	/* character printed when not tainted */
 | |
| 	bool module;	/* also show as a per-module taint flag */
 | |
| };
 | |
| 
 | |
| extern const struct taint_flag taint_flags[TAINT_FLAGS_COUNT];
 | |
| 
 | |
| enum lockdep_ok {
 | |
| 	LOCKDEP_STILL_OK,
 | |
| 	LOCKDEP_NOW_UNRELIABLE,
 | |
| };
 | |
| 
 | |
| extern const char *print_tainted(void);
 | |
| extern void add_taint(unsigned flag, enum lockdep_ok);
 | |
| extern int test_taint(unsigned flag);
 | |
| extern unsigned long get_taint(void);
 | |
| 
 | |
| #endif	/* _LINUX_PANIC_H */
 |