2020-02-12 03:37:33 +00:00
|
|
|
|
// Copyright © 2020, Oracle and/or its affiliates.
|
|
|
|
|
//
|
2019-11-11 13:55:50 +00:00
|
|
|
|
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
|
//
|
|
|
|
|
// Portions Copyright 2017 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-BSD-3-Clause file.
|
|
|
|
|
//
|
|
|
|
|
// Copyright © 2019 Intel Corporation
|
|
|
|
|
//
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
|
|
|
|
|
//
|
2020-03-16 17:14:15 +00:00
|
|
|
|
|
2020-06-22 13:05:42 +00:00
|
|
|
|
use crate::config::CpusConfig;
|
2019-11-11 13:55:50 +00:00
|
|
|
|
use crate::device_manager::DeviceManager;
|
2020-07-08 13:12:27 +00:00
|
|
|
|
use crate::memory_manager::MemoryManager;
|
2020-09-09 22:15:26 +00:00
|
|
|
|
use crate::seccomp_filters::{get_seccomp_filter, Thread};
|
2021-02-09 14:39:50 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-10-13 08:22:44 +00:00
|
|
|
|
use crate::vm::physical_bits;
|
2021-06-02 19:08:04 +00:00
|
|
|
|
use crate::GuestMemoryMmap;
|
2019-05-12 11:53:47 +00:00
|
|
|
|
use crate::CPU_MANAGER_SNAPSHOT_ID;
|
2019-12-06 15:25:57 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 15:57:27 +00:00
|
|
|
|
use acpi_tables::{aml, aml::Aml, sdt::Sdt};
|
2020-02-18 15:44:41 +00:00
|
|
|
|
use anyhow::anyhow;
|
2020-10-16 16:12:46 +00:00
|
|
|
|
use arch::EntryPoint;
|
2021-08-06 23:28:42 +00:00
|
|
|
|
#[cfg(any(target_arch = "aarch64", feature = "acpi"))]
|
|
|
|
|
use arch::NumaNodes;
|
2020-09-09 14:30:31 +00:00
|
|
|
|
use devices::interrupt_controller::InterruptController;
|
2020-09-06 02:23:39 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
use hypervisor::kvm::kvm_bindings;
|
2021-02-09 14:39:50 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-07-14 21:44:38 +00:00
|
|
|
|
use hypervisor::CpuId;
|
|
|
|
|
use hypervisor::{vm::VmmOps, CpuState, HypervisorCpuError, VmExit};
|
2019-12-31 10:49:11 +00:00
|
|
|
|
use libc::{c_void, siginfo_t};
|
2021-08-17 03:40:11 +00:00
|
|
|
|
use seccompiler::{apply_filter, SeccompAction};
|
2021-06-17 10:41:30 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
use std::collections::BTreeMap;
|
2019-12-31 10:49:11 +00:00
|
|
|
|
use std::os::unix::thread::JoinHandleExt;
|
|
|
|
|
use std::sync::atomic::{AtomicBool, Ordering};
|
2020-03-04 15:19:37 +00:00
|
|
|
|
use std::sync::{Arc, Barrier, Mutex};
|
2020-05-12 09:49:12 +00:00
|
|
|
|
use std::{cmp, io, result, thread};
|
2020-09-03 20:50:56 +00:00
|
|
|
|
use vm_device::BusDevice;
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2020-06-09 06:54:15 +00:00
|
|
|
|
use vm_memory::GuestAddress;
|
2021-06-02 19:08:04 +00:00
|
|
|
|
use vm_memory::GuestMemoryAtomic;
|
2020-02-18 15:44:41 +00:00
|
|
|
|
use vm_migration::{
|
|
|
|
|
Migratable, MigratableError, Pausable, Snapshot, SnapshotDataSection, Snapshottable,
|
|
|
|
|
Transportable,
|
|
|
|
|
};
|
2019-11-11 13:55:50 +00:00
|
|
|
|
use vmm_sys_util::eventfd::EventFd;
|
2020-05-26 07:20:22 +00:00
|
|
|
|
use vmm_sys_util::signal::{register_signal_handler, SIGRTMIN};
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
pub const CPU_MANAGER_ACPI_SIZE: usize = 0xc;
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub enum Error {
|
2020-07-03 08:57:35 +00:00
|
|
|
|
/// Cannot create the vCPU.
|
|
|
|
|
VcpuCreate(anyhow::Error),
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
|
|
|
|
/// Cannot run the VCPUs.
|
2020-06-02 02:29:54 +00:00
|
|
|
|
VcpuRun(anyhow::Error),
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
|
|
|
|
/// Cannot spawn a new vCPU thread.
|
|
|
|
|
VcpuSpawn(io::Error),
|
|
|
|
|
|
2021-07-14 21:44:38 +00:00
|
|
|
|
/// Cannot generate common CPUID
|
|
|
|
|
CommonCpuId(arch::Error),
|
2020-03-16 15:15:38 +00:00
|
|
|
|
|
2020-05-28 07:27:22 +00:00
|
|
|
|
/// Error configuring VCPU
|
|
|
|
|
VcpuConfiguration(arch::Error),
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
2020-09-06 02:23:39 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
/// Error fetching prefered target
|
|
|
|
|
VcpuArmPreferredTarget(hypervisor::HypervisorVmError),
|
|
|
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
/// Error doing vCPU init on Arm.
|
|
|
|
|
VcpuArmInit(hypervisor::HypervisorCpuError),
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
/// Failed to join on vCPU threads
|
2020-01-24 08:34:51 +00:00
|
|
|
|
ThreadCleanup(std::boxed::Box<dyn std::any::Any + std::marker::Send>),
|
2019-11-11 14:56:10 +00:00
|
|
|
|
|
|
|
|
|
/// Cannot add legacy device to Bus.
|
2020-09-09 14:30:31 +00:00
|
|
|
|
BusError(vm_device::BusError),
|
2019-11-20 14:16:14 +00:00
|
|
|
|
|
2019-11-26 13:06:24 +00:00
|
|
|
|
/// Asking for more vCPUs that we can have
|
2021-03-25 17:01:21 +00:00
|
|
|
|
DesiredVCpuCountExceedsMax,
|
2020-02-16 20:42:42 +00:00
|
|
|
|
|
2020-09-09 22:15:26 +00:00
|
|
|
|
/// Cannot create seccomp filter
|
2021-08-17 03:40:11 +00:00
|
|
|
|
CreateSeccompFilter(seccompiler::Error),
|
2020-09-09 22:15:26 +00:00
|
|
|
|
|
|
|
|
|
/// Cannot apply seccomp filter
|
2021-08-17 03:40:11 +00:00
|
|
|
|
ApplySeccompFilter(seccompiler::Error),
|
2020-09-04 10:56:30 +00:00
|
|
|
|
|
|
|
|
|
/// Error starting vCPU after restore
|
|
|
|
|
StartRestoreVcpu(anyhow::Error),
|
2020-09-03 20:50:56 +00:00
|
|
|
|
|
|
|
|
|
/// Error because an unexpected VmExit type was received.
|
|
|
|
|
UnexpectedVmExit,
|
2021-01-20 16:12:02 +00:00
|
|
|
|
|
|
|
|
|
/// Failed to allocate MMIO address
|
2021-03-25 17:01:21 +00:00
|
|
|
|
AllocateMmmioAddress,
|
2021-02-09 14:55:19 +00:00
|
|
|
|
|
2021-03-03 12:10:10 +00:00
|
|
|
|
#[cfg(feature = "tdx")]
|
|
|
|
|
InitializeTdx(hypervisor::HypervisorCpuError),
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
pub type Result<T> = result::Result<T, Error>;
|
|
|
|
|
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(all(target_arch = "x86_64", feature = "acpi"))]
|
2021-06-23 21:54:20 +00:00
|
|
|
|
#[allow(dead_code)]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
#[repr(packed)]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
struct LocalApic {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub processor_id: u8,
|
|
|
|
|
pub apic_id: u8,
|
|
|
|
|
pub flags: u32,
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-23 21:54:20 +00:00
|
|
|
|
#[allow(dead_code)]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
#[derive(Default)]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
struct Ioapic {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub ioapic_id: u8,
|
|
|
|
|
_reserved: u8,
|
|
|
|
|
pub apic_address: u32,
|
|
|
|
|
pub gsi_base: u32,
|
|
|
|
|
}
|
|
|
|
|
|
2021-01-31 02:16:17 +00:00
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
2021-06-24 02:49:04 +00:00
|
|
|
|
#[allow(dead_code)]
|
2021-01-31 02:16:17 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
struct GicC {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub reserved0: u16,
|
|
|
|
|
pub cpu_interface_number: u32,
|
|
|
|
|
pub uid: u32,
|
|
|
|
|
pub flags: u32,
|
|
|
|
|
pub parking_version: u32,
|
|
|
|
|
pub performance_interrupt: u32,
|
|
|
|
|
pub parked_address: u64,
|
|
|
|
|
pub base_address: u64,
|
|
|
|
|
pub gicv_base_address: u64,
|
|
|
|
|
pub gich_base_address: u64,
|
|
|
|
|
pub vgic_interrupt: u32,
|
|
|
|
|
pub gicr_base_address: u64,
|
|
|
|
|
pub mpidr: u64,
|
|
|
|
|
pub proc_power_effi_class: u8,
|
|
|
|
|
pub reserved1: u8,
|
|
|
|
|
pub spe_overflow_interrupt: u16,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
2021-06-24 02:49:04 +00:00
|
|
|
|
#[allow(dead_code)]
|
2021-01-31 02:16:17 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
struct GicD {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub reserved0: u16,
|
|
|
|
|
pub gic_id: u32,
|
|
|
|
|
pub base_address: u64,
|
|
|
|
|
pub global_irq_base: u32,
|
|
|
|
|
pub version: u8,
|
|
|
|
|
pub reserved1: [u8; 3],
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
2021-06-24 02:49:04 +00:00
|
|
|
|
#[allow(dead_code)]
|
2021-01-31 02:16:17 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
struct GicR {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub reserved: u16,
|
|
|
|
|
pub base_address: u64,
|
|
|
|
|
pub range_length: u32,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
2021-06-24 02:49:04 +00:00
|
|
|
|
#[allow(dead_code)]
|
2021-01-31 02:16:17 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
struct GicIts {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub reserved0: u16,
|
|
|
|
|
pub translation_id: u32,
|
|
|
|
|
pub base_address: u64,
|
|
|
|
|
pub reserved1: u32,
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-30 06:50:54 +00:00
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
|
|
|
|
#[allow(dead_code)]
|
|
|
|
|
#[repr(packed)]
|
|
|
|
|
struct ProcessorHierarchyNode {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub reserved: u16,
|
|
|
|
|
pub flags: u32,
|
|
|
|
|
pub parent: u32,
|
|
|
|
|
pub acpi_processor_id: u32,
|
|
|
|
|
pub num_private_resources: u32,
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-23 21:54:20 +00:00
|
|
|
|
#[allow(dead_code)]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
#[repr(packed)]
|
|
|
|
|
#[derive(Default)]
|
|
|
|
|
struct InterruptSourceOverride {
|
|
|
|
|
pub r#type: u8,
|
|
|
|
|
pub length: u8,
|
|
|
|
|
pub bus: u8,
|
|
|
|
|
pub source: u8,
|
|
|
|
|
pub gsi: u32,
|
|
|
|
|
pub flags: u16,
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
/// A wrapper around creating and using a kvm-based VCPU.
|
|
|
|
|
pub struct Vcpu {
|
2020-07-03 08:57:35 +00:00
|
|
|
|
// The hypervisor abstracted CPU.
|
|
|
|
|
vcpu: Arc<dyn hypervisor::Vcpu>,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
id: u8,
|
2020-06-09 07:24:23 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
mpidr: u64,
|
2020-06-24 11:55:18 +00:00
|
|
|
|
saved_state: Option<CpuState>,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl Vcpu {
|
|
|
|
|
/// Constructs a new VCPU for `vm`.
|
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
|
|
|
|
/// * `id` - Represents the CPU number between [0, max vcpus).
|
|
|
|
|
/// * `vm` - The virtual machine this vcpu will get attached to.
|
2020-11-18 16:37:52 +00:00
|
|
|
|
/// * `vmmops` - Optional object for exit handling.
|
|
|
|
|
pub fn new(
|
|
|
|
|
id: u8,
|
|
|
|
|
vm: &Arc<dyn hypervisor::Vm>,
|
2021-07-29 09:15:10 +00:00
|
|
|
|
vmmops: Option<Arc<dyn VmmOps>>,
|
2020-11-18 16:37:52 +00:00
|
|
|
|
) -> Result<Arc<Mutex<Self>>> {
|
2020-07-03 08:57:35 +00:00
|
|
|
|
let vcpu = vm
|
2020-11-18 16:37:52 +00:00
|
|
|
|
.create_vcpu(id, vmmops)
|
2020-07-03 08:57:35 +00:00
|
|
|
|
.map_err(|e| Error::VcpuCreate(e.into()))?;
|
2019-11-11 13:55:50 +00:00
|
|
|
|
// Initially the cpuid per vCPU is the one supported by this VM.
|
2020-02-18 15:58:51 +00:00
|
|
|
|
Ok(Arc::new(Mutex::new(Vcpu {
|
2020-07-03 08:57:35 +00:00
|
|
|
|
vcpu,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
id,
|
2020-06-09 07:24:23 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
mpidr: 0,
|
2020-06-24 11:55:18 +00:00
|
|
|
|
saved_state: None,
|
2020-02-18 15:58:51 +00:00
|
|
|
|
})))
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-28 07:27:22 +00:00
|
|
|
|
/// Configures a vcpu and should be called once per vcpu when created.
|
2019-11-11 13:55:50 +00:00
|
|
|
|
///
|
|
|
|
|
/// # Arguments
|
|
|
|
|
///
|
2020-02-12 03:37:33 +00:00
|
|
|
|
/// * `kernel_entry_point` - Kernel entry point address in guest memory and boot protocol used.
|
2020-05-26 07:20:22 +00:00
|
|
|
|
/// * `vm_memory` - Guest memory.
|
2020-05-28 07:27:22 +00:00
|
|
|
|
/// * `cpuid` - (x86_64) CpuId, wrapper over the `kvm_cpuid2` structure.
|
2019-11-11 13:55:50 +00:00
|
|
|
|
pub fn configure(
|
2020-06-09 07:24:23 +00:00
|
|
|
|
&mut self,
|
2020-07-03 08:57:35 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")] vm: &Arc<dyn hypervisor::Vm>,
|
2020-02-12 03:37:33 +00:00
|
|
|
|
kernel_entry_point: Option<EntryPoint>,
|
2020-02-11 16:22:40 +00:00
|
|
|
|
vm_memory: &GuestMemoryAtomic<GuestMemoryMmap>,
|
2020-05-28 07:27:22 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")] cpuid: CpuId,
|
2020-09-15 15:26:34 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")] kvm_hyperv: bool,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
) -> Result<()> {
|
2020-05-28 07:27:22 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
2020-06-09 07:24:23 +00:00
|
|
|
|
{
|
2020-09-06 02:23:39 +00:00
|
|
|
|
self.init(vm)?;
|
2021-02-09 14:39:50 +00:00
|
|
|
|
self.mpidr = arch::configure_vcpu(&self.vcpu, self.id, kernel_entry_point, vm_memory)
|
|
|
|
|
.map_err(Error::VcpuConfiguration)?;
|
2020-06-09 07:24:23 +00:00
|
|
|
|
}
|
2021-05-18 14:32:20 +00:00
|
|
|
|
info!("Configuring vCPU: cpu_id = {}", self.id);
|
2020-05-28 07:27:22 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-09-15 15:26:34 +00:00
|
|
|
|
arch::configure_vcpu(
|
|
|
|
|
&self.vcpu,
|
|
|
|
|
self.id,
|
|
|
|
|
kernel_entry_point,
|
|
|
|
|
vm_memory,
|
|
|
|
|
cpuid,
|
|
|
|
|
kvm_hyperv,
|
|
|
|
|
)
|
|
|
|
|
.map_err(Error::VcpuConfiguration)?;
|
2020-05-28 07:27:22 +00:00
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-09 07:24:23 +00:00
|
|
|
|
/// Gets the MPIDR register value.
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
pub fn get_mpidr(&self) -> u64 {
|
|
|
|
|
self.mpidr
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-04 15:37:52 +00:00
|
|
|
|
/// Gets the saved vCPU state.
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
pub fn get_saved_state(&self) -> Option<CpuState> {
|
|
|
|
|
self.saved_state.clone()
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-06 02:23:39 +00:00
|
|
|
|
/// Initializes an aarch64 specific vcpu for booting Linux.
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
pub fn init(&self, vm: &Arc<dyn hypervisor::Vm>) -> Result<()> {
|
|
|
|
|
let mut kvi: kvm_bindings::kvm_vcpu_init = kvm_bindings::kvm_vcpu_init::default();
|
|
|
|
|
|
|
|
|
|
// This reads back the kernel's preferred target type.
|
|
|
|
|
vm.get_preferred_target(&mut kvi)
|
|
|
|
|
.map_err(Error::VcpuArmPreferredTarget)?;
|
|
|
|
|
// We already checked that the capability is supported.
|
|
|
|
|
kvi.features[0] |= 1 << kvm_bindings::KVM_ARM_VCPU_PSCI_0_2;
|
|
|
|
|
// Non-boot cpus are powered off initially.
|
|
|
|
|
if self.id > 0 {
|
|
|
|
|
kvi.features[0] |= 1 << kvm_bindings::KVM_ARM_VCPU_POWER_OFF;
|
|
|
|
|
}
|
|
|
|
|
self.vcpu.vcpu_init(&kvi).map_err(Error::VcpuArmInit)
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
/// Runs the VCPU until it exits, returning the reason.
|
|
|
|
|
///
|
|
|
|
|
/// Note that the state of the VCPU and associated VM must be setup first for this to do
|
|
|
|
|
/// anything useful.
|
2020-10-30 13:01:53 +00:00
|
|
|
|
pub fn run(&self) -> std::result::Result<VmExit, HypervisorCpuError> {
|
|
|
|
|
self.vcpu.run()
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-18 15:44:41 +00:00
|
|
|
|
const VCPU_SNAPSHOT_ID: &str = "vcpu";
|
2020-06-24 09:59:17 +00:00
|
|
|
|
impl Pausable for Vcpu {
|
|
|
|
|
fn pause(&mut self) -> std::result::Result<(), MigratableError> {
|
2020-06-24 11:55:18 +00:00
|
|
|
|
self.saved_state =
|
2020-07-03 08:57:35 +00:00
|
|
|
|
Some(self.vcpu.state().map_err(|e| {
|
2020-06-24 11:55:18 +00:00
|
|
|
|
MigratableError::Pause(anyhow!("Could not get vCPU state {:?}", e))
|
|
|
|
|
})?);
|
|
|
|
|
|
2020-06-24 09:59:17 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn resume(&mut self) -> std::result::Result<(), MigratableError> {
|
2020-06-24 11:55:18 +00:00
|
|
|
|
if let Some(vcpu_state) = &self.saved_state {
|
2020-07-03 08:57:35 +00:00
|
|
|
|
self.vcpu.set_state(vcpu_state).map_err(|e| {
|
2020-06-24 11:55:18 +00:00
|
|
|
|
MigratableError::Pause(anyhow!("Could not set the vCPU state {:?}", e))
|
|
|
|
|
})?;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-24 09:59:17 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-18 15:44:41 +00:00
|
|
|
|
impl Snapshottable for Vcpu {
|
|
|
|
|
fn id(&self) -> String {
|
|
|
|
|
VCPU_SNAPSHOT_ID.to_string()
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 12:31:58 +00:00
|
|
|
|
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
|
2020-02-18 15:44:41 +00:00
|
|
|
|
let mut vcpu_snapshot = Snapshot::new(&format!("{}", self.id));
|
2021-04-14 15:50:29 +00:00
|
|
|
|
vcpu_snapshot.add_data_section(SnapshotDataSection::new_from_state(
|
|
|
|
|
VCPU_SNAPSHOT_ID,
|
|
|
|
|
&self.saved_state,
|
|
|
|
|
)?);
|
2020-02-18 15:44:41 +00:00
|
|
|
|
|
|
|
|
|
Ok(vcpu_snapshot)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn restore(&mut self, snapshot: Snapshot) -> std::result::Result<(), MigratableError> {
|
2021-04-14 15:50:29 +00:00
|
|
|
|
self.saved_state = Some(snapshot.to_state(VCPU_SNAPSHOT_ID)?);
|
|
|
|
|
Ok(())
|
2020-02-18 15:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
pub struct CpuManager {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
config: CpusConfig,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2020-05-25 08:27:08 +00:00
|
|
|
|
interrupt_controller: Option<Arc<Mutex<dyn InterruptController>>>,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2020-02-11 16:22:40 +00:00
|
|
|
|
vm_memory: GuestMemoryAtomic<GuestMemoryMmap>,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-11-11 13:55:50 +00:00
|
|
|
|
cpuid: CpuId,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2020-07-03 08:57:35 +00:00
|
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
vcpus_kill_signalled: Arc<AtomicBool>,
|
|
|
|
|
vcpus_pause_signalled: Arc<AtomicBool>,
|
2020-10-30 13:34:16 +00:00
|
|
|
|
exit_evt: EventFd,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2019-11-11 13:55:50 +00:00
|
|
|
|
reset_evt: EventFd,
|
2019-11-26 11:32:36 +00:00
|
|
|
|
vcpu_states: Vec<VcpuState>,
|
2019-11-20 14:06:37 +00:00
|
|
|
|
selected_cpu: u8,
|
2020-02-18 15:58:51 +00:00
|
|
|
|
vcpus: Vec<Arc<Mutex<Vcpu>>>,
|
2020-09-09 22:15:26 +00:00
|
|
|
|
seccomp_action: SeccompAction,
|
2021-07-29 09:15:10 +00:00
|
|
|
|
vmmops: Arc<dyn VmmOps>,
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2021-01-20 16:12:02 +00:00
|
|
|
|
acpi_address: GuestAddress,
|
2021-06-17 10:41:30 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
proximity_domain_per_cpu: BTreeMap<u8, u32>,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-20 14:06:37 +00:00
|
|
|
|
const CPU_ENABLE_FLAG: usize = 0;
|
2019-12-16 16:42:29 +00:00
|
|
|
|
const CPU_INSERTING_FLAG: usize = 1;
|
2019-12-17 10:49:05 +00:00
|
|
|
|
const CPU_REMOVING_FLAG: usize = 2;
|
2019-12-17 11:22:33 +00:00
|
|
|
|
const CPU_EJECT_FLAG: usize = 3;
|
2019-11-20 14:06:37 +00:00
|
|
|
|
|
|
|
|
|
const CPU_STATUS_OFFSET: u64 = 4;
|
|
|
|
|
const CPU_SELECTION_OFFSET: u64 = 0;
|
|
|
|
|
|
2019-11-11 14:56:10 +00:00
|
|
|
|
impl BusDevice for CpuManager {
|
2019-11-20 14:06:37 +00:00
|
|
|
|
fn read(&mut self, _base: u64, offset: u64, data: &mut [u8]) {
|
2021-03-29 11:20:00 +00:00
|
|
|
|
// The Linux kernel, quite reasonably, doesn't zero the memory it gives us.
|
2021-09-10 09:41:38 +00:00
|
|
|
|
data.fill(0);
|
2021-03-29 11:20:00 +00:00
|
|
|
|
|
2019-11-20 14:06:37 +00:00
|
|
|
|
match offset {
|
2021-03-29 11:20:00 +00:00
|
|
|
|
CPU_SELECTION_OFFSET => {
|
|
|
|
|
data[0] = self.selected_cpu;
|
|
|
|
|
}
|
2019-11-20 14:06:37 +00:00
|
|
|
|
CPU_STATUS_OFFSET => {
|
2021-09-10 09:41:38 +00:00
|
|
|
|
if self.selected_cpu < self.max_vcpus() {
|
2019-11-26 11:32:36 +00:00
|
|
|
|
let state = &self.vcpu_states[usize::from(self.selected_cpu)];
|
|
|
|
|
if state.active() {
|
|
|
|
|
data[0] |= 1 << CPU_ENABLE_FLAG;
|
|
|
|
|
}
|
2019-12-16 16:42:29 +00:00
|
|
|
|
if state.inserting {
|
|
|
|
|
data[0] |= 1 << CPU_INSERTING_FLAG;
|
|
|
|
|
}
|
2019-12-17 10:49:05 +00:00
|
|
|
|
if state.removing {
|
|
|
|
|
data[0] |= 1 << CPU_REMOVING_FLAG;
|
|
|
|
|
}
|
2021-09-10 09:41:38 +00:00
|
|
|
|
} else {
|
|
|
|
|
warn!("Out of range vCPU id: {}", self.selected_cpu);
|
2019-11-26 11:32:36 +00:00
|
|
|
|
}
|
2019-11-20 14:06:37 +00:00
|
|
|
|
}
|
|
|
|
|
_ => {
|
|
|
|
|
warn!(
|
|
|
|
|
"Unexpected offset for accessing CPU manager device: {:#}",
|
|
|
|
|
offset
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2019-11-11 14:56:10 +00:00
|
|
|
|
|
2020-12-04 09:23:47 +00:00
|
|
|
|
fn write(&mut self, _base: u64, offset: u64, data: &[u8]) -> Option<Arc<Barrier>> {
|
2019-11-20 14:06:37 +00:00
|
|
|
|
match offset {
|
|
|
|
|
CPU_SELECTION_OFFSET => {
|
|
|
|
|
self.selected_cpu = data[0];
|
|
|
|
|
}
|
2019-12-16 16:42:29 +00:00
|
|
|
|
CPU_STATUS_OFFSET => {
|
2021-09-10 09:41:38 +00:00
|
|
|
|
if self.selected_cpu < self.max_vcpus() {
|
|
|
|
|
let state = &mut self.vcpu_states[usize::from(self.selected_cpu)];
|
|
|
|
|
// The ACPI code writes back a 1 to acknowledge the insertion
|
|
|
|
|
if (data[0] & (1 << CPU_INSERTING_FLAG) == 1 << CPU_INSERTING_FLAG)
|
|
|
|
|
&& state.inserting
|
|
|
|
|
{
|
|
|
|
|
state.inserting = false;
|
2019-12-17 11:22:33 +00:00
|
|
|
|
}
|
2021-09-10 09:41:38 +00:00
|
|
|
|
// Ditto for removal
|
|
|
|
|
if (data[0] & (1 << CPU_REMOVING_FLAG) == 1 << CPU_REMOVING_FLAG)
|
|
|
|
|
&& state.removing
|
|
|
|
|
{
|
|
|
|
|
state.removing = false;
|
|
|
|
|
}
|
|
|
|
|
// Trigger removal of vCPU
|
|
|
|
|
if data[0] & (1 << CPU_EJECT_FLAG) == 1 << CPU_EJECT_FLAG {
|
|
|
|
|
if let Err(e) = self.remove_vcpu(self.selected_cpu) {
|
|
|
|
|
error!("Error removing vCPU: {:?}", e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
warn!("Out of range vCPU id: {}", self.selected_cpu);
|
2019-12-17 11:22:33 +00:00
|
|
|
|
}
|
2019-12-16 16:42:29 +00:00
|
|
|
|
}
|
2019-11-20 14:06:37 +00:00
|
|
|
|
_ => {
|
|
|
|
|
warn!(
|
|
|
|
|
"Unexpected offset for accessing CPU manager device: {:#}",
|
|
|
|
|
offset
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-12-04 09:23:47 +00:00
|
|
|
|
None
|
2019-11-20 14:06:37 +00:00
|
|
|
|
}
|
2019-11-11 14:56:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-16 17:15:25 +00:00
|
|
|
|
#[derive(Default)]
|
2019-11-26 11:32:36 +00:00
|
|
|
|
struct VcpuState {
|
2019-12-16 16:42:29 +00:00
|
|
|
|
inserting: bool,
|
2019-12-17 10:49:05 +00:00
|
|
|
|
removing: bool,
|
2019-11-26 11:32:36 +00:00
|
|
|
|
handle: Option<thread::JoinHandle<()>>,
|
2019-12-17 11:22:33 +00:00
|
|
|
|
kill: Arc<AtomicBool>,
|
2020-05-06 10:34:19 +00:00
|
|
|
|
vcpu_run_interrupted: Arc<AtomicBool>,
|
2019-11-26 11:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
impl VcpuState {
|
|
|
|
|
fn active(&self) -> bool {
|
|
|
|
|
self.handle.is_some()
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn signal_thread(&self) {
|
|
|
|
|
if let Some(handle) = self.handle.as_ref() {
|
2020-05-06 10:34:19 +00:00
|
|
|
|
loop {
|
|
|
|
|
unsafe {
|
|
|
|
|
libc::pthread_kill(handle.as_pthread_t() as _, SIGRTMIN());
|
|
|
|
|
}
|
|
|
|
|
if self.vcpu_run_interrupted.load(Ordering::SeqCst) {
|
|
|
|
|
break;
|
|
|
|
|
} else {
|
|
|
|
|
// This is more effective than thread::yield_now() at
|
|
|
|
|
// avoiding a priority inversion with the vCPU thread
|
|
|
|
|
thread::sleep(std::time::Duration::from_millis(1));
|
|
|
|
|
}
|
2019-11-26 11:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn join_thread(&mut self) -> Result<()> {
|
|
|
|
|
if let Some(handle) = self.handle.take() {
|
2020-01-24 08:34:51 +00:00
|
|
|
|
handle.join().map_err(Error::ThreadCleanup)?
|
2019-11-26 11:32:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn unpark_thread(&self) {
|
|
|
|
|
if let Some(handle) = self.handle.as_ref() {
|
|
|
|
|
handle.thread().unpark()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
impl CpuManager {
|
2020-06-22 19:38:23 +00:00
|
|
|
|
#[allow(unused_variables)]
|
2020-10-30 13:34:16 +00:00
|
|
|
|
#[allow(clippy::too_many_arguments)]
|
2019-11-11 13:55:50 +00:00
|
|
|
|
pub fn new(
|
2020-03-16 17:14:15 +00:00
|
|
|
|
config: &CpusConfig,
|
2020-02-27 09:29:03 +00:00
|
|
|
|
device_manager: &Arc<Mutex<DeviceManager>>,
|
2020-07-08 13:12:27 +00:00
|
|
|
|
memory_manager: &Arc<Mutex<MemoryManager>>,
|
2020-07-03 08:57:35 +00:00
|
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-10-30 13:34:16 +00:00
|
|
|
|
exit_evt: EventFd,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
reset_evt: EventFd,
|
2020-06-02 02:29:54 +00:00
|
|
|
|
hypervisor: Arc<dyn hypervisor::Hypervisor>,
|
2020-09-09 22:15:26 +00:00
|
|
|
|
seccomp_action: SeccompAction,
|
2021-07-29 09:15:10 +00:00
|
|
|
|
vmmops: Arc<dyn VmmOps>,
|
2021-06-01 15:11:49 +00:00
|
|
|
|
#[cfg(feature = "tdx")] tdx_enabled: bool,
|
2021-08-05 10:01:35 +00:00
|
|
|
|
#[cfg(any(target_arch = "aarch64", feature = "acpi"))] numa_nodes: &NumaNodes,
|
2019-11-11 14:56:10 +00:00
|
|
|
|
) -> Result<Arc<Mutex<CpuManager>>> {
|
2020-07-08 13:12:27 +00:00
|
|
|
|
let guest_memory = memory_manager.lock().unwrap().guest_memory();
|
2020-03-16 17:14:15 +00:00
|
|
|
|
let mut vcpu_states = Vec::with_capacity(usize::from(config.max_vcpus));
|
|
|
|
|
vcpu_states.resize_with(usize::from(config.max_vcpus), VcpuState::default);
|
2019-12-16 17:15:25 +00:00
|
|
|
|
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-03-29 06:16:35 +00:00
|
|
|
|
let sgx_epc_sections = memory_manager
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.sgx_epc_region()
|
|
|
|
|
.as_ref()
|
2021-07-09 08:48:32 +00:00
|
|
|
|
.map(|sgx_epc_region| sgx_epc_region.epc_sections().values().cloned().collect());
|
2020-07-08 14:58:10 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-02-09 14:39:50 +00:00
|
|
|
|
let cpuid = {
|
2021-10-01 09:54:27 +00:00
|
|
|
|
let phys_bits = physical_bits(config.max_phys_bits);
|
2021-07-14 21:44:38 +00:00
|
|
|
|
arch::generate_common_cpuid(
|
2021-02-09 14:39:50 +00:00
|
|
|
|
hypervisor,
|
2021-07-14 21:44:38 +00:00
|
|
|
|
config
|
|
|
|
|
.topology
|
|
|
|
|
.clone()
|
|
|
|
|
.map(|t| (t.threads_per_core, t.cores_per_die, t.dies_per_package)),
|
2021-02-09 14:39:50 +00:00
|
|
|
|
sgx_epc_sections,
|
|
|
|
|
phys_bits,
|
|
|
|
|
config.kvm_hyperv,
|
2021-06-01 15:11:49 +00:00
|
|
|
|
#[cfg(feature = "tdx")]
|
|
|
|
|
tdx_enabled,
|
2021-07-14 21:44:38 +00:00
|
|
|
|
)
|
|
|
|
|
.map_err(Error::CommonCpuId)?
|
2021-02-09 14:39:50 +00:00
|
|
|
|
};
|
2020-07-08 14:58:10 +00:00
|
|
|
|
|
|
|
|
|
let device_manager = device_manager.lock().unwrap();
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
let acpi_address = device_manager
|
|
|
|
|
.allocator()
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.allocate_mmio_addresses(None, CPU_MANAGER_ACPI_SIZE as u64, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
|
.ok_or(Error::AllocateMmmioAddress)?;
|
2021-06-17 10:41:30 +00:00
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
let proximity_domain_per_cpu: BTreeMap<u8, u32> = {
|
|
|
|
|
let mut cpu_list = Vec::new();
|
|
|
|
|
for (proximity_domain, numa_node) in numa_nodes.iter() {
|
2021-08-06 23:28:42 +00:00
|
|
|
|
for cpu in numa_node.cpus.iter() {
|
2021-06-17 10:41:30 +00:00
|
|
|
|
cpu_list.push((*cpu, *proximity_domain))
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cpu_list
|
|
|
|
|
}
|
|
|
|
|
.into_iter()
|
|
|
|
|
.collect();
|
|
|
|
|
|
2019-11-11 14:31:11 +00:00
|
|
|
|
let cpu_manager = Arc::new(Mutex::new(CpuManager {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
config: config.clone(),
|
2020-05-25 08:27:08 +00:00
|
|
|
|
interrupt_controller: device_manager.interrupt_controller().clone(),
|
2019-11-11 13:55:50 +00:00
|
|
|
|
vm_memory: guest_memory,
|
2020-05-12 09:49:12 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-11-11 13:55:50 +00:00
|
|
|
|
cpuid,
|
2020-07-03 08:57:35 +00:00
|
|
|
|
vm,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
vcpus_kill_signalled: Arc::new(AtomicBool::new(false)),
|
|
|
|
|
vcpus_pause_signalled: Arc::new(AtomicBool::new(false)),
|
2019-12-16 17:15:25 +00:00
|
|
|
|
vcpu_states,
|
2020-10-30 13:34:16 +00:00
|
|
|
|
exit_evt,
|
2019-11-11 13:55:50 +00:00
|
|
|
|
reset_evt,
|
2019-11-20 14:06:37 +00:00
|
|
|
|
selected_cpu: 0,
|
2020-02-18 15:58:51 +00:00
|
|
|
|
vcpus: Vec::with_capacity(usize::from(config.max_vcpus)),
|
2020-09-09 22:15:26 +00:00
|
|
|
|
seccomp_action,
|
2020-11-18 16:37:52 +00:00
|
|
|
|
vmmops,
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
acpi_address,
|
2021-06-17 10:41:30 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
proximity_domain_per_cpu,
|
2019-11-11 14:31:11 +00:00
|
|
|
|
}));
|
|
|
|
|
|
2021-01-20 16:12:02 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2020-09-03 20:50:56 +00:00
|
|
|
|
device_manager
|
2021-01-20 16:12:02 +00:00
|
|
|
|
.mmio_bus()
|
|
|
|
|
.insert(
|
|
|
|
|
cpu_manager.clone(),
|
|
|
|
|
acpi_address.0,
|
|
|
|
|
CPU_MANAGER_ACPI_SIZE as u64,
|
|
|
|
|
)
|
2019-11-11 14:56:10 +00:00
|
|
|
|
.map_err(Error::BusError)?;
|
|
|
|
|
|
|
|
|
|
Ok(cpu_manager)
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-05-26 07:20:22 +00:00
|
|
|
|
fn create_vcpu(
|
2020-04-03 12:27:41 +00:00
|
|
|
|
&mut self,
|
|
|
|
|
cpu_id: u8,
|
|
|
|
|
entry_point: Option<EntryPoint>,
|
2020-02-18 15:44:41 +00:00
|
|
|
|
snapshot: Option<Snapshot>,
|
2020-05-26 07:20:22 +00:00
|
|
|
|
) -> Result<Arc<Mutex<Vcpu>>> {
|
2020-06-23 12:11:00 +00:00
|
|
|
|
info!("Creating vCPU: cpu_id = {}", cpu_id);
|
|
|
|
|
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = Vcpu::new(cpu_id, &self.vm, Some(self.vmmops.clone()))?;
|
2020-04-03 12:27:41 +00:00
|
|
|
|
|
2020-02-18 15:44:41 +00:00
|
|
|
|
if let Some(snapshot) = snapshot {
|
2020-09-04 10:56:30 +00:00
|
|
|
|
// AArch64 vCPUs should be initialized after created.
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
vcpu.lock().unwrap().init(&self.vm)?;
|
|
|
|
|
|
2020-02-18 15:44:41 +00:00
|
|
|
|
vcpu.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.restore(snapshot)
|
|
|
|
|
.expect("Failed to restore vCPU");
|
|
|
|
|
} else {
|
|
|
|
|
let vm_memory = self.vm_memory.clone();
|
|
|
|
|
|
2020-05-26 07:20:22 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-02-18 15:44:41 +00:00
|
|
|
|
vcpu.lock()
|
|
|
|
|
.unwrap()
|
2020-09-15 15:26:34 +00:00
|
|
|
|
.configure(
|
|
|
|
|
entry_point,
|
|
|
|
|
&vm_memory,
|
|
|
|
|
self.cpuid.clone(),
|
|
|
|
|
self.config.kvm_hyperv,
|
|
|
|
|
)
|
2020-02-18 15:44:41 +00:00
|
|
|
|
.expect("Failed to configure vCPU");
|
2020-05-26 07:20:22 +00:00
|
|
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
vcpu.lock()
|
|
|
|
|
.unwrap()
|
2021-02-09 14:39:50 +00:00
|
|
|
|
.configure(&self.vm, entry_point, &vm_memory)
|
2020-05-26 07:20:22 +00:00
|
|
|
|
.expect("Failed to configure vCPU");
|
2020-02-18 15:44:41 +00:00
|
|
|
|
}
|
2020-04-03 12:27:41 +00:00
|
|
|
|
|
2020-06-24 08:18:46 +00:00
|
|
|
|
// Adding vCPU to the CpuManager's vCPU list.
|
|
|
|
|
self.vcpus.push(Arc::clone(&vcpu));
|
2020-05-26 07:20:22 +00:00
|
|
|
|
|
2020-06-24 08:18:46 +00:00
|
|
|
|
Ok(vcpu)
|
2020-05-26 07:20:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-23 11:52:17 +00:00
|
|
|
|
/// Only create new vCPUs if there aren't any inactive ones to reuse
|
2020-05-26 07:20:22 +00:00
|
|
|
|
fn create_vcpus(&mut self, desired_vcpus: u8, entry_point: Option<EntryPoint>) -> Result<()> {
|
2020-06-23 12:11:00 +00:00
|
|
|
|
info!(
|
|
|
|
|
"Request to create new vCPUs: desired = {}, max = {}, allocated = {}, present = {}",
|
|
|
|
|
desired_vcpus,
|
|
|
|
|
self.config.max_vcpus,
|
|
|
|
|
self.vcpus.len(),
|
|
|
|
|
self.present_vcpus()
|
|
|
|
|
);
|
|
|
|
|
|
2020-06-16 10:52:07 +00:00
|
|
|
|
if desired_vcpus > self.config.max_vcpus {
|
2021-03-25 17:01:21 +00:00
|
|
|
|
return Err(Error::DesiredVCpuCountExceedsMax);
|
2020-05-26 07:20:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-23 11:52:17 +00:00
|
|
|
|
// Only create vCPUs in excess of all the allocated vCPUs.
|
|
|
|
|
for cpu_id in self.vcpus.len() as u8..desired_vcpus {
|
2020-06-24 08:18:46 +00:00
|
|
|
|
self.create_vcpu(cpu_id, entry_point, None)?;
|
2020-05-26 07:20:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn start_vcpu(
|
|
|
|
|
&mut self,
|
|
|
|
|
vcpu: Arc<Mutex<Vcpu>>,
|
|
|
|
|
vcpu_thread_barrier: Arc<Barrier>,
|
|
|
|
|
inserting: bool,
|
|
|
|
|
) -> Result<()> {
|
|
|
|
|
let cpu_id = vcpu.lock().unwrap().id;
|
|
|
|
|
let reset_evt = self.reset_evt.try_clone().unwrap();
|
2020-10-30 13:34:16 +00:00
|
|
|
|
let exit_evt = self.exit_evt.try_clone().unwrap();
|
2021-08-12 14:39:43 +00:00
|
|
|
|
let panic_exit_evt = self.exit_evt.try_clone().unwrap();
|
2020-05-26 07:20:22 +00:00
|
|
|
|
let vcpu_kill_signalled = self.vcpus_kill_signalled.clone();
|
|
|
|
|
let vcpu_pause_signalled = self.vcpus_pause_signalled.clone();
|
|
|
|
|
|
|
|
|
|
let vcpu_kill = self.vcpu_states[usize::from(cpu_id)].kill.clone();
|
|
|
|
|
let vcpu_run_interrupted = self.vcpu_states[usize::from(cpu_id)]
|
|
|
|
|
.vcpu_run_interrupted
|
|
|
|
|
.clone();
|
2021-08-12 14:39:43 +00:00
|
|
|
|
let panic_vcpu_run_interrupted = vcpu_run_interrupted.clone();
|
2020-04-03 12:27:41 +00:00
|
|
|
|
|
2020-06-23 12:11:00 +00:00
|
|
|
|
info!("Starting vCPU: cpu_id = {}", cpu_id);
|
|
|
|
|
|
2020-09-09 22:15:26 +00:00
|
|
|
|
// Retrieve seccomp filter for vcpu thread
|
|
|
|
|
let vcpu_seccomp_filter = get_seccomp_filter(&self.seccomp_action, Thread::Vcpu)
|
|
|
|
|
.map_err(Error::CreateSeccompFilter)?;
|
|
|
|
|
|
2020-10-30 13:01:53 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-03-29 06:16:35 +00:00
|
|
|
|
let interrupt_controller_clone = self.interrupt_controller.as_ref().cloned();
|
2020-10-30 13:01:53 +00:00
|
|
|
|
|
2020-04-03 12:27:41 +00:00
|
|
|
|
let handle = Some(
|
|
|
|
|
thread::Builder::new()
|
|
|
|
|
.name(format!("vcpu{}", cpu_id))
|
|
|
|
|
.spawn(move || {
|
2020-09-09 22:15:26 +00:00
|
|
|
|
// Apply seccomp filter for vcpu thread.
|
2021-08-17 00:20:11 +00:00
|
|
|
|
if !vcpu_seccomp_filter.is_empty() {
|
|
|
|
|
if let Err(e) =
|
|
|
|
|
apply_filter(&vcpu_seccomp_filter).map_err(Error::ApplySeccompFilter)
|
|
|
|
|
{
|
|
|
|
|
error!("Error applying seccomp filter: {:?}", e);
|
|
|
|
|
return;
|
|
|
|
|
}
|
2020-09-09 22:15:26 +00:00
|
|
|
|
}
|
2020-04-03 12:27:41 +00:00
|
|
|
|
extern "C" fn handle_signal(_: i32, _: *mut siginfo_t, _: *mut c_void) {}
|
|
|
|
|
// This uses an async signal safe handler to kill the vcpu handles.
|
|
|
|
|
register_signal_handler(SIGRTMIN(), handle_signal)
|
|
|
|
|
.expect("Failed to register vcpu signal handler");
|
|
|
|
|
// Block until all CPUs are ready.
|
|
|
|
|
vcpu_thread_barrier.wait();
|
|
|
|
|
|
2021-08-12 14:39:43 +00:00
|
|
|
|
std::panic::catch_unwind(move || {
|
|
|
|
|
loop {
|
|
|
|
|
// If we are being told to pause, we park the thread
|
|
|
|
|
// until the pause boolean is toggled.
|
|
|
|
|
// The resume operation is responsible for toggling
|
|
|
|
|
// the boolean and unpark the thread.
|
|
|
|
|
// We enter a loop because park() could spuriously
|
|
|
|
|
// return. We will then park() again unless the
|
|
|
|
|
// pause boolean has been toggled.
|
|
|
|
|
|
|
|
|
|
// Need to use Ordering::SeqCst as we have multiple
|
|
|
|
|
// loads and stores to different atomics and we need
|
|
|
|
|
// to see them in a consistent order in all threads
|
|
|
|
|
|
|
|
|
|
if vcpu_pause_signalled.load(Ordering::SeqCst) {
|
|
|
|
|
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
|
|
|
|
while vcpu_pause_signalled.load(Ordering::SeqCst) {
|
|
|
|
|
thread::park();
|
|
|
|
|
}
|
|
|
|
|
vcpu_run_interrupted.store(false, Ordering::SeqCst);
|
2020-05-06 10:34:19 +00:00
|
|
|
|
}
|
2020-05-06 08:59:46 +00:00
|
|
|
|
|
2021-08-12 14:39:43 +00:00
|
|
|
|
// We've been told to terminate
|
|
|
|
|
if vcpu_kill_signalled.load(Ordering::SeqCst)
|
|
|
|
|
|| vcpu_kill.load(Ordering::SeqCst)
|
|
|
|
|
{
|
|
|
|
|
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2020-06-22 13:13:45 +00:00
|
|
|
|
|
2021-08-12 14:39:43 +00:00
|
|
|
|
// vcpu.run() returns false on a triple-fault so trigger a reset
|
|
|
|
|
match vcpu.lock().unwrap().run() {
|
|
|
|
|
Ok(run) => match run {
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
|
VmExit::IoapicEoi(vector) => {
|
|
|
|
|
if let Some(interrupt_controller) =
|
|
|
|
|
&interrupt_controller_clone
|
|
|
|
|
{
|
|
|
|
|
interrupt_controller
|
|
|
|
|
.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.end_of_interrupt(vector);
|
|
|
|
|
}
|
2020-10-30 13:01:53 +00:00
|
|
|
|
}
|
2021-08-12 14:39:43 +00:00
|
|
|
|
VmExit::Ignore => {}
|
|
|
|
|
VmExit::Hyperv => {}
|
|
|
|
|
VmExit::Reset => {
|
2021-09-03 09:27:21 +00:00
|
|
|
|
info!("VmExit::Reset");
|
2021-08-12 14:39:43 +00:00
|
|
|
|
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
|
|
|
|
reset_evt.write(1).unwrap();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
VmExit::Shutdown => {
|
2021-09-03 09:27:21 +00:00
|
|
|
|
info!("VmExit::Shutdown");
|
2021-08-12 14:39:43 +00:00
|
|
|
|
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
|
|
|
|
exit_evt.write(1).unwrap();
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_ => {
|
|
|
|
|
error!(
|
|
|
|
|
"VCPU generated error: {:?}",
|
|
|
|
|
Error::UnexpectedVmExit
|
|
|
|
|
);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
Err(e) => {
|
|
|
|
|
error!("VCPU generated error: {:?}", Error::VcpuRun(e.into()));
|
2020-10-30 13:01:53 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
2021-08-12 14:39:43 +00:00
|
|
|
|
}
|
2020-10-30 13:01:53 +00:00
|
|
|
|
|
2021-08-12 14:39:43 +00:00
|
|
|
|
// We've been told to terminate
|
|
|
|
|
if vcpu_kill_signalled.load(Ordering::SeqCst)
|
|
|
|
|
|| vcpu_kill.load(Ordering::SeqCst)
|
|
|
|
|
{
|
|
|
|
|
vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
2020-06-22 13:13:45 +00:00
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-08-12 14:39:43 +00:00
|
|
|
|
})
|
|
|
|
|
.or_else(|_| {
|
|
|
|
|
panic_vcpu_run_interrupted.store(true, Ordering::SeqCst);
|
|
|
|
|
error!("vCPU thread panicked");
|
|
|
|
|
panic_exit_evt.write(1)
|
|
|
|
|
})
|
|
|
|
|
.ok();
|
2020-04-03 12:27:41 +00:00
|
|
|
|
})
|
|
|
|
|
.map_err(Error::VcpuSpawn)?,
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// On hot plug calls into this function entry_point is None. It is for
|
|
|
|
|
// those hotplug CPU additions that we need to set the inserting flag.
|
|
|
|
|
self.vcpu_states[usize::from(cpu_id)].handle = handle;
|
|
|
|
|
self.vcpu_states[usize::from(cpu_id)].inserting = inserting;
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-23 11:52:17 +00:00
|
|
|
|
/// Start up as many vCPUs threads as needed to reach `desired_vcpus`
|
2020-05-26 07:20:22 +00:00
|
|
|
|
fn activate_vcpus(&mut self, desired_vcpus: u8, inserting: bool) -> Result<()> {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
if desired_vcpus > self.config.max_vcpus {
|
2021-03-25 17:01:21 +00:00
|
|
|
|
return Err(Error::DesiredVCpuCountExceedsMax);
|
2019-11-26 13:06:24 +00:00
|
|
|
|
}
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
2019-11-26 13:06:24 +00:00
|
|
|
|
let vcpu_thread_barrier = Arc::new(Barrier::new(
|
|
|
|
|
(desired_vcpus - self.present_vcpus() + 1) as usize,
|
|
|
|
|
));
|
2019-11-11 13:55:50 +00:00
|
|
|
|
|
2020-06-23 12:11:00 +00:00
|
|
|
|
info!(
|
|
|
|
|
"Starting vCPUs: desired = {}, allocated = {}, present = {}",
|
|
|
|
|
desired_vcpus,
|
|
|
|
|
self.vcpus.len(),
|
|
|
|
|
self.present_vcpus()
|
|
|
|
|
);
|
|
|
|
|
|
2020-06-23 11:52:17 +00:00
|
|
|
|
// This reuses any inactive vCPUs as well as any that were newly created
|
2019-11-26 13:06:24 +00:00
|
|
|
|
for cpu_id in self.present_vcpus()..desired_vcpus {
|
2020-05-26 07:20:22 +00:00
|
|
|
|
let vcpu = Arc::clone(&self.vcpus[cpu_id as usize]);
|
|
|
|
|
self.start_vcpu(vcpu, vcpu_thread_barrier.clone(), inserting)?;
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Unblock all CPU threads.
|
|
|
|
|
vcpu_thread_barrier.wait();
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-11 16:00:53 +00:00
|
|
|
|
fn mark_vcpus_for_removal(&mut self, desired_vcpus: u8) {
|
2019-12-17 10:49:05 +00:00
|
|
|
|
// Mark vCPUs for removal, actual removal happens on ejection
|
|
|
|
|
for cpu_id in desired_vcpus..self.present_vcpus() {
|
|
|
|
|
self.vcpu_states[usize::from(cpu_id)].removing = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-17 11:22:33 +00:00
|
|
|
|
fn remove_vcpu(&mut self, cpu_id: u8) -> Result<()> {
|
2020-06-23 12:11:00 +00:00
|
|
|
|
info!("Removing vCPU: cpu_id = {}", cpu_id);
|
2019-12-17 11:22:33 +00:00
|
|
|
|
let mut state = &mut self.vcpu_states[usize::from(cpu_id)];
|
|
|
|
|
state.kill.store(true, Ordering::SeqCst);
|
|
|
|
|
state.signal_thread();
|
|
|
|
|
state.join_thread()?;
|
|
|
|
|
state.handle = None;
|
2020-06-23 12:12:44 +00:00
|
|
|
|
|
|
|
|
|
// Once the thread has exited, clear the "kill" so that it can reused
|
|
|
|
|
state.kill.store(false, Ordering::SeqCst);
|
|
|
|
|
|
2019-12-17 11:22:33 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2021-02-08 16:06:27 +00:00
|
|
|
|
pub fn create_boot_vcpus(&mut self, entry_point: Option<EntryPoint>) -> Result<()> {
|
|
|
|
|
self.create_vcpus(self.boot_vcpus(), entry_point)
|
2020-05-26 07:20:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-26 13:06:24 +00:00
|
|
|
|
// Starts all the vCPUs that the VM is booting with. Blocks until all vCPUs are running.
|
2020-05-26 07:20:22 +00:00
|
|
|
|
pub fn start_boot_vcpus(&mut self) -> Result<()> {
|
|
|
|
|
self.activate_vcpus(self.boot_vcpus(), false)
|
2019-11-26 15:56:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-04 10:56:30 +00:00
|
|
|
|
pub fn start_restored_vcpus(&mut self) -> Result<()> {
|
|
|
|
|
let vcpu_numbers = self.vcpus.len();
|
|
|
|
|
let vcpu_thread_barrier = Arc::new(Barrier::new((vcpu_numbers + 1) as usize));
|
|
|
|
|
// Restore the vCPUs in "paused" state.
|
|
|
|
|
self.vcpus_pause_signalled.store(true, Ordering::SeqCst);
|
|
|
|
|
|
|
|
|
|
for vcpu_index in 0..vcpu_numbers {
|
|
|
|
|
let vcpu = Arc::clone(&self.vcpus[vcpu_index as usize]);
|
|
|
|
|
|
|
|
|
|
self.start_vcpu(vcpu, vcpu_thread_barrier.clone(), false)
|
|
|
|
|
.map_err(|e| {
|
|
|
|
|
Error::StartRestoreVcpu(anyhow!("Failed to start restored vCPUs: {:#?}", e))
|
|
|
|
|
})?;
|
|
|
|
|
}
|
|
|
|
|
// Unblock all restored CPU threads.
|
|
|
|
|
vcpu_thread_barrier.wait();
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-17 16:48:46 +00:00
|
|
|
|
pub fn resize(&mut self, desired_vcpus: u8) -> Result<bool> {
|
2019-12-19 17:08:38 +00:00
|
|
|
|
match desired_vcpus.cmp(&self.present_vcpus()) {
|
2020-05-26 07:20:22 +00:00
|
|
|
|
cmp::Ordering::Greater => {
|
|
|
|
|
self.create_vcpus(desired_vcpus, None)?;
|
|
|
|
|
self.activate_vcpus(desired_vcpus, true)?;
|
|
|
|
|
Ok(true)
|
|
|
|
|
}
|
2021-02-11 16:00:53 +00:00
|
|
|
|
cmp::Ordering::Less => {
|
|
|
|
|
self.mark_vcpus_for_removal(desired_vcpus);
|
|
|
|
|
Ok(true)
|
|
|
|
|
}
|
2020-01-17 16:48:46 +00:00
|
|
|
|
_ => Ok(false),
|
2019-12-17 10:49:05 +00:00
|
|
|
|
}
|
2019-11-26 13:06:24 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
pub fn shutdown(&mut self) -> Result<()> {
|
|
|
|
|
// Tell the vCPUs to stop themselves next time they go through the loop
|
|
|
|
|
self.vcpus_kill_signalled.store(true, Ordering::SeqCst);
|
|
|
|
|
|
2020-06-24 10:25:06 +00:00
|
|
|
|
// Toggle the vCPUs pause boolean
|
|
|
|
|
self.vcpus_pause_signalled.store(false, Ordering::SeqCst);
|
|
|
|
|
|
|
|
|
|
// Unpark all the VCPU threads.
|
|
|
|
|
for state in self.vcpu_states.iter() {
|
|
|
|
|
state.unpark_thread();
|
|
|
|
|
}
|
2020-05-06 09:24:19 +00:00
|
|
|
|
|
2019-11-11 13:55:50 +00:00
|
|
|
|
// Signal to the spawned threads (vCPUs and console signal handler). For the vCPU threads
|
|
|
|
|
// this will interrupt the KVM_RUN ioctl() allowing the loop to check the boolean set
|
|
|
|
|
// above.
|
2019-11-26 11:32:36 +00:00
|
|
|
|
for state in self.vcpu_states.iter() {
|
|
|
|
|
state.signal_thread();
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-26 11:32:36 +00:00
|
|
|
|
// Wait for all the threads to finish. This removes the state from the vector.
|
|
|
|
|
for mut state in self.vcpu_states.drain(..) {
|
|
|
|
|
state.join_thread()?;
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2021-03-03 12:10:10 +00:00
|
|
|
|
#[cfg(feature = "tdx")]
|
|
|
|
|
pub fn initialize_tdx(&self, hob_address: u64) -> Result<()> {
|
|
|
|
|
for vcpu in &self.vcpus {
|
|
|
|
|
vcpu.lock()
|
|
|
|
|
.unwrap()
|
|
|
|
|
.vcpu
|
|
|
|
|
.tdx_init(hob_address)
|
|
|
|
|
.map_err(Error::InitializeTdx)?;
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-25 13:55:10 +00:00
|
|
|
|
pub fn boot_vcpus(&self) -> u8 {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
self.config.boot_vcpus
|
2019-11-25 13:55:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pub fn max_vcpus(&self) -> u8 {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
self.config.max_vcpus
|
2019-11-25 13:55:10 +00:00
|
|
|
|
}
|
2019-11-26 11:32:36 +00:00
|
|
|
|
|
2021-03-03 12:08:42 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
|
pub fn common_cpuid(&self) -> CpuId {
|
|
|
|
|
self.cpuid.clone()
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-26 11:32:36 +00:00
|
|
|
|
fn present_vcpus(&self) -> u8 {
|
2019-12-16 17:15:25 +00:00
|
|
|
|
self.vcpu_states
|
|
|
|
|
.iter()
|
|
|
|
|
.fold(0, |acc, state| acc + state.active() as u8)
|
2019-11-26 11:32:36 +00:00
|
|
|
|
}
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2020-06-09 07:24:23 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
2020-06-09 10:28:02 +00:00
|
|
|
|
pub fn get_mpidrs(&self) -> Vec<u64> {
|
2020-08-23 07:45:44 +00:00
|
|
|
|
self.vcpus
|
2020-06-09 07:24:23 +00:00
|
|
|
|
.iter()
|
|
|
|
|
.map(|cpu| cpu.lock().unwrap().get_mpidr())
|
2020-08-23 07:45:44 +00:00
|
|
|
|
.collect()
|
2020-06-09 07:24:23 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-09-04 15:37:52 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
pub fn get_saved_states(&self) -> Vec<CpuState> {
|
|
|
|
|
self.vcpus
|
|
|
|
|
.iter()
|
|
|
|
|
.map(|cpu| cpu.lock().unwrap().get_saved_state().unwrap())
|
|
|
|
|
.collect()
|
|
|
|
|
}
|
|
|
|
|
|
2021-07-29 07:44:50 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
pub fn get_vcpu_topology(&self) -> Option<(u8, u8, u8)> {
|
|
|
|
|
self.config
|
|
|
|
|
.topology
|
|
|
|
|
.clone()
|
|
|
|
|
.map(|t| (t.threads_per_core, t.cores_per_die, t.packages))
|
|
|
|
|
}
|
|
|
|
|
|
2019-12-06 15:25:57 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 15:57:27 +00:00
|
|
|
|
pub fn create_madt(&self) -> Sdt {
|
2021-01-31 02:16:17 +00:00
|
|
|
|
use crate::acpi;
|
2019-12-06 15:25:57 +00:00
|
|
|
|
// This is also checked in the commandline parsing.
|
2020-06-16 10:52:07 +00:00
|
|
|
|
assert!(self.config.boot_vcpus <= self.config.max_vcpus);
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2021-03-25 15:57:27 +00:00
|
|
|
|
let mut madt = Sdt::new(*b"APIC", 44, 5, *b"CLOUDH", *b"CHMADT ", 1);
|
2021-01-25 10:48:45 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
|
{
|
|
|
|
|
madt.write(36, arch::layout::APIC_START);
|
|
|
|
|
|
|
|
|
|
for cpu in 0..self.config.max_vcpus {
|
2021-03-25 17:01:21 +00:00
|
|
|
|
let lapic = LocalApic {
|
2021-01-31 02:16:17 +00:00
|
|
|
|
r#type: acpi::ACPI_APIC_PROCESSOR,
|
2021-01-25 10:48:45 +00:00
|
|
|
|
length: 8,
|
|
|
|
|
processor_id: cpu,
|
|
|
|
|
apic_id: cpu,
|
|
|
|
|
flags: if cpu < self.config.boot_vcpus {
|
|
|
|
|
1 << MADT_CPU_ENABLE_FLAG
|
|
|
|
|
} else {
|
|
|
|
|
0
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
madt.append(lapic);
|
|
|
|
|
}
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
|
madt.append(Ioapic {
|
2021-01-31 02:16:17 +00:00
|
|
|
|
r#type: acpi::ACPI_APIC_IO,
|
2021-01-25 10:48:45 +00:00
|
|
|
|
length: 12,
|
|
|
|
|
ioapic_id: 0,
|
|
|
|
|
apic_address: arch::layout::IOAPIC_START.0 as u32,
|
|
|
|
|
gsi_base: 0,
|
|
|
|
|
..Default::default()
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
madt.append(InterruptSourceOverride {
|
2021-01-31 02:16:17 +00:00
|
|
|
|
r#type: acpi::ACPI_APIC_XRUPT_OVERRIDE,
|
2021-01-25 10:48:45 +00:00
|
|
|
|
length: 10,
|
|
|
|
|
bus: 0,
|
|
|
|
|
source: 4,
|
|
|
|
|
gsi: 4,
|
|
|
|
|
flags: 0,
|
|
|
|
|
});
|
|
|
|
|
}
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
{
|
2021-01-31 02:16:17 +00:00
|
|
|
|
/* Notes:
|
|
|
|
|
* Ignore Local Interrupt Controller Address at byte offset 36 of MADT table.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// See section 5.2.12.14 GIC CPU Interface (GICC) Structure in ACPI spec.
|
|
|
|
|
for cpu in 0..self.config.boot_vcpus {
|
|
|
|
|
let vcpu = &self.vcpus[cpu as usize];
|
|
|
|
|
let mpidr = vcpu.lock().unwrap().get_mpidr();
|
|
|
|
|
/* ARMv8 MPIDR format:
|
|
|
|
|
Bits [63:40] Must be zero
|
|
|
|
|
Bits [39:32] Aff3 : Match Aff3 of target processor MPIDR
|
|
|
|
|
Bits [31:24] Must be zero
|
|
|
|
|
Bits [23:16] Aff2 : Match Aff2 of target processor MPIDR
|
|
|
|
|
Bits [15:8] Aff1 : Match Aff1 of target processor MPIDR
|
|
|
|
|
Bits [7:0] Aff0 : Match Aff0 of target processor MPIDR
|
|
|
|
|
*/
|
|
|
|
|
let mpidr_mask = 0xff_00ff_ffff;
|
|
|
|
|
let gicc = GicC {
|
|
|
|
|
r#type: acpi::ACPI_APIC_GENERIC_CPU_INTERFACE,
|
|
|
|
|
length: 80,
|
|
|
|
|
reserved0: 0,
|
|
|
|
|
cpu_interface_number: cpu as u32,
|
|
|
|
|
uid: cpu as u32,
|
|
|
|
|
flags: 1,
|
|
|
|
|
parking_version: 0,
|
|
|
|
|
performance_interrupt: 0,
|
|
|
|
|
parked_address: 0,
|
|
|
|
|
base_address: 0,
|
|
|
|
|
gicv_base_address: 0,
|
|
|
|
|
gich_base_address: 0,
|
|
|
|
|
vgic_interrupt: 0,
|
|
|
|
|
gicr_base_address: 0,
|
|
|
|
|
mpidr: mpidr & mpidr_mask,
|
|
|
|
|
proc_power_effi_class: 0,
|
|
|
|
|
reserved1: 0,
|
|
|
|
|
spe_overflow_interrupt: 0,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
madt.append(gicc);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GIC Distributor structure. See section 5.2.12.15 in ACPI spec.
|
|
|
|
|
let gicd = GicD {
|
|
|
|
|
r#type: acpi::ACPI_APIC_GENERIC_DISTRIBUTOR,
|
|
|
|
|
length: 24,
|
|
|
|
|
reserved0: 0,
|
|
|
|
|
gic_id: 0,
|
|
|
|
|
base_address: arch::layout::MAPPED_IO_START - 0x0001_0000,
|
|
|
|
|
global_irq_base: 0,
|
|
|
|
|
version: 3,
|
|
|
|
|
reserved1: [0; 3],
|
|
|
|
|
};
|
|
|
|
|
madt.append(gicd);
|
|
|
|
|
|
|
|
|
|
// See 5.2.12.17 GIC Redistributor (GICR) Structure in ACPI spec.
|
|
|
|
|
let gicr_size: u32 = 0x0001_0000 * 2 * (self.config.boot_vcpus as u32);
|
|
|
|
|
let gicr_base: u64 = arch::layout::MAPPED_IO_START - 0x0001_0000 - gicr_size as u64;
|
|
|
|
|
let gicr = GicR {
|
|
|
|
|
r#type: acpi::ACPI_APIC_GENERIC_REDISTRIBUTOR,
|
|
|
|
|
length: 16,
|
|
|
|
|
reserved: 0,
|
|
|
|
|
base_address: gicr_base,
|
|
|
|
|
range_length: gicr_size,
|
|
|
|
|
};
|
|
|
|
|
madt.append(gicr);
|
|
|
|
|
|
|
|
|
|
// See 5.2.12.18 GIC Interrupt Translation Service (ITS) Structure in ACPI spec.
|
|
|
|
|
let gicits = GicIts {
|
|
|
|
|
r#type: acpi::ACPI_APIC_GENERIC_TRANSLATOR,
|
|
|
|
|
length: 20,
|
|
|
|
|
reserved0: 0,
|
|
|
|
|
translation_id: 0,
|
|
|
|
|
base_address: gicr_base - 2 * 0x0001_0000,
|
|
|
|
|
reserved1: 0,
|
|
|
|
|
};
|
|
|
|
|
madt.append(gicits);
|
|
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
|
madt.update_checksum();
|
|
|
|
|
}
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
|
|
|
|
madt
|
|
|
|
|
}
|
2021-07-30 06:50:54 +00:00
|
|
|
|
|
|
|
|
|
#[cfg(all(target_arch = "aarch64", feature = "acpi"))]
|
|
|
|
|
pub fn create_pptt(&self) -> Sdt {
|
|
|
|
|
let pptt_start = 0;
|
|
|
|
|
let mut cpus = 0;
|
|
|
|
|
let mut uid = 0;
|
|
|
|
|
let threads_per_core = self.get_vcpu_topology().unwrap_or_default().0 as u8;
|
|
|
|
|
let cores_per_package = self.get_vcpu_topology().unwrap_or_default().1 as u8;
|
|
|
|
|
let packages = self.get_vcpu_topology().unwrap_or_default().2 as u8;
|
|
|
|
|
|
|
|
|
|
let mut pptt = Sdt::new(*b"PPTT", 36, 2, *b"CLOUDH", *b"CHPPTT ", 1);
|
|
|
|
|
|
|
|
|
|
for cluster_idx in 0..packages {
|
|
|
|
|
if cpus < self.config.boot_vcpus as usize {
|
|
|
|
|
let cluster_offset = pptt.len() - pptt_start;
|
|
|
|
|
let cluster_hierarchy_node = ProcessorHierarchyNode {
|
|
|
|
|
r#type: 0,
|
|
|
|
|
length: 20,
|
|
|
|
|
reserved: 0,
|
|
|
|
|
flags: 0x2,
|
|
|
|
|
parent: 0,
|
|
|
|
|
acpi_processor_id: cluster_idx as u32,
|
|
|
|
|
num_private_resources: 0,
|
|
|
|
|
};
|
|
|
|
|
pptt.append(cluster_hierarchy_node);
|
|
|
|
|
|
|
|
|
|
for core_idx in 0..cores_per_package {
|
|
|
|
|
let core_offset = pptt.len() - pptt_start;
|
|
|
|
|
|
|
|
|
|
if threads_per_core > 1 {
|
|
|
|
|
let core_hierarchy_node = ProcessorHierarchyNode {
|
|
|
|
|
r#type: 0,
|
|
|
|
|
length: 20,
|
|
|
|
|
reserved: 0,
|
|
|
|
|
flags: 0x2,
|
|
|
|
|
parent: cluster_offset as u32,
|
|
|
|
|
acpi_processor_id: core_idx as u32,
|
|
|
|
|
num_private_resources: 0,
|
|
|
|
|
};
|
|
|
|
|
pptt.append(core_hierarchy_node);
|
|
|
|
|
|
|
|
|
|
for _thread_idx in 0..threads_per_core {
|
|
|
|
|
let thread_hierarchy_node = ProcessorHierarchyNode {
|
|
|
|
|
r#type: 0,
|
|
|
|
|
length: 20,
|
|
|
|
|
reserved: 0,
|
|
|
|
|
flags: 0xE,
|
|
|
|
|
parent: core_offset as u32,
|
|
|
|
|
acpi_processor_id: uid as u32,
|
|
|
|
|
num_private_resources: 0,
|
|
|
|
|
};
|
|
|
|
|
pptt.append(thread_hierarchy_node);
|
|
|
|
|
uid += 1;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
let thread_hierarchy_node = ProcessorHierarchyNode {
|
|
|
|
|
r#type: 0,
|
|
|
|
|
length: 20,
|
|
|
|
|
reserved: 0,
|
|
|
|
|
flags: 0xA,
|
|
|
|
|
parent: cluster_offset as u32,
|
|
|
|
|
acpi_processor_id: uid as u32,
|
|
|
|
|
num_private_resources: 0,
|
|
|
|
|
};
|
|
|
|
|
pptt.append(thread_hierarchy_node);
|
|
|
|
|
uid += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
cpus += (cores_per_package * threads_per_core) as usize;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
pptt.update_checksum();
|
|
|
|
|
pptt
|
|
|
|
|
}
|
2019-12-06 15:25:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 08:32:50 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
struct Cpu {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
cpu_id: u8,
|
2021-06-17 10:41:30 +00:00
|
|
|
|
proximity_domain: u32,
|
2019-12-06 15:25:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(all(target_arch = "x86_64", feature = "acpi"))]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
const MADT_CPU_ENABLE_FLAG: usize = 0;
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-02-19 06:29:45 +00:00
|
|
|
|
impl Cpu {
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
|
fn generate_mat(&self) -> Vec<u8> {
|
2021-03-25 17:01:21 +00:00
|
|
|
|
let lapic = LocalApic {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
r#type: 0,
|
|
|
|
|
length: 8,
|
|
|
|
|
processor_id: self.cpu_id,
|
|
|
|
|
apic_id: self.cpu_id,
|
|
|
|
|
flags: 1 << MADT_CPU_ENABLE_FLAG,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
let mut mat_data: Vec<u8> = Vec::new();
|
|
|
|
|
mat_data.resize(std::mem::size_of_val(&lapic), 0);
|
2021-03-25 17:01:21 +00:00
|
|
|
|
unsafe { *(mat_data.as_mut_ptr() as *mut LocalApic) = lapic };
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2021-02-19 06:29:45 +00:00
|
|
|
|
mat_data
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
impl Aml for Cpu {
|
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
|
let mat_data: Vec<u8> = self.generate_mat();
|
|
|
|
|
|
2019-12-06 15:25:57 +00:00
|
|
|
|
aml::Device::new(
|
|
|
|
|
format!("C{:03}", self.cpu_id).as_str().into(),
|
|
|
|
|
vec![
|
|
|
|
|
&aml::Name::new("_HID".into(), &"ACPI0007"),
|
|
|
|
|
&aml::Name::new("_UID".into(), &self.cpu_id),
|
2021-02-19 06:29:45 +00:00
|
|
|
|
// Currently, AArch64 cannot support following fields.
|
2019-12-06 15:25:57 +00:00
|
|
|
|
/*
|
|
|
|
|
_STA return value:
|
|
|
|
|
Bit [0] – Set if the device is present.
|
|
|
|
|
Bit [1] – Set if the device is enabled and decoding its resources.
|
|
|
|
|
Bit [2] – Set if the device should be shown in the UI.
|
|
|
|
|
Bit [3] – Set if the device is functioning properly (cleared if device failed its diagnostics).
|
|
|
|
|
Bit [4] – Set if the battery is present.
|
|
|
|
|
Bits [31:5] – Reserved (must be cleared).
|
|
|
|
|
*/
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"_STA".into(),
|
|
|
|
|
0,
|
|
|
|
|
false,
|
|
|
|
|
// Call into CSTA method which will interrogate device
|
|
|
|
|
vec![&aml::Return::new(&aml::MethodCall::new(
|
|
|
|
|
"CSTA".into(),
|
|
|
|
|
vec![&self.cpu_id],
|
|
|
|
|
))],
|
|
|
|
|
),
|
2021-06-17 10:41:30 +00:00
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"_PXM".into(),
|
|
|
|
|
0,
|
|
|
|
|
false,
|
|
|
|
|
vec![&aml::Return::new(&self.proximity_domain)],
|
|
|
|
|
),
|
2019-12-06 15:25:57 +00:00
|
|
|
|
// The Linux kernel expects every CPU device to have a _MAT entry
|
|
|
|
|
// containing the LAPIC for this processor with the enabled bit set
|
|
|
|
|
// even it if is disabled in the MADT (non-boot CPU)
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
&aml::Name::new("_MAT".into(), &aml::Buffer::new(mat_data)),
|
2019-12-17 11:22:33 +00:00
|
|
|
|
// Trigger CPU ejection
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-12-17 11:22:33 +00:00
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"_EJ0".into(),
|
|
|
|
|
1,
|
|
|
|
|
false,
|
|
|
|
|
// Call into CEJ0 method which will actually eject device
|
2021-01-28 11:52:14 +00:00
|
|
|
|
vec![&aml::MethodCall::new("CEJ0".into(), vec![&self.cpu_id])],
|
2019-12-17 11:22:33 +00:00
|
|
|
|
),
|
2019-12-06 15:25:57 +00:00
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 08:32:50 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
struct CpuNotify {
|
2019-12-16 16:09:24 +00:00
|
|
|
|
cpu_id: u8,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
impl Aml for CpuNotify {
|
2019-12-16 16:09:24 +00:00
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
|
let object = aml::Path::new(&format!("C{:03}", self.cpu_id));
|
|
|
|
|
aml::If::new(
|
|
|
|
|
&aml::Equal::new(&aml::Arg(0), &self.cpu_id),
|
|
|
|
|
vec![&aml::Notify::new(&object, &aml::Arg(1))],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-01-21 08:32:50 +00:00
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
struct CpuMethods {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
max_vcpus: u8,
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
|
impl Aml for CpuMethods {
|
2019-12-06 15:25:57 +00:00
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
|
let mut bytes = Vec::new();
|
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
|
// CPU status method
|
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"CSTA".into(),
|
|
|
|
|
1,
|
|
|
|
|
true,
|
|
|
|
|
vec![
|
|
|
|
|
// Take lock defined above
|
2021-01-28 11:47:29 +00:00
|
|
|
|
&aml::Acquire::new("\\_SB_.PRES.CPLK".into(), 0xffff),
|
2020-01-24 10:36:39 +00:00
|
|
|
|
// Write CPU number (in first argument) to I/O port via field
|
2019-12-06 15:25:57 +00:00
|
|
|
|
&aml::Store::new(&aml::Path::new("\\_SB_.PRES.CSEL"), &aml::Arg(0)),
|
|
|
|
|
&aml::Store::new(&aml::Local(0), &aml::ZERO),
|
|
|
|
|
// Check if CPEN bit is set, if so make the local variable 0xf (see _STA for details of meaning)
|
|
|
|
|
&aml::If::new(
|
|
|
|
|
&aml::Equal::new(&aml::Path::new("\\_SB_.PRES.CPEN"), &aml::ONE),
|
|
|
|
|
vec![&aml::Store::new(&aml::Local(0), &0xfu8)],
|
|
|
|
|
),
|
|
|
|
|
// Release lock
|
|
|
|
|
&aml::Release::new("\\_SB_.PRES.CPLK".into()),
|
|
|
|
|
// Return 0 or 0xf
|
|
|
|
|
&aml::Return::new(&aml::Local(0)),
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes(),
|
|
|
|
|
);
|
|
|
|
|
|
2019-12-16 16:09:24 +00:00
|
|
|
|
let mut cpu_notifies = Vec::new();
|
2019-12-06 15:25:57 +00:00
|
|
|
|
for cpu_id in 0..self.max_vcpus {
|
2021-03-25 17:01:21 +00:00
|
|
|
|
cpu_notifies.push(CpuNotify { cpu_id });
|
2019-12-06 15:25:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-16 16:09:24 +00:00
|
|
|
|
let mut cpu_notifies_refs: Vec<&dyn aml::Aml> = Vec::new();
|
2019-12-06 15:25:57 +00:00
|
|
|
|
for cpu_id in 0..self.max_vcpus {
|
2019-12-16 16:09:24 +00:00
|
|
|
|
cpu_notifies_refs.push(&cpu_notifies[usize::from(cpu_id)]);
|
2019-12-06 15:25:57 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-12-16 16:09:24 +00:00
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
|
&aml::Method::new("CTFY".into(), 2, true, cpu_notifies_refs).to_aml_bytes(),
|
|
|
|
|
);
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
2019-12-17 11:22:33 +00:00
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"CEJ0".into(),
|
|
|
|
|
1,
|
|
|
|
|
true,
|
|
|
|
|
vec![
|
2021-01-28 11:47:29 +00:00
|
|
|
|
&aml::Acquire::new("\\_SB_.PRES.CPLK".into(), 0xffff),
|
2020-01-24 10:36:39 +00:00
|
|
|
|
// Write CPU number (in first argument) to I/O port via field
|
2019-12-17 11:22:33 +00:00
|
|
|
|
&aml::Store::new(&aml::Path::new("\\_SB_.PRES.CSEL"), &aml::Arg(0)),
|
|
|
|
|
// Set CEJ0 bit
|
|
|
|
|
&aml::Store::new(&aml::Path::new("\\_SB_.PRES.CEJ0"), &aml::ONE),
|
|
|
|
|
&aml::Release::new("\\_SB_.PRES.CPLK".into()),
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes(),
|
|
|
|
|
);
|
|
|
|
|
|
2019-12-06 15:25:57 +00:00
|
|
|
|
bytes.extend_from_slice(
|
2019-12-16 16:09:24 +00:00
|
|
|
|
&aml::Method::new(
|
|
|
|
|
"CSCN".into(),
|
|
|
|
|
0,
|
|
|
|
|
true,
|
|
|
|
|
vec![
|
2019-12-16 16:42:29 +00:00
|
|
|
|
// Take lock defined above
|
2021-01-28 11:47:29 +00:00
|
|
|
|
&aml::Acquire::new("\\_SB_.PRES.CPLK".into(), 0xffff),
|
2019-12-16 16:09:24 +00:00
|
|
|
|
&aml::Store::new(&aml::Local(0), &aml::ZERO),
|
|
|
|
|
&aml::While::new(
|
|
|
|
|
&aml::LessThan::new(&aml::Local(0), &self.max_vcpus),
|
|
|
|
|
vec![
|
2020-01-24 10:36:39 +00:00
|
|
|
|
// Write CPU number (in first argument) to I/O port via field
|
2019-12-16 16:42:29 +00:00
|
|
|
|
&aml::Store::new(&aml::Path::new("\\_SB_.PRES.CSEL"), &aml::Local(0)),
|
|
|
|
|
// Check if CINS bit is set
|
|
|
|
|
&aml::If::new(
|
|
|
|
|
&aml::Equal::new(&aml::Path::new("\\_SB_.PRES.CINS"), &aml::ONE),
|
|
|
|
|
// Notify device if it is
|
|
|
|
|
vec![
|
|
|
|
|
&aml::MethodCall::new(
|
|
|
|
|
"CTFY".into(),
|
|
|
|
|
vec![&aml::Local(0), &aml::ONE],
|
|
|
|
|
),
|
|
|
|
|
// Reset CINS bit
|
|
|
|
|
&aml::Store::new(
|
|
|
|
|
&aml::Path::new("\\_SB_.PRES.CINS"),
|
|
|
|
|
&aml::ONE,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
2019-12-17 10:49:05 +00:00
|
|
|
|
// Check if CRMV bit is set
|
|
|
|
|
&aml::If::new(
|
|
|
|
|
&aml::Equal::new(&aml::Path::new("\\_SB_.PRES.CRMV"), &aml::ONE),
|
|
|
|
|
// Notify device if it is (with the eject constant 0x3)
|
|
|
|
|
vec![
|
|
|
|
|
&aml::MethodCall::new(
|
|
|
|
|
"CTFY".into(),
|
|
|
|
|
vec![&aml::Local(0), &3u8],
|
|
|
|
|
),
|
|
|
|
|
// Reset CRMV bit
|
|
|
|
|
&aml::Store::new(
|
|
|
|
|
&aml::Path::new("\\_SB_.PRES.CRMV"),
|
|
|
|
|
&aml::ONE,
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
),
|
2019-12-16 16:09:24 +00:00
|
|
|
|
&aml::Add::new(&aml::Local(0), &aml::Local(0), &aml::ONE),
|
|
|
|
|
],
|
|
|
|
|
),
|
2019-12-16 16:42:29 +00:00
|
|
|
|
// Release lock
|
|
|
|
|
&aml::Release::new("\\_SB_.PRES.CPLK".into()),
|
2019-12-16 16:09:24 +00:00
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes(),
|
2019-12-06 15:25:57 +00:00
|
|
|
|
);
|
|
|
|
|
bytes
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
|
impl Aml for CpuManager {
|
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
|
let mut bytes = Vec::new();
|
|
|
|
|
// CPU hotplug controller
|
2021-02-19 06:29:45 +00:00
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-12-06 15:25:57 +00:00
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
|
&aml::Device::new(
|
|
|
|
|
"_SB_.PRES".into(),
|
|
|
|
|
vec![
|
2021-03-25 15:57:27 +00:00
|
|
|
|
&aml::Name::new("_HID".into(), &aml::EisaName::new("PNP0A06")),
|
2020-08-13 21:18:17 +00:00
|
|
|
|
&aml::Name::new("_UID".into(), &"CPU Hotplug Controller"),
|
2019-12-06 15:25:57 +00:00
|
|
|
|
// Mutex to protect concurrent access as we write to choose CPU and then read back status
|
|
|
|
|
&aml::Mutex::new("CPLK".into(), 0),
|
|
|
|
|
&aml::Name::new(
|
|
|
|
|
"_CRS".into(),
|
2021-01-20 16:12:02 +00:00
|
|
|
|
&aml::ResourceTemplate::new(vec![&aml::AddressSpace::new_memory(
|
|
|
|
|
aml::AddressSpaceCachable::NotCacheable,
|
|
|
|
|
true,
|
|
|
|
|
self.acpi_address.0 as u64,
|
|
|
|
|
self.acpi_address.0 + CPU_MANAGER_ACPI_SIZE as u64 - 1,
|
2019-12-06 15:25:57 +00:00
|
|
|
|
)]),
|
|
|
|
|
),
|
2021-01-20 16:12:02 +00:00
|
|
|
|
// OpRegion and Fields map MMIO range into individual field values
|
|
|
|
|
&aml::OpRegion::new(
|
|
|
|
|
"PRST".into(),
|
|
|
|
|
aml::OpRegionSpace::SystemMemory,
|
|
|
|
|
self.acpi_address.0 as usize,
|
|
|
|
|
CPU_MANAGER_ACPI_SIZE,
|
|
|
|
|
),
|
2019-12-06 15:25:57 +00:00
|
|
|
|
&aml::Field::new(
|
|
|
|
|
"PRST".into(),
|
|
|
|
|
aml::FieldAccessType::Byte,
|
|
|
|
|
aml::FieldUpdateRule::WriteAsZeroes,
|
|
|
|
|
vec![
|
|
|
|
|
aml::FieldEntry::Reserved(32),
|
|
|
|
|
aml::FieldEntry::Named(*b"CPEN", 1),
|
|
|
|
|
aml::FieldEntry::Named(*b"CINS", 1),
|
|
|
|
|
aml::FieldEntry::Named(*b"CRMV", 1),
|
|
|
|
|
aml::FieldEntry::Named(*b"CEJ0", 1),
|
|
|
|
|
aml::FieldEntry::Reserved(4),
|
|
|
|
|
aml::FieldEntry::Named(*b"CCMD", 8),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
&aml::Field::new(
|
|
|
|
|
"PRST".into(),
|
|
|
|
|
aml::FieldAccessType::DWord,
|
|
|
|
|
aml::FieldUpdateRule::Preserve,
|
|
|
|
|
vec![
|
|
|
|
|
aml::FieldEntry::Named(*b"CSEL", 32),
|
|
|
|
|
aml::FieldEntry::Reserved(32),
|
|
|
|
|
aml::FieldEntry::Named(*b"CDAT", 32),
|
|
|
|
|
],
|
|
|
|
|
),
|
|
|
|
|
],
|
|
|
|
|
)
|
|
|
|
|
.to_aml_bytes(),
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// CPU devices
|
|
|
|
|
let hid = aml::Name::new("_HID".into(), &"ACPI0010");
|
2021-03-25 15:57:27 +00:00
|
|
|
|
let uid = aml::Name::new("_CID".into(), &aml::EisaName::new("PNP0A05"));
|
2019-12-06 15:25:57 +00:00
|
|
|
|
// Bundle methods together under a common object
|
2021-03-25 17:01:21 +00:00
|
|
|
|
let methods = CpuMethods {
|
2020-06-16 10:52:07 +00:00
|
|
|
|
max_vcpus: self.config.max_vcpus,
|
2019-12-06 15:25:57 +00:00
|
|
|
|
};
|
|
|
|
|
let mut cpu_data_inner: Vec<&dyn aml::Aml> = vec![&hid, &uid, &methods];
|
|
|
|
|
|
|
|
|
|
let mut cpu_devices = Vec::new();
|
2020-06-16 10:52:07 +00:00
|
|
|
|
for cpu_id in 0..self.config.max_vcpus {
|
2021-06-17 10:41:30 +00:00
|
|
|
|
let proximity_domain = *self.proximity_domain_per_cpu.get(&cpu_id).unwrap_or(&0);
|
|
|
|
|
let cpu_device = Cpu {
|
|
|
|
|
cpu_id,
|
|
|
|
|
proximity_domain,
|
|
|
|
|
};
|
2019-12-06 15:25:57 +00:00
|
|
|
|
|
|
|
|
|
cpu_devices.push(cpu_device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for cpu_device in cpu_devices.iter() {
|
|
|
|
|
cpu_data_inner.push(cpu_device);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
|
&aml::Device::new("_SB_.CPUS".into(), cpu_data_inner).to_aml_bytes(),
|
|
|
|
|
);
|
|
|
|
|
bytes
|
|
|
|
|
}
|
2019-11-11 13:55:50 +00:00
|
|
|
|
}
|
2019-11-21 18:04:08 +00:00
|
|
|
|
|
|
|
|
|
impl Pausable for CpuManager {
|
|
|
|
|
fn pause(&mut self) -> std::result::Result<(), MigratableError> {
|
|
|
|
|
// Tell the vCPUs to pause themselves next time they exit
|
|
|
|
|
self.vcpus_pause_signalled.store(true, Ordering::SeqCst);
|
|
|
|
|
|
|
|
|
|
// Signal to the spawned threads (vCPUs and console signal handler). For the vCPU threads
|
|
|
|
|
// this will interrupt the KVM_RUN ioctl() allowing the loop to check the boolean set
|
|
|
|
|
// above.
|
|
|
|
|
for state in self.vcpu_states.iter() {
|
|
|
|
|
state.signal_thread();
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-17 11:11:26 +00:00
|
|
|
|
for vcpu in self.vcpus.iter() {
|
2020-06-24 09:59:17 +00:00
|
|
|
|
let mut vcpu = vcpu.lock().unwrap();
|
|
|
|
|
vcpu.pause()?;
|
2020-12-04 23:35:29 +00:00
|
|
|
|
#[cfg(all(feature = "kvm", target_arch = "x86_64"))]
|
2020-10-15 14:55:50 +00:00
|
|
|
|
if !self.config.kvm_hyperv {
|
|
|
|
|
vcpu.vcpu.notify_guest_clock_paused().map_err(|e| {
|
|
|
|
|
MigratableError::Pause(anyhow!(
|
|
|
|
|
"Could not notify guest it has been paused {:?}",
|
|
|
|
|
e
|
|
|
|
|
))
|
|
|
|
|
})?;
|
|
|
|
|
}
|
2020-06-17 11:11:26 +00:00
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:04:08 +00:00
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn resume(&mut self) -> std::result::Result<(), MigratableError> {
|
2020-06-24 09:59:17 +00:00
|
|
|
|
for vcpu in self.vcpus.iter() {
|
|
|
|
|
vcpu.lock().unwrap().resume()?;
|
|
|
|
|
}
|
|
|
|
|
|
2019-11-21 18:04:08 +00:00
|
|
|
|
// Toggle the vCPUs pause boolean
|
|
|
|
|
self.vcpus_pause_signalled.store(false, Ordering::SeqCst);
|
|
|
|
|
|
|
|
|
|
// Unpark all the VCPU threads.
|
|
|
|
|
// Once unparked, the next thing they will do is checking for the pause
|
|
|
|
|
// boolean. Since it'll be set to false, they will exit their pause loop
|
|
|
|
|
// and go back to vmx root.
|
|
|
|
|
for state in self.vcpu_states.iter() {
|
|
|
|
|
state.unpark_thread();
|
|
|
|
|
}
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2020-02-18 15:44:41 +00:00
|
|
|
|
impl Snapshottable for CpuManager {
|
|
|
|
|
fn id(&self) -> String {
|
|
|
|
|
CPU_MANAGER_SNAPSHOT_ID.to_string()
|
|
|
|
|
}
|
|
|
|
|
|
2020-08-21 12:31:58 +00:00
|
|
|
|
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
|
2020-02-18 15:44:41 +00:00
|
|
|
|
let mut cpu_manager_snapshot = Snapshot::new(CPU_MANAGER_SNAPSHOT_ID);
|
|
|
|
|
|
|
|
|
|
// The CpuManager snapshot is a collection of all vCPUs snapshots.
|
|
|
|
|
for vcpu in &self.vcpus {
|
|
|
|
|
let cpu_snapshot = vcpu.lock().unwrap().snapshot()?;
|
|
|
|
|
cpu_manager_snapshot.add_snapshot(cpu_snapshot);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(cpu_manager_snapshot)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn restore(&mut self, snapshot: Snapshot) -> std::result::Result<(), MigratableError> {
|
|
|
|
|
for (cpu_id, snapshot) in snapshot.snapshots.iter() {
|
2021-09-03 09:30:06 +00:00
|
|
|
|
info!("Restoring VCPU {}", cpu_id);
|
2020-09-04 10:56:30 +00:00
|
|
|
|
self.create_vcpu(cpu_id.parse::<u8>().unwrap(), None, Some(*snapshot.clone()))
|
2020-05-26 07:20:22 +00:00
|
|
|
|
.map_err(|e| MigratableError::Restore(anyhow!("Could not create vCPU {:?}", e)))?;
|
2020-02-18 15:44:41 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2019-05-01 16:59:51 +00:00
|
|
|
|
impl Transportable for CpuManager {}
|
2019-11-21 18:04:08 +00:00
|
|
|
|
impl Migratable for CpuManager {}
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
2020-12-04 23:35:29 +00:00
|
|
|
|
#[cfg(all(feature = "kvm", target_arch = "x86_64"))]
|
2020-07-08 12:48:46 +00:00
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
|
|
|
|
use arch::x86_64::interrupts::*;
|
|
|
|
|
use arch::x86_64::regs::*;
|
2021-04-29 16:11:32 +00:00
|
|
|
|
use hypervisor::x86_64::{FpuState, LapicState, StandardRegisters};
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setlint() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().expect("new VM fd creation failed");
|
2021-05-19 13:01:11 +00:00
|
|
|
|
assert!(hv.check_required_extensions().is_ok());
|
2020-07-08 12:48:46 +00:00
|
|
|
|
// Calling get_lapic will fail if there is no irqchip before hand.
|
|
|
|
|
assert!(vm.create_irq_chip().is_ok());
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
let klapic_before: LapicState = vcpu.get_lapic().unwrap();
|
|
|
|
|
|
|
|
|
|
// Compute the value that is expected to represent LVT0 and LVT1.
|
|
|
|
|
let lint0 = get_klapic_reg(&klapic_before, APIC_LVT0);
|
|
|
|
|
let lint1 = get_klapic_reg(&klapic_before, APIC_LVT1);
|
|
|
|
|
let lint0_mode_expected = set_apic_delivery_mode(lint0, APIC_MODE_EXTINT);
|
|
|
|
|
let lint1_mode_expected = set_apic_delivery_mode(lint1, APIC_MODE_NMI);
|
|
|
|
|
|
|
|
|
|
set_lint(&vcpu).unwrap();
|
|
|
|
|
|
|
|
|
|
// Compute the value that represents LVT0 and LVT1 after set_lint.
|
|
|
|
|
let klapic_actual: LapicState = vcpu.get_lapic().unwrap();
|
|
|
|
|
let lint0_mode_actual = get_klapic_reg(&klapic_actual, APIC_LVT0);
|
|
|
|
|
let lint1_mode_actual = get_klapic_reg(&klapic_actual, APIC_LVT1);
|
|
|
|
|
assert_eq!(lint0_mode_expected, lint0_mode_actual);
|
|
|
|
|
assert_eq!(lint1_mode_expected, lint1_mode_actual);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setup_fpu() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().expect("new VM fd creation failed");
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
setup_fpu(&vcpu).unwrap();
|
|
|
|
|
|
|
|
|
|
let expected_fpu: FpuState = FpuState {
|
|
|
|
|
fcw: 0x37f,
|
|
|
|
|
mxcsr: 0x1f80,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
|
|
|
|
let actual_fpu: FpuState = vcpu.get_fpu().unwrap();
|
|
|
|
|
// TODO: auto-generate kvm related structures with PartialEq on.
|
|
|
|
|
assert_eq!(expected_fpu.fcw, actual_fpu.fcw);
|
|
|
|
|
// Setting the mxcsr register from FpuState inside setup_fpu does not influence anything.
|
|
|
|
|
// See 'kvm_arch_vcpu_ioctl_set_fpu' from arch/x86/kvm/x86.c.
|
|
|
|
|
// The mxcsr will stay 0 and the assert below fails. Decide whether or not we should
|
|
|
|
|
// remove it at all.
|
|
|
|
|
// assert!(expected_fpu.mxcsr == actual_fpu.mxcsr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setup_msrs() {
|
|
|
|
|
use hypervisor::arch::x86::msr_index;
|
|
|
|
|
use hypervisor::x86_64::{MsrEntries, MsrEntry};
|
|
|
|
|
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().expect("new VM fd creation failed");
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
setup_msrs(&vcpu).unwrap();
|
|
|
|
|
|
|
|
|
|
// This test will check against the last MSR entry configured (the tenth one).
|
|
|
|
|
// See create_msr_entries for details.
|
|
|
|
|
let mut msrs = MsrEntries::from_entries(&[MsrEntry {
|
|
|
|
|
index: msr_index::MSR_IA32_MISC_ENABLE,
|
|
|
|
|
..Default::default()
|
2021-02-25 16:53:46 +00:00
|
|
|
|
}])
|
|
|
|
|
.unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
// get_msrs returns the number of msrs that it succeed in reading. We only want to read 1
|
|
|
|
|
// in this test case scenario.
|
|
|
|
|
let read_msrs = vcpu.get_msrs(&mut msrs).unwrap();
|
|
|
|
|
assert_eq!(read_msrs, 1);
|
|
|
|
|
|
|
|
|
|
// Official entries that were setup when we did setup_msrs. We need to assert that the
|
|
|
|
|
// tenth one (i.e the one with index msr_index::MSR_IA32_MISC_ENABLE has the data we
|
|
|
|
|
// expect.
|
|
|
|
|
let entry_vec = hypervisor::x86_64::boot_msr_entries();
|
|
|
|
|
assert_eq!(entry_vec.as_slice()[9], msrs.as_slice()[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setup_regs() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().expect("new VM fd creation failed");
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
let expected_regs: StandardRegisters = StandardRegisters {
|
|
|
|
|
rflags: 0x0000000000000002u64,
|
2021-04-29 16:11:32 +00:00
|
|
|
|
rbx: arch::layout::PVH_INFO_START.0,
|
2020-07-08 12:48:46 +00:00
|
|
|
|
rip: 1,
|
|
|
|
|
..Default::default()
|
|
|
|
|
};
|
|
|
|
|
|
2021-04-29 16:11:32 +00:00
|
|
|
|
setup_regs(&vcpu, expected_regs.rip).unwrap();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
let actual_regs: StandardRegisters = vcpu.get_regs().unwrap();
|
|
|
|
|
assert_eq!(actual_regs, expected_regs);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
|
#[cfg(test)]
|
|
|
|
|
mod tests {
|
2021-06-02 19:08:04 +00:00
|
|
|
|
use crate::GuestMemoryMmap;
|
2020-07-08 12:48:46 +00:00
|
|
|
|
use arch::aarch64::layout;
|
|
|
|
|
use arch::aarch64::regs::*;
|
2020-08-30 12:50:19 +00:00
|
|
|
|
use hypervisor::kvm::aarch64::{is_system_register, MPIDR_EL1};
|
2020-08-28 09:06:54 +00:00
|
|
|
|
use hypervisor::kvm::kvm_bindings::{
|
2020-08-30 12:50:19 +00:00
|
|
|
|
kvm_one_reg, kvm_regs, kvm_vcpu_init, user_pt_regs, KVM_REG_ARM64, KVM_REG_ARM64_SYSREG,
|
|
|
|
|
KVM_REG_ARM_CORE, KVM_REG_SIZE_U64,
|
2020-08-28 09:06:54 +00:00
|
|
|
|
};
|
|
|
|
|
use hypervisor::{arm64_core_reg_id, offset__of};
|
|
|
|
|
use std::mem;
|
2021-06-02 19:08:04 +00:00
|
|
|
|
use vm_memory::GuestAddress;
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_setup_regs() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().unwrap();
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2021-06-24 06:52:18 +00:00
|
|
|
|
let regions = vec![(
|
2020-07-08 12:48:46 +00:00
|
|
|
|
GuestAddress(layout::RAM_64BIT_START),
|
|
|
|
|
(layout::FDT_MAX_SIZE + 0x1000) as usize,
|
2021-06-24 06:52:18 +00:00
|
|
|
|
)];
|
2020-07-08 12:48:46 +00:00
|
|
|
|
let mem = GuestMemoryMmap::from_ranges(®ions).expect("Cannot initialize memory");
|
|
|
|
|
|
2020-08-28 09:06:54 +00:00
|
|
|
|
let res = setup_regs(&vcpu, 0, 0x0, &mem);
|
|
|
|
|
// Must fail when vcpu is not initialized yet.
|
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
|
|
|
|
|
let mut kvi: kvm_vcpu_init = kvm_vcpu_init::default();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
vm.get_preferred_target(&mut kvi).unwrap();
|
|
|
|
|
vcpu.vcpu_init(&kvi).unwrap();
|
|
|
|
|
|
|
|
|
|
assert!(setup_regs(&vcpu, 0, 0x0, &mem).is_ok());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_read_mpidr() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().unwrap();
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-08-28 09:06:54 +00:00
|
|
|
|
let mut kvi: kvm_vcpu_init = kvm_vcpu_init::default();
|
2020-07-08 12:48:46 +00:00
|
|
|
|
vm.get_preferred_target(&mut kvi).unwrap();
|
|
|
|
|
|
|
|
|
|
// Must fail when vcpu is not initialized yet.
|
2020-08-30 12:50:19 +00:00
|
|
|
|
assert!(vcpu.read_mpidr().is_err());
|
2020-07-08 12:48:46 +00:00
|
|
|
|
|
|
|
|
|
vcpu.vcpu_init(&kvi).unwrap();
|
2020-08-30 12:50:19 +00:00
|
|
|
|
assert_eq!(vcpu.read_mpidr().unwrap(), 0x80000000);
|
2020-07-08 12:48:46 +00:00
|
|
|
|
}
|
2020-08-28 09:06:54 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_is_system_register() {
|
|
|
|
|
let offset = offset__of!(user_pt_regs, pc);
|
|
|
|
|
let regid = arm64_core_reg_id!(KVM_REG_SIZE_U64, offset);
|
|
|
|
|
assert!(!is_system_register(regid));
|
|
|
|
|
let regid = KVM_REG_ARM64 as u64 | KVM_REG_SIZE_U64 as u64 | KVM_REG_ARM64_SYSREG as u64;
|
|
|
|
|
assert!(is_system_register(regid));
|
|
|
|
|
}
|
2020-08-30 12:50:19 +00:00
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_save_restore_core_regs() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().unwrap();
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-08-30 12:50:19 +00:00
|
|
|
|
let mut kvi: kvm_vcpu_init = kvm_vcpu_init::default();
|
|
|
|
|
vm.get_preferred_target(&mut kvi).unwrap();
|
|
|
|
|
|
|
|
|
|
// Must fail when vcpu is not initialized yet.
|
|
|
|
|
let mut state = kvm_regs::default();
|
|
|
|
|
let res = vcpu.core_registers(&mut state);
|
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
assert_eq!(
|
|
|
|
|
format!("{}", res.unwrap_err()),
|
|
|
|
|
"Failed to get core register: Exec format error (os error 8)"
|
|
|
|
|
);
|
|
|
|
|
|
2021-06-24 06:52:18 +00:00
|
|
|
|
let res = vcpu.set_core_registers(&state);
|
2020-08-30 12:50:19 +00:00
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
assert_eq!(
|
|
|
|
|
format!("{}", res.unwrap_err()),
|
|
|
|
|
"Failed to set core register: Exec format error (os error 8)"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
vcpu.vcpu_init(&kvi).unwrap();
|
|
|
|
|
assert!(vcpu.core_registers(&mut state).is_ok());
|
|
|
|
|
assert_eq!(state.regs.pstate, 0x3C5);
|
|
|
|
|
|
|
|
|
|
assert!(vcpu.set_core_registers(&state).is_ok());
|
|
|
|
|
let off = offset__of!(user_pt_regs, pstate);
|
|
|
|
|
let pstate = vcpu
|
2020-10-07 14:45:25 +00:00
|
|
|
|
.get_reg(arm64_core_reg_id!(KVM_REG_SIZE_U64, off))
|
2020-08-30 12:50:19 +00:00
|
|
|
|
.expect("Failed to call kvm get one reg");
|
|
|
|
|
assert_eq!(state.regs.pstate, pstate);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_save_restore_system_regs() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().unwrap();
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-08-30 12:50:19 +00:00
|
|
|
|
let mut kvi: kvm_vcpu_init = kvm_vcpu_init::default();
|
|
|
|
|
vm.get_preferred_target(&mut kvi).unwrap();
|
|
|
|
|
|
|
|
|
|
// Must fail when vcpu is not initialized yet.
|
|
|
|
|
let mut state: Vec<kvm_one_reg> = Vec::new();
|
|
|
|
|
let res = vcpu.system_registers(&mut state);
|
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
assert_eq!(
|
|
|
|
|
format!("{}", res.unwrap_err()),
|
|
|
|
|
"Failed to retrieve list of registers: Exec format error (os error 8)"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
state.push(kvm_one_reg {
|
|
|
|
|
id: MPIDR_EL1,
|
|
|
|
|
addr: 0x00,
|
|
|
|
|
});
|
2021-06-24 06:52:18 +00:00
|
|
|
|
let res = vcpu.set_system_registers(&state);
|
2020-08-30 12:50:19 +00:00
|
|
|
|
assert!(res.is_err());
|
|
|
|
|
assert_eq!(
|
|
|
|
|
format!("{}", res.unwrap_err()),
|
|
|
|
|
"Failed to set system register: Exec format error (os error 8)"
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
vcpu.vcpu_init(&kvi).unwrap();
|
|
|
|
|
assert!(vcpu.system_registers(&mut state).is_ok());
|
|
|
|
|
let initial_mpidr: u64 = vcpu.read_mpidr().expect("Fail to read mpidr");
|
|
|
|
|
assert!(state.contains(&kvm_one_reg {
|
|
|
|
|
id: MPIDR_EL1,
|
|
|
|
|
addr: initial_mpidr
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
assert!(vcpu.set_system_registers(&state).is_ok());
|
|
|
|
|
let mpidr: u64 = vcpu.read_mpidr().expect("Fail to read mpidr");
|
|
|
|
|
assert_eq!(initial_mpidr, mpidr);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
|
fn test_get_set_mpstate() {
|
|
|
|
|
let hv = hypervisor::new().unwrap();
|
|
|
|
|
let vm = hv.create_vm().unwrap();
|
2020-11-18 16:37:52 +00:00
|
|
|
|
let vcpu = vm.create_vcpu(0, None).unwrap();
|
2020-08-30 12:50:19 +00:00
|
|
|
|
let mut kvi: kvm_vcpu_init = kvm_vcpu_init::default();
|
|
|
|
|
vm.get_preferred_target(&mut kvi).unwrap();
|
|
|
|
|
|
|
|
|
|
let res = vcpu.get_mp_state();
|
|
|
|
|
assert!(res.is_ok());
|
|
|
|
|
assert!(vcpu.set_mp_state(res.unwrap()).is_ok());
|
|
|
|
|
}
|
2020-07-08 12:48:46 +00:00
|
|
|
|
}
|