1 // SPDX-License-Identifier: GPL-2.0
3 * Stack trace management functions
5 * Copyright IBM Corp. 2006
8 #include <linux/stacktrace.h>
9 #include <linux/uaccess.h>
10 #include <linux/compat.h>
11 #include <asm/stacktrace.h>
12 #include <asm/unwind.h>
13 #include <asm/kprobes.h>
14 #include <asm/ptrace.h>
16 void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
17 struct task_struct *task, struct pt_regs *regs)
19 struct unwind_state state;
22 unwind_for_each_frame(&state, task, regs, 0) {
23 addr = unwind_get_return_address(&state);
24 if (!addr || !consume_entry(cookie, addr))
29 int arch_stack_walk_reliable(stack_trace_consume_fn consume_entry,
30 void *cookie, struct task_struct *task)
32 struct unwind_state state;
35 unwind_for_each_frame(&state, task, NULL, 0) {
36 if (state.stack_info.type != STACK_TYPE_TASK)
42 addr = unwind_get_return_address(&state);
48 * Mark stacktraces with krethook functions on them
51 if (state.ip == (unsigned long)arch_rethook_trampoline)
55 if (!consume_entry(cookie, addr))
59 /* Check for stack corruption */
60 if (unwind_error(&state))
65 void arch_stack_walk_user(stack_trace_consume_fn consume_entry, void *cookie,
66 const struct pt_regs *regs)
68 struct stack_frame_user __user *sf;
74 if (!consume_entry(cookie, instruction_pointer(regs)))
76 sf = (void __user *)user_stack_pointer(regs);
79 if (__get_user(sp, &sf->back_chain))
81 if (__get_user(ip, &sf->gprs[8]))
85 * If the instruction address is invalid, and this
86 * is the first stack frame, assume r14 has not
87 * been written to the stack yet. Otherwise exit.
89 if (first && !(regs->gprs[14] & 0x1))
94 if (!consume_entry(cookie, ip))
96 /* Sanity check: ABI requires SP to be aligned 8 bytes. */
99 sf = (void __user *)sp;