1 // SPDX-License-Identifier: GPL-2.0
3 * Stack trace management functions
5 * Copyright IBM Corp. 2006
6 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
9 #include <linux/stacktrace.h>
10 #include <asm/stacktrace.h>
11 #include <asm/unwind.h>
12 #include <asm/kprobes.h>
14 void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
15 struct task_struct *task, struct pt_regs *regs)
17 struct unwind_state state;
20 unwind_for_each_frame(&state, task, regs, 0) {
21 addr = unwind_get_return_address(&state);
22 if (!addr || !consume_entry(cookie, addr))
27 int arch_stack_walk_reliable(stack_trace_consume_fn consume_entry,
28 void *cookie, struct task_struct *task)
30 struct unwind_state state;
33 unwind_for_each_frame(&state, task, NULL, 0) {
34 if (state.stack_info.type != STACK_TYPE_TASK)
40 addr = unwind_get_return_address(&state);
46 * Mark stacktraces with kretprobed functions on them
49 if (state.ip == (unsigned long)kretprobe_trampoline)
53 if (!consume_entry(cookie, addr))
57 /* Check for stack corruption */
58 if (unwind_error(&state))