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(allocator_api)] 16 #![feature(coerce_unsized)] 17 #![feature(core_ffi_c)] 18 #![feature(dispatch_from_dyn)] 19 #![feature(explicit_generic_args_with_impl_trait)] 20 #![feature(generic_associated_types)] 21 #![feature(new_uninit)] 22 #![feature(pin_macro)] 23 #![feature(receiver_trait)] 24 #![feature(unsize)] 25 26 // Ensure conditional compilation based on the kernel configuration works; 27 // otherwise we may silently break things like initcall handling. 28 #[cfg(not(CONFIG_RUST))] 29 compile_error!("Missing kernel configuration for conditional compilation"); 30 31 // Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate). 32 extern crate self as kernel; 33 34 #[cfg(not(test))] 35 #[cfg(not(testlib))] 36 mod allocator; 37 mod build_assert; 38 pub mod error; 39 pub mod init; 40 pub mod prelude; 41 pub mod print; 42 mod static_assert; 43 #[doc(hidden)] 44 pub mod std_vendor; 45 pub mod str; 46 pub mod sync; 47 pub mod task; 48 pub mod types; 49 50 #[doc(hidden)] 51 pub use bindings; 52 pub use macros; 53 pub use uapi; 54 55 #[doc(hidden)] 56 pub use build_error::build_error; 57 58 /// Prefix to appear before log messages printed from within the `kernel` crate. 59 const __LOG_PREFIX: &[u8] = b"rust_kernel\0"; 60 61 /// The top level entrypoint to implementing a kernel module. 62 /// 63 /// For any teardown or cleanup operations, your type may implement [`Drop`]. 64 pub trait Module: Sized + Sync { 65 /// Called at module initialization time. 66 /// 67 /// Use this method to perform whatever setup or registration your module 68 /// should do. 69 /// 70 /// Equivalent to the `module_init` macro in the C API. 71 fn init(module: &'static ThisModule) -> error::Result<Self>; 72 } 73 74 /// Equivalent to `THIS_MODULE` in the C API. 75 /// 76 /// C header: `include/linux/export.h` 77 pub struct ThisModule(*mut bindings::module); 78 79 // SAFETY: `THIS_MODULE` may be used from all threads within a module. 80 unsafe impl Sync for ThisModule {} 81 82 impl ThisModule { 83 /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer. 84 /// 85 /// # Safety 86 /// 87 /// The pointer must be equal to the right `THIS_MODULE`. 88 pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule { 89 ThisModule(ptr) 90 } 91 } 92 93 #[cfg(not(any(testlib, test)))] 94 #[panic_handler] 95 fn panic(info: &core::panic::PanicInfo<'_>) -> ! { 96 pr_emerg!("{}\n", info); 97 // SAFETY: FFI call. 98 unsafe { bindings::BUG() }; 99 // Bindgen currently does not recognize `__noreturn` so `BUG` returns `()` 100 // instead of `!`. See <https://github.com/rust-lang/rust-bindgen/issues/2094>. 101 loop {} 102 } 103