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"
23 static char x86_stack_ids
[][8] = {
24 [DEBUG_STACK
- 1] = "#DB",
25 [NMI_STACK
- 1] = "NMI",
26 [DOUBLEFAULT_STACK
- 1] = "#DF",
27 [STACKFAULT_STACK
- 1] = "#SS",
28 [MCE_STACK
- 1] = "#MC",
29 #if DEBUG_STKSZ > EXCEPTION_STKSZ
30 [N_EXCEPTION_STACKS
...
31 N_EXCEPTION_STACKS
+ DEBUG_STKSZ
/ EXCEPTION_STKSZ
- 2] = "#DB[?]"
35 int x86_is_stack_id(int id
, char *name
)
37 return x86_stack_ids
[id
- 1] == name
;
40 static unsigned long *in_exception_stack(unsigned cpu
, unsigned long stack
,
41 unsigned *usedp
, char **idp
)
46 * Iterate over all exception stacks, and figure out whether
47 * 'stack' is in one of them:
49 for (k
= 0; k
< N_EXCEPTION_STACKS
; k
++) {
50 unsigned long end
= per_cpu(orig_ist
, cpu
).ist
[k
];
52 * Is 'stack' above this exception frame's end?
53 * If yes then skip to the next frame.
58 * Is 'stack' above this exception frame's start address?
59 * If yes then we found the right frame.
61 if (stack
>= end
- EXCEPTION_STKSZ
) {
63 * Make sure we only iterate through an exception
64 * stack once. If it comes up for the second time
65 * then there's something wrong going on - just
66 * break out and return NULL:
68 if (*usedp
& (1U << k
))
71 *idp
= x86_stack_ids
[k
];
72 return (unsigned long *)end
;
75 * If this is a debug stack, and if it has a larger size than
76 * the usual exception stacks, then 'stack' might still
77 * be within the lower portion of the debug stack:
79 #if DEBUG_STKSZ > EXCEPTION_STKSZ
80 if (k
== DEBUG_STACK
- 1 && stack
>= end
- DEBUG_STKSZ
) {
81 unsigned j
= N_EXCEPTION_STACKS
- 1;
84 * Black magic. A large debug stack is composed of
85 * multiple exception stack entries, which we
86 * iterate through now. Dont look:
90 end
-= EXCEPTION_STKSZ
;
91 x86_stack_ids
[j
][4] = '1' +
92 (j
- N_EXCEPTION_STACKS
);
93 } while (stack
< end
- EXCEPTION_STKSZ
);
94 if (*usedp
& (1U << j
))
97 *idp
= x86_stack_ids
[j
];
98 return (unsigned long *)end
;
106 * x86-64 can have up to three kernel stacks:
109 * severe exception (double fault, nmi, stack fault, debug, mce) hardware stack
112 void dump_trace(struct task_struct
*task
, struct pt_regs
*regs
,
113 unsigned long *stack
, unsigned long bp
,
114 const struct stacktrace_ops
*ops
, void *data
)
116 const unsigned cpu
= get_cpu();
117 unsigned long *irq_stack_end
=
118 (unsigned long *)per_cpu(irq_stack_ptr
, cpu
);
120 struct thread_info
*tinfo
;
129 if (task
&& task
!= current
)
130 stack
= (unsigned long *)task
->thread
.sp
;
133 #ifdef CONFIG_FRAME_POINTER
135 if (task
== current
) {
136 /* Grab bp right from our regs */
139 /* bp is the last reg pushed by switch_to */
140 bp
= *(unsigned long *) task
->thread
.sp
;
146 * Print function call entries in all stacks, starting at the
147 * current stack address. If the stacks consist of nested
150 tinfo
= task_thread_info(task
);
153 unsigned long *estack_end
;
154 estack_end
= in_exception_stack(cpu
, (unsigned long)stack
,
158 if (ops
->stack(data
, id
) < 0)
161 bp
= print_context_stack(tinfo
, stack
, bp
, ops
,
162 data
, estack_end
, &graph
);
163 ops
->stack(data
, "<EOE>");
165 * We link to the next stack via the
166 * second-to-last pointer (index -2 to end) in the
169 stack
= (unsigned long *) estack_end
[-2];
173 unsigned long *irq_stack
;
174 irq_stack
= irq_stack_end
-
175 (IRQ_STACK_SIZE
- 64) / sizeof(*irq_stack
);
177 if (stack
>= irq_stack
&& stack
< irq_stack_end
) {
178 if (ops
->stack(data
, "IRQ") < 0)
180 bp
= print_context_stack(tinfo
, stack
, bp
,
181 ops
, data
, irq_stack_end
, &graph
);
183 * We link to the next stack (which would be
184 * the process stack normally) the last
185 * pointer (index -1 to end) in the IRQ stack:
187 stack
= (unsigned long *) (irq_stack_end
[-1]);
188 irq_stack_end
= NULL
;
189 ops
->stack(data
, "EOI");
197 * This handles the process stack:
199 bp
= print_context_stack(tinfo
, stack
, bp
, ops
, data
, NULL
, &graph
);
202 EXPORT_SYMBOL(dump_trace
);
205 show_stack_log_lvl(struct task_struct
*task
, struct pt_regs
*regs
,
206 unsigned long *sp
, unsigned long bp
, char *log_lvl
)
208 unsigned long *stack
;
210 const int cpu
= smp_processor_id();
211 unsigned long *irq_stack_end
=
212 (unsigned long *)(per_cpu(irq_stack_ptr
, cpu
));
213 unsigned long *irq_stack
=
214 (unsigned long *)(per_cpu(irq_stack_ptr
, cpu
) - IRQ_STACK_SIZE
);
217 * debugging aid: "show_stack(NULL, NULL);" prints the
218 * back trace for this cpu.
223 sp
= (unsigned long *)task
->thread
.sp
;
225 sp
= (unsigned long *)&sp
;
229 for (i
= 0; i
< kstack_depth_to_print
; i
++) {
230 if (stack
>= irq_stack
&& stack
<= irq_stack_end
) {
231 if (stack
== irq_stack_end
) {
232 stack
= (unsigned long *) (irq_stack_end
[-1]);
236 if (((long) stack
& (THREAD_SIZE
-1)) == 0)
239 if (i
&& ((i
% STACKSLOTS_PER_LINE
) == 0))
240 printk("\n%s", log_lvl
);
241 printk(" %016lx", *stack
++);
242 touch_nmi_watchdog();
245 show_trace_log_lvl(task
, regs
, sp
, bp
, log_lvl
);
248 void show_registers(struct pt_regs
*regs
)
252 const int cpu
= smp_processor_id();
253 struct task_struct
*cur
= current
;
256 printk("CPU %d ", cpu
);
257 __show_regs(regs
, 1);
258 printk("Process %s (pid: %d, threadinfo %p, task %p)\n",
259 cur
->comm
, cur
->pid
, task_thread_info(cur
), cur
);
262 * When in-kernel, we also print out the stack and code at the
263 * time of the fault..
265 if (!user_mode(regs
)) {
266 unsigned int code_prologue
= code_bytes
* 43 / 64;
267 unsigned int code_len
= code_bytes
;
271 printk(KERN_EMERG
"Stack:\n");
272 show_stack_log_lvl(NULL
, regs
, (unsigned long *)sp
,
273 regs
->bp
, KERN_EMERG
);
275 printk(KERN_EMERG
"Code: ");
277 ip
= (u8
*)regs
->ip
- code_prologue
;
278 if (ip
< (u8
*)PAGE_OFFSET
|| probe_kernel_address(ip
, c
)) {
279 /* try starting at IP */
281 code_len
= code_len
- code_prologue
+ 1;
283 for (i
= 0; i
< code_len
; i
++, ip
++) {
284 if (ip
< (u8
*)PAGE_OFFSET
||
285 probe_kernel_address(ip
, c
)) {
286 printk(" Bad RIP value.");
289 if (ip
== (u8
*)regs
->ip
)
290 printk("<%02x> ", c
);
298 int is_valid_bugaddr(unsigned long ip
)
302 if (__copy_from_user(&ud2
, (const void __user
*) ip
, sizeof(ud2
)))
305 return ud2
== 0x0b0f;