173 lines
4.2 KiB
Rust
173 lines
4.2 KiB
Rust
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
//! Posix thread implementation
|
|
|
|
use core::sync::atomic::{AtomicBool, Ordering};
|
|
|
|
use aster_util::per_cpu_counter::PerCpuCounter;
|
|
use ostd::{
|
|
cpu::{AtomicCpuSet, CpuId, CpuSet},
|
|
task::Task,
|
|
};
|
|
|
|
use crate::{
|
|
prelude::*,
|
|
sched::{SchedAttr, SchedPolicy},
|
|
};
|
|
mod stats;
|
|
pub use stats::collect_context_switch_count;
|
|
use stats::CONTEXT_SWITCH_COUNTER;
|
|
pub mod exception;
|
|
pub mod kernel_thread;
|
|
pub mod oops;
|
|
pub mod task;
|
|
pub mod work_queue;
|
|
|
|
pub type Tid = u32;
|
|
|
|
fn pre_schedule_handler() {
|
|
let Some(task) = Task::current() else {
|
|
return;
|
|
};
|
|
let Some(thread_local) = task.as_thread_local() else {
|
|
return;
|
|
};
|
|
|
|
thread_local.fpu().before_schedule();
|
|
}
|
|
|
|
fn post_schedule_handler() {
|
|
// No races because preemption shouldn't happen in pre-/post-schedule handlers.
|
|
CONTEXT_SWITCH_COUNTER
|
|
.get()
|
|
.unwrap()
|
|
.add_on_cpu(CpuId::current_racy(), 1);
|
|
|
|
let task = Task::current().unwrap();
|
|
let Some(thread_local) = task.as_thread_local() else {
|
|
return;
|
|
};
|
|
|
|
let root_vmar = thread_local.root_vmar().borrow();
|
|
if let Some(vmar) = root_vmar.as_ref() {
|
|
vmar.vm_space().activate()
|
|
}
|
|
|
|
thread_local.fpu().after_schedule();
|
|
}
|
|
|
|
pub(super) fn init() {
|
|
CONTEXT_SWITCH_COUNTER.call_once(PerCpuCounter::new);
|
|
ostd::task::inject_pre_schedule_handler(pre_schedule_handler);
|
|
ostd::task::inject_post_schedule_handler(post_schedule_handler);
|
|
ostd::arch::trap::inject_user_page_fault_handler(exception::page_fault_handler);
|
|
}
|
|
|
|
/// A thread is a wrapper on top of task.
|
|
#[derive(Debug)]
|
|
pub struct Thread {
|
|
// immutable part
|
|
/// Low-level info
|
|
task: Weak<Task>,
|
|
/// Data: Posix thread info/Kernel thread Info
|
|
data: Box<dyn Send + Sync + Any>,
|
|
|
|
// mutable part
|
|
/// Thread status
|
|
is_exited: AtomicBool,
|
|
/// Thread CPU affinity
|
|
cpu_affinity: AtomicCpuSet,
|
|
sched_attr: SchedAttr,
|
|
}
|
|
|
|
impl Thread {
|
|
/// Never call these function directly
|
|
pub fn new(
|
|
task: Weak<Task>,
|
|
data: impl Send + Sync + Any,
|
|
cpu_affinity: CpuSet,
|
|
sched_policy: SchedPolicy,
|
|
) -> Self {
|
|
Thread {
|
|
task,
|
|
data: Box::new(data),
|
|
is_exited: AtomicBool::new(false),
|
|
cpu_affinity: AtomicCpuSet::new(cpu_affinity),
|
|
sched_attr: SchedAttr::new(sched_policy),
|
|
}
|
|
}
|
|
|
|
/// Returns the current thread.
|
|
///
|
|
/// This function returns `None` if the current task is not associated with
|
|
/// a thread, or if called within the bootstrap context.
|
|
pub fn current() -> Option<Arc<Self>> {
|
|
Task::current()?.as_thread().cloned()
|
|
}
|
|
|
|
/// Returns the task associated with this thread.
|
|
#[expect(dead_code)]
|
|
pub fn task(&self) -> Arc<Task> {
|
|
self.task.upgrade().unwrap()
|
|
}
|
|
|
|
/// Runs this thread at once.
|
|
#[track_caller]
|
|
pub fn run(&self) {
|
|
self.task.upgrade().unwrap().run();
|
|
}
|
|
|
|
/// Returns whether the thread is exited.
|
|
pub fn is_exited(&self) -> bool {
|
|
self.is_exited.load(Ordering::Acquire)
|
|
}
|
|
|
|
pub(super) fn exit(&self) {
|
|
self.is_exited.store(true, Ordering::Release);
|
|
}
|
|
|
|
/// Returns the reference to the atomic CPU affinity.
|
|
pub fn atomic_cpu_affinity(&self) -> &AtomicCpuSet {
|
|
&self.cpu_affinity
|
|
}
|
|
|
|
pub fn sched_attr(&self) -> &SchedAttr {
|
|
&self.sched_attr
|
|
}
|
|
|
|
/// Yields the execution to another thread.
|
|
///
|
|
/// This method will return once the current thread is scheduled again.
|
|
#[track_caller]
|
|
pub fn yield_now() {
|
|
Task::yield_now()
|
|
}
|
|
|
|
/// Joins the execution of the thread.
|
|
///
|
|
/// This method will return after the thread exits.
|
|
#[track_caller]
|
|
pub fn join(&self) {
|
|
while !self.is_exited() {
|
|
Self::yield_now();
|
|
}
|
|
}
|
|
|
|
/// Returns the associated data.
|
|
pub fn data(&self) -> &(dyn Send + Sync + Any) {
|
|
&*self.data
|
|
}
|
|
}
|
|
|
|
/// A trait to provide the `as_thread` method for tasks.
|
|
pub trait AsThread {
|
|
/// Returns the associated [`Thread`].
|
|
fn as_thread(&self) -> Option<&Arc<Thread>>;
|
|
}
|
|
|
|
impl AsThread for Task {
|
|
fn as_thread(&self) -> Option<&Arc<Thread>> {
|
|
self.data().downcast_ref::<Arc<Thread>>()
|
|
}
|
|
}
|