underhill_core/emuplat/
firmware.rs#[cfg(guest_arch = "x86_64")]
use firmware_pcat::PcatEvent;
#[cfg(guest_arch = "x86_64")]
use firmware_pcat::PcatLogger;
use firmware_uefi::platform::logger::UefiEvent;
use firmware_uefi::platform::logger::UefiLogger;
use guest_emulation_transport::GuestEmulationTransportClient;
use guest_emulation_transport::api::EventLogId;
use std::sync::Weak;
use virt_mshv_vtl::UhPartition;
#[derive(Debug)]
pub struct UnderhillLogger {
pub get: GuestEmulationTransportClient,
}
impl UefiLogger for UnderhillLogger {
fn log_event(&self, event: UefiEvent) {
let log_event_id = match event {
UefiEvent::BootSuccess(boot_info) => {
if boot_info.secure_boot_succeeded {
EventLogId::BOOT_SUCCESS
} else {
EventLogId::BOOT_SUCCESS_SECURE_BOOT_FAILED
}
}
UefiEvent::BootFailure(boot_info) => {
if boot_info.secure_boot_succeeded {
EventLogId::BOOT_FAILURE
} else {
EventLogId::BOOT_FAILURE_SECURE_BOOT_FAILED
}
}
UefiEvent::NoBootDevice => EventLogId::NO_BOOT_DEVICE,
};
self.get.event_log(log_event_id);
}
}
#[cfg(guest_arch = "x86_64")]
impl PcatLogger for UnderhillLogger {
fn log_event(&self, event: PcatEvent) {
let log_event_id = match event {
PcatEvent::BootFailure => EventLogId::BOOT_FAILURE,
PcatEvent::BootAttempt => EventLogId::BOOT_ATTEMPT,
};
self.get.event_log(log_event_id);
}
}
#[derive(Debug)]
pub struct UnderhillVsmConfig {
pub partition: Weak<UhPartition>,
}
impl firmware_uefi::platform::nvram::VsmConfig for UnderhillVsmConfig {
fn revoke_guest_vsm(&self) {
if let Some(partition) = self.partition.upgrade() {
if let Err(err) = partition.revoke_guest_vsm() {
tracing::warn!(
error = &err as &dyn std::error::Error,
"failed to revoke guest vsm"
);
}
}
}
}