Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 1 | #ifndef _LINUX_BUG_H |
| 2 | #define _LINUX_BUG_H |
| 3 | |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 4 | #include <asm/bug.h> |
Daniel Santos | a3ccc49 | 2013-02-21 16:41:52 -0800 | [diff] [blame] | 5 | #include <linux/compiler.h> |
Ian Abbott | bc6245e | 2017-07-10 15:51:07 -0700 | [diff] [blame] | 6 | #include <linux/build_bug.h> |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 7 | |
| 8 | enum bug_trap_type { |
| 9 | BUG_TRAP_TYPE_NONE = 0, |
| 10 | BUG_TRAP_TYPE_WARN = 1, |
| 11 | BUG_TRAP_TYPE_BUG = 2, |
| 12 | }; |
| 13 | |
Heiko Carstens | 608e261 | 2007-07-15 23:41:39 -0700 | [diff] [blame] | 14 | struct pt_regs; |
| 15 | |
Paul Gortmaker | 35edd91 | 2011-11-16 23:51:05 -0500 | [diff] [blame] | 16 | #ifdef __CHECKER__ |
Kirill A. Shutemov | ff20c2e | 2016-03-01 09:45:14 +0530 | [diff] [blame] | 17 | #define MAYBE_BUILD_BUG_ON(cond) (0) |
Paul Gortmaker | 35edd91 | 2011-11-16 23:51:05 -0500 | [diff] [blame] | 18 | #else /* __CHECKER__ */ |
| 19 | |
Kirill A. Shutemov | ff20c2e | 2016-03-01 09:45:14 +0530 | [diff] [blame] | 20 | #define MAYBE_BUILD_BUG_ON(cond) \ |
| 21 | do { \ |
| 22 | if (__builtin_constant_p((cond))) \ |
| 23 | BUILD_BUG_ON(cond); \ |
| 24 | else \ |
| 25 | BUG_ON(cond); \ |
| 26 | } while (0) |
| 27 | |
Paul Gortmaker | 35edd91 | 2011-11-16 23:51:05 -0500 | [diff] [blame] | 28 | #endif /* __CHECKER__ */ |
| 29 | |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 30 | #ifdef CONFIG_GENERIC_BUG |
| 31 | #include <asm-generic/bug.h> |
| 32 | |
| 33 | static inline int is_warning_bug(const struct bug_entry *bug) |
| 34 | { |
| 35 | return bug->flags & BUGFLAG_WARNING; |
| 36 | } |
| 37 | |
Peter Zijlstra | 19d4362 | 2017-02-25 08:56:53 +0100 | [diff] [blame] | 38 | struct bug_entry *find_bug(unsigned long bugaddr); |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 39 | |
Heiko Carstens | 608e261 | 2007-07-15 23:41:39 -0700 | [diff] [blame] | 40 | enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs); |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 41 | |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 42 | /* These are defined by the architecture */ |
| 43 | int is_valid_bugaddr(unsigned long addr); |
| 44 | |
| 45 | #else /* !CONFIG_GENERIC_BUG */ |
| 46 | |
Heiko Carstens | 608e261 | 2007-07-15 23:41:39 -0700 | [diff] [blame] | 47 | static inline enum bug_trap_type report_bug(unsigned long bug_addr, |
| 48 | struct pt_regs *regs) |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 49 | { |
| 50 | return BUG_TRAP_TYPE_BUG; |
| 51 | } |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 52 | |
| 53 | #endif /* CONFIG_GENERIC_BUG */ |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 54 | |
| 55 | /* |
| 56 | * Since detected data corruption should stop operation on the affected |
Kees Cook | 85caa95 | 2017-02-24 15:00:38 -0800 | [diff] [blame] | 57 | * structures. Return value must be checked and sanely acted on by caller. |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 58 | */ |
Kees Cook | 85caa95 | 2017-02-24 15:00:38 -0800 | [diff] [blame] | 59 | static inline __must_check bool check_data_corruption(bool v) { return v; } |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 60 | #define CHECK_DATA_CORRUPTION(condition, fmt, ...) \ |
Kees Cook | 85caa95 | 2017-02-24 15:00:38 -0800 | [diff] [blame] | 61 | check_data_corruption(({ \ |
| 62 | bool corruption = unlikely(condition); \ |
| 63 | if (corruption) { \ |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 64 | if (IS_ENABLED(CONFIG_BUG_ON_DATA_CORRUPTION)) { \ |
| 65 | pr_err(fmt, ##__VA_ARGS__); \ |
| 66 | BUG(); \ |
| 67 | } else \ |
| 68 | WARN(1, fmt, ##__VA_ARGS__); \ |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 69 | } \ |
Kees Cook | 85caa95 | 2017-02-24 15:00:38 -0800 | [diff] [blame] | 70 | corruption; \ |
| 71 | })) |
Kees Cook | de54ebb | 2016-08-17 14:42:11 -0700 | [diff] [blame] | 72 | |
Jeremy Fitzhardinge | 7664c5a | 2006-12-08 02:36:19 -0800 | [diff] [blame] | 73 | #endif /* _LINUX_BUG_H */ |