1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166
use crate::error::Error;
use bitflags::bitflags;
use std::fmt;
use std::fs::File;
use std::io::{BufRead, BufReader};
use std::ops::Range;
use std::path::PathBuf;
#[cfg(target_os = "freebsd")]
use crate::os_impl::freebsd as platform;
#[cfg(any(target_os = "android", target_os = "linux"))]
use crate::os_impl::linux as platform;
#[cfg(any(target_os = "macos", target_os = "ios"))]
use crate::os_impl::macos as platform;
#[cfg(target_os = "windows")]
use crate::os_impl::windows as platform;
bitflags! {
/// The protection of the memory area.
pub struct Protection: u32 {
/// The memory area is mapped with read permissions.
const READ = 1 << 0;
/// The memory area is mapped with write permissions.
const WRITE = 1 << 1;
/// The memory area is mapped with execute permissions.
const EXECUTE = 1 << 3;
}
}
/// The share mode of the memory area.
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
pub enum ShareMode {
/// The memory area is mapped as private.
Private,
/// The memory area is mapped as shared.
Shared,
}
/// Describes a memory area of a process.
#[derive(Clone, Debug)]
pub struct MemoryArea {
/// The allocation base of the memory area.
pub(crate) allocation_base: usize,
/// The address range of the memory area.
pub(crate) range: Range<usize>,
/// The protection with which the memory area has been mapped.
pub(crate) protection: Protection,
/// The share mode of the memory area.
pub(crate) share_mode: ShareMode,
/// The path to the file that backs this memory area, if backed by a file.
pub(crate) path: Option<(PathBuf, u64)>,
}
impl MemoryArea {
/// The allocation base of the memory area.
#[inline]
pub fn allocation_base(&self) -> usize {
self.allocation_base
}
/// The address range of the memory area.
#[inline]
pub fn range(&self) -> &Range<usize> {
&self.range
}
/// The start address of the area.
#[inline]
pub fn start(&self) -> usize {
self.range.start
}
/// The end address of the area.
#[inline]
pub fn end(&self) -> usize {
self.range.end
}
/// The protection with which the memory area has been mapped.
#[inline]
pub fn protection(&self) -> Protection {
self.protection
}
/// The share mode of the memory area.
#[inline]
pub fn share_mode(&self) -> ShareMode {
self.share_mode
}
/// The path to the file that backs this memory area, if backed by a file.
#[inline]
pub fn path(&self) -> Option<&PathBuf> {
self.path.as_ref().map(|(path, _)| path)
}
/// The file offset, if backed by a file.
#[inline]
pub fn file_offset(&self) -> Option<u64> {
self.path.as_ref().map(|(_, offset)| *offset)
}
}
/// The memory areas of the process.
pub struct MemoryAreas<B> {
inner: platform::MemoryAreas<B>,
}
impl<B> fmt::Debug for MemoryAreas<B> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("MemoryAreas").finish_non_exhaustive()
}
}
impl MemoryAreas<BufReader<File>> {
/// Creates an iterator over the memory maps for the specified process. If no process ID is
/// given, then it enumerates the memory areas of the current process.
pub fn open(pid: Option<u32>) -> Result<Self, Error> {
let inner = platform::MemoryAreas::open(pid, None)?;
Ok(Self { inner })
}
/// Retrieve information about the memory area corresponding to the virtual address in the
/// virtual address space of the current process. Returns `Ok(None)` if no memory has been
/// mapped at the given virtual address.
pub fn query(address: usize) -> Result<Option<MemoryArea>, Error> {
Self::query_process(None, address)
}
/// Retrieves information about the memory area(s) corresponding to the virtual address range
/// in the virtual address space of the current process.
pub fn query_range(range: Range<usize>) -> Result<Self, Error> {
Self::query_process_range(None, range)
}
/// Retrieve information about the memory area corresponding to the virtual address in the
/// virtual address space of the specified process. This queries the current process if no
/// process ID is given. Returns `Ok(None)` if no memory has been mapped at the given
/// virtual address.
pub fn query_process(pid: Option<u32>, address: usize) -> Result<Option<MemoryArea>, Error> {
let mut areas = platform::MemoryAreas::open(pid, Some(address..address + 1))?;
areas.next().transpose()
}
/// Retrieves information about the memory area(s) corresponding to the virtual address range
/// in the virtual address space of the specified process. This queries the current process if
/// no process ID is given.
pub fn query_process_range(pid: Option<u32>, range: Range<usize>) -> Result<Self, Error> {
let inner = platform::MemoryAreas::open(pid, Some(range))?;
Ok(Self { inner })
}
}
impl<B: BufRead> Iterator for MemoryAreas<B> {
type Item = Result<MemoryArea, Error>;
fn next(&mut self) -> Option<Self::Item> {
self.inner.next()
}
}