Merge tag 'bcachefs-2024-10-05' of git://evilpiepirate.org/bcachefs
[linux-2.6-block.git] / arch / arm / include / asm / stacktrace.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
2d7c11bf
CM
2#ifndef __ASM_STACKTRACE_H
3#define __ASM_STACKTRACE_H
4
9865f1d4 5#include <asm/ptrace.h>
fed240d9 6#include <linux/llist.h>
9865f1d4 7
2d7c11bf 8struct stackframe {
9865f1d4
NB
9 /*
10 * FP member should hold R7 when CONFIG_THUMB2_KERNEL is enabled
11 * and R11 otherwise.
12 */
2d7c11bf
CM
13 unsigned long fp;
14 unsigned long sp;
15 unsigned long lr;
16 unsigned long pc;
538b9265
AB
17
18 /* address of the LR value on the stack */
19 unsigned long *lr_addr;
fed240d9
MH
20#ifdef CONFIG_KRETPROBES
21 struct llist_node *kr_cur;
22 struct task_struct *tsk;
23#endif
752ec621
LH
24#ifdef CONFIG_UNWINDER_FRAME_POINTER
25 bool ex_frame;
26#endif
2d7c11bf
CM
27};
28
2335c9cb
JR
29static inline bool on_thread_stack(void)
30{
31 unsigned long delta = current_stack_pointer ^ (unsigned long)current->stack;
32
33 return delta < THREAD_SIZE;
34}
35
9865f1d4
NB
36static __always_inline
37void arm_get_current_stackframe(struct pt_regs *regs, struct stackframe *frame)
38{
39 frame->fp = frame_pointer(regs);
40 frame->sp = regs->ARM_sp;
41 frame->lr = regs->ARM_lr;
42 frame->pc = regs->ARM_pc;
fed240d9
MH
43#ifdef CONFIG_KRETPROBES
44 frame->kr_cur = NULL;
45 frame->tsk = current;
46#endif
752ec621
LH
47#ifdef CONFIG_UNWINDER_FRAME_POINTER
48 frame->ex_frame = in_entry_text(frame->pc);
49#endif
9865f1d4
NB
50}
51
2d7c11bf
CM
52extern int unwind_frame(struct stackframe *frame);
53extern void walk_stackframe(struct stackframe *frame,
70ccc7c0 54 bool (*fn)(void *, unsigned long), void *data);
8cdfdf7f
AB
55extern void dump_mem(const char *lvl, const char *str, unsigned long bottom,
56 unsigned long top);
09cffeca
ZL
57extern void dump_backtrace(struct pt_regs *regs, struct task_struct *tsk,
58 const char *loglvl);
2d7c11bf
CM
59
60#endif /* __ASM_STACKTRACE_H */