1 // SPDX-License-Identifier: GPL-2.0-only
2 #include <linux/sched.h>
3 #include <linux/ftrace.h>
4 #include <asm/ptrace.h>
5 #include <asm/bitops.h>
6 #include <asm/stacktrace.h>
7 #include <asm/unwind.h>
9 unsigned long unwind_get_return_address(struct unwind_state
*state
)
13 if (unwind_done(state
))
16 addr
= READ_ONCE_NOCHECK(*state
->sp
);
18 return ftrace_graph_ret_addr(state
->task
, &state
->graph_idx
,
21 EXPORT_SYMBOL_GPL(unwind_get_return_address
);
23 unsigned long *unwind_get_return_address_ptr(struct unwind_state
*state
)
28 bool unwind_next_frame(struct unwind_state
*state
)
30 struct stack_info
*info
= &state
->stack_info
;
32 if (unwind_done(state
))
36 for (state
->sp
++; state
->sp
< info
->end
; state
->sp
++) {
37 unsigned long addr
= READ_ONCE_NOCHECK(*state
->sp
);
39 if (__kernel_text_address(addr
))
43 state
->sp
= PTR_ALIGN(info
->next_sp
, sizeof(long));
45 } while (!get_stack_info(state
->sp
, state
->task
, info
,
50 EXPORT_SYMBOL_GPL(unwind_next_frame
);
52 void __unwind_start(struct unwind_state
*state
, struct task_struct
*task
,
53 struct pt_regs
*regs
, unsigned long *first_frame
)
55 memset(state
, 0, sizeof(*state
));
58 state
->sp
= PTR_ALIGN(first_frame
, sizeof(long));
60 get_stack_info(first_frame
, state
->task
, &state
->stack_info
,
64 * The caller can provide the address of the first frame directly
65 * (first_frame) or indirectly (regs->sp) to indicate which stack frame
66 * to start unwinding at. Skip ahead until we reach it.
68 if (!unwind_done(state
) &&
69 (!on_stack(&state
->stack_info
, first_frame
, sizeof(long)) ||
70 !__kernel_text_address(*first_frame
)))
71 unwind_next_frame(state
);
73 EXPORT_SYMBOL_GPL(__unwind_start
);