pub struct VirtualMemoryMapper {
page_map_l4: PageDirectoryTablePtr,
is_user: bool,
}
Fields§
§page_map_l4: PageDirectoryTablePtr
§is_user: bool
Implementations§
source§impl VirtualMemoryMapper
impl VirtualMemoryMapper
fn new() -> Self
pub fn clone_kernel_mem(&self) -> Self
sourcepub unsafe fn add_process_specific_mappings(&mut self)
pub unsafe fn add_process_specific_mappings(&mut self)
Safety
After this call, the VM must never be switched to unless its from the scheduler or we are sure that the previous kernel regions are not used
fn load_vm(base: &PageDirectoryTablePtr)
fn get_current_vm() -> Self
sourcepub fn is_used_by_me(&self) -> bool
pub fn is_used_by_me(&self) -> bool
Return true
if the current VM is used by the current cpu
sourcepub unsafe fn switch_to_this(&self)
pub unsafe fn switch_to_this(&self)
Safety
This must be used with caution, it must never be switched while we are using memory from the same regions, i.e. kernel stack while we are in an interrupt
fn new_kernel_vm() -> Self
pub fn map(&mut self, entry: &VirtualMemoryMapEntry)
sourcepub fn unmap(&mut self, entry: &VirtualMemoryMapEntry, is_allocated: bool)
pub fn unmap(&mut self, entry: &VirtualMemoryMapEntry, is_allocated: bool)
Removes mapping of a virtual entry, it will free it from physical memory if it was allocated
pub fn is_address_mapped(&self, addr: usize) -> bool
fn do_for_ranges_entries<R1, R2, F>( &mut self, l4_ranges: R1, l3_ranges: R2, f: F )
fn do_for_every_user_entry(&mut self, f: impl FnMut(&mut u64))
fn do_for_kernel_process_entry(&mut self, f: impl FnMut(&mut u64))
pub fn unmap_process_memory(&mut self)
Auto Trait Implementations§
impl RefUnwindSafe for VirtualMemoryMapper
impl Send for VirtualMemoryMapper
impl Sync for VirtualMemoryMapper
impl Unpin for VirtualMemoryMapper
impl UnwindSafe for VirtualMemoryMapper
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CheckedAs for T
impl<T> CheckedAs for T
source§fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
fn checked_as<Dst>(self) -> Option<Dst>where
T: CheckedCast<Dst>,
Casts the value.
source§impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
impl<Src, Dst> CheckedCastFrom<Src> for Dstwhere
Src: CheckedCast<Dst>,
source§fn checked_cast_from(src: Src) -> Option<Dst>
fn checked_cast_from(src: Src) -> Option<Dst>
Casts the value.
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> OverflowingAs for T
impl<T> OverflowingAs for T
source§fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
fn overflowing_as<Dst>(self) -> (Dst, bool)where
T: OverflowingCast<Dst>,
Casts the value.
source§impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
impl<Src, Dst> OverflowingCastFrom<Src> for Dstwhere
Src: OverflowingCast<Dst>,
source§fn overflowing_cast_from(src: Src) -> (Dst, bool)
fn overflowing_cast_from(src: Src) -> (Dst, bool)
Casts the value.
source§impl<T> SaturatingAs for T
impl<T> SaturatingAs for T
source§fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
fn saturating_as<Dst>(self) -> Dstwhere
T: SaturatingCast<Dst>,
Casts the value.
source§impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
impl<Src, Dst> SaturatingCastFrom<Src> for Dstwhere
Src: SaturatingCast<Dst>,
source§fn saturating_cast_from(src: Src) -> Dst
fn saturating_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> UnwrappedAs for T
impl<T> UnwrappedAs for T
source§fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
fn unwrapped_as<Dst>(self) -> Dstwhere
T: UnwrappedCast<Dst>,
Casts the value.
source§impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
impl<Src, Dst> UnwrappedCastFrom<Src> for Dstwhere
Src: UnwrappedCast<Dst>,
source§fn unwrapped_cast_from(src: Src) -> Dst
fn unwrapped_cast_from(src: Src) -> Dst
Casts the value.
source§impl<T> WrappingAs for T
impl<T> WrappingAs for T
source§fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
fn wrapping_as<Dst>(self) -> Dstwhere
T: WrappingCast<Dst>,
Casts the value.
source§impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
impl<Src, Dst> WrappingCastFrom<Src> for Dstwhere
Src: WrappingCast<Dst>,
source§fn wrapping_cast_from(src: Src) -> Dst
fn wrapping_cast_from(src: Src) -> Dst
Casts the value.