* [PATCH v3] rust: bug: Add bug macro
@ 2026-07-12 10:28 FUJITA Tomonori
2026-07-12 21:53 ` kernel test robot
0 siblings, 1 reply; 2+ messages in thread
From: FUJITA Tomonori @ 2026-07-12 10:28 UTC (permalink / raw)
To: ojeda
Cc: gregkh, a.hindborg, acourbot, aliceryhl, bjorn3_gh, boqun, dakr,
daniel.almeida, gary, lossin, tamird, tmgross, work,
rust-for-linux, FUJITA Tomonori
From: FUJITA Tomonori <fujita.tomonori@gmail.com>
Add bug macro(), the Rust equivalent of the C's BUG(), which uses
the BUG/WARN feature (lib/bug.c) via assembly for
x86_64/arm64/riscv/s390 like warn_on() macro.
bindings::BUG() is already in use today, indirectly, from the kernel
crate itself and from drivers such as binder and nova-core, via
panic!()/.exepct()/.unwrap() on invariants that "can't happen". All of
those funnel through panic() in kernel/lib.rs (#[panic_handler]),
which itself calls BUG().
The motivation for this patch is narrow: replace that bindings::BUG()
call in lib.rs's panic() with bug!(), for a somewhat better trace. It
isn't adding a new decision to crash the system -- that decision is
already made at each of the existing panic!()/.expect() call sites.
The bug() macro is currently for internal use only, so it is marked
`#[doc(hidden)]`.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
---
v3
- Make some macro branches wrapped in {{ ... }}
- Fix typos
- Fix UML compile failure
v2: https://lore.kernel.org/rust-for-linux/20260709000103.2912159-1-tomo@aliasing.net/
- Replace bindings::BUG in lib.rs with bug!() to make the motivation clear
- Add #[doc(hidden)] to make clear that bug!() is for internal use only
- Add the bug!() macro, rather than bug_on!(), as the straightforward
choice for replacing bindings::BUG.
v1: https://lore.kernel.org/rust-for-linux/20260707143026.2774023-1-tomo@aliasing.net/
---
rust/kernel/bug.rs | 100 +++++++++++++++++++++++++++++++--------------
rust/kernel/lib.rs | 3 +-
2 files changed, 71 insertions(+), 32 deletions(-)
diff --git a/rust/kernel/bug.rs b/rust/kernel/bug.rs
index ed943960f851..25f3c2fbc12a 100644
--- a/rust/kernel/bug.rs
+++ b/rust/kernel/bug.rs
@@ -11,9 +11,13 @@
#[cfg(all(CONFIG_BUG, not(CONFIG_UML), not(CONFIG_LOONGARCH), not(CONFIG_ARM)))]
#[cfg(CONFIG_DEBUG_BUGVERBOSE)]
macro_rules! warn_flags {
- ($file:expr, $flags:expr) => {
- const FLAGS: u32 = $crate::bindings::BUGFLAG_WARNING | $flags;
- const _FILE: &[u8] = $file.as_bytes();
+ ($cond:expr, $flags:expr, $asm_tail:expr) => {{
+ #[cfg(CONFIG_DEBUG_BUGVERBOSE_DETAILED)]
+ const _COND_STR: &str = concat!("[", stringify!($cond), "] ", file!());
+ #[cfg(not(CONFIG_DEBUG_BUGVERBOSE_DETAILED))]
+ const _COND_STR: &str = file!();
+
+ const _FILE: &[u8] = _COND_STR.as_bytes();
// Plus one for null-terminator.
static FILE: [u8; _FILE.len() + 1] = {
let mut bytes = [0; _FILE.len() + 1];
@@ -24,6 +28,7 @@ macro_rules! warn_flags {
}
bytes
};
+ const FLAGS: u32 = $flags;
// SAFETY:
// - `file`, `line`, `flags`, and `size` are all compile-time constants or
@@ -35,14 +40,14 @@ macro_rules! warn_flags {
concat!(
"/* {size} */",
include!(concat!(env!("OBJTREE"), "/rust/kernel/generated_arch_warn_asm.rs")),
- include!(concat!(env!("OBJTREE"), "/rust/kernel/generated_arch_reachable_asm.rs")));
+ $asm_tail);
file = sym FILE,
line = const line!(),
flags = const FLAGS,
size = const ::core::mem::size_of::<$crate::bindings::bug_entry>(),
);
}
- }
+ }};
}
#[macro_export]
@@ -50,8 +55,8 @@ macro_rules! warn_flags {
#[cfg(all(CONFIG_BUG, not(CONFIG_UML), not(CONFIG_LOONGARCH), not(CONFIG_ARM)))]
#[cfg(not(CONFIG_DEBUG_BUGVERBOSE))]
macro_rules! warn_flags {
- ($file:expr, $flags:expr) => {
- const FLAGS: u32 = $crate::bindings::BUGFLAG_WARNING | $flags;
+ ($cond:expr, $flags:expr, $asm_tail:expr) => {{
+ const FLAGS: u32 = $flags;
// SAFETY:
// - `flags` and `size` are all compile-time constants, preventing
@@ -63,28 +68,35 @@ macro_rules! warn_flags {
concat!(
"/* {size} */",
include!(concat!(env!("OBJTREE"), "/rust/kernel/generated_arch_warn_asm.rs")),
- include!(concat!(env!("OBJTREE"), "/rust/kernel/generated_arch_reachable_asm.rs")));
+ $asm_tail);
flags = const FLAGS,
size = const ::core::mem::size_of::<$crate::bindings::bug_entry>(),
);
}
- }
+ }};
}
#[macro_export]
#[doc(hidden)]
#[cfg(all(CONFIG_BUG, CONFIG_UML))]
macro_rules! warn_flags {
- ($file:expr, $flags:expr) => {
- // SAFETY: It is always safe to call `warn_slowpath_fmt()`
- // with a valid null-terminated string.
- unsafe {
- $crate::bindings::warn_slowpath_fmt(
- $crate::c_str!(::core::file!()).as_char_ptr(),
- line!() as $crate::ffi::c_int,
- $flags as $crate::ffi::c_uint,
- ::core::ptr::null(),
- );
+ ($cond:expr, $flags:expr, $asm_tail:expr) => {
+ // bug!() sets $flags to 0, so we can use that to determine
+ // whether to call BUG() or WARN_ON().
+ if $flags == 0 {
+ // SAFETY: It is always safe to call `BUG()`.
+ unsafe { $crate::bindings::BUG() }
+ } else {
+ // SAFETY: It is always safe to call `warn_slowpath_fmt()`
+ // with a valid null-terminated string.
+ unsafe {
+ $crate::bindings::warn_slowpath_fmt(
+ $crate::str::CStrExt::as_char_ptr($crate::c_str!(::core::file!())),
+ line!() as $crate::ffi::c_int,
+ $flags as $crate::ffi::c_uint,
+ ::core::ptr::null(),
+ );
+ }
}
};
}
@@ -93,9 +105,16 @@ macro_rules! warn_flags {
#[doc(hidden)]
#[cfg(all(CONFIG_BUG, any(CONFIG_LOONGARCH, CONFIG_ARM)))]
macro_rules! warn_flags {
- ($file:expr, $flags:expr) => {
- // SAFETY: It is always safe to call `WARN_ON()`.
- unsafe { $crate::bindings::WARN_ON(true) }
+ ($cond:expr, $flags:expr, $asm_tail:expr) => {
+ // bug!() sets $flags to 0, so we can use that to determine
+ // whether to call BUG() or WARN_ON().
+ if $flags == 0 {
+ // SAFETY: It is always safe to call `BUG()`.
+ unsafe { $crate::bindings::BUG() }
+ } else {
+ // SAFETY: It is always safe to call `WARN_ON()`.
+ unsafe { $crate::bindings::WARN_ON(true) }
+ }
};
}
@@ -103,7 +122,11 @@ macro_rules! warn_flags {
#[doc(hidden)]
#[cfg(not(CONFIG_BUG))]
macro_rules! warn_flags {
- ($file:expr, $flags:expr) => {};
+ ($cond:expr, $flags:expr, $asm_tail:expr) => {
+ if $flags == 0 {
+ loop {}
+ }
+ };
}
#[doc(hidden)]
@@ -117,16 +140,33 @@ macro_rules! warn_on {
($cond:expr) => {{
let cond = $cond;
- #[cfg(CONFIG_DEBUG_BUGVERBOSE_DETAILED)]
- const _COND_STR: &str = concat!("[", stringify!($cond), "] ", file!());
- #[cfg(not(CONFIG_DEBUG_BUGVERBOSE_DETAILED))]
- const _COND_STR: &str = file!();
-
if cond {
- const WARN_ON_FLAGS: u32 = $crate::bug::bugflag_taint($crate::bindings::TAINT_WARN);
+ #[cfg(any(not(CONFIG_BUG), CONFIG_UML))]
+ const WARN_ON_FLAGS: u32 = $crate::bindings::TAINT_WARN;
+ #[cfg(all(CONFIG_BUG, not(CONFIG_UML)))]
+ const WARN_ON_FLAGS: u32 = $crate::bindings::BUGFLAG_WARNING
+ | $crate::bug::bugflag_taint($crate::bindings::TAINT_WARN);
- $crate::warn_flags!(_COND_STR, WARN_ON_FLAGS);
+ $crate::warn_flags!(
+ $cond,
+ WARN_ON_FLAGS,
+ include!(concat!(
+ env!("OBJTREE"),
+ "/rust/kernel/generated_arch_reachable_asm.rs"
+ ))
+ );
}
cond
}};
}
+
+/// Reports an unrecoverable kernel bug.
+#[macro_export]
+#[doc(hidden)]
+macro_rules! bug {
+ () => {{
+ $crate::warn_flags!(true, 0, "");
+ // SAFETY: We call `BUG()` above so this block will never be reached.
+ unsafe { core::hint::unreachable_unchecked() }
+ }};
+}
diff --git a/rust/kernel/lib.rs b/rust/kernel/lib.rs
index 9512af7156df..41bfe5a20287 100644
--- a/rust/kernel/lib.rs
+++ b/rust/kernel/lib.rs
@@ -217,8 +217,7 @@ pub const fn as_ptr(&self) -> *mut bindings::module {
#[panic_handler]
fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
pr_emerg!("{}\n", info);
- // SAFETY: FFI call.
- unsafe { bindings::BUG() };
+ crate::bug!();
}
/// Produces a pointer to an object from a pointer to one of its fields.
base-commit: dc59e4fea9d83f03bad6bddf3fa2e52491777482
--
2.43.0
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [PATCH v3] rust: bug: Add bug macro
2026-07-12 10:28 [PATCH v3] rust: bug: Add bug macro FUJITA Tomonori
@ 2026-07-12 21:53 ` kernel test robot
0 siblings, 0 replies; 2+ messages in thread
From: kernel test robot @ 2026-07-12 21:53 UTC (permalink / raw)
To: FUJITA Tomonori, ojeda
Cc: llvm, oe-kbuild-all, gregkh, a.hindborg, acourbot, aliceryhl,
bjorn3_gh, boqun, dakr, daniel.almeida, gary, lossin, tamird,
tmgross, work, rust-for-linux, FUJITA Tomonori
Hi FUJITA,
kernel test robot noticed the following build warnings:
[auto build test WARNING on dc59e4fea9d83f03bad6bddf3fa2e52491777482]
url: https://github.com/intel-lab-lkp/linux/commits/FUJITA-Tomonori/rust-bug-Add-bug-macro/20260712-183026
base: dc59e4fea9d83f03bad6bddf3fa2e52491777482
patch link: https://lore.kernel.org/r/20260712102802.3013600-1-tomo%40flapping.org
patch subject: [PATCH v3] rust: bug: Add bug macro
config: x86_64-rhel-9.4-rust (https://download.01.org/0day-ci/archive/20260713/202607130448.hVx2H0N9-lkp@intel.com/config)
compiler: clang version 22.1.3 (https://github.com/llvm/llvm-project e9846648fd6183ee6d8cbdb4502213fcf902a211)
rustc: rustc 1.96.0 (ac68faa20 2026-05-25)
reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20260713/202607130448.hVx2H0N9-lkp@intel.com/reproduce)
If you fix the issue in a separate patch/commit (i.e. not just a new version of
the same patch/commit), kindly add following tags
| Reported-by: kernel test robot <lkp@intel.com>
| Closes: https://lore.kernel.org/oe-kbuild-all/202607130448.hVx2H0N9-lkp@intel.com/
All warnings (new ones prefixed by >>):
>> vmlinux.o: warning: objtool: _RNvCsGIExRX8pES_7___rustc17rust_begin_unwind+0x47: unreachable instruction
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-07-12 21:54 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-12 10:28 [PATCH v3] rust: bug: Add bug macro FUJITA Tomonori
2026-07-12 21:53 ` kernel test robot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox