blob: 64a59d72663952f0fb1eb8eba100d74baa93a0f7 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +02002/*
3 * Copyright (C) 1991, 1992 Linus Torvalds
4 * Copyright (C) 2000, 2001, 2002 Andi Kleen, SuSE Labs
5 */
Ingo Molnarb17b0152017-02-08 18:51:35 +01006#include <linux/sched/debug.h>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +02007#include <linux/kallsyms.h>
8#include <linux/kprobes.h>
9#include <linux/uaccess.h>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020010#include <linux/hardirq.h>
11#include <linux/kdebug.h>
Paul Gortmaker186f4362016-07-13 20:18:56 -040012#include <linux/export.h>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020013#include <linux/ptrace.h>
14#include <linux/kexec.h>
Ingo Molnarb8030902009-11-26 08:17:31 +010015#include <linux/sysfs.h>
Alexander van Heukelum2bc5f922008-09-30 13:12:14 +020016#include <linux/bug.h>
17#include <linux/nmi.h>
18
19#include <asm/stacktrace.h>
20
Josh Poimboeuf3d02a9c2016-11-18 11:46:23 -060021const char *stack_type_name(enum stack_type type)
Steven Rostedt198d2082014-02-06 09:41:31 -050022{
Josh Poimboeuf3d02a9c2016-11-18 11:46:23 -060023 if (type == STACK_TYPE_IRQ)
24 return "IRQ";
25
26 if (type == STACK_TYPE_SOFTIRQ)
27 return "SOFTIRQ";
28
Dave Hansen4fe2d8b2017-12-04 17:25:07 -080029 if (type == STACK_TYPE_ENTRY)
30 return "ENTRY_TRAMPOLINE";
Andy Lutomirski33a2f1a2017-12-04 15:07:13 +010031
Josh Poimboeuf3d02a9c2016-11-18 11:46:23 -060032 return NULL;
Steven Rostedt198d2082014-02-06 09:41:31 -050033}
34
Josh Poimboeufcb76c932016-09-14 21:07:42 -050035static bool in_hardirq_stack(unsigned long *stack, struct stack_info *info)
Steven Rostedt198d2082014-02-06 09:41:31 -050036{
Thomas Gleixnera754fe22019-04-14 18:00:01 +020037 unsigned long *begin = (unsigned long *)this_cpu_read(hardirq_stack_ptr);
Josh Poimboeufcb76c932016-09-14 21:07:42 -050038 unsigned long *end = begin + (THREAD_SIZE / sizeof(long));
Steven Rostedt198d2082014-02-06 09:41:31 -050039
Josh Poimboeuf5fe599e2016-09-14 21:07:43 -050040 /*
41 * This is a software stack, so 'end' can be a valid stack pointer.
42 * It just means the stack is empty.
43 */
Andy Lutomirskifa332152019-04-14 17:59:39 +020044 if (stack < begin || stack > end)
Josh Poimboeufcb76c932016-09-14 21:07:42 -050045 return false;
46
47 info->type = STACK_TYPE_IRQ;
48 info->begin = begin;
49 info->end = end;
50
51 /*
52 * See irq_32.c -- the next stack pointer is stored at the beginning of
53 * the stack.
54 */
55 info->next_sp = (unsigned long *)*begin;
56
57 return true;
Steven Rostedt198d2082014-02-06 09:41:31 -050058}
59
Josh Poimboeufcb76c932016-09-14 21:07:42 -050060static bool in_softirq_stack(unsigned long *stack, struct stack_info *info)
Steven Rostedt198d2082014-02-06 09:41:31 -050061{
Thomas Gleixnera754fe22019-04-14 18:00:01 +020062 unsigned long *begin = (unsigned long *)this_cpu_read(softirq_stack_ptr);
Josh Poimboeufcb76c932016-09-14 21:07:42 -050063 unsigned long *end = begin + (THREAD_SIZE / sizeof(long));
Steven Rostedt198d2082014-02-06 09:41:31 -050064
Josh Poimboeuf5fe599e2016-09-14 21:07:43 -050065 /*
66 * This is a software stack, so 'end' can be a valid stack pointer.
67 * It just means the stack is empty.
68 */
Andy Lutomirskifa332152019-04-14 17:59:39 +020069 if (stack < begin || stack > end)
Josh Poimboeufcb76c932016-09-14 21:07:42 -050070 return false;
71
72 info->type = STACK_TYPE_SOFTIRQ;
73 info->begin = begin;
74 info->end = end;
75
76 /*
77 * The next stack pointer is stored at the beginning of the stack.
78 * See irq_32.c.
79 */
80 info->next_sp = (unsigned long *)*begin;
81
82 return true;
83}
84
85int get_stack_info(unsigned long *stack, struct task_struct *task,
86 struct stack_info *info, unsigned long *visit_mask)
87{
88 if (!stack)
89 goto unknown;
90
91 task = task ? : current;
92
93 if (in_task_stack(stack, task, info))
Josh Poimboeuffcd709e2016-09-14 21:07:44 -050094 goto recursion_check;
Josh Poimboeufcb76c932016-09-14 21:07:42 -050095
96 if (task != current)
97 goto unknown;
98
Dave Hansen4fe2d8b2017-12-04 17:25:07 -080099 if (in_entry_stack(stack, info))
Andy Lutomirski33a2f1a2017-12-04 15:07:13 +0100100 goto recursion_check;
101
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500102 if (in_hardirq_stack(stack, info))
Josh Poimboeuffcd709e2016-09-14 21:07:44 -0500103 goto recursion_check;
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500104
105 if (in_softirq_stack(stack, info))
Josh Poimboeuffcd709e2016-09-14 21:07:44 -0500106 goto recursion_check;
107
108 goto unknown;
109
110recursion_check:
111 /*
112 * Make sure we don't iterate through any given stack more than once.
113 * If it comes up a second time then there's something wrong going on:
114 * just break out and report an unknown stack type.
115 */
116 if (visit_mask) {
Josh Poimboeuf0d2b8572016-10-26 10:41:50 -0500117 if (*visit_mask & (1UL << info->type)) {
118 printk_deferred_once(KERN_WARNING "WARNING: stack recursion on stack type %d\n", info->type);
Josh Poimboeuffcd709e2016-09-14 21:07:44 -0500119 goto unknown;
Josh Poimboeuf0d2b8572016-10-26 10:41:50 -0500120 }
Josh Poimboeuffcd709e2016-09-14 21:07:44 -0500121 *visit_mask |= 1UL << info->type;
122 }
123
124 return 0;
Josh Poimboeufcb76c932016-09-14 21:07:42 -0500125
126unknown:
127 info->type = STACK_TYPE_UNKNOWN;
128 return -EINVAL;
Steven Rostedt198d2082014-02-06 09:41:31 -0500129}