blob: aa208e565b03c9c3b0a0b4d0c56f947bb8d8bbe6 [file] [log] [blame]
Neil Horman878719e2008-10-23 10:40:06 -04001/*
2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
4 */
5#include <linux/kallsyms.h>
6#include <linux/kprobes.h>
7#include <linux/uaccess.h>
8#include <linux/utsname.h>
9#include <linux/hardirq.h>
10#include <linux/kdebug.h>
11#include <linux/module.h>
12#include <linux/ptrace.h>
Steven Rostedt712406a2009-02-09 10:54:03 -080013#include <linux/ftrace.h>
Neil Horman878719e2008-10-23 10:40:06 -040014#include <linux/kexec.h>
15#include <linux/bug.h>
16#include <linux/nmi.h>
17#include <linux/sysfs.h>
18
19#include <asm/stacktrace.h>
20
Neil Horman878719e2008-10-23 10:40:06 -040021
22int panic_on_unrecovered_nmi;
Kurt Garloff5211a242009-06-24 14:32:11 -070023int panic_on_io_nmi;
Neil Horman878719e2008-10-23 10:40:06 -040024unsigned int code_bytes = 64;
25int kstack_depth_to_print = 3 * STACKSLOTS_PER_LINE;
26static int die_counter;
27
Josh Poimboeufcb76c932016-09-14 21:07:42 -050028bool in_task_stack(unsigned long *stack, struct task_struct *task,
29 struct stack_info *info)
30{
31 unsigned long *begin = task_stack_page(task);
32 unsigned long *end = task_stack_page(task) + THREAD_SIZE;
33
34 if (stack < begin || stack >= end)
35 return false;
36
37 info->type = STACK_TYPE_TASK;
38 info->begin = begin;
39 info->end = end;
40 info->next_sp = NULL;
41
42 return true;
43}
44
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010045static void printk_stack_address(unsigned long address, int reliable,
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050046 char *log_lvl)
Neil Horman878719e2008-10-23 10:40:06 -040047{
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050048 touch_nmi_watchdog();
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010049 printk("%s [<%p>] %s%pB\n",
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050050 log_lvl, (void *)address, reliable ? "" : "? ",
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010051 (void *)address);
Neil Horman878719e2008-10-23 10:40:06 -040052}
53
Jiri Slaby5f01c982013-10-25 15:06:58 +020054void printk_address(unsigned long address)
55{
56 pr_cont(" [<%p>] %pS\n", (void *)address, (void *)address);
57}
58
Neil Horman878719e2008-10-23 10:40:06 -040059/*
60 * x86-64 can have up to three kernel stacks:
61 * process stack
62 * interrupt stack
63 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
64 */
65
Neil Horman878719e2008-10-23 10:40:06 -040066unsigned long
Linus Torvaldsda01e182016-06-23 12:20:01 -070067print_context_stack(struct task_struct *task,
Neil Horman878719e2008-10-23 10:40:06 -040068 unsigned long *stack, unsigned long bp,
69 const struct stacktrace_ops *ops, void *data,
Josh Poimboeufcb76c932016-09-14 21:07:42 -050070 struct stack_info *info, int *graph)
Neil Horman878719e2008-10-23 10:40:06 -040071{
72 struct stack_frame *frame = (struct stack_frame *)bp;
73
Andy Lutomirski9a2e9da2016-07-14 13:22:52 -070074 /*
75 * If we overflowed the stack into a guard page, jump back to the
76 * bottom of the usable stack.
77 */
78 if ((unsigned long)task_stack_page(task) - (unsigned long)stack <
79 PAGE_SIZE)
80 stack = (unsigned long *)task_stack_page(task);
81
Josh Poimboeufcb76c932016-09-14 21:07:42 -050082 while (on_stack(info, stack, sizeof(*stack))) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050083 unsigned long addr = *stack;
Neil Horman878719e2008-10-23 10:40:06 -040084
Neil Horman878719e2008-10-23 10:40:06 -040085 if (__kernel_text_address(addr)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050086 unsigned long real_addr;
87 int reliable = 0;
88
Neil Horman878719e2008-10-23 10:40:06 -040089 if ((unsigned long) stack == bp + sizeof(long)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050090 reliable = 1;
Neil Horman878719e2008-10-23 10:40:06 -040091 frame = frame->next_frame;
92 bp = (unsigned long) frame;
Neil Horman878719e2008-10-23 10:40:06 -040093 }
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050094
Josh Poimboeuf6f727b82016-08-19 06:53:01 -050095 /*
96 * When function graph tracing is enabled for a
97 * function, its return address on the stack is
98 * replaced with the address of an ftrace handler
99 * (return_to_handler). In that case, before printing
100 * the "real" address, we want to print the handler
101 * address as an "unreliable" hint that function graph
102 * tracing was involved.
103 */
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500104 real_addr = ftrace_graph_ret_addr(task, graph, addr,
105 stack);
106 if (real_addr != addr)
Josh Poimboeuf6f727b82016-08-19 06:53:01 -0500107 ops->address(data, addr, 0);
108
109 ops->address(data, real_addr, reliable);
Neil Horman878719e2008-10-23 10:40:06 -0400110 }
111 stack++;
112 }
113 return bp;
114}
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100115EXPORT_SYMBOL_GPL(print_context_stack);
116
117unsigned long
Linus Torvaldsda01e182016-06-23 12:20:01 -0700118print_context_stack_bp(struct task_struct *task,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100119 unsigned long *stack, unsigned long bp,
120 const struct stacktrace_ops *ops, void *data,
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500121 struct stack_info *info, int *graph)
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100122{
123 struct stack_frame *frame = (struct stack_frame *)bp;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500124 unsigned long *retp = &frame->return_address;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100125
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500126 while (on_stack(info, stack, sizeof(*stack) * 2)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500127 unsigned long addr = *retp;
128 unsigned long real_addr;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100129
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100130 if (!__kernel_text_address(addr))
131 break;
132
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500133 real_addr = ftrace_graph_ret_addr(task, graph, addr, retp);
Josh Poimboeuf6f727b82016-08-19 06:53:01 -0500134 if (ops->address(data, real_addr, 1))
135 break;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500136
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100137 frame = frame->next_frame;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500138 retp = &frame->return_address;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100139 }
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100140
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100141 return (unsigned long)frame;
142}
143EXPORT_SYMBOL_GPL(print_context_stack_bp);
Neil Horman878719e2008-10-23 10:40:06 -0400144
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500145static int print_trace_stack(void *data, const char *name)
Neil Horman878719e2008-10-23 10:40:06 -0400146{
147 printk("%s <%s> ", (char *)data, name);
148 return 0;
149}
150
151/*
152 * Print one address/symbol entries per line.
153 */
Alexei Starovoitov568b3292016-02-17 19:58:57 -0800154static int print_trace_address(void *data, unsigned long addr, int reliable)
Neil Horman878719e2008-10-23 10:40:06 -0400155{
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +0100156 printk_stack_address(addr, reliable, data);
Alexei Starovoitov568b3292016-02-17 19:58:57 -0800157 return 0;
Neil Horman878719e2008-10-23 10:40:06 -0400158}
159
160static const struct stacktrace_ops print_trace_ops = {
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100161 .stack = print_trace_stack,
162 .address = print_trace_address,
Frederic Weisbecker61c19172009-12-17 05:40:33 +0100163 .walk_stack = print_context_stack,
Neil Horman878719e2008-10-23 10:40:06 -0400164};
165
166void
167show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
Namhyung Kime8e999cf2011-03-18 11:40:06 +0900168 unsigned long *stack, unsigned long bp, char *log_lvl)
Neil Horman878719e2008-10-23 10:40:06 -0400169{
170 printk("%sCall Trace:\n", log_lvl);
Namhyung Kime8e999cf2011-03-18 11:40:06 +0900171 dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
Neil Horman878719e2008-10-23 10:40:06 -0400172}
173
Neil Horman878719e2008-10-23 10:40:06 -0400174void show_stack(struct task_struct *task, unsigned long *sp)
175{
Tejun Heoa77f2a42013-04-30 15:27:09 -0700176 unsigned long bp = 0;
Tejun Heoa77f2a42013-04-30 15:27:09 -0700177
178 /*
179 * Stack frames below this one aren't interesting. Don't show them
180 * if we're printing for %current.
181 */
182 if (!sp && (!task || task == current)) {
Josh Poimboeuf4b8afaf2016-08-24 11:50:17 -0500183 sp = get_stack_pointer(current, NULL);
184 bp = (unsigned long)get_frame_pointer(current, NULL);
Tejun Heoa77f2a42013-04-30 15:27:09 -0700185 }
186
187 show_stack_log_lvl(task, NULL, sp, bp, "");
Neil Horman878719e2008-10-23 10:40:06 -0400188}
189
Borislav Petkov81c29492016-07-05 00:31:27 +0200190void show_stack_regs(struct pt_regs *regs)
191{
Josh Poimboeuf5a8ff542016-08-24 11:50:18 -0500192 show_stack_log_lvl(current, regs, NULL, 0, "");
Borislav Petkov81c29492016-07-05 00:31:27 +0200193}
194
Thomas Gleixneredc35bd2009-12-03 12:38:57 +0100195static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Neil Horman878719e2008-10-23 10:40:06 -0400196static int die_owner = -1;
197static unsigned int die_nest_count;
198
Masami Hiramatsu93266382014-04-17 17:18:14 +0900199unsigned long oops_begin(void)
Neil Horman878719e2008-10-23 10:40:06 -0400200{
201 int cpu;
202 unsigned long flags;
203
Neil Horman878719e2008-10-23 10:40:06 -0400204 oops_enter();
205
206 /* racy, but better than risking deadlock. */
207 raw_local_irq_save(flags);
208 cpu = smp_processor_id();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100209 if (!arch_spin_trylock(&die_lock)) {
Neil Horman878719e2008-10-23 10:40:06 -0400210 if (cpu == die_owner)
211 /* nested oops. should stop eventually */;
212 else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100213 arch_spin_lock(&die_lock);
Neil Horman878719e2008-10-23 10:40:06 -0400214 }
215 die_nest_count++;
216 die_owner = cpu;
217 console_verbose();
218 bust_spinlocks(1);
219 return flags;
220}
Huang Ying81e88fd2011-01-12 14:44:55 +0800221EXPORT_SYMBOL_GPL(oops_begin);
Masami Hiramatsu93266382014-04-17 17:18:14 +0900222NOKPROBE_SYMBOL(oops_begin);
Neil Horman878719e2008-10-23 10:40:06 -0400223
Andy Lutomirski2deb4be2016-07-14 13:22:55 -0700224void __noreturn rewind_stack_do_exit(int signr);
225
Masami Hiramatsu93266382014-04-17 17:18:14 +0900226void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
Neil Horman878719e2008-10-23 10:40:06 -0400227{
228 if (regs && kexec_should_crash(current))
229 crash_kexec(regs);
230
231 bust_spinlocks(0);
232 die_owner = -1;
Rusty Russell373d4d02013-01-21 17:17:39 +1030233 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Neil Horman878719e2008-10-23 10:40:06 -0400234 die_nest_count--;
235 if (!die_nest_count)
236 /* Nest count reaches zero, release the lock. */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100237 arch_spin_unlock(&die_lock);
Neil Horman878719e2008-10-23 10:40:06 -0400238 raw_local_irq_restore(flags);
239 oops_exit();
240
241 if (!signr)
242 return;
243 if (in_interrupt())
244 panic("Fatal exception in interrupt");
245 if (panic_on_oops)
246 panic("Fatal exception");
Andy Lutomirski2deb4be2016-07-14 13:22:55 -0700247
248 /*
249 * We're not going to return, but we might be on an IST stack or
250 * have very little stack space left. Rewind the stack and kill
251 * the task.
252 */
253 rewind_stack_do_exit(signr);
Neil Horman878719e2008-10-23 10:40:06 -0400254}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900255NOKPROBE_SYMBOL(oops_end);
Neil Horman878719e2008-10-23 10:40:06 -0400256
Masami Hiramatsu93266382014-04-17 17:18:14 +0900257int __die(const char *str, struct pt_regs *regs, long err)
Neil Horman878719e2008-10-23 10:40:06 -0400258{
259#ifdef CONFIG_X86_32
260 unsigned short ss;
261 unsigned long sp;
262#endif
Prarit Bhargavab0f4c4b2012-01-26 08:55:34 -0500263 printk(KERN_DEFAULT
Rasmus Villemoes8fad7ec2016-03-26 21:40:16 +0100264 "%s: %04lx [#%d]%s%s%s%s\n", str, err & 0xffff, ++die_counter,
265 IS_ENABLED(CONFIG_PREEMPT) ? " PREEMPT" : "",
266 IS_ENABLED(CONFIG_SMP) ? " SMP" : "",
267 debug_pagealloc_enabled() ? " DEBUG_PAGEALLOC" : "",
268 IS_ENABLED(CONFIG_KASAN) ? " KASAN" : "");
269
Neil Horman878719e2008-10-23 10:40:06 -0400270 if (notify_die(DIE_OOPS, str, regs, err,
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530271 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP)
Neil Horman878719e2008-10-23 10:40:06 -0400272 return 1;
273
Jan Beulich0fa0e2f2012-06-18 11:40:04 +0100274 print_modules();
Jan Beulich57da8b92012-05-09 08:47:37 +0100275 show_regs(regs);
Neil Horman878719e2008-10-23 10:40:06 -0400276#ifdef CONFIG_X86_32
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700277 if (user_mode(regs)) {
Neil Horman878719e2008-10-23 10:40:06 -0400278 sp = regs->sp;
279 ss = regs->ss & 0xffff;
H. Peter Anvina343c752009-10-12 14:11:09 -0700280 } else {
281 sp = kernel_stack_pointer(regs);
282 savesegment(ss, ss);
Neil Horman878719e2008-10-23 10:40:06 -0400283 }
284 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->ip);
285 print_symbol("%s", regs->ip);
286 printk(" SS:ESP %04x:%08lx\n", ss, sp);
287#else
288 /* Executive summary in case the oops scrolled away */
289 printk(KERN_ALERT "RIP ");
Jiri Slaby5f01c982013-10-25 15:06:58 +0200290 printk_address(regs->ip);
Neil Horman878719e2008-10-23 10:40:06 -0400291 printk(" RSP <%016lx>\n", regs->sp);
292#endif
293 return 0;
294}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900295NOKPROBE_SYMBOL(__die);
Neil Horman878719e2008-10-23 10:40:06 -0400296
297/*
298 * This is gone through when something in the kernel has done something bad
299 * and is about to be terminated:
300 */
301void die(const char *str, struct pt_regs *regs, long err)
302{
303 unsigned long flags = oops_begin();
304 int sig = SIGSEGV;
305
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700306 if (!user_mode(regs))
Neil Horman878719e2008-10-23 10:40:06 -0400307 report_bug(regs->ip, regs);
308
309 if (__die(str, regs, err))
310 sig = 0;
311 oops_end(flags, regs, sig);
312}
313
Neil Horman878719e2008-10-23 10:40:06 -0400314static int __init kstack_setup(char *s)
315{
Shuah Khan363f7ce2012-05-06 11:58:04 -0600316 ssize_t ret;
317 unsigned long val;
318
Neil Horman878719e2008-10-23 10:40:06 -0400319 if (!s)
320 return -EINVAL;
Shuah Khan363f7ce2012-05-06 11:58:04 -0600321
322 ret = kstrtoul(s, 0, &val);
323 if (ret)
324 return ret;
325 kstack_depth_to_print = val;
Neil Horman878719e2008-10-23 10:40:06 -0400326 return 0;
327}
328early_param("kstack", kstack_setup);
329
330static int __init code_bytes_setup(char *s)
331{
Shuah Khan363f7ce2012-05-06 11:58:04 -0600332 ssize_t ret;
333 unsigned long val;
334
335 if (!s)
336 return -EINVAL;
337
338 ret = kstrtoul(s, 0, &val);
339 if (ret)
340 return ret;
341
342 code_bytes = val;
Neil Horman878719e2008-10-23 10:40:06 -0400343 if (code_bytes > 8192)
344 code_bytes = 8192;
345
346 return 1;
347}
348__setup("code_bytes=", code_bytes_setup);