bug.h 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. #ifndef _LINUX_BUG_H
  2. #define _LINUX_BUG_H
  3. #include <asm/bug.h>
  4. #include <linux/compiler.h>
  5. enum bug_trap_type {
  6. BUG_TRAP_TYPE_NONE = 0,
  7. BUG_TRAP_TYPE_WARN = 1,
  8. BUG_TRAP_TYPE_BUG = 2,
  9. };
  10. struct pt_regs;
  11. #ifdef __CHECKER__
  12. #define __BUILD_BUG_ON_NOT_POWER_OF_2(n) (0)
  13. #define BUILD_BUG_ON_NOT_POWER_OF_2(n) (0)
  14. #define BUILD_BUG_ON_ZERO(e) (0)
  15. #define BUILD_BUG_ON_NULL(e) ((void*)0)
  16. #define BUILD_BUG_ON_INVALID(e) (0)
  17. #define BUILD_BUG_ON_MSG(cond, msg) (0)
  18. #define BUILD_BUG_ON(condition) (0)
  19. #define BUILD_BUG() (0)
  20. #define MAYBE_BUILD_BUG_ON(cond) (0)
  21. #else /* __CHECKER__ */
  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) & ((n) - 1)) != 0)
  25. #define BUILD_BUG_ON_NOT_POWER_OF_2(n) \
  26. BUILD_BUG_ON((n) == 0 || (((n) & ((n) - 1)) != 0))
  27. /* Force a compilation error if condition is true, but also produce a
  28. result (of value 0 and type size_t), so the expression can be used
  29. e.g. in a structure initializer (or where-ever else comma expressions
  30. aren't permitted). */
  31. #define BUILD_BUG_ON_ZERO(e) (sizeof(struct { int:-!!(e); }))
  32. #define BUILD_BUG_ON_NULL(e) ((void *)sizeof(struct { int:-!!(e); }))
  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. * BUILD_BUG_ON_MSG - break compile if a condition is true & emit supplied
  41. * error message.
  42. * @condition: the condition which the compiler should know is false.
  43. *
  44. * See BUILD_BUG_ON for description.
  45. */
  46. #define BUILD_BUG_ON_MSG(cond, msg) compiletime_assert(!(cond), msg)
  47. /**
  48. * BUILD_BUG_ON - break compile if a condition is true.
  49. * @condition: the condition which the compiler should know is false.
  50. *
  51. * If you have some code which relies on certain constants being equal, or
  52. * some other compile-time-evaluated condition, you should use BUILD_BUG_ON to
  53. * detect if someone changes it.
  54. *
  55. * The implementation uses gcc's reluctance to create a negative array, but gcc
  56. * (as of 4.4) only emits that error for obvious cases (e.g. not arguments to
  57. * inline functions). Luckily, in 4.3 they added the "error" function
  58. * attribute just for this type of case. Thus, we use a negative sized array
  59. * (should always create an error on gcc versions older than 4.4) and then call
  60. * an undefined function with the error attribute (should always create an
  61. * error on gcc 4.3 and later). If for some reason, neither creates a
  62. * compile-time error, we'll still have a link-time error, which is harder to
  63. * track down.
  64. */
  65. #ifndef __OPTIMIZE__
  66. #define BUILD_BUG_ON(condition) ((void)sizeof(char[1 - 2*!!(condition)]))
  67. #else
  68. #define BUILD_BUG_ON(condition) \
  69. BUILD_BUG_ON_MSG(condition, "BUILD_BUG_ON failed: " #condition)
  70. #endif
  71. /**
  72. * BUILD_BUG - break compile if used.
  73. *
  74. * If you have some code that you expect the compiler to eliminate at
  75. * build time, you should use BUILD_BUG to detect if it is
  76. * unexpectedly used.
  77. */
  78. #define BUILD_BUG() BUILD_BUG_ON_MSG(1, "BUILD_BUG failed")
  79. #define MAYBE_BUILD_BUG_ON(cond) \
  80. do { \
  81. if (__builtin_constant_p((cond))) \
  82. BUILD_BUG_ON(cond); \
  83. else \
  84. BUG_ON(cond); \
  85. } while (0)
  86. #endif /* __CHECKER__ */
  87. #ifdef CONFIG_GENERIC_BUG
  88. #include <asm-generic/bug.h>
  89. static inline int is_warning_bug(const struct bug_entry *bug)
  90. {
  91. return bug->flags & BUGFLAG_WARNING;
  92. }
  93. const struct bug_entry *find_bug(unsigned long bugaddr);
  94. enum bug_trap_type report_bug(unsigned long bug_addr, struct pt_regs *regs);
  95. /* These are defined by the architecture */
  96. int is_valid_bugaddr(unsigned long addr);
  97. #else /* !CONFIG_GENERIC_BUG */
  98. static inline enum bug_trap_type report_bug(unsigned long bug_addr,
  99. struct pt_regs *regs)
  100. {
  101. return BUG_TRAP_TYPE_BUG;
  102. }
  103. #endif /* CONFIG_GENERIC_BUG */
  104. #endif /* _LINUX_BUG_H */