libc_core/types.rs
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 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338
//! This module provides the `libc` types for Types.
//!
//! MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in>
pub use crate::arch::{Stat, StatMode};
use crate::signal::SignalNum;
use core::{cmp::Ordering, ops::Add, time::Duration};
use num_enum::TryFromPrimitive;
/// IoVec structure
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in#L78>
#[repr(C)]
#[cfg_attr(
feature = "zerocopy",
derive(
zerocopy::FromBytes,
zerocopy::Immutable,
zerocopy::IntoBytes,
zerocopy::KnownLayout
)
)]
#[derive(Clone)]
pub struct IoVec {
/// Base address of the buffer
pub base: usize,
/// Length of the buffer
pub len: usize,
}
/// TimeVal structure
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in#L43>
#[repr(C)]
#[cfg_attr(
feature = "zerocopy",
derive(
zerocopy::FromBytes,
zerocopy::Immutable,
zerocopy::IntoBytes,
zerocopy::KnownLayout
)
)]
#[derive(Clone, Copy, Debug, Default, PartialEq)]
pub struct TimeVal {
/// seconds, range in 0~999999999
pub sec: usize,
/// microseconds, range in 0~999999
pub usec: usize,
}
impl Add for TimeVal {
type Output = TimeVal;
fn add(self, rhs: Self) -> Self::Output {
let target = self.usec + rhs.usec;
Self {
sec: self.sec + rhs.sec + target / 1_000_000_000,
usec: target % 1_000_000_000,
}
}
}
impl PartialOrd for TimeVal {
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
let sec_res = self.sec.cmp(&other.sec);
match sec_res {
Ordering::Equal => Some(self.usec.cmp(&other.usec)),
_ => Some(sec_res),
}
}
}
impl From<Duration> for TimeVal {
fn from(value: Duration) -> Self {
Self {
sec: value.as_secs() as _,
usec: value.subsec_micros() as _,
}
}
}
impl From<TimeVal> for Duration {
fn from(value: TimeVal) -> Self {
Duration::new(value.sec as _, value.usec as u32 * 1000)
}
}
#[repr(C)]
/// 表示目录项(dirent)的结构体,用于读取目录内容(如 getdents64)
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/arch/generic/bits/dirent.h#L5C1-L11C3>
pub struct Dirent64 {
/// inode 号(索引节点号),唯一标识文件
pub ino: u64,
/// 偏移量,指向下一个目录项在目录流中的位置(用于遍历)
pub off: i64,
/// 当前目录项结构体的长度(包括文件名),单位是字节
pub reclen: u16,
/// 文件类型(如常规文件、目录、符号链接等)
pub ftype: u8,
/// 文件名(不定长,以空字符结尾,声明为 0 长度数组便于动态追加)
pub name: [u8; 0],
}
#[repr(C)]
#[derive(Default, Clone)]
#[cfg_attr(
feature = "zerocopy",
derive(zerocopy::FromBytes, zerocopy::Immutable, zerocopy::IntoBytes)
)]
/// 文件系统状态结构体,用于 statfs 系统调用返回信息
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/arch/generic/bits/statfs.h#L4>
pub struct StatFS {
/// 文件系统的类型(magic number,用于标识如 ext4, tmpfs 等)
pub ftype: u64,
/// 最优传输块大小(用于文件系统的 I/O 操作优化)
pub bsize: u64,
/// 文件系统中数据块的总数量
pub blocks: u64,
/// 当前空闲的数据块数量(包括超级用户可用)
pub bfree: u64,
/// 普通用户可用的数据块数量(不包括超级用户保留)
pub bavail: u64,
/// 文件结点(i-node)总数,表示最多可创建的文件数量
pub files: u64,
/// 可用的文件结点数
pub ffree: u64,
/// 文件系统标识符(通常是一个唯一的 ID,用于区分不同的文件系统挂载点)
pub fsid: u64,
/// 支持的最大文件名长度(单位:字节)
pub namelen: u64,
}
#[repr(C)]
#[cfg_attr(
feature = "zerocopy",
derive(
zerocopy::FromBytes,
zerocopy::Immutable,
zerocopy::IntoBytes,
zerocopy::KnownLayout
)
)]
#[derive(Default, Clone, Copy, Debug)]
/// 表示高精度时间的结构体(通常用于系统调用中的时间表示)
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in#L44>
/// TODO: 对比 MUSL 中的定义
pub struct TimeSpec {
/// 秒(Seconds)
pub sec: usize,
/// 纳秒(Nanoseconds),有效范围为 0~999_999_999
pub nsec: usize,
}
impl TimeSpec {
/// 将 TimeSpec 转换为纳秒(nanoseconds)
pub const fn to_nsec(&self) -> usize {
self.sec * 1_000_000_000 + self.nsec
}
}
impl From<Duration> for TimeSpec {
fn from(value: Duration) -> Self {
Self {
sec: value.as_secs() as _,
nsec: value.subsec_nanos() as _,
}
}
}
impl From<TimeSpec> for Duration {
fn from(value: TimeSpec) -> Self {
Duration::new(value.sec as _, value.nsec as _)
}
}
#[repr(C)]
#[derive(Clone, Copy)]
/// 终端窗口大小结构体
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in#L80>
pub struct WinSize {
/// 窗口的行数(以字符为单位)
pub row: u16,
/// 窗口的列数(以字符为单位)
pub col: u16,
/// 窗口的宽度(以像素为单位)
pub xpixel: u16,
/// 窗口的高度(以像素为单位)
pub ypixel: u16,
}
/// 信号屏蔽操作方式(用于 `sigprocmask` 或类似接口)
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/signal.h#L30>
#[repr(u8)]
#[derive(Debug, Clone, Copy, TryFromPrimitive)]
pub enum SigMaskHow {
/// 阻塞指定信号(将信号加入进程的阻塞信号集)。
Block = 0,
/// 解除阻塞指定信号(将信号从阻塞信号集中移除)。
Unblock = 1,
/// 设置阻塞信号集为指定的信号集(替换整个信号集)。
SetMask = 2,
}
/// 信号处理掩码(sigset_t)
#[repr(C)]
#[cfg_attr(
feature = "zerocopy",
derive(
zerocopy::FromBytes,
zerocopy::Immutable,
zerocopy::IntoBytes,
zerocopy::KnownLayout
)
)]
#[derive(Debug, Clone, Default)]
pub struct SigSetExtended {
/// 信号集,包含两个 64 位整数(128 位),用于存储信号的位掩码
pub sigset: SigSet,
/// 备用字段,通常用于对齐或扩展结构体大小
pub __pad: [u64; (128 - size_of::<SigSet>()) / size_of::<u64>()],
}
impl SigSetExtended {
/// 创建一个新的空信号集(无信号被阻塞)。
pub const fn empty() -> Self {
Self {
sigset: SigSet::empty(),
__pad: [0; (128 - size_of::<SigSet>()) / size_of::<u64>()],
}
}
}
/// 信号处理掩码结构体
///
/// MUSL: <https://github.com/bminor/musl/blob/c47ad25ea3b484e10326f933e927c0bc8cded3da/include/alltypes.h.in>
#[repr(C)]
#[cfg_attr(
feature = "zerocopy",
derive(
zerocopy::FromBytes,
zerocopy::Immutable,
zerocopy::IntoBytes,
zerocopy::KnownLayout
)
)]
#[derive(Debug, Clone, Copy, Default)]
pub struct SigSet(u64);
impl SigSet {
/// 创建一个新的空信号集(无信号被阻塞)。
pub const fn empty() -> Self {
Self(0)
}
/// 修改当前信号集的行为。
///
/// - `how` 指定操作方式(阻塞、解除阻塞、设为新掩码)。
/// - `mask` 是将要应用的信号集。
pub const fn handle(&mut self, how: SigMaskHow, mask: &Self) {
self.0 = match how {
SigMaskHow::Block => self.0 | mask.0, // 阻塞指定信号(按位或)
SigMaskHow::Unblock => self.0 & (!mask.0), // 解除阻塞(按位与非)
SigMaskHow::SetMask => mask.0, // 设置为指定掩码
}
}
/// 将指定信号添加到信号集中。
///
/// # 参数
///
/// - `signum`: [SignalNum] 信号
pub const fn insert(&mut self, signum: SignalNum) {
self.0 |= signum.mask();
}
/// 从信号集中移除指定信号。
///
/// # 参数
///
/// - `signum`: [SignalNum] 信号
pub const fn remove(&mut self, signum: SignalNum) {
self.0 &= !(signum.mask());
}
/// 判断指定信号是否在信号集中。
///
/// # 参数
///
/// - `signum`: [SignalNum] 信号
///
/// # 返回
///
/// - `true`: 该信号在信号集中
/// - `false`:该信号不在信号集中
pub const fn has(&self, signum: SignalNum) -> bool {
self.0 & signum.mask() != 0
}
/// 判断信号集是否为空。
///
/// # 返回
///
/// - `true`:信号集为空
/// - `false`:信号集非空
pub const fn is_empty(&self, masked: Option<Self>) -> bool {
match masked {
Some(masked) => self.0 & !masked.0 == 0,
None => self.0 == 0,
}
}
/// 从信号集中弹出一个信号
///
/// # 参数
///
/// - `masked`: 可选的信号集,用于屏蔽信号
///
/// # 返回
///
/// - `Some(SignalNum)`:如果信号集非空,返回一个信号
/// - `None`: 如果已经没有信号可以弹出,返回 [None]
#[inline]
pub fn pop_one(&mut self, masked: Option<Self>) -> Option<SignalNum> {
let set = self.0 & !masked.map_or(0, |m| m.0);
let sig_bit_idx = set.trailing_zeros();
if sig_bit_idx == 64 {
return None;
}
self.0 &= !bit!(sig_bit_idx);
SignalNum::try_from(sig_bit_idx as u8 + 1).ok()
}
}