2 * Copyright (C) 1991, 1992 Linus Torvalds
3 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
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>
13 #include <linux/kexec.h>
14 #include <linux/bug.h>
15 #include <linux/nmi.h>
16 #include <linux/sysfs.h>
18 #include <asm/stacktrace.h>
20 #include "dumpstack.h"
22 static unsigned long *in_exception_stack(unsigned cpu, unsigned long stack,
23 unsigned *usedp, char **idp)
25 static char ids[][8] = {
26 [DEBUG_STACK - 1] = "#DB",
27 [NMI_STACK - 1] = "NMI",
28 [DOUBLEFAULT_STACK - 1] = "#DF",
29 [STACKFAULT_STACK - 1] = "#SS",
30 [MCE_STACK - 1] = "#MC",
31 #if DEBUG_STKSZ > EXCEPTION_STKSZ
32 [N_EXCEPTION_STACKS ...
33 N_EXCEPTION_STACKS + DEBUG_STKSZ / EXCEPTION_STKSZ - 2] = "#DB[?]"
39 * Iterate over all exception stacks, and figure out whether
40 * 'stack' is in one of them:
42 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
43 unsigned long end = per_cpu(orig_ist, cpu).ist[k];
45 * Is 'stack' above this exception frame's end?
46 * If yes then skip to the next frame.
51 * Is 'stack' above this exception frame's start address?
52 * If yes then we found the right frame.
54 if (stack >= end - EXCEPTION_STKSZ) {
56 * Make sure we only iterate through an exception
57 * stack once. If it comes up for the second time
58 * then there's something wrong going on - just
59 * break out and return NULL:
61 if (*usedp & (1U << k))
65 return (unsigned long *)end;
68 * If this is a debug stack, and if it has a larger size than
69 * the usual exception stacks, then 'stack' might still
70 * be within the lower portion of the debug stack:
72 #if DEBUG_STKSZ > EXCEPTION_STKSZ
73 if (k == DEBUG_STACK - 1 && stack >= end - DEBUG_STKSZ) {
74 unsigned j = N_EXCEPTION_STACKS - 1;
77 * Black magic. A large debug stack is composed of
78 * multiple exception stack entries, which we
79 * iterate through now. Dont look:
83 end -= EXCEPTION_STKSZ;
84 ids[j][4] = '1' + (j - N_EXCEPTION_STACKS);
85 } while (stack < end - EXCEPTION_STKSZ);
86 if (*usedp & (1U << j))
90 return (unsigned long *)end;
98 * x86-64 can have up to three kernel stacks:
101 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
104 void dump_trace(struct task_struct *task, struct pt_regs *regs,
105 unsigned long *stack, unsigned long bp,
106 const struct stacktrace_ops *ops, void *data)
108 const unsigned cpu = get_cpu();
109 unsigned long *irq_stack_end =
110 (unsigned long *)per_cpu(irq_stack_ptr, cpu);
112 struct thread_info *tinfo;
121 if (task && task != current)
122 stack = (unsigned long *)task->thread.sp;
125 #ifdef CONFIG_FRAME_POINTER
127 if (task == current) {
128 /* Grab bp right from our regs */
131 /* bp is the last reg pushed by switch_to */
132 bp = *(unsigned long *) task->thread.sp;
138 * Print function call entries in all stacks, starting at the
139 * current stack address. If the stacks consist of nested
142 tinfo = task_thread_info(task);
145 unsigned long *estack_end;
146 estack_end = in_exception_stack(cpu, (unsigned long)stack,
150 if (ops->stack(data, id) < 0)
153 bp = print_context_stack(tinfo, stack, bp, ops,
154 data, estack_end, &graph);
155 ops->stack(data, "<EOE>");
157 * We link to the next stack via the
158 * second-to-last pointer (index -2 to end) in the
161 stack = (unsigned long *) estack_end[-2];
165 unsigned long *irq_stack;
166 irq_stack = irq_stack_end -
167 (IRQ_STACK_SIZE - 64) / sizeof(*irq_stack);
169 if (stack >= irq_stack && stack < irq_stack_end) {
170 if (ops->stack(data, "IRQ") < 0)
172 bp = print_context_stack(tinfo, stack, bp,
173 ops, data, irq_stack_end, &graph);
175 * We link to the next stack (which would be
176 * the process stack normally) the last
177 * pointer (index -1 to end) in the IRQ stack:
179 stack = (unsigned long *) (irq_stack_end[-1]);
180 irq_stack_end = NULL;
181 ops->stack(data, "EOI");
189 * This handles the process stack:
191 bp = print_context_stack(tinfo, stack, bp, ops, data, NULL, &graph);
194 EXPORT_SYMBOL(dump_trace);
197 show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
198 unsigned long *sp, unsigned long bp, char *log_lvl)
200 unsigned long *stack;
202 const int cpu = smp_processor_id();
203 unsigned long *irq_stack_end =
204 (unsigned long *)(per_cpu(irq_stack_ptr, cpu));
205 unsigned long *irq_stack =
206 (unsigned long *)(per_cpu(irq_stack_ptr, cpu) - IRQ_STACK_SIZE);
209 * debugging aid: "show_stack(NULL, NULL);" prints the
210 * back trace for this cpu.
215 sp = (unsigned long *)task->thread.sp;
217 sp = (unsigned long *)&sp;
221 for (i = 0; i < kstack_depth_to_print; i++) {
222 if (stack >= irq_stack && stack <= irq_stack_end) {
223 if (stack == irq_stack_end) {
224 stack = (unsigned long *) (irq_stack_end[-1]);
228 if (((long) stack & (THREAD_SIZE-1)) == 0)
231 if (i && ((i % STACKSLOTS_PER_LINE) == 0))
232 printk("\n%s", log_lvl);
233 printk(" %016lx", *stack++);
234 touch_nmi_watchdog();
237 show_trace_log_lvl(task, regs, sp, bp, log_lvl);
240 void show_registers(struct pt_regs *regs)
244 const int cpu = smp_processor_id();
245 struct task_struct *cur = current;
248 printk("CPU %d ", cpu);
249 __show_regs(regs, 1);
250 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
251 cur->comm, cur->pid, task_thread_info(cur), cur);
254 * When in-kernel, we also print out the stack and code at the
255 * time of the fault..
257 if (!user_mode(regs)) {
258 unsigned int code_prologue = code_bytes * 43 / 64;
259 unsigned int code_len = code_bytes;
263 printk(KERN_EMERG "Stack:\n");
264 show_stack_log_lvl(NULL, regs, (unsigned long *)sp,
265 regs->bp, KERN_EMERG);
267 printk(KERN_EMERG "Code: ");
269 ip = (u8 *)regs->ip - code_prologue;
270 if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) {
271 /* try starting at IP */
273 code_len = code_len - code_prologue + 1;
275 for (i = 0; i < code_len; i++, ip++) {
276 if (ip < (u8 *)PAGE_OFFSET ||
277 probe_kernel_address(ip, c)) {
278 printk(" Bad RIP value.");
281 if (ip == (u8 *)regs->ip)
282 printk("<%02x> ", c);
290 int is_valid_bugaddr(unsigned long ip)
294 if (__copy_from_user(&ud2, (const void __user *) ip, sizeof(ud2)))
297 return ud2 == 0x0b0f;