blob: f0cfd12cb45eb5e849e9e753cab8e9a701879719 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Ingo Molnar8637c092006-07-03 00:24:38 -07002#ifndef __LINUX_STACKTRACE_H
3#define __LINUX_STACKTRACE_H
4
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -08005#include <linux/types.h>
Thomas Gleixnere9b98e12019-04-25 11:44:55 +02006#include <asm/errno.h>
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -08007
Andrew Morton897312b2008-10-03 15:23:41 -07008struct task_struct;
Soeren Sandmann Pedersen9c0729d2010-11-05 05:59:39 -04009struct pt_regs;
Andrew Morton897312b2008-10-03 15:23:41 -070010
Ingo Molnar8637c092006-07-03 00:24:38 -070011#ifdef CONFIG_STACKTRACE
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020012void stack_trace_print(unsigned long *trace, unsigned int nr_entries,
13 int spaces);
14int stack_trace_snprint(char *buf, size_t size, unsigned long *entries,
15 unsigned int nr_entries, int spaces);
16unsigned int stack_trace_save(unsigned long *store, unsigned int size,
17 unsigned int skipnr);
18unsigned int stack_trace_save_tsk(struct task_struct *task,
19 unsigned long *store, unsigned int size,
20 unsigned int skipnr);
21unsigned int stack_trace_save_regs(struct pt_regs *regs, unsigned long *store,
22 unsigned int size, unsigned int skipnr);
23unsigned int stack_trace_save_user(unsigned long *store, unsigned int size);
24
25/* Internal interfaces. Do not use in generic code */
Thomas Gleixner214d8ca2019-04-25 11:45:21 +020026#ifdef CONFIG_ARCH_STACKWALK
27
28/**
29 * stack_trace_consume_fn - Callback for arch_stack_walk()
30 * @cookie: Caller supplied pointer handed back by arch_stack_walk()
31 * @addr: The stack entry address to consume
32 * @reliable: True when the stack entry is reliable. Required by
33 * some printk based consumers.
34 *
35 * Return: True, if the entry was consumed or skipped
36 * False, if there is no space left to store
37 */
38typedef bool (*stack_trace_consume_fn)(void *cookie, unsigned long addr,
39 bool reliable);
40/**
41 * arch_stack_walk - Architecture specific function to walk the stack
42 * @consume_entry: Callback which is invoked by the architecture code for
43 * each entry.
44 * @cookie: Caller supplied pointer which is handed back to
45 * @consume_entry
46 * @task: Pointer to a task struct, can be NULL
47 * @regs: Pointer to registers, can be NULL
48 *
49 * ============ ======= ============================================
50 * task regs
51 * ============ ======= ============================================
52 * task NULL Stack trace from task (can be current)
53 * current regs Stack trace starting on regs->stackpointer
54 * ============ ======= ============================================
55 */
56void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
57 struct task_struct *task, struct pt_regs *regs);
58int arch_stack_walk_reliable(stack_trace_consume_fn consume_entry, void *cookie,
59 struct task_struct *task);
60void arch_stack_walk_user(stack_trace_consume_fn consume_entry, void *cookie,
61 const struct pt_regs *regs);
62
63#else /* CONFIG_ARCH_STACKWALK */
Ingo Molnar8637c092006-07-03 00:24:38 -070064struct stack_trace {
65 unsigned int nr_entries, max_entries;
66 unsigned long *entries;
Andi Kleen5a1b3992006-09-26 10:52:34 +020067 int skip; /* input argument: How many entries to skip */
Ingo Molnar8637c092006-07-03 00:24:38 -070068};
69
Christoph Hellwigab1b6f02007-05-08 00:23:29 -070070extern void save_stack_trace(struct stack_trace *trace);
Masami Hiramatsu39581062011-06-08 16:09:21 +090071extern void save_stack_trace_regs(struct pt_regs *regs,
72 struct stack_trace *trace);
Arjan van de Ven97455122008-01-25 21:08:34 +010073extern void save_stack_trace_tsk(struct task_struct *tsk,
74 struct stack_trace *trace);
Josh Poimboeufaf085d92017-02-13 19:42:28 -060075extern int save_stack_trace_tsk_reliable(struct task_struct *tsk,
76 struct stack_trace *trace);
Török Edwin02b67512008-11-22 13:28:47 +020077extern void save_stack_trace_user(struct stack_trace *trace);
Thomas Gleixner214d8ca2019-04-25 11:45:21 +020078#endif /* !CONFIG_ARCH_STACKWALK */
Josh Poimboeufaf085d92017-02-13 19:42:28 -060079#endif /* CONFIG_STACKTRACE */
Ingo Molnar8637c092006-07-03 00:24:38 -070080
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020081#if defined(CONFIG_STACKTRACE) && defined(CONFIG_HAVE_RELIABLE_STACKTRACE)
82int stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store,
83 unsigned int size);
84#else
85static inline int stack_trace_save_tsk_reliable(struct task_struct *tsk,
86 unsigned long *store,
87 unsigned int size)
88{
89 return -ENOSYS;
90}
91#endif
92
Josh Poimboeufaf085d92017-02-13 19:42:28 -060093#endif /* __LINUX_STACKTRACE_H */