1 #include <linux/export.h>
2 #include <linux/sched.h>
3 #include <linux/stacktrace.h>
5 #include <asm/stacktrace.h>
8 #if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
10 * Unwind the current stack frame and store the new register values in the
11 * structure passed as argument. Unwinding is equivalent to a function return,
12 * hence the new PC value rather than LR should be used for backtrace.
14 * With framepointer enabled, a simple function prologue looks like this:
16 * stmdb sp!, {fp, ip, lr, pc}
19 * A simple function epilogue looks like this:
20 * ldm sp, {fp, sp, pc}
22 * Note that with framepointer enabled, even the leaf functions have the same
23 * prologue and epilogue, therefore we can ignore the LR value in this case.
25 int notrace
unwind_frame(struct stackframe
*frame
)
27 unsigned long high
, low
;
28 unsigned long fp
= frame
->fp
;
30 /* only go to a higher address on the stack */
32 high
= ALIGN(low
, THREAD_SIZE
);
34 /* check current frame pointer is within bounds */
35 if (fp
< low
+ 12 || fp
> high
- 4)
38 /* restore the registers from the stack frame */
39 frame
->fp
= *(unsigned long *)(fp
- 12);
40 frame
->sp
= *(unsigned long *)(fp
- 8);
41 frame
->pc
= *(unsigned long *)(fp
- 4);
47 void notrace
walk_stackframe(struct stackframe
*frame
,
48 int (*fn
)(struct stackframe
*, void *), void *data
)
55 ret
= unwind_frame(frame
);
60 EXPORT_SYMBOL(walk_stackframe
);
62 #ifdef CONFIG_STACKTRACE
63 struct stack_trace_data
{
64 struct stack_trace
*trace
;
65 unsigned long last_pc
;
66 unsigned int no_sched_functions
;
70 static int save_trace(struct stackframe
*frame
, void *d
)
72 struct stack_trace_data
*data
= d
;
73 struct stack_trace
*trace
= data
->trace
;
75 unsigned long addr
= frame
->pc
;
77 if (data
->no_sched_functions
&& in_sched_functions(addr
))
84 trace
->entries
[trace
->nr_entries
++] = addr
;
86 if (trace
->nr_entries
>= trace
->max_entries
)
90 * in_exception_text() is designed to test if the PC is one of
91 * the functions which has an exception stack above it, but
92 * unfortunately what is in frame->pc is the return LR value,
93 * not the saved PC value. So, we need to track the previous
94 * frame PC value when doing this.
97 data
->last_pc
= frame
->pc
;
98 if (!in_exception_text(addr
))
101 regs
= (struct pt_regs
*)frame
->sp
;
103 trace
->entries
[trace
->nr_entries
++] = regs
->ARM_pc
;
105 return trace
->nr_entries
>= trace
->max_entries
;
108 /* This must be noinline to so that our skip calculation works correctly */
109 static noinline
void __save_stack_trace(struct task_struct
*tsk
,
110 struct stack_trace
*trace
, unsigned int nosched
)
112 struct stack_trace_data data
;
113 struct stackframe frame
;
116 data
.last_pc
= ULONG_MAX
;
117 data
.skip
= trace
->skip
;
118 data
.no_sched_functions
= nosched
;
120 if (tsk
!= current
) {
123 * What guarantees do we have here that 'tsk' is not
124 * running on another CPU? For now, ignore it as we
125 * can't guarantee we won't explode.
127 if (trace
->nr_entries
< trace
->max_entries
)
128 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
131 frame
.fp
= thread_saved_fp(tsk
);
132 frame
.sp
= thread_saved_sp(tsk
);
133 frame
.lr
= 0; /* recovered from the stack */
134 frame
.pc
= thread_saved_pc(tsk
);
137 /* We don't want this function nor the caller */
139 frame
.fp
= (unsigned long)__builtin_frame_address(0);
140 frame
.sp
= current_stack_pointer
;
141 frame
.lr
= (unsigned long)__builtin_return_address(0);
142 frame
.pc
= (unsigned long)__save_stack_trace
;
145 walk_stackframe(&frame
, save_trace
, &data
);
146 if (trace
->nr_entries
< trace
->max_entries
)
147 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
150 void save_stack_trace_regs(struct pt_regs
*regs
, struct stack_trace
*trace
)
152 struct stack_trace_data data
;
153 struct stackframe frame
;
156 data
.skip
= trace
->skip
;
157 data
.no_sched_functions
= 0;
159 frame
.fp
= regs
->ARM_fp
;
160 frame
.sp
= regs
->ARM_sp
;
161 frame
.lr
= regs
->ARM_lr
;
162 frame
.pc
= regs
->ARM_pc
;
164 walk_stackframe(&frame
, save_trace
, &data
);
165 if (trace
->nr_entries
< trace
->max_entries
)
166 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
169 void save_stack_trace_tsk(struct task_struct
*tsk
, struct stack_trace
*trace
)
171 __save_stack_trace(tsk
, trace
, 1);
174 void save_stack_trace(struct stack_trace
*trace
)
176 __save_stack_trace(current
, trace
, 0);
178 EXPORT_SYMBOL_GPL(save_stack_trace
);