1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
#[inline]
fn local_irq_save_and_disable() -> usize {
const SIE_BIT: usize = 1 << 1;
let flags: usize;
// clear the `SIE` bit, and return the old CSR
unsafe { core::arch::asm!("csrrc {}, sstatus, {}", out(reg) flags, const SIE_BIT) };
flags & SIE_BIT
}
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
fn local_irq_restore(flags: usize) {
// restore the `SIE` bit
unsafe { core::arch::asm!("csrrs x0, sstatus, {}", in(reg) flags) };
}
#[cfg_attr(not(target_os = "macos"), link_section = ".percpu")]
static mut __PERCPU_CURRENT_TASK_PTR: usize = 0;
#[allow(non_camel_case_types)]
/// Wrapper struct for the per-CPU data [stringify! (CURRENT_TASK_PTR)]
struct CURRENT_TASK_PTR_WRAPPER {}
#[allow(unused)]
static CURRENT_TASK_PTR: CURRENT_TASK_PTR_WRAPPER = CURRENT_TASK_PTR_WRAPPER {};
#[allow(dead_code)]
impl CURRENT_TASK_PTR_WRAPPER {
/// Returns the offset relative to the per-CPU data area base on the current CPU.
fn offset(&self) -> usize {
let value: usize;
unsafe {
#[cfg(target_arch = "x86_64")]
core::arch::asm!(
"movabs {0}, offset {VAR}",
out(reg) value,
VAR = sym __PERCPU_CURRENT_TASK_PTR,
);
#[cfg(target_arch = "aarch64")]
core::arch::asm!(
"movz {0}, #:abs_g0_nc:{VAR}",
out(reg) value,
VAR = sym __PERCPU_CURRENT_TASK_PTR,
);
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
core::arch::asm!(
"lui {0}, %hi({VAR})",
"addi {0}, {0}, %lo({VAR})",
out(reg) value,
VAR = sym __PERCPU_CURRENT_TASK_PTR,
);
}
value
}
#[inline]
/// Returns the raw pointer of this per-CPU data on the current CPU.
///
/// # Safety
///
/// Caller must ensure that preemption is disabled on the current CPU.
pub unsafe fn current_ptr(&self) -> *const usize {
#[cfg(not(target_os = "macos"))]
{
let base: usize;
#[cfg(target_arch = "x86_64")]
{
core::arch::asm!(
"mov {0}, gs:[offset __PERCPU_SELF_PTR]",
"add {0}, offset {VAR}",
out(reg) base,
VAR = sym __PERCPU_CURRENT_TASK_PTR,
);
base as *const usize
}
#[cfg(not(target_arch = "x86_64"))]
{
#[cfg(target_arch = "aarch64")]
core::arch::asm!("mrs {}, TPIDR_EL1", out(reg) base);
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
core::arch::asm! ("mv {}, gp", out(reg) base);
(base + self.offset()) as *const usize
}
}
#[cfg(target_os = "macos")]
unimplemented!()
}
#[inline]
/// Returns the reference of the per-CPU data on the current CPU.
///
/// # Safety
///
/// Caller must ensure that preemption is disabled on the current CPU.
pub unsafe fn current_ref_raw(&self) -> &usize {
&*self.current_ptr()
}
#[inline]
/// Returns the mutable reference of the per-CPU data on the current CPU.
///
/// # Safety
///
/// Caller must ensure that preemption is disabled on the current CPU.
#[allow(clippy::mut_from_ref)]
pub unsafe fn current_ref_mut_raw(&self) -> &mut usize {
&mut *(self.current_ptr() as *mut usize)
}
/// Manipulate the per-CPU data on the current CPU in the given closure.
///
/// Preemption will be disabled during the call.
pub fn with_current<F, T>(&self, f: F) -> T
where
F: FnOnce(&mut usize) -> T,
{
f(unsafe { self.current_ref_mut_raw() })
}
#[inline]
/// Returns the value of the per-CPU data on the current CPU.
///
/// # Safety
///
/// Caller must ensure that preemption is disabled on the current CPU.
pub unsafe fn read_current_raw(&self) -> usize {
#[cfg(not(target_os = "macos"))]
{
#[cfg(target_arch = "riscv64")]
{
let value: usize;
core::arch::asm!(
"lui {0}, %hi({VAR})",
"add {0}, {0}, gp",
"ld {0}, %lo({VAR})({0})",
out(reg) value,
VAR = sym __PERCPU_CURRENT_TASK_PTR,
);
value
}
#[cfg(target_arch = "x86_64")]
{
let value: usize;
core::arch::asm!(
"mov {0:r}, qword ptr gs:[offset {VAR}]",
out(reg) value,
VAR = sym __PERCPU_CURRENT_TASK_PTR
);
value
}
#[cfg(not(any(target_arch = "riscv64", target_arch = "x86_64")))]
{
*self.current_ptr()
}
}
#[cfg(target_os = "macos")]
unimplemented!()
}
#[inline]
/// Set the value of the per-CPU data on the current CPU.
///
/// # Safety
///
/// Caller must ensure that preemption is disabled on the current CPU.
pub unsafe fn write_current_raw(&self, val: usize) {
#[cfg(not(target_os = "macos"))]
{
#[cfg(target_arch = "riscv64")]
{
core::arch::asm!(
"lui {0}, %hi({VAR})",
"add {0}, {0}, gp",
"sd {1}, %lo({VAR})({0})",
out(reg) _, in(reg) val,
VAR = sym __PERCPU_CURRENT_TASK_PTR
);
}
#[cfg(target_arch = "x86_64")]
{
core::arch::asm!(
"mov qword ptr gs:[offset {VAR}], {0:r}",
in(reg) val,
VAR = sym __PERCPU_CURRENT_TASK_PTR
)
}
#[cfg(not(any(target_arch = "riscv64", target_arch = "x86_64")))]
{
*(self.current_ptr() as *mut usize) = val
}
}
#[cfg(target_os = "macos")]
unimplemented!()
}
/// Returns the value of the per-CPU data on the current CPU. Preemption will
/// be disabled during the call.
pub fn read_current(&self) -> usize {
unsafe { self.read_current_raw() }
}
/// Set the value of the per-CPU data on the current CPU.
/// Preemption will be disabled during the call.
pub fn write_current(&self, val: usize) {
unsafe { self.write_current_raw(val) }
}
}
/// Gets the pointer to the current task with preemption-safety.
///
/// Preemption may be enabled when calling this function. This function will
/// guarantee the correctness even the current task is preempted.
#[inline]
pub fn current_task_ptr<T>() -> *const T {
#[cfg(target_arch = "x86_64")]
unsafe {
// on x86, only one instruction is needed to read the per-CPU task pointer from `gs:[off]`.
CURRENT_TASK_PTR.read_current_raw() as _
}
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
unsafe {
// on RISC-V, reading `CURRENT_TASK_PTR` requires multiple instruction, so we disable local IRQs.
let flags = local_irq_save_and_disable();
let ans = CURRENT_TASK_PTR.read_current_raw();
local_irq_restore(flags);
ans as _
}
#[cfg(target_arch = "aarch64")]
{
// on ARM64, we use `SP_EL0` to store the task pointer.
use tock_registers::interfaces::Readable;
aarch64_cpu::registers::SP_EL0.get() as _
}
}
/// Sets the pointer to the current task with preemption-safety.
///
/// Preemption may be enabled when calling this function. This function will
/// guarantee the correctness even the current task is preempted.
///
/// # Safety
///
/// The given `ptr` must be pointed to a valid task structure.
#[inline]
pub unsafe fn set_current_task_ptr<T>(ptr: *const T) {
#[cfg(target_arch = "x86_64")]
{
CURRENT_TASK_PTR.write_current_raw(ptr as usize)
}
#[cfg(any(target_arch = "riscv32", target_arch = "riscv64"))]
{
let flags = local_irq_save_and_disable();
CURRENT_TASK_PTR.write_current_raw(ptr as usize);
local_irq_restore(flags)
}
#[cfg(target_arch = "aarch64")]
{
use tock_registers::interfaces::Writeable;
aarch64_cpu::registers::SP_EL0.set(ptr as u64)
}
}