summary refs log tree commit diff
path: root/hypervisor/src/kvm/mod.rs
blob: 705892103604251d9ca276efc9f5c6fd2177aee3 (plain) (blame)
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
// Copyright 2020 The Chromium OS Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

use super::{CpuId, Hypervisor, HypervisorCap};
use libc::{open, O_CLOEXEC, O_RDWR};
use std::os::raw::c_char;
use sys_util::{
    errno_result, AsRawDescriptor, FromRawDescriptor, RawDescriptor, Result, SafeDescriptor,
};

pub struct Kvm {
    kvm: SafeDescriptor,
}

impl Kvm {
    /// Opens `/dev/kvm/` and returns a Kvm object on success.
    pub fn new() -> Result<Kvm> {
        // Open calls are safe because we give a constant nul-terminated string and verify the
        // result.
        let ret = unsafe { open("/dev/kvm\0".as_ptr() as *const c_char, O_RDWR | O_CLOEXEC) };
        if ret < 0 {
            return errno_result();
        }
        // Safe because we verify that ret is valid and we own the fd.
        Ok(Kvm {
            kvm: unsafe { SafeDescriptor::from_raw_descriptor(ret) },
        })
    }
}

impl AsRawDescriptor for Kvm {
    fn as_raw_descriptor(&self) -> RawDescriptor {
        self.kvm.as_raw_descriptor()
    }
}

impl Hypervisor for Kvm {
    fn check_capability(&self, _cap: &HypervisorCap) -> bool {
        unimplemented!("check_capability for Kvm is not yet implemented");
    }

    #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
    fn get_supported_cpuid(&self) -> Result<CpuId> {
        unimplemented!("get_supported_cpuid for Kvm is not yet implemented");
    }

    #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
    fn get_emulated_cpuid(&self) -> Result<CpuId> {
        unimplemented!("get_emulated_cpuid for Kvm is not yet implemented");
    }
}

#[cfg(test)]
mod tests {
    use super::Kvm;

    #[test]
    fn new() {
        Kvm::new().unwrap();
    }
}