1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2008 ARM Limited
4 * Copyright (C) 2014 Regents of the University of California
7 #include <linux/export.h>
8 #include <linux/kallsyms.h>
9 #include <linux/sched.h>
10 #include <linux/sched/debug.h>
11 #include <linux/sched/task_stack.h>
12 #include <linux/stacktrace.h>
13 #include <linux/ftrace.h>
15 #include <asm/stacktrace.h>
17 register unsigned long sp_in_global __asm__("sp");
19 #ifdef CONFIG_FRAME_POINTER
21 void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
22 bool (*fn)(void *, unsigned long), void *arg)
24 unsigned long fp, sp, pc;
28 fp = frame_pointer(regs);
29 sp = user_stack_pointer(regs);
30 pc = instruction_pointer(regs);
31 } else if (task == NULL || task == current) {
32 fp = (unsigned long)__builtin_frame_address(0);
34 pc = (unsigned long)walk_stackframe;
36 /* task blocked in __switch_to */
37 fp = task->thread.s[0];
43 unsigned long low, high;
44 struct stackframe *frame;
46 if (unlikely(!__kernel_text_address(pc) || (level++ >= 1 && !fn(arg, pc))))
49 /* Validate frame pointer */
50 low = sp + sizeof(struct stackframe);
51 high = ALIGN(sp, THREAD_SIZE);
52 if (unlikely(fp < low || fp > high || fp & 0x7))
54 /* Unwind stack frame */
55 frame = (struct stackframe *)fp - 1;
57 if (regs && (regs->epc == pc) && (frame->fp & 0x7)) {
62 pc = ftrace_graph_ret_addr(current, NULL, frame->ra,
63 (unsigned long *)(fp - 8));
69 #else /* !CONFIG_FRAME_POINTER */
71 void notrace walk_stackframe(struct task_struct *task,
72 struct pt_regs *regs, bool (*fn)(void *, unsigned long), void *arg)
78 sp = user_stack_pointer(regs);
79 pc = instruction_pointer(regs);
80 } else if (task == NULL || task == current) {
82 pc = (unsigned long)walk_stackframe;
84 /* task blocked in __switch_to */
89 if (unlikely(sp & 0x7))
92 ksp = (unsigned long *)sp;
93 while (!kstack_end(ksp)) {
94 if (__kernel_text_address(pc) && unlikely(!fn(arg, pc)))
100 #endif /* CONFIG_FRAME_POINTER */
102 static bool print_trace_address(void *arg, unsigned long pc)
104 const char *loglvl = arg;
106 print_ip_sym(loglvl, pc);
110 noinline void dump_backtrace(struct pt_regs *regs, struct task_struct *task,
113 walk_stackframe(task, regs, print_trace_address, (void *)loglvl);
116 void show_stack(struct task_struct *task, unsigned long *sp, const char *loglvl)
118 pr_cont("%sCall Trace:\n", loglvl);
119 dump_backtrace(NULL, task, loglvl);
122 static bool save_wchan(void *arg, unsigned long pc)
124 if (!in_sched_functions(pc)) {
125 unsigned long *p = arg;
132 unsigned long __get_wchan(struct task_struct *task)
134 unsigned long pc = 0;
136 if (!try_get_task_stack(task))
138 walk_stackframe(task, NULL, save_wchan, &pc);
139 put_task_stack(task);
143 noinline void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
144 struct task_struct *task, struct pt_regs *regs)
146 walk_stackframe(task, regs, consume_entry, cookie);