blob: 87191357d303c9b53873a1280ca6caf440331136 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_GENERIC_BUG_H
2#define _ASM_GENERIC_BUG_H
3
4#include <linux/compiler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005
Paul Mundt09682c12012-06-25 17:15:31 +09006#ifdef CONFIG_GENERIC_BUG
7#define BUGFLAG_WARNING (1 << 0)
Peter Zijlstra19d43622017-02-25 08:56:53 +01008#define BUGFLAG_ONCE (1 << 1)
9#define BUGFLAG_DONE (1 << 2)
Peter Zijlstraf26dee12017-04-10 10:49:39 +020010#define BUGFLAG_TAINT(taint) ((taint) << 8)
Paul Mundt09682c12012-06-25 17:15:31 +090011#define BUG_GET_TAINT(bug) ((bug)->flags >> 8)
12#endif
13
14#ifndef __ASSEMBLY__
15#include <linux/kernel.h>
16
Matt Mackallc8538a72005-05-01 08:59:01 -070017#ifdef CONFIG_BUG
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080018
19#ifdef CONFIG_GENERIC_BUG
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080020struct bug_entry {
Jan Beulichb93a5312008-12-16 11:40:27 +000021#ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080022 unsigned long bug_addr;
Jan Beulichb93a5312008-12-16 11:40:27 +000023#else
24 signed int bug_addr_disp;
25#endif
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080026#ifdef CONFIG_DEBUG_BUGVERBOSE
Jan Beulichb93a5312008-12-16 11:40:27 +000027#ifndef CONFIG_GENERIC_BUG_RELATIVE_POINTERS
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080028 const char *file;
Jan Beulichb93a5312008-12-16 11:40:27 +000029#else
30 signed int file_disp;
31#endif
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080032 unsigned short line;
33#endif
34 unsigned short flags;
35};
Jeremy Fitzhardinge7664c5a2006-12-08 02:36:19 -080036#endif /* CONFIG_GENERIC_BUG */
37
David Brownellaf9379c2009-01-06 14:41:01 -080038/*
39 * Don't use BUG() or BUG_ON() unless there's really no way out; one
40 * example might be detecting data structure corruption in the middle
41 * of an operation that can't be backed out of. If the (sub)system
42 * can somehow continue operating, perhaps with reduced functionality,
43 * it's probably not BUG-worthy.
44 *
45 * If you're tempted to BUG(), think again: is completely giving up
46 * really the *only* solution? There are usually better options, where
47 * users don't need to reboot ASAP and can mostly shut down cleanly.
48 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070049#ifndef HAVE_ARCH_BUG
50#define BUG() do { \
Harvey Harrisond5c003b2008-10-15 22:01:24 -070051 printk("BUG: failure at %s:%d/%s()!\n", __FILE__, __LINE__, __func__); \
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 panic("BUG!"); \
53} while (0)
54#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056#ifndef HAVE_ARCH_BUG_ON
Josh Tripletta3f76072014-04-07 15:39:11 -070057#define BUG_ON(condition) do { if (unlikely(condition)) BUG(); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058#endif
59
Peter Zijlstra19d43622017-02-25 08:56:53 +010060#ifdef __WARN_FLAGS
61#define __WARN_TAINT(taint) __WARN_FLAGS(BUGFLAG_TAINT(taint))
62#define __WARN_ONCE_TAINT(taint) __WARN_FLAGS(BUGFLAG_ONCE|BUGFLAG_TAINT(taint))
63
64#define WARN_ON_ONCE(condition) ({ \
65 int __ret_warn_on = !!(condition); \
66 if (unlikely(__ret_warn_on)) \
67 __WARN_ONCE_TAINT(TAINT_WARN); \
68 unlikely(__ret_warn_on); \
69})
70#endif
71
David Brownellaf9379c2009-01-06 14:41:01 -080072/*
73 * WARN(), WARN_ON(), WARN_ON_ONCE, and so on can be used to report
74 * significant issues that need prompt attention if they should ever
75 * appear at runtime. Use the versions with printk format strings
76 * to provide better diagnostics.
77 */
Ben Hutchingsb2be0522010-04-03 19:34:56 +010078#ifndef __WARN_TAINT
Joe Perchesb9075fa2011-10-31 17:11:33 -070079extern __printf(3, 4)
80void warn_slowpath_fmt(const char *file, const int line,
81 const char *fmt, ...);
82extern __printf(4, 5)
83void warn_slowpath_fmt_taint(const char *file, const int line, unsigned taint,
84 const char *fmt, ...);
Andi Kleen57adc4d2009-05-06 16:02:53 -070085extern void warn_slowpath_null(const char *file, const int line);
Arjan van de Ven79b4cc52008-01-30 13:32:50 +010086#define WANT_WARN_ON_SLOWPATH
Andi Kleen57adc4d2009-05-06 16:02:53 -070087#define __WARN() warn_slowpath_null(__FILE__, __LINE__)
88#define __WARN_printf(arg...) warn_slowpath_fmt(__FILE__, __LINE__, arg)
Ben Hutchingsb2be0522010-04-03 19:34:56 +010089#define __WARN_printf_taint(taint, arg...) \
90 warn_slowpath_fmt_taint(__FILE__, __LINE__, taint, arg)
Arjan van de Vena8f18b92008-07-25 01:45:53 -070091#else
Ben Hutchingsb2be0522010-04-03 19:34:56 +010092#define __WARN() __WARN_TAINT(TAINT_WARN)
Ingo Molnarec5679e2008-11-28 17:56:14 +010093#define __WARN_printf(arg...) do { printk(arg); __WARN(); } while (0)
Ben Hutchingsb2be0522010-04-03 19:34:56 +010094#define __WARN_printf_taint(taint, arg...) \
95 do { printk(arg); __WARN_TAINT(taint); } while (0)
Olof Johansson3a6a62f92008-01-30 13:32:50 +010096#endif
97
Josh Poimboeuf2553b672016-03-17 14:23:04 -070098/* used internally by panic.c */
99struct warn_args;
Ian Abbott0b396922017-07-10 15:50:55 -0700100struct pt_regs;
Josh Poimboeuf2553b672016-03-17 14:23:04 -0700101
102void __warn(const char *file, int line, void *caller, unsigned taint,
103 struct pt_regs *regs, struct warn_args *args);
104
Olof Johansson3a6a62f92008-01-30 13:32:50 +0100105#ifndef WARN_ON
Herbert Xu684f9782006-09-29 01:59:06 -0700106#define WARN_ON(condition) ({ \
Linus Torvalds8d4fbcf2007-07-31 21:12:07 -0700107 int __ret_warn_on = !!(condition); \
Olof Johansson3a6a62f92008-01-30 13:32:50 +0100108 if (unlikely(__ret_warn_on)) \
109 __WARN(); \
Herbert Xu684f9782006-09-29 01:59:06 -0700110 unlikely(__ret_warn_on); \
111})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#endif
113
Arjan van de Vena8f18b92008-07-25 01:45:53 -0700114#ifndef WARN
Peter Zijlstra19d43622017-02-25 08:56:53 +0100115#define WARN(condition, format...) ({ \
Arjan van de Vena8f18b92008-07-25 01:45:53 -0700116 int __ret_warn_on = !!(condition); \
117 if (unlikely(__ret_warn_on)) \
118 __WARN_printf(format); \
119 unlikely(__ret_warn_on); \
120})
121#endif
122
Ben Hutchingsb2be0522010-04-03 19:34:56 +0100123#define WARN_TAINT(condition, taint, format...) ({ \
124 int __ret_warn_on = !!(condition); \
125 if (unlikely(__ret_warn_on)) \
126 __WARN_printf_taint(taint, format); \
127 unlikely(__ret_warn_on); \
128})
129
Peter Zijlstra19d43622017-02-25 08:56:53 +0100130#ifndef WARN_ON_ONCE
Andrew Mortond69a8922006-10-06 00:43:49 -0700131#define WARN_ON_ONCE(condition) ({ \
Jan Beulich7ccaba52012-03-23 15:01:52 -0700132 static bool __section(.data.unlikely) __warned; \
Linus Torvalds8d4fbcf2007-07-31 21:12:07 -0700133 int __ret_warn_once = !!(condition); \
Andrew Mortond69a8922006-10-06 00:43:49 -0700134 \
Steven Rostedtdfbf2892016-03-17 14:21:12 -0700135 if (unlikely(__ret_warn_once && !__warned)) { \
136 __warned = true; \
137 WARN_ON(1); \
138 } \
Andrew Mortond69a8922006-10-06 00:43:49 -0700139 unlikely(__ret_warn_once); \
Ingo Molnar74bb6a02006-06-25 05:48:09 -0700140})
Peter Zijlstra19d43622017-02-25 08:56:53 +0100141#endif
Ingo Molnar74bb6a02006-06-25 05:48:09 -0700142
Arjan van de Ven45e9c0d2008-09-15 16:43:18 -0700143#define WARN_ONCE(condition, format...) ({ \
Jan Beulich7ccaba52012-03-23 15:01:52 -0700144 static bool __section(.data.unlikely) __warned; \
Arjan van de Ven45e9c0d2008-09-15 16:43:18 -0700145 int __ret_warn_once = !!(condition); \
146 \
Steven Rostedtdfbf2892016-03-17 14:21:12 -0700147 if (unlikely(__ret_warn_once && !__warned)) { \
148 __warned = true; \
149 WARN(1, format); \
150 } \
Arjan van de Ven45e9c0d2008-09-15 16:43:18 -0700151 unlikely(__ret_warn_once); \
152})
153
Ben Hutchingsb2be0522010-04-03 19:34:56 +0100154#define WARN_TAINT_ONCE(condition, taint, format...) ({ \
Jan Beulich7ccaba52012-03-23 15:01:52 -0700155 static bool __section(.data.unlikely) __warned; \
Ben Hutchingsb2be0522010-04-03 19:34:56 +0100156 int __ret_warn_once = !!(condition); \
157 \
Steven Rostedtdfbf2892016-03-17 14:21:12 -0700158 if (unlikely(__ret_warn_once && !__warned)) { \
159 __warned = true; \
160 WARN_TAINT(1, taint, format); \
161 } \
Ben Hutchingsb2be0522010-04-03 19:34:56 +0100162 unlikely(__ret_warn_once); \
163})
164
Josh Triplettb607e702014-04-07 15:39:10 -0700165#else /* !CONFIG_BUG */
166#ifndef HAVE_ARCH_BUG
Josh Tripletta4b5d582014-04-07 15:39:13 -0700167#define BUG() do {} while (1)
Josh Triplettb607e702014-04-07 15:39:10 -0700168#endif
169
170#ifndef HAVE_ARCH_BUG_ON
Arnd Bergmann3c047052015-11-21 00:27:26 +0100171#define BUG_ON(condition) do { if (condition) BUG(); } while (0)
Josh Triplettb607e702014-04-07 15:39:10 -0700172#endif
173
174#ifndef HAVE_ARCH_WARN_ON
175#define WARN_ON(condition) ({ \
176 int __ret_warn_on = !!(condition); \
177 unlikely(__ret_warn_on); \
178})
179#endif
180
181#ifndef WARN
182#define WARN(condition, format...) ({ \
183 int __ret_warn_on = !!(condition); \
Josh Triplett4e50ebde2014-04-07 15:39:12 -0700184 no_printk(format); \
Josh Triplettb607e702014-04-07 15:39:10 -0700185 unlikely(__ret_warn_on); \
186})
187#endif
188
189#define WARN_ON_ONCE(condition) WARN_ON(condition)
190#define WARN_ONCE(condition, format...) WARN(condition, format)
191#define WARN_TAINT(condition, taint, format...) WARN(condition, format)
192#define WARN_TAINT_ONCE(condition, taint, format...) WARN(condition, format)
193
194#endif
195
Steven Rostedt2092e6b2011-03-17 15:21:06 -0400196/*
197 * WARN_ON_SMP() is for cases that the warning is either
198 * meaningless for !SMP or may even cause failures.
199 * This is usually used for cases that we have
200 * WARN_ON(!spin_is_locked(&lock)) checks, as spin_is_locked()
201 * returns 0 for uniprocessor settings.
202 * It can also be used with values that are only defined
203 * on SMP:
204 *
205 * struct foo {
206 * [...]
207 * #ifdef CONFIG_SMP
208 * int bar;
209 * #endif
210 * };
211 *
212 * void func(struct foo *zoot)
213 * {
214 * WARN_ON_SMP(!zoot->bar);
215 *
216 * For CONFIG_SMP, WARN_ON_SMP() should act the same as WARN_ON(),
217 * and should be a nop and return false for uniprocessor.
218 *
219 * if (WARN_ON_SMP(x)) returns true only when CONFIG_SMP is set
220 * and x is true.
221 */
Ingo Molnar8eb94f82006-06-27 02:54:50 -0700222#ifdef CONFIG_SMP
223# define WARN_ON_SMP(x) WARN_ON(x)
224#else
Steven Rostedtccd0d442011-03-25 16:21:06 -0400225/*
226 * Use of ({0;}) because WARN_ON_SMP(x) may be used either as
227 * a stand alone line statement or as a condition in an if ()
228 * statement.
229 * A simple "0" would cause gcc to give a "statement has no effect"
230 * warning.
231 */
Steven Rostedt2092e6b2011-03-17 15:21:06 -0400232# define WARN_ON_SMP(x) ({0;})
Ingo Molnar8eb94f82006-06-27 02:54:50 -0700233#endif
234
Paul Mundt2603efa2012-06-18 13:54:17 +0900235#endif /* __ASSEMBLY__ */
236
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237#endif