holey-bytes/hbxrt/src/main.rs

70 lines
2 KiB
Rust
Raw Normal View History

//! Holey Bytes Experimental Runtime
2023-11-15 12:03:56 -06:00
#![deny(unsafe_op_in_unsafe_fn)]
2023-11-23 10:35:11 -06:00
mod linux;
mod mem;
use {
hbvm::{mem::Address, Vm, VmRunOk},
nix::sys::mman::{mmap, MapFlags, ProtFlags},
2023-10-21 21:21:45 -05:00
std::{env::args, fs::File, num::NonZeroUsize, process::exit},
};
2023-09-26 16:36:27 -05:00
fn main() -> Result<(), Box<dyn std::error::Error>> {
eprintln!("== HB×RT (Holey Bytes Linux Runtime) v0.1 ==");
eprintln!("[W] Currently supporting only flat images");
let Some(image_path) = args().nth(1) else {
eprintln!("[E] Missing image path");
exit(1);
};
2023-11-15 12:17:25 -06:00
// Allocate stack
2023-11-23 10:35:11 -06:00
let stack_ptr = unsafe { linux::alloc_stack(1024 * 1024 * 2) }?;
2023-11-15 12:17:25 -06:00
eprintln!("[I] Stack allocated at {stack_ptr:p}");
// Load program
eprintln!("[I] Loading image from \"{image_path}\"");
2023-11-23 10:35:11 -06:00
let ptr = unsafe { linux::mmap_bytecode(image_path) }?;
eprintln!("[I] Image loaded at {ptr:p}");
let mut vm = unsafe { Vm::<_, 0>::new(mem::HostMemory, Address::new(ptr as u64)) };
2023-11-15 12:17:25 -06:00
vm.write_reg(254, stack_ptr as u64);
2023-10-19 17:12:32 -05:00
2023-11-23 10:35:11 -06:00
unsafe { linux::hook_pagefault() }?;
2023-10-19 17:12:32 -05:00
2023-11-15 12:03:56 -06:00
// Execute program
let stat = loop {
match vm.run() {
Ok(VmRunOk::Breakpoint) => eprintln!(
"[I] Hit breakpoint\nIP: {}\n== Registers ==\n{:?}",
vm.pc, vm.registers
),
Ok(VmRunOk::Timer) => (),
Ok(VmRunOk::Ecall) => unsafe {
std::arch::asm!(
"syscall",
inlateout("rax") vm.registers[1].0,
in("rdi") vm.registers[2].0,
in("rsi") vm.registers[3].0,
in("rdx") vm.registers[4].0,
in("r10") vm.registers[5].0,
in("r8") vm.registers[6].0,
in("r9") vm.registers[7].0,
)
},
Ok(VmRunOk::End) => break Ok(()),
Err(e) => break Err(e),
}
};
eprintln!("\n== Registers ==\n{:?}", vm.registers);
if let Err(e) = stat {
eprintln!("\n[E] Runtime error: {e:?}");
exit(2);
}
2023-09-26 16:36:27 -05:00
Ok(())
}