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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//! VM system ioctls.
use std::fs;
use std::io;
use std::os::unix::io::FromRawFd;
use crate::vcpu::Vcpu;
use crate::{ioctl, kvm_sys, KvmRun, PhysAddr, UserMem};
/// Wrapper for VM ioctls.
///
/// Representation of the file descriptor obtained by the [`KVM_CREATE_VM`][kvm-create-vm] ioctl.
/// This wrapper provides access to the `VM ioctls` as described in [KVM API][kvm].
///
/// [kvm]: https://www.kernel.org/doc/html/latest/virt/kvm/api.html#general-description
/// [kvm-create-vm]: https://www.kernel.org/doc/html/latest/virt/kvm/api.html#kvm-create-vm
pub struct Vm {
vm: fs::File,
vcpu_mmap_size: usize,
}
impl Vm {
pub(crate) fn new(vm: fs::File, vcpu_mmap_size: usize) -> Vm {
Vm { vm, vcpu_mmap_size }
}
/// Map memory from userspace into the VM as `guest physical` memory starting at address
/// `phys_addr`.
/// The underlying operation is the [`KVM_SET_USER_MEMORY_REGION`][kmv-set-user-memory-region]
/// ioctl.
///
/// # Safety
///
/// The `mem: &UserMem` argument passed to this function must at least live as long the `Vcpu`
/// instance.
///
/// [kvm-set-user-memory-region]: https://www.kernel.org/doc/html/latest/virt/kvm/api.html#kvm-set-user-memory-region
pub unsafe fn set_user_memory_region(
&self,
phys_addr: PhysAddr,
mem: &UserMem,
) -> io::Result<()> {
// Create guest physical memory mapping for `slot : 0` at guest `phys_addr`.
let mut kvm_mem = kvm_sys::kvm_userspace_memory_region::default();
kvm_mem.userspace_addr = mem.ptr as u64;
kvm_mem.memory_size = mem.len as u64;
kvm_mem.guest_phys_addr = phys_addr.0;
ioctl(
&self.vm,
kvm_sys::KVM_SET_USER_MEMORY_REGION,
&kvm_mem as *const _ as u64,
)
.map(|_| ())
}
/// Create a new virtual cpu with the [`KVM_CREATE_VCPU`][kvm-create-vcpu] ioctl.
/// Returns a wrapper [`vcpu::Vcpu`][crate::vcpu::Vcpu] representing the VCPU.
///
/// [kvm-create-vcpu]: https://www.kernel.org/doc/html/latest/virt/kvm/api.html#kvm-create-vcpu
pub fn create_vpcu(&self, id: u64) -> io::Result<Vcpu> {
let vcpu = ioctl(&self.vm, kvm_sys::KVM_CREATE_VCPU, id)
.map(|fd| unsafe { fs::File::from_raw_fd(fd) })?;
let kvm_run = KvmRun::new(&vcpu, self.vcpu_mmap_size)?;
Ok(Vcpu::new(vcpu, kvm_run))
}
}
|