Merge branch 'android-4.4' of https://android.googlesource.com/kernel/common
[firefly-linux-kernel-4.4.55.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/interrupt.h>
13 #include <linux/kmsg_dump.h>
14 #include <linux/kallsyms.h>
15 #include <linux/notifier.h>
16 #include <linux/module.h>
17 #include <linux/random.h>
18 #include <linux/ftrace.h>
19 #include <linux/reboot.h>
20 #include <linux/delay.h>
21 #include <linux/kexec.h>
22 #include <linux/sched.h>
23 #include <linux/sysrq.h>
24 #include <linux/init.h>
25 #include <linux/nmi.h>
26 #include <linux/console.h>
27
28 #define PANIC_TIMER_STEP 100
29 #define PANIC_BLINK_SPD 18
30
31 /* Machine specific panic information string */
32 char *mach_panic_string;
33
34 int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE;
35 static unsigned long tainted_mask;
36 static int pause_on_oops;
37 static int pause_on_oops_flag;
38 static DEFINE_SPINLOCK(pause_on_oops_lock);
39 bool crash_kexec_post_notifiers;
40 int panic_on_warn __read_mostly;
41
42 int panic_timeout = CONFIG_PANIC_TIMEOUT;
43 EXPORT_SYMBOL_GPL(panic_timeout);
44
45 ATOMIC_NOTIFIER_HEAD(panic_notifier_list);
46
47 EXPORT_SYMBOL(panic_notifier_list);
48
49 static long no_blink(int state)
50 {
51         return 0;
52 }
53
54 /* Returns how long it waited in ms */
55 long (*panic_blink)(int state);
56 EXPORT_SYMBOL(panic_blink);
57
58 /*
59  * Stop ourself in panic -- architecture code may override this
60  */
61 void __weak panic_smp_self_stop(void)
62 {
63         while (1)
64                 cpu_relax();
65 }
66
67 /**
68  *      panic - halt the system
69  *      @fmt: The text string to print
70  *
71  *      Display a message, then perform cleanups.
72  *
73  *      This function never returns.
74  */
75 void panic(const char *fmt, ...)
76 {
77         static DEFINE_SPINLOCK(panic_lock);
78         static char buf[1024];
79         va_list args;
80         long i, i_next = 0;
81         int state = 0;
82
83         /*
84          * Disable local interrupts. This will prevent panic_smp_self_stop
85          * from deadlocking the first cpu that invokes the panic, since
86          * there is nothing to prevent an interrupt handler (that runs
87          * after the panic_lock is acquired) from invoking panic again.
88          */
89         local_irq_disable();
90
91         /*
92          * It's possible to come here directly from a panic-assertion and
93          * not have preempt disabled. Some functions called from here want
94          * preempt to be disabled. No point enabling it later though...
95          *
96          * Only one CPU is allowed to execute the panic code from here. For
97          * multiple parallel invocations of panic, all other CPUs either
98          * stop themself or will wait until they are stopped by the 1st CPU
99          * with smp_send_stop().
100          */
101         if (!spin_trylock(&panic_lock))
102                 panic_smp_self_stop();
103
104         console_verbose();
105         bust_spinlocks(1);
106         va_start(args, fmt);
107         vsnprintf(buf, sizeof(buf), fmt, args);
108         va_end(args);
109         pr_emerg("Kernel panic - not syncing: %s\n", buf);
110 #ifdef CONFIG_DEBUG_BUGVERBOSE
111         /*
112          * Avoid nested stack-dumping if a panic occurs during oops processing
113          */
114         if (!test_taint(TAINT_DIE) && oops_in_progress <= 1)
115                 dump_stack();
116 #endif
117
118         /*
119          * If we have crashed and we have a crash kernel loaded let it handle
120          * everything else.
121          * If we want to run this after calling panic_notifiers, pass
122          * the "crash_kexec_post_notifiers" option to the kernel.
123          */
124         if (!crash_kexec_post_notifiers)
125                 crash_kexec(NULL);
126
127         /*
128          * Note smp_send_stop is the usual smp shutdown function, which
129          * unfortunately means it may not be hardened to work in a panic
130          * situation.
131          */
132         smp_send_stop();
133
134         /*
135          * Run any panic handlers, including those that might need to
136          * add information to the kmsg dump output.
137          */
138         atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
139
140         kmsg_dump(KMSG_DUMP_PANIC);
141
142         /*
143          * If you doubt kdump always works fine in any situation,
144          * "crash_kexec_post_notifiers" offers you a chance to run
145          * panic_notifiers and dumping kmsg before kdump.
146          * Note: since some panic_notifiers can make crashed kernel
147          * more unstable, it can increase risks of the kdump failure too.
148          */
149         if (crash_kexec_post_notifiers)
150                 crash_kexec(NULL);
151
152         bust_spinlocks(0);
153
154         /*
155          * We may have ended up stopping the CPU holding the lock (in
156          * smp_send_stop()) while still having some valuable data in the console
157          * buffer.  Try to acquire the lock then release it regardless of the
158          * result.  The release will also print the buffers out.  Locks debug
159          * should be disabled to avoid reporting bad unlock balance when
160          * panic() is not being callled from OOPS.
161          */
162         debug_locks_off();
163         console_trylock();
164         console_unlock();
165
166         if (!panic_blink)
167                 panic_blink = no_blink;
168
169         if (panic_timeout > 0) {
170                 /*
171                  * Delay timeout seconds before rebooting the machine.
172                  * We can't use the "normal" timers since we just panicked.
173                  */
174                 pr_emerg("Rebooting in %d seconds..", panic_timeout);
175
176                 for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
177                         touch_nmi_watchdog();
178                         if (i >= i_next) {
179                                 i += panic_blink(state ^= 1);
180                                 i_next = i + 3600 / PANIC_BLINK_SPD;
181                         }
182                         mdelay(PANIC_TIMER_STEP);
183                 }
184         }
185         if (panic_timeout != 0) {
186                 /*
187                  * This will not be a clean reboot, with everything
188                  * shutting down.  But if there is a chance of
189                  * rebooting the system it will be rebooted.
190                  */
191                 emergency_restart();
192         }
193 #ifdef __sparc__
194         {
195                 extern int stop_a_enabled;
196                 /* Make sure the user can actually press Stop-A (L1-A) */
197                 stop_a_enabled = 1;
198                 pr_emerg("Press Stop-A (L1-A) to return to the boot prom\n");
199         }
200 #endif
201 #if defined(CONFIG_S390)
202         {
203                 unsigned long caller;
204
205                 caller = (unsigned long)__builtin_return_address(0);
206                 disabled_wait(caller);
207         }
208 #endif
209         pr_emerg("---[ end Kernel panic - not syncing: %s\n", buf);
210         local_irq_enable();
211         for (i = 0; ; i += PANIC_TIMER_STEP) {
212                 touch_softlockup_watchdog();
213                 if (i >= i_next) {
214                         i += panic_blink(state ^= 1);
215                         i_next = i + 3600 / PANIC_BLINK_SPD;
216                 }
217                 mdelay(PANIC_TIMER_STEP);
218         }
219 }
220
221 EXPORT_SYMBOL(panic);
222
223
224 struct tnt {
225         u8      bit;
226         char    true;
227         char    false;
228 };
229
230 static const struct tnt tnts[] = {
231         { TAINT_PROPRIETARY_MODULE,     'P', 'G' },
232         { TAINT_FORCED_MODULE,          'F', ' ' },
233         { TAINT_CPU_OUT_OF_SPEC,        'S', ' ' },
234         { TAINT_FORCED_RMMOD,           'R', ' ' },
235         { TAINT_MACHINE_CHECK,          'M', ' ' },
236         { TAINT_BAD_PAGE,               'B', ' ' },
237         { TAINT_USER,                   'U', ' ' },
238         { TAINT_DIE,                    'D', ' ' },
239         { TAINT_OVERRIDDEN_ACPI_TABLE,  'A', ' ' },
240         { TAINT_WARN,                   'W', ' ' },
241         { TAINT_CRAP,                   'C', ' ' },
242         { TAINT_FIRMWARE_WORKAROUND,    'I', ' ' },
243         { TAINT_OOT_MODULE,             'O', ' ' },
244         { TAINT_UNSIGNED_MODULE,        'E', ' ' },
245         { TAINT_SOFTLOCKUP,             'L', ' ' },
246         { TAINT_LIVEPATCH,              'K', ' ' },
247 };
248
249 /**
250  *      print_tainted - return a string to represent the kernel taint state.
251  *
252  *  'P' - Proprietary module has been loaded.
253  *  'F' - Module has been forcibly loaded.
254  *  'S' - SMP with CPUs not designed for SMP.
255  *  'R' - User forced a module unload.
256  *  'M' - System experienced a machine check exception.
257  *  'B' - System has hit bad_page.
258  *  'U' - Userspace-defined naughtiness.
259  *  'D' - Kernel has oopsed before
260  *  'A' - ACPI table overridden.
261  *  'W' - Taint on warning.
262  *  'C' - modules from drivers/staging are loaded.
263  *  'I' - Working around severe firmware bug.
264  *  'O' - Out-of-tree module has been loaded.
265  *  'E' - Unsigned module has been loaded.
266  *  'L' - A soft lockup has previously occurred.
267  *  'K' - Kernel has been live patched.
268  *
269  *      The string is overwritten by the next call to print_tainted().
270  */
271 const char *print_tainted(void)
272 {
273         static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ")];
274
275         if (tainted_mask) {
276                 char *s;
277                 int i;
278
279                 s = buf + sprintf(buf, "Tainted: ");
280                 for (i = 0; i < ARRAY_SIZE(tnts); i++) {
281                         const struct tnt *t = &tnts[i];
282                         *s++ = test_bit(t->bit, &tainted_mask) ?
283                                         t->true : t->false;
284                 }
285                 *s = 0;
286         } else
287                 snprintf(buf, sizeof(buf), "Not tainted");
288
289         return buf;
290 }
291
292 int test_taint(unsigned flag)
293 {
294         return test_bit(flag, &tainted_mask);
295 }
296 EXPORT_SYMBOL(test_taint);
297
298 unsigned long get_taint(void)
299 {
300         return tainted_mask;
301 }
302
303 /**
304  * add_taint: add a taint flag if not already set.
305  * @flag: one of the TAINT_* constants.
306  * @lockdep_ok: whether lock debugging is still OK.
307  *
308  * If something bad has gone wrong, you'll want @lockdebug_ok = false, but for
309  * some notewortht-but-not-corrupting cases, it can be set to true.
310  */
311 void add_taint(unsigned flag, enum lockdep_ok lockdep_ok)
312 {
313         if (lockdep_ok == LOCKDEP_NOW_UNRELIABLE && __debug_locks_off())
314                 pr_warn("Disabling lock debugging due to kernel taint\n");
315
316         set_bit(flag, &tainted_mask);
317 }
318 EXPORT_SYMBOL(add_taint);
319
320 static void spin_msec(int msecs)
321 {
322         int i;
323
324         for (i = 0; i < msecs; i++) {
325                 touch_nmi_watchdog();
326                 mdelay(1);
327         }
328 }
329
330 /*
331  * It just happens that oops_enter() and oops_exit() are identically
332  * implemented...
333  */
334 static void do_oops_enter_exit(void)
335 {
336         unsigned long flags;
337         static int spin_counter;
338
339         if (!pause_on_oops)
340                 return;
341
342         spin_lock_irqsave(&pause_on_oops_lock, flags);
343         if (pause_on_oops_flag == 0) {
344                 /* This CPU may now print the oops message */
345                 pause_on_oops_flag = 1;
346         } else {
347                 /* We need to stall this CPU */
348                 if (!spin_counter) {
349                         /* This CPU gets to do the counting */
350                         spin_counter = pause_on_oops;
351                         do {
352                                 spin_unlock(&pause_on_oops_lock);
353                                 spin_msec(MSEC_PER_SEC);
354                                 spin_lock(&pause_on_oops_lock);
355                         } while (--spin_counter);
356                         pause_on_oops_flag = 0;
357                 } else {
358                         /* This CPU waits for a different one */
359                         while (spin_counter) {
360                                 spin_unlock(&pause_on_oops_lock);
361                                 spin_msec(1);
362                                 spin_lock(&pause_on_oops_lock);
363                         }
364                 }
365         }
366         spin_unlock_irqrestore(&pause_on_oops_lock, flags);
367 }
368
369 /*
370  * Return true if the calling CPU is allowed to print oops-related info.
371  * This is a bit racy..
372  */
373 int oops_may_print(void)
374 {
375         return pause_on_oops_flag == 0;
376 }
377
378 /*
379  * Called when the architecture enters its oops handler, before it prints
380  * anything.  If this is the first CPU to oops, and it's oopsing the first
381  * time then let it proceed.
382  *
383  * This is all enabled by the pause_on_oops kernel boot option.  We do all
384  * this to ensure that oopses don't scroll off the screen.  It has the
385  * side-effect of preventing later-oopsing CPUs from mucking up the display,
386  * too.
387  *
388  * It turns out that the CPU which is allowed to print ends up pausing for
389  * the right duration, whereas all the other CPUs pause for twice as long:
390  * once in oops_enter(), once in oops_exit().
391  */
392 void oops_enter(void)
393 {
394         tracing_off();
395         /* can't trust the integrity of the kernel anymore: */
396         debug_locks_off();
397         do_oops_enter_exit();
398 }
399
400 /*
401  * 64-bit random ID for oopses:
402  */
403 static u64 oops_id;
404
405 static int init_oops_id(void)
406 {
407         if (!oops_id)
408                 get_random_bytes(&oops_id, sizeof(oops_id));
409         else
410                 oops_id++;
411
412         return 0;
413 }
414 late_initcall(init_oops_id);
415
416 void print_oops_end_marker(void)
417 {
418         init_oops_id();
419
420         if (mach_panic_string)
421                 printk(KERN_WARNING "Board Information: %s\n",
422                        mach_panic_string);
423
424         pr_warn("---[ end trace %016llx ]---\n", (unsigned long long)oops_id);
425 }
426
427 /*
428  * Called when the architecture exits its oops handler, after printing
429  * everything.
430  */
431 void oops_exit(void)
432 {
433         do_oops_enter_exit();
434         print_oops_end_marker();
435         kmsg_dump(KMSG_DUMP_OOPS);
436 }
437
438 #ifdef WANT_WARN_ON_SLOWPATH
439 struct slowpath_args {
440         const char *fmt;
441         va_list args;
442 };
443
444 static void warn_slowpath_common(const char *file, int line, void *caller,
445                                  unsigned taint, struct slowpath_args *args)
446 {
447         disable_trace_on_warning();
448
449         pr_warn("------------[ cut here ]------------\n");
450         pr_warn("WARNING: CPU: %d PID: %d at %s:%d %pS()\n",
451                 raw_smp_processor_id(), current->pid, file, line, caller);
452
453         if (args)
454                 vprintk(args->fmt, args->args);
455
456         if (panic_on_warn) {
457                 /*
458                  * This thread may hit another WARN() in the panic path.
459                  * Resetting this prevents additional WARN() from panicking the
460                  * system on this thread.  Other threads are blocked by the
461                  * panic_mutex in panic().
462                  */
463                 panic_on_warn = 0;
464                 panic("panic_on_warn set ...\n");
465         }
466
467         print_modules();
468         dump_stack();
469         print_oops_end_marker();
470         /* Just a warning, don't kill lockdep. */
471         add_taint(taint, LOCKDEP_STILL_OK);
472 }
473
474 void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
475 {
476         struct slowpath_args args;
477
478         args.fmt = fmt;
479         va_start(args.args, fmt);
480         warn_slowpath_common(file, line, __builtin_return_address(0),
481                              TAINT_WARN, &args);
482         va_end(args.args);
483 }
484 EXPORT_SYMBOL(warn_slowpath_fmt);
485
486 void warn_slowpath_fmt_taint(const char *file, int line,
487                              unsigned taint, const char *fmt, ...)
488 {
489         struct slowpath_args args;
490
491         args.fmt = fmt;
492         va_start(args.args, fmt);
493         warn_slowpath_common(file, line, __builtin_return_address(0),
494                              taint, &args);
495         va_end(args.args);
496 }
497 EXPORT_SYMBOL(warn_slowpath_fmt_taint);
498
499 void warn_slowpath_null(const char *file, int line)
500 {
501         warn_slowpath_common(file, line, __builtin_return_address(0),
502                              TAINT_WARN, NULL);
503 }
504 EXPORT_SYMBOL(warn_slowpath_null);
505 #endif
506
507 #ifdef CONFIG_CC_STACKPROTECTOR
508
509 /*
510  * Called when gcc's -fstack-protector feature is used, and
511  * gcc detects corruption of the on-stack canary value
512  */
513 __visible void __stack_chk_fail(void)
514 {
515         panic("stack-protector: Kernel stack is corrupted in: %p\n",
516                 __builtin_return_address(0));
517 }
518 EXPORT_SYMBOL(__stack_chk_fail);
519
520 #endif
521
522 core_param(panic, panic_timeout, int, 0644);
523 core_param(pause_on_oops, pause_on_oops, int, 0644);
524 core_param(panic_on_warn, panic_on_warn, int, 0644);
525
526 static int __init setup_crash_kexec_post_notifiers(char *s)
527 {
528         crash_kexec_post_notifiers = true;
529         return 0;
530 }
531 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
532
533 static int __init oops_setup(char *s)
534 {
535         if (!s)
536                 return -EINVAL;
537         if (!strcmp(s, "panic"))
538                 panic_on_oops = 1;
539         return 0;
540 }
541 early_param("oops", oops_setup);