Files
asterinas/kernel/src/lib.rs
2025-05-29 10:33:02 +08:00

186 lines
4.7 KiB
Rust

// SPDX-License-Identifier: MPL-2.0
//! Aster-nix is the Asterinas kernel, a safe, efficient unix-like
//! operating system kernel built on top of OSTD and OSDK.
#![no_std]
#![no_main]
#![deny(unsafe_code)]
#![feature(btree_cursors)]
#![feature(btree_extract_if)]
#![feature(debug_closure_helpers)]
#![feature(extend_one)]
#![feature(extract_if)]
#![feature(fn_traits)]
#![feature(format_args_nl)]
#![feature(int_roundings)]
#![feature(integer_sign_cast)]
#![feature(let_chains)]
#![feature(linked_list_cursors)]
#![feature(linked_list_remove)]
#![feature(linked_list_retain)]
#![feature(negative_impls)]
#![feature(panic_can_unwind)]
#![feature(register_tool)]
#![feature(step_trait)]
#![feature(trait_alias)]
#![feature(trait_upcasting)]
#![feature(associated_type_defaults)]
#![register_tool(component_access_control)]
use aster_framebuffer::FRAMEBUFFER_CONSOLE;
use kcmdline::KCmdlineArg;
use ostd::{
arch::qemu::{exit_qemu, QemuExitCode},
boot::boot_info,
cpu::{CpuId, CpuSet},
};
use process::{spawn_init_process, Process};
use sched::SchedPolicy;
use crate::{prelude::*, thread::kernel_thread::ThreadOptions};
extern crate alloc;
extern crate lru;
#[macro_use]
extern crate controlled;
#[macro_use]
extern crate getset;
pub mod arch;
pub mod context;
pub mod cpu;
pub mod device;
pub mod driver;
pub mod error;
pub mod events;
pub mod fs;
pub mod ipc;
pub mod kcmdline;
pub mod net;
pub mod prelude;
mod process;
mod sched;
pub mod syscall;
pub mod thread;
pub mod time;
mod util;
pub(crate) mod vdso;
pub mod vm;
#[ostd::main]
#[controlled]
pub fn main() {
ostd::early_println!("[kernel] OSTD initialized. Preparing components.");
component::init_all(component::parse_metadata!()).unwrap();
init();
// Spawn all AP idle threads.
ostd::boot::smp::register_ap_entry(ap_init);
// Spawn the first kernel thread on BSP.
let mut affinity = CpuSet::new_empty();
affinity.add(CpuId::bsp());
ThreadOptions::new(init_thread)
.cpu_affinity(affinity)
.sched_policy(SchedPolicy::Idle)
.spawn();
}
pub fn init() {
thread::init();
util::random::init();
driver::init();
time::init();
#[cfg(target_arch = "x86_64")]
net::init();
sched::init();
fs::rootfs::init(boot_info().initramfs.expect("No initramfs found!")).unwrap();
device::init().unwrap();
syscall::init();
vdso::init();
process::init();
}
fn ap_init() {
fn ap_idle_thread() {
log::info!(
"Kernel idle thread for CPU #{} started.",
// No races because `ap_idle_thread` runs on a certain AP.
CpuId::current_racy().as_usize(),
);
loop {
crate::thread::Thread::yield_now();
ostd::cpu::sleep_for_interrupt();
}
}
ThreadOptions::new(ap_idle_thread)
// No races because `ap_init` runs on a certain AP.
.cpu_affinity(CpuId::current_racy().into())
.sched_policy(SchedPolicy::Idle)
.spawn();
}
fn init_thread() {
println!("[kernel] Spawn init thread");
// Work queue should be initialized before interrupt is enabled,
// in case any irq handler uses work queue as bottom half
thread::work_queue::init();
#[cfg(target_arch = "x86_64")]
net::lazy_init();
fs::lazy_init();
ipc::init();
// driver::pci::virtio::block::block_device_test();
let thread = ThreadOptions::new(|| {
println!("[kernel] Hello world from kernel!");
})
.spawn();
thread.join();
print_banner();
// FIXME: CI fails due to suspected performance issues with the framebuffer console.
// Additionally, userspace program may render GUIs using the framebuffer,
// so we disable the framebuffer console here.
if let Some(console) = FRAMEBUFFER_CONSOLE.get() {
console.disable();
};
let karg: KCmdlineArg = boot_info().kernel_cmdline.as_str().into();
let initproc = spawn_init_process(
karg.get_initproc_path().unwrap(),
karg.get_initproc_argv().to_vec(),
karg.get_initproc_envp().to_vec(),
)
.expect("Run init process failed.");
// Wait till initproc become zombie.
while !initproc.status().is_zombie() {
crate::thread::Thread::yield_now();
ostd::cpu::sleep_for_interrupt();
}
// TODO: exit via qemu isa debug device should not be the only way.
let exit_code = if initproc.status().exit_code() == 0 {
QemuExitCode::Success
} else {
QemuExitCode::Failed
};
exit_qemu(exit_code);
}
fn print_banner() {
println!("\x1B[36m");
println!(
r"
_ ___ _____ ___ ___ ___ _ _ _ ___
/_\ / __|_ _| __| _ \_ _| \| | /_\ / __|
/ _ \\__ \ | | | _|| /| || .` |/ _ \\__ \
/_/ \_\___/ |_| |___|_|_\___|_|\_/_/ \_\___/
"
);
println!("\x1B[0m");
}