blob: e0ed4c7abb626e13f8f87d735b40576f6b44bb8e [file] [log] [blame]
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +02001/*
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>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +02008#include <linux/hardirq.h>
9#include <linux/kdebug.h>
10#include <linux/module.h>
11#include <linux/ptrace.h>
12#include <linux/kexec.h>
Ingo Molnarb8030902009-11-26 08:17:31 +010013#include <linux/sysfs.h>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020014#include <linux/bug.h>
15#include <linux/nmi.h>
16
17#include <asm/stacktrace.h>
18
Neil Horman878719e2008-10-23 10:40:06 -040019#include "dumpstack.h"
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020020
Frederic Weisbecker0406ca62009-07-01 21:02:09 +020021/* Just a stub for now */
22int x86_is_stack_id(int id, char *name)
23{
24 return 0;
25}
26
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020027void dump_trace(struct task_struct *task, struct pt_regs *regs,
28 unsigned long *stack, unsigned long bp,
29 const struct stacktrace_ops *ops, void *data)
30{
Steven Rostedt7ee991f2008-12-02 23:50:04 -050031 int graph = 0;
32
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020033 if (!task)
34 task = current;
35
36 if (!stack) {
37 unsigned long dummy;
Ingo Molnarb8030902009-11-26 08:17:31 +010038
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020039 stack = &dummy;
Alexander van Heukelum8a541662008-10-04 23:12:46 +020040 if (task && task != current)
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020041 stack = (unsigned long *)task->thread.sp;
42 }
43
44#ifdef CONFIG_FRAME_POINTER
45 if (!bp) {
46 if (task == current) {
47 /* Grab bp right from our regs */
Alexander van Heukelum8a541662008-10-04 23:12:46 +020048 get_bp(bp);
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020049 } else {
50 /* bp is the last reg pushed by switch_to */
51 bp = *(unsigned long *) task->thread.sp;
52 }
53 }
54#endif
55
56 for (;;) {
57 struct thread_info *context;
58
59 context = (struct thread_info *)
60 ((unsigned long)stack & (~(THREAD_SIZE - 1)));
Ingo Molnarb8030902009-11-26 08:17:31 +010061 bp = print_context_stack(context, stack, bp, ops, data, NULL, &graph);
Alexander van Heukelum2ac53722008-10-04 23:12:43 +020062
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020063 stack = (unsigned long *)context->previous_esp;
64 if (!stack)
65 break;
Alexander van Heukelum2ac53722008-10-04 23:12:43 +020066 if (ops->stack(data, "IRQ") < 0)
67 break;
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020068 touch_nmi_watchdog();
69 }
70}
71EXPORT_SYMBOL(dump_trace);
72
Neil Horman878719e2008-10-23 10:40:06 -040073void
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020074show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
Ingo Molnarb8030902009-11-26 08:17:31 +010075 unsigned long *sp, unsigned long bp, char *log_lvl)
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020076{
77 unsigned long *stack;
78 int i;
79
80 if (sp == NULL) {
81 if (task)
82 sp = (unsigned long *)task->thread.sp;
83 else
84 sp = (unsigned long *)&sp;
85 }
86
87 stack = sp;
88 for (i = 0; i < kstack_depth_to_print; i++) {
89 if (kstack_end(stack))
90 break;
Alexander van Heukelum8a541662008-10-04 23:12:46 +020091 if (i && ((i % STACKSLOTS_PER_LINE) == 0))
Alexander van Heukelumca0a8162008-10-04 23:12:44 +020092 printk("\n%s", log_lvl);
93 printk(" %08lx", *stack++);
94 touch_nmi_watchdog();
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020095 }
Alexander van Heukelumca0a8162008-10-04 23:12:44 +020096 printk("\n");
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020097 show_trace_log_lvl(task, regs, sp, bp, log_lvl);
98}
99
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +0200100
101void show_registers(struct pt_regs *regs)
102{
103 int i;
104
105 print_modules();
106 __show_regs(regs, 0);
107
Alexander van Heukelumca0a8162008-10-04 23:12:44 +0200108 printk(KERN_EMERG "Process %.*s (pid: %d, ti=%p task=%p task.ti=%p)\n",
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +0200109 TASK_COMM_LEN, current->comm, task_pid_nr(current),
110 current_thread_info(), current, task_thread_info(current));
111 /*
112 * When in-kernel, we also print out the stack and code at the
113 * time of the fault..
114 */
115 if (!user_mode_vm(regs)) {
116 unsigned int code_prologue = code_bytes * 43 / 64;
117 unsigned int code_len = code_bytes;
118 unsigned char c;
119 u8 *ip;
120
Alexander van Heukelumca0a8162008-10-04 23:12:44 +0200121 printk(KERN_EMERG "Stack:\n");
122 show_stack_log_lvl(NULL, regs, &regs->sp,
123 0, KERN_EMERG);
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +0200124
125 printk(KERN_EMERG "Code: ");
126
127 ip = (u8 *)regs->ip - code_prologue;
128 if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) {
Alexander van Heukelum8a541662008-10-04 23:12:46 +0200129 /* try starting at IP */
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +0200130 ip = (u8 *)regs->ip;
131 code_len = code_len - code_prologue + 1;
132 }
133 for (i = 0; i < code_len; i++, ip++) {
134 if (ip < (u8 *)PAGE_OFFSET ||
135 probe_kernel_address(ip, c)) {
136 printk(" Bad EIP value.");
137 break;
138 }
139 if (ip == (u8 *)regs->ip)
140 printk("<%02x> ", c);
141 else
142 printk("%02x ", c);
143 }
144 }
145 printk("\n");
146}
147
148int is_valid_bugaddr(unsigned long ip)
149{
150 unsigned short ud2;
151
152 if (ip < PAGE_OFFSET)
153 return 0;
154 if (probe_kernel_address((unsigned short *)ip, ud2))
155 return 0;
156
157 return ud2 == 0x0b0f;
158}