Linux 4.9.243
[linux/fpc-iii.git] / arch / x86 / kernel / dumpstack_64.c
blob36cf1a49822746da21d2950c9324c1669555e3d4
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/hardirq.h>
9 #include <linux/kdebug.h>
10 #include <linux/export.h>
11 #include <linux/ptrace.h>
12 #include <linux/kexec.h>
13 #include <linux/sysfs.h>
14 #include <linux/bug.h>
15 #include <linux/nmi.h>
17 #include <asm/stacktrace.h>
19 static char *exception_stack_names[N_EXCEPTION_STACKS] = {
20 [ DOUBLEFAULT_STACK-1 ] = "#DF",
21 [ NMI_STACK-1 ] = "NMI",
22 [ DEBUG_STACK-1 ] = "#DB",
23 [ MCE_STACK-1 ] = "#MC",
26 static unsigned long exception_stack_sizes[N_EXCEPTION_STACKS] = {
27 [0 ... N_EXCEPTION_STACKS - 1] = EXCEPTION_STKSZ,
28 [DEBUG_STACK - 1] = DEBUG_STKSZ
31 void stack_type_str(enum stack_type type, const char **begin, const char **end)
33 BUILD_BUG_ON(N_EXCEPTION_STACKS != 4);
35 switch (type) {
36 case STACK_TYPE_IRQ:
37 *begin = "IRQ";
38 *end = "EOI";
39 break;
40 case STACK_TYPE_EXCEPTION ... STACK_TYPE_EXCEPTION_LAST:
41 *begin = exception_stack_names[type - STACK_TYPE_EXCEPTION];
42 *end = "EOE";
43 break;
44 default:
45 *begin = NULL;
46 *end = NULL;
50 static bool in_exception_stack(unsigned long *stack, struct stack_info *info)
52 unsigned long *begin, *end;
53 struct pt_regs *regs;
54 unsigned k;
56 BUILD_BUG_ON(N_EXCEPTION_STACKS != 4);
58 for (k = 0; k < N_EXCEPTION_STACKS; k++) {
59 end = (unsigned long *)raw_cpu_ptr(&orig_ist)->ist[k];
60 begin = end - (exception_stack_sizes[k] / sizeof(long));
61 regs = (struct pt_regs *)end - 1;
63 if (stack < begin || stack >= end)
64 continue;
66 info->type = STACK_TYPE_EXCEPTION + k;
67 info->begin = begin;
68 info->end = end;
69 info->next_sp = (unsigned long *)regs->sp;
71 return true;
74 return false;
77 static bool in_irq_stack(unsigned long *stack, struct stack_info *info)
79 unsigned long *end = (unsigned long *)this_cpu_read(irq_stack_ptr);
80 unsigned long *begin = end - (IRQ_STACK_SIZE / sizeof(long));
83 * This is a software stack, so 'end' can be a valid stack pointer.
84 * It just means the stack is empty.
86 if (stack < begin || stack > end)
87 return false;
89 info->type = STACK_TYPE_IRQ;
90 info->begin = begin;
91 info->end = end;
94 * The next stack pointer is the first thing pushed by the entry code
95 * after switching to the irq stack.
97 info->next_sp = (unsigned long *)*(end - 1);
99 return true;
102 int get_stack_info(unsigned long *stack, struct task_struct *task,
103 struct stack_info *info, unsigned long *visit_mask)
105 if (!stack)
106 goto unknown;
108 task = task ? : current;
110 if (in_task_stack(stack, task, info))
111 goto recursion_check;
113 if (task != current)
114 goto unknown;
116 if (in_exception_stack(stack, info))
117 goto recursion_check;
119 if (in_irq_stack(stack, info))
120 goto recursion_check;
122 goto unknown;
124 recursion_check:
126 * Make sure we don't iterate through any given stack more than once.
127 * If it comes up a second time then there's something wrong going on:
128 * just break out and report an unknown stack type.
130 if (visit_mask) {
131 if (*visit_mask & (1UL << info->type))
132 goto unknown;
133 *visit_mask |= 1UL << info->type;
136 return 0;
138 unknown:
139 info->type = STACK_TYPE_UNKNOWN;
140 return -EINVAL;
143 void show_stack_log_lvl(struct task_struct *task, struct pt_regs *regs,
144 unsigned long *sp, char *log_lvl)
146 unsigned long *irq_stack_end;
147 unsigned long *irq_stack;
148 unsigned long *stack;
149 int i;
151 if (!try_get_task_stack(task))
152 return;
154 irq_stack_end = (unsigned long *)this_cpu_read(irq_stack_ptr);
155 irq_stack = irq_stack_end - (IRQ_STACK_SIZE / sizeof(long));
157 sp = sp ? : get_stack_pointer(task, regs);
159 stack = sp;
160 for (i = 0; i < kstack_depth_to_print; i++) {
161 unsigned long word;
163 if (stack >= irq_stack && stack <= irq_stack_end) {
164 if (stack == irq_stack_end) {
165 stack = (unsigned long *) (irq_stack_end[-1]);
166 pr_cont(" <EOI> ");
168 } else {
169 if (kstack_end(stack))
170 break;
173 if (probe_kernel_address(stack, word))
174 break;
176 if ((i % STACKSLOTS_PER_LINE) == 0) {
177 if (i != 0)
178 pr_cont("\n");
179 printk("%s %016lx", log_lvl, word);
180 } else
181 pr_cont(" %016lx", word);
183 stack++;
184 touch_nmi_watchdog();
187 pr_cont("\n");
188 show_trace_log_lvl(task, regs, sp, log_lvl);
190 put_task_stack(task);
193 void show_regs(struct pt_regs *regs)
195 int i;
197 show_regs_print_info(KERN_DEFAULT);
198 __show_regs(regs, 1);
201 * When in-kernel, we also print out the stack and code at the
202 * time of the fault..
204 if (!user_mode(regs)) {
205 unsigned int code_prologue = code_bytes * 43 / 64;
206 unsigned int code_len = code_bytes;
207 unsigned char c;
208 u8 *ip;
210 printk(KERN_DEFAULT "Stack:\n");
211 show_stack_log_lvl(current, regs, NULL, KERN_DEFAULT);
213 printk(KERN_DEFAULT "Code: ");
215 ip = (u8 *)regs->ip - code_prologue;
216 if (ip < (u8 *)PAGE_OFFSET || probe_kernel_address(ip, c)) {
217 /* try starting at IP */
218 ip = (u8 *)regs->ip;
219 code_len = code_len - code_prologue + 1;
221 for (i = 0; i < code_len; i++, ip++) {
222 if (ip < (u8 *)PAGE_OFFSET ||
223 probe_kernel_address(ip, c)) {
224 pr_cont(" Bad RIP value.");
225 break;
227 if (ip == (u8 *)regs->ip)
228 pr_cont("<%02x> ", c);
229 else
230 pr_cont("%02x ", c);
233 pr_cont("\n");
236 int is_valid_bugaddr(unsigned long ip)
238 unsigned short ud2;
240 if (__copy_from_user(&ud2, (const void __user *) ip, sizeof(ud2)))
241 return 0;
243 return ud2 == 0x0b0f;