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