2020-06-03 19:23:56 +00:00
|
|
|
// Copyright © 2019 Intel Corporation
|
|
|
|
//
|
2020-06-26 00:06:14 +00:00
|
|
|
// SPDX-License-Identifier: Apache-2.0 OR BSD-3-Clause
|
2020-06-03 19:23:56 +00:00
|
|
|
//
|
2020-06-28 16:32:56 +00:00
|
|
|
// Copyright © 2020, Microsoft Corporation
|
2020-06-03 19:23:56 +00:00
|
|
|
//
|
|
|
|
// Copyright 2018-2019 CrowdStrike, Inc.
|
|
|
|
//
|
2020-06-26 00:06:14 +00:00
|
|
|
//
|
2020-06-03 19:23:56 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
use crate::aarch64::VcpuInit;
|
2020-08-30 08:44:39 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2020-10-07 14:45:25 +00:00
|
|
|
use crate::aarch64::{RegList, Register, StandardRegisters};
|
2020-12-03 23:24:57 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
use crate::x86_64::{CpuId, LapicState};
|
2020-06-03 19:23:56 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-06-02 21:24:33 +00:00
|
|
|
use crate::x86_64::{
|
2020-12-03 23:24:57 +00:00
|
|
|
ExtendedControlRegisters, FpuState, MsrEntries, SpecialRegisters, StandardRegisters, VcpuEvents,
|
2020-06-02 21:24:33 +00:00
|
|
|
};
|
2020-12-03 23:24:57 +00:00
|
|
|
use crate::CpuState;
|
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
use crate::MpState;
|
2021-06-17 22:50:36 +00:00
|
|
|
#[cfg(all(feature = "mshv", target_arch = "x86_64"))]
|
|
|
|
use crate::SuspendRegisters;
|
2020-12-03 23:24:57 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
use crate::Xsave;
|
2021-03-01 18:07:02 +00:00
|
|
|
#[cfg(feature = "mshv")]
|
|
|
|
use mshv_bindings::*;
|
2020-06-03 19:23:56 +00:00
|
|
|
use thiserror::Error;
|
|
|
|
|
|
|
|
#[derive(Error, Debug)]
|
|
|
|
///
|
|
|
|
/// Enum for CPU error
|
|
|
|
pub enum HypervisorCpuError {
|
|
|
|
///
|
|
|
|
/// Setting standard registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to set standard register: {0}")]
|
|
|
|
SetStandardRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting standard registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to get standard registers: {0}")]
|
|
|
|
GetStandardRegs(#[source] anyhow::Error),
|
|
|
|
///
|
2021-06-17 22:50:36 +00:00
|
|
|
/// Getting suspend registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to get suspend registers: {0}")]
|
|
|
|
GetSuspendRegs(#[source] anyhow::Error),
|
|
|
|
///
|
2020-06-03 19:23:56 +00:00
|
|
|
/// Setting special register error
|
|
|
|
///
|
|
|
|
#[error("Failed to set special registers: {0}")]
|
|
|
|
SetSpecialRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting standard register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get special registers: {0}")]
|
|
|
|
GetSpecialRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting floating point registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to set special register: {0}")]
|
|
|
|
SetFloatingPointRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting floating point register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get special register: {0}")]
|
|
|
|
GetFloatingPointRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting Cpuid error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Cpuid: {0}")]
|
|
|
|
SetCpuid(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Cpuid error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Cpuid: {0}")]
|
|
|
|
GetCpuid(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting lapic state error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Lapic state: {0}")]
|
|
|
|
SetLapicState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Lapic state error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Lapic state: {0}")]
|
|
|
|
GetlapicState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting MSR entries error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Msr entries: {0}")]
|
|
|
|
SetMsrEntries(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Msr entries error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Msr entries: {0}")]
|
|
|
|
GetMsrEntries(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting MSR entries error
|
|
|
|
///
|
|
|
|
#[error("Failed to set MP state: {0}")]
|
|
|
|
SetMpState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Msr entries error
|
|
|
|
///
|
|
|
|
#[error("Failed to get MP state: {0}")]
|
|
|
|
GetMpState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting Saved Processor Extended States error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Saved Processor Extended States: {0}")]
|
|
|
|
SetXsaveState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Saved Processor Extended States error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Saved Processor Extended States: {0}")]
|
|
|
|
GetXsaveState(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting Extended Control Registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Extended Control Registers: {0}")]
|
|
|
|
SetXcsr(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Extended Control Registers error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Extended Control Registers: {0}")]
|
|
|
|
GetXcsr(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Running Vcpu error
|
|
|
|
///
|
|
|
|
#[error("Failed to run vcpu: {0}")]
|
|
|
|
RunVcpu(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting Vcpu events error
|
|
|
|
///
|
|
|
|
#[error("Failed to get Vcpu events: {0}")]
|
|
|
|
GetVcpuEvents(#[source] anyhow::Error),
|
|
|
|
///
|
2020-06-24 14:52:41 +00:00
|
|
|
/// Setting Vcpu events error
|
|
|
|
///
|
|
|
|
#[error("Failed to set Vcpu events: {0}")]
|
|
|
|
SetVcpuEvents(#[source] anyhow::Error),
|
|
|
|
///
|
2020-06-03 19:23:56 +00:00
|
|
|
/// Vcpu Init error
|
|
|
|
///
|
|
|
|
#[error("Failed to init vcpu: {0}")]
|
|
|
|
VcpuInit(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting one reg error
|
|
|
|
///
|
|
|
|
#[error("Failed to init vcpu: {0}")]
|
2020-10-07 14:45:25 +00:00
|
|
|
SetRegister(#[source] anyhow::Error),
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Getting one reg error
|
|
|
|
///
|
|
|
|
#[error("Failed to init vcpu: {0}")]
|
2020-10-07 14:45:25 +00:00
|
|
|
GetRegister(#[source] anyhow::Error),
|
2020-06-23 14:42:00 +00:00
|
|
|
///
|
|
|
|
/// Getting guest clock paused error
|
|
|
|
///
|
|
|
|
#[error("Failed to notify guest its clock was paused: {0}")]
|
|
|
|
NotifyGuestClockPaused(#[source] anyhow::Error),
|
2020-09-15 15:15:50 +00:00
|
|
|
///
|
2020-12-03 23:24:57 +00:00
|
|
|
/// Setting debug register error
|
|
|
|
///
|
|
|
|
#[error("Failed to set debug registers: {0}")]
|
|
|
|
SetDebugRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting debug register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get debug registers: {0}")]
|
|
|
|
GetDebugRegs(#[source] anyhow::Error),
|
|
|
|
///
|
2021-09-30 19:41:32 +00:00
|
|
|
/// Setting misc register error
|
|
|
|
///
|
|
|
|
#[error("Failed to set misc registers: {0}")]
|
|
|
|
SetMiscRegs(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting misc register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get misc registers: {0}")]
|
|
|
|
GetMiscRegs(#[source] anyhow::Error),
|
|
|
|
///
|
2020-12-03 23:24:57 +00:00
|
|
|
/// Write to Guest Mem
|
|
|
|
///
|
|
|
|
#[error("Failed to write to Guest Mem at: {0}")]
|
|
|
|
GuestMemWrite(#[source] anyhow::Error),
|
2020-09-15 15:15:50 +00:00
|
|
|
/// Enabling HyperV SynIC error
|
|
|
|
///
|
|
|
|
#[error("Failed to enable HyperV SynIC")]
|
2021-03-25 17:01:21 +00:00
|
|
|
EnableHyperVSyncIc(#[source] anyhow::Error),
|
2020-08-28 09:06:54 +00:00
|
|
|
///
|
2020-08-30 08:44:39 +00:00
|
|
|
/// Getting AArch64 core register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get core register: {0}")]
|
|
|
|
GetCoreRegister(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Setting AArch64 core register error
|
|
|
|
///
|
|
|
|
#[error("Failed to set core register: {0}")]
|
|
|
|
SetCoreRegister(#[source] anyhow::Error),
|
|
|
|
///
|
|
|
|
/// Getting AArch64 registers list error
|
|
|
|
///
|
|
|
|
#[error("Failed to retrieve list of registers: {0}")]
|
|
|
|
GetRegList(#[source] anyhow::Error),
|
|
|
|
///
|
2020-08-28 09:06:54 +00:00
|
|
|
/// Getting AArch64 system register error
|
|
|
|
///
|
|
|
|
#[error("Failed to get system register: {0}")]
|
|
|
|
GetSysRegister(#[source] anyhow::Error),
|
2020-08-30 08:44:39 +00:00
|
|
|
///
|
|
|
|
/// Setting AArch64 system register error
|
|
|
|
///
|
|
|
|
#[error("Failed to set system register: {0}")]
|
|
|
|
SetSysRegister(#[source] anyhow::Error),
|
2021-03-01 18:07:02 +00:00
|
|
|
///
|
|
|
|
/// GVA translation error
|
|
|
|
///
|
|
|
|
#[error("Failed to translate GVA: {0}")]
|
2021-03-25 17:01:21 +00:00
|
|
|
TranslateVirtualAddress(#[source] anyhow::Error),
|
2021-02-12 15:17:18 +00:00
|
|
|
///
|
|
|
|
/// Failed to initialize TDX on CPU
|
|
|
|
///
|
|
|
|
#[cfg(feature = "tdx")]
|
|
|
|
#[error("Failed to initialize TDX: {0}")]
|
|
|
|
InitializeTdx(#[source] std::io::Error),
|
2020-06-03 19:23:56 +00:00
|
|
|
}
|
|
|
|
|
2020-07-03 14:27:53 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum VmExit<'a> {
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
IoOut(u16 /* port */, &'a [u8] /* data */),
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
IoIn(u16 /* port */, &'a mut [u8] /* data */),
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
IoapicEoi(u8 /* vector */),
|
|
|
|
MmioRead(u64 /* address */, &'a mut [u8]),
|
|
|
|
MmioWrite(u64 /* address */, &'a [u8]),
|
|
|
|
Ignore,
|
|
|
|
Reset,
|
2020-10-30 13:34:16 +00:00
|
|
|
Shutdown,
|
2020-09-15 15:17:23 +00:00
|
|
|
Hyperv,
|
2020-07-03 14:27:53 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Result type for returning from a function
|
|
|
|
///
|
|
|
|
pub type Result<T> = anyhow::Result<T, HypervisorCpuError>;
|
|
|
|
///
|
|
|
|
/// Trait to represent a generic Vcpu
|
|
|
|
///
|
|
|
|
pub trait Vcpu: Send + Sync {
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns the vCPU general purpose registers.
|
|
|
|
///
|
|
|
|
fn get_regs(&self) -> Result<StandardRegisters>;
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Sets the vCPU general purpose registers.
|
|
|
|
///
|
|
|
|
fn set_regs(&self, regs: &StandardRegisters) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns the vCPU special registers.
|
|
|
|
///
|
|
|
|
fn get_sregs(&self) -> Result<SpecialRegisters>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Sets the vCPU special registers
|
|
|
|
///
|
|
|
|
fn set_sregs(&self, sregs: &SpecialRegisters) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns the floating point state (FPU) from the vCPU.
|
|
|
|
///
|
|
|
|
fn get_fpu(&self) -> Result<FpuState>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Set the floating point state (FPU) of a vCPU
|
|
|
|
///
|
|
|
|
fn set_fpu(&self, fpu: &FpuState) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// X86 specific call to setup the CPUID registers.
|
|
|
|
///
|
|
|
|
fn set_cpuid2(&self, cpuid: &CpuId) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
2020-09-15 15:15:50 +00:00
|
|
|
/// X86 specific call to enable HyperV SynIC
|
|
|
|
///
|
|
|
|
fn enable_hyperv_synic(&self) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
2020-06-03 19:23:56 +00:00
|
|
|
/// X86 specific call to retrieve the CPUID registers.
|
|
|
|
///
|
|
|
|
fn get_cpuid2(&self, num_entries: usize) -> Result<CpuId>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns the state of the LAPIC (Local Advanced Programmable Interrupt Controller).
|
|
|
|
///
|
|
|
|
fn get_lapic(&self) -> Result<LapicState>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Sets the state of the LAPIC (Local Advanced Programmable Interrupt Controller).
|
|
|
|
///
|
|
|
|
fn set_lapic(&self, lapic: &LapicState) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns the model-specific registers (MSR) for this vCPU.
|
|
|
|
///
|
|
|
|
fn get_msrs(&self, msrs: &mut MsrEntries) -> Result<usize>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Setup the model-specific registers (MSR) for this vCPU.
|
|
|
|
///
|
|
|
|
fn set_msrs(&self, msrs: &MsrEntries) -> Result<usize>;
|
2020-12-04 23:35:29 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Returns the vcpu's current "multiprocessing state".
|
|
|
|
///
|
|
|
|
fn get_mp_state(&self) -> Result<MpState>;
|
2020-12-04 23:35:29 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Sets the vcpu's current "multiprocessing state".
|
|
|
|
///
|
|
|
|
fn set_mp_state(&self, mp_state: MpState) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// X86 specific call that returns the vcpu's current "xsave struct".
|
|
|
|
///
|
|
|
|
fn get_xsave(&self) -> Result<Xsave>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// X86 specific call that sets the vcpu's current "xsave struct".
|
|
|
|
///
|
|
|
|
fn set_xsave(&self, xsave: &Xsave) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// X86 specific call that returns the vcpu's current "xcrs".
|
|
|
|
///
|
|
|
|
fn get_xcrs(&self) -> Result<ExtendedControlRegisters>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// X86 specific call that sets the vcpu's current "xcrs".
|
|
|
|
///
|
|
|
|
fn set_xcrs(&self, xcrs: &ExtendedControlRegisters) -> Result<()>;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
|
|
|
/// Returns currently pending exceptions, interrupts, and NMIs as well as related
|
|
|
|
/// states of the vcpu.
|
|
|
|
///
|
|
|
|
fn get_vcpu_events(&self) -> Result<VcpuEvents>;
|
2020-06-23 14:42:00 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
///
|
2020-06-24 14:52:41 +00:00
|
|
|
/// Sets pending exceptions, interrupts, and NMIs as well as related states
|
|
|
|
/// of the vcpu.
|
|
|
|
///
|
|
|
|
fn set_vcpu_events(&self, events: &VcpuEvents) -> Result<()>;
|
2020-12-04 23:35:29 +00:00
|
|
|
#[cfg(all(feature = "kvm", target_arch = "x86_64"))]
|
2020-06-24 14:52:41 +00:00
|
|
|
///
|
2020-06-23 14:42:00 +00:00
|
|
|
/// Let the guest know that it has been paused, which prevents from
|
|
|
|
/// potential soft lockups when being resumed.
|
|
|
|
///
|
|
|
|
fn notify_guest_clock_paused(&self) -> Result<()>;
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Sets the type of CPU to be exposed to the guest and optional features.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
|
|
|
fn vcpu_init(&self, kvi: &VcpuInit) -> Result<()>;
|
|
|
|
///
|
|
|
|
/// Sets the value of one register for this vCPU.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
2020-10-07 14:45:25 +00:00
|
|
|
fn set_reg(&self, reg_id: u64, data: u64) -> Result<()>;
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
|
|
|
/// Sets the value of one register for this vCPU.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
2020-10-07 14:45:25 +00:00
|
|
|
fn get_reg(&self, reg_id: u64) -> Result<u64>;
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
2020-08-30 08:44:39 +00:00
|
|
|
/// Gets a list of the guest registers that are supported for the
|
|
|
|
/// KVM_GET_ONE_REG/KVM_SET_ONE_REG calls.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
|
|
|
fn get_reg_list(&self, reg_list: &mut RegList) -> Result<()>;
|
|
|
|
///
|
|
|
|
/// Save the state of the core registers.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
|
|
|
fn core_registers(&self, state: &mut StandardRegisters) -> Result<()>;
|
|
|
|
///
|
|
|
|
/// Restore the state of the core registers.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
|
|
|
fn set_core_registers(&self, state: &StandardRegisters) -> Result<()>;
|
|
|
|
///
|
|
|
|
/// Save the state of the system registers.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
2020-10-07 14:45:25 +00:00
|
|
|
fn system_registers(&self, state: &mut Vec<Register>) -> Result<()>;
|
2020-08-30 08:44:39 +00:00
|
|
|
///
|
|
|
|
/// Restore the state of the system registers.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
2020-10-07 14:45:25 +00:00
|
|
|
fn set_system_registers(&self, state: &[Register]) -> Result<()>;
|
2020-08-30 08:44:39 +00:00
|
|
|
///
|
2020-08-28 09:06:54 +00:00
|
|
|
/// Read the MPIDR - Multiprocessor Affinity Register.
|
|
|
|
///
|
|
|
|
#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
|
|
|
|
fn read_mpidr(&self) -> Result<u64>;
|
|
|
|
///
|
2020-07-03 08:54:36 +00:00
|
|
|
/// Retrieve the vCPU state.
|
|
|
|
/// This function is necessary to snapshot the VM
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
2020-07-03 08:54:36 +00:00
|
|
|
fn state(&self) -> Result<CpuState>;
|
2020-06-03 19:23:56 +00:00
|
|
|
///
|
2020-07-03 08:54:36 +00:00
|
|
|
/// Set the vCPU state.
|
2020-06-03 19:23:56 +00:00
|
|
|
/// This function is required when restoring the VM
|
|
|
|
///
|
2020-07-03 08:54:36 +00:00
|
|
|
fn set_state(&self, state: &CpuState) -> Result<()>;
|
2020-07-03 14:27:53 +00:00
|
|
|
///
|
|
|
|
/// Triggers the running of the current virtual CPU returning an exit reason.
|
|
|
|
///
|
|
|
|
fn run(&self) -> std::result::Result<VmExit, HypervisorCpuError>;
|
2021-03-01 18:07:02 +00:00
|
|
|
#[cfg(all(feature = "mshv", target_arch = "x86_64"))]
|
|
|
|
///
|
|
|
|
/// Translate guest virtual address to guest physical address
|
|
|
|
///
|
|
|
|
fn translate_gva(&self, gva: u64, flags: u64) -> Result<(u64, hv_translate_gva_result)>;
|
2021-02-12 15:17:18 +00:00
|
|
|
///
|
|
|
|
/// Initialize TDX support on the vCPU
|
|
|
|
///
|
|
|
|
#[cfg(feature = "tdx")]
|
|
|
|
fn tdx_init(&self, hob_address: u64) -> Result<()>;
|
2021-06-17 22:50:36 +00:00
|
|
|
#[cfg(all(feature = "mshv", target_arch = "x86_64"))]
|
|
|
|
///
|
|
|
|
/// Return suspend registers(explicit and intercept suspend registers)
|
|
|
|
///
|
|
|
|
fn get_suspend_regs(&self) -> Result<SuspendRegisters>;
|
2020-06-03 19:23:56 +00:00
|
|
|
}
|