petri/vm/mod.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
/// Hyper-V VM management
#[cfg(windows)]
pub mod hyperv;
/// OpenVMM VM management
pub mod openvmm;
use crate::ShutdownKind;
use async_trait::async_trait;
use get_resources::ged::FirmwareEvent;
use petri_artifacts_common::tags::GuestQuirks;
use petri_artifacts_common::tags::MachineArch;
use petri_artifacts_common::tags::OsFlavor;
use petri_artifacts_core::ArtifactResolver;
use petri_artifacts_core::ResolvedArtifact;
use petri_artifacts_core::ResolvedOptionalArtifact;
use pipette_client::PipetteClient;
use vmm_core_defs::HaltReason;
/// Configuration state for a test VM.
///
/// R is the type of the struct used to interact with the VM once it is created
#[async_trait]
pub trait PetriVmConfig: Send {
/// Build and boot the requested VM. Does not configure and start pipette.
/// Should only be used for testing platforms that pipette does not support.
async fn run_without_agent(self: Box<Self>) -> anyhow::Result<Box<dyn PetriVm>>;
/// Run the VM, configuring pipette to automatically start, but do not wait
/// for it to connect. This is useful for tests where the first boot attempt
/// is expected to not succeed, but pipette functionality is still desired.
async fn run_with_lazy_pipette(self: Box<Self>) -> anyhow::Result<Box<dyn PetriVm>>;
/// Run the VM, launching pipette and returning a client to it.
async fn run(self: Box<Self>) -> anyhow::Result<(Box<dyn PetriVm>, PipetteClient)>;
}
/// A running VM that tests can interact with.
#[async_trait]
pub trait PetriVm: Send {
/// Wait for the VM to halt, returning the reason for the halt.
async fn wait_for_halt(&mut self) -> anyhow::Result<HaltReason>;
/// Wait for the VM to halt, returning the reason for the halt,
/// and cleanly tear down the VM.
async fn wait_for_teardown(self: Box<Self>) -> anyhow::Result<HaltReason>;
/// Test that we are able to inspect OpenHCL.
async fn test_inspect_openhcl(&mut self) -> anyhow::Result<()>;
/// Wait for a connection from a pipette agent running in the guest.
/// Useful if you've rebooted the vm or are otherwise expecting a fresh connection.
async fn wait_for_agent(&mut self) -> anyhow::Result<PipetteClient>;
/// Wait for VTL 2 to report that it is ready to respond to commands.
/// Will fail if the VM is not running OpenHCL.
///
/// This should only be necessary if you're doing something manual. All
/// Petri-provided methods will wait for VTL 2 to be ready automatically.
async fn wait_for_vtl2_ready(&mut self) -> anyhow::Result<()>;
/// Waits for an event emitted by the firmware about its boot status, and
/// verifies that it is the expected success value.
///
/// * Linux Direct guests do not emit a boot event, so this method immediately returns Ok.
/// * PCAT guests may not emit an event depending on the PCAT version, this
/// method is best effort for them.
async fn wait_for_successful_boot_event(&mut self) -> anyhow::Result<()>;
/// Instruct the guest to shutdown via the Hyper-V shutdown IC.
async fn send_enlightened_shutdown(&mut self, kind: ShutdownKind) -> anyhow::Result<()>;
}
/// Firmware to load into the test VM.
#[derive(Debug)]
pub enum Firmware {
/// Boot Linux directly, without any firmware.
LinuxDirect {
/// The kernel to boot.
kernel: ResolvedArtifact,
/// The initrd to use.
initrd: ResolvedArtifact,
},
/// Boot Linux directly, without any firmware, with OpenHCL in VTL2.
OpenhclLinuxDirect {
/// The path to the IGVM file to use.
igvm_path: ResolvedArtifact,
},
/// Boot a PCAT-based VM.
Pcat {
/// The guest OS the VM will boot into.
guest: PcatGuest,
/// The firmware to use.
bios_firmware: ResolvedOptionalArtifact,
/// The SVGA firmware to use.
svga_firmware: ResolvedOptionalArtifact,
},
/// Boot a UEFI-based VM.
Uefi {
/// The guest OS the VM will boot into.
guest: UefiGuest,
/// The firmware to use.
uefi_firmware: ResolvedArtifact,
},
/// Boot a UEFI-based VM with OpenHCL in VTL2.
OpenhclUefi {
/// The guest OS the VM will boot into.
guest: UefiGuest,
/// The isolation type of the VM.
isolation: Option<IsolationType>,
/// Emulate SCSI via NVME to VTL2, with the provided namespace ID on
/// the controller with `BOOT_NVME_INSTANCE`.
vtl2_nvme_boot: bool,
/// The path to the IGVM file to use.
igvm_path: ResolvedArtifact,
},
}
impl Firmware {
/// Constructs a standard [`Firmware::LinuxDirect`] configuration.
pub fn linux_direct(resolver: &ArtifactResolver<'_>, arch: MachineArch) -> Self {
use petri_artifacts_vmm_test::artifacts::loadable::*;
match arch {
MachineArch::X86_64 => Firmware::LinuxDirect {
kernel: resolver.require(LINUX_DIRECT_TEST_KERNEL_X64).erase(),
initrd: resolver.require(LINUX_DIRECT_TEST_INITRD_X64).erase(),
},
MachineArch::Aarch64 => Firmware::LinuxDirect {
kernel: resolver.require(LINUX_DIRECT_TEST_KERNEL_AARCH64).erase(),
initrd: resolver.require(LINUX_DIRECT_TEST_INITRD_AARCH64).erase(),
},
}
}
/// Constructs a standard [`Firmware::OpenhclLinuxDirect`] configuration.
pub fn openhcl_linux_direct(resolver: &ArtifactResolver<'_>, arch: MachineArch) -> Self {
use petri_artifacts_vmm_test::artifacts::openhcl_igvm::*;
match arch {
MachineArch::X86_64 => Firmware::OpenhclLinuxDirect {
igvm_path: resolver.require(LATEST_LINUX_DIRECT_TEST_X64).erase(),
},
MachineArch::Aarch64 => todo!("Linux direct not yet supported on aarch64"),
}
}
/// Constructs a standard [`Firmware::Pcat`] configuration.
pub fn pcat(resolver: &ArtifactResolver<'_>, guest: PcatGuest) -> Self {
use petri_artifacts_vmm_test::artifacts::loadable::*;
Firmware::Pcat {
guest,
bios_firmware: resolver.try_require(PCAT_FIRMWARE_X64).erase(),
svga_firmware: resolver.try_require(SVGA_FIRMWARE_X64).erase(),
}
}
/// Constructs a standard [`Firmware::Uefi`] configuration.
pub fn uefi(resolver: &ArtifactResolver<'_>, arch: MachineArch, guest: UefiGuest) -> Self {
use petri_artifacts_vmm_test::artifacts::loadable::*;
let uefi_firmware = match arch {
MachineArch::X86_64 => resolver.require(UEFI_FIRMWARE_X64).erase(),
MachineArch::Aarch64 => resolver.require(UEFI_FIRMWARE_AARCH64).erase(),
};
Firmware::Uefi {
guest,
uefi_firmware,
}
}
/// Constructs a standard [`Firmware::OpenhclUefi`] configuration.
pub fn openhcl_uefi(
resolver: &ArtifactResolver<'_>,
arch: MachineArch,
guest: UefiGuest,
isolation: Option<IsolationType>,
vtl2_nvme_boot: bool,
) -> Self {
use petri_artifacts_vmm_test::artifacts::openhcl_igvm::*;
let igvm_path = match arch {
MachineArch::X86_64 if isolation.is_some() => resolver.require(LATEST_CVM_X64).erase(),
MachineArch::X86_64 => resolver.require(LATEST_STANDARD_X64).erase(),
MachineArch::Aarch64 => resolver.require(LATEST_STANDARD_AARCH64).erase(),
};
Firmware::OpenhclUefi {
guest,
isolation,
vtl2_nvme_boot,
igvm_path,
}
}
fn is_openhcl(&self) -> bool {
match self {
Firmware::OpenhclLinuxDirect { .. } | Firmware::OpenhclUefi { .. } => true,
Firmware::LinuxDirect { .. } | Firmware::Pcat { .. } | Firmware::Uefi { .. } => false,
}
}
fn isolation(&self) -> Option<IsolationType> {
match self {
Firmware::OpenhclUefi { isolation, .. } => *isolation,
Firmware::LinuxDirect { .. }
| Firmware::Pcat { .. }
| Firmware::Uefi { .. }
| Firmware::OpenhclLinuxDirect { .. } => None,
}
}
fn is_linux_direct(&self) -> bool {
match self {
Firmware::LinuxDirect { .. } | Firmware::OpenhclLinuxDirect { .. } => true,
Firmware::Pcat { .. } | Firmware::Uefi { .. } | Firmware::OpenhclUefi { .. } => false,
}
}
fn is_uefi(&self) -> bool {
match self {
Firmware::Uefi { .. } | Firmware::OpenhclUefi { .. } => true,
Firmware::LinuxDirect { .. }
| Firmware::OpenhclLinuxDirect { .. }
| Firmware::Pcat { .. } => false,
}
}
fn os_flavor(&self) -> OsFlavor {
match self {
Firmware::LinuxDirect { .. } | Firmware::OpenhclLinuxDirect { .. } => OsFlavor::Linux,
Firmware::Uefi {
guest: UefiGuest::GuestTestUefi { .. } | UefiGuest::None,
..
}
| Firmware::OpenhclUefi {
guest: UefiGuest::GuestTestUefi { .. } | UefiGuest::None,
..
} => OsFlavor::Uefi,
Firmware::Pcat {
guest: PcatGuest::Vhd(cfg),
..
}
| Firmware::Uefi {
guest: UefiGuest::Vhd(cfg),
..
}
| Firmware::OpenhclUefi {
guest: UefiGuest::Vhd(cfg),
..
} => cfg.os_flavor,
Firmware::Pcat {
guest: PcatGuest::Iso(cfg),
..
} => cfg.os_flavor,
}
}
fn quirks(&self) -> GuestQuirks {
match self {
Firmware::Pcat {
guest: PcatGuest::Vhd(cfg),
..
}
| Firmware::Uefi {
guest: UefiGuest::Vhd(cfg),
..
}
| Firmware::OpenhclUefi {
guest: UefiGuest::Vhd(cfg),
..
} => cfg.quirks,
Firmware::Pcat {
guest: PcatGuest::Iso(cfg),
..
} => cfg.quirks,
_ => Default::default(),
}
}
fn expected_boot_event(&self) -> Option<FirmwareEvent> {
match self {
Firmware::LinuxDirect { .. } | Firmware::OpenhclLinuxDirect { .. } => None,
Firmware::Pcat { .. } => {
// TODO: Handle older PCAT versions that don't fire the event
Some(FirmwareEvent::BootAttempt)
}
Firmware::Uefi {
guest: UefiGuest::None,
..
}
| Firmware::OpenhclUefi {
guest: UefiGuest::None,
..
} => Some(FirmwareEvent::NoBootDevice),
Firmware::Uefi { .. } | Firmware::OpenhclUefi { .. } => {
Some(FirmwareEvent::BootSuccess)
}
}
}
}
/// The guest the VM will boot into. A boot drive with the chosen setup
/// will be automatically configured.
#[derive(Debug)]
pub enum PcatGuest {
/// Mount a VHD as the boot drive.
Vhd(BootImageConfig<boot_image_type::Vhd>),
/// Mount an ISO as the CD/DVD drive.
Iso(BootImageConfig<boot_image_type::Iso>),
}
impl PcatGuest {
fn artifact(&self) -> &ResolvedArtifact {
match self {
PcatGuest::Vhd(disk) => &disk.artifact,
PcatGuest::Iso(disk) => &disk.artifact,
}
}
}
/// The guest the VM will boot into. A boot drive with the chosen setup
/// will be automatically configured.
#[derive(Debug)]
pub enum UefiGuest {
/// Mount a VHD as the boot drive.
Vhd(BootImageConfig<boot_image_type::Vhd>),
/// The UEFI test image produced by our guest-test infrastructure.
GuestTestUefi(ResolvedArtifact),
/// No guest, just the firmware.
None,
}
impl UefiGuest {
/// Construct a standard [`UefiGuest::GuestTestUefi`] configuration.
pub fn guest_test_uefi(resolver: &ArtifactResolver<'_>, arch: MachineArch) -> Self {
use petri_artifacts_vmm_test::artifacts::test_vhd::*;
let artifact = match arch {
MachineArch::X86_64 => resolver.require(GUEST_TEST_UEFI_X64).erase(),
MachineArch::Aarch64 => resolver.require(GUEST_TEST_UEFI_AARCH64).erase(),
};
UefiGuest::GuestTestUefi(artifact)
}
fn artifact(&self) -> &ResolvedArtifact {
match self {
UefiGuest::Vhd(vhd) => &vhd.artifact,
UefiGuest::GuestTestUefi(p) => p,
UefiGuest::None => unreachable!(),
}
}
}
/// Type-tags for [`BootImageConfig`](super::BootImageConfig)
pub mod boot_image_type {
mod private {
pub trait Sealed {}
impl Sealed for super::Vhd {}
impl Sealed for super::Iso {}
}
/// Private trait use to seal the set of artifact types BootImageType
/// supports.
pub trait BootImageType: private::Sealed {}
/// BootImageConfig for a VHD file
#[derive(Debug)]
pub enum Vhd {}
/// BootImageConfig for an ISO file
#[derive(Debug)]
pub enum Iso {}
impl BootImageType for Vhd {}
impl BootImageType for Iso {}
}
/// Configuration information for the boot drive of the VM.
#[derive(Debug)]
pub struct BootImageConfig<T: boot_image_type::BootImageType> {
/// Artifact handle corresponding to the boot media.
artifact: ResolvedArtifact,
/// The OS flavor.
os_flavor: OsFlavor,
/// Any quirks needed to boot the guest.
///
/// Most guests should not need any quirks, and can use `Default`.
quirks: GuestQuirks,
/// Marker denoting what type of media `artifact` corresponds to
_type: core::marker::PhantomData<T>,
}
impl BootImageConfig<boot_image_type::Vhd> {
/// Create a new BootImageConfig from a VHD artifact handle
pub fn from_vhd<A>(artifact: ResolvedArtifact<A>) -> Self
where
A: petri_artifacts_common::tags::IsTestVhd,
{
BootImageConfig {
artifact: artifact.erase(),
os_flavor: A::OS_FLAVOR,
quirks: A::quirks(),
_type: std::marker::PhantomData,
}
}
}
impl BootImageConfig<boot_image_type::Iso> {
/// Create a new BootImageConfig from an ISO artifact handle
pub fn from_iso<A>(artifact: ResolvedArtifact<A>) -> Self
where
A: petri_artifacts_common::tags::IsTestIso,
{
BootImageConfig {
artifact: artifact.erase(),
os_flavor: A::OS_FLAVOR,
quirks: A::quirks(),
_type: std::marker::PhantomData,
}
}
}
/// Isolation type
#[derive(Debug, Clone, Copy)]
pub enum IsolationType {
/// VBS
Vbs,
/// SNP
Snp,
/// TDX
Tdx,
}
/// Flags controlling servicing behavior.
#[derive(Default)]
pub struct OpenHclServicingFlags {
/// Preserve DMA memory for NVMe devices if supported.
pub enable_nvme_keepalive: bool,
}