1 #include <linux/export.h>
2 #include <linux/sched.h>
3 #include <linux/sched/debug.h>
4 #include <linux/stacktrace.h>
6 #include <asm/sections.h>
7 #include <asm/stacktrace.h>
10 #if defined(CONFIG_FRAME_POINTER) && !defined(CONFIG_ARM_UNWIND)
12 * Unwind the current stack frame and store the new register values in the
13 * structure passed as argument. Unwinding is equivalent to a function return,
14 * hence the new PC value rather than LR should be used for backtrace.
16 * With framepointer enabled, a simple function prologue looks like this:
18 * stmdb sp!, {fp, ip, lr, pc}
21 * A simple function epilogue looks like this:
22 * ldm sp, {fp, sp, pc}
24 * Note that with framepointer enabled, even the leaf functions have the same
25 * prologue and epilogue, therefore we can ignore the LR value in this case.
27 int notrace
unwind_frame(struct stackframe
*frame
)
29 unsigned long high
, low
;
30 unsigned long fp
= frame
->fp
;
32 /* only go to a higher address on the stack */
34 high
= ALIGN(low
, THREAD_SIZE
);
36 /* check current frame pointer is within bounds */
37 if (fp
< low
+ 12 || fp
> high
- 4)
40 /* restore the registers from the stack frame */
41 frame
->fp
= *(unsigned long *)(fp
- 12);
42 frame
->sp
= *(unsigned long *)(fp
- 8);
43 frame
->pc
= *(unsigned long *)(fp
- 4);
49 void notrace
walk_stackframe(struct stackframe
*frame
,
50 int (*fn
)(struct stackframe
*, void *), void *data
)
57 ret
= unwind_frame(frame
);
62 EXPORT_SYMBOL(walk_stackframe
);
64 #ifdef CONFIG_STACKTRACE
65 struct stack_trace_data
{
66 struct stack_trace
*trace
;
67 unsigned int no_sched_functions
;
71 static int save_trace(struct stackframe
*frame
, void *d
)
73 struct stack_trace_data
*data
= d
;
74 struct stack_trace
*trace
= data
->trace
;
76 unsigned long addr
= frame
->pc
;
78 if (data
->no_sched_functions
&& in_sched_functions(addr
))
85 trace
->entries
[trace
->nr_entries
++] = addr
;
87 if (trace
->nr_entries
>= trace
->max_entries
)
90 if (!in_entry_text(frame
->pc
))
93 regs
= (struct pt_regs
*)frame
->sp
;
95 trace
->entries
[trace
->nr_entries
++] = regs
->ARM_pc
;
97 return trace
->nr_entries
>= trace
->max_entries
;
100 /* This must be noinline to so that our skip calculation works correctly */
101 static noinline
void __save_stack_trace(struct task_struct
*tsk
,
102 struct stack_trace
*trace
, unsigned int nosched
)
104 struct stack_trace_data data
;
105 struct stackframe frame
;
108 data
.skip
= trace
->skip
;
109 data
.no_sched_functions
= nosched
;
111 if (tsk
!= current
) {
114 * What guarantees do we have here that 'tsk' is not
115 * running on another CPU? For now, ignore it as we
116 * can't guarantee we won't explode.
118 if (trace
->nr_entries
< trace
->max_entries
)
119 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
122 frame
.fp
= thread_saved_fp(tsk
);
123 frame
.sp
= thread_saved_sp(tsk
);
124 frame
.lr
= 0; /* recovered from the stack */
125 frame
.pc
= thread_saved_pc(tsk
);
128 /* We don't want this function nor the caller */
130 frame
.fp
= (unsigned long)__builtin_frame_address(0);
131 frame
.sp
= current_stack_pointer
;
132 frame
.lr
= (unsigned long)__builtin_return_address(0);
133 frame
.pc
= (unsigned long)__save_stack_trace
;
136 walk_stackframe(&frame
, save_trace
, &data
);
137 if (trace
->nr_entries
< trace
->max_entries
)
138 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
141 void save_stack_trace_regs(struct pt_regs
*regs
, struct stack_trace
*trace
)
143 struct stack_trace_data data
;
144 struct stackframe frame
;
147 data
.skip
= trace
->skip
;
148 data
.no_sched_functions
= 0;
150 frame
.fp
= regs
->ARM_fp
;
151 frame
.sp
= regs
->ARM_sp
;
152 frame
.lr
= regs
->ARM_lr
;
153 frame
.pc
= regs
->ARM_pc
;
155 walk_stackframe(&frame
, save_trace
, &data
);
156 if (trace
->nr_entries
< trace
->max_entries
)
157 trace
->entries
[trace
->nr_entries
++] = ULONG_MAX
;
160 void save_stack_trace_tsk(struct task_struct
*tsk
, struct stack_trace
*trace
)
162 __save_stack_trace(tsk
, trace
, 1);
164 EXPORT_SYMBOL(save_stack_trace_tsk
);
166 void save_stack_trace(struct stack_trace
*trace
)
168 __save_stack_trace(current
, trace
, 0);
170 EXPORT_SYMBOL_GPL(save_stack_trace
);