项目作者: Thog

项目描述 :
Apple Hypervisor crate for Apple Silicon
高级语言: Rust
项目地址: git://github.com/Thog/ahv.git
创建时间: 2020-12-26T15:49:13Z
项目社区:https://github.com/Thog/ahv

开源协议:Other

下载


ahv

Bindings for Apple Silicon Hypervisor.

Usage

To use ahv, add this to your Cargo.toml:

  1. [dependencies]
  2. ahv = "0.3.0"

Example

The following example execute a move of the immediate value 2 to register x0 at EL1 and then call HVC 0.

  1. use ahv::*;
  2. fn main() -> Result<()> {
  3. let el1_user_payload = [
  4. 0x40, 0x00, 0x80, 0xD2, // mov x0, #2
  5. 0x02, 0x00, 0x00, 0xD4, // hvc #0
  6. ];
  7. const EL1_USER_PAYLOAD_ADDRESS: hv_ipa_t = 0x20000;
  8. let mut virtual_machine: VirtualMachine = VirtualMachine::new(None)?;
  9. let el1_user_payload_allocation_handle = virtual_machine.allocate_from(&el1_user_payload)?;
  10. virtual_machine.map(el1_user_payload_allocation_handle,
  11. EL1_USER_PAYLOAD_ADDRESS,
  12. MemoryPermission::READ_WRITE_EXECUTE)?;
  13. {
  14. // vCPU scope
  15. let mut vcpu = virtual_machine.create_vcpu(None)?;
  16. vcpu.set_register(Register::CPSR, 0x3c4)?;
  17. vcpu.set_register(Register::PC, EL1_USER_PAYLOAD_ADDRESS)?;
  18. vcpu.set_trap_debug_exceptions(true)?;
  19. loop {
  20. let result = vcpu.run()?;
  21. match result {
  22. VirtualCpuExitReason::Exception { exception } => {
  23. let ec = (exception.syndrome >> 26) & 0x3f;
  24. if ec == 0x16 {
  25. println!("HVC executed! x0 is {}", vcpu.get_register(Register::X0)?);
  26. break;
  27. } else {
  28. println!("Unknown exception class 0x{:x}", ec);
  29. break;
  30. }
  31. }
  32. reason => {
  33. println!("Unexpected exit! Reason: {:?}", reason);
  34. break;
  35. }
  36. }
  37. }
  38. }
  39. // VirtualMachine will unmap and deallocate on drop.
  40. Ok(())
  41. }

To run this example make sure to give the built binary the com.apple.security.hypervisor entitlement.

MSRV

Current MSRV is 1.65.0.

License

ahv is distributed under the terms of either the MIT license or the Apache
License (Version 2.0), at the user’s choice.

See LICENSE-APACHE and LICENSE-MIT.