panic: Add board ID to panic output
[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/reboot.h>
19 #include <linux/delay.h>
20 #include <linux/kexec.h>
21 #include <linux/sched.h>
22 #include <linux/sysrq.h>
23 #include <linux/init.h>
24 #include <linux/nmi.h>
25 #include <linux/dmi.h>
26
27 #define PANIC_TIMER_STEP 100
28 #define PANIC_BLINK_SPD 18
29
30 /* Machine specific panic information string */
31 char *mach_panic_string;
32
33 int panic_on_oops;
34 static unsigned long tainted_mask;
35 static int pause_on_oops;
36 static int pause_on_oops_flag;
37 static DEFINE_SPINLOCK(pause_on_oops_lock);
38
39 #ifndef CONFIG_PANIC_TIMEOUT
40 #define CONFIG_PANIC_TIMEOUT 0
41 #endif
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  *      panic - halt the system
60  *      @fmt: The text string to print
61  *
62  *      Display a message, then perform cleanups.
63  *
64  *      This function never returns.
65  */
66 NORET_TYPE void panic(const char * fmt, ...)
67 {
68         static char buf[1024];
69         va_list args;
70         long i, i_next = 0;
71         int state = 0;
72
73         /*
74          * It's possible to come here directly from a panic-assertion and
75          * not have preempt disabled. Some functions called from here want
76          * preempt to be disabled. No point enabling it later though...
77          */
78         preempt_disable();
79
80         console_verbose();
81         bust_spinlocks(1);
82         va_start(args, fmt);
83         vsnprintf(buf, sizeof(buf), fmt, args);
84         va_end(args);
85         printk(KERN_EMERG "Kernel panic - not syncing: %s\n",buf);
86 #ifdef CONFIG_DEBUG_BUGVERBOSE
87         dump_stack();
88 #endif
89
90         /*
91          * If we have crashed and we have a crash kernel loaded let it handle
92          * everything else.
93          * Do we want to call this before we try to display a message?
94          */
95         crash_kexec(NULL);
96
97         kmsg_dump(KMSG_DUMP_PANIC);
98
99         /*
100          * Note smp_send_stop is the usual smp shutdown function, which
101          * unfortunately means it may not be hardened to work in a panic
102          * situation.
103          */
104         smp_send_stop();
105
106         atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
107
108         bust_spinlocks(0);
109
110         if (!panic_blink)
111                 panic_blink = no_blink;
112
113         if (panic_timeout > 0) {
114                 /*
115                  * Delay timeout seconds before rebooting the machine.
116                  * We can't use the "normal" timers since we just panicked.
117                  */
118                 printk(KERN_EMERG "Rebooting in %d seconds..", panic_timeout);
119
120                 for (i = 0; i < panic_timeout * 1000; i += PANIC_TIMER_STEP) {
121                         touch_nmi_watchdog();
122                         if (i >= i_next) {
123                                 i += panic_blink(state ^= 1);
124                                 i_next = i + 3600 / PANIC_BLINK_SPD;
125                         }
126                         mdelay(PANIC_TIMER_STEP);
127                 }
128                 /*
129                  * This will not be a clean reboot, with everything
130                  * shutting down.  But if there is a chance of
131                  * rebooting the system it will be rebooted.
132                  */
133                 emergency_restart();
134         }
135 #ifdef __sparc__
136         {
137                 extern int stop_a_enabled;
138                 /* Make sure the user can actually press Stop-A (L1-A) */
139                 stop_a_enabled = 1;
140                 printk(KERN_EMERG "Press Stop-A (L1-A) to return to the boot prom\n");
141         }
142 #endif
143 #if defined(CONFIG_S390)
144         {
145                 unsigned long caller;
146
147                 caller = (unsigned long)__builtin_return_address(0);
148                 disabled_wait(caller);
149         }
150 #endif
151         local_irq_enable();
152         for (i = 0; ; i += PANIC_TIMER_STEP) {
153                 touch_softlockup_watchdog();
154                 if (i >= i_next) {
155                         i += panic_blink(state ^= 1);
156                         i_next = i + 3600 / PANIC_BLINK_SPD;
157                 }
158                 mdelay(PANIC_TIMER_STEP);
159         }
160 }
161
162 EXPORT_SYMBOL(panic);
163
164
165 struct tnt {
166         u8      bit;
167         char    true;
168         char    false;
169 };
170
171 static const struct tnt tnts[] = {
172         { TAINT_PROPRIETARY_MODULE,     'P', 'G' },
173         { TAINT_FORCED_MODULE,          'F', ' ' },
174         { TAINT_UNSAFE_SMP,             'S', ' ' },
175         { TAINT_FORCED_RMMOD,           'R', ' ' },
176         { TAINT_MACHINE_CHECK,          'M', ' ' },
177         { TAINT_BAD_PAGE,               'B', ' ' },
178         { TAINT_USER,                   'U', ' ' },
179         { TAINT_DIE,                    'D', ' ' },
180         { TAINT_OVERRIDDEN_ACPI_TABLE,  'A', ' ' },
181         { TAINT_WARN,                   'W', ' ' },
182         { TAINT_CRAP,                   'C', ' ' },
183         { TAINT_FIRMWARE_WORKAROUND,    'I', ' ' },
184 };
185
186 /**
187  *      print_tainted - return a string to represent the kernel taint state.
188  *
189  *  'P' - Proprietary module has been loaded.
190  *  'F' - Module has been forcibly loaded.
191  *  'S' - SMP with CPUs not designed for SMP.
192  *  'R' - User forced a module unload.
193  *  'M' - System experienced a machine check exception.
194  *  'B' - System has hit bad_page.
195  *  'U' - Userspace-defined naughtiness.
196  *  'D' - Kernel has oopsed before
197  *  'A' - ACPI table overridden.
198  *  'W' - Taint on warning.
199  *  'C' - modules from drivers/staging are loaded.
200  *  'I' - Working around severe firmware bug.
201  *
202  *      The string is overwritten by the next call to print_tainted().
203  */
204 const char *print_tainted(void)
205 {
206         static char buf[ARRAY_SIZE(tnts) + sizeof("Tainted: ") + 1];
207
208         if (tainted_mask) {
209                 char *s;
210                 int i;
211
212                 s = buf + sprintf(buf, "Tainted: ");
213                 for (i = 0; i < ARRAY_SIZE(tnts); i++) {
214                         const struct tnt *t = &tnts[i];
215                         *s++ = test_bit(t->bit, &tainted_mask) ?
216                                         t->true : t->false;
217                 }
218                 *s = 0;
219         } else
220                 snprintf(buf, sizeof(buf), "Not tainted");
221
222         return buf;
223 }
224
225 int test_taint(unsigned flag)
226 {
227         return test_bit(flag, &tainted_mask);
228 }
229 EXPORT_SYMBOL(test_taint);
230
231 unsigned long get_taint(void)
232 {
233         return tainted_mask;
234 }
235
236 void add_taint(unsigned flag)
237 {
238         /*
239          * Can't trust the integrity of the kernel anymore.
240          * We don't call directly debug_locks_off() because the issue
241          * is not necessarily serious enough to set oops_in_progress to 1
242          * Also we want to keep up lockdep for staging development and
243          * post-warning case.
244          */
245         if (flag != TAINT_CRAP && flag != TAINT_WARN && __debug_locks_off())
246                 printk(KERN_WARNING "Disabling lock debugging due to kernel taint\n");
247
248         set_bit(flag, &tainted_mask);
249 }
250 EXPORT_SYMBOL(add_taint);
251
252 static void spin_msec(int msecs)
253 {
254         int i;
255
256         for (i = 0; i < msecs; i++) {
257                 touch_nmi_watchdog();
258                 mdelay(1);
259         }
260 }
261
262 /*
263  * It just happens that oops_enter() and oops_exit() are identically
264  * implemented...
265  */
266 static void do_oops_enter_exit(void)
267 {
268         unsigned long flags;
269         static int spin_counter;
270
271         if (!pause_on_oops)
272                 return;
273
274         spin_lock_irqsave(&pause_on_oops_lock, flags);
275         if (pause_on_oops_flag == 0) {
276                 /* This CPU may now print the oops message */
277                 pause_on_oops_flag = 1;
278         } else {
279                 /* We need to stall this CPU */
280                 if (!spin_counter) {
281                         /* This CPU gets to do the counting */
282                         spin_counter = pause_on_oops;
283                         do {
284                                 spin_unlock(&pause_on_oops_lock);
285                                 spin_msec(MSEC_PER_SEC);
286                                 spin_lock(&pause_on_oops_lock);
287                         } while (--spin_counter);
288                         pause_on_oops_flag = 0;
289                 } else {
290                         /* This CPU waits for a different one */
291                         while (spin_counter) {
292                                 spin_unlock(&pause_on_oops_lock);
293                                 spin_msec(1);
294                                 spin_lock(&pause_on_oops_lock);
295                         }
296                 }
297         }
298         spin_unlock_irqrestore(&pause_on_oops_lock, flags);
299 }
300
301 /*
302  * Return true if the calling CPU is allowed to print oops-related info.
303  * This is a bit racy..
304  */
305 int oops_may_print(void)
306 {
307         return pause_on_oops_flag == 0;
308 }
309
310 /*
311  * Called when the architecture enters its oops handler, before it prints
312  * anything.  If this is the first CPU to oops, and it's oopsing the first
313  * time then let it proceed.
314  *
315  * This is all enabled by the pause_on_oops kernel boot option.  We do all
316  * this to ensure that oopses don't scroll off the screen.  It has the
317  * side-effect of preventing later-oopsing CPUs from mucking up the display,
318  * too.
319  *
320  * It turns out that the CPU which is allowed to print ends up pausing for
321  * the right duration, whereas all the other CPUs pause for twice as long:
322  * once in oops_enter(), once in oops_exit().
323  */
324 void oops_enter(void)
325 {
326         tracing_off();
327         /* can't trust the integrity of the kernel anymore: */
328         debug_locks_off();
329         do_oops_enter_exit();
330 }
331
332 /*
333  * 64-bit random ID for oopses:
334  */
335 static u64 oops_id;
336
337 static int init_oops_id(void)
338 {
339         if (!oops_id)
340                 get_random_bytes(&oops_id, sizeof(oops_id));
341         else
342                 oops_id++;
343
344         return 0;
345 }
346 late_initcall(init_oops_id);
347
348 void print_oops_end_marker(void)
349 {
350         init_oops_id();
351
352         if (mach_panic_string)
353                 printk(KERN_WARNING "Board Information: %s\n",
354                        mach_panic_string);
355
356         printk(KERN_WARNING "---[ end trace %016llx ]---\n",
357                 (unsigned long long)oops_id);
358 }
359
360 /*
361  * Called when the architecture exits its oops handler, after printing
362  * everything.
363  */
364 void oops_exit(void)
365 {
366         do_oops_enter_exit();
367         print_oops_end_marker();
368         kmsg_dump(KMSG_DUMP_OOPS);
369 }
370
371 #ifdef WANT_WARN_ON_SLOWPATH
372 struct slowpath_args {
373         const char *fmt;
374         va_list args;
375 };
376
377 static void warn_slowpath_common(const char *file, int line, void *caller,
378                                  unsigned taint, struct slowpath_args *args)
379 {
380         const char *board;
381
382         printk(KERN_WARNING "------------[ cut here ]------------\n");
383         printk(KERN_WARNING "WARNING: at %s:%d %pS()\n", file, line, caller);
384         board = dmi_get_system_info(DMI_PRODUCT_NAME);
385         if (board)
386                 printk(KERN_WARNING "Hardware name: %s\n", board);
387
388         if (args)
389                 vprintk(args->fmt, args->args);
390
391         print_modules();
392         dump_stack();
393         print_oops_end_marker();
394         add_taint(taint);
395 }
396
397 void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
398 {
399         struct slowpath_args args;
400
401         args.fmt = fmt;
402         va_start(args.args, fmt);
403         warn_slowpath_common(file, line, __builtin_return_address(0),
404                              TAINT_WARN, &args);
405         va_end(args.args);
406 }
407 EXPORT_SYMBOL(warn_slowpath_fmt);
408
409 void warn_slowpath_fmt_taint(const char *file, int line,
410                              unsigned taint, const char *fmt, ...)
411 {
412         struct slowpath_args args;
413
414         args.fmt = fmt;
415         va_start(args.args, fmt);
416         warn_slowpath_common(file, line, __builtin_return_address(0),
417                              taint, &args);
418         va_end(args.args);
419 }
420 EXPORT_SYMBOL(warn_slowpath_fmt_taint);
421
422 void warn_slowpath_null(const char *file, int line)
423 {
424         warn_slowpath_common(file, line, __builtin_return_address(0),
425                              TAINT_WARN, NULL);
426 }
427 EXPORT_SYMBOL(warn_slowpath_null);
428 #endif
429
430 #ifdef CONFIG_CC_STACKPROTECTOR
431
432 /*
433  * Called when gcc's -fstack-protector feature is used, and
434  * gcc detects corruption of the on-stack canary value
435  */
436 void __stack_chk_fail(void)
437 {
438         panic("stack-protector: Kernel stack is corrupted in: %p\n",
439                 __builtin_return_address(0));
440 }
441 EXPORT_SYMBOL(__stack_chk_fail);
442
443 #endif
444
445 core_param(panic, panic_timeout, int, 0644);
446 core_param(pause_on_oops, pause_on_oops, int, 0644);
447
448 static int __init oops_setup(char *s)
449 {
450         if (!s)
451                 return -EINVAL;
452         if (!strcmp(s, "panic"))
453                 panic_on_oops = 1;
454         return 0;
455 }
456 early_param("oops", oops_setup);