oprofile/x86: Convert x86_backtrace() to use the new unwinder
[linux-2.6-block.git] / arch / x86 / kernel / dumpstack.c
CommitLineData
878719e8
NH
1/*
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>
712406a6 13#include <linux/ftrace.h>
878719e8
NH
14#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
878719e8
NH
21
22int panic_on_unrecovered_nmi;
5211a242 23int panic_on_io_nmi;
878719e8
NH
24unsigned int code_bytes = 64;
25int kstack_depth_to_print = 3 * STACKSLOTS_PER_LINE;
26static int die_counter;
27
cb76c939
JP
28bool 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
1fc7f61c 45static void printk_stack_address(unsigned long address, int reliable,
d438f5fd 46 char *log_lvl)
878719e8 47{
d438f5fd 48 touch_nmi_watchdog();
1fc7f61c 49 printk("%s [<%p>] %s%pB\n",
d438f5fd 50 log_lvl, (void *)address, reliable ? "" : "? ",
1fc7f61c 51 (void *)address);
878719e8
NH
52}
53
5f01c988
JS
54void printk_address(unsigned long address)
55{
56 pr_cont(" [<%p>] %pS\n", (void *)address, (void *)address);
57}
58
878719e8
NH
59/*
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
878719e8 66unsigned long
da01e18a 67print_context_stack(struct task_struct *task,
878719e8
NH
68 unsigned long *stack, unsigned long bp,
69 const struct stacktrace_ops *ops, void *data,
cb76c939 70 struct stack_info *info, int *graph)
878719e8
NH
71{
72 struct stack_frame *frame = (struct stack_frame *)bp;
73
9a2e9da3
AL
74 /*
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
cb76c939 82 while (on_stack(info, stack, sizeof(*stack))) {
408fe5de 83 unsigned long addr = *stack;
878719e8 84
878719e8 85 if (__kernel_text_address(addr)) {
408fe5de
JP
86 unsigned long real_addr;
87 int reliable = 0;
88
878719e8 89 if ((unsigned long) stack == bp + sizeof(long)) {
408fe5de 90 reliable = 1;
878719e8
NH
91 frame = frame->next_frame;
92 bp = (unsigned long) frame;
878719e8 93 }
408fe5de 94
6f727b84
JP
95 /*
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 */
408fe5de
JP
104 real_addr = ftrace_graph_ret_addr(task, graph, addr,
105 stack);
106 if (real_addr != addr)
6f727b84
JP
107 ops->address(data, addr, 0);
108
109 ops->address(data, real_addr, reliable);
878719e8
NH
110 }
111 stack++;
112 }
113 return bp;
114}
06d65bda
FW
115EXPORT_SYMBOL_GPL(print_context_stack);
116
117unsigned long
da01e18a 118print_context_stack_bp(struct task_struct *task,
06d65bda
FW
119 unsigned long *stack, unsigned long bp,
120 const struct stacktrace_ops *ops, void *data,
cb76c939 121 struct stack_info *info, int *graph)
06d65bda
FW
122{
123 struct stack_frame *frame = (struct stack_frame *)bp;
408fe5de 124 unsigned long *retp = &frame->return_address;
06d65bda 125
cb76c939 126 while (on_stack(info, stack, sizeof(*stack) * 2)) {
408fe5de
JP
127 unsigned long addr = *retp;
128 unsigned long real_addr;
06d65bda 129
c2c5d45d
FW
130 if (!__kernel_text_address(addr))
131 break;
132
408fe5de 133 real_addr = ftrace_graph_ret_addr(task, graph, addr, retp);
6f727b84
JP
134 if (ops->address(data, real_addr, 1))
135 break;
408fe5de 136
c2c5d45d 137 frame = frame->next_frame;
408fe5de 138 retp = &frame->return_address;
06d65bda 139 }
c2c5d45d 140
06d65bda
FW
141 return (unsigned long)frame;
142}
143EXPORT_SYMBOL_GPL(print_context_stack_bp);
878719e8 144
cb76c939 145static int print_trace_stack(void *data, const char *name)
878719e8
NH
146{
147 printk("%s <%s> ", (char *)data, name);
148 return 0;
149}
150
151/*
152 * Print one address/symbol entries per line.
153 */
568b329a 154static int print_trace_address(void *data, unsigned long addr, int reliable)
878719e8 155{
1fc7f61c 156 printk_stack_address(addr, reliable, data);
568b329a 157 return 0;
878719e8
NH
158}
159
160static const struct stacktrace_ops print_trace_ops = {
06d65bda
FW
161 .stack = print_trace_stack,
162 .address = print_trace_address,
61c1917f 163 .walk_stack = print_context_stack,
878719e8
NH
164};
165
166void
167show_trace_log_lvl(struct task_struct *task, struct pt_regs *regs,
e8e999cf 168 unsigned long *stack, unsigned long bp, char *log_lvl)
878719e8
NH
169{
170 printk("%sCall Trace:\n", log_lvl);
e8e999cf 171 dump_trace(task, regs, stack, bp, &print_trace_ops, log_lvl);
878719e8
NH
172}
173
878719e8
NH
174void show_stack(struct task_struct *task, unsigned long *sp)
175{
a77f2a4e 176 unsigned long bp = 0;
a77f2a4e 177
81539169
JP
178 task = task ? : current;
179
a77f2a4e
TH
180 /*
181 * Stack frames below this one aren't interesting. Don't show them
182 * if we're printing for %current.
183 */
81539169 184 if (!sp && task == current) {
4b8afafb
JP
185 sp = get_stack_pointer(current, NULL);
186 bp = (unsigned long)get_frame_pointer(current, NULL);
a77f2a4e
TH
187 }
188
189 show_stack_log_lvl(task, NULL, sp, bp, "");
878719e8
NH
190}
191
81c2949f
BP
192void show_stack_regs(struct pt_regs *regs)
193{
5a8ff54c 194 show_stack_log_lvl(current, regs, NULL, 0, "");
81c2949f
BP
195}
196
edc35bd7 197static arch_spinlock_t die_lock = __ARCH_SPIN_LOCK_UNLOCKED;
878719e8
NH
198static int die_owner = -1;
199static unsigned int die_nest_count;
200
9326638c 201unsigned long oops_begin(void)
878719e8
NH
202{
203 int cpu;
204 unsigned long flags;
205
206 oops_enter();
207
208 /* racy, but better than risking deadlock. */
209 raw_local_irq_save(flags);
210 cpu = smp_processor_id();
0199c4e6 211 if (!arch_spin_trylock(&die_lock)) {
878719e8
NH
212 if (cpu == die_owner)
213 /* nested oops. should stop eventually */;
214 else
0199c4e6 215 arch_spin_lock(&die_lock);
878719e8
NH
216 }
217 die_nest_count++;
218 die_owner = cpu;
219 console_verbose();
220 bust_spinlocks(1);
221 return flags;
222}
81e88fdc 223EXPORT_SYMBOL_GPL(oops_begin);
9326638c 224NOKPROBE_SYMBOL(oops_begin);
878719e8 225
2deb4be2
AL
226void __noreturn rewind_stack_do_exit(int signr);
227
9326638c 228void oops_end(unsigned long flags, struct pt_regs *regs, int signr)
878719e8
NH
229{
230 if (regs && kexec_should_crash(current))
231 crash_kexec(regs);
232
233 bust_spinlocks(0);
234 die_owner = -1;
373d4d09 235 add_taint(TAINT_DIE, LOCKDEP_NOW_UNRELIABLE);
878719e8
NH
236 die_nest_count--;
237 if (!die_nest_count)
238 /* Nest count reaches zero, release the lock. */
0199c4e6 239 arch_spin_unlock(&die_lock);
878719e8
NH
240 raw_local_irq_restore(flags);
241 oops_exit();
242
243 if (!signr)
244 return;
245 if (in_interrupt())
246 panic("Fatal exception in interrupt");
247 if (panic_on_oops)
248 panic("Fatal exception");
2deb4be2
AL
249
250 /*
251 * We're not going to return, but we might be on an IST stack or
252 * have very little stack space left. Rewind the stack and kill
253 * the task.
254 */
255 rewind_stack_do_exit(signr);
878719e8 256}
9326638c 257NOKPROBE_SYMBOL(oops_end);
878719e8 258
9326638c 259int __die(const char *str, struct pt_regs *regs, long err)
878719e8
NH
260{
261#ifdef CONFIG_X86_32
262 unsigned short ss;
263 unsigned long sp;
264#endif
b0f4c4b3 265 printk(KERN_DEFAULT
8fad7ec5
RV
266 "%s: %04lx [#%d]%s%s%s%s\n", str, err & 0xffff, ++die_counter,
267 IS_ENABLED(CONFIG_PREEMPT) ? " PREEMPT" : "",
268 IS_ENABLED(CONFIG_SMP) ? " SMP" : "",
269 debug_pagealloc_enabled() ? " DEBUG_PAGEALLOC" : "",
270 IS_ENABLED(CONFIG_KASAN) ? " KASAN" : "");
271
878719e8 272 if (notify_die(DIE_OOPS, str, regs, err,
51e7dc70 273 current->thread.trap_nr, SIGSEGV) == NOTIFY_STOP)
878719e8
NH
274 return 1;
275
0fa0e2f0 276 print_modules();
57da8b96 277 show_regs(regs);
878719e8 278#ifdef CONFIG_X86_32
f39b6f0e 279 if (user_mode(regs)) {
878719e8
NH
280 sp = regs->sp;
281 ss = regs->ss & 0xffff;
a343c75d
PA
282 } else {
283 sp = kernel_stack_pointer(regs);
284 savesegment(ss, ss);
878719e8
NH
285 }
286 printk(KERN_EMERG "EIP: [<%08lx>] ", regs->ip);
287 print_symbol("%s", regs->ip);
288 printk(" SS:ESP %04x:%08lx\n", ss, sp);
289#else
290 /* Executive summary in case the oops scrolled away */
291 printk(KERN_ALERT "RIP ");
5f01c988 292 printk_address(regs->ip);
878719e8
NH
293 printk(" RSP <%016lx>\n", regs->sp);
294#endif
295 return 0;
296}
9326638c 297NOKPROBE_SYMBOL(__die);
878719e8
NH
298
299/*
300 * This is gone through when something in the kernel has done something bad
301 * and is about to be terminated:
302 */
303void die(const char *str, struct pt_regs *regs, long err)
304{
305 unsigned long flags = oops_begin();
306 int sig = SIGSEGV;
307
f39b6f0e 308 if (!user_mode(regs))
878719e8
NH
309 report_bug(regs->ip, regs);
310
311 if (__die(str, regs, err))
312 sig = 0;
313 oops_end(flags, regs, sig);
314}
315
878719e8
NH
316static int __init kstack_setup(char *s)
317{
363f7ce3
SK
318 ssize_t ret;
319 unsigned long val;
320
878719e8
NH
321 if (!s)
322 return -EINVAL;
363f7ce3
SK
323
324 ret = kstrtoul(s, 0, &val);
325 if (ret)
326 return ret;
327 kstack_depth_to_print = val;
878719e8
NH
328 return 0;
329}
330early_param("kstack", kstack_setup);
331
332static int __init code_bytes_setup(char *s)
333{
363f7ce3
SK
334 ssize_t ret;
335 unsigned long val;
336
337 if (!s)
338 return -EINVAL;
339
340 ret = kstrtoul(s, 0, &val);
341 if (ret)
342 return ret;
343
344 code_bytes = val;
878719e8
NH
345 if (code_bytes > 8192)
346 code_bytes = 8192;
347
348 return 1;
349}
350__setup("code_bytes=", code_bytes_setup);