1
0
mirror of https://github.com/rcore-os/rCore.git synced 2024-11-27 02:03:29 +04:00
rCore/src/lib.rs

85 lines
1.9 KiB
Rust
Raw Normal View History

2017-04-11 17:02:21 +04:00
#![feature(lang_items)]
2017-04-12 21:16:04 +04:00
#![feature(const_fn)]
2017-11-19 15:41:20 +04:00
#![feature(alloc)]
#![feature(const_unique_new, const_atomic_usize_new)]
#![feature(unique)]
#![feature(allocator_api)]
2017-11-19 16:13:18 +04:00
#![feature(global_allocator)]
2017-04-11 17:02:21 +04:00
#![no_std]
2017-11-19 15:41:20 +04:00
#[macro_use]
extern crate alloc;
2017-04-11 20:25:51 +04:00
extern crate rlibc;
extern crate volatile;
extern crate spin;
2017-04-13 19:51:09 +04:00
extern crate multiboot2;
2017-04-13 20:27:39 +04:00
#[macro_use]
extern crate bitflags;
2017-04-13 21:40:20 +04:00
extern crate x86_64;
#[macro_use]
extern crate once;
2017-04-11 20:25:51 +04:00
#[macro_use]
2017-04-12 21:16:04 +04:00
mod vga_buffer;
mod memory;
2017-04-12 21:16:04 +04:00
2017-04-11 17:02:21 +04:00
#[no_mangle]
pub extern "C" fn rust_main(multiboot_information_address: usize) {
// ATTENTION: we have a very small stack and no guard page
vga_buffer::clear_screen();
println!("Hello World{}", "!");
2017-04-11 21:30:19 +04:00
let boot_info = unsafe {
multiboot2::load(multiboot_information_address)
};
enable_nxe_bit();
enable_write_protect_bit();
// set up guard page and map the heap pages
memory::init(boot_info);
use alloc::boxed::Box;
let heap_test = Box::new(42);
2017-04-18 14:21:47 +04:00
println!("It did not crash!");
loop {}
2017-04-11 20:25:51 +04:00
}
2017-04-11 17:02:21 +04:00
fn enable_nxe_bit() {
use x86_64::registers::msr::{IA32_EFER, rdmsr, wrmsr};
let nxe_bit = 1 << 11;
unsafe {
let efer = rdmsr(IA32_EFER);
wrmsr(IA32_EFER, efer | nxe_bit);
}
}
fn enable_write_protect_bit() {
use x86_64::registers::control_regs::{cr0, cr0_write, Cr0};
unsafe { cr0_write(cr0() | Cr0::WRITE_PROTECT) };
}
2017-04-11 17:02:21 +04:00
#[lang = "eh_personality"] extern fn eh_personality() {}
2017-04-13 19:53:34 +04:00
#[lang = "panic_fmt"]
#[no_mangle]
pub extern fn panic_fmt(fmt: core::fmt::Arguments, file: &'static str, line: u32) -> ! {
println!("\n\nPANIC in {} at line {}:", file, line);
println!(" {}", fmt);
loop{}
}
2017-11-19 16:13:18 +04:00
use memory::heap_allocator::BumpAllocator;
pub const HEAP_START: usize = 0o_000_001_000_000_0000;
pub const HEAP_SIZE: usize = 100 * 1024; // 100 KiB
#[global_allocator]
static HEAP_ALLOCATOR: BumpAllocator = BumpAllocator::new(HEAP_START,
HEAP_START + HEAP_SIZE);