summaryrefslogtreecommitdiff
path: root/kernel/tests/stack_overflow.rs
blob: cff28e0ddc46437c829e8b20c89b0d2f0a61db69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#![no_main]
#![feature(compiler_builtins_lib)]
#![feature(abi_x86_interrupt)]
#![feature(panic_info_message)]
#![no_std]

use core::fmt::Write;
use kernel;
use kernel::interrupts;
use kernel::interrupts::exception_handlers;
use kernel::io::qemu;

#[no_mangle]
extern "C" fn _start() -> ! {
    kernel::init();
    unsafe {
        exception_handlers::expect_fault(interrupts::InterruptType::PageFault);
    }
    _loop(0);
    panic!("PAGE_FAULT not caught");
    loop {}
}

fn _loop(i: u128) -> u128 {
    if i > 1u128 << 120 {
        return i;
    }
    let n = i;
    let mut stdout = kernel::OStream::new();
    write!(&mut stdout, "{:x}", &n as *const u128 as u128).unwrap();
    _loop(i + 1)
}

#[cfg(test)]
#[panic_handler]
#[no_mangle]
extern "C" fn panic_handler(info: &core::panic::PanicInfo) -> ! {
    kernel::testing::serial_panic(info);
    loop {}
}