mm: fix exec activate_mm vs TLB shootdown and lazy tlb switching race
[linux/fpc-iii.git] / arch / arc / kernel / stacktrace.c
blobb007c06efbea91c84ea36642b6aceed3772e98c6
1 /*
2 * stacktrace.c : stacktracing APIs needed by rest of kernel
3 * (wrappers over ARC dwarf based unwinder)
5 * Copyright (C) 2004, 2007-2010, 2011-2012 Synopsys, Inc. (www.synopsys.com)
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
11 * vineetg: aug 2009
12 * -Implemented CONFIG_STACKTRACE APIs, primarily save_stack_trace_tsk( )
13 * for displaying task's kernel mode call stack in /proc/<pid>/stack
14 * -Iterator based approach to have single copy of unwinding core and APIs
15 * needing unwinding, implement the logic in iterator regarding:
16 * = which frame onwards to start capture
17 * = which frame to stop capturing (wchan)
18 * = specifics of data structs where trace is saved(CONFIG_STACKTRACE etc)
20 * vineetg: March 2009
21 * -Implemented correct versions of thread_saved_pc() and get_wchan()
23 * rajeshwarr: 2008
24 * -Initial implementation
27 #include <linux/ptrace.h>
28 #include <linux/export.h>
29 #include <linux/stacktrace.h>
30 #include <linux/kallsyms.h>
31 #include <linux/sched/debug.h>
33 #include <asm/arcregs.h>
34 #include <asm/unwind.h>
35 #include <asm/switch_to.h>
37 /*-------------------------------------------------------------------------
38 * Unwinder Iterator
39 *-------------------------------------------------------------------------
42 #ifdef CONFIG_ARC_DW2_UNWIND
44 static void seed_unwind_frame_info(struct task_struct *tsk,
45 struct pt_regs *regs,
46 struct unwind_frame_info *frame_info)
49 * synchronous unwinding (e.g. dump_stack)
50 * - uses current values of SP and friends
52 if (tsk == NULL && regs == NULL) {
53 unsigned long fp, sp, blink, ret;
54 frame_info->task = current;
56 __asm__ __volatile__(
57 "mov %0,r27\n\t"
58 "mov %1,r28\n\t"
59 "mov %2,r31\n\t"
60 "mov %3,r63\n\t"
61 : "=r"(fp), "=r"(sp), "=r"(blink), "=r"(ret)
64 frame_info->regs.r27 = fp;
65 frame_info->regs.r28 = sp;
66 frame_info->regs.r31 = blink;
67 frame_info->regs.r63 = ret;
68 frame_info->call_frame = 0;
69 } else if (regs == NULL) {
71 * Asynchronous unwinding of sleeping task
72 * - Gets SP etc from task's pt_regs (saved bottom of kernel
73 * mode stack of task)
76 frame_info->task = tsk;
78 frame_info->regs.r27 = TSK_K_FP(tsk);
79 frame_info->regs.r28 = TSK_K_ESP(tsk);
80 frame_info->regs.r31 = TSK_K_BLINK(tsk);
81 frame_info->regs.r63 = (unsigned int)__switch_to;
83 /* In the prologue of __switch_to, first FP is saved on stack
84 * and then SP is copied to FP. Dwarf assumes cfa as FP based
85 * but we didn't save FP. The value retrieved above is FP's
86 * state in previous frame.
87 * As a work around for this, we unwind from __switch_to start
88 * and adjust SP accordingly. The other limitation is that
89 * __switch_to macro is dwarf rules are not generated for inline
90 * assembly code
92 frame_info->regs.r27 = 0;
93 frame_info->regs.r28 += 60;
94 frame_info->call_frame = 0;
96 } else {
98 * Asynchronous unwinding of intr/exception
99 * - Just uses the pt_regs passed
101 frame_info->task = tsk;
103 frame_info->regs.r27 = regs->fp;
104 frame_info->regs.r28 = regs->sp;
105 frame_info->regs.r31 = regs->blink;
106 frame_info->regs.r63 = regs->ret;
107 frame_info->call_frame = 0;
111 #endif
113 notrace noinline unsigned int
114 arc_unwind_core(struct task_struct *tsk, struct pt_regs *regs,
115 int (*consumer_fn) (unsigned int, void *), void *arg)
117 #ifdef CONFIG_ARC_DW2_UNWIND
118 int ret = 0, cnt = 0;
119 unsigned int address;
120 struct unwind_frame_info frame_info;
122 seed_unwind_frame_info(tsk, regs, &frame_info);
124 while (1) {
125 address = UNW_PC(&frame_info);
127 if (!address || !__kernel_text_address(address))
128 break;
130 if (consumer_fn(address, arg) == -1)
131 break;
133 ret = arc_unwind(&frame_info);
134 if (ret)
135 break;
137 frame_info.regs.r63 = frame_info.regs.r31;
139 if (cnt++ > 128) {
140 printk("unwinder looping too long, aborting !\n");
141 return 0;
145 return address; /* return the last address it saw */
146 #else
147 /* On ARC, only Dward based unwinder works. fp based backtracing is
148 * not possible (-fno-omit-frame-pointer) because of the way function
149 * prelogue is setup (callee regs saved and then fp set and not other
150 * way around
152 pr_warn_once("CONFIG_ARC_DW2_UNWIND needs to be enabled\n");
153 return 0;
155 #endif
158 /*-------------------------------------------------------------------------
159 * callbacks called by unwinder iterator to implement kernel APIs
161 * The callback can return -1 to force the iterator to stop, which by default
162 * keeps going till the bottom-most frame.
163 *-------------------------------------------------------------------------
166 /* Call-back which plugs into unwinding core to dump the stack in
167 * case of panic/OOPs/BUG etc
169 static int __print_sym(unsigned int address, void *unused)
171 __print_symbol(" %s\n", address);
172 return 0;
175 #ifdef CONFIG_STACKTRACE
177 /* Call-back which plugs into unwinding core to capture the
178 * traces needed by kernel on /proc/<pid>/stack
180 static int __collect_all(unsigned int address, void *arg)
182 struct stack_trace *trace = arg;
184 if (trace->skip > 0)
185 trace->skip--;
186 else
187 trace->entries[trace->nr_entries++] = address;
189 if (trace->nr_entries >= trace->max_entries)
190 return -1;
192 return 0;
195 static int __collect_all_but_sched(unsigned int address, void *arg)
197 struct stack_trace *trace = arg;
199 if (in_sched_functions(address))
200 return 0;
202 if (trace->skip > 0)
203 trace->skip--;
204 else
205 trace->entries[trace->nr_entries++] = address;
207 if (trace->nr_entries >= trace->max_entries)
208 return -1;
210 return 0;
213 #endif
215 static int __get_first_nonsched(unsigned int address, void *unused)
217 if (in_sched_functions(address))
218 return 0;
220 return -1;
223 /*-------------------------------------------------------------------------
224 * APIs expected by various kernel sub-systems
225 *-------------------------------------------------------------------------
228 noinline void show_stacktrace(struct task_struct *tsk, struct pt_regs *regs)
230 pr_info("\nStack Trace:\n");
231 arc_unwind_core(tsk, regs, __print_sym, NULL);
233 EXPORT_SYMBOL(show_stacktrace);
235 /* Expected by sched Code */
236 void show_stack(struct task_struct *tsk, unsigned long *sp)
238 show_stacktrace(tsk, NULL);
241 /* Another API expected by schedular, shows up in "ps" as Wait Channel
242 * Of course just returning schedule( ) would be pointless so unwind until
243 * the function is not in schedular code
245 unsigned int get_wchan(struct task_struct *tsk)
247 return arc_unwind_core(tsk, NULL, __get_first_nonsched, NULL);
250 #ifdef CONFIG_STACKTRACE
253 * API required by CONFIG_STACKTRACE, CONFIG_LATENCYTOP.
254 * A typical use is when /proc/<pid>/stack is queried by userland
256 void save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
258 /* Assumes @tsk is sleeping so unwinds from __switch_to */
259 arc_unwind_core(tsk, NULL, __collect_all_but_sched, trace);
262 void save_stack_trace(struct stack_trace *trace)
264 /* Pass NULL for task so it unwinds the current call frame */
265 arc_unwind_core(NULL, NULL, __collect_all, trace);
267 EXPORT_SYMBOL_GPL(save_stack_trace);
268 #endif