751 lines
24 KiB
Rust
751 lines
24 KiB
Rust
use alloc::collections::{BTreeSet, VecDeque};
|
|
use alloc::sync::{Arc, Weak};
|
|
use core::borrow::Borrow;
|
|
use core::cmp::{self, Eq, Ordering, PartialEq, PartialOrd};
|
|
use core::intrinsics;
|
|
use core::ops::{Deref, DerefMut};
|
|
use spin::Mutex;
|
|
|
|
use crate::arch::paging::PAGE_SIZE;
|
|
use crate::context::file::FileDescriptor;
|
|
use crate::ipi::{ipi, IpiKind, IpiTarget};
|
|
use crate::memory::Frame;
|
|
use crate::paging::{ActivePageTable, InactivePageTable, Page, PageIter, PhysicalAddress, VirtualAddress};
|
|
use crate::paging::entry::EntryFlags;
|
|
use crate::paging::mapper::MapperFlushAll;
|
|
use crate::paging::temporary_page::TemporaryPage;
|
|
|
|
/// Round up to the nearest multiple of page size
|
|
pub fn round_pages(size: usize) -> usize {
|
|
let rounded_up = size + PAGE_SIZE - 1;
|
|
rounded_up - rounded_up % PAGE_SIZE
|
|
}
|
|
|
|
#[derive(Debug, Default)]
|
|
pub struct UserGrants {
|
|
pub inner: BTreeSet<Grant>,
|
|
}
|
|
impl UserGrants {
|
|
/// Return a free region with the specified size
|
|
pub fn find_free(&self, size: usize) -> Region {
|
|
// TODO: Find deallocated regions that fits size
|
|
// Right now we just find region at end
|
|
|
|
// Get last used region
|
|
let last = self.inner.iter().next_back().map(Region::from).unwrap_or(Region::new(VirtualAddress::new(0), 0));
|
|
// At the earliest, start at grant offset
|
|
let address = cmp::max(last.end_address().get(), crate::USER_GRANT_OFFSET);
|
|
// Create new region
|
|
Region::new(VirtualAddress::new(address), size)
|
|
}
|
|
/// Returns the grant, if any, which occupies the specified address
|
|
pub fn contains(&self, address: VirtualAddress) -> Option<&Grant> {
|
|
let byte = Region::byte(address);
|
|
self.inner
|
|
.range(..byte)
|
|
.next_back()
|
|
.filter(|existing| existing.occupies(byte))
|
|
}
|
|
/// Returns an iterator over all grants that occupy some part of the
|
|
/// requested region
|
|
pub fn conflicts<'a>(&'a self, requested: Region) -> impl Iterator<Item = &'a Grant> + 'a {
|
|
let start = self.contains(requested.start_address());
|
|
let start_region = start.map(Region::from).unwrap_or(requested);
|
|
start
|
|
.into_iter()
|
|
.chain(
|
|
self
|
|
.inner
|
|
.range(start_region..)
|
|
.take_while(move |region| region.occupies(requested))
|
|
)
|
|
}
|
|
}
|
|
impl Deref for UserGrants {
|
|
type Target = BTreeSet<Grant>;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.inner
|
|
}
|
|
}
|
|
impl DerefMut for UserGrants {
|
|
fn deref_mut(&mut self) -> &mut Self::Target {
|
|
&mut self.inner
|
|
}
|
|
}
|
|
|
|
#[derive(Debug, Clone, Copy, PartialOrd, Ord, PartialEq, Eq)]
|
|
pub struct Region {
|
|
start: VirtualAddress,
|
|
size: usize,
|
|
}
|
|
impl Region {
|
|
/// Create a new region with the given size
|
|
pub fn new(start: VirtualAddress, size: usize) -> Self {
|
|
Self { start, size }
|
|
}
|
|
|
|
/// Create a new region spanning exactly one byte
|
|
pub fn byte(address: VirtualAddress) -> Self {
|
|
Self {
|
|
start: address,
|
|
size: 1,
|
|
}
|
|
}
|
|
|
|
/// Create a new region spanning between the start and end address
|
|
/// (exclusive end)
|
|
pub fn between(start: VirtualAddress, end: VirtualAddress) -> Self {
|
|
Self {
|
|
start,
|
|
size: end.get() - start.get(),
|
|
}
|
|
}
|
|
|
|
/// Return the part of the specified region that intersects with self.
|
|
pub fn intersect(&self, other: Self) -> Self {
|
|
Self::between(
|
|
cmp::max(self.start_address(), other.start_address()),
|
|
cmp::min(self.end_address(), other.end_address()),
|
|
)
|
|
}
|
|
|
|
/// Get the start address of the region
|
|
pub fn start_address(&self) -> VirtualAddress {
|
|
self.start
|
|
}
|
|
/// Set the start address of the region
|
|
pub fn set_start_address(&mut self, start: VirtualAddress) {
|
|
self.start = start;
|
|
}
|
|
|
|
/// Get the last address in the region (inclusive end)
|
|
pub fn final_address(&self) -> VirtualAddress {
|
|
VirtualAddress::new(self.start.get() + self.size - 1)
|
|
}
|
|
|
|
/// Get the start address of the next region (exclusive end)
|
|
pub fn end_address(&self) -> VirtualAddress {
|
|
VirtualAddress::new(self.start.get() + self.size)
|
|
}
|
|
|
|
/// Return the exact size of the region
|
|
pub fn size(&self) -> usize {
|
|
self.size
|
|
}
|
|
|
|
/// Return true if the size of this region is zero. Grants with such a
|
|
/// region should never exist.
|
|
pub fn is_empty(&self) -> bool {
|
|
self.size == 0
|
|
}
|
|
|
|
/// Set the exact size of the region
|
|
pub fn set_size(&mut self, size: usize) {
|
|
self.size = size;
|
|
}
|
|
|
|
/// Round region up to nearest page size
|
|
pub fn round(self) -> Self {
|
|
Self {
|
|
size: round_pages(self.size),
|
|
..self
|
|
}
|
|
}
|
|
|
|
/// Return the size of the grant in multiples of the page size
|
|
pub fn full_size(&self) -> usize {
|
|
self.round().size()
|
|
}
|
|
|
|
/// Returns true if the address is within the regions's requested range
|
|
pub fn collides(&self, other: Self) -> bool {
|
|
self.start_address() <= other.start_address() && other.end_address().get() - self.start_address().get() < self.size()
|
|
}
|
|
/// Returns true if the address is within the regions's actual range (so,
|
|
/// rounded up to the page size)
|
|
pub fn occupies(&self, other: Self) -> bool {
|
|
self.round().collides(other)
|
|
}
|
|
}
|
|
|
|
impl<'a> From<&'a Grant> for Region {
|
|
fn from(source: &'a Grant) -> Self {
|
|
source.region
|
|
}
|
|
}
|
|
|
|
|
|
#[derive(Debug)]
|
|
pub struct Grant {
|
|
region: Region,
|
|
flags: EntryFlags,
|
|
mapped: bool,
|
|
owned: bool,
|
|
//TODO: This is probably a very heavy way to keep track of fmap'd files, perhaps move to the context?
|
|
pub desc_opt: Option<FileDescriptor>,
|
|
}
|
|
|
|
impl Grant {
|
|
/// Get a mutable reference to the region. This is unsafe, because a bad
|
|
/// region could lead to the wrong addresses being unmapped.
|
|
pub unsafe fn region_mut(&mut self) -> &mut Region {
|
|
&mut self.region
|
|
}
|
|
|
|
pub fn physmap(from: PhysicalAddress, to: VirtualAddress, size: usize, flags: EntryFlags) -> Grant {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(to);
|
|
let end_page = Page::containing_address(VirtualAddress::new(to.get() + size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let frame = Frame::containing_address(PhysicalAddress::new(page.start_address().get() - to.get() + from.get()));
|
|
let result = active_table.map_to(page, frame, flags);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
Grant {
|
|
region: Region {
|
|
start: to,
|
|
size,
|
|
},
|
|
flags,
|
|
mapped: true,
|
|
owned: false,
|
|
desc_opt: None,
|
|
}
|
|
}
|
|
|
|
pub fn map(to: VirtualAddress, size: usize, flags: EntryFlags) -> Grant {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(to);
|
|
let end_page = Page::containing_address(VirtualAddress::new(to.get() + size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let result = active_table.map(page, flags);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
Grant {
|
|
region: Region {
|
|
start: to,
|
|
size,
|
|
},
|
|
flags,
|
|
mapped: true,
|
|
owned: true,
|
|
desc_opt: None,
|
|
}
|
|
}
|
|
|
|
pub fn map_inactive(from: VirtualAddress, to: VirtualAddress, size: usize, flags: EntryFlags, desc_opt: Option<FileDescriptor>, new_table: &mut InactivePageTable, temporary_page: &mut TemporaryPage) -> Grant {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
//TODO: Do not allocate
|
|
let mut frames = VecDeque::with_capacity(size/PAGE_SIZE);
|
|
|
|
let start_page = Page::containing_address(from);
|
|
let end_page = Page::containing_address(VirtualAddress::new(from.get() + size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let frame = active_table.translate_page(page).expect("grant references unmapped memory");
|
|
frames.push_back(frame);
|
|
}
|
|
|
|
active_table.with(new_table, temporary_page, |mapper| {
|
|
let start_page = Page::containing_address(to);
|
|
let end_page = Page::containing_address(VirtualAddress::new(to.get() + size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let frame = frames.pop_front().expect("grant did not find enough frames");
|
|
let result = mapper.map_to(page, frame, flags);
|
|
// Ignore result due to mapping on inactive table
|
|
unsafe { result.ignore(); }
|
|
}
|
|
});
|
|
|
|
ipi(IpiKind::Tlb, IpiTarget::Other);
|
|
|
|
Grant {
|
|
region: Region {
|
|
start: to,
|
|
size,
|
|
},
|
|
flags,
|
|
mapped: true,
|
|
owned: false,
|
|
desc_opt,
|
|
}
|
|
}
|
|
|
|
/// This function should only be used in clone!
|
|
pub fn secret_clone(&self, new_start: VirtualAddress) -> Grant {
|
|
assert!(self.mapped);
|
|
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(self.region.start);
|
|
let end_page = Page::containing_address(VirtualAddress::new(self.region.start.get() + self.region.size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
//TODO: One function to do both?
|
|
let flags = active_table.translate_page_flags(page).expect("grant references unmapped memory");
|
|
let frame = active_table.translate_page(page).expect("grant references unmapped memory");
|
|
|
|
let new_page = Page::containing_address(VirtualAddress::new(page.start_address().get() - self.region.start.get() + new_start.get()));
|
|
if self.owned {
|
|
let result = active_table.map(new_page, EntryFlags::PRESENT | EntryFlags::WRITABLE | EntryFlags::NO_EXECUTE);
|
|
flush_all.consume(result);
|
|
} else {
|
|
let result = active_table.map_to(new_page, frame, flags);
|
|
flush_all.consume(result);
|
|
}
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
if self.owned {
|
|
unsafe {
|
|
intrinsics::copy(self.region.start.get() as *const u8, new_start.get() as *mut u8, self.region.size);
|
|
}
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
//TODO: One function to do both?
|
|
let flags = active_table.translate_page_flags(page).expect("grant references unmapped memory");
|
|
|
|
let new_page = Page::containing_address(VirtualAddress::new(page.start_address().get() - self.region.start.get() + new_start.get()));
|
|
let result = active_table.remap(new_page, flags);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
}
|
|
|
|
Grant {
|
|
region: Region {
|
|
start: new_start,
|
|
size: self.region.size,
|
|
},
|
|
flags: self.flags,
|
|
mapped: true,
|
|
owned: self.owned,
|
|
desc_opt: self.desc_opt.clone()
|
|
}
|
|
}
|
|
|
|
pub fn move_to(&mut self, new_start: VirtualAddress, new_table: &mut InactivePageTable, temporary_page: &mut TemporaryPage) {
|
|
assert!(self.mapped);
|
|
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(self.region.start);
|
|
let end_page = Page::containing_address(VirtualAddress::new(self.region.start.get() + self.region.size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
//TODO: One function to do both?
|
|
let flags = active_table.translate_page_flags(page).expect("grant references unmapped memory");
|
|
let (result, frame) = active_table.unmap_return(page, false);
|
|
flush_all.consume(result);
|
|
|
|
active_table.with(new_table, temporary_page, |mapper| {
|
|
let new_page = Page::containing_address(VirtualAddress::new(page.start_address().get() - self.region.start.get() + new_start.get()));
|
|
let result = mapper.map_to(new_page, frame, flags);
|
|
// Ignore result due to mapping on inactive table
|
|
unsafe { result.ignore(); }
|
|
});
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
self.region.start = new_start;
|
|
}
|
|
|
|
pub fn flags(&self) -> EntryFlags {
|
|
self.flags
|
|
}
|
|
|
|
pub unsafe fn set_mapped(&mut self, mapped: bool) {
|
|
self.mapped = mapped;
|
|
}
|
|
|
|
pub fn unmap(mut self) {
|
|
assert!(self.mapped);
|
|
|
|
if self.owned {
|
|
println!("Grant::unmap: leaked {:?}", self);
|
|
}
|
|
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(self.start_address());
|
|
let end_page = Page::containing_address(self.final_address());
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let (result, _frame) = active_table.unmap_return(page, false);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
if let Some(desc) = self.desc_opt.take() {
|
|
//TODO: This imposes a large cost on unmapping, but that cost cannot be avoided without modifying fmap and funmap
|
|
let _ = desc.close();
|
|
}
|
|
|
|
self.mapped = false;
|
|
}
|
|
|
|
pub fn unmap_inactive(mut self, new_table: &mut InactivePageTable, temporary_page: &mut TemporaryPage) {
|
|
assert!(self.mapped);
|
|
|
|
if self.owned {
|
|
println!("Grant::unmap_inactive: leaked {:?}", self);
|
|
}
|
|
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
active_table.with(new_table, temporary_page, |mapper| {
|
|
let start_page = Page::containing_address(self.start_address());
|
|
let end_page = Page::containing_address(self.final_address());
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
let (result, _frame) = mapper.unmap_return(page, false);
|
|
// This is not the active table, so the flush can be ignored
|
|
unsafe { result.ignore(); }
|
|
}
|
|
});
|
|
|
|
ipi(IpiKind::Tlb, IpiTarget::Other);
|
|
|
|
if let Some(desc) = self.desc_opt.take() {
|
|
//TODO: This imposes a large cost on unmapping, but that cost cannot be avoided without modifying fmap and funmap
|
|
let _ = desc.close();
|
|
}
|
|
|
|
self.mapped = false;
|
|
}
|
|
|
|
/// Extract out a region into a separate grant. The return value is as
|
|
/// follows: (before, new split, after). Before and after may be `None`,
|
|
/// which occurs when the split off region is at the start or end of the
|
|
/// page respectively.
|
|
///
|
|
/// # Panics
|
|
///
|
|
/// Panics if the start or end addresses of the region is not aligned to the
|
|
/// page size. To round up the size to the nearest page size, use `.round()`
|
|
/// on the region.
|
|
pub fn split_out(mut self, region: Region) -> Option<(Option<Grant>, Grant, Option<Grant>)> {
|
|
assert_eq!(region.start_address().get() % PAGE_SIZE, 0, "split_out must be called on page-size aligned start address");
|
|
assert_eq!(region.size() % PAGE_SIZE, 0, "split_out must be called on page-size aligned end address");
|
|
|
|
let region = self.intersect(region);
|
|
|
|
// Regions share no common points
|
|
if region.is_empty() {
|
|
return None;
|
|
}
|
|
|
|
let before = Region::between(
|
|
self.start_address(),
|
|
region.start_address(),
|
|
);
|
|
let after = Region::between(
|
|
region.end_address(),
|
|
self.end_address(),
|
|
);
|
|
|
|
let before_grant = if before.is_empty() { None } else {
|
|
Some(Grant {
|
|
region: before,
|
|
flags: self.flags,
|
|
mapped: self.mapped,
|
|
owned: self.owned,
|
|
desc_opt: self.desc_opt.clone(),
|
|
})
|
|
};
|
|
let after_grant = if after.is_empty() { None } else {
|
|
Some(Grant {
|
|
region: after,
|
|
flags: self.flags,
|
|
mapped: self.mapped,
|
|
owned: self.owned,
|
|
desc_opt: self.desc_opt.clone(),
|
|
})
|
|
};
|
|
|
|
unsafe {
|
|
*self.region_mut() = region;
|
|
}
|
|
|
|
Some((before_grant, self, after_grant))
|
|
}
|
|
}
|
|
|
|
impl Deref for Grant {
|
|
type Target = Region;
|
|
fn deref(&self) -> &Self::Target {
|
|
&self.region
|
|
}
|
|
}
|
|
|
|
impl PartialOrd for Grant {
|
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
|
self.region.partial_cmp(&other.region)
|
|
}
|
|
}
|
|
impl Ord for Grant {
|
|
fn cmp(&self, other: &Self) -> Ordering {
|
|
self.region.cmp(&other.region)
|
|
}
|
|
}
|
|
impl PartialEq for Grant {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.region.eq(&other.region)
|
|
}
|
|
}
|
|
impl Eq for Grant {}
|
|
|
|
impl Borrow<Region> for Grant {
|
|
fn borrow(&self) -> &Region {
|
|
&self.region
|
|
}
|
|
}
|
|
|
|
impl Drop for Grant {
|
|
fn drop(&mut self) {
|
|
assert!(!self.mapped, "Grant dropped while still mapped");
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Debug)]
|
|
pub enum SharedMemory {
|
|
Owned(Arc<Mutex<Memory>>),
|
|
Borrowed(Weak<Mutex<Memory>>)
|
|
}
|
|
|
|
impl SharedMemory {
|
|
pub fn with<F, T>(&self, f: F) -> T where F: FnOnce(&mut Memory) -> T {
|
|
match *self {
|
|
SharedMemory::Owned(ref memory_lock) => {
|
|
let mut memory = memory_lock.lock();
|
|
f(&mut *memory)
|
|
},
|
|
SharedMemory::Borrowed(ref memory_weak) => {
|
|
let memory_lock = memory_weak.upgrade().expect("SharedMemory::Borrowed no longer valid");
|
|
let mut memory = memory_lock.lock();
|
|
f(&mut *memory)
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn borrow(&self) -> SharedMemory {
|
|
match *self {
|
|
SharedMemory::Owned(ref memory_lock) => SharedMemory::Borrowed(Arc::downgrade(memory_lock)),
|
|
SharedMemory::Borrowed(ref memory_lock) => SharedMemory::Borrowed(memory_lock.clone())
|
|
}
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct Memory {
|
|
start: VirtualAddress,
|
|
size: usize,
|
|
flags: EntryFlags
|
|
}
|
|
|
|
impl Memory {
|
|
pub fn new(start: VirtualAddress, size: usize, flags: EntryFlags, clear: bool) -> Self {
|
|
let mut memory = Memory {
|
|
start,
|
|
size,
|
|
flags,
|
|
};
|
|
|
|
memory.map(clear);
|
|
|
|
memory
|
|
}
|
|
|
|
pub fn to_shared(self) -> SharedMemory {
|
|
SharedMemory::Owned(Arc::new(Mutex::new(self)))
|
|
}
|
|
|
|
pub fn start_address(&self) -> VirtualAddress {
|
|
self.start
|
|
}
|
|
|
|
pub fn size(&self) -> usize {
|
|
self.size
|
|
}
|
|
|
|
pub fn flags(&self) -> EntryFlags {
|
|
self.flags
|
|
}
|
|
|
|
pub fn pages(&self) -> PageIter {
|
|
let start_page = Page::containing_address(self.start);
|
|
let end_page = Page::containing_address(VirtualAddress::new(self.start.get() + self.size - 1));
|
|
Page::range_inclusive(start_page, end_page)
|
|
}
|
|
|
|
fn map(&mut self, clear: bool) {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
for page in self.pages() {
|
|
let result = active_table.map(page, self.flags);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
if clear {
|
|
assert!(self.flags.contains(EntryFlags::WRITABLE));
|
|
unsafe {
|
|
intrinsics::write_bytes(self.start_address().get() as *mut u8, 0, self.size);
|
|
}
|
|
}
|
|
}
|
|
|
|
fn unmap(&mut self) {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
for page in self.pages() {
|
|
let result = active_table.unmap(page);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
}
|
|
|
|
/// A complicated operation to move a piece of memory to a new page table
|
|
/// It also allows for changing the address at the same time
|
|
pub fn move_to(&mut self, new_start: VirtualAddress, new_table: &mut InactivePageTable, temporary_page: &mut TemporaryPage) {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
for page in self.pages() {
|
|
let (result, frame) = active_table.unmap_return(page, false);
|
|
flush_all.consume(result);
|
|
|
|
active_table.with(new_table, temporary_page, |mapper| {
|
|
let new_page = Page::containing_address(VirtualAddress::new(page.start_address().get() - self.start.get() + new_start.get()));
|
|
let result = mapper.map_to(new_page, frame, self.flags);
|
|
// This is not the active table, so the flush can be ignored
|
|
unsafe { result.ignore(); }
|
|
});
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
self.start = new_start;
|
|
}
|
|
|
|
pub fn remap(&mut self, new_flags: EntryFlags) {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
for page in self.pages() {
|
|
let result = active_table.remap(page, new_flags);
|
|
flush_all.consume(result);
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
self.flags = new_flags;
|
|
}
|
|
|
|
pub fn resize(&mut self, new_size: usize, clear: bool) {
|
|
let mut active_table = unsafe { ActivePageTable::new() };
|
|
|
|
//TODO: Calculate page changes to minimize operations
|
|
if new_size > self.size {
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(VirtualAddress::new(self.start.get() + self.size));
|
|
let end_page = Page::containing_address(VirtualAddress::new(self.start.get() + new_size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
if active_table.translate_page(page).is_none() {
|
|
let result = active_table.map(page, self.flags);
|
|
flush_all.consume(result);
|
|
}
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
|
|
if clear {
|
|
unsafe {
|
|
intrinsics::write_bytes((self.start.get() + self.size) as *mut u8, 0, new_size - self.size);
|
|
}
|
|
}
|
|
} else if new_size < self.size {
|
|
let mut flush_all = MapperFlushAll::new();
|
|
|
|
let start_page = Page::containing_address(VirtualAddress::new(self.start.get() + new_size));
|
|
let end_page = Page::containing_address(VirtualAddress::new(self.start.get() + self.size - 1));
|
|
for page in Page::range_inclusive(start_page, end_page) {
|
|
if active_table.translate_page(page).is_some() {
|
|
let result = active_table.unmap(page);
|
|
flush_all.consume(result);
|
|
}
|
|
}
|
|
|
|
flush_all.flush(&mut active_table);
|
|
}
|
|
|
|
self.size = new_size;
|
|
}
|
|
}
|
|
|
|
impl Drop for Memory {
|
|
fn drop(&mut self) {
|
|
self.unmap();
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct Tls {
|
|
pub master: VirtualAddress,
|
|
pub file_size: usize,
|
|
pub mem: Memory,
|
|
pub offset: usize,
|
|
}
|
|
|
|
impl Tls {
|
|
/// Load TLS data from master
|
|
pub unsafe fn load(&mut self) {
|
|
intrinsics::copy(
|
|
self.master.get() as *const u8,
|
|
(self.mem.start_address().get() + self.offset) as *mut u8,
|
|
self.file_size
|
|
);
|
|
}
|
|
}
|
|
|
|
#[cfg(tests)]
|
|
mod tests {
|
|
// TODO: Get these tests working
|
|
#[test]
|
|
fn region_collides() {
|
|
assert!(Region::new(0, 2).collides(Region::new(0, 1)));
|
|
assert!(Region::new(0, 2).collides(Region::new(1, 1)));
|
|
assert!(!Region::new(0, 2).collides(Region::new(2, 1)));
|
|
assert!(!Region::new(0, 2).collides(Region::new(3, 1)));
|
|
}
|
|
}
|