kernel/lib.rs
1// SPDX-License-Identifier: GPL-2.0
2
3//! The `kernel` crate.
4//!
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.
7//!
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`] and this crate.
10//!
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.
13
14#![no_std]
15//
16// Please see https://github.com/Rust-for-Linux/linux/issues/2 for details on
17// the unstable features in use.
18//
19// Stable since Rust 1.79.0.
20#![feature(generic_nonzero)]
21#![feature(inline_const)]
22#![feature(pointer_is_aligned)]
23//
24// Stable since Rust 1.80.0.
25#![feature(slice_flatten)]
26//
27// Stable since Rust 1.81.0.
28#![feature(lint_reasons)]
29//
30// Stable since Rust 1.82.0.
31#![feature(raw_ref_op)]
32//
33// Stable since Rust 1.83.0.
34#![feature(const_maybe_uninit_as_mut_ptr)]
35#![feature(const_mut_refs)]
36#![feature(const_option)]
37#![feature(const_ptr_write)]
38#![feature(const_refs_to_cell)]
39//
40// Expected to become stable.
41#![feature(arbitrary_self_types)]
42//
43// To be determined.
44#![feature(used_with_arg)]
45//
46// `feature(derive_coerce_pointee)` is expected to become stable. Before Rust
47// 1.84.0, it did not exist, so enable the predecessor features.
48#![cfg_attr(CONFIG_RUSTC_HAS_COERCE_POINTEE, feature(derive_coerce_pointee))]
49#![cfg_attr(not(CONFIG_RUSTC_HAS_COERCE_POINTEE), feature(coerce_unsized))]
50#![cfg_attr(not(CONFIG_RUSTC_HAS_COERCE_POINTEE), feature(dispatch_from_dyn))]
51#![cfg_attr(not(CONFIG_RUSTC_HAS_COERCE_POINTEE), feature(unsize))]
52//
53// `feature(file_with_nul)` is expected to become stable. Before Rust 1.89.0, it did not exist, so
54// enable it conditionally.
55#![cfg_attr(CONFIG_RUSTC_HAS_FILE_WITH_NUL, feature(file_with_nul))]
56
57// Ensure conditional compilation based on the kernel configuration works;
58// otherwise we may silently break things like initcall handling.
59#[cfg(not(CONFIG_RUST))]
60compile_error!("Missing kernel configuration for conditional compilation");
61
62// Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate).
63extern crate self as kernel;
64
65pub use ffi;
66
67pub mod acpi;
68pub mod alloc;
69#[cfg(CONFIG_AUXILIARY_BUS)]
70pub mod auxiliary;
71pub mod bitmap;
72pub mod bits;
73#[cfg(CONFIG_BLOCK)]
74pub mod block;
75pub mod bug;
76#[doc(hidden)]
77pub mod build_assert;
78pub mod clk;
79#[cfg(CONFIG_CONFIGFS_FS)]
80pub mod configfs;
81pub mod cpu;
82#[cfg(CONFIG_CPU_FREQ)]
83pub mod cpufreq;
84pub mod cpumask;
85pub mod cred;
86pub mod debugfs;
87pub mod device;
88pub mod device_id;
89pub mod devres;
90pub mod dma;
91pub mod driver;
92#[cfg(CONFIG_DRM = "y")]
93pub mod drm;
94pub mod error;
95pub mod faux;
96#[cfg(CONFIG_RUST_FW_LOADER_ABSTRACTIONS)]
97pub mod firmware;
98pub mod fmt;
99pub mod fs;
100#[cfg(CONFIG_I2C = "y")]
101pub mod i2c;
102pub mod id_pool;
103pub mod init;
104pub mod io;
105pub mod ioctl;
106pub mod iov;
107pub mod irq;
108pub mod jump_label;
109#[cfg(CONFIG_KUNIT)]
110pub mod kunit;
111pub mod list;
112pub mod maple_tree;
113pub mod miscdevice;
114pub mod mm;
115pub mod module_param;
116#[cfg(CONFIG_NET)]
117pub mod net;
118pub mod num;
119pub mod of;
120#[cfg(CONFIG_PM_OPP)]
121pub mod opp;
122pub mod page;
123#[cfg(CONFIG_PCI)]
124pub mod pci;
125pub mod pid_namespace;
126pub mod platform;
127pub mod prelude;
128pub mod print;
129pub mod processor;
130pub mod ptr;
131#[cfg(CONFIG_RUST_PWM_ABSTRACTIONS)]
132pub mod pwm;
133pub mod rbtree;
134pub mod regulator;
135pub mod revocable;
136pub mod scatterlist;
137pub mod security;
138pub mod seq_file;
139pub mod sizes;
140pub mod slice;
141#[cfg(CONFIG_SOC_BUS)]
142pub mod soc;
143mod static_assert;
144#[doc(hidden)]
145pub mod std_vendor;
146pub mod str;
147pub mod sync;
148pub mod task;
149pub mod time;
150pub mod tracepoint;
151pub mod transmute;
152pub mod types;
153pub mod uaccess;
154#[cfg(CONFIG_USB = "y")]
155pub mod usb;
156pub mod workqueue;
157pub mod xarray;
158
159#[doc(hidden)]
160pub use bindings;
161pub use macros;
162pub use uapi;
163
164/// Prefix to appear before log messages printed from within the `kernel` crate.
165const __LOG_PREFIX: &[u8] = b"rust_kernel\0";
166
167/// The top level entrypoint to implementing a kernel module.
168///
169/// For any teardown or cleanup operations, your type may implement [`Drop`].
170pub trait Module: Sized + Sync + Send {
171 /// Called at module initialization time.
172 ///
173 /// Use this method to perform whatever setup or registration your module
174 /// should do.
175 ///
176 /// Equivalent to the `module_init` macro in the C API.
177 fn init(module: &'static ThisModule) -> error::Result<Self>;
178}
179
180/// A module that is pinned and initialised in-place.
181pub trait InPlaceModule: Sync + Send {
182 /// Creates an initialiser for the module.
183 ///
184 /// It is called when the module is loaded.
185 fn init(module: &'static ThisModule) -> impl pin_init::PinInit<Self, error::Error>;
186}
187
188impl<T: Module> InPlaceModule for T {
189 fn init(module: &'static ThisModule) -> impl pin_init::PinInit<Self, error::Error> {
190 let initer = move |slot: *mut Self| {
191 let m = <Self as Module>::init(module)?;
192
193 // SAFETY: `slot` is valid for write per the contract with `pin_init_from_closure`.
194 unsafe { slot.write(m) };
195 Ok(())
196 };
197
198 // SAFETY: On success, `initer` always fully initialises an instance of `Self`.
199 unsafe { pin_init::pin_init_from_closure(initer) }
200 }
201}
202
203/// Metadata attached to a [`Module`] or [`InPlaceModule`].
204pub trait ModuleMetadata {
205 /// The name of the module as specified in the `module!` macro.
206 const NAME: &'static crate::str::CStr;
207}
208
209/// Equivalent to `THIS_MODULE` in the C API.
210///
211/// C header: [`include/linux/init.h`](srctree/include/linux/init.h)
212pub struct ThisModule(*mut bindings::module);
213
214// SAFETY: `THIS_MODULE` may be used from all threads within a module.
215unsafe impl Sync for ThisModule {}
216
217impl ThisModule {
218 /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer.
219 ///
220 /// # Safety
221 ///
222 /// The pointer must be equal to the right `THIS_MODULE`.
223 pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule {
224 ThisModule(ptr)
225 }
226
227 /// Access the raw pointer for this module.
228 ///
229 /// It is up to the user to use it correctly.
230 pub const fn as_ptr(&self) -> *mut bindings::module {
231 self.0
232 }
233}
234
235#[cfg(not(testlib))]
236#[panic_handler]
237fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
238 pr_emerg!("{}\n", info);
239 // SAFETY: FFI call.
240 unsafe { bindings::BUG() };
241}
242
243/// Produces a pointer to an object from a pointer to one of its fields.
244///
245/// If you encounter a type mismatch due to the [`Opaque`] type, then use [`Opaque::cast_into`] or
246/// [`Opaque::cast_from`] to resolve the mismatch.
247///
248/// [`Opaque`]: crate::types::Opaque
249/// [`Opaque::cast_into`]: crate::types::Opaque::cast_into
250/// [`Opaque::cast_from`]: crate::types::Opaque::cast_from
251///
252/// # Safety
253///
254/// The pointer passed to this macro, and the pointer returned by this macro, must both be in
255/// bounds of the same allocation.
256///
257/// # Examples
258///
259/// ```
260/// # use kernel::container_of;
261/// struct Test {
262/// a: u64,
263/// b: u32,
264/// }
265///
266/// let test = Test { a: 10, b: 20 };
267/// let b_ptr: *const _ = &test.b;
268/// // SAFETY: The pointer points at the `b` field of a `Test`, so the resulting pointer will be
269/// // in-bounds of the same allocation as `b_ptr`.
270/// let test_alias = unsafe { container_of!(b_ptr, Test, b) };
271/// assert!(core::ptr::eq(&test, test_alias));
272/// ```
273#[macro_export]
274macro_rules! container_of {
275 ($field_ptr:expr, $Container:ty, $($fields:tt)*) => {{
276 let offset: usize = ::core::mem::offset_of!($Container, $($fields)*);
277 let field_ptr = $field_ptr;
278 let container_ptr = field_ptr.byte_sub(offset).cast::<$Container>();
279 $crate::assert_same_type(field_ptr, (&raw const (*container_ptr).$($fields)*).cast_mut());
280 container_ptr
281 }}
282}
283
284/// Helper for [`container_of!`].
285#[doc(hidden)]
286pub fn assert_same_type<T>(_: T, _: T) {}
287
288/// Helper for `.rs.S` files.
289#[doc(hidden)]
290#[macro_export]
291macro_rules! concat_literals {
292 ($( $asm:literal )* ) => {
293 ::core::concat!($($asm),*)
294 };
295}
296
297/// Wrapper around `asm!` configured for use in the kernel.
298///
299/// Uses a semicolon to avoid parsing ambiguities, even though this does not match native `asm!`
300/// syntax.
301// For x86, `asm!` uses intel syntax by default, but we want to use at&t syntax in the kernel.
302#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
303#[macro_export]
304macro_rules! asm {
305 ($($asm:expr),* ; $($rest:tt)*) => {
306 ::core::arch::asm!( $($asm)*, options(att_syntax), $($rest)* )
307 };
308}
309
310/// Wrapper around `asm!` configured for use in the kernel.
311///
312/// Uses a semicolon to avoid parsing ambiguities, even though this does not match native `asm!`
313/// syntax.
314// For non-x86 arches we just pass through to `asm!`.
315#[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
316#[macro_export]
317macro_rules! asm {
318 ($($asm:expr),* ; $($rest:tt)*) => {
319 ::core::arch::asm!( $($asm)*, $($rest)* )
320 };
321}
322
323/// Gets the C string file name of a [`Location`].
324///
325/// If `Location::file_as_c_str()` is not available, returns a string that warns about it.
326///
327/// [`Location`]: core::panic::Location
328///
329/// # Examples
330///
331/// ```
332/// # use kernel::file_from_location;
333///
334/// #[track_caller]
335/// fn foo() {
336/// let caller = core::panic::Location::caller();
337///
338/// // Output:
339/// // - A path like "rust/kernel/example.rs" if `file_as_c_str()` is available.
340/// // - "<Location::file_as_c_str() not supported>" otherwise.
341/// let caller_file = file_from_location(caller);
342///
343/// // Prints out the message with caller's file name.
344/// pr_info!("foo() called in file {caller_file:?}\n");
345///
346/// # if cfg!(CONFIG_RUSTC_HAS_FILE_WITH_NUL) {
347/// # assert_eq!(Ok(caller.file()), caller_file.to_str());
348/// # }
349/// }
350///
351/// # foo();
352/// ```
353#[inline]
354pub fn file_from_location<'a>(loc: &'a core::panic::Location<'a>) -> &'a core::ffi::CStr {
355 #[cfg(CONFIG_RUSTC_HAS_FILE_AS_C_STR)]
356 {
357 loc.file_as_c_str()
358 }
359
360 #[cfg(all(CONFIG_RUSTC_HAS_FILE_WITH_NUL, not(CONFIG_RUSTC_HAS_FILE_AS_C_STR)))]
361 {
362 loc.file_with_nul()
363 }
364
365 #[cfg(not(CONFIG_RUSTC_HAS_FILE_WITH_NUL))]
366 {
367 let _ = loc;
368 c"<Location::file_as_c_str() not supported>"
369 }
370}