guest_emulation_transport/
api.rspub use get_protocol::CreateRamGpaRangeFlags;
pub use get_protocol::EventLogId;
pub use get_protocol::GSP_CIPHERTEXT_MAX;
pub use get_protocol::GspCiphertextContent;
pub use get_protocol::GspCleartextContent;
pub use get_protocol::GspExtendedStatusFlags;
pub use get_protocol::IGVM_ATTEST_MSG_REQ_AGENT_DATA_MAX_SIZE;
pub use get_protocol::MAX_TRANSFER_SIZE;
pub use get_protocol::NUMBER_GSP;
pub use get_protocol::ProtocolVersion;
pub use get_protocol::SaveGuestVtl2StateFlags;
pub use get_protocol::VmgsIoStatus;
use zerocopy::FromZeros;
use guid::Guid;
#[expect(missing_docs)]
pub mod platform_settings {
pub use get_protocol::dps_json::PcatBootDevice;
use guid::Guid;
use inspect::Inspect;
#[derive(Debug, Inspect)]
pub struct DevicePlatformSettings {
pub smbios: Smbios,
pub general: General,
#[inspect(with = "inspect::iter_by_index")]
pub acpi_tables: Vec<Vec<u8>>,
}
#[derive(Debug, Inspect)]
pub struct Smbios {
pub serial_number: Vec<u8>,
pub base_board_serial_number: Vec<u8>,
pub chassis_serial_number: Vec<u8>,
pub chassis_asset_tag: Vec<u8>,
pub system_manufacturer: Vec<u8>,
pub system_product_name: Vec<u8>,
pub system_version: Vec<u8>,
pub system_sku_number: Vec<u8>,
pub system_family: Vec<u8>,
pub bios_lock_string: Vec<u8>,
pub memory_device_serial_number: Vec<u8>,
pub processor_manufacturer: Vec<u8>,
pub processor_version: Vec<u8>,
pub processor_id: u64,
pub external_clock: u16,
pub max_speed: u16,
pub current_speed: u16,
pub processor_characteristics: u16,
pub processor_family2: u16,
pub processor_type: u8,
pub voltage: u8,
pub status: u8,
pub processor_upgrade: u8,
}
#[derive(Debug, Inspect)]
pub struct General {
pub secure_boot_enabled: bool,
pub secure_boot_template: SecureBootTemplateType,
pub bios_guid: Guid,
pub console_mode: UefiConsoleMode,
pub battery_enabled: bool,
pub processor_idle_enabled: bool,
pub tpm_enabled: bool,
pub com1_enabled: bool,
pub com1_debugger_mode: bool,
pub com1_vmbus_redirector: bool,
pub com2_enabled: bool,
pub com2_debugger_mode: bool,
pub com2_vmbus_redirector: bool,
pub firmware_debugging_enabled: bool,
pub hibernation_enabled: bool,
pub suppress_attestation: Option<bool>,
pub generation_id: Option<[u8; 16]>,
pub legacy_memory_map: bool,
pub pause_after_boot_failure: bool,
pub pxe_ip_v6: bool,
pub measure_additional_pcrs: bool,
pub disable_frontpage: bool,
pub disable_sha384_pcr: bool,
pub media_present_enabled_by_default: bool,
pub vpci_boot_enabled: bool,
pub memory_protection_mode: MemoryProtectionMode,
pub num_lock_enabled: bool,
#[inspect(with = "|x| inspect::iter_by_index(x).map_value(inspect::AsDebug)")]
pub pcat_boot_device_order: [PcatBootDevice; 4],
pub vpci_instance_filter: Option<Guid>,
pub nvdimm_count: u16,
pub psp_enabled: bool,
pub vmbus_redirection_enabled: bool,
pub always_relay_host_mmio: bool,
pub vtl2_settings: Option<underhill_config::Vtl2Settings>,
pub is_servicing_scenario: bool,
pub watchdog_enabled: bool,
pub firmware_mode_is_pcat: bool,
pub imc_enabled: bool,
pub cxl_memory_enabled: bool,
}
#[derive(Copy, Clone, Debug, Inspect)]
pub enum MemoryProtectionMode {
Disabled = 0,
Default = 1,
Strict = 2,
Relaxed = 3,
}
#[derive(Debug, Inspect)]
pub enum UefiConsoleMode {
Default = 0,
COM1 = 1,
COM2 = 2,
None = 3,
}
#[derive(Debug, Inspect)]
pub enum SecureBootTemplateType {
None,
MicrosoftWindows,
MicrosoftUefiCertificateAuthority,
}
}
pub struct GuestStateProtection {
pub encrypted_gsp: GspCiphertextContent,
pub decrypted_gsp: [GspCleartextContent; NUMBER_GSP as usize],
pub extended_status_flags: GspExtendedStatusFlags,
pub new_gsp: GspCleartextContent,
}
#[derive(Copy, Clone)]
pub struct GuestStateProtectionById {
pub seed: GspCleartextContent,
pub extended_status_flags: GspExtendedStatusFlags,
}
impl GuestStateProtectionById {
pub fn new_zeroed() -> GuestStateProtectionById {
GuestStateProtectionById {
seed: GspCleartextContent::new_zeroed(),
extended_status_flags: GspExtendedStatusFlags::new_zeroed(),
}
}
}
#[derive(Clone)]
pub struct IgvmAttest {
pub response: Vec<u8>,
}
pub struct VmgsGetDeviceInfo {
pub status: VmgsIoStatus,
pub capacity: u64,
pub bytes_per_logical_sector: u16,
pub bytes_per_physical_sector: u16,
pub maximum_transfer_size_bytes: u32,
}
#[derive(Debug, Copy, Clone)]
pub struct Time {
pub utc: i64,
pub time_zone: i16,
}
#[derive(Debug)]
pub struct RemoteRamGpaRangeHandle(u32);
impl RemoteRamGpaRangeHandle {
pub fn as_raw(&self) -> u32 {
self.0
}
pub fn from_raw(handle: u32) -> Self {
RemoteRamGpaRangeHandle(handle)
}
}
pub struct GuestSaveRequest {
pub correlation_id: Guid,
pub deadline: std::time::Instant,
pub capabilities_flags: SaveGuestVtl2StateFlags,
}