#![no_std] #![cfg_attr(test, no_main)] #![feature(abi_x86_interrupt)] #![feature(alloc_error_handler)] #![feature(const_fn)] #![feature(custom_test_frameworks)] #![feature(const_in_array_repeat_expressions)] #![feature(alloc_layout_extra)] #![feature(wake_trait)] #![test_runner(crate::test_runner)] #![reexport_test_harness_main = "test_main"] extern crate alloc; pub mod allocator; pub mod clock; pub mod gdt; pub mod interrupts; pub mod memory; pub mod serial; pub mod task; pub mod vga_buffer; pub mod wasm; #[alloc_error_handler] fn alloc_error_handler(layout: alloc::alloc::Layout) -> ! { panic!("allocation error: {:?}", layout) } use bootloader::BootInfo; use core::panic::PanicInfo; pub fn init(boot_info: &'static BootInfo) { use x86_64::VirtAddr; use self::memory::BootInfoFrameAllocator; println!("[ ] XeOS booting"); gdt::init(); interrupts::init_idt(); unsafe { interrupts::PICS.lock().initialize() }; x86_64::instructions::interrupts::enable(); let phys_mem_offset = VirtAddr::new(boot_info.physical_memory_offset); let mut mapper = unsafe { memory::init(phys_mem_offset) }; let mut frame_allocator = unsafe { BootInfoFrameAllocator::init(&boot_info.memory_map) }; allocator::init_heap(&mut mapper, &mut frame_allocator).expect("heap initialization failed"); } pub fn hlt_loop() -> ! { loop { x86_64::instructions::hlt(); } } pub fn test_runner(tests: &[&dyn Fn()]) { serial_println!("Running {} tests", tests.len()); for test in tests { test(); } exit_qemu(QemuExitCode::Success); } pub fn test_panic_handler(info: &PanicInfo) -> ! { serial_println!("[failed]\n"); serial_println!("Error: {}\n", info); exit_qemu(QemuExitCode::Failed); hlt_loop(); } #[cfg(test)] use bootloader::entry_point; #[cfg(test)] entry_point!(test_kernel_main); /// Entry point for `cargo xtest` #[cfg(test)] fn test_kernel_main(boot_info: &'static BootInfo) -> ! { init(boot_info); test_main(); hlt_loop(); } #[cfg(test)] #[panic_handler] fn panic(info: &PanicInfo) -> ! { test_panic_handler(info) } #[derive(Debug, Clone, Copy, PartialEq, Eq)] #[repr(u32)] pub enum QemuExitCode { Success = 0x10, Failed = 0x11, } pub fn exit_qemu(exit_code: QemuExitCode) { use x86_64::instructions::port::Port; unsafe { let mut port = Port::new(0xf4); port.write(exit_code as u32); } }