xref: /DragonOS/kernel/src/mm/mod.rs (revision 453452cc02e2766a28d87dd47bdee37caddc4c44)
140fe15e0SLoGin use alloc::sync::Arc;
291e9d4abSLoGin use system_error::SystemError;
340fe15e0SLoGin 
491e9d4abSLoGin use crate::{arch::MMArch, include::bindings::bindings::PAGE_OFFSET};
540fe15e0SLoGin 
640fe15e0SLoGin use core::{
740fe15e0SLoGin     cmp,
840fe15e0SLoGin     fmt::Debug,
940fe15e0SLoGin     intrinsics::unlikely,
1040fe15e0SLoGin     ops::{Add, AddAssign, Sub, SubAssign},
1140fe15e0SLoGin     ptr,
1240fe15e0SLoGin     sync::atomic::{AtomicBool, Ordering},
1340fe15e0SLoGin };
1440fe15e0SLoGin 
1540fe15e0SLoGin use self::{
1640fe15e0SLoGin     allocator::page_frame::{VirtPageFrame, VirtPageFrameIter},
1792849878SLoGin     memblock::MemoryAreaAttr,
1840fe15e0SLoGin     page::round_up_to_page_size,
1940fe15e0SLoGin     ucontext::{AddressSpace, UserMapper},
2040fe15e0SLoGin };
21004e86ffSlogin 
2282d2e446Slogin pub mod allocator;
2340fe15e0SLoGin pub mod c_adapter;
2474ffde66SLoGin pub mod early_ioremap;
25*453452ccSLoGin pub mod init;
2640fe15e0SLoGin pub mod kernel_mapper;
2745626c85SLoGin pub mod memblock;
28c2481452Shoumkh pub mod mmio_buddy;
2940fe15e0SLoGin pub mod no_init;
3040fe15e0SLoGin pub mod page;
31c3dad001SLoGin pub mod percpu;
32ab5c8ca4Slogin pub mod syscall;
3340fe15e0SLoGin pub mod ucontext;
3440fe15e0SLoGin 
3540fe15e0SLoGin /// 内核INIT进程的用户地址空间结构体(仅在process_init中初始化)
3640fe15e0SLoGin static mut __INITIAL_PROCESS_ADDRESS_SPACE: Option<Arc<AddressSpace>> = None;
3740fe15e0SLoGin 
3840fe15e0SLoGin /// 获取内核INIT进程的用户地址空间结构体
3940fe15e0SLoGin #[allow(non_snake_case)]
4040fe15e0SLoGin #[inline(always)]
4140fe15e0SLoGin pub fn INITIAL_PROCESS_ADDRESS_SPACE() -> Arc<AddressSpace> {
4240fe15e0SLoGin     unsafe {
4340fe15e0SLoGin         return __INITIAL_PROCESS_ADDRESS_SPACE
4440fe15e0SLoGin             .as_ref()
4540fe15e0SLoGin             .expect("INITIAL_PROCESS_ADDRESS_SPACE is null")
4640fe15e0SLoGin             .clone();
4740fe15e0SLoGin     }
4840fe15e0SLoGin }
4940fe15e0SLoGin 
5040fe15e0SLoGin /// 设置内核INIT进程的用户地址空间结构体全局变量
5140fe15e0SLoGin #[allow(non_snake_case)]
5240fe15e0SLoGin pub unsafe fn set_INITIAL_PROCESS_ADDRESS_SPACE(address_space: Arc<AddressSpace>) {
5340fe15e0SLoGin     static INITIALIZED: AtomicBool = AtomicBool::new(false);
5440fe15e0SLoGin     if INITIALIZED
5540fe15e0SLoGin         .compare_exchange(false, true, Ordering::SeqCst, Ordering::Acquire)
5640fe15e0SLoGin         .is_err()
5740fe15e0SLoGin     {
5840fe15e0SLoGin         panic!("INITIAL_PROCESS_ADDRESS_SPACE is already initialized");
5940fe15e0SLoGin     }
6040fe15e0SLoGin     __INITIAL_PROCESS_ADDRESS_SPACE = Some(address_space);
6140fe15e0SLoGin }
62004e86ffSlogin 
63004e86ffSlogin /// @brief 将内核空间的虚拟地址转换为物理地址
64004e86ffSlogin #[inline(always)]
65004e86ffSlogin pub fn virt_2_phys(addr: usize) -> usize {
66004e86ffSlogin     addr - PAGE_OFFSET as usize
67004e86ffSlogin }
68004e86ffSlogin 
69004e86ffSlogin /// @brief 将物理地址转换为内核空间的虚拟地址
70004e86ffSlogin #[inline(always)]
71004e86ffSlogin pub fn phys_2_virt(addr: usize) -> usize {
72004e86ffSlogin     addr + PAGE_OFFSET as usize
73004e86ffSlogin }
74bacd691cSlogin 
7540fe15e0SLoGin #[derive(Clone, Copy, Debug, Eq, Ord, PartialEq, PartialOrd, Hash)]
7640fe15e0SLoGin pub enum PageTableKind {
7740fe15e0SLoGin     /// 用户可访问的页表
7840fe15e0SLoGin     User,
7940fe15e0SLoGin     /// 内核页表
8040fe15e0SLoGin     Kernel,
817a29d4fcSLoGin     /// x86内存虚拟化中使用的EPT
827a29d4fcSLoGin     #[cfg(target_arch = "x86_64")]
8340314b30SXiaoye Zheng     EPT,
8440fe15e0SLoGin }
8540fe15e0SLoGin 
8640fe15e0SLoGin /// 物理内存地址
8740fe15e0SLoGin #[derive(Clone, Copy, Eq, Ord, PartialEq, PartialOrd, Hash)]
8840fe15e0SLoGin #[repr(transparent)]
8940fe15e0SLoGin pub struct PhysAddr(usize);
9040fe15e0SLoGin 
9140fe15e0SLoGin impl PhysAddr {
9292849878SLoGin     /// 最大物理地址
9392849878SLoGin     pub const MAX: Self = PhysAddr(usize::MAX);
9492849878SLoGin 
9540fe15e0SLoGin     #[inline(always)]
9640fe15e0SLoGin     pub const fn new(address: usize) -> Self {
9740fe15e0SLoGin         Self(address)
9840fe15e0SLoGin     }
9940fe15e0SLoGin 
10040fe15e0SLoGin     /// @brief 获取物理地址的值
10140fe15e0SLoGin     #[inline(always)]
10274ffde66SLoGin     pub const fn data(&self) -> usize {
10340fe15e0SLoGin         self.0
10440fe15e0SLoGin     }
10540fe15e0SLoGin 
10640fe15e0SLoGin     /// @brief 将物理地址加上一个偏移量
10740fe15e0SLoGin     #[inline(always)]
10840fe15e0SLoGin     pub fn add(self, offset: usize) -> Self {
10940fe15e0SLoGin         Self(self.0 + offset)
11040fe15e0SLoGin     }
11140fe15e0SLoGin 
11240fe15e0SLoGin     /// @brief 判断物理地址是否按照指定要求对齐
11340fe15e0SLoGin     #[inline(always)]
11440fe15e0SLoGin     pub fn check_aligned(&self, align: usize) -> bool {
11540fe15e0SLoGin         return self.0 & (align - 1) == 0;
11640fe15e0SLoGin     }
11740fe15e0SLoGin 
11840fe15e0SLoGin     #[inline(always)]
11940fe15e0SLoGin     pub fn is_null(&self) -> bool {
12040fe15e0SLoGin         return self.0 == 0;
12140fe15e0SLoGin     }
12240fe15e0SLoGin }
12340fe15e0SLoGin 
12440fe15e0SLoGin impl Debug for PhysAddr {
12540fe15e0SLoGin     fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
12640fe15e0SLoGin         write!(f, "PhysAddr({:#x})", self.0)
12740fe15e0SLoGin     }
12840fe15e0SLoGin }
12940fe15e0SLoGin 
13040fe15e0SLoGin impl core::ops::Add<usize> for PhysAddr {
13140fe15e0SLoGin     type Output = Self;
13240fe15e0SLoGin 
13340fe15e0SLoGin     #[inline(always)]
13440fe15e0SLoGin     fn add(self, rhs: usize) -> Self::Output {
13540fe15e0SLoGin         return Self(self.0 + rhs);
13640fe15e0SLoGin     }
13740fe15e0SLoGin }
13840fe15e0SLoGin 
13940fe15e0SLoGin impl core::ops::AddAssign<usize> for PhysAddr {
14040fe15e0SLoGin     #[inline(always)]
14140fe15e0SLoGin     fn add_assign(&mut self, rhs: usize) {
14240fe15e0SLoGin         self.0 += rhs;
14340fe15e0SLoGin     }
14440fe15e0SLoGin }
14540fe15e0SLoGin 
14640fe15e0SLoGin impl core::ops::Add<PhysAddr> for PhysAddr {
14740fe15e0SLoGin     type Output = Self;
14840fe15e0SLoGin 
14940fe15e0SLoGin     #[inline(always)]
15040fe15e0SLoGin     fn add(self, rhs: PhysAddr) -> Self::Output {
15140fe15e0SLoGin         return Self(self.0 + rhs.0);
15240fe15e0SLoGin     }
15340fe15e0SLoGin }
15440fe15e0SLoGin 
15540fe15e0SLoGin impl core::ops::AddAssign<PhysAddr> for PhysAddr {
15640fe15e0SLoGin     #[inline(always)]
15740fe15e0SLoGin     fn add_assign(&mut self, rhs: PhysAddr) {
15840fe15e0SLoGin         self.0 += rhs.0;
15940fe15e0SLoGin     }
16040fe15e0SLoGin }
16140fe15e0SLoGin 
1622dd9f0c7SLoGin impl core::ops::BitOrAssign<usize> for PhysAddr {
1632dd9f0c7SLoGin     #[inline(always)]
1642dd9f0c7SLoGin     fn bitor_assign(&mut self, rhs: usize) {
1652dd9f0c7SLoGin         self.0 |= rhs;
1662dd9f0c7SLoGin     }
1672dd9f0c7SLoGin }
1682dd9f0c7SLoGin 
1692dd9f0c7SLoGin impl core::ops::BitOrAssign<PhysAddr> for PhysAddr {
1702dd9f0c7SLoGin     #[inline(always)]
1712dd9f0c7SLoGin     fn bitor_assign(&mut self, rhs: PhysAddr) {
1722dd9f0c7SLoGin         self.0 |= rhs.0;
1732dd9f0c7SLoGin     }
1742dd9f0c7SLoGin }
1752dd9f0c7SLoGin 
17640fe15e0SLoGin impl core::ops::Sub<usize> for PhysAddr {
17740fe15e0SLoGin     type Output = Self;
17840fe15e0SLoGin 
17940fe15e0SLoGin     #[inline(always)]
18040fe15e0SLoGin     fn sub(self, rhs: usize) -> Self::Output {
18140fe15e0SLoGin         return Self(self.0 - rhs);
18240fe15e0SLoGin     }
18340fe15e0SLoGin }
18440fe15e0SLoGin 
18540fe15e0SLoGin impl core::ops::SubAssign<usize> for PhysAddr {
18640fe15e0SLoGin     #[inline(always)]
18740fe15e0SLoGin     fn sub_assign(&mut self, rhs: usize) {
18840fe15e0SLoGin         self.0 -= rhs;
18940fe15e0SLoGin     }
19040fe15e0SLoGin }
19140fe15e0SLoGin 
19240fe15e0SLoGin impl core::ops::Sub<PhysAddr> for PhysAddr {
19340fe15e0SLoGin     type Output = usize;
19440fe15e0SLoGin 
19540fe15e0SLoGin     #[inline(always)]
19640fe15e0SLoGin     fn sub(self, rhs: PhysAddr) -> Self::Output {
19740fe15e0SLoGin         return self.0 - rhs.0;
19840fe15e0SLoGin     }
19940fe15e0SLoGin }
20040fe15e0SLoGin 
20140fe15e0SLoGin impl core::ops::SubAssign<PhysAddr> for PhysAddr {
20240fe15e0SLoGin     #[inline(always)]
20340fe15e0SLoGin     fn sub_assign(&mut self, rhs: PhysAddr) {
20440fe15e0SLoGin         self.0 -= rhs.0;
20540fe15e0SLoGin     }
20640fe15e0SLoGin }
20740fe15e0SLoGin 
20840fe15e0SLoGin /// 虚拟内存地址
20940fe15e0SLoGin #[derive(Clone, Copy, Eq, Ord, PartialEq, PartialOrd, Hash)]
21040fe15e0SLoGin #[repr(transparent)]
21140fe15e0SLoGin pub struct VirtAddr(usize);
21240fe15e0SLoGin 
21340fe15e0SLoGin impl VirtAddr {
21440fe15e0SLoGin     #[inline(always)]
21540fe15e0SLoGin     pub const fn new(address: usize) -> Self {
21640fe15e0SLoGin         return Self(address);
21740fe15e0SLoGin     }
21840fe15e0SLoGin 
21940fe15e0SLoGin     /// @brief 获取虚拟地址的值
22040fe15e0SLoGin     #[inline(always)]
22174ffde66SLoGin     pub const fn data(&self) -> usize {
22240fe15e0SLoGin         return self.0;
22340fe15e0SLoGin     }
22440fe15e0SLoGin 
22540fe15e0SLoGin     /// @brief 判断虚拟地址的类型
22640fe15e0SLoGin     #[inline(always)]
22740fe15e0SLoGin     pub fn kind(&self) -> PageTableKind {
22840fe15e0SLoGin         if self.check_user() {
22940fe15e0SLoGin             return PageTableKind::User;
23040fe15e0SLoGin         } else {
23140fe15e0SLoGin             return PageTableKind::Kernel;
23240fe15e0SLoGin         }
23340fe15e0SLoGin     }
23440fe15e0SLoGin 
23540fe15e0SLoGin     /// @brief 判断虚拟地址是否按照指定要求对齐
23640fe15e0SLoGin     #[inline(always)]
23740fe15e0SLoGin     pub fn check_aligned(&self, align: usize) -> bool {
23840fe15e0SLoGin         return self.0 & (align - 1) == 0;
23940fe15e0SLoGin     }
24040fe15e0SLoGin 
24140fe15e0SLoGin     /// @brief 判断虚拟地址是否在用户空间
24240fe15e0SLoGin     #[inline(always)]
24340fe15e0SLoGin     pub fn check_user(&self) -> bool {
24440fe15e0SLoGin         if self < &MMArch::USER_END_VADDR {
24540fe15e0SLoGin             return true;
24640fe15e0SLoGin         } else {
24740fe15e0SLoGin             return false;
24840fe15e0SLoGin         }
24940fe15e0SLoGin     }
25040fe15e0SLoGin 
25140fe15e0SLoGin     #[inline(always)]
25240fe15e0SLoGin     pub fn as_ptr<T>(self) -> *mut T {
25340fe15e0SLoGin         return self.0 as *mut T;
25440fe15e0SLoGin     }
25540fe15e0SLoGin 
25640fe15e0SLoGin     #[inline(always)]
25740fe15e0SLoGin     pub fn is_null(&self) -> bool {
25840fe15e0SLoGin         return self.0 == 0;
25940fe15e0SLoGin     }
26040fe15e0SLoGin }
26140fe15e0SLoGin 
26240fe15e0SLoGin impl Add<VirtAddr> for VirtAddr {
26340fe15e0SLoGin     type Output = Self;
26440fe15e0SLoGin 
26540fe15e0SLoGin     #[inline(always)]
26640fe15e0SLoGin     fn add(self, rhs: VirtAddr) -> Self::Output {
26740fe15e0SLoGin         return Self(self.0 + rhs.0);
26840fe15e0SLoGin     }
26940fe15e0SLoGin }
27040fe15e0SLoGin 
27140fe15e0SLoGin impl Add<usize> for VirtAddr {
27240fe15e0SLoGin     type Output = Self;
27340fe15e0SLoGin 
27440fe15e0SLoGin     #[inline(always)]
27540fe15e0SLoGin     fn add(self, rhs: usize) -> Self::Output {
27640fe15e0SLoGin         return Self(self.0 + rhs);
27740fe15e0SLoGin     }
27840fe15e0SLoGin }
27940fe15e0SLoGin 
28040fe15e0SLoGin impl Sub<VirtAddr> for VirtAddr {
28140fe15e0SLoGin     type Output = usize;
28240fe15e0SLoGin 
28340fe15e0SLoGin     #[inline(always)]
28440fe15e0SLoGin     fn sub(self, rhs: VirtAddr) -> Self::Output {
28540fe15e0SLoGin         return self.0 - rhs.0;
28640fe15e0SLoGin     }
28740fe15e0SLoGin }
28840fe15e0SLoGin 
28940fe15e0SLoGin impl Sub<usize> for VirtAddr {
29040fe15e0SLoGin     type Output = Self;
29140fe15e0SLoGin 
29240fe15e0SLoGin     #[inline(always)]
29340fe15e0SLoGin     fn sub(self, rhs: usize) -> Self::Output {
29440fe15e0SLoGin         return Self(self.0 - rhs);
29540fe15e0SLoGin     }
29640fe15e0SLoGin }
29740fe15e0SLoGin 
29840fe15e0SLoGin impl AddAssign<usize> for VirtAddr {
29940fe15e0SLoGin     #[inline(always)]
30040fe15e0SLoGin     fn add_assign(&mut self, rhs: usize) {
30140fe15e0SLoGin         self.0 += rhs;
30240fe15e0SLoGin     }
30340fe15e0SLoGin }
30440fe15e0SLoGin 
30540fe15e0SLoGin impl AddAssign<VirtAddr> for VirtAddr {
30640fe15e0SLoGin     #[inline(always)]
30740fe15e0SLoGin     fn add_assign(&mut self, rhs: VirtAddr) {
30840fe15e0SLoGin         self.0 += rhs.0;
30940fe15e0SLoGin     }
31040fe15e0SLoGin }
31140fe15e0SLoGin 
31240fe15e0SLoGin impl SubAssign<usize> for VirtAddr {
31340fe15e0SLoGin     #[inline(always)]
31440fe15e0SLoGin     fn sub_assign(&mut self, rhs: usize) {
31540fe15e0SLoGin         self.0 -= rhs;
31640fe15e0SLoGin     }
31740fe15e0SLoGin }
31840fe15e0SLoGin 
31940fe15e0SLoGin impl SubAssign<VirtAddr> for VirtAddr {
32040fe15e0SLoGin     #[inline(always)]
32140fe15e0SLoGin     fn sub_assign(&mut self, rhs: VirtAddr) {
32240fe15e0SLoGin         self.0 -= rhs.0;
32340fe15e0SLoGin     }
32440fe15e0SLoGin }
32540fe15e0SLoGin 
32640fe15e0SLoGin impl Debug for VirtAddr {
32740fe15e0SLoGin     fn fmt(&self, f: &mut core::fmt::Formatter<'_>) -> core::fmt::Result {
32840fe15e0SLoGin         write!(f, "VirtAddr({:#x})", self.0)
32940fe15e0SLoGin     }
33040fe15e0SLoGin }
33140fe15e0SLoGin 
33240fe15e0SLoGin /// @brief 物理内存区域
33340fe15e0SLoGin #[derive(Clone, Copy, Debug)]
33440fe15e0SLoGin pub struct PhysMemoryArea {
33540fe15e0SLoGin     /// 物理基地址
33640fe15e0SLoGin     pub base: PhysAddr,
33740fe15e0SLoGin     /// 该区域的物理内存大小
33840fe15e0SLoGin     pub size: usize,
33992849878SLoGin 
34092849878SLoGin     pub flags: MemoryAreaAttr,
34140fe15e0SLoGin }
34240fe15e0SLoGin 
34399dbf38dSLoGin impl PhysMemoryArea {
34445626c85SLoGin     pub const DEFAULT: Self = Self {
34545626c85SLoGin         base: PhysAddr::new(0),
34645626c85SLoGin         size: 0,
34792849878SLoGin         flags: MemoryAreaAttr::empty(),
34845626c85SLoGin     };
34945626c85SLoGin 
35092849878SLoGin     pub fn new(base: PhysAddr, size: usize, flags: MemoryAreaAttr) -> Self {
35192849878SLoGin         Self { base, size, flags }
35299dbf38dSLoGin     }
35399dbf38dSLoGin 
35499dbf38dSLoGin     /// 返回向上页面对齐的区域起始物理地址
35599dbf38dSLoGin     pub fn area_base_aligned(&self) -> PhysAddr {
35699dbf38dSLoGin         return PhysAddr::new(
35799dbf38dSLoGin             (self.base.data() + (MMArch::PAGE_SIZE - 1)) & !(MMArch::PAGE_SIZE - 1),
35899dbf38dSLoGin         );
35999dbf38dSLoGin     }
36099dbf38dSLoGin 
36199dbf38dSLoGin     /// 返回向下页面对齐的区域截止物理地址
36299dbf38dSLoGin     pub fn area_end_aligned(&self) -> PhysAddr {
36399dbf38dSLoGin         return PhysAddr::new((self.base.data() + self.size) & !(MMArch::PAGE_SIZE - 1));
36499dbf38dSLoGin     }
36599dbf38dSLoGin }
36699dbf38dSLoGin 
36799dbf38dSLoGin impl Default for PhysMemoryArea {
36899dbf38dSLoGin     fn default() -> Self {
36945626c85SLoGin         return Self::DEFAULT;
37099dbf38dSLoGin     }
37199dbf38dSLoGin }
37299dbf38dSLoGin 
37340fe15e0SLoGin pub trait MemoryManagementArch: Clone + Copy + Debug {
37440fe15e0SLoGin     /// 页面大小的shift(假如页面4K,那么这个值就是12,因为2^12=4096)
37540fe15e0SLoGin     const PAGE_SHIFT: usize;
37640fe15e0SLoGin     /// 每个页表的页表项数目。(以2^n次幂来表示)假如有512个页表项,那么这个值就是9
37740fe15e0SLoGin     const PAGE_ENTRY_SHIFT: usize;
37840fe15e0SLoGin     /// 页表层级数量
37940fe15e0SLoGin     const PAGE_LEVELS: usize;
38040fe15e0SLoGin 
38140fe15e0SLoGin     /// 页表项的有效位的index(假如页表项的第0-51位有效,那么这个值就是52)
38240fe15e0SLoGin     const ENTRY_ADDRESS_SHIFT: usize;
38340fe15e0SLoGin     /// 页面的页表项的默认值
38440fe15e0SLoGin     const ENTRY_FLAG_DEFAULT_PAGE: usize;
38540fe15e0SLoGin     /// 页表的页表项的默认值
38640fe15e0SLoGin     const ENTRY_FLAG_DEFAULT_TABLE: usize;
38740fe15e0SLoGin     /// 页表项的present位被置位之后的值
38840fe15e0SLoGin     const ENTRY_FLAG_PRESENT: usize;
38940fe15e0SLoGin     /// 页表项为read only时的值
39040fe15e0SLoGin     const ENTRY_FLAG_READONLY: usize;
39140fe15e0SLoGin     /// 页表项为可读写状态的值
39240fe15e0SLoGin     const ENTRY_FLAG_READWRITE: usize;
39340fe15e0SLoGin     /// 页面项标记页面为user page的值
39440fe15e0SLoGin     const ENTRY_FLAG_USER: usize;
39540fe15e0SLoGin     /// 页面项标记页面为write through的值
39640fe15e0SLoGin     const ENTRY_FLAG_WRITE_THROUGH: usize;
39740fe15e0SLoGin     /// 页面项标记页面为cache disable的值
39840fe15e0SLoGin     const ENTRY_FLAG_CACHE_DISABLE: usize;
39940fe15e0SLoGin     /// 标记当前页面不可执行的标志位(Execute disable)(也就是说,不能从这段内存里面获取处理器指令)
40040fe15e0SLoGin     const ENTRY_FLAG_NO_EXEC: usize;
40140fe15e0SLoGin     /// 标记当前页面可执行的标志位(Execute enable)
40240fe15e0SLoGin     const ENTRY_FLAG_EXEC: usize;
40392849878SLoGin     /// 当该位为1时,标明这是一个脏页
40492849878SLoGin     const ENTRY_FLAG_DIRTY: usize;
40592849878SLoGin     /// 当该位为1时,代表这个页面被处理器访问过
40692849878SLoGin     const ENTRY_FLAG_ACCESSED: usize;
40740fe15e0SLoGin 
40840fe15e0SLoGin     /// 虚拟地址与物理地址的偏移量
40940fe15e0SLoGin     const PHYS_OFFSET: usize;
41040fe15e0SLoGin 
411*453452ccSLoGin     /// 内核在链接时被链接到的偏移量
412*453452ccSLoGin     const KERNEL_LINK_OFFSET: usize;
413*453452ccSLoGin 
414*453452ccSLoGin     const KERNEL_VIRT_START: usize = Self::PHYS_OFFSET + Self::KERNEL_LINK_OFFSET;
415*453452ccSLoGin 
41640fe15e0SLoGin     /// 每个页面的大小
41740fe15e0SLoGin     const PAGE_SIZE: usize = 1 << Self::PAGE_SHIFT;
41840fe15e0SLoGin     /// 通过这个mask,获取地址的页内偏移量
41940fe15e0SLoGin     const PAGE_OFFSET_MASK: usize = Self::PAGE_SIZE - 1;
42040314b30SXiaoye Zheng     /// 通过这个mask,获取页的首地址
42140314b30SXiaoye Zheng     const PAGE_MASK: usize = !(Self::PAGE_OFFSET_MASK);
42240fe15e0SLoGin     /// 页表项的地址、数据部分的shift。
42340fe15e0SLoGin     /// 打个比方,如果这个值为52,那么意味着页表项的[0, 52)位,用于表示地址以及其他的标志位
42440fe15e0SLoGin     const PAGE_ADDRESS_SHIFT: usize = Self::PAGE_LEVELS * Self::PAGE_ENTRY_SHIFT + Self::PAGE_SHIFT;
42540fe15e0SLoGin     /// 最大的虚拟地址(对于不同的架构,由于上述PAGE_ADDRESS_SHIFT可能包括了reserved bits, 事实上能表示的虚拟地址应该比这个值要小)
42640fe15e0SLoGin     const PAGE_ADDRESS_SIZE: usize = 1 << Self::PAGE_ADDRESS_SHIFT;
42740fe15e0SLoGin     /// 页表项的值与这个常量进行与运算,得到的结果是所填写的物理地址
42840fe15e0SLoGin     const PAGE_ADDRESS_MASK: usize = Self::PAGE_ADDRESS_SIZE - Self::PAGE_SIZE;
42940fe15e0SLoGin     /// 每个页表项的大小
43040fe15e0SLoGin     const PAGE_ENTRY_SIZE: usize = 1 << (Self::PAGE_SHIFT - Self::PAGE_ENTRY_SHIFT);
43140fe15e0SLoGin     /// 每个页表的页表项数目
43240fe15e0SLoGin     const PAGE_ENTRY_NUM: usize = 1 << Self::PAGE_ENTRY_SHIFT;
43340fe15e0SLoGin     /// 该字段用于根据虚拟地址,获取该虚拟地址在对应的页表中是第几个页表项
43440fe15e0SLoGin     const PAGE_ENTRY_MASK: usize = Self::PAGE_ENTRY_NUM - 1;
43540fe15e0SLoGin 
43640fe15e0SLoGin     const PAGE_NEGATIVE_MASK: usize = !((Self::PAGE_ADDRESS_SIZE) - 1);
43740fe15e0SLoGin 
43840fe15e0SLoGin     const ENTRY_ADDRESS_SIZE: usize = 1 << Self::ENTRY_ADDRESS_SHIFT;
43940fe15e0SLoGin     /// 该mask用于获取页表项中地址字段
44040fe15e0SLoGin     const ENTRY_ADDRESS_MASK: usize = Self::ENTRY_ADDRESS_SIZE - Self::PAGE_SIZE;
44140fe15e0SLoGin     /// 这个mask用于获取页表项中的flags
44240fe15e0SLoGin     const ENTRY_FLAGS_MASK: usize = !Self::ENTRY_ADDRESS_MASK;
44340fe15e0SLoGin 
44440fe15e0SLoGin     /// 用户空间的最高地址
44540fe15e0SLoGin     const USER_END_VADDR: VirtAddr;
44640fe15e0SLoGin     /// 用户堆的起始地址
44740fe15e0SLoGin     const USER_BRK_START: VirtAddr;
44840fe15e0SLoGin     /// 用户栈起始地址(向下生长,不包含该值)
44940fe15e0SLoGin     const USER_STACK_START: VirtAddr;
45040fe15e0SLoGin 
45174ffde66SLoGin     /// 内核的固定映射区的起始地址
45274ffde66SLoGin     const FIXMAP_START_VADDR: VirtAddr;
45374ffde66SLoGin     /// 内核的固定映射区的大小
45474ffde66SLoGin     const FIXMAP_SIZE: usize;
45574ffde66SLoGin     /// 内核的固定映射区的结束地址
45674ffde66SLoGin     const FIXMAP_END_VADDR: VirtAddr =
45774ffde66SLoGin         VirtAddr::new(Self::FIXMAP_START_VADDR.data() + Self::FIXMAP_SIZE);
45874ffde66SLoGin 
45940fe15e0SLoGin     /// @brief 用于初始化内存管理模块与架构相关的信息。
46045626c85SLoGin     /// 该函数应调用其他模块的接口,把可用内存区域添加到memblock,提供给BumpAllocator使用
46145626c85SLoGin     unsafe fn init();
46240fe15e0SLoGin 
46340fe15e0SLoGin     /// @brief 读取指定虚拟地址的值,并假设它是类型T的指针
46440fe15e0SLoGin     #[inline(always)]
46540fe15e0SLoGin     unsafe fn read<T>(address: VirtAddr) -> T {
46640fe15e0SLoGin         return ptr::read(address.data() as *const T);
46740fe15e0SLoGin     }
46840fe15e0SLoGin 
46940fe15e0SLoGin     /// @brief 将value写入到指定的虚拟地址
47040fe15e0SLoGin     #[inline(always)]
47140fe15e0SLoGin     unsafe fn write<T>(address: VirtAddr, value: T) {
47240fe15e0SLoGin         ptr::write(address.data() as *mut T, value);
47340fe15e0SLoGin     }
47440fe15e0SLoGin 
47540fe15e0SLoGin     #[inline(always)]
47640fe15e0SLoGin     unsafe fn write_bytes(address: VirtAddr, value: u8, count: usize) {
47740fe15e0SLoGin         ptr::write_bytes(address.data() as *mut u8, value, count);
47840fe15e0SLoGin     }
47940fe15e0SLoGin 
48040fe15e0SLoGin     /// @brief 刷新TLB中,关于指定虚拟地址的条目
48140fe15e0SLoGin     unsafe fn invalidate_page(address: VirtAddr);
48240fe15e0SLoGin 
48340fe15e0SLoGin     /// @brief 刷新TLB中,所有的条目
48440fe15e0SLoGin     unsafe fn invalidate_all();
48540fe15e0SLoGin 
48640fe15e0SLoGin     /// @brief 获取顶级页表的物理地址
48740fe15e0SLoGin     unsafe fn table(table_kind: PageTableKind) -> PhysAddr;
48840fe15e0SLoGin 
48940fe15e0SLoGin     /// @brief 设置顶级页表的物理地址到处理器中
49040fe15e0SLoGin     unsafe fn set_table(table_kind: PageTableKind, table: PhysAddr);
49140fe15e0SLoGin 
49240fe15e0SLoGin     /// @brief 将物理地址转换为虚拟地址.
49340fe15e0SLoGin     ///
49440fe15e0SLoGin     /// @param phys 物理地址
49540fe15e0SLoGin     ///
49640fe15e0SLoGin     /// @return 转换后的虚拟地址。如果转换失败,返回None
49740fe15e0SLoGin     #[inline(always)]
49840fe15e0SLoGin     unsafe fn phys_2_virt(phys: PhysAddr) -> Option<VirtAddr> {
49940fe15e0SLoGin         if let Some(vaddr) = phys.data().checked_add(Self::PHYS_OFFSET) {
50040fe15e0SLoGin             return Some(VirtAddr::new(vaddr));
50140fe15e0SLoGin         } else {
50240fe15e0SLoGin             return None;
50340fe15e0SLoGin         }
50440fe15e0SLoGin     }
50540fe15e0SLoGin 
50640fe15e0SLoGin     /// 将虚拟地址转换为物理地址
50740fe15e0SLoGin     ///
50840fe15e0SLoGin     /// ## 参数
50940fe15e0SLoGin     ///
51040fe15e0SLoGin     /// - `virt` 虚拟地址
51140fe15e0SLoGin     ///
51240fe15e0SLoGin     /// ## 返回值
51340fe15e0SLoGin     ///
51440fe15e0SLoGin     /// 转换后的物理地址。如果转换失败,返回None
51540fe15e0SLoGin     #[inline(always)]
51640fe15e0SLoGin     unsafe fn virt_2_phys(virt: VirtAddr) -> Option<PhysAddr> {
51740fe15e0SLoGin         if let Some(paddr) = virt.data().checked_sub(Self::PHYS_OFFSET) {
51840fe15e0SLoGin             return Some(PhysAddr::new(paddr));
51940fe15e0SLoGin         } else {
52040fe15e0SLoGin             return None;
52140fe15e0SLoGin         }
52240fe15e0SLoGin     }
52340fe15e0SLoGin 
52440fe15e0SLoGin     /// @brief 判断指定的虚拟地址是否正确(符合规范)
52540fe15e0SLoGin     fn virt_is_valid(virt: VirtAddr) -> bool;
52640fe15e0SLoGin 
52740fe15e0SLoGin     /// 获取内存管理初始化时,创建的第一个内核页表的地址
52840fe15e0SLoGin     fn initial_page_table() -> PhysAddr;
52940fe15e0SLoGin 
53040fe15e0SLoGin     /// 初始化新的usermapper,为用户进程创建页表
53140fe15e0SLoGin     fn setup_new_usermapper() -> Result<UserMapper, SystemError>;
5327a29d4fcSLoGin 
5337a29d4fcSLoGin     /// 创建页表项
5347a29d4fcSLoGin     ///
5357a29d4fcSLoGin     /// 这是一个低阶api,用于根据物理地址以及指定好的pageflags,创建页表项
5367a29d4fcSLoGin     ///
5377a29d4fcSLoGin     /// ## 参数
5387a29d4fcSLoGin     ///
5397a29d4fcSLoGin     /// - `paddr` 物理地址
5407a29d4fcSLoGin     /// - `page_flags` 页表项的flags
5417a29d4fcSLoGin     ///
5427a29d4fcSLoGin     /// ## 返回值
5437a29d4fcSLoGin     ///
5447a29d4fcSLoGin     /// 页表项的值
5457a29d4fcSLoGin     fn make_entry(paddr: PhysAddr, page_flags: usize) -> usize;
54640fe15e0SLoGin }
54740fe15e0SLoGin 
54840fe15e0SLoGin /// @brief 虚拟地址范围
54940fe15e0SLoGin /// 该结构体用于表示一个虚拟地址范围,包括起始地址与大小
55040fe15e0SLoGin ///
55140fe15e0SLoGin /// 请注意与VMA进行区分,该结构体被VMA所包含
55240fe15e0SLoGin #[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
55340fe15e0SLoGin pub struct VirtRegion {
55440fe15e0SLoGin     start: VirtAddr,
55540fe15e0SLoGin     size: usize,
55640fe15e0SLoGin }
55740fe15e0SLoGin 
55840fe15e0SLoGin #[allow(dead_code)]
55940fe15e0SLoGin impl VirtRegion {
56040fe15e0SLoGin     /// # 创建一个新的虚拟地址范围
56140fe15e0SLoGin     pub fn new(start: VirtAddr, size: usize) -> Self {
56240fe15e0SLoGin         VirtRegion { start, size }
56340fe15e0SLoGin     }
56440fe15e0SLoGin 
56540fe15e0SLoGin     /// 获取虚拟地址范围的起始地址
56640fe15e0SLoGin     #[inline(always)]
56740fe15e0SLoGin     pub fn start(&self) -> VirtAddr {
56840fe15e0SLoGin         self.start
56940fe15e0SLoGin     }
57040fe15e0SLoGin 
57140fe15e0SLoGin     /// 获取虚拟地址范围的截止地址(不包括返回的地址)
57240fe15e0SLoGin     #[inline(always)]
57340fe15e0SLoGin     pub fn end(&self) -> VirtAddr {
57440fe15e0SLoGin         return self.start().add(self.size);
57540fe15e0SLoGin     }
57640fe15e0SLoGin 
57740fe15e0SLoGin     /// # Create a new VirtRegion from a range [start, end)
57840fe15e0SLoGin     ///
57940fe15e0SLoGin     /// If end <= start, return None
58040fe15e0SLoGin     pub fn between(start: VirtAddr, end: VirtAddr) -> Option<Self> {
58140fe15e0SLoGin         if unlikely(end.data() <= start.data()) {
58240fe15e0SLoGin             return None;
58340fe15e0SLoGin         }
58440fe15e0SLoGin         let size = end.data() - start.data();
58540fe15e0SLoGin         return Some(VirtRegion::new(start, size));
58640fe15e0SLoGin     }
58740fe15e0SLoGin 
58840fe15e0SLoGin     /// # 取两个虚拟地址范围的交集
58940fe15e0SLoGin     ///
59040fe15e0SLoGin     /// 如果两个虚拟地址范围没有交集,返回None
59140fe15e0SLoGin     pub fn intersect(&self, other: &VirtRegion) -> Option<VirtRegion> {
59240fe15e0SLoGin         let start = self.start.max(other.start);
59340fe15e0SLoGin         let end = self.end().min(other.end());
59440fe15e0SLoGin         return VirtRegion::between(start, end);
59540fe15e0SLoGin     }
59640fe15e0SLoGin 
59740fe15e0SLoGin     /// 设置虚拟地址范围的起始地址
59840fe15e0SLoGin     #[inline(always)]
59940fe15e0SLoGin     pub fn set_start(&mut self, start: VirtAddr) {
60040fe15e0SLoGin         self.start = start;
60140fe15e0SLoGin     }
60240fe15e0SLoGin 
60340fe15e0SLoGin     #[inline(always)]
60440fe15e0SLoGin     pub fn size(&self) -> usize {
60540fe15e0SLoGin         self.size
60640fe15e0SLoGin     }
60740fe15e0SLoGin 
60840fe15e0SLoGin     /// 设置虚拟地址范围的大小
60940fe15e0SLoGin     #[inline(always)]
61040fe15e0SLoGin     pub fn set_size(&mut self, size: usize) {
61140fe15e0SLoGin         self.size = size;
61240fe15e0SLoGin     }
61340fe15e0SLoGin 
61440fe15e0SLoGin     /// 判断虚拟地址范围是否为空
61540fe15e0SLoGin     #[inline(always)]
61640fe15e0SLoGin     pub fn is_empty(&self) -> bool {
61740fe15e0SLoGin         self.size == 0
61840fe15e0SLoGin     }
61940fe15e0SLoGin 
62040fe15e0SLoGin     /// 将虚拟地址区域的大小向上对齐到页大小
62140fe15e0SLoGin     #[inline(always)]
62240fe15e0SLoGin     pub fn round_up_size_to_page(self) -> Self {
62340fe15e0SLoGin         return VirtRegion::new(self.start, round_up_to_page_size(self.size));
62440fe15e0SLoGin     }
62540fe15e0SLoGin 
62640fe15e0SLoGin     /// 判断两个虚拟地址范围是否由于具有交集而导致冲突
62740fe15e0SLoGin     #[inline(always)]
62840fe15e0SLoGin     pub fn collide(&self, other: &VirtRegion) -> bool {
62940fe15e0SLoGin         return self.intersect(other).is_some();
63040fe15e0SLoGin     }
63140fe15e0SLoGin 
63240fe15e0SLoGin     pub fn iter_pages(&self) -> VirtPageFrameIter {
63340fe15e0SLoGin         return VirtPageFrame::iter_range(
63440fe15e0SLoGin             VirtPageFrame::new(self.start),
63540fe15e0SLoGin             VirtPageFrame::new(self.end()),
63640fe15e0SLoGin         );
63740fe15e0SLoGin     }
63840fe15e0SLoGin 
63940fe15e0SLoGin     /// 获取[self.start(), region.start())的虚拟地址范围
64040fe15e0SLoGin     ///
64140fe15e0SLoGin     /// 如果self.start() >= region.start(),返回None
64240fe15e0SLoGin     pub fn before(self, region: &VirtRegion) -> Option<Self> {
64340fe15e0SLoGin         return Self::between(self.start(), region.start());
64440fe15e0SLoGin     }
64540fe15e0SLoGin 
64640fe15e0SLoGin     /// 获取[region.end(),self.end())的虚拟地址范围
64740fe15e0SLoGin     ///
64840fe15e0SLoGin     /// 如果 self.end() >= region.end() ,返回None
64940fe15e0SLoGin     pub fn after(self, region: &VirtRegion) -> Option<Self> {
65040fe15e0SLoGin         // if self.end() > region.end() none
65140fe15e0SLoGin         return Self::between(region.end(), self.end());
65240fe15e0SLoGin     }
65340fe15e0SLoGin 
65440fe15e0SLoGin     /// 把当前虚拟地址范围内的某个虚拟地址,转换为另一个虚拟地址范围内的虚拟地址
65540fe15e0SLoGin     ///
65640fe15e0SLoGin     /// 如果vaddr不在当前虚拟地址范围内,返回None
65740fe15e0SLoGin     ///
65840fe15e0SLoGin     /// 如果vaddr在当前虚拟地址范围内,返回vaddr在new_base中的虚拟地址
65940fe15e0SLoGin     pub fn rebase(self, vaddr: VirtAddr, new_base: &VirtRegion) -> Option<VirtAddr> {
66040fe15e0SLoGin         if !self.contains(vaddr) {
66140fe15e0SLoGin             return None;
66240fe15e0SLoGin         }
66340fe15e0SLoGin         let offset = vaddr.data() - self.start().data();
66440fe15e0SLoGin         let new_start = new_base.start().data() + offset;
66540fe15e0SLoGin         return Some(VirtAddr::new(new_start));
66640fe15e0SLoGin     }
66740fe15e0SLoGin 
66840fe15e0SLoGin     /// 判断虚拟地址范围是否包含指定的虚拟地址
66940fe15e0SLoGin     pub fn contains(&self, addr: VirtAddr) -> bool {
67040fe15e0SLoGin         return self.start() <= addr && addr < self.end();
67140fe15e0SLoGin     }
67240fe15e0SLoGin 
67340fe15e0SLoGin     /// 创建当前虚拟地址范围的页面迭代器
67440fe15e0SLoGin     pub fn pages(&self) -> VirtPageFrameIter {
67540fe15e0SLoGin         return VirtPageFrame::iter_range(
67640fe15e0SLoGin             VirtPageFrame::new(self.start()),
67740fe15e0SLoGin             VirtPageFrame::new(self.end()),
67840fe15e0SLoGin         );
67940fe15e0SLoGin     }
68040fe15e0SLoGin }
68140fe15e0SLoGin 
68240fe15e0SLoGin impl PartialOrd for VirtRegion {
68340fe15e0SLoGin     fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
68440fe15e0SLoGin         return self.start.partial_cmp(&other.start);
68540fe15e0SLoGin     }
68640fe15e0SLoGin }
68740fe15e0SLoGin 
68840fe15e0SLoGin impl Ord for VirtRegion {
68940fe15e0SLoGin     fn cmp(&self, other: &Self) -> cmp::Ordering {
69040fe15e0SLoGin         return self.start.cmp(&other.start);
69140fe15e0SLoGin     }
69240fe15e0SLoGin }
69340fe15e0SLoGin 
69440fe15e0SLoGin /// ## 判断虚拟地址是否超出了用户空间
69540fe15e0SLoGin ///
69640fe15e0SLoGin /// 如果虚拟地址超出了用户空间,返回Err(SystemError::EFAULT).
69740fe15e0SLoGin /// 如果end < start,返回Err(SystemError::EOVERFLOW)
69840fe15e0SLoGin ///
69940fe15e0SLoGin /// 否则返回Ok(())
70040fe15e0SLoGin pub fn verify_area(addr: VirtAddr, size: usize) -> Result<(), SystemError> {
70140fe15e0SLoGin     let end = addr.add(size);
70240fe15e0SLoGin     if unlikely(end.data() < addr.data()) {
70340fe15e0SLoGin         return Err(SystemError::EOVERFLOW);
70440fe15e0SLoGin     }
70540fe15e0SLoGin 
70640fe15e0SLoGin     if !addr.check_user() || !end.check_user() {
70740fe15e0SLoGin         return Err(SystemError::EFAULT);
70840fe15e0SLoGin     }
70940fe15e0SLoGin 
71040fe15e0SLoGin     return Ok(());
71140fe15e0SLoGin }
712