GNU Linux-libre 4.14.324-gnu1
[releases.git] / kernel / panic.c
1 /*
2  *  linux/kernel/panic.c
3  *
4  *  Copyright (C) 1991, 1992  Linus Torvalds
5  */
6
7 /*
8  * This function is used through-out the kernel (including mm and fs)
9  * to indicate a major problem.
10  */
11 #include <linux/debug_locks.h>
12 #include <linux/sched/debug.h>
13 #include <linux/interrupt.h>
14 #include <linux/kmsg_dump.h>
15 #include <linux/kallsyms.h>
16 #include <linux/notifier.h>
17 #include <linux/vt_kern.h>
18 #include <linux/module.h>
19 #include <linux/random.h>
20 #include <linux/ftrace.h>
21 #include <linux/reboot.h>
22 #include <linux/delay.h>
23 #include <linux/kexec.h>
24 #include <linux/sched.h>
25 #include <linux/sysrq.h>
26 #include <linux/init.h>
27 #include <linux/nmi.h>
28 #include <linux/console.h>
29 #include <linux/bug.h>
30 #include <linux/ratelimit.h>
31 #include <linux/sysfs.h>
32
33 #define PANIC_TIMER_STEP 100
34 #define PANIC_BLINK_SPD 18
35
36 int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE;
37 static unsigned long tainted_mask;
38 static int pause_on_oops;
39 static int pause_on_oops_flag;
40 static DEFINE_SPINLOCK(pause_on_oops_lock);
41 bool crash_kexec_post_notifiers;
42 int panic_on_warn __read_mostly;
43 static unsigned int warn_limit __read_mostly;
44
45 int panic_timeout = CONFIG_PANIC_TIMEOUT;
46 EXPORT_SYMBOL_GPL(panic_timeout);
47
48 ATOMIC_NOTIFIER_HEAD(panic_notifier_list);
49
50 EXPORT_SYMBOL(panic_notifier_list);
51
52 #ifdef CONFIG_SYSCTL
53 static struct ctl_table kern_panic_table[] = {
54         {
55                 .procname       = "warn_limit",
56                 .data           = &warn_limit,
57                 .maxlen         = sizeof(warn_limit),
58                 .mode           = 0644,
59                 .proc_handler   = proc_douintvec,
60         },
61         { }
62 };
63
64 static __init int kernel_panic_sysctls_init(void)
65 {
66         register_sysctl_init("kernel", kern_panic_table);
67         return 0;
68 }
69 late_initcall(kernel_panic_sysctls_init);
70 #endif
71
72 static atomic_t warn_count = ATOMIC_INIT(0);
73
74 #ifdef CONFIG_SYSFS
75 static ssize_t warn_count_show(struct kobject *kobj, struct kobj_attribute *attr,
76                                char *page)
77 {
78         return sysfs_emit(page, "%d\n", atomic_read(&warn_count));
79 }
80
81 static struct kobj_attribute warn_count_attr = __ATTR_RO(warn_count);
82
83 static __init int kernel_panic_sysfs_init(void)
84 {
85         sysfs_add_file_to_group(kernel_kobj, &warn_count_attr.attr, NULL);
86         return 0;
87 }
88 late_initcall(kernel_panic_sysfs_init);
89 #endif
90
91 static long no_blink(int state)
92 {
93         return 0;
94 }
95
96 /* Returns how long it waited in ms */
97 long (*panic_blink)(int state);
98 EXPORT_SYMBOL(panic_blink);
99
100 /*
101  * Stop ourself in panic -- architecture code may override this
102  */
103 void __weak panic_smp_self_stop(void)
104 {
105         while (1)
106                 cpu_relax();
107 }
108
109 /*
110  * Stop ourselves in NMI context if another CPU has already panicked. Arch code
111  * may override this to prepare for crash dumping, e.g. save regs info.
112  */
113 void __weak nmi_panic_self_stop(struct pt_regs *regs)
114 {
115         panic_smp_self_stop();
116 }
117
118 /*
119  * Stop other CPUs in panic.  Architecture dependent code may override this
120  * with more suitable version.  For example, if the architecture supports
121  * crash dump, it should save registers of each stopped CPU and disable
122  * per-CPU features such as virtualization extensions.
123  */
124 void __weak crash_smp_send_stop(void)
125 {
126         static int cpus_stopped;
127
128         /*
129          * This function can be called twice in panic path, but obviously
130          * we execute this only once.
131          */
132         if (cpus_stopped)
133                 return;
134
135         /*
136          * Note smp_send_stop is the usual smp shutdown function, which
137          * unfortunately means it may not be hardened to work in a panic
138          * situation.
139          */
140         smp_send_stop();
141         cpus_stopped = 1;
142 }
143
144 atomic_t panic_cpu = ATOMIC_INIT(PANIC_CPU_INVALID);
145
146 /*
147  * A variant of panic() called from NMI context. We return if we've already
148  * panicked on this CPU. If another CPU already panicked, loop in
149  * nmi_panic_self_stop() which can provide architecture dependent code such
150  * as saving register state for crash dump.
151  */
152 void nmi_panic(struct pt_regs *regs, const char *msg)
153 {
154         int old_cpu, cpu;
155
156         cpu = raw_smp_processor_id();
157         old_cpu = atomic_cmpxchg(&panic_cpu, PANIC_CPU_INVALID, cpu);
158
159         if (old_cpu == PANIC_CPU_INVALID)
160                 panic("%s", msg);
161         else if (old_cpu != cpu)
162                 nmi_panic_self_stop(regs);
163 }
164 EXPORT_SYMBOL(nmi_panic);
165
166 void check_panic_on_warn(const char *origin)
167 {
168         unsigned int limit;
169
170         if (panic_on_warn)
171                 panic("%s: panic_on_warn set ...\n", origin);
172
173         limit = READ_ONCE(warn_limit);
174         if (atomic_inc_return(&warn_count) >= limit && limit)
175                 panic("%s: system warned too often (kernel.warn_limit is %d)",
176                       origin, limit);
177 }
178
179 /**
180  *      panic - halt the system
181  *      @fmt: The text string to print
182  *
183  *      Display a message, then perform cleanups.
184  *
185  *      This function never returns.
186  */
187 void panic(const char *fmt, ...)
188 {
189         static char buf[1024];
190         va_list args;
191         long i, i_next = 0;
192         int state = 0;
193         int old_cpu, this_cpu;
194         bool _crash_kexec_post_notifiers = crash_kexec_post_notifiers;
195
196         if (panic_on_warn) {
197                 /*
198                  * This thread may hit another WARN() in the panic path.
199                  * Resetting this prevents additional WARN() from panicking the
200                  * system on this thread.  Other threads are blocked by the
201                  * panic_mutex in panic().
202                  */
203                 panic_on_warn = 0;
204         }
205
206         /*
207          * Disable local interrupts. This will prevent panic_smp_self_stop
208          * from deadlocking the first cpu that invokes the panic, since
209          * there is nothing to prevent an interrupt handler (that runs
210          * after setting panic_cpu) from invoking panic() again.
211          */
212         local_irq_disable();
213         preempt_disable_notrace();
214
215         /*
216          * It's possible to come here directly from a panic-assertion and
217          * not have preempt disabled. Some functions called from here want
218          * preempt to be disabled. No point enabling it later though...
219          *
220          * Only one CPU is allowed to execute the panic code from here. For
221          * multiple parallel invocations of panic, all other CPUs either
222          * stop themself or will wait until they are stopped by the 1st CPU
223          * with smp_send_stop().
224          *
225          * `old_cpu == PANIC_CPU_INVALID' means this is the 1st CPU which
226          * comes here, so go ahead.
227          * `old_cpu == this_cpu' means we came from nmi_panic() which sets
228          * panic_cpu to this CPU.  In this case, this is also the 1st CPU.
229          */
230         this_cpu = raw_smp_processor_id();
231         old_cpu  = atomic_cmpxchg(&panic_cpu, PANIC_CPU_INVALID, this_cpu);
232
233         if (old_cpu != PANIC_CPU_INVALID && old_cpu != this_cpu)
234                 panic_smp_self_stop();
235
236         console_verbose();
237         bust_spinlocks(1);
238         va_start(args, fmt);
239         vsnprintf(buf, sizeof(buf), fmt, args);
240         va_end(args);
241         pr_emerg("Kernel panic - not syncing: %s\n", buf);
242 #ifdef CONFIG_DEBUG_BUGVERBOSE
243         /*
244          * Avoid nested stack-dumping if a panic occurs during oops processing
245          */
246         if (!test_taint(TAINT_DIE) && oops_in_progress <= 1)
247                 dump_stack();
248 #endif
249
250         /*
251          * If we have crashed and we have a crash kernel loaded let it handle
252          * everything else.
253          * If we want to run this after calling panic_notifiers, pass
254          * the "crash_kexec_post_notifiers" option to the kernel.
255          *
256          * Bypass the panic_cpu check and call __crash_kexec directly.
257          */
258         if (!_crash_kexec_post_notifiers) {
259                 printk_safe_flush_on_panic();
260                 __crash_kexec(NULL);
261
262                 /*
263                  * Note smp_send_stop is the usual smp shutdown function, which
264                  * unfortunately means it may not be hardened to work in a
265                  * panic situation.
266                  */
267                 smp_send_stop();
268         } else {
269                 /*
270                  * If we want to do crash dump after notifier calls and
271                  * kmsg_dump, we will need architecture dependent extra
272                  * works in addition to stopping other CPUs.
273                  */
274                 crash_smp_send_stop();
275         }
276
277         /*
278          * Run any panic handlers, including those that might need to
279          * add information to the kmsg dump output.
280          */
281         atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
282
283         /* Call flush even twice. It tries harder with a single online CPU */
284         printk_safe_flush_on_panic();
285         kmsg_dump(KMSG_DUMP_PANIC);
286
287         /*
288          * If you doubt kdump always works fine in any situation,
289          * "crash_kexec_post_notifiers" offers you a chance to run
290          * panic_notifiers and dumping kmsg before kdump.
291          * Note: since some panic_notifiers can make crashed kernel
292          * more unstable, it can increase risks of the kdump failure too.
293          *
294          * Bypass the panic_cpu check and call __crash_kexec directly.
295          */
296         if (_crash_kexec_post_notifiers)
297                 __crash_kexec(NULL);
298
299 #ifdef CONFIG_VT
300         unblank_screen();
301 #endif
302         console_unblank();
303
304         /*
305          * We may have ended up stopping the CPU holding the lock (in
306          * smp_send_stop()) while still having some valuable data in the console
307          * buffer.  Try to acquire the lock then release it regardless of the
308          * result.  The release will also print the buffers out.  Locks debug
309          * should be disabled to avoid reporting bad unlock balance when
310          * panic() is not being callled from OOPS.
311          */
312         debug_locks_off();
313         console_flush_on_panic();
314
315         if (!panic_blink)
316                 panic_blink = no_blink;
317
318         if (panic_timeout > 0) {
319                 /*
320                  * Delay timeout seconds before rebooting the machine.
321                  * We can't use the "normal" timers since we just panicked.
322                  */
323                 pr_emerg("Rebooting in %d seconds..\n", panic_timeout);
324
325                 for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
326                         touch_nmi_watchdog();
327                         if (i >= i_next) {
328                                 i += panic_blink(state ^= 1);
329                                 i_next = i + 3600 / PANIC_BLINK_SPD;
330                         }
331                         mdelay(PANIC_TIMER_STEP);
332                 }
333         }
334         if (panic_timeout != 0) {
335                 /*
336                  * This will not be a clean reboot, with everything
337                  * shutting down.  But if there is a chance of
338                  * rebooting the system it will be rebooted.
339                  */
340                 emergency_restart();
341         }
342 #ifdef __sparc__
343         {
344                 extern int stop_a_enabled;
345                 /* Make sure the user can actually press Stop-A (L1-A) */
346                 stop_a_enabled = 1;
347                 pr_emerg("Press Stop-A (L1-A) from sun keyboard or send break\n"
348                          "twice on console to return to the boot prom\n");
349         }
350 #endif
351 #if defined(CONFIG_S390)
352         {
353                 unsigned long caller;
354
355                 caller = (unsigned long)__builtin_return_address(0);
356                 disabled_wait(caller);
357         }
358 #endif
359         pr_emerg("---[ end Kernel panic - not syncing: %s\n", buf);
360         local_irq_enable();
361         for (i = 0; ; i += PANIC_TIMER_STEP) {
362                 touch_softlockup_watchdog();
363                 if (i >= i_next) {
364                         i += panic_blink(state ^= 1);
365                         i_next = i + 3600 / PANIC_BLINK_SPD;
366                 }
367                 mdelay(PANIC_TIMER_STEP);
368         }
369 }
370
371 EXPORT_SYMBOL(panic);
372
373 /*
374  * TAINT_FORCED_RMMOD could be a per-module flag but the module
375  * is being removed anyway.
376  */
377 const struct taint_flag taint_flags[TAINT_FLAGS_COUNT] = {
378         { 'P', 'G', true },     /* TAINT_PROPRIETARY_MODULE */
379         { 'F', ' ', true },     /* TAINT_FORCED_MODULE */
380         { 'S', ' ', false },    /* TAINT_CPU_OUT_OF_SPEC */
381         { 'R', ' ', false },    /* TAINT_FORCED_RMMOD */
382         { 'M', ' ', false },    /* TAINT_MACHINE_CHECK */
383         { 'B', ' ', false },    /* TAINT_BAD_PAGE */
384         { 'U', ' ', false },    /* TAINT_USER */
385         { 'D', ' ', false },    /* TAINT_DIE */
386         { 'A', ' ', false },    /* TAINT_OVERRIDDEN_ACPI_TABLE */
387         { 'W', ' ', false },    /* TAINT_WARN */
388         { 'C', ' ', true },     /* TAINT_CRAP */
389         { 'I', ' ', false },    /* TAINT_FIRMWARE_WORKAROUND */
390         { 'O', ' ', true },     /* TAINT_OOT_MODULE */
391         { 'E', ' ', true },     /* TAINT_UNSIGNED_MODULE */
392         { 'L', ' ', false },    /* TAINT_SOFTLOCKUP */
393         { 'K', ' ', true },     /* TAINT_LIVEPATCH */
394 };
395
396 /**
397  *      print_tainted - return a string to represent the kernel taint state.
398  *
399  *  'P' - Proprietary module has been loaded.
400  *  'F' - Module has been forcibly loaded.
401  *  'S' - SMP with CPUs not designed for SMP.
402  *  'R' - User forced a module unload.
403  *  'M' - System experienced a machine check exception.
404  *  'B' - System has hit bad_page.
405  *  'U' - Userspace-defined naughtiness.
406  *  'D' - Kernel has oopsed before
407  *  'A' - ACPI table overridden.
408  *  'W' - Taint on warning.
409  *  'C' - modules from drivers/staging are loaded.
410  *  'I' - Working around severe firmware bug.
411  *  'O' - Out-of-tree module has been loaded.
412  *  'E' - Unsigned module has been loaded.
413  *  'L' - A soft lockup has previously occurred.
414  *  'K' - Kernel has been live patched.
415  *
416  *      The string is overwritten by the next call to print_tainted().
417  */
418 const char *print_tainted(void)
419 {
420         static char buf[TAINT_FLAGS_COUNT + sizeof("Tainted: ")];
421
422         if (tainted_mask) {
423                 char *s;
424                 int i;
425
426                 s = buf + sprintf(buf, "Tainted: ");
427                 for (i = 0; i < TAINT_FLAGS_COUNT; i++) {
428                         const struct taint_flag *t = &taint_flags[i];
429                         *s++ = test_bit(i, &tainted_mask) ?
430                                         t->c_true : t->c_false;
431                 }
432                 *s = 0;
433         } else
434                 snprintf(buf, sizeof(buf), "Not tainted");
435
436         return buf;
437 }
438
439 int test_taint(unsigned flag)
440 {
441         return test_bit(flag, &tainted_mask);
442 }
443 EXPORT_SYMBOL(test_taint);
444
445 unsigned long get_taint(void)
446 {
447         return tainted_mask;
448 }
449
450 /**
451  * add_taint: add a taint flag if not already set.
452  * @flag: one of the TAINT_* constants.
453  * @lockdep_ok: whether lock debugging is still OK.
454  *
455  * If something bad has gone wrong, you'll want @lockdebug_ok = false, but for
456  * some notewortht-but-not-corrupting cases, it can be set to true.
457  */
458 void add_taint(unsigned flag, enum lockdep_ok lockdep_ok)
459 {
460         if (lockdep_ok == LOCKDEP_NOW_UNRELIABLE && __debug_locks_off())
461                 pr_warn("Disabling lock debugging due to kernel taint\n");
462
463         set_bit(flag, &tainted_mask);
464 }
465 EXPORT_SYMBOL(add_taint);
466
467 static void spin_msec(int msecs)
468 {
469         int i;
470
471         for (i = 0; i < msecs; i++) {
472                 touch_nmi_watchdog();
473                 mdelay(1);
474         }
475 }
476
477 /*
478  * It just happens that oops_enter() and oops_exit() are identically
479  * implemented...
480  */
481 static void do_oops_enter_exit(void)
482 {
483         unsigned long flags;
484         static int spin_counter;
485
486         if (!pause_on_oops)
487                 return;
488
489         spin_lock_irqsave(&pause_on_oops_lock, flags);
490         if (pause_on_oops_flag == 0) {
491                 /* This CPU may now print the oops message */
492                 pause_on_oops_flag = 1;
493         } else {
494                 /* We need to stall this CPU */
495                 if (!spin_counter) {
496                         /* This CPU gets to do the counting */
497                         spin_counter = pause_on_oops;
498                         do {
499                                 spin_unlock(&pause_on_oops_lock);
500                                 spin_msec(MSEC_PER_SEC);
501                                 spin_lock(&pause_on_oops_lock);
502                         } while (--spin_counter);
503                         pause_on_oops_flag = 0;
504                 } else {
505                         /* This CPU waits for a different one */
506                         while (spin_counter) {
507                                 spin_unlock(&pause_on_oops_lock);
508                                 spin_msec(1);
509                                 spin_lock(&pause_on_oops_lock);
510                         }
511                 }
512         }
513         spin_unlock_irqrestore(&pause_on_oops_lock, flags);
514 }
515
516 /*
517  * Return true if the calling CPU is allowed to print oops-related info.
518  * This is a bit racy..
519  */
520 int oops_may_print(void)
521 {
522         return pause_on_oops_flag == 0;
523 }
524
525 /*
526  * Called when the architecture enters its oops handler, before it prints
527  * anything.  If this is the first CPU to oops, and it's oopsing the first
528  * time then let it proceed.
529  *
530  * This is all enabled by the pause_on_oops kernel boot option.  We do all
531  * this to ensure that oopses don't scroll off the screen.  It has the
532  * side-effect of preventing later-oopsing CPUs from mucking up the display,
533  * too.
534  *
535  * It turns out that the CPU which is allowed to print ends up pausing for
536  * the right duration, whereas all the other CPUs pause for twice as long:
537  * once in oops_enter(), once in oops_exit().
538  */
539 void oops_enter(void)
540 {
541         tracing_off();
542         /* can't trust the integrity of the kernel anymore: */
543         debug_locks_off();
544         do_oops_enter_exit();
545 }
546
547 /*
548  * 64-bit random ID for oopses:
549  */
550 static u64 oops_id;
551
552 static int init_oops_id(void)
553 {
554         if (!oops_id)
555                 get_random_bytes(&oops_id, sizeof(oops_id));
556         else
557                 oops_id++;
558
559         return 0;
560 }
561 late_initcall(init_oops_id);
562
563 void print_oops_end_marker(void)
564 {
565         init_oops_id();
566         pr_warn("---[ end trace %016llx ]---\n", (unsigned long long)oops_id);
567 }
568
569 /*
570  * Called when the architecture exits its oops handler, after printing
571  * everything.
572  */
573 void oops_exit(void)
574 {
575         do_oops_enter_exit();
576         print_oops_end_marker();
577         kmsg_dump(KMSG_DUMP_OOPS);
578 }
579
580 struct warn_args {
581         const char *fmt;
582         va_list args;
583 };
584
585 void __warn(const char *file, int line, void *caller, unsigned taint,
586             struct pt_regs *regs, struct warn_args *args)
587 {
588         disable_trace_on_warning();
589
590         pr_warn("------------[ cut here ]------------\n");
591
592         if (file)
593                 pr_warn("WARNING: CPU: %d PID: %d at %s:%d %pS\n",
594                         raw_smp_processor_id(), current->pid, file, line,
595                         caller);
596         else
597                 pr_warn("WARNING: CPU: %d PID: %d at %pS\n",
598                         raw_smp_processor_id(), current->pid, caller);
599
600         if (args)
601                 vprintk(args->fmt, args->args);
602
603         check_panic_on_warn("kernel");
604
605         print_modules();
606
607         if (regs)
608                 show_regs(regs);
609         else
610                 dump_stack();
611
612         print_oops_end_marker();
613
614         /* Just a warning, don't kill lockdep. */
615         add_taint(taint, LOCKDEP_STILL_OK);
616 }
617
618 #ifdef WANT_WARN_ON_SLOWPATH
619 void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
620 {
621         struct warn_args args;
622
623         args.fmt = fmt;
624         va_start(args.args, fmt);
625         __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL,
626                &args);
627         va_end(args.args);
628 }
629 EXPORT_SYMBOL(warn_slowpath_fmt);
630
631 void warn_slowpath_fmt_taint(const char *file, int line,
632                              unsigned taint, const char *fmt, ...)
633 {
634         struct warn_args args;
635
636         args.fmt = fmt;
637         va_start(args.args, fmt);
638         __warn(file, line, __builtin_return_address(0), taint, NULL, &args);
639         va_end(args.args);
640 }
641 EXPORT_SYMBOL(warn_slowpath_fmt_taint);
642
643 void warn_slowpath_null(const char *file, int line)
644 {
645         __warn(file, line, __builtin_return_address(0), TAINT_WARN, NULL, NULL);
646 }
647 EXPORT_SYMBOL(warn_slowpath_null);
648 #endif
649
650 #ifdef CONFIG_CC_STACKPROTECTOR
651
652 /*
653  * Called when gcc's -fstack-protector feature is used, and
654  * gcc detects corruption of the on-stack canary value
655  */
656 __visible void __stack_chk_fail(void)
657 {
658         panic("stack-protector: Kernel stack is corrupted in: %p\n",
659                 __builtin_return_address(0));
660 }
661 EXPORT_SYMBOL(__stack_chk_fail);
662
663 #endif
664
665 #ifdef CONFIG_ARCH_HAS_REFCOUNT
666 void refcount_error_report(struct pt_regs *regs, const char *err)
667 {
668         WARN_RATELIMIT(1, "refcount_t %s at %pB in %s[%d], uid/euid: %u/%u\n",
669                 err, (void *)instruction_pointer(regs),
670                 current->comm, task_pid_nr(current),
671                 from_kuid_munged(&init_user_ns, current_uid()),
672                 from_kuid_munged(&init_user_ns, current_euid()));
673 }
674 #endif
675
676 core_param(panic, panic_timeout, int, 0644);
677 core_param(pause_on_oops, pause_on_oops, int, 0644);
678 core_param(panic_on_warn, panic_on_warn, int, 0644);
679 core_param(crash_kexec_post_notifiers, crash_kexec_post_notifiers, bool, 0644);
680
681 static int __init oops_setup(char *s)
682 {
683         if (!s)
684                 return -EINVAL;
685         if (!strcmp(s, "panic"))
686                 panic_on_oops = 1;
687         return 0;
688 }
689 early_param("oops", oops_setup);