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
#![deny(improper_ctypes)]
#![no_std]

extern crate x86_64;

pub use memory_map::*;

use x86_64::structures::paging::PageTable;

const VERSION: u64 = 1;

mod memory_map;

#[derive(Debug)]
#[repr(C)]
pub struct BootInfo {
    pub version: u64,
    pub p4_table: &'static mut PageTable,
    pub memory_map: MemoryMap,
}

impl BootInfo {
    pub fn new(p4_table: &'static mut PageTable, memory_map: MemoryMap) -> Self {
        BootInfo {
            version: VERSION,
            p4_table,
            memory_map
        }
    }

    pub fn check_version(&self) -> Result<(), ()> {
        if self.version == VERSION { Ok(()) } else { Err(()) }
    }

    pub fn sort_memory_map(&mut self) {
        self.memory_map.sort_unstable_by_key(|r| r.start_addr);
    }
}

extern "C" {
    fn _improper_ctypes_check(_boot_info: BootInfo);
}