blob: f0ddf855957e30773dbe756d44ea2807d31e1884 [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
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010028static void printk_stack_address(unsigned long address, int reliable,
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050029 char *log_lvl)
Neil Horman878719e2008-10-23 10:40:06 -040030{
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050031 touch_nmi_watchdog();
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010032 printk("%s [<%p>] %s%pB\n",
Josh Poimboeufd438f5f2016-08-24 11:50:16 -050033 log_lvl, (void *)address, reliable ? "" : "? ",
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +010034 (void *)address);
Neil Horman878719e2008-10-23 10:40:06 -040035}
36
Jiri Slaby5f01c982013-10-25 15:06:58 +020037void printk_address(unsigned long address)
38{
39 pr_cont(" [<%p>] %pS\n", (void *)address, (void *)address);
40}
41
Neil Horman878719e2008-10-23 10:40:06 -040042/*
43 * x86-64 can have up to three kernel stacks:
44 * process stack
45 * interrupt stack
46 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
47 */
48
Linus Torvaldsda01e182016-06-23 12:20:01 -070049static inline int valid_stack_ptr(struct task_struct *task,
Neil Horman878719e2008-10-23 10:40:06 -040050 void *p, unsigned int size, void *end)
51{
Linus Torvaldsaca9c292016-06-24 16:55:53 -070052 void *t = task_stack_page(task);
Neil Horman878719e2008-10-23 10:40:06 -040053 if (end) {
54 if (p < end && p >= (end-THREAD_SIZE))
55 return 1;
56 else
57 return 0;
58 }
Andy Lutomirski9a2e9da2016-07-14 13:22:52 -070059 return p >= t && p < t + THREAD_SIZE - size;
Neil Horman878719e2008-10-23 10:40:06 -040060}
61
62unsigned long
Linus Torvaldsda01e182016-06-23 12:20:01 -070063print_context_stack(struct task_struct *task,
Neil Horman878719e2008-10-23 10:40:06 -040064 unsigned long *stack, unsigned long bp,
65 const struct stacktrace_ops *ops, void *data,
Steven Rostedt7ee991f2008-12-02 23:50:04 -050066 unsigned long *end, int *graph)
Neil Horman878719e2008-10-23 10:40:06 -040067{
68 struct stack_frame *frame = (struct stack_frame *)bp;
69
Andy Lutomirski9a2e9da2016-07-14 13:22:52 -070070 /*
71 * If we overflowed the stack into a guard page, jump back to the
72 * bottom of the usable stack.
73 */
74 if ((unsigned long)task_stack_page(task) - (unsigned long)stack <
75 PAGE_SIZE)
76 stack = (unsigned long *)task_stack_page(task);
77
Linus Torvaldsda01e182016-06-23 12:20:01 -070078 while (valid_stack_ptr(task, stack, sizeof(*stack), end)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050079 unsigned long addr = *stack;
Neil Horman878719e2008-10-23 10:40:06 -040080
Neil Horman878719e2008-10-23 10:40:06 -040081 if (__kernel_text_address(addr)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050082 unsigned long real_addr;
83 int reliable = 0;
84
Neil Horman878719e2008-10-23 10:40:06 -040085 if ((unsigned long) stack == bp + sizeof(long)) {
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050086 reliable = 1;
Neil Horman878719e2008-10-23 10:40:06 -040087 frame = frame->next_frame;
88 bp = (unsigned long) frame;
Neil Horman878719e2008-10-23 10:40:06 -040089 }
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -050090
Josh Poimboeuf6f727b82016-08-19 06:53:01 -050091 /*
92 * When function graph tracing is enabled for a
93 * function, its return address on the stack is
94 * replaced with the address of an ftrace handler
95 * (return_to_handler). In that case, before printing
96 * the "real" address, we want to print the handler
97 * address as an "unreliable" hint that function graph
98 * tracing was involved.
99 */
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500100 real_addr = ftrace_graph_ret_addr(task, graph, addr,
101 stack);
102 if (real_addr != addr)
Josh Poimboeuf6f727b82016-08-19 06:53:01 -0500103 ops->address(data, addr, 0);
104
105 ops->address(data, real_addr, reliable);
Neil Horman878719e2008-10-23 10:40:06 -0400106 }
107 stack++;
108 }
109 return bp;
110}
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100111EXPORT_SYMBOL_GPL(print_context_stack);
112
113unsigned long
Linus Torvaldsda01e182016-06-23 12:20:01 -0700114print_context_stack_bp(struct task_struct *task,
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100115 unsigned long *stack, unsigned long bp,
116 const struct stacktrace_ops *ops, void *data,
117 unsigned long *end, int *graph)
118{
119 struct stack_frame *frame = (struct stack_frame *)bp;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500120 unsigned long *retp = &frame->return_address;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100121
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500122 while (valid_stack_ptr(task, retp, sizeof(*retp), end)) {
123 unsigned long addr = *retp;
124 unsigned long real_addr;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100125
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100126 if (!__kernel_text_address(addr))
127 break;
128
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500129 real_addr = ftrace_graph_ret_addr(task, graph, addr, retp);
Josh Poimboeuf6f727b82016-08-19 06:53:01 -0500130 if (ops->address(data, real_addr, 1))
131 break;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500132
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100133 frame = frame->next_frame;
Josh Poimboeuf408fe5d2016-08-19 06:52:59 -0500134 retp = &frame->return_address;
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100135 }
Frederic Weisbeckerc2c5d452009-12-31 03:52:25 +0100136
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100137 return (unsigned long)frame;
138}
139EXPORT_SYMBOL_GPL(print_context_stack_bp);
Neil Horman878719e2008-10-23 10:40:06 -0400140
Neil Horman878719e2008-10-23 10:40:06 -0400141static int print_trace_stack(void *data, char *name)
142{
143 printk("%s <%s> ", (char *)data, name);
144 return 0;
145}
146
147/*
148 * Print one address/symbol entries per line.
149 */
Alexei Starovoitov568b3292016-02-17 19:58:57 -0800150static int print_trace_address(void *data, unsigned long addr, int reliable)
Neil Horman878719e2008-10-23 10:40:06 -0400151{
Adrien Schildknecht1fc7f612015-02-20 03:34:21 +0100152 printk_stack_address(addr, reliable, data);
Alexei Starovoitov568b3292016-02-17 19:58:57 -0800153 return 0;
Neil Horman878719e2008-10-23 10:40:06 -0400154}
155
156static const struct stacktrace_ops print_trace_ops = {
Frederic Weisbecker06d65bd2009-12-17 05:40:34 +0100157 .stack = print_trace_stack,
158 .address = print_trace_address,
Frederic Weisbecker61c19172009-12-17 05:40:33 +0100159 .walk_stack = print_context_stack,
Neil Horman878719e2008-10-23 10:40:06 -0400160};
161
162void
163show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
Namhyung Kime8e999cf2011-03-18 11:40:06 +0900164 unsigned long *stack, unsigned long bp, char *log_lvl)
Neil Horman878719e2008-10-23 10:40:06 -0400165{
166 printk("%sCall Trace:\n", log_lvl);
Namhyung Kime8e999cf2011-03-18 11:40:06 +0900167 dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
Neil Horman878719e2008-10-23 10:40:06 -0400168}
169
Neil Horman878719e2008-10-23 10:40:06 -0400170void show_stack(struct task_struct *task, unsigned long *sp)
171{
Tejun Heoa77f2a42013-04-30 15:27:09 -0700172 unsigned long bp = 0;
173 unsigned long stack;
174
175 /*
176 * Stack frames below this one aren't interesting. Don't show them
177 * if we're printing for %current.
178 */
179 if (!sp && (!task || task == current)) {
180 sp = &stack;
181 bp = stack_frame(current, NULL);
182 }
183
184 show_stack_log_lvl(task, NULL, sp, bp, "");
Neil Horman878719e2008-10-23 10:40:06 -0400185}
186
Borislav Petkov81c29492016-07-05 00:31:27 +0200187void show_stack_regs(struct pt_regs *regs)
188{
189 show_stack_log_lvl(current, regs, (unsigned long *)regs->sp, regs->bp, "");
190}
191
Thomas Gleixneredc35bd2009-12-03 12:38:57 +0100192static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
Neil Horman878719e2008-10-23 10:40:06 -0400193static int die_owner = -1;
194static unsigned int die_nest_count;
195
Masami Hiramatsu93266382014-04-17 17:18:14 +0900196unsigned long oops_begin(void)
Neil Horman878719e2008-10-23 10:40:06 -0400197{
198 int cpu;
199 unsigned long flags;
200
Neil Horman878719e2008-10-23 10:40:06 -0400201 oops_enter();
202
203 /* racy, but better than risking deadlock. */
204 raw_local_irq_save(flags);
205 cpu = smp_processor_id();
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100206 if (!arch_spin_trylock(&die_lock)) {
Neil Horman878719e2008-10-23 10:40:06 -0400207 if (cpu == die_owner)
208 /* nested oops. should stop eventually */;
209 else
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100210 arch_spin_lock(&die_lock);
Neil Horman878719e2008-10-23 10:40:06 -0400211 }
212 die_nest_count++;
213 die_owner = cpu;
214 console_verbose();
215 bust_spinlocks(1);
216 return flags;
217}
Huang Ying81e88fd2011-01-12 14:44:55 +0800218EXPORT_SYMBOL_GPL(oops_begin);
Masami Hiramatsu93266382014-04-17 17:18:14 +0900219NOKPROBE_SYMBOL(oops_begin);
Neil Horman878719e2008-10-23 10:40:06 -0400220
Andy Lutomirski2deb4be2016-07-14 13:22:55 -0700221void __noreturn rewind_stack_do_exit(int signr);
222
Masami Hiramatsu93266382014-04-17 17:18:14 +0900223void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
Neil Horman878719e2008-10-23 10:40:06 -0400224{
225 if (regs && kexec_should_crash(current))
226 crash_kexec(regs);
227
228 bust_spinlocks(0);
229 die_owner = -1;
Rusty Russell373d4d02013-01-21 17:17:39 +1030230 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
Neil Horman878719e2008-10-23 10:40:06 -0400231 die_nest_count--;
232 if (!die_nest_count)
233 /* Nest count reaches zero, release the lock. */
Thomas Gleixner0199c4e2009-12-02 20:01:25 +0100234 arch_spin_unlock(&die_lock);
Neil Horman878719e2008-10-23 10:40:06 -0400235 raw_local_irq_restore(flags);
236 oops_exit();
237
238 if (!signr)
239 return;
240 if (in_interrupt())
241 panic("Fatal exception in interrupt");
242 if (panic_on_oops)
243 panic("Fatal exception");
Andy Lutomirski2deb4be2016-07-14 13:22:55 -0700244
245 /*
246 * We're not going to return, but we might be on an IST stack or
247 * have very little stack space left. Rewind the stack and kill
248 * the task.
249 */
250 rewind_stack_do_exit(signr);
Neil Horman878719e2008-10-23 10:40:06 -0400251}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900252NOKPROBE_SYMBOL(oops_end);
Neil Horman878719e2008-10-23 10:40:06 -0400253
Masami Hiramatsu93266382014-04-17 17:18:14 +0900254int __die(const char *str, struct pt_regs *regs, long err)
Neil Horman878719e2008-10-23 10:40:06 -0400255{
256#ifdef CONFIG_X86_32
257 unsigned short ss;
258 unsigned long sp;
259#endif
Prarit Bhargavab0f4c4b2012-01-26 08:55:34 -0500260 printk(KERN_DEFAULT
Rasmus Villemoes8fad7ec2016-03-26 21:40:16 +0100261 "%s: %04lx [#%d]%s%s%s%s\n", str, err & 0xffff, ++die_counter,
262 IS_ENABLED(CONFIG_PREEMPT) ? " PREEMPT" : "",
263 IS_ENABLED(CONFIG_SMP) ? " SMP" : "",
264 debug_pagealloc_enabled() ? " DEBUG_PAGEALLOC" : "",
265 IS_ENABLED(CONFIG_KASAN) ? " KASAN" : "");
266
Neil Horman878719e2008-10-23 10:40:06 -0400267 if (notify_die(DIE_OOPS, str, regs, err,
Srikar Dronamraju51e7dc72012-03-12 14:55:55 +0530268 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP)
Neil Horman878719e2008-10-23 10:40:06 -0400269 return 1;
270
Jan Beulich0fa0e2f2012-06-18 11:40:04 +0100271 print_modules();
Jan Beulich57da8b92012-05-09 08:47:37 +0100272 show_regs(regs);
Neil Horman878719e2008-10-23 10:40:06 -0400273#ifdef CONFIG_X86_32
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700274 if (user_mode(regs)) {
Neil Horman878719e2008-10-23 10:40:06 -0400275 sp = regs->sp;
276 ss = regs->ss & 0xffff;
H. Peter Anvina343c752009-10-12 14:11:09 -0700277 } else {
278 sp = kernel_stack_pointer(regs);
279 savesegment(ss, ss);
Neil Horman878719e2008-10-23 10:40:06 -0400280 }
281 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->ip);
282 print_symbol("%s", regs->ip);
283 printk(" SS:ESP %04x:%08lx\n", ss, sp);
284#else
285 /* Executive summary in case the oops scrolled away */
286 printk(KERN_ALERT "RIP ");
Jiri Slaby5f01c982013-10-25 15:06:58 +0200287 printk_address(regs->ip);
Neil Horman878719e2008-10-23 10:40:06 -0400288 printk(" RSP <%016lx>\n", regs->sp);
289#endif
290 return 0;
291}
Masami Hiramatsu93266382014-04-17 17:18:14 +0900292NOKPROBE_SYMBOL(__die);
Neil Horman878719e2008-10-23 10:40:06 -0400293
294/*
295 * This is gone through when something in the kernel has done something bad
296 * and is about to be terminated:
297 */
298void die(const char *str, struct pt_regs *regs, long err)
299{
300 unsigned long flags = oops_begin();
301 int sig = SIGSEGV;
302
Andy Lutomirskif39b6f02015-03-18 18:33:33 -0700303 if (!user_mode(regs))
Neil Horman878719e2008-10-23 10:40:06 -0400304 report_bug(regs->ip, regs);
305
306 if (__die(str, regs, err))
307 sig = 0;
308 oops_end(flags, regs, sig);
309}
310
Neil Horman878719e2008-10-23 10:40:06 -0400311static int __init kstack_setup(char *s)
312{
Shuah Khan363f7ce2012-05-06 11:58:04 -0600313 ssize_t ret;
314 unsigned long val;
315
Neil Horman878719e2008-10-23 10:40:06 -0400316 if (!s)
317 return -EINVAL;
Shuah Khan363f7ce2012-05-06 11:58:04 -0600318
319 ret = kstrtoul(s, 0, &val);
320 if (ret)
321 return ret;
322 kstack_depth_to_print = val;
Neil Horman878719e2008-10-23 10:40:06 -0400323 return 0;
324}
325early_param("kstack", kstack_setup);
326
327static int __init code_bytes_setup(char *s)
328{
Shuah Khan363f7ce2012-05-06 11:58:04 -0600329 ssize_t ret;
330 unsigned long val;
331
332 if (!s)
333 return -EINVAL;
334
335 ret = kstrtoul(s, 0, &val);
336 if (ret)
337 return ret;
338
339 code_bytes = val;
Neil Horman878719e2008-10-23 10:40:06 -0400340 if (code_bytes > 8192)
341 code_bytes = 8192;
342
343 return 1;
344}
345__setup("code_bytes=", code_bytes_setup);