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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
use core::fmt;
#[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct PAddr(u64);
#[derive(Copy, Clone, Debug, Eq, Ord, PartialEq, PartialOrd)]
pub struct VAddr(usize);
impl PAddr {
pub const fn as_u64(&self) -> u64 {
self.0
}
pub const fn from_u64(v: u64) -> Self {
PAddr(v)
}
}
impl VAddr {
pub const fn as_usize(&self) -> usize {
self.0
}
pub const fn from_usize(v: usize) -> Self {
VAddr(v)
}
}
impl fmt::Binary for PAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Display for PAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::LowerHex for PAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Octal for PAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::UpperHex for PAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Binary for VAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Display for VAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::LowerHex for VAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::Octal for VAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
impl fmt::UpperHex for VAddr {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
self.0.fmt(f)
}
}
pub const BASE_PAGE_SIZE: u64 = 4096;
pub const LARGE_PAGE_SIZE: u64 = 1024 * 1024 * 2;
pub const HUGE_PAGE_SIZE: u64 = 1024 * 1024 * 1024;
pub const CACHE_LINE_SIZE: usize = 64;
pub const MAXPHYADDR: u64 = 52;
const ADDRESS_MASK: u64 = ((1 << MAXPHYADDR) - 1) & !0xfff;
pub type PML4 = [PML4Entry; 512];
pub type PDPT = [PDPTEntry; 512];
pub type PD = [PDEntry; 512];
pub type PT = [PTEntry; 512];
pub fn pml4_index(addr: VAddr) -> usize {
(addr.as_usize() >> 39) & 0b111111111
}
#[inline]
pub fn pdpt_index(addr: VAddr) -> usize {
(addr.as_usize() >> 30) & 0b111111111
}
#[inline]
pub fn pd_index(addr: VAddr) -> usize {
(addr.as_usize() >> 21) & 0b111111111
}
#[inline]
pub fn pt_index(addr: VAddr) -> usize {
(addr.as_usize() >> 12) & 0b111111111
}
bitflags! {
#[derive(Debug)]
flags PML4Entry: u64 {
const PML4_P = bit!(0),
const PML4_RW = bit!(1),
const PML4_US = bit!(2),
const PML4_PWT = bit!(3),
const PML4_PCD = bit!(4),
const PML4_A = bit!(5),
const PML4_XD = bit!(63),
}
}
impl PML4Entry {
pub fn new(pdpt: PAddr, flags: PML4Entry) -> PML4Entry {
let pdpt_val = pdpt.as_u64();
assert!(pdpt_val % BASE_PAGE_SIZE == 0);
PML4Entry { bits: pdpt_val | flags.bits }
}
pub fn get_address(self) -> PAddr {
PAddr::from_u64(self.bits & ADDRESS_MASK)
}
check_flag!(doc = "Is page present?", is_present, PML4_P);
check_flag!(doc = "Read/write; if 0, writes may not be allowed to the 512-GByte region, controlled by this entry (see Section 4.6)",
is_writeable, PML4_RW);
check_flag!(doc = "User/supervisor; if 0, user-mode accesses are not allowed to the 512-GByte region controlled by this entry.",
is_user_mode_allowed, PML4_US);
check_flag!(doc = "Page-level write-through; indirectly determines the memory type used to access the page-directory-pointer table referenced by this entry.",
is_page_write_through, PML4_PWT);
check_flag!(doc = "Page-level cache disable; indirectly determines the memory type used to access the page-directory-pointer table referenced by this entry.",
is_page_level_cache_disabled, PML4_PCD);
check_flag!(doc = "Accessed; indicates whether this entry has been used for linear-address translation.",
is_accessed, PML4_A);
check_flag!(doc = "If IA32_EFER.NXE = 1, execute-disable. If 1, instruction fetches are not allowed from the 512-GByte region.",
is_instruction_fetching_disabled, PML4_XD);
}
bitflags! {
#[derive(Debug)]
flags PDPTEntry: u64 {
const PDPT_P = bit!(0),
const PDPT_RW = bit!(1),
const PDPT_US = bit!(2),
const PDPT_PWT = bit!(3),
const PDPT_PCD = bit!(4),
const PDPT_A = bit!(5),
const PDPT_D = bit!(6),
const PDPT_PS = bit!(7),
const PDPT_G = bit!(8),
const PDPT_PAT = bit!(12),
const PDPT_XD = bit!(63),
}
}
impl PDPTEntry {
pub fn new(pd: PAddr, flags: PDPTEntry) -> PDPTEntry {
let pd_val = pd.as_u64();
assert!(pd_val % BASE_PAGE_SIZE == 0);
PDPTEntry { bits: pd_val | flags.bits }
}
pub fn get_address(self) -> PAddr {
PAddr::from_u64(self.bits & ADDRESS_MASK)
}
check_flag!(doc = "Is page present?", is_present, PDPT_P);
check_flag!(doc = "Read/write; if 0, writes may not be allowed to the 1-GByte region controlled by this entry.",
is_writeable, PDPT_RW);
check_flag!(doc = "User/supervisor; user-mode accesses are not allowed to the 1-GByte region controlled by this entry.",
is_user_mode_allowed, PDPT_US);
check_flag!(doc = "Page-level write-through.",
is_page_write_through, PDPT_PWT);
check_flag!(doc = "Page-level cache disable.",
is_page_level_cache_disabled, PDPT_PCD);
check_flag!(doc = "Accessed; indicates whether this entry has been used for linear-address translation.",
is_accessed, PDPT_A);
check_flag!(doc = "Indirectly determines the memory type used to access the 1-GByte page referenced by this entry. if not PDPT_PS this is ignored.",
is_pat, PDPT_PAT);
check_flag!(doc = "If IA32_EFER.NXE = 1, execute-disable. If 1, instruction fetches are not allowed from the 512-GByte region.",
is_instruction_fetching_disabled, PDPT_XD);
}
bitflags! {
#[derive(Debug)]
flags PDEntry: u64 {
const PD_P = bit!(0),
const PD_RW = bit!(1),
const PD_US = bit!(2),
const PD_PWT = bit!(3),
const PD_PCD = bit!(4),
const PD_A = bit!(5),
const PD_D = bit!(6),
const PD_PS = bit!(7),
const PD_G = bit!(8),
const PD_PAT = bit!(12),
const PD_XD = bit!(63),
}
}
impl PDEntry {
pub fn new(pt: PAddr, flags: PDEntry) -> PDEntry {
let pt_val = pt.as_u64();
assert!(pt_val % BASE_PAGE_SIZE == 0);
PDEntry { bits: pt_val | flags.bits }
}
pub fn get_address(self) -> PAddr {
PAddr::from_u64(self.bits & ADDRESS_MASK)
}
check_flag!(doc = "Present; must be 1 to map a 2-MByte page or reference a page table.",
is_present, PD_P);
check_flag!(doc = "Read/write; if 0, writes may not be allowed to the 2-MByte region controlled by this entry",
is_writeable, PD_RW);
check_flag!(doc = "User/supervisor; user-mode accesses are not allowed to the 2-MByte region controlled by this entry.",
is_user_mode_allowed, PD_US);
check_flag!(doc = "Page-level write-through.",
is_page_write_through, PD_PWT);
check_flag!(doc = "Page-level cache disable.",
is_page_level_cache_disabled, PD_PCD);
check_flag!(doc = "Accessed; if PD_PS set indicates whether software has accessed the 2-MByte page else indicates whether this entry has been used for linear-address translation.",
is_accessed, PD_A);
check_flag!(doc = "Dirty; if PD_PS set indicates whether software has written to the 2-MByte page referenced by this entry else ignored.",
is_dirty, PD_D);
check_flag!(doc = "Page size; if set this entry maps a 2-MByte page; otherwise, this entry references a page directory.",
is_page, PD_PS);
check_flag!(doc = "Global; if PD_PS && CR4.PGE = 1, determines whether the translation is global; ignored otherwise if not PD_PS this is ignored.",
is_global, PD_G);
check_flag!(doc = "Indirectly determines the memory type used to access the 2-MByte page referenced by this entry. if not PD_PS this is ignored.",
is_pat, PD_PAT);
check_flag!(doc = "If IA32_EFER.NXE = 1, execute-disable. If 1, instruction fetches are not allowed from the 2-Mbyte region.",
is_instruction_fetching_disabled, PD_XD);
}
bitflags! {
#[derive(Debug)]
flags PTEntry: u64 {
const PT_P = bit!(0),
const PT_RW = bit!(1),
const PT_US = bit!(2),
const PT_PWT = bit!(3),
const PT_PCD = bit!(4),
const PT_A = bit!(5),
const PT_D = bit!(6),
const PT_G = bit!(8),
const PT_XD = bit!(63),
}
}
impl PTEntry {
pub fn new(page: PAddr, flags: PTEntry) -> PTEntry {
let page_val = page.as_u64();
assert!(page_val % BASE_PAGE_SIZE == 0);
PTEntry { bits: page_val | flags.bits }
}
pub fn get_address(self) -> PAddr {
PAddr::from_u64(self.bits & ADDRESS_MASK)
}
check_flag!(doc = "Present; must be 1 to map a 4-KByte page or reference a page table.",
is_present, PT_P);
check_flag!(doc = "Read/write; if 0, writes may not be allowed to the 4-KByte region controlled by this entry",
is_writeable, PT_RW);
check_flag!(doc = "User/supervisor; user-mode accesses are not allowed to the 4-KByte region controlled by this entry.",
is_user_mode_allowed, PT_US);
check_flag!(doc = "Page-level write-through.",
is_page_write_through, PT_PWT);
check_flag!(doc = "Page-level cache disable.",
is_page_level_cache_disabled, PT_PCD);
check_flag!(doc = "Accessed; if PT_PS set indicates whether software has accessed the 4-KByte page else indicates whether this entry has been used for linear-address translation.",
is_accessed, PT_A);
check_flag!(doc = "Dirty; if PD_PS set indicates whether software has written to the 4-KByte page referenced by this entry else ignored.",
is_dirty, PT_D);
check_flag!(doc = "Global; if PT_PS && CR4.PGE = 1, determines whether the translation is global; ignored otherwise if not PT_PS this is ignored.",
is_global, PT_G);
check_flag!(doc = "If IA32_EFER.NXE = 1, execute-disable. If 1, instruction fetches are not allowed from the 4-KByte region.",
is_instruction_fetching_disabled, PT_XD);
}