]> rtime.felk.cvut.cz Git - hercules2020/nv-tegra/linux-4.4.git/blob - kernel/panic.c
Fix memguard and related syscalls
[hercules2020/nv-tegra/linux-4.4.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 #include <linux/of.h>
28
29 #define PANIC_TIMER_STEP 100
30 #define PANIC_BLINK_SPD 18
31
32 /* Machine specific panic information string */
33 char *mach_panic_string;
34
35 int panic_on_oops = CONFIG_PANIC_ON_OOPS_VALUE;
36 static unsigned long tainted_mask;
37 static int pause_on_oops;
38 static int pause_on_oops_flag;
39 static DEFINE_SPINLOCK(pause_on_oops_lock);
40 bool crash_kexec_post_notifiers;
41 int panic_on_warn __read_mostly;
42
43 int panic_timeout = CONFIG_PANIC_TIMEOUT;
44 EXPORT_SYMBOL_GPL(panic_timeout);
45
46 ATOMIC_NOTIFIER_HEAD(panic_notifier_list);
47
48 EXPORT_SYMBOL(panic_notifier_list);
49
50 static long no_blink(int state)
51 {
52         return 0;
53 }
54
55 /* Returns how long it waited in ms */
56 long (*panic_blink)(int state);
57 EXPORT_SYMBOL(panic_blink);
58
59 /*
60  * Stop ourself in panic -- architecture code may override this
61  */
62 void __weak panic_smp_self_stop(void)
63 {
64         while (1)
65                 cpu_relax();
66 }
67
68 /**
69  *      panic - halt the system
70  *      @fmt: The text string to print
71  *
72  *      Display a message, then perform cleanups.
73  *
74  *      This function never returns.
75  */
76 void panic(const char *fmt, ...)
77 {
78         static DEFINE_SPINLOCK(panic_lock);
79         static char buf[1024];
80         va_list args;
81         long i, i_next = 0;
82         int state = 0;
83
84         /*
85          * Disable local interrupts. This will prevent panic_smp_self_stop
86          * from deadlocking the first cpu that invokes the panic, since
87          * there is nothing to prevent an interrupt handler (that runs
88          * after the panic_lock is acquired) from invoking panic again.
89          */
90         local_irq_disable();
91
92         /*
93          * It's possible to come here directly from a panic-assertion and
94          * not have preempt disabled. Some functions called from here want
95          * preempt to be disabled. No point enabling it later though...
96          *
97          * Only one CPU is allowed to execute the panic code from here. For
98          * multiple parallel invocations of panic, all other CPUs either
99          * stop themself or will wait until they are stopped by the 1st CPU
100          * with smp_send_stop().
101          */
102         if (!spin_trylock(&panic_lock))
103                 panic_smp_self_stop();
104
105         console_verbose();
106         bust_spinlocks(1);
107         va_start(args, fmt);
108         vsnprintf(buf, sizeof(buf), fmt, args);
109         va_end(args);
110         pr_emerg("Kernel panic - not syncing: %s\n", buf);
111 #ifdef CONFIG_DEBUG_BUGVERBOSE
112         /*
113          * Avoid nested stack-dumping if a panic occurs during oops processing
114          */
115         if (!test_taint(TAINT_DIE) && oops_in_progress <= 1)
116                 dump_stack();
117 #endif
118
119         /*
120          * If we have crashed and we have a crash kernel loaded let it handle
121          * everything else.
122          * If we want to run this after calling panic_notifiers, pass
123          * the "crash_kexec_post_notifiers" option to the kernel.
124          */
125         if (!crash_kexec_post_notifiers)
126                 crash_kexec(NULL);
127
128         /*
129          * Note smp_send_stop is the usual smp shutdown function, which
130          * unfortunately means it may not be hardened to work in a panic
131          * situation.
132          */
133         smp_send_stop();
134
135         /*
136          * Run any panic handlers, including those that might need to
137          * add information to the kmsg dump output.
138          */
139         atomic_notifier_call_chain(&panic_notifier_list, 0, buf);
140
141         kmsg_dump(KMSG_DUMP_PANIC);
142
143         /*
144          * If you doubt kdump always works fine in any situation,
145          * "crash_kexec_post_notifiers" offers you a chance to run
146          * panic_notifiers and dumping kmsg before kdump.
147          * Note: since some panic_notifiers can make crashed kernel
148          * more unstable, it can increase risks of the kdump failure too.
149          */
150         if (crash_kexec_post_notifiers)
151                 crash_kexec(NULL);
152
153         bust_spinlocks(0);
154
155         /*
156          * We may have ended up stopping the CPU holding the lock (in
157          * smp_send_stop()) while still having some valuable data in the console
158          * buffer.  Try to acquire the lock then release it regardless of the
159          * result.  The release will also print the buffers out.  Locks debug
160          * should be disabled to avoid reporting bad unlock balance when
161          * panic() is not being callled from OOPS.
162          */
163         debug_locks_off();
164         console_flush_on_panic();
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         struct device_node *np;
408
409         np = of_find_node_by_name(NULL, "panic_timeout");
410         if (np)
411                 of_property_read_u32(np, "panic-timeout-value", &panic_timeout);
412
413         if (!oops_id)
414                 get_random_bytes(&oops_id, sizeof(oops_id));
415         else
416                 oops_id++;
417
418         return 0;
419 }
420 late_initcall(init_oops_id);
421
422 void print_oops_end_marker(void)
423 {
424         init_oops_id();
425
426         if (mach_panic_string)
427                 printk(KERN_WARNING "Board Information: %s\n",
428                        mach_panic_string);
429
430         pr_warn("---[ end trace %016llx ]---\n", (unsigned long long)oops_id);
431 }
432
433 /*
434  * Called when the architecture exits its oops handler, after printing
435  * everything.
436  */
437 void oops_exit(void)
438 {
439         do_oops_enter_exit();
440         print_oops_end_marker();
441         kmsg_dump(KMSG_DUMP_OOPS);
442 }
443
444 #ifdef WANT_WARN_ON_SLOWPATH
445 struct slowpath_args {
446         const char *fmt;
447         va_list args;
448 };
449
450 static void warn_slowpath_common(const char *file, int line, void *caller,
451                                  unsigned taint, struct slowpath_args *args)
452 {
453         disable_trace_on_warning();
454
455         pr_warn("------------[ cut here ]------------\n");
456         pr_warn("WARNING: CPU: %d PID: %d at %s:%d %pS()\n",
457                 raw_smp_processor_id(), current->pid, file, line, caller);
458
459         if (args)
460                 vprintk(args->fmt, args->args);
461
462         if (panic_on_warn) {
463                 /*
464                  * This thread may hit another WARN() in the panic path.
465                  * Resetting this prevents additional WARN() from panicking the
466                  * system on this thread.  Other threads are blocked by the
467                  * panic_mutex in panic().
468                  */
469                 panic_on_warn = 0;
470                 panic("panic_on_warn set ...\n");
471         }
472
473         print_modules();
474         dump_stack();
475         print_oops_end_marker();
476         /* Just a warning, don't kill lockdep. */
477         add_taint(taint, LOCKDEP_STILL_OK);
478 }
479
480 void warn_slowpath_fmt(const char *file, int line, const char *fmt, ...)
481 {
482         struct slowpath_args args;
483
484         args.fmt = fmt;
485         va_start(args.args, fmt);
486         warn_slowpath_common(file, line, __builtin_return_address(0),
487                              TAINT_WARN, &args);
488         va_end(args.args);
489 }
490 EXPORT_SYMBOL(warn_slowpath_fmt);
491
492 void warn_slowpath_fmt_taint(const char *file, int line,
493                              unsigned taint, const char *fmt, ...)
494 {
495         struct slowpath_args args;
496
497         args.fmt = fmt;
498         va_start(args.args, fmt);
499         warn_slowpath_common(file, line, __builtin_return_address(0),
500                              taint, &args);
501         va_end(args.args);
502 }
503 EXPORT_SYMBOL(warn_slowpath_fmt_taint);
504
505 void warn_slowpath_null(const char *file, int line)
506 {
507         warn_slowpath_common(file, line, __builtin_return_address(0),
508                              TAINT_WARN, NULL);
509 }
510 EXPORT_SYMBOL(warn_slowpath_null);
511 #endif
512
513 #ifdef CONFIG_CC_STACKPROTECTOR
514
515 /*
516  * Called when gcc's -fstack-protector feature is used, and
517  * gcc detects corruption of the on-stack canary value
518  */
519 __visible void __stack_chk_fail(void)
520 {
521         panic("stack-protector: Kernel stack is corrupted in: %p\n",
522                 __builtin_return_address(0));
523 }
524 EXPORT_SYMBOL(__stack_chk_fail);
525
526 #endif
527
528 core_param(panic, panic_timeout, int, 0644);
529 core_param(pause_on_oops, pause_on_oops, int, 0644);
530 core_param(panic_on_warn, panic_on_warn, int, 0644);
531
532 static int __init setup_crash_kexec_post_notifiers(char *s)
533 {
534         crash_kexec_post_notifiers = true;
535         return 0;
536 }
537 early_param("crash_kexec_post_notifiers", setup_crash_kexec_post_notifiers);
538
539 static int __init oops_setup(char *s)
540 {
541         if (!s)
542                 return -EINVAL;
543         if (!strcmp(s, "panic"))
544                 panic_on_oops = 1;
545         return 0;
546 }
547 early_param("oops", oops_setup);