blob: 2af66e449aa6a818e7573311e8b821cd597952be [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Ingo Molnar8637c092006-07-03 00:24:38 -07002/*
3 * kernel/stacktrace.c
4 *
5 * Stack trace management functions
6 *
7 * Copyright (C) 2006 Red Hat, Inc., Ingo Molnar <mingo@redhat.com>
8 */
Thomas Gleixner214d8ca2019-04-25 11:45:21 +02009#include <linux/sched/task_stack.h>
10#include <linux/sched/debug.h>
Ingo Molnar8637c092006-07-03 00:24:38 -070011#include <linux/sched.h>
Ingo Molnar9212ddb2008-12-25 11:21:20 +010012#include <linux/kernel.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040013#include <linux/export.h>
Ingo Molnar8637c092006-07-03 00:24:38 -070014#include <linux/kallsyms.h>
15#include <linux/stacktrace.h>
16
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020017/**
18 * stack_trace_print - Print the entries in the stack trace
19 * @entries: Pointer to storage array
20 * @nr_entries: Number of entries in the storage array
21 * @spaces: Number of leading spaces to print
22 */
Bart Van Asschea2970422019-07-22 11:24:41 -070023void stack_trace_print(const unsigned long *entries, unsigned int nr_entries,
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020024 int spaces)
Ingo Molnar8637c092006-07-03 00:24:38 -070025{
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020026 unsigned int i;
Ingo Molnar8637c092006-07-03 00:24:38 -070027
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020028 if (WARN_ON(!entries))
Johannes Bergbfeeeeb2008-05-12 21:21:14 +020029 return;
30
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020031 for (i = 0; i < nr_entries; i++)
32 printk("%*c%pS\n", 1 + spaces, ' ', (void *)entries[i]);
33}
34EXPORT_SYMBOL_GPL(stack_trace_print);
35
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020036/**
37 * stack_trace_snprint - Print the entries in the stack trace into a buffer
38 * @buf: Pointer to the print buffer
39 * @size: Size of the print buffer
40 * @entries: Pointer to storage array
41 * @nr_entries: Number of entries in the storage array
42 * @spaces: Number of leading spaces to print
43 *
44 * Return: Number of bytes printed.
45 */
Bart Van Asschea2970422019-07-22 11:24:41 -070046int stack_trace_snprint(char *buf, size_t size, const unsigned long *entries,
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020047 unsigned int nr_entries, int spaces)
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -080048{
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020049 unsigned int generated, i, total = 0;
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -080050
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020051 if (WARN_ON(!entries))
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -080052 return 0;
53
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020054 for (i = 0; i < nr_entries && size; i++) {
Omar Sandovalbfeda412017-02-07 15:33:20 -080055 generated = snprintf(buf, size, "%*c%pS\n", 1 + spaces, ' ',
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020056 (void *)entries[i]);
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -080057
58 total += generated;
Joonsoo Kim9a92a6c2014-12-12 16:55:58 -080059 if (generated >= size) {
60 buf += size;
61 size = 0;
62 } else {
63 buf += generated;
64 size -= generated;
65 }
66 }
67
68 return total;
69}
Thomas Gleixnere9b98e12019-04-25 11:44:55 +020070EXPORT_SYMBOL_GPL(stack_trace_snprint);
71
Thomas Gleixner214d8ca2019-04-25 11:45:21 +020072#ifdef CONFIG_ARCH_STACKWALK
73
74struct stacktrace_cookie {
75 unsigned long *store;
76 unsigned int size;
77 unsigned int skip;
78 unsigned int len;
79};
80
81static bool stack_trace_consume_entry(void *cookie, unsigned long addr,
82 bool reliable)
83{
84 struct stacktrace_cookie *c = cookie;
85
86 if (c->len >= c->size)
87 return false;
88
89 if (c->skip > 0) {
90 c->skip--;
91 return true;
92 }
93 c->store[c->len++] = addr;
94 return c->len < c->size;
95}
96
97static bool stack_trace_consume_entry_nosched(void *cookie, unsigned long addr,
98 bool reliable)
99{
100 if (in_sched_functions(addr))
101 return true;
102 return stack_trace_consume_entry(cookie, addr, reliable);
103}
104
105/**
106 * stack_trace_save - Save a stack trace into a storage array
107 * @store: Pointer to storage array
108 * @size: Size of the storage array
109 * @skipnr: Number of entries to skip at the start of the stack trace
110 *
111 * Return: Number of trace entries stored.
112 */
113unsigned int stack_trace_save(unsigned long *store, unsigned int size,
114 unsigned int skipnr)
115{
116 stack_trace_consume_fn consume_entry = stack_trace_consume_entry;
117 struct stacktrace_cookie c = {
118 .store = store,
119 .size = size,
120 .skip = skipnr + 1,
121 };
122
123 arch_stack_walk(consume_entry, &c, current, NULL);
124 return c.len;
125}
126EXPORT_SYMBOL_GPL(stack_trace_save);
127
128/**
129 * stack_trace_save_tsk - Save a task stack trace into a storage array
130 * @task: The task to examine
131 * @store: Pointer to storage array
132 * @size: Size of the storage array
133 * @skipnr: Number of entries to skip at the start of the stack trace
134 *
135 * Return: Number of trace entries stored.
136 */
137unsigned int stack_trace_save_tsk(struct task_struct *tsk, unsigned long *store,
138 unsigned int size, unsigned int skipnr)
139{
140 stack_trace_consume_fn consume_entry = stack_trace_consume_entry_nosched;
141 struct stacktrace_cookie c = {
142 .store = store,
143 .size = size,
Jiri Slabyb0c51f12019-10-30 08:25:45 +0100144 /* skip this function if they are tracing us */
Jiri Slaby4b485122019-11-11 10:26:47 +0100145 .skip = skipnr + (current == tsk),
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200146 };
147
148 if (!try_get_task_stack(tsk))
149 return 0;
150
151 arch_stack_walk(consume_entry, &c, tsk, NULL);
152 put_task_stack(tsk);
153 return c.len;
154}
155
156/**
157 * stack_trace_save_regs - Save a stack trace based on pt_regs into a storage array
158 * @regs: Pointer to pt_regs to examine
159 * @store: Pointer to storage array
160 * @size: Size of the storage array
161 * @skipnr: Number of entries to skip at the start of the stack trace
162 *
163 * Return: Number of trace entries stored.
164 */
165unsigned int stack_trace_save_regs(struct pt_regs *regs, unsigned long *store,
166 unsigned int size, unsigned int skipnr)
167{
168 stack_trace_consume_fn consume_entry = stack_trace_consume_entry;
169 struct stacktrace_cookie c = {
170 .store = store,
171 .size = size,
172 .skip = skipnr,
173 };
174
175 arch_stack_walk(consume_entry, &c, current, regs);
176 return c.len;
177}
178
179#ifdef CONFIG_HAVE_RELIABLE_STACKTRACE
180/**
181 * stack_trace_save_tsk_reliable - Save task stack with verification
182 * @tsk: Pointer to the task to examine
183 * @store: Pointer to storage array
184 * @size: Size of the storage array
185 *
186 * Return: An error if it detects any unreliable features of the
187 * stack. Otherwise it guarantees that the stack trace is
188 * reliable and returns the number of entries stored.
189 *
190 * If the task is not 'current', the caller *must* ensure the task is inactive.
191 */
192int stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store,
193 unsigned int size)
194{
195 stack_trace_consume_fn consume_entry = stack_trace_consume_entry;
196 struct stacktrace_cookie c = {
197 .store = store,
198 .size = size,
199 };
200 int ret;
201
202 /*
203 * If the task doesn't have a stack (e.g., a zombie), the stack is
204 * "reliably" empty.
205 */
206 if (!try_get_task_stack(tsk))
207 return 0;
208
209 ret = arch_stack_walk_reliable(consume_entry, &c, tsk);
210 put_task_stack(tsk);
Joe Lawrence7eaf51a2019-05-17 14:51:17 -0400211 return ret ? ret : c.len;
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200212}
213#endif
214
215#ifdef CONFIG_USER_STACKTRACE_SUPPORT
216/**
217 * stack_trace_save_user - Save a user space stack trace into a storage array
218 * @store: Pointer to storage array
219 * @size: Size of the storage array
220 *
221 * Return: Number of trace entries stored.
222 */
223unsigned int stack_trace_save_user(unsigned long *store, unsigned int size)
224{
225 stack_trace_consume_fn consume_entry = stack_trace_consume_entry;
226 struct stacktrace_cookie c = {
227 .store = store,
228 .size = size,
229 };
Peter Zijlstracac9b9a2019-07-18 10:47:47 +0200230 mm_segment_t fs;
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200231
232 /* Trace user stack if not a kernel thread */
Thomas Gleixner7e8e6812019-07-02 17:53:35 +0200233 if (current->flags & PF_KTHREAD)
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200234 return 0;
235
Peter Zijlstracac9b9a2019-07-18 10:47:47 +0200236 fs = get_fs();
237 set_fs(USER_DS);
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200238 arch_stack_walk_user(consume_entry, &c, task_pt_regs(current));
Peter Zijlstracac9b9a2019-07-18 10:47:47 +0200239 set_fs(fs);
240
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200241 return c.len;
242}
243#endif
244
245#else /* CONFIG_ARCH_STACKWALK */
246
Ingo Molnar9212ddb2008-12-25 11:21:20 +0100247/*
Josh Poimboeufaf085d92017-02-13 19:42:28 -0600248 * Architectures that do not implement save_stack_trace_*()
249 * get these weak aliases and once-per-bootup warnings
Masami Hiramatsuc624d332011-06-08 16:09:27 +0900250 * (whenever this facility is utilized - for example by procfs):
Ingo Molnar9212ddb2008-12-25 11:21:20 +0100251 */
252__weak void
253save_stack_trace_tsk(struct task_struct *tsk, struct stack_trace *trace)
254{
255 WARN_ONCE(1, KERN_INFO "save_stack_trace_tsk() not implemented yet.\n");
256}
Masami Hiramatsuc624d332011-06-08 16:09:27 +0900257
258__weak void
259save_stack_trace_regs(struct pt_regs *regs, struct stack_trace *trace)
260{
261 WARN_ONCE(1, KERN_INFO "save_stack_trace_regs() not implemented yet.\n");
262}
Josh Poimboeufaf085d92017-02-13 19:42:28 -0600263
Thomas Gleixnere9b98e12019-04-25 11:44:55 +0200264/**
265 * stack_trace_save - Save a stack trace into a storage array
266 * @store: Pointer to storage array
267 * @size: Size of the storage array
268 * @skipnr: Number of entries to skip at the start of the stack trace
269 *
270 * Return: Number of trace entries stored
271 */
272unsigned int stack_trace_save(unsigned long *store, unsigned int size,
273 unsigned int skipnr)
274{
275 struct stack_trace trace = {
276 .entries = store,
277 .max_entries = size,
278 .skip = skipnr + 1,
279 };
280
281 save_stack_trace(&trace);
282 return trace.nr_entries;
283}
284EXPORT_SYMBOL_GPL(stack_trace_save);
285
286/**
287 * stack_trace_save_tsk - Save a task stack trace into a storage array
288 * @task: The task to examine
289 * @store: Pointer to storage array
290 * @size: Size of the storage array
291 * @skipnr: Number of entries to skip at the start of the stack trace
292 *
293 * Return: Number of trace entries stored
294 */
295unsigned int stack_trace_save_tsk(struct task_struct *task,
296 unsigned long *store, unsigned int size,
297 unsigned int skipnr)
298{
299 struct stack_trace trace = {
300 .entries = store,
301 .max_entries = size,
Jiri Slabyb0c51f12019-10-30 08:25:45 +0100302 /* skip this function if they are tracing us */
Jiri Slaby4b485122019-11-11 10:26:47 +0100303 .skip = skipnr + (current == task),
Thomas Gleixnere9b98e12019-04-25 11:44:55 +0200304 };
305
306 save_stack_trace_tsk(task, &trace);
307 return trace.nr_entries;
308}
309
310/**
311 * stack_trace_save_regs - Save a stack trace based on pt_regs into a storage array
312 * @regs: Pointer to pt_regs to examine
313 * @store: Pointer to storage array
314 * @size: Size of the storage array
315 * @skipnr: Number of entries to skip at the start of the stack trace
316 *
317 * Return: Number of trace entries stored
318 */
319unsigned int stack_trace_save_regs(struct pt_regs *regs, unsigned long *store,
320 unsigned int size, unsigned int skipnr)
321{
322 struct stack_trace trace = {
323 .entries = store,
324 .max_entries = size,
325 .skip = skipnr,
326 };
327
328 save_stack_trace_regs(regs, &trace);
329 return trace.nr_entries;
330}
331
332#ifdef CONFIG_HAVE_RELIABLE_STACKTRACE
333/**
334 * stack_trace_save_tsk_reliable - Save task stack with verification
335 * @tsk: Pointer to the task to examine
336 * @store: Pointer to storage array
337 * @size: Size of the storage array
338 *
339 * Return: An error if it detects any unreliable features of the
340 * stack. Otherwise it guarantees that the stack trace is
341 * reliable and returns the number of entries stored.
342 *
343 * If the task is not 'current', the caller *must* ensure the task is inactive.
344 */
345int stack_trace_save_tsk_reliable(struct task_struct *tsk, unsigned long *store,
346 unsigned int size)
347{
348 struct stack_trace trace = {
349 .entries = store,
350 .max_entries = size,
351 };
352 int ret = save_stack_trace_tsk_reliable(tsk, &trace);
353
354 return ret ? ret : trace.nr_entries;
355}
356#endif
357
358#ifdef CONFIG_USER_STACKTRACE_SUPPORT
359/**
360 * stack_trace_save_user - Save a user space stack trace into a storage array
361 * @store: Pointer to storage array
362 * @size: Size of the storage array
363 *
364 * Return: Number of trace entries stored
365 */
366unsigned int stack_trace_save_user(unsigned long *store, unsigned int size)
367{
368 struct stack_trace trace = {
369 .entries = store,
370 .max_entries = size,
371 };
372
373 save_stack_trace_user(&trace);
374 return trace.nr_entries;
375}
376#endif /* CONFIG_USER_STACKTRACE_SUPPORT */
Thomas Gleixner214d8ca2019-04-25 11:45:21 +0200377
378#endif /* !CONFIG_ARCH_STACKWALK */