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
use {Error, Protection, Region, Result};
fn parse_procfs_flags(protection: &str) -> (Protection, bool) {
const MAPPING: &[(char, Protection)] = &[
('r', Protection::READ),
('w', Protection::WRITE),
('x', Protection::EXECUTE),
];
let result = MAPPING
.iter()
.fold(Protection::NONE, |acc, &(ident, prot)| {
acc
| protection
.find(ident)
.map(|_| prot)
.unwrap_or(Protection::NONE)
});
(result, protection.ends_with('s'))
}
fn parse_procfs_region(input: &str) -> Option<Region> {
let mut parts = input.split_whitespace();
let mut memory = parts
.next()?
.split('-')
.filter_map(|value| usize::from_str_radix(value, 16).ok());
let (lower, upper) = (memory.next()?, memory.next()?);
let flags = parts.next()?;
let (protection, shared) = parse_procfs_flags(flags);
Some(Region {
base: lower as *const _,
size: upper - lower,
guarded: false,
protection,
shared,
})
}
pub fn get_region(address: *const u8) -> Result<Region> {
use std::fs::File;
use std::io::{BufRead, BufReader};
let address = address as usize;
let file = File::open("/proc/self/maps").map_err(Error::SystemCall)?;
let reader = BufReader::new(&file).lines();
for line in reader {
let line = line.map_err(Error::SystemCall)?;
let region = parse_procfs_region(&line).ok_or(Error::ProcfsInput)?;
let region_base = region.base as usize;
if address >= region_base && address < region_base + region.size {
return Ok(region);
}
}
Err(Error::FreeMemory)
}
#[cfg(test)]
mod tests {
use super::{parse_procfs_flags, parse_procfs_region};
use Protection;
#[test]
fn parse_flags() {
assert_eq!(parse_procfs_flags("r--s"), (Protection::READ, true));
assert_eq!(parse_procfs_flags("rw-p"), (Protection::READ_WRITE, false));
assert_eq!(parse_procfs_flags("r-xs"), (Protection::READ_EXECUTE, true));
assert_eq!(
parse_procfs_flags("rwxs"),
(Protection::READ_WRITE_EXECUTE, true)
);
assert_eq!(parse_procfs_flags("--xp"), (Protection::EXECUTE, false));
assert_eq!(parse_procfs_flags("-w-s"), (Protection::WRITE, true));
}
#[test]
fn parse_region() {
let line = "00400000-00409000 r-xs 00000000 08:00 16088 /usr/bin/head";
let region = parse_procfs_region(line).unwrap();
assert_eq!(region.base, 0x400000 as *mut u8);
assert_eq!(region.guarded, false);
assert_eq!(region.protection, Protection::READ_EXECUTE);
assert_eq!(region.shared, true);
assert_eq!(region.size, 0x9000);
}
}