mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Import the std modules used in the crate instead of spelling the full paths at every use site, and drop the now-unnecessary crate-level #![expect(clippy::absolute_paths)]. Signed-off-by: Henry Hrvoje Tonkovac <htonkovac@gmail.com> Assisted-by: Claude:Opus-4.8
221 lines
7.1 KiB
Rust
221 lines
7.1 KiB
Rust
// Copyright © 2024 Institute of Software, CAS. All rights reserved.
|
|
// Copyright 2020 Arm Limited (or its affiliates). All rights reserved.
|
|
// Copyright © 2020, Oracle and/or its affiliates.
|
|
//
|
|
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//! Implements platform specific functionality.
|
|
//! Supported platforms: x86_64, aarch64, riscv64.
|
|
|
|
use std::collections::BTreeMap;
|
|
use std::str::FromStr;
|
|
use std::sync::Arc;
|
|
use std::{fmt, result};
|
|
|
|
use serde::de::{IntoDeserializer, value};
|
|
use serde::{Deserialize, Serialize};
|
|
use thiserror::Error;
|
|
use vm_memory::bitmap::AtomicBitmap;
|
|
|
|
type GuestMemoryMmap = vm_memory::GuestMemoryMmap<AtomicBitmap>;
|
|
type GuestRegionMmap = vm_memory::GuestRegionMmap<AtomicBitmap>;
|
|
|
|
/// Type for returning error code.
|
|
#[derive(Debug, Error)]
|
|
pub enum Error {
|
|
#[cfg(target_arch = "x86_64")]
|
|
#[error("Platform specific error (x86_64)")]
|
|
PlatformSpecific(#[from] x86_64::Error),
|
|
#[cfg(target_arch = "aarch64")]
|
|
#[error("Platform specific error (aarch64)")]
|
|
PlatformSpecific(#[from] aarch64::Error),
|
|
#[cfg(target_arch = "riscv64")]
|
|
#[error("Platform specific error (riscv64)")]
|
|
PlatformSpecific(#[from] riscv64::Error),
|
|
#[error("The memory map table extends past the end of guest memory")]
|
|
MemmapTablePastRamEnd,
|
|
#[error("Error writing memory map table to guest memory")]
|
|
MemmapTableSetup(#[source] vm_memory::GuestMemoryError),
|
|
#[error("Error generating memory map table")]
|
|
MemmapTableGeneration,
|
|
#[error("The hvm_start_info structure extends past the end of guest memory")]
|
|
StartInfoPastRamEnd,
|
|
#[error("Error writing hvm_start_info to guest memory")]
|
|
StartInfoSetup(#[source] vm_memory::GuestMemoryError),
|
|
#[error("Failed to compute initramfs address")]
|
|
InitramfsAddress,
|
|
#[error("Error writing module entry to guest memory")]
|
|
ModlistSetup(#[source] vm_memory::GuestMemoryError),
|
|
#[error("RSDP extends past the end of guest memory")]
|
|
RsdpPastRamEnd,
|
|
#[error("Failed to setup Zero Page for bzImage")]
|
|
ZeroPageSetup(#[source] vm_memory::GuestMemoryError),
|
|
#[error("Zero Page for bzImage past RAM end")]
|
|
ZeroPagePastRamEnd,
|
|
}
|
|
|
|
/// Type for returning public functions outcome.
|
|
pub type Result<T> = result::Result<T, Error>;
|
|
|
|
// If the target_arch is x86_64 we import CpuProfile from the x86_64 module, otherwise we
|
|
// declare it here with only "host" as a selectable CPU profile. This trick is useful to prevent
|
|
// excessive conditional compilation throughout the codebase.
|
|
#[cfg(not(target_arch = "x86_64"))]
|
|
#[derive(Debug, Default, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
|
|
/// A [`CpuProfile`] is a mechanism for ensuring live migration compatibility
|
|
/// between host's with potentially different CPU models.
|
|
pub enum CpuProfile {
|
|
#[default]
|
|
Host,
|
|
}
|
|
|
|
// Note that this trait impl is architecture agnostic and may thus reside here.
|
|
impl FromStr for CpuProfile {
|
|
type Err = value::Error;
|
|
fn from_str(s: &str) -> result::Result<Self, Self::Err> {
|
|
Self::deserialize(s.into_deserializer())
|
|
}
|
|
}
|
|
|
|
/// Type for memory region types.
|
|
#[derive(Clone, Copy, PartialEq, Eq, Debug, Serialize, Deserialize)]
|
|
pub enum RegionType {
|
|
/// RAM type
|
|
Ram,
|
|
|
|
/// SubRegion memory region.
|
|
/// A SubRegion is a memory region sub-region, allowing for a region
|
|
/// to be split into sub regions managed separately.
|
|
/// For example, the x86 32-bit memory hole is a SubRegion.
|
|
SubRegion,
|
|
|
|
/// Reserved type.
|
|
/// A Reserved memory region is one that should not be used for memory
|
|
/// allocation. This type can be used to prevent the VMM from allocating
|
|
/// memory ranges in a specific address range.
|
|
Reserved,
|
|
}
|
|
|
|
/// Module for aarch64 related functionality.
|
|
#[cfg(target_arch = "aarch64")]
|
|
pub mod aarch64;
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
pub use aarch64::{
|
|
_NSIG, EntryPoint, arch_memory_regions, configure_system, configure_vcpu,
|
|
fdt::DeviceInfoForFdt, get_host_cpu_phys_bits, initramfs_load_addr, layout,
|
|
layout::CMDLINE_MAX_SIZE, layout::IRQ_BASE, uefi,
|
|
};
|
|
|
|
/// Module for riscv64 related functionality.
|
|
#[cfg(target_arch = "riscv64")]
|
|
pub mod riscv64;
|
|
|
|
#[cfg(target_arch = "riscv64")]
|
|
pub use riscv64::{
|
|
_NSIG, EntryPoint, arch_memory_regions, configure_system, configure_vcpu,
|
|
fdt::DeviceInfoForFdt, get_host_cpu_phys_bits, initramfs_load_addr, layout,
|
|
layout::CMDLINE_MAX_SIZE, layout::IRQ_BASE, uefi,
|
|
};
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub mod x86_64;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
pub use x86_64::{
|
|
_NSIG, CpuidConfig, CpuidFeatureEntry, EntryPoint, arch_memory_regions, configure_system,
|
|
configure_vcpu, cpu_profile::CpuProfile, generate_common_cpuid, generate_ram_ranges,
|
|
get_host_cpu_phys_bits, initramfs_load_addr, layout, layout::CMDLINE_MAX_SIZE,
|
|
layout::CMDLINE_START, regs,
|
|
};
|
|
|
|
/// Safe wrapper for `sysconf(_SC_PAGESIZE)`.
|
|
#[cfg(target_arch = "x86_64")]
|
|
#[inline(always)]
|
|
fn pagesize() -> usize {
|
|
// SAFETY: Trivially safe
|
|
unsafe { libc::sysconf(libc::_SC_PAGESIZE) as usize }
|
|
}
|
|
|
|
#[derive(Clone, Default)]
|
|
pub struct NumaNode {
|
|
pub memory_regions: Vec<Arc<GuestRegionMmap>>,
|
|
pub hotplug_regions: Vec<Arc<GuestRegionMmap>>,
|
|
pub cpus: Vec<u32>,
|
|
pub pci_segments: Vec<u16>,
|
|
pub distances: BTreeMap<u32, u8>,
|
|
pub memory_zones: Vec<String>,
|
|
pub device_id: Option<String>,
|
|
}
|
|
|
|
pub type NumaNodes = BTreeMap<u32, NumaNode>;
|
|
|
|
/// Type for passing information about the initramfs in the guest memory.
|
|
pub struct InitramfsConfig {
|
|
/// Load address of initramfs in guest memory
|
|
pub address: vm_memory::GuestAddress,
|
|
/// Size of initramfs in guest memory
|
|
pub size: usize,
|
|
}
|
|
|
|
/// Types of devices that can get attached to this platform.
|
|
#[derive(Clone, Debug, PartialEq, Eq, Hash, Copy)]
|
|
pub enum DeviceType {
|
|
/// Device Type: Virtio.
|
|
Virtio(u32),
|
|
/// Device Type: Serial.
|
|
#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))]
|
|
Serial,
|
|
/// Device Type: RTC.
|
|
#[cfg(target_arch = "aarch64")]
|
|
Rtc,
|
|
/// Device Type: GPIO.
|
|
#[cfg(target_arch = "aarch64")]
|
|
Gpio,
|
|
/// Device Type: fw_cfg.
|
|
#[cfg(feature = "fw_cfg")]
|
|
FwCfg,
|
|
}
|
|
|
|
/// Default (smallest) memory page size for the supported architectures.
|
|
pub const PAGE_SIZE: usize = 4096;
|
|
|
|
impl fmt::Display for DeviceType {
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
|
write!(f, "{self:?}")
|
|
}
|
|
}
|
|
|
|
/// Structure to describe MMIO device information
|
|
#[derive(Clone, Debug)]
|
|
#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))]
|
|
pub struct MmioDeviceInfo {
|
|
pub addr: u64,
|
|
pub len: u64,
|
|
pub irq: u32,
|
|
}
|
|
|
|
/// Structure to describe PCI space information
|
|
#[derive(Clone, Debug)]
|
|
#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))]
|
|
pub struct PciSpaceInfo {
|
|
pub pci_segment_id: u16,
|
|
pub mmio_config_address: u64,
|
|
pub pci_device_space_start: u64,
|
|
pub pci_device_space_size: u64,
|
|
}
|
|
|
|
#[cfg(any(target_arch = "aarch64", target_arch = "riscv64"))]
|
|
impl DeviceInfoForFdt for MmioDeviceInfo {
|
|
fn addr(&self) -> u64 {
|
|
self.addr
|
|
}
|
|
fn irq(&self) -> u32 {
|
|
self.irq
|
|
}
|
|
fn length(&self) -> u64 {
|
|
self.len
|
|
}
|
|
}
|