1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Generic support for BUG()
4 *
5 * This respects the following config options:
6 *
7 * CONFIG_BUG - emit BUG traps. Nothing happens without this.
8 * CONFIG_GENERIC_BUG - enable this code.
9 * CONFIG_GENERIC_BUG_RELATIVE_POINTERS - use 32-bit relative pointers for bug_addr and file
10 * CONFIG_DEBUG_BUGVERBOSE - emit full file+line information for each BUG
11 *
12 * CONFIG_BUG and CONFIG_DEBUG_BUGVERBOSE are potentially user-settable
13 * (though they're generally always on).
14 *
15 * CONFIG_GENERIC_BUG is set by each architecture using this code.
16 *
17 * To use this, your architecture must:
18 *
19 * 1. Set up the config options:
20 * - Enable CONFIG_GENERIC_BUG if CONFIG_BUG
21 *
22 * 2. Implement BUG (and optionally BUG_ON, WARN, WARN_ON)
23 * - Define HAVE_ARCH_BUG
24 * - Implement BUG() to generate a faulting instruction
25 * - NOTE: struct bug_entry does not have "file" or "line" entries
26 * when CONFIG_DEBUG_BUGVERBOSE is not enabled, so you must generate
27 * the values accordingly.
28 *
29 * 3. Implement the trap
30 * - In the illegal instruction trap handler (typically), verify
31 * that the fault was in kernel mode, and call report_bug()
32 * - report_bug() will return whether it was a false alarm, a warning,
33 * or an actual bug.
34 * - You must implement the is_valid_bugaddr(bugaddr) callback which
35 * returns true if the eip is a real kernel address, and it points
36 * to the expected BUG trap instruction.
37 *
38 * Jeremy Fitzhardinge <jeremy@goop.org> 2006
39 */
40
41 #define pr_fmt(fmt) fmt
42
43 #include <linux/list.h>
44 #include <linux/module.h>
45 #include <linux/kernel.h>
46 #include <linux/bug.h>
47 #include <linux/sched.h>
48 #include <linux/rculist.h>
49 #include <linux/ftrace.h>
50 #include <linux/context_tracking.h>
51 #include <kunit/test-bug.h>
52
53 extern struct bug_entry __start___bug_table[], __stop___bug_table[];
54
bug_addr(const struct bug_entry * bug)55 static inline unsigned long bug_addr(const struct bug_entry *bug)
56 {
57 #ifdef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
58 return (unsigned long)&bug->bug_addr_disp + bug->bug_addr_disp;
59 #else
60 return bug->bug_addr;
61 #endif
62 }
63
64 #ifdef CONFIG_MODULES
65 /* Updates are protected by module mutex */
66 static LIST_HEAD(module_bug_list);
67
module_find_bug(unsigned long bugaddr)68 static struct bug_entry *module_find_bug(unsigned long bugaddr)
69 {
70 struct bug_entry *bug;
71 struct module *mod;
72
73 guard(rcu)();
74 list_for_each_entry_rcu(mod, &module_bug_list, bug_list) {
75 unsigned int i;
76
77 bug = mod->bug_table;
78 for (i = 0; i < mod->num_bugs; ++i, ++bug)
79 if (bugaddr == bug_addr(bug))
80 return bug;
81 }
82 return NULL;
83 }
84
module_bug_finalize(const Elf_Ehdr * hdr,const Elf_Shdr * sechdrs,struct module * mod)85 void module_bug_finalize(const Elf_Ehdr *hdr, const Elf_Shdr *sechdrs,
86 struct module *mod)
87 {
88 char *secstrings;
89 unsigned int i;
90
91 mod->bug_table = NULL;
92 mod->num_bugs = 0;
93
94 /* Find the __bug_table section, if present */
95 secstrings = (char *)hdr + sechdrs[hdr->e_shstrndx].sh_offset;
96 for (i = 1; i < hdr->e_shnum; i++) {
97 if (strcmp(secstrings+sechdrs[i].sh_name, "__bug_table"))
98 continue;
99 mod->bug_table = (void *) sechdrs[i].sh_addr;
100 mod->num_bugs = sechdrs[i].sh_size / sizeof(struct bug_entry);
101 break;
102 }
103
104 /*
105 * Strictly speaking this should have a spinlock to protect against
106 * traversals, but since we only traverse on BUG()s, a spinlock
107 * could potentially lead to deadlock and thus be counter-productive.
108 * Thus, this uses RCU to safely manipulate the bug list, since BUG
109 * must run in non-interruptive state.
110 */
111 list_add_rcu(&mod->bug_list, &module_bug_list);
112 }
113
module_bug_cleanup(struct module * mod)114 void module_bug_cleanup(struct module *mod)
115 {
116 list_del_rcu(&mod->bug_list);
117 }
118
119 #else
120
module_find_bug(unsigned long bugaddr)121 static inline struct bug_entry *module_find_bug(unsigned long bugaddr)
122 {
123 return NULL;
124 }
125 #endif
126
bug_get_file_line(struct bug_entry * bug,const char ** file,unsigned int * line)127 void bug_get_file_line(struct bug_entry *bug, const char **file,
128 unsigned int *line)
129 {
130 #ifdef CONFIG_DEBUG_BUGVERBOSE
131 #ifdef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
132 *file = (const char *)&bug->file_disp + bug->file_disp;
133 #else
134 *file = bug->file;
135 #endif
136 *line = bug->line;
137 #else
138 *file = NULL;
139 *line = 0;
140 #endif
141 }
142
bug_get_format(struct bug_entry * bug)143 static const char *bug_get_format(struct bug_entry *bug)
144 {
145 const char *format = NULL;
146 #ifdef HAVE_ARCH_BUG_FORMAT
147 #ifdef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
148 /*
149 * Allow an architecture to:
150 * - relative encode NULL (difficult vs KASLR);
151 * - use a literal 0 (there are no valid objects inside
152 * the __bug_table itself to refer to after all);
153 * - use an empty string.
154 */
155 if (bug->format_disp)
156 format = (const char *)&bug->format_disp + bug->format_disp;
157 if (format && format[0] == '\0')
158 format = NULL;
159 #else
160 format = bug->format;
161 #endif
162 #endif
163 return format;
164 }
165
find_bug(unsigned long bugaddr)166 struct bug_entry *find_bug(unsigned long bugaddr)
167 {
168 struct bug_entry *bug;
169
170 for (bug = __start___bug_table; bug < __stop___bug_table; ++bug)
171 if (bugaddr == bug_addr(bug))
172 return bug;
173
174 return module_find_bug(bugaddr);
175 }
176
177 static __printf(1, 0)
__warn_printf(const char * fmt,struct pt_regs * regs)178 void __warn_printf(const char *fmt, struct pt_regs *regs)
179 {
180 if (!fmt)
181 return;
182
183 #ifdef HAVE_ARCH_BUG_FORMAT_ARGS
184 if (regs) {
185 struct arch_va_list _args;
186 va_list *args = __warn_args(&_args, regs);
187
188 if (args) {
189 vprintk(fmt, *args);
190 return;
191 }
192 }
193 #endif
194
195 pr_warn("%s", fmt);
196 }
197
__report_bug(struct bug_entry * bug,unsigned long bugaddr,struct pt_regs * regs)198 static enum bug_trap_type __report_bug(struct bug_entry *bug, unsigned long bugaddr, struct pt_regs *regs)
199 {
200 bool warning, once, done, no_cut, has_args;
201 const char *file, *fmt;
202 unsigned int line;
203
204 if (!bug) {
205 if (!is_valid_bugaddr(bugaddr))
206 return BUG_TRAP_TYPE_NONE;
207
208 bug = find_bug(bugaddr);
209 if (!bug)
210 return BUG_TRAP_TYPE_NONE;
211 }
212
213 bug_get_file_line(bug, &file, &line);
214 fmt = bug_get_format(bug);
215
216 warning = bug->flags & BUGFLAG_WARNING;
217 once = bug->flags & BUGFLAG_ONCE;
218 done = bug->flags & BUGFLAG_DONE;
219 no_cut = bug->flags & BUGFLAG_NO_CUT_HERE;
220 has_args = bug->flags & BUGFLAG_ARGS;
221
222 /*
223 * Before the once logic so suppressed warnings do not consume
224 * the single-fire budget of WARN_ON_ONCE().
225 */
226 if (warning && kunit_is_suppressed_warning(true))
227 return BUG_TRAP_TYPE_WARN;
228
229 disable_trace_on_warning();
230
231 if (warning && once) {
232 if (done)
233 return BUG_TRAP_TYPE_WARN;
234
235 /*
236 * Since this is the only store, concurrency is not an issue.
237 */
238 bug->flags |= BUGFLAG_DONE;
239 }
240
241 /*
242 * BUG() and WARN_ON() families don't print a custom debug message
243 * before triggering the exception handler, so we must add the
244 * "cut here" line now. WARN() issues its own "cut here" before the
245 * extra debugging message it writes before triggering the handler.
246 */
247 if (!no_cut) {
248 pr_info(CUT_HERE);
249 __warn_printf(fmt, has_args ? regs : NULL);
250 }
251
252 if (warning) {
253 /* this is a WARN_ON rather than BUG/BUG_ON */
254 __warn(file, line, (void *)bugaddr, BUG_GET_TAINT(bug), regs,
255 NULL);
256 return BUG_TRAP_TYPE_WARN;
257 }
258
259 if (file)
260 pr_crit("kernel BUG at %s:%u!\n", file, line);
261 else
262 pr_crit("kernel BUG at %pB [verbose debug info unavailable]\n",
263 (void *)bugaddr);
264
265 return BUG_TRAP_TYPE_BUG;
266 }
267
report_bug_entry(struct bug_entry * bug,struct pt_regs * regs)268 enum bug_trap_type report_bug_entry(struct bug_entry *bug, struct pt_regs *regs)
269 {
270 enum bug_trap_type ret;
271 bool rcu;
272
273 rcu = warn_rcu_enter();
274 ret = __report_bug(bug, bug_addr(bug), regs);
275 warn_rcu_exit(rcu);
276
277 return ret;
278 }
279
report_bug(unsigned long bugaddr,struct pt_regs * regs)280 enum bug_trap_type report_bug(unsigned long bugaddr, struct pt_regs *regs)
281 {
282 enum bug_trap_type ret;
283 bool rcu;
284
285 rcu = warn_rcu_enter();
286 ret = __report_bug(NULL, bugaddr, regs);
287 warn_rcu_exit(rcu);
288
289 return ret;
290 }
291
clear_once_table(struct bug_entry * start,struct bug_entry * end)292 static void clear_once_table(struct bug_entry *start, struct bug_entry *end)
293 {
294 struct bug_entry *bug;
295
296 for (bug = start; bug < end; bug++)
297 bug->flags &= ~BUGFLAG_DONE;
298 }
299
generic_bug_clear_once(void)300 void generic_bug_clear_once(void)
301 {
302 #ifdef CONFIG_MODULES
303 struct module *mod;
304
305 scoped_guard(rcu) {
306 list_for_each_entry_rcu(mod, &module_bug_list, bug_list)
307 clear_once_table(mod->bug_table,
308 mod->bug_table + mod->num_bugs);
309 }
310 #endif
311
312 clear_once_table(__start___bug_table, __stop___bug_table);
313 }
314