Merge tag 'm68k-for-v6.7-tag1' of git://git.kernel.org/pub/scm/linux/kernel/git/geert...
[linux-2.6-block.git] / rust / kernel / lib.rs
CommitLineData
247b365d
WAF
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]
76e2c2d9 15#![feature(allocator_api)]
f75cb6fc 16#![feature(coerce_unsized)]
0748424a 17#![feature(dispatch_from_dyn)]
3c01a424 18#![feature(new_uninit)]
7324b889 19#![feature(offset_of)]
a8321776 20#![feature(ptr_metadata)]
53528772 21#![feature(receiver_trait)]
f75cb6fc 22#![feature(unsize)]
247b365d
WAF
23
24// Ensure conditional compilation based on the kernel configuration works;
25// otherwise we may silently break things like initcall handling.
26#[cfg(not(CONFIG_RUST))]
27compile_error!("Missing kernel configuration for conditional compilation");
28
90e53c5e
BL
29// Allow proc-macros to refer to `::kernel` inside the `kernel` crate (this crate).
30extern crate self as kernel;
31
247b365d
WAF
32#[cfg(not(test))]
33#[cfg(not(testlib))]
34mod allocator;
0f595bab 35mod build_assert;
247b365d 36pub mod error;
90e53c5e 37pub mod init;
ea76e08f 38pub mod ioctl;
a66d733d
MO
39#[cfg(CONFIG_KUNIT)]
40pub mod kunit;
247b365d
WAF
41pub mod prelude;
42pub mod print;
ef9e3797 43mod static_assert;
bee16889
NM
44#[doc(hidden)]
45pub mod std_vendor;
247b365d 46pub mod str;
9dc04365 47pub mod sync;
313c4281 48pub mod task;
ba20915b 49pub mod types;
d4d791d4 50pub mod workqueue;
247b365d
WAF
51
52#[doc(hidden)]
53pub use bindings;
54pub use macros;
4e174665 55pub use uapi;
247b365d 56
0f595bab
GG
57#[doc(hidden)]
58pub use build_error::build_error;
59
247b365d
WAF
60/// Prefix to appear before log messages printed from within the `kernel` crate.
61const __LOG_PREFIX: &[u8] = b"rust_kernel\0";
62
63/// The top level entrypoint to implementing a kernel module.
64///
65/// For any teardown or cleanup operations, your type may implement [`Drop`].
66pub trait Module: Sized + Sync {
67 /// Called at module initialization time.
68 ///
69 /// Use this method to perform whatever setup or registration your module
70 /// should do.
71 ///
72 /// Equivalent to the `module_init` macro in the C API.
73 fn init(module: &'static ThisModule) -> error::Result<Self>;
74}
75
76/// Equivalent to `THIS_MODULE` in the C API.
77///
78/// C header: `include/linux/export.h`
79pub struct ThisModule(*mut bindings::module);
80
81// SAFETY: `THIS_MODULE` may be used from all threads within a module.
82unsafe impl Sync for ThisModule {}
83
84impl ThisModule {
85 /// Creates a [`ThisModule`] given the `THIS_MODULE` pointer.
86 ///
87 /// # Safety
88 ///
89 /// The pointer must be equal to the right `THIS_MODULE`.
90 pub const unsafe fn from_ptr(ptr: *mut bindings::module) -> ThisModule {
91 ThisModule(ptr)
92 }
93}
94
95#[cfg(not(any(testlib, test)))]
96#[panic_handler]
97fn panic(info: &core::panic::PanicInfo<'_>) -> ! {
98 pr_emerg!("{}\n", info);
99 // SAFETY: FFI call.
100 unsafe { bindings::BUG() };
247b365d 101}