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