diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-14 02:13:23 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2025-03-14 02:14:56 +0100 |
commit | 3ebd8b163dc8d5679d90927de1c2fcd639882362 (patch) | |
tree | f9a8c33265371606d93ddf5b350fe4e095afb3f8 /examples | |
parent | b16851fb799b880c31cc65a9fa1aba592b4ce5b4 (diff) | |
download | mini-kvm-rs-3ebd8b163dc8d5679d90927de1c2fcd639882362.tar.gz mini-kvm-rs-3ebd8b163dc8d5679d90927de1c2fcd639882362.zip |
Guest to toy with msr register and the swapgs instruction.
Diffstat (limited to 'examples')
-rw-r--r-- | examples/long_mode.rs | 20 |
1 files changed, 17 insertions, 3 deletions
diff --git a/examples/long_mode.rs b/examples/long_mode.rs index 03a77a4..bba9751 100644 --- a/examples/long_mode.rs +++ b/examples/long_mode.rs @@ -4,6 +4,8 @@ use kvm_rs::vcpu::KvmExit; use kvm_rs::x86_64::*; use kvm_rs::{PhysAddr, UserMem}; +use std::convert::TryInto; + fn setup_long_mode_segments(sregs: &mut kvm_sys::kvm_sregs) { let code_seg = |seg: &mut kvm_sys::kvm_segment| { // Segment base address (unused in 64bit). @@ -153,6 +155,8 @@ fn main() -> std::io::Result<()> { let mut regs = vcpu.get_regs()?; // Set `rip` to 0 as we want to start executing from virtual address 0. regs.rip = 0; + // Set `rsp` (stack pointer) to the end of the guests virtual address space. + regs.rsp = 0x4000; regs.rflags = 0x2; vcpu.set_regs(regs)?; @@ -172,9 +176,19 @@ fn main() -> std::io::Result<()> { // Provide some input data. data.fill(0xaa); } - KvmExit::IoOut(_port, data) => { - let s = std::str::from_utf8(data).unwrap(); - print!("{}", s); + KvmExit::IoOut(port, data) => { + if port == 0x42 { + // Magic port to interpret any input as string. + let s = std::str::from_utf8(data).unwrap(); + print!("{}", s); + } else { + // By default format print bytes as hex string. + let val = match data.len() { + 4 => u32::from_le_bytes(data.try_into().unwrap()) as u64, + _ => todo!("unknown size {}", data.len()), + }; + println!("{:x}", val); + } } KvmExit::MmioRead(addr, data) => { println!("MMIO_READ: addr={:#x} len={}", addr, data.len()); |