xref: /linux/rust/kernel/lib.rs (revision c2a96b7f187fb6a455836d4a6e113947ff11de97)
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`], [`alloc`] 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 #![feature(coerce_unsized)]
16 #![feature(dispatch_from_dyn)]
17 #![feature(new_uninit)]
18 #![feature(receiver_trait)]
19 #![feature(unsize)]
20 
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");
25 
26 // Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate).
27 extern crate self as kernel;
28 
29 pub mod alloc;
30 #[cfg(CONFIG_BLOCK)]
31 pub mod block;
32 mod build_assert;
33 pub mod device;
34 pub mod error;
35 #[cfg(CONFIG_RUST_FW_LOADER_ABSTRACTIONS)]
36 pub mod firmware;
37 pub mod init;
38 pub mod ioctl;
39 #[cfg(CONFIG_KUNIT)]
40 pub mod kunit;
41 #[cfg(CONFIG_NET)]
42 pub mod net;
43 pub mod prelude;
44 pub mod print;
45 mod static_assert;
46 #[doc(hidden)]
47 pub mod std_vendor;
48 pub mod str;
49 pub mod sync;
50 pub mod task;
51 pub mod time;
52 pub mod types;
53 pub mod workqueue;
54 
55 #[doc(hidden)]
56 pub use bindings;
57 pub use macros;
58 pub use uapi;
59 
60 #[doc(hidden)]
61 pub use build_error::build_error;
62 
63 /// Prefix to appear before log messages printed from within the `kernel` crate.
64 const __LOG_PREFIX: &[u8] = b"rust_kernel\0";
65 
66 /// The top level entrypoint to implementing a kernel module.
67 ///
68 /// For any teardown or cleanup operations, your type may implement [`Drop`].
69 pub trait Module: Sized + Sync + Send {
70     /// Called at module initialization time.
71     ///
72     /// Use this method to perform whatever setup or registration your module
73     /// should do.
74     ///
75     /// Equivalent to the `module_init` macro in the C API.
76     fn init(module: &'static ThisModule) -> error::Result<Self>;
77 }
78 
79 /// Equivalent to `THIS_MODULE` in the C API.
80 ///
81 /// C header: [`include/linux/export.h`](srctree/include/linux/export.h)
82 pub struct ThisModule(*mut bindings::module);
83 
84 // SAFETY: `THIS_MODULE` may be used from all threads within a module.
85 unsafe impl Sync for ThisModule {}
86 
87 impl ThisModule {
88     /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer.
89     ///
90     /// # Safety
91     ///
92     /// The pointer must be equal to the right `THIS_MODULE`.
93     pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule {
94         ThisModule(ptr)
95     }
96 
97     /// Access the raw pointer for this module.
98     ///
99     /// It is up to the user to use it correctly.
100     pub const fn as_ptr(&self) -> *mut bindings::module {
101         self.0
102     }
103 }
104 
105 #[cfg(not(any(testlib, test)))]
106 #[panic_handler]
107 fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
108     pr_emerg!("{}\n", info);
109     // SAFETY: FFI call.
110     unsafe { bindings::BUG() };
111 }
112 
113 /// Produces a pointer to an object from a pointer to one of its fields.
114 ///
115 /// # Safety
116 ///
117 /// The pointer passed to this macro, and the pointer returned by this macro, must both be in
118 /// bounds of the same allocation.
119 ///
120 /// # Examples
121 ///
122 /// ```
123 /// # use kernel::container_of;
124 /// struct Test {
125 ///     a: u64,
126 ///     b: u32,
127 /// }
128 ///
129 /// let test = Test { a: 10, b: 20 };
130 /// let b_ptr = &test.b;
131 /// // SAFETY: The pointer points at the `b` field of a `Test`, so the resulting pointer will be
132 /// // in-bounds of the same allocation as `b_ptr`.
133 /// let test_alias = unsafe { container_of!(b_ptr, Test, b) };
134 /// assert!(core::ptr::eq(&test, test_alias));
135 /// ```
136 #[macro_export]
137 macro_rules! container_of {
138     ($ptr:expr, $type:ty, $($f:tt)*) => {{
139         let ptr = $ptr as *const _ as *const u8;
140         let offset: usize = ::core::mem::offset_of!($type, $($f)*);
141         ptr.sub(offset) as *const $type
142     }}
143 }
144