62 lines
1.4 KiB
Rust
62 lines
1.4 KiB
Rust
// in tests/stack_overflow.rs
|
|
|
|
#![no_std]
|
|
#![no_main]
|
|
#![feature(abi_x86_interrupt)]
|
|
|
|
use core::panic::PanicInfo;
|
|
use lazy_static::lazy_static;
|
|
use x86_64::structures::idt::InterruptDescriptorTable;
|
|
use x86_64::structures::idt::InterruptStackFrame;
|
|
|
|
lazy_static! {
|
|
static ref TEST_IDT: InterruptDescriptorTable = {
|
|
let mut idt = InterruptDescriptorTable::new();
|
|
unsafe {
|
|
idt.double_fault
|
|
.set_handler_fn(test_double_fault_handler)
|
|
.set_stack_index(blog_os::gdt::DOUBLE_FAULT_IST_INDEX);
|
|
}
|
|
|
|
idt
|
|
};
|
|
}
|
|
|
|
use blog_os::{exit_qemu, serial_print, serial_println, QemuExitCode};
|
|
|
|
#[no_mangle]
|
|
pub extern "C" fn _start() -> ! {
|
|
serial_print!("stack_overflow... ");
|
|
|
|
blog_os::gdt::init();
|
|
init_test_idt();
|
|
|
|
// trigger a stack overflow
|
|
stack_overflow();
|
|
|
|
panic!("Execution continued after stack overflow");
|
|
}
|
|
|
|
#[panic_handler]
|
|
fn panic(info: &PanicInfo) -> ! {
|
|
blog_os::test_panic_handler(info)
|
|
}
|
|
|
|
#[allow(unconditional_recursion)]
|
|
fn stack_overflow() {
|
|
stack_overflow(); // for each recursion, the return address is pushed
|
|
}
|
|
|
|
pub fn init_test_idt() {
|
|
TEST_IDT.load();
|
|
}
|
|
|
|
extern "x86-interrupt" fn test_double_fault_handler(
|
|
_stack_frame: &mut InterruptStackFrame,
|
|
_error_code: u64,
|
|
) {
|
|
serial_println!("[ok]");
|
|
exit_qemu(QemuExitCode::Success);
|
|
loop {}
|
|
}
|