2018-04-02 11:28:32 +04:00
|
|
|
#![feature(ptr_internals)]
|
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)]
|
2017-11-19 15:54:47 +04:00
|
|
|
#![feature(const_unique_new, const_atomic_usize_new)]
|
2017-04-12 21:20:15 +04:00
|
|
|
#![feature(unique)]
|
2017-11-19 15:50:16 +04:00
|
|
|
#![feature(allocator_api)]
|
2017-11-19 16:13:18 +04:00
|
|
|
#![feature(global_allocator)]
|
2017-04-18 17:14:27 +04:00
|
|
|
#![feature(abi_x86_interrupt)]
|
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;
|
2017-04-12 21:24:25 +04:00
|
|
|
extern crate volatile;
|
2017-04-12 21:32:59 +04:00
|
|
|
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;
|
2017-11-19 16:19:17 +04:00
|
|
|
#[macro_use]
|
|
|
|
extern crate once;
|
2017-11-19 17:16:33 +04:00
|
|
|
extern crate linked_list_allocator;
|
2017-04-12 21:35:08 +04:00
|
|
|
#[macro_use]
|
2017-04-18 17:15:44 +04:00
|
|
|
extern crate lazy_static;
|
2017-04-19 14:07:02 +04:00
|
|
|
extern crate bit_field;
|
2018-04-04 16:56:56 +04:00
|
|
|
|
|
|
|
#[macro_use] // println!
|
2017-04-12 21:16:04 +04:00
|
|
|
mod vga_buffer;
|
2017-04-13 19:59:12 +04:00
|
|
|
mod memory;
|
2017-04-18 17:09:03 +04:00
|
|
|
mod interrupts;
|
2018-04-04 16:56:56 +04:00
|
|
|
mod lang;
|
2017-04-12 21:16:04 +04:00
|
|
|
|
2018-04-04 16:56:56 +04:00
|
|
|
#[allow(dead_code)]
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
#[path = "arch/x86_64/mod.rs"]
|
|
|
|
mod arch;
|
|
|
|
|
|
|
|
// The entry point of Rust kernel
|
2017-04-11 17:02:21 +04:00
|
|
|
#[no_mangle]
|
2017-11-19 16:16:33 +04:00
|
|
|
pub extern "C" fn rust_main(multiboot_information_address: usize) {
|
|
|
|
// ATTENTION: we have a very small stack and no guard page
|
2017-04-12 21:35:08 +04:00
|
|
|
vga_buffer::clear_screen();
|
|
|
|
println!("Hello World{}", "!");
|
2017-04-11 21:30:19 +04:00
|
|
|
|
2018-04-04 16:56:56 +04:00
|
|
|
let boot_info = unsafe { multiboot2::load(multiboot_information_address) };
|
|
|
|
arch::init();
|
2017-04-13 19:57:33 +04:00
|
|
|
|
2017-11-19 16:16:33 +04:00
|
|
|
// set up guard page and map the heap pages
|
2017-04-18 20:20:15 +04:00
|
|
|
let mut memory_controller = memory::init(boot_info);
|
2017-04-18 14:22:36 +04:00
|
|
|
|
2017-11-19 17:16:33 +04:00
|
|
|
unsafe {
|
|
|
|
HEAP_ALLOCATOR.lock().init(HEAP_START, HEAP_START + HEAP_SIZE);
|
|
|
|
}
|
|
|
|
|
2017-04-18 17:17:43 +04:00
|
|
|
// initialize our IDT
|
2017-04-18 20:20:15 +04:00
|
|
|
interrupts::init(&mut memory_controller);
|
2017-04-18 17:17:43 +04:00
|
|
|
|
2017-11-19 17:16:33 +04:00
|
|
|
for i in 0..10000 {
|
|
|
|
format!("Some String");
|
|
|
|
}
|
2017-04-13 20:05:32 +04:00
|
|
|
|
2017-04-18 17:17:43 +04:00
|
|
|
// invoke a breakpoint exception
|
|
|
|
x86_64::instructions::interrupts::int3();
|
2017-04-18 14:21:47 +04:00
|
|
|
|
2017-04-18 20:13:05 +04:00
|
|
|
fn stack_overflow() {
|
|
|
|
stack_overflow(); // for each recursion, the return address is pushed
|
|
|
|
}
|
|
|
|
|
|
|
|
// trigger a stack overflow
|
|
|
|
stack_overflow();
|
|
|
|
|
2017-04-18 20:10:23 +04:00
|
|
|
|
2017-04-18 17:17:43 +04:00
|
|
|
println!("It did not crash!");
|
2017-04-18 14:21:47 +04:00
|
|
|
loop {}
|
2017-04-11 20:25:51 +04:00
|
|
|
}
|
2017-04-11 17:02:21 +04:00
|
|
|
|
2017-11-19 17:16:33 +04:00
|
|
|
use linked_list_allocator::LockedHeap;
|
2017-11-19 16:13:18 +04:00
|
|
|
|
|
|
|
pub const HEAP_START: usize = 0o_000_001_000_000_0000;
|
|
|
|
pub const HEAP_SIZE: usize = 100 * 1024; // 100 KiB
|
|
|
|
|
|
|
|
#[global_allocator]
|
2017-11-19 17:16:33 +04:00
|
|
|
static HEAP_ALLOCATOR: LockedHeap = LockedHeap::empty();
|