diff --git a/src/devices/console.rs b/src/devices/console.rs index 2f1063f..b09e72f 100644 --- a/src/devices/console.rs +++ b/src/devices/console.rs @@ -92,16 +92,25 @@ impl Console { } /// A command prompt. Currently does nothing. - pub fn command_prompt(&self) -> ! { + pub fn command_prompt<'a>(&self, buf: &'a mut [u8]) -> &'a [u8] { self.puts("\n$> "); + let mut i = 0; let mut input; loop { input = self.getc(); if input == '\n' { - self.puts("\n$> ") + self.putc('\n'); + return &buf[..i]; } else { + if i < buf.len() { + buf[i] = input as u8; + i += 1; + } else { + return &buf[..i]; + } + self.putc(input); } } diff --git a/src/main.rs b/src/main.rs index 5d3b194..1ef1808 100644 --- a/src/main.rs +++ b/src/main.rs @@ -7,6 +7,7 @@ #![feature(lang_items)] #![feature(ptr_internals)] // until we mark with PhantomData instead? #![feature(core_intrinsics)] +#![feature(range_contains)] #![feature(try_from)] #![doc(html_root_url = "https://docs.metta.systems/")] #![allow(dead_code)] @@ -127,6 +128,34 @@ fn kmain() -> ! { display.draw_text(170, 70, "BLUE", Color::blue()); } + //------------------------------------------------------------ + // Start a command prompt + //------------------------------------------------------------ + 'cmd_loop: loop { + let mut buf = [0u8; 64]; + + match CONSOLE.lock(|c| c.command_prompt(&mut buf)) { + b"trap" => check_data_abort_trap(), + b"map" => arch::memory::print_layout(), + b"help" => print_help(), + b"end" => break 'cmd_loop, + x => println!("Unknown command {:?}, try 'help'", x), + } + } + + // writeln!(uart, "Bye, going to sleep now"); + // qemu_aarch64_exit() + endless_sleep() +} + +fn print_help() { + println!("Supported console commands:"); + println!(" trap - cause and recover from a data abort exception"); + println!(" map - show kernel memory layout"); + println!(" end - leave console and lock up"); +} + +fn check_data_abort_trap() { // Cause an exception by accessing a virtual address for which no // address translations have been set up. // @@ -136,17 +165,6 @@ fn kmain() -> ! { unsafe { core::ptr::read_volatile(big_addr as *mut u64) }; println!("[i] Whoa! We recovered from an exception."); - - //------------------------------------------------------------ - // Start a command prompt - //------------------------------------------------------------ - CONSOLE.lock(|c| { - c.command_prompt(); - }); - - // writeln!(uart, "Bye, going to sleep now"); - // qemu_aarch64_exit() - endless_sleep() } entry!(kmain);