Loading...
1/* SPDX-License-Identifier: GPL-2.0 */
2#ifndef _LINUX_BUG_H
3#define _LINUX_BUG_H
4
5#include <asm/bug.h>
6#include <linux/compiler.h>
7#include <linux/build_bug.h>
8
9enum bug_trap_type {
10 BUG_TRAP_TYPE_NONE = 0,
11 BUG_TRAP_TYPE_WARN = 1,
12 BUG_TRAP_TYPE_BUG = 2,
13};
14
15struct pt_regs;
16
17#ifdef __CHECKER__
18#define MAYBE_BUILD_BUG_ON(cond) (0)
19#else /* __CHECKER__ */
20
21#define MAYBE_BUILD_BUG_ON(cond) \
22 do { \
23 if (__builtin_constant_p((cond))) \
24 BUILD_BUG_ON(cond); \
25 else \
26 BUG_ON(cond); \
27 } while (0)
28
29#endif /* __CHECKER__ */
30
31#ifdef CONFIG_GENERIC_BUG
32#include <asm-generic/bug.h>
33
34static inline int is_warning_bug(const struct bug_entry *bug)
35{
36 return bug->flags & BUGFLAG_WARNING;
37}
38
39struct bug_entry *find_bug(unsigned long bugaddr);
40
41enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs);
42
43/* These are defined by the architecture */
44int is_valid_bugaddr(unsigned long addr);
45
46void generic_bug_clear_once(void);
47
48#else /* !CONFIG_GENERIC_BUG */
49
50static inline void *find_bug(unsigned long bugaddr)
51{
52 return NULL;
53}
54
55static inline enum bug_trap_type report_bug(unsigned long bug_addr,
56 struct pt_regs *regs)
57{
58 return BUG_TRAP_TYPE_BUG;
59}
60
61
62static inline void generic_bug_clear_once(void) {}
63
64#endif /* CONFIG_GENERIC_BUG */
65
66/*
67 * Since detected data corruption should stop operation on the affected
68 * structures. Return value must be checked and sanely acted on by caller.
69 */
70static inline __must_check bool check_data_corruption(bool v) { return v; }
71#define CHECK_DATA_CORRUPTION(condition, fmt, ...) \
72 check_data_corruption(({ \
73 bool corruption = unlikely(condition); \
74 if (corruption) { \
75 if (IS_ENABLED(CONFIG_BUG_ON_DATA_CORRUPTION)) { \
76 pr_err(fmt, ##__VA_ARGS__); \
77 BUG(); \
78 } else \
79 WARN(1, fmt, ##__VA_ARGS__); \
80 } \
81 corruption; \
82 }))
83
84#endif /* _LINUX_BUG_H */
1#ifndef _LINUX_BUG_H
2#define _LINUX_BUG_H
3
4#include <asm/bug.h>
5
6enum bug_trap_type {
7 BUG_TRAP_TYPE_NONE = 0,
8 BUG_TRAP_TYPE_WARN = 1,
9 BUG_TRAP_TYPE_BUG = 2,
10};
11
12struct pt_regs;
13
14#ifdef __CHECKER__
15#define BUILD_BUG_ON_NOT_POWER_OF_2(n)
16#define BUILD_BUG_ON_ZERO(e) (0)
17#define BUILD_BUG_ON_NULL(e) ((void*)0)
18#define BUILD_BUG_ON(condition)
19#define BUILD_BUG() (0)
20#else /* __CHECKER__ */
21
22/* Force a compilation error if a constant expression is not a power of 2 */
23#define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
24 BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
25
26/* Force a compilation error if condition is true, but also produce a
27 result (of value 0 and type size_t), so the expression can be used
28 e.g. in a structure initializer (or where-ever else comma expressions
29 aren't permitted). */
30#define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
31#define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
32
33/*
34 * BUILD_BUG_ON_INVALID() permits the compiler to check the validity of the
35 * expression but avoids the generation of any code, even if that expression
36 * has side-effects.
37 */
38#define BUILD_BUG_ON_INVALID(e) ((void)(sizeof((__force long)(e))))
39
40/**
41 * BUILD_BUG_ON - break compile if a condition is true.
42 * @condition: the condition which the compiler should know is false.
43 *
44 * If you have some code which relies on certain constants being equal, or
45 * other compile-time-evaluated condition, you should use BUILD_BUG_ON to
46 * detect if someone changes it.
47 *
48 * The implementation uses gcc's reluctance to create a negative array, but
49 * gcc (as of 4.4) only emits that error for obvious cases (eg. not arguments
50 * to inline functions). So as a fallback we use the optimizer; if it can't
51 * prove the condition is false, it will cause a link error on the undefined
52 * "__build_bug_on_failed". This error message can be harder to track down
53 * though, hence the two different methods.
54 */
55#ifndef __OPTIMIZE__
56#define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
57#else
58extern int __build_bug_on_failed;
59#define BUILD_BUG_ON(condition) \
60 do { \
61 ((void)sizeof(char[1 - 2*!!(condition)])); \
62 if (condition) __build_bug_on_failed = 1; \
63 } while(0)
64#endif
65
66/**
67 * BUILD_BUG - break compile if used.
68 *
69 * If you have some code that you expect the compiler to eliminate at
70 * build time, you should use BUILD_BUG to detect if it is
71 * unexpectedly used.
72 */
73#define BUILD_BUG() \
74 do { \
75 extern void __build_bug_failed(void) \
76 __linktime_error("BUILD_BUG failed"); \
77 __build_bug_failed(); \
78 } while (0)
79
80#endif /* __CHECKER__ */
81
82#ifdef CONFIG_GENERIC_BUG
83#include <asm-generic/bug.h>
84
85static inline int is_warning_bug(const struct bug_entry *bug)
86{
87 return bug->flags & BUGFLAG_WARNING;
88}
89
90const struct bug_entry *find_bug(unsigned long bugaddr);
91
92enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs);
93
94/* These are defined by the architecture */
95int is_valid_bugaddr(unsigned long addr);
96
97#else /* !CONFIG_GENERIC_BUG */
98
99static inline enum bug_trap_type report_bug(unsigned long bug_addr,
100 struct pt_regs *regs)
101{
102 return BUG_TRAP_TYPE_BUG;
103}
104
105#endif /* CONFIG_GENERIC_BUG */
106#endif /* _LINUX_BUG_H */