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
pub mod process_memory;
pub mod kernel_memory;
pub mod lands;
pub mod mapping;
pub mod cross_process;
mod hierarchical_table;
mod arch;
mod bookkeeping;
pub use self::arch::{PAGE_SIZE, read_cr2, read_cr3, InactiveHierarchy};
pub use self::hierarchical_table::PageState;
pub use self::hierarchical_table::{InactiveHierarchyTrait};
bitflags! {
pub struct MappingAccessRights : u32 {
const READABLE = 1 << 0;
const WRITABLE = 1 << 1;
const EXECUTABLE = 1 << 2;
const USER_ACCESSIBLE = 1 << 3;
}
}
impl From<MappingAccessRights> for sunrise_libkern::MemoryPermissions {
fn from(perms: MappingAccessRights) -> Self {
let mut newperms = sunrise_libkern::MemoryPermissions::empty();
if !perms.contains(MappingAccessRights::USER_ACCESSIBLE) {
return newperms;
}
newperms.set(sunrise_libkern::MemoryPermissions::READABLE, perms.contains(MappingAccessRights::READABLE));
newperms.set(sunrise_libkern::MemoryPermissions::WRITABLE, perms.contains(MappingAccessRights::WRITABLE));
newperms.set(sunrise_libkern::MemoryPermissions::EXECUTABLE, perms.contains(MappingAccessRights::EXECUTABLE));
newperms
}
}
impl From<sunrise_libkern::MemoryPermissions> for MappingAccessRights {
fn from(perms: sunrise_libkern::MemoryPermissions) -> Self {
let mut newperms = MappingAccessRights::USER_ACCESSIBLE;
newperms.set(MappingAccessRights::READABLE, perms.contains(sunrise_libkern::MemoryPermissions::READABLE));
newperms.set(MappingAccessRights::WRITABLE, perms.contains(sunrise_libkern::MemoryPermissions::WRITABLE));
newperms.set(MappingAccessRights::EXECUTABLE, perms.contains(sunrise_libkern::MemoryPermissions::EXECUTABLE));
newperms
}
}
impl MappingAccessRights {
pub fn k_r() -> MappingAccessRights {
MappingAccessRights::READABLE
}
pub fn k_w() -> MappingAccessRights {
MappingAccessRights::WRITABLE
}
pub fn k_rw() -> MappingAccessRights {
MappingAccessRights::READABLE | MappingAccessRights::WRITABLE
}
pub fn k_rx() -> MappingAccessRights {
MappingAccessRights::READABLE | MappingAccessRights::EXECUTABLE
}
pub fn u_r() -> MappingAccessRights {
MappingAccessRights::USER_ACCESSIBLE | MappingAccessRights::READABLE
}
pub fn u_w() -> MappingAccessRights {
MappingAccessRights::USER_ACCESSIBLE | MappingAccessRights::WRITABLE
}
pub fn u_rw() -> MappingAccessRights {
MappingAccessRights::USER_ACCESSIBLE | MappingAccessRights::READABLE | MappingAccessRights::WRITABLE
}
pub fn u_rx() -> MappingAccessRights {
MappingAccessRights::USER_ACCESSIBLE | MappingAccessRights::READABLE | MappingAccessRights::EXECUTABLE
}
}