-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
added intergration test for stack overflow
- Loading branch information
1 parent
3318cd9
commit 3ea12ea
Showing
4 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
#![feature(abi_x86_interrupt)] | ||
#![no_std] | ||
#![no_main] | ||
|
||
use orust_os::{exit_qemu, QemuExitCode, serial_print, serial_println}; | ||
use lazy_static::lazy_static; | ||
use x86_64::structures::idt::{InterruptDescriptorTable, 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(orust_os::gdt::DOUBLE_FAULT_IST_INDEX); | ||
} | ||
|
||
idt | ||
}; | ||
} | ||
|
||
use core::panic::PanicInfo; | ||
|
||
#[no_mangle] | ||
pub extern "C" fn _start() -> ! { | ||
serial_print!("stack_overflow::stack_overflow...\t"); | ||
|
||
orust_os::gdt::init(); | ||
init_test_idt(); | ||
|
||
stack_overflow(); | ||
|
||
panic!("Execution continued after stack overflow"); | ||
} | ||
|
||
extern "x86-interrupt" fn test_double_fault_handler( | ||
_stack_frame: InterruptStackFrame, | ||
_error_code: u64, | ||
) -> ! { | ||
serial_println!("[ok]"); | ||
exit_qemu(QemuExitCode::Success); | ||
loop {} | ||
} | ||
|
||
pub fn init_test_idt() { | ||
TEST_IDT.load(); | ||
} | ||
|
||
#[allow(unconditional_recursion)] | ||
fn stack_overflow() { | ||
stack_overflow(); | ||
volatile::Volatile::new(0).read(); | ||
} | ||
#[panic_handler] | ||
fn panic(info: &PanicInfo) -> ! { | ||
orust_os::test_panic_handler(info) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
#![no_std] | ||
#![no_main] | ||
|
||
use core::panic::PanicInfo; | ||
|
||
#[no_mangle] | ||
pub extern "C" fn _start() -> ! { | ||
unimplemented!(); | ||
} | ||
|
||
#[panic_handler] | ||
fn panic(info: &PanicInfo) -> ! { | ||
orust_os::test_panic_handler(info) | ||
} |