1 // SPDX-License-Identifier: GPL-2.0
3 //! The `kernel` crate.
5 //! This crate contains the kernel APIs that have been ported or wrapped for
6 //! usage by Rust code in the kernel and is shared by all of them.
8 //! In other words, all the rest of the Rust code in the kernel (e.g. kernel
9 //! modules written in Rust) depends on [`core`], [`alloc`] and this crate.
11 //! If you need a kernel C API that is not ported or wrapped yet here, then
12 //! do so first instead of bypassing this crate.
15 #![feature(coerce_unsized)]
16 #![feature(dispatch_from_dyn)]
17 #![feature(new_uninit)]
18 #![feature(receiver_trait)]
21 // Ensure conditional compilation based on the kernel configuration works;
22 // otherwise we may silently break things like initcall handling.
23 #[cfg(not(CONFIG_RUST))]
24 compile_error!("Missing kernel configuration for conditional compilation");
26 // Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate).
27 extern crate self as kernel;
35 #[cfg(CONFIG_RUST_FW_LOADER_ABSTRACTIONS)]
66 pub use build_error::build_error;
68 /// Prefix to appear before log messages printed from within the `kernel` crate.
69 const __LOG_PREFIX: &[u8] = b"rust_kernel\0";
71 /// The top level entrypoint to implementing a kernel module.
73 /// For any teardown or cleanup operations, your type may implement [`Drop`].
74 pub trait Module: Sized + Sync + Send {
75 /// Called at module initialization time.
77 /// Use this method to perform whatever setup or registration your module
80 /// Equivalent to the `module_init` macro in the C API.
81 fn init(module: &'static ThisModule) -> error::Result<Self>;
84 /// Equivalent to `THIS_MODULE` in the C API.
86 /// C header: [`include/linux/export.h`](srctree/include/linux/export.h)
87 pub struct ThisModule(*mut bindings::module);
89 // SAFETY: `THIS_MODULE` may be used from all threads within a module.
90 unsafe impl Sync for ThisModule {}
93 /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer.
97 /// The pointer must be equal to the right `THIS_MODULE`.
98 pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule {
102 /// Access the raw pointer for this module.
104 /// It is up to the user to use it correctly.
105 pub const fn as_ptr(&self) -> *mut bindings::module {
110 #[cfg(not(any(testlib, test)))]
112 fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
113 pr_emerg!("{}\n", info);
115 unsafe { bindings::BUG() };
118 /// Produces a pointer to an object from a pointer to one of its fields.
122 /// The pointer passed to this macro, and the pointer returned by this macro, must both be in
123 /// bounds of the same allocation.
128 /// # use kernel::container_of;
134 /// let test = Test { a: 10, b: 20 };
135 /// let b_ptr = &test.b;
136 /// // SAFETY: The pointer points at the `b` field of a `Test`, so the resulting pointer will be
137 /// // in-bounds of the same allocation as `b_ptr`.
138 /// let test_alias = unsafe { container_of!(b_ptr, Test, b) };
139 /// assert!(core::ptr::eq(&test, test_alias));
142 macro_rules! container_of {
143 ($ptr:expr, $type:ty, $($f:tt)*) => {{
144 let ptr = $ptr as *const _ as *const u8;
145 let offset: usize = ::core::mem::offset_of!($type, $($f)*);
146 ptr.sub(offset) as *const $type