949 lines
36 KiB
Rust
949 lines
36 KiB
Rust
use alloc::collections::{BTreeMap, BTreeSet};
|
|
use alloc::{sync::Arc, vec::Vec};
|
|
use core::borrow::Borrow;
|
|
use core::cmp::{self, Eq, Ordering, PartialEq, PartialOrd};
|
|
use core::fmt::{self, Debug};
|
|
use core::ops::Deref;
|
|
use spin::{RwLock, RwLockWriteGuard};
|
|
use syscall::{
|
|
flag::MapFlags,
|
|
error::*,
|
|
};
|
|
use rmm::Arch as _;
|
|
|
|
use crate::arch::paging::PAGE_SIZE;
|
|
use crate::context::file::FileDescriptor;
|
|
use crate::memory::{Enomem, Frame};
|
|
use crate::paging::mapper::{Flusher, InactiveFlusher, PageFlushAll};
|
|
use crate::paging::{KernelMapper, Page, PageFlags, PageIter, PageMapper, PhysicalAddress, RmmA, round_up_pages, VirtualAddress};
|
|
|
|
pub const MMAP_MIN_DEFAULT: usize = PAGE_SIZE;
|
|
|
|
pub fn page_flags(flags: MapFlags) -> PageFlags<RmmA> {
|
|
PageFlags::new()
|
|
.user(true)
|
|
.execute(flags.contains(MapFlags::PROT_EXEC))
|
|
.write(flags.contains(MapFlags::PROT_WRITE))
|
|
//TODO: PROT_READ
|
|
}
|
|
pub fn map_flags(page_flags: PageFlags<RmmA>) -> MapFlags {
|
|
let mut flags = MapFlags::PROT_READ;
|
|
if page_flags.has_write() { flags |= MapFlags::PROT_WRITE; }
|
|
if page_flags.has_execute() { flags |= MapFlags::PROT_EXEC; }
|
|
// TODO: MAP_SHARED/MAP_PRIVATE (requires that grants keep track of what they borrow and if
|
|
// they borrow shared or CoW).
|
|
flags
|
|
}
|
|
|
|
pub struct UnmapResult {
|
|
pub file_desc: Option<GrantFileRef>,
|
|
}
|
|
impl Drop for UnmapResult {
|
|
fn drop(&mut self) {
|
|
if let Some(fd) = self.file_desc.take() {
|
|
let _ = fd.desc.close();
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn new_addrspace() -> Result<Arc<RwLock<AddrSpace>>> {
|
|
Arc::try_new(RwLock::new(AddrSpace::new()?)).map_err(|_| Error::new(ENOMEM))
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct AddrSpace {
|
|
pub table: Table,
|
|
pub grants: UserGrants,
|
|
/// Lowest offset for mmap invocations where the user has not already specified the offset
|
|
/// (using MAP_FIXED/MAP_FIXED_NOREPLACE). Cf. Linux's `/proc/sys/vm/mmap_min_addr`, but with
|
|
/// the exception that we have a memory safe kernel which doesn't have to protect itself
|
|
/// against null pointers, so fixed mmaps to address zero are still allowed.
|
|
pub mmap_min: usize,
|
|
}
|
|
impl AddrSpace {
|
|
pub fn current() -> Result<Arc<RwLock<Self>>> {
|
|
Ok(Arc::clone(super::current()?.read().addr_space()?))
|
|
}
|
|
|
|
/// Attempt to clone an existing address space so that all mappings are copied (CoW).
|
|
pub fn try_clone(&mut self) -> Result<Arc<RwLock<Self>>> {
|
|
let mut new = new_addrspace()?;
|
|
|
|
let new_guard = Arc::get_mut(&mut new)
|
|
.expect("expected new address space Arc not to be aliased")
|
|
.get_mut();
|
|
|
|
let this_mapper = &mut self.table.utable;
|
|
let new_mapper = &mut new_guard.table.utable;
|
|
|
|
for grant in self.grants.iter() {
|
|
if grant.desc_opt.is_some() { continue; }
|
|
|
|
let new_grant;
|
|
|
|
// TODO: Replace this with CoW
|
|
if grant.owned {
|
|
new_grant = Grant::zeroed(Page::containing_address(grant.start_address()), grant.size() / PAGE_SIZE, grant.flags(), new_mapper, ())?;
|
|
|
|
for page in new_grant.pages().map(Page::start_address) {
|
|
let current_frame = unsafe { RmmA::phys_to_virt(this_mapper.translate(page).expect("grant containing unmapped pages").0) }.data() as *const u8;
|
|
let new_frame = unsafe { RmmA::phys_to_virt(new_mapper.translate(page).expect("grant containing unmapped pages").0) }.data() as *mut u8;
|
|
|
|
unsafe {
|
|
new_frame.copy_from_nonoverlapping(current_frame, PAGE_SIZE);
|
|
}
|
|
}
|
|
} else {
|
|
// TODO: Remove reborrow? In that case, physmapped memory will need to either be
|
|
// remapped when cloning, or be backed by a file descriptor (like
|
|
// `memory:physical`).
|
|
new_grant = Grant::reborrow(&grant, Page::containing_address(grant.start_address()), this_mapper, new_mapper, ())?;
|
|
}
|
|
|
|
new_guard.grants.insert(new_grant);
|
|
}
|
|
Ok(new)
|
|
}
|
|
pub fn new() -> Result<Self> {
|
|
Ok(Self {
|
|
grants: UserGrants::new(),
|
|
table: setup_new_utable()?,
|
|
mmap_min: MMAP_MIN_DEFAULT,
|
|
})
|
|
}
|
|
pub fn is_current(&self) -> bool {
|
|
self.table.utable.is_current()
|
|
}
|
|
pub fn mprotect(&mut self, base: Page, page_count: usize, flags: MapFlags) -> Result<()> {
|
|
let (mut active, mut inactive);
|
|
let mut flusher = if self.is_current() {
|
|
active = PageFlushAll::new();
|
|
&mut active as &mut dyn Flusher<RmmA>
|
|
} else {
|
|
inactive = InactiveFlusher::new();
|
|
&mut inactive as &mut dyn Flusher<RmmA>
|
|
};
|
|
let mut mapper = &mut self.table.utable;
|
|
|
|
let region = Region::new(base.start_address(), page_count * PAGE_SIZE);
|
|
|
|
// TODO: Remove allocation
|
|
let regions = self.grants.conflicts(region).map(|g| *g.region()).collect::<Vec<_>>();
|
|
|
|
for grant_region in regions {
|
|
let grant = self.grants.take(&grant_region).expect("grant cannot magically disappear while we hold the lock!");
|
|
let intersection = grant_region.intersect(region);
|
|
|
|
let (before, mut grant, after) = grant.extract(intersection).expect("failed to extract grant");
|
|
|
|
if let Some(before) = before { self.grants.insert(before); }
|
|
if let Some(after) = after { self.grants.insert(after); }
|
|
|
|
if !grant.can_have_flags(flags) {
|
|
self.grants.insert(grant);
|
|
return Err(Error::new(EACCES));
|
|
}
|
|
|
|
let new_flags = grant.flags()
|
|
// TODO: Require a capability in order to map executable memory?
|
|
.execute(flags.contains(MapFlags::PROT_EXEC))
|
|
.write(flags.contains(MapFlags::PROT_WRITE));
|
|
|
|
// TODO: Allow enabling/disabling read access on architectures which allow it. On
|
|
// x86_64 with protection keys (although only enforced by userspace), and AArch64 (I
|
|
// think), execute-only memory is also supported.
|
|
|
|
grant.remap(mapper, &mut flusher, new_flags);
|
|
self.grants.insert(grant);
|
|
}
|
|
Ok(())
|
|
}
|
|
pub fn munmap(mut self: RwLockWriteGuard<'_, Self>, page: Page, page_count: usize) {
|
|
let mut notify_files = Vec::new();
|
|
|
|
let requested = Region::new(page.start_address(), page_count * PAGE_SIZE);
|
|
let mut flusher = PageFlushAll::new();
|
|
|
|
let conflicting: Vec<Region> = self.grants.conflicts(requested).map(Region::from).collect();
|
|
|
|
for conflict in conflicting {
|
|
let grant = self.grants.take(&conflict).expect("conflicting region didn't exist");
|
|
let intersection = grant.intersect(requested);
|
|
let (before, mut grant, after) = grant.extract(intersection.round()).expect("conflicting region shared no common parts");
|
|
|
|
// Notify scheme that holds grant
|
|
if let Some(file_desc) = grant.desc_opt.take() {
|
|
notify_files.push((file_desc, intersection));
|
|
}
|
|
|
|
// Keep untouched regions
|
|
if let Some(before) = before {
|
|
self.grants.insert(before);
|
|
}
|
|
if let Some(after) = after {
|
|
self.grants.insert(after);
|
|
}
|
|
|
|
// Remove irrelevant region
|
|
grant.unmap(&mut self.table.utable, &mut flusher);
|
|
}
|
|
drop(self);
|
|
|
|
for (file_ref, intersection) in notify_files {
|
|
let scheme_id = { file_ref.desc.description.read().scheme };
|
|
|
|
let scheme = match crate::scheme::schemes().get(scheme_id) {
|
|
Some(scheme) => Arc::clone(scheme),
|
|
// One could argue that EBADFD could be returned here, but we have already unmapped
|
|
// the memory.
|
|
None => continue,
|
|
};
|
|
// Same here, we don't really care about errors when schemes respond to unmap events.
|
|
// The caller wants the memory to be unmapped, period. When already unmapped, what
|
|
// would we do with error codes anyway?
|
|
let _ = scheme.funmap(intersection.start_address().data(), intersection.size());
|
|
|
|
let _ = file_ref.desc.close();
|
|
}
|
|
}
|
|
pub fn mmap(&mut self, page: Option<Page>, page_count: usize, flags: MapFlags, map: impl FnOnce(Page, PageFlags<RmmA>, &mut PageMapper, &mut dyn Flusher<RmmA>) -> Result<Grant>) -> Result<Page> {
|
|
// Finally, the end of all "T0DO: Abstract with other grant creation"!
|
|
|
|
let region = match page {
|
|
Some(page) => self.grants.find_free_at(self.mmap_min, page.start_address(), page_count * PAGE_SIZE, flags)?,
|
|
None => self.grants.find_free(self.mmap_min, page_count * PAGE_SIZE).ok_or(Error::new(ENOMEM))?,
|
|
};
|
|
let page = Page::containing_address(region.start_address());
|
|
|
|
let (mut active, mut inactive);
|
|
let flusher = if self.is_current() {
|
|
active = PageFlushAll::new();
|
|
&mut active as &mut dyn Flusher<RmmA>
|
|
} else {
|
|
inactive = InactiveFlusher::new();
|
|
&mut inactive as &mut dyn Flusher<RmmA>
|
|
};
|
|
|
|
self.grants.insert(map(page, page_flags(flags), &mut self.table.utable, flusher)?);
|
|
Ok(page)
|
|
}
|
|
}
|
|
|
|
#[derive(Debug)]
|
|
pub struct UserGrants {
|
|
inner: BTreeSet<Grant>,
|
|
holes: BTreeMap<VirtualAddress, usize>,
|
|
// TODO: Would an additional map ordered by (size,start) to allow for O(log n) allocations be
|
|
// beneficial?
|
|
|
|
//TODO: technically VirtualAddress is from a scheme's context!
|
|
pub funmap: BTreeMap<Region, VirtualAddress>,
|
|
}
|
|
|
|
impl Default for UserGrants {
|
|
fn default() -> Self {
|
|
Self::new()
|
|
}
|
|
}
|
|
|
|
impl UserGrants {
|
|
pub fn new() -> Self {
|
|
Self {
|
|
inner: BTreeSet::new(),
|
|
holes: core::iter::once((VirtualAddress::new(0), crate::USER_END_OFFSET)).collect::<BTreeMap<_, _>>(),
|
|
funmap: BTreeMap::new(),
|
|
}
|
|
}
|
|
/// 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);
|
|
self
|
|
.inner
|
|
.range(start_region..)
|
|
.take_while(move |region| !region.intersect(requested).is_empty())
|
|
}
|
|
/// Return a free region with the specified size
|
|
// TODO: Alignment (x86_64: 4 KiB, 2 MiB, or 1 GiB).
|
|
pub fn find_free(&self, min: usize, size: usize) -> Option<Region> {
|
|
// Get first available hole, but do reserve the page starting from zero as most compiled
|
|
// languages cannot handle null pointers safely even if they point to valid memory. If an
|
|
// application absolutely needs to map the 0th page, they will have to do so explicitly via
|
|
// MAP_FIXED/MAP_FIXED_NOREPLACE.
|
|
// TODO: Allow explicitly allocating guard pages?
|
|
|
|
let (hole_start, hole_size) = self.holes.iter()
|
|
.skip_while(|(hole_offset, hole_size)| hole_offset.data() + **hole_size <= min)
|
|
.find(|(hole_offset, hole_size)| {
|
|
let avail_size = if hole_offset.data() <= min && min <= hole_offset.data() + **hole_size {
|
|
**hole_size - (min - hole_offset.data())
|
|
} else {
|
|
**hole_size
|
|
};
|
|
size <= avail_size
|
|
})?;
|
|
// Create new region
|
|
Some(Region::new(VirtualAddress::new(cmp::max(hole_start.data(), min)), size))
|
|
}
|
|
/// Return a free region, respecting the user's hinted address and flags. Address may be null.
|
|
pub fn find_free_at(&mut self, min: usize, address: VirtualAddress, size: usize, flags: MapFlags) -> Result<Region> {
|
|
if address == VirtualAddress::new(0) {
|
|
// Free hands!
|
|
return self.find_free(min, size).ok_or(Error::new(ENOMEM));
|
|
}
|
|
|
|
// The user wished to have this region...
|
|
let mut requested = Region::new(address, size);
|
|
|
|
if
|
|
requested.end_address().data() > crate::USER_END_OFFSET
|
|
|| address.data() % PAGE_SIZE != 0
|
|
{
|
|
// ... but it was invalid
|
|
return Err(Error::new(EINVAL));
|
|
}
|
|
|
|
|
|
if let Some(grant) = self.conflicts(requested).next() {
|
|
// ... but it already exists
|
|
|
|
if flags.contains(MapFlags::MAP_FIXED_NOREPLACE) {
|
|
return Err(Error::new(EEXIST));
|
|
}
|
|
if flags.contains(MapFlags::MAP_FIXED) {
|
|
return Err(Error::new(EOPNOTSUPP));
|
|
} else {
|
|
// TODO: Find grant close to requested address?
|
|
requested = self.find_free(min, requested.size()).ok_or(Error::new(ENOMEM))?;
|
|
}
|
|
}
|
|
|
|
Ok(requested)
|
|
}
|
|
fn reserve(&mut self, grant: &Region) {
|
|
let previous_hole = self.holes.range_mut(..grant.start_address()).next_back();
|
|
|
|
if let Some((hole_offset, hole_size)) = previous_hole {
|
|
let prev_hole_end = hole_offset.data() + *hole_size;
|
|
|
|
// Note that prev_hole_end cannot exactly equal grant.start_address, since that would
|
|
// imply there is another grant at that position already, as it would otherwise have
|
|
// been larger.
|
|
|
|
if prev_hole_end > grant.start_address().data() {
|
|
// hole_offset must be below (but never equal to) the start address due to the
|
|
// `..grant.start_address()` limit; hence, all we have to do is to shrink the
|
|
// previous offset.
|
|
*hole_size = grant.start_address().data() - hole_offset.data();
|
|
}
|
|
if prev_hole_end > grant.end_address().data() {
|
|
// The grant is splitting this hole in two, so insert the new one at the end.
|
|
self.holes.insert(grant.end_address(), prev_hole_end - grant.end_address().data());
|
|
}
|
|
}
|
|
|
|
// Next hole
|
|
if let Some(hole_size) = self.holes.remove(&grant.start_address()) {
|
|
let remainder = hole_size - grant.size();
|
|
if remainder > 0 {
|
|
self.holes.insert(grant.end_address(), remainder);
|
|
}
|
|
}
|
|
}
|
|
fn unreserve(holes: &mut BTreeMap<VirtualAddress, usize>, grant: &Region) {
|
|
// The size of any possible hole directly after the to-be-freed region.
|
|
let exactly_after_size = holes.remove(&grant.end_address());
|
|
|
|
// There was a range that began exactly prior to the to-be-freed region, so simply
|
|
// increment the size such that it occupies the grant too. If in addition there was a grant
|
|
// directly after the grant, include it too in the size.
|
|
if let Some((hole_offset, hole_size)) = holes.range_mut(..grant.start_address()).next_back().filter(|(offset, size)| offset.data() + **size == grant.start_address().data()) {
|
|
*hole_size = grant.end_address().data() - hole_offset.data() + exactly_after_size.unwrap_or(0);
|
|
} else {
|
|
// There was no free region directly before the to-be-freed region, however will
|
|
// now unconditionally insert a new free region where the grant was, and add that extra
|
|
// size if there was something after it.
|
|
holes.insert(grant.start_address(), grant.size() + exactly_after_size.unwrap_or(0));
|
|
}
|
|
}
|
|
pub fn insert(&mut self, mut grant: Grant) {
|
|
assert!(self.conflicts(*grant).next().is_none());
|
|
self.reserve(&grant);
|
|
|
|
// FIXME: This currently causes issues, mostly caused by old code that unmaps only based on
|
|
// offsets. For instance, the scheme code does not specify any length, and would thus unmap
|
|
// memory outside of what it intended to.
|
|
|
|
/*
|
|
let before_region = self.inner
|
|
.range(..grant.region).next_back()
|
|
.filter(|b| b.end_address() == grant.start_address() && b.can_be_merged_if_adjacent(&grant)).map(|g| g.region);
|
|
|
|
let after_region = self.inner
|
|
.range(Region::new(grant.end_address(), 1)..).next()
|
|
.filter(|a| a.start_address() == grant.end_address() && a.can_be_merged_if_adjacent(&grant)).map(|g| g.region);
|
|
|
|
if let Some(before) = before_region {
|
|
grant.region.start = before.start;
|
|
grant.region.size += before.size;
|
|
|
|
core::mem::forget(self.inner.take(&before));
|
|
}
|
|
if let Some(after) = after_region {
|
|
grant.region.size += after.size;
|
|
|
|
core::mem::forget(self.inner.take(&after));
|
|
}
|
|
*/
|
|
|
|
self.inner.insert(grant);
|
|
}
|
|
pub fn remove(&mut self, region: &Region) -> bool {
|
|
self.take(region).is_some()
|
|
}
|
|
pub fn take(&mut self, region: &Region) -> Option<Grant> {
|
|
let grant = self.inner.take(region)?;
|
|
Self::unreserve(&mut self.holes, grant.region());
|
|
Some(grant)
|
|
}
|
|
pub fn iter(&self) -> impl Iterator<Item = &Grant> + '_ {
|
|
self.inner.iter()
|
|
}
|
|
pub fn is_empty(&self) -> bool { self.inner.is_empty() }
|
|
pub fn into_iter(self) -> impl Iterator<Item = Grant> {
|
|
self.inner.into_iter()
|
|
}
|
|
}
|
|
|
|
#[derive(Clone, Copy)]
|
|
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::new(address, 1)
|
|
}
|
|
|
|
/// Create a new region spanning between the start and end address
|
|
/// (exclusive end)
|
|
pub fn between(start: VirtualAddress, end: VirtualAddress) -> Self {
|
|
Self::new(
|
|
start,
|
|
end.data().saturating_sub(start.data()),
|
|
)
|
|
}
|
|
|
|
/// 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.data() + self.size - 1)
|
|
}
|
|
|
|
/// Get the start address of the next region (exclusive end)
|
|
pub fn end_address(&self) -> VirtualAddress {
|
|
VirtualAddress::new(self.start.data() + 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_up_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().data() - self.start_address().data() < 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)
|
|
}
|
|
|
|
/// Return all pages containing a chunk of the region
|
|
pub fn pages(&self) -> PageIter {
|
|
Page::range_exclusive(
|
|
Page::containing_address(self.start_address()),
|
|
Page::containing_address(self.end_address())
|
|
)
|
|
}
|
|
|
|
/// Returns the region from the start of self until the start of the specified region.
|
|
///
|
|
/// # Panics
|
|
///
|
|
/// Panics if the given region starts before self
|
|
pub fn before(self, region: Self) -> Option<Self> {
|
|
assert!(self.start_address() <= region.start_address());
|
|
Some(Self::between(
|
|
self.start_address(),
|
|
region.start_address(),
|
|
)).filter(|reg| !reg.is_empty())
|
|
}
|
|
|
|
/// Returns the region from the end of the given region until the end of self.
|
|
///
|
|
/// # Panics
|
|
///
|
|
/// Panics if self ends before the given region
|
|
pub fn after(self, region: Self) -> Option<Self> {
|
|
assert!(region.end_address() <= self.end_address());
|
|
Some(Self::between(
|
|
region.end_address(),
|
|
self.end_address(),
|
|
)).filter(|reg| !reg.is_empty())
|
|
}
|
|
|
|
/// Re-base address that lives inside this region, onto a new base region
|
|
pub fn rebase(self, new_base: Self, address: VirtualAddress) -> VirtualAddress {
|
|
let offset = address.data() - self.start_address().data();
|
|
let new_start = new_base.start_address().data() + offset;
|
|
VirtualAddress::new(new_start)
|
|
}
|
|
}
|
|
|
|
impl PartialEq for Region {
|
|
fn eq(&self, other: &Self) -> bool {
|
|
self.start.eq(&other.start)
|
|
}
|
|
}
|
|
impl Eq for Region {}
|
|
|
|
impl PartialOrd for Region {
|
|
fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
|
|
self.start.partial_cmp(&other.start)
|
|
}
|
|
}
|
|
impl Ord for Region {
|
|
fn cmp(&self, other: &Self) -> Ordering {
|
|
self.start.cmp(&other.start)
|
|
}
|
|
}
|
|
|
|
impl Debug for Region {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "{:#x}..{:#x} ({:#x} long)", self.start_address().data(), self.end_address().data(), self.size())
|
|
}
|
|
}
|
|
|
|
|
|
impl<'a> From<&'a Grant> for Region {
|
|
fn from(source: &'a Grant) -> Self {
|
|
source.region
|
|
}
|
|
}
|
|
|
|
|
|
#[derive(Debug)]
|
|
pub struct Grant {
|
|
region: Region,
|
|
flags: PageFlags<RmmA>,
|
|
mapped: bool,
|
|
pub(crate) owned: bool,
|
|
pub(crate) allocator_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<GrantFileRef>,
|
|
}
|
|
#[derive(Clone, Debug)]
|
|
pub struct GrantFileRef {
|
|
pub desc: FileDescriptor,
|
|
pub offset: usize,
|
|
// TODO: Can the flags maybe be stored together with the page flags. Should some flags be kept,
|
|
// and others discarded when re-fmapping on clone?
|
|
pub flags: MapFlags,
|
|
}
|
|
|
|
impl Grant {
|
|
pub fn is_owned(&self) -> bool {
|
|
self.owned
|
|
}
|
|
|
|
pub fn region(&self) -> &Region {
|
|
&self.region
|
|
}
|
|
|
|
/// Get a mutable reference to the region. This is unsafe, because a bad
|
|
/// region could lead to the wrong addresses being unmapped.
|
|
unsafe fn region_mut(&mut self) -> &mut Region {
|
|
&mut self.region
|
|
}
|
|
|
|
pub fn physmap(phys: Frame, dst: Page, page_count: usize, flags: PageFlags<RmmA>, mapper: &mut PageMapper, mut flusher: impl Flusher<RmmA>) -> Result<Grant> {
|
|
for index in 0..page_count {
|
|
let result = unsafe {
|
|
mapper
|
|
.map_phys(dst.next_by(index).start_address(), phys.next_by(index).start_address(), flags)
|
|
.expect("TODO: handle OOM from paging structures in physmap")
|
|
};
|
|
flusher.consume(result);
|
|
}
|
|
|
|
Ok(Grant {
|
|
region: Region {
|
|
start: dst.start_address(),
|
|
size: page_count * PAGE_SIZE,
|
|
},
|
|
flags,
|
|
mapped: true,
|
|
owned: false,
|
|
allocator_owned: false,
|
|
desc_opt: None,
|
|
})
|
|
}
|
|
pub fn zeroed(dst: Page, page_count: usize, flags: PageFlags<RmmA>, mapper: &mut PageMapper, mut flusher: impl Flusher<RmmA>) -> Result<Grant, Enomem> {
|
|
// TODO: Unmap partially in case of ENOMEM
|
|
for page in Page::range_exclusive(dst, dst.next_by(page_count)) {
|
|
let flush = unsafe { mapper.map(page.start_address(), flags) }.ok_or(Enomem)?;
|
|
flusher.consume(flush);
|
|
}
|
|
Ok(Grant { region: Region { start: dst.start_address(), size: page_count * PAGE_SIZE }, flags, mapped: true, owned: true, allocator_owned: true, desc_opt: None })
|
|
}
|
|
pub fn borrow(src_base: Page, dst_base: Page, page_count: usize, flags: PageFlags<RmmA>, desc_opt: Option<GrantFileRef>, src_mapper: &mut PageMapper, dst_mapper: &mut PageMapper, dst_flusher: impl Flusher<RmmA>) -> Result<Grant, Enomem> {
|
|
Self::copy_inner(src_base, dst_base, page_count, flags, desc_opt, src_mapper, dst_mapper, (), dst_flusher, false, false, false)
|
|
}
|
|
pub fn reborrow(src_grant: &Grant, dst_base: Page, src_mapper: &mut PageMapper, dst_mapper: &mut PageMapper, dst_flusher: impl Flusher<RmmA>) -> Result<Grant> {
|
|
Self::borrow(Page::containing_address(src_grant.start_address()), dst_base, src_grant.size() / PAGE_SIZE, src_grant.flags(), src_grant.desc_opt.clone(), src_mapper, dst_mapper, dst_flusher).map_err(Into::into)
|
|
}
|
|
pub fn transfer(mut src_grant: Grant, dst_base: Page, src_mapper: &mut PageMapper, dst_mapper: &mut PageMapper, src_flusher: impl Flusher<RmmA>, dst_flusher: impl Flusher<RmmA>) -> Result<Grant> {
|
|
assert!(core::mem::replace(&mut src_grant.mapped, false));
|
|
let desc_opt = src_grant.desc_opt.take();
|
|
|
|
Self::copy_inner(Page::containing_address(src_grant.start_address()), dst_base, src_grant.size() / PAGE_SIZE, src_grant.flags(), desc_opt, src_mapper, dst_mapper, src_flusher, dst_flusher, src_grant.owned, src_grant.allocator_owned, true).map_err(Into::into)
|
|
}
|
|
|
|
fn copy_inner(
|
|
src_base: Page,
|
|
dst_base: Page,
|
|
page_count: usize,
|
|
flags: PageFlags<RmmA>,
|
|
desc_opt: Option<GrantFileRef>,
|
|
src_mapper: &mut PageMapper,
|
|
dst_mapper: &mut PageMapper,
|
|
mut src_flusher: impl Flusher<RmmA>,
|
|
mut dst_flusher: impl Flusher<RmmA>,
|
|
owned: bool,
|
|
allocator_owned: bool,
|
|
unmap: bool,
|
|
) -> Result<Grant, Enomem> {
|
|
let mut successful_count = 0;
|
|
|
|
for index in 0..page_count {
|
|
let src_page = src_base.next_by(index);
|
|
let (address, entry_flags) = if unmap {
|
|
let (entry, entry_flags, flush) = unsafe { src_mapper.unmap_phys(src_page.start_address(), true).expect("grant references unmapped memory") };
|
|
src_flusher.consume(flush);
|
|
|
|
(entry, entry_flags)
|
|
} else {
|
|
src_mapper.translate(src_page.start_address()).expect("grant references unmapped memory")
|
|
};
|
|
|
|
let flush = match unsafe { dst_mapper.map_phys(dst_base.next_by(index).start_address(), address, flags) } {
|
|
Some(f) => f,
|
|
// ENOMEM
|
|
None => break,
|
|
};
|
|
|
|
dst_flusher.consume(flush);
|
|
|
|
successful_count = index + 1;
|
|
}
|
|
|
|
if successful_count != page_count {
|
|
// TODO: The grant will be lost in case of ENOMEM. Allow putting it back in source?
|
|
for index in 0..successful_count {
|
|
let (frame, _, flush) = match unsafe { dst_mapper.unmap_phys(dst_base.next_by(index).start_address(), true) } {
|
|
Some(f) => f,
|
|
None => unreachable!("grant unmapped by someone else in the meantime despite having a &mut PageMapper"),
|
|
};
|
|
dst_flusher.consume(flush);
|
|
|
|
if owned && allocator_owned {
|
|
crate::memory::deallocate_frames(Frame::containing_address(frame), 1);
|
|
}
|
|
}
|
|
return Err(Enomem);
|
|
}
|
|
|
|
Ok(Grant {
|
|
region: Region {
|
|
start: dst_base.start_address(),
|
|
size: page_count * PAGE_SIZE,
|
|
},
|
|
flags,
|
|
mapped: true,
|
|
owned,
|
|
allocator_owned,
|
|
desc_opt,
|
|
})
|
|
}
|
|
|
|
pub fn flags(&self) -> PageFlags<RmmA> {
|
|
self.flags
|
|
}
|
|
|
|
pub fn remap(&mut self, mapper: &mut PageMapper, mut flusher: impl Flusher<RmmA>, flags: PageFlags<RmmA>) {
|
|
assert!(self.mapped);
|
|
|
|
for page in self.pages() {
|
|
unsafe {
|
|
let result = mapper.remap(page.start_address(), flags).expect("grant contained unmap address");
|
|
flusher.consume(result);
|
|
}
|
|
}
|
|
|
|
self.flags = flags;
|
|
}
|
|
pub fn can_have_flags(&self, flags: MapFlags) -> bool {
|
|
self.owned || ((self.flags.has_write() || !flags.contains(MapFlags::PROT_WRITE)) && (self.flags.has_execute() || !flags.contains(MapFlags::PROT_EXEC)))
|
|
}
|
|
|
|
pub fn unmap(mut self, mapper: &mut PageMapper, mut flusher: impl Flusher<RmmA>) -> UnmapResult {
|
|
assert!(self.mapped);
|
|
|
|
for page in self.pages() {
|
|
let (entry, _, flush) = unsafe { mapper.unmap_phys(page.start_address(), true) }
|
|
.unwrap_or_else(|| panic!("missing page at {:#0x} for grant {:?}", page.start_address().data(), self));
|
|
|
|
if self.owned && self.allocator_owned {
|
|
// TODO: make sure this frame can be safely freed, physical use counter.
|
|
//
|
|
// Namely, we can either have MAP_PRIVATE or MAP_SHARED-style mappings. The former
|
|
// maps the source memory read-only and then (not yet) implements CoW on top (as of
|
|
// now the kernel does not yet support this distinction), while the latter simply
|
|
// means the memory is shared. We can in addition to the desc_opt also include an
|
|
// address space and region within, indicating borrowed memory. The source grant
|
|
// will have a refcount, and if it is unmapped, it will be transferred to a
|
|
// borrower. Only if this refcount becomes zero when decremented, will it be
|
|
// possible to unmap.
|
|
//
|
|
// So currently, it is technically possible to get double frees if the scheme
|
|
// "hosting" the memory of an fmap call, decides to funmap its memory before the
|
|
// fmapper does.
|
|
crate::memory::deallocate_frames(Frame::containing_address(entry), 1);
|
|
}
|
|
flusher.consume(flush);
|
|
}
|
|
|
|
self.mapped = false;
|
|
|
|
// TODO: This imposes a large cost on unmapping, but that cost cannot be avoided without modifying fmap and funmap
|
|
UnmapResult { file_desc: self.desc_opt.take() }
|
|
}
|
|
|
|
/// 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.
|
|
///
|
|
/// Also panics if the given region isn't completely contained within the
|
|
/// grant. Use `grant.intersect` to find a sub-region that works.
|
|
pub fn extract(mut self, region: Region) -> Option<(Option<Grant>, Grant, Option<Grant>)> {
|
|
assert_eq!(region.start_address().data() % 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 before_grant = self.before(region).map(|region| Grant {
|
|
region,
|
|
flags: self.flags,
|
|
mapped: self.mapped,
|
|
owned: self.owned,
|
|
allocator_owned: self.allocator_owned,
|
|
desc_opt: self.desc_opt.clone(),
|
|
});
|
|
let after_grant = self.after(region).map(|region| Grant {
|
|
region,
|
|
flags: self.flags,
|
|
mapped: self.mapped,
|
|
owned: self.owned,
|
|
allocator_owned: self.allocator_owned,
|
|
desc_opt: self.desc_opt.clone(),
|
|
});
|
|
|
|
unsafe {
|
|
*self.region_mut() = region;
|
|
}
|
|
|
|
Some((before_grant, self, after_grant))
|
|
}
|
|
// FIXME
|
|
/*
|
|
pub fn can_be_merged_if_adjacent(&self, with: &Self) -> bool {
|
|
match (&self.desc_opt, &with.desc_opt) {
|
|
(None, None) => (),
|
|
(Some(ref a), Some(ref b)) if Arc::ptr_eq(&a.desc.description, &b.desc.description) => (),
|
|
|
|
_ => return false,
|
|
}
|
|
self.owned == with.owned && self.mapped == with.mapped && self.flags.data() == with.flags.data()
|
|
}
|
|
*/
|
|
}
|
|
|
|
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");
|
|
}
|
|
}
|
|
|
|
pub const DANGLING: usize = 1 << (usize::BITS - 2);
|
|
|
|
#[derive(Debug)]
|
|
pub struct Table {
|
|
pub utable: PageMapper,
|
|
}
|
|
|
|
impl Drop for Table {
|
|
fn drop(&mut self) {
|
|
if self.utable.is_current() {
|
|
// TODO: Do not flush (we immediately context switch after exit(), what else is there
|
|
// to do?). Instead, we can garbage-collect such page tables in the idle kernel context
|
|
// before it waits for interrupts. Or maybe not, depends on what future benchmarks will
|
|
// indicate.
|
|
unsafe {
|
|
RmmA::set_table(super::empty_cr3());
|
|
}
|
|
}
|
|
crate::memory::deallocate_frames(Frame::containing_address(self.utable.table().phys()), 1);
|
|
}
|
|
}
|
|
|
|
/// Allocates a new identically mapped ktable and empty utable (same memory on x86_64).
|
|
pub fn setup_new_utable() -> Result<Table> {
|
|
let mut utable = unsafe { PageMapper::create(crate::rmm::FRAME_ALLOCATOR).ok_or(Error::new(ENOMEM))? };
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
{
|
|
let active_ktable = KernelMapper::lock();
|
|
|
|
let mut copy_mapping = |p4_no| unsafe {
|
|
let entry = active_ktable.table().entry(p4_no)
|
|
.unwrap_or_else(|| panic!("expected kernel PML {} to be mapped", p4_no));
|
|
|
|
utable.table().set_entry(p4_no, entry)
|
|
};
|
|
// TODO: Just copy all 256 mappings? Or copy KERNEL_PML4+KERNEL_PERCPU_PML4 (needed for
|
|
// paranoid ISRs which can occur anywhere; we don't want interrupts to triple fault!) and
|
|
// map lazily via page faults in the kernel.
|
|
|
|
// Copy kernel image mapping
|
|
copy_mapping(crate::KERNEL_PML4);
|
|
|
|
// Copy kernel heap mapping
|
|
copy_mapping(crate::KERNEL_HEAP_PML4);
|
|
|
|
// Copy physmap mapping
|
|
copy_mapping(crate::PHYS_PML4);
|
|
|
|
// Copy kernel percpu (similar to TLS) mapping.
|
|
copy_mapping(crate::KERNEL_PERCPU_PML4);
|
|
}
|
|
|
|
Ok(Table {
|
|
utable,
|
|
})
|
|
}
|
|
|
|
|
|
#[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)));
|
|
}
|
|
}
|