underhill_core/emuplat/
firmware.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

#[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;

/// An Underhill specific logger used to log UEFI and PCAT events.
#[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"
                );
            }
        }
    }
}