asterinas/ostd/src/lib.rs

196 lines
5.2 KiB
Rust

// SPDX-License-Identifier: MPL-2.0
//! The standard library for Asterinas and other Rust OSes.
#![feature(alloc_error_handler)]
#![feature(allocator_api)]
#![feature(btree_cursors)]
#![feature(core_intrinsics)]
#![feature(iter_advance_by)]
#![feature(linkage)]
#![feature(macro_metavar_expr)]
#![feature(min_specialization)]
#![feature(negative_impls)]
#![feature(ptr_metadata)]
#![feature(sync_unsafe_cell)]
#![expect(internal_features)]
#![no_std]
#![warn(missing_docs)]
extern crate alloc;
#[cfg_attr(target_arch = "x86_64", path = "arch/x86/mod.rs")]
#[cfg_attr(target_arch = "riscv64", path = "arch/riscv/mod.rs")]
#[cfg_attr(target_arch = "loongarch64", path = "arch/loongarch/mod.rs")]
pub mod arch;
pub mod boot;
pub mod bus;
pub mod console;
pub mod cpu;
mod error;
mod ex_table;
pub mod io;
pub mod irq;
pub mod logger;
pub mod mm;
pub mod panic;
pub mod power;
pub mod prelude;
pub mod smp;
pub mod sync;
pub mod task;
pub mod timer;
pub mod user;
pub mod util;
#[cfg(feature = "coverage")]
mod coverage;
use core::sync::atomic::{AtomicBool, Ordering};
pub use ostd_macros::{
global_frame_allocator, global_heap_allocator, global_heap_allocator_slot_map, main,
panic_handler,
};
pub use ostd_pod::Pod;
pub use self::{error::Error, prelude::Result};
/// Initializes OSTD.
///
/// This function represents the first phase booting up the system. It makes
/// all functionalities of OSTD available after the call.
///
/// # Safety
///
/// This function should be called only once and only on the BSP.
//
// TODO: We need to refactor this function to make it more modular and
// make inter-initialization-dependencies more clear and reduce usages of
// boot stage only global variables.
unsafe fn init() {
arch::enable_cpu_features();
// SAFETY: This function is called only once, before `allocator::init`
// and after memory regions are initialized.
unsafe { mm::frame::allocator::init_early_allocator() };
#[cfg(target_arch = "x86_64")]
arch::if_tdx_enabled!({
} else {
arch::serial::init();
});
#[cfg(not(target_arch = "x86_64"))]
arch::serial::init();
logger::init();
// SAFETY:
// 1. They are only called once in the boot context of the BSP.
// 2. The number of CPUs are available because ACPI has been initialized.
// 3. CPU-local storage has NOT been used.
unsafe { cpu::init_on_bsp() };
// SAFETY: We are on the BSP and APs are not yet started.
let meta_pages = unsafe { mm::frame::meta::init() };
// The frame allocator should be initialized immediately after the metadata
// is initialized. Otherwise the boot page table can't allocate frames.
// SAFETY: This function is called only once.
unsafe { mm::frame::allocator::init() };
mm::kspace::init_kernel_page_table(meta_pages);
// SAFETY: This function is called only once on the BSP.
unsafe { mm::kspace::activate_kernel_page_table() };
sync::init();
boot::init_after_heap();
// SAFETY: This function is called only once on the BSP.
unsafe { arch::late_init_on_bsp() };
#[cfg(target_arch = "x86_64")]
arch::if_tdx_enabled!({
arch::serial::init();
});
smp::init();
// SAFETY:
// 1. The kernel page table is activated on the BSP.
// 2. The function is called only once on the BSP.
// 3. No remaining `with_borrow` invocations from now.
unsafe { crate::mm::page_table::boot_pt::dismiss() };
arch::irq::enable_local();
invoke_ffi_init_funcs();
IN_BOOTSTRAP_CONTEXT.store(false, Ordering::Relaxed);
}
/// Indicates whether the kernel is in bootstrap context.
pub(crate) static IN_BOOTSTRAP_CONTEXT: AtomicBool = AtomicBool::new(true);
/// Invoke the initialization functions defined in the FFI.
/// The component system uses this function to call the initialization functions of
/// the components.
fn invoke_ffi_init_funcs() {
unsafe extern "C" {
fn __sinit_array();
fn __einit_array();
}
let call_len = (__einit_array as *const () as usize - __sinit_array as *const () as usize) / 8;
for i in 0..call_len {
unsafe {
let function = (__sinit_array as *const () as usize + 8 * i) as *const fn();
(*function)();
}
}
}
mod feature_validation {
#[cfg(all(not(target_arch = "riscv64"), feature = "riscv_sv39_mode"))]
compile_error!(
"feature \"riscv_sv39_mode\" cannot be specified for architectures other than RISC-V"
);
}
/// Simple unit tests for the ktest framework.
#[cfg(ktest)]
mod test {
use crate::prelude::*;
#[ktest]
#[expect(clippy::eq_op)]
fn trivial_assertion() {
assert_eq!(0, 0);
}
#[ktest]
#[should_panic]
fn failing_assertion() {
assert_eq!(0, 1);
}
#[ktest]
#[should_panic(expected = "expected panic message")]
fn expect_panic() {
panic!("expected panic message");
}
}
#[doc(hidden)]
pub mod ktest {
//! The module re-exports everything from the [`ostd_test`] crate, as well
//! as the test entry point macro.
//!
//! It is rather discouraged to use the definitions here directly. The
//! `ktest` attribute is sufficient for all normal use cases.
pub use ostd_macros::{test_main as main, test_panic_handler as panic_handler};
pub use ostd_test::*;
}