~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/rust/kernel/lib.rs

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /rust/kernel/lib.rs (Architecture alpha) and /rust/kernel/lib.rs (Architecture sparc)


  1 // SPDX-License-Identifier: GPL-2.0                 1 // SPDX-License-Identifier: GPL-2.0
  2                                                     2 
  3 //! The `kernel` crate.                             3 //! The `kernel` crate.
  4 //!                                                 4 //!
  5 //! This crate contains the kernel APIs that h      5 //! This crate contains the kernel APIs that have been ported or wrapped for
  6 //! usage by Rust code in the kernel and is sh      6 //! usage by Rust code in the kernel and is shared by all of them.
  7 //!                                                 7 //!
  8 //! In other words, all the rest of the Rust c      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      9 //! modules written in Rust) depends on [`core`], [`alloc`] and this crate.
 10 //!                                                10 //!
 11 //! If you need a kernel C API that is not por     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 crat     12 //! do so first instead of bypassing this crate.
 13                                                    13 
 14 #![no_std]                                         14 #![no_std]
 15 #![feature(coerce_unsized)]                        15 #![feature(coerce_unsized)]
 16 #![feature(dispatch_from_dyn)]                     16 #![feature(dispatch_from_dyn)]
 17 #![feature(new_uninit)]                            17 #![feature(new_uninit)]
 18 #![feature(receiver_trait)]                        18 #![feature(receiver_trait)]
 19 #![feature(unsize)]                                19 #![feature(unsize)]
 20                                                    20 
 21 // Ensure conditional compilation based on the     21 // Ensure conditional compilation based on the kernel configuration works;
 22 // otherwise we may silently break things like     22 // otherwise we may silently break things like initcall handling.
 23 #[cfg(not(CONFIG_RUST))]                           23 #[cfg(not(CONFIG_RUST))]
 24 compile_error!("Missing kernel configuration f     24 compile_error!("Missing kernel configuration for conditional compilation");
 25                                                    25 
 26 // Allow proc-macros to refer to `::kernel` in     26 // Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate).
 27 extern crate self as kernel;                       27 extern crate self as kernel;
 28                                                    28 
 29 pub mod alloc;                                     29 pub mod alloc;
 30 #[cfg(CONFIG_BLOCK)]                               30 #[cfg(CONFIG_BLOCK)]
 31 pub mod block;                                     31 pub mod block;
 32 mod build_assert;                                  32 mod build_assert;
 33 pub mod device;                                    33 pub mod device;
 34 pub mod error;                                     34 pub mod error;
 35 #[cfg(CONFIG_RUST_FW_LOADER_ABSTRACTIONS)]         35 #[cfg(CONFIG_RUST_FW_LOADER_ABSTRACTIONS)]
 36 pub mod firmware;                                  36 pub mod firmware;
 37 pub mod init;                                      37 pub mod init;
 38 pub mod ioctl;                                     38 pub mod ioctl;
 39 #[cfg(CONFIG_KUNIT)]                               39 #[cfg(CONFIG_KUNIT)]
 40 pub mod kunit;                                     40 pub mod kunit;
 41 pub mod list;                                      41 pub mod list;
 42 #[cfg(CONFIG_NET)]                                 42 #[cfg(CONFIG_NET)]
 43 pub mod net;                                       43 pub mod net;
 44 pub mod page;                                      44 pub mod page;
 45 pub mod prelude;                                   45 pub mod prelude;
 46 pub mod print;                                     46 pub mod print;
 47 pub mod rbtree;                                    47 pub mod rbtree;
 48 pub mod sizes;                                     48 pub mod sizes;
 49 mod static_assert;                                 49 mod static_assert;
 50 #[doc(hidden)]                                     50 #[doc(hidden)]
 51 pub mod std_vendor;                                51 pub mod std_vendor;
 52 pub mod str;                                       52 pub mod str;
 53 pub mod sync;                                      53 pub mod sync;
 54 pub mod task;                                      54 pub mod task;
 55 pub mod time;                                      55 pub mod time;
 56 pub mod types;                                     56 pub mod types;
 57 pub mod uaccess;                                   57 pub mod uaccess;
 58 pub mod workqueue;                                 58 pub mod workqueue;
 59                                                    59 
 60 #[doc(hidden)]                                     60 #[doc(hidden)]
 61 pub use bindings;                                  61 pub use bindings;
 62 pub use macros;                                    62 pub use macros;
 63 pub use uapi;                                      63 pub use uapi;
 64                                                    64 
 65 #[doc(hidden)]                                     65 #[doc(hidden)]
 66 pub use build_error::build_error;                  66 pub use build_error::build_error;
 67                                                    67 
 68 /// Prefix to appear before log messages print     68 /// Prefix to appear before log messages printed from within the `kernel` crate.
 69 const __LOG_PREFIX: &[u8] = b"rust_kernel\0";      69 const __LOG_PREFIX: &[u8] = b"rust_kernel\0";
 70                                                    70 
 71 /// The top level entrypoint to implementing a     71 /// The top level entrypoint to implementing a kernel module.
 72 ///                                                72 ///
 73 /// For any teardown or cleanup operations, yo     73 /// For any teardown or cleanup operations, your type may implement [`Drop`].
 74 pub trait Module: Sized + Sync + Send {            74 pub trait Module: Sized + Sync + Send {
 75     /// Called at module initialization time.      75     /// Called at module initialization time.
 76     ///                                            76     ///
 77     /// Use this method to perform whatever se     77     /// Use this method to perform whatever setup or registration your module
 78     /// should do.                                 78     /// should do.
 79     ///                                            79     ///
 80     /// Equivalent to the `module_init` macro      80     /// Equivalent to the `module_init` macro in the C API.
 81     fn init(module: &'static ThisModule) -> er     81     fn init(module: &'static ThisModule) -> error::Result<Self>;
 82 }                                                  82 }
 83                                                    83 
 84 /// Equivalent to `THIS_MODULE` in the C API.      84 /// Equivalent to `THIS_MODULE` in the C API.
 85 ///                                                85 ///
 86 /// C header: [`include/linux/export.h`](srctr     86 /// C header: [`include/linux/export.h`](srctree/include/linux/export.h)
 87 pub struct ThisModule(*mut bindings::module);      87 pub struct ThisModule(*mut bindings::module);
 88                                                    88 
 89 // SAFETY: `THIS_MODULE` may be used from all      89 // SAFETY: `THIS_MODULE` may be used from all threads within a module.
 90 unsafe impl Sync for ThisModule {}                 90 unsafe impl Sync for ThisModule {}
 91                                                    91 
 92 impl ThisModule {                                  92 impl ThisModule {
 93     /// Creates a [`ThisModule`] given the `TH     93     /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer.
 94     ///                                            94     ///
 95     /// # Safety                                   95     /// # Safety
 96     ///                                            96     ///
 97     /// The pointer must be equal to the right     97     /// The pointer must be equal to the right `THIS_MODULE`.
 98     pub const unsafe fn from_ptr(ptr: *mut bin     98     pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule {
 99         ThisModule(ptr)                            99         ThisModule(ptr)
100     }                                             100     }
101                                                   101 
102     /// Access the raw pointer for this module    102     /// Access the raw pointer for this module.
103     ///                                           103     ///
104     /// It is up to the user to use it correct    104     /// It is up to the user to use it correctly.
105     pub const fn as_ptr(&self) -> *mut binding    105     pub const fn as_ptr(&self) -> *mut bindings::module {
106         self.0                                    106         self.0
107     }                                             107     }
108 }                                                 108 }
109                                                   109 
110 #[cfg(not(any(testlib, test)))]                   110 #[cfg(not(any(testlib, test)))]
111 #[panic_handler]                                  111 #[panic_handler]
112 fn panic(info: &core::panic::PanicInfo<'_>) ->    112 fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
113     pr_emerg!("{}\n", info);                      113     pr_emerg!("{}\n", info);
114     // SAFETY: FFI call.                          114     // SAFETY: FFI call.
115     unsafe { bindings::BUG() };                   115     unsafe { bindings::BUG() };
116 }                                                 116 }
117                                                   117 
118 /// Produces a pointer to an object from a poi    118 /// Produces a pointer to an object from a pointer to one of its fields.
119 ///                                               119 ///
120 /// # Safety                                      120 /// # Safety
121 ///                                               121 ///
122 /// The pointer passed to this macro, and the     122 /// The pointer passed to this macro, and the pointer returned by this macro, must both be in
123 /// bounds of the same allocation.                123 /// bounds of the same allocation.
124 ///                                               124 ///
125 /// # Examples                                    125 /// # Examples
126 ///                                               126 ///
127 /// ```                                           127 /// ```
128 /// # use kernel::container_of;                   128 /// # use kernel::container_of;
129 /// struct Test {                                 129 /// struct Test {
130 ///     a: u64,                                   130 ///     a: u64,
131 ///     b: u32,                                   131 ///     b: u32,
132 /// }                                             132 /// }
133 ///                                               133 ///
134 /// let test = Test { a: 10, b: 20 };             134 /// let test = Test { a: 10, b: 20 };
135 /// let b_ptr = &test.b;                          135 /// let b_ptr = &test.b;
136 /// // SAFETY: The pointer points at the `b` f    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_    137 /// // in-bounds of the same allocation as `b_ptr`.
138 /// let test_alias = unsafe { container_of!(b_    138 /// let test_alias = unsafe { container_of!(b_ptr, Test, b) };
139 /// assert!(core::ptr::eq(&test, test_alias));    139 /// assert!(core::ptr::eq(&test, test_alias));
140 /// ```                                           140 /// ```
141 #[macro_export]                                   141 #[macro_export]
142 macro_rules! container_of {                       142 macro_rules! container_of {
143     ($ptr:expr, $type:ty, $($f:tt)*) => {{        143     ($ptr:expr, $type:ty, $($f:tt)*) => {{
144         let ptr = $ptr as *const _ as *const u    144         let ptr = $ptr as *const _ as *const u8;
145         let offset: usize = ::core::mem::offse    145         let offset: usize = ::core::mem::offset_of!($type, $($f)*);
146         ptr.sub(offset) as *const $type           146         ptr.sub(offset) as *const $type
147     }}                                            147     }}
148 }                                                 148 }
                                                      

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php