guest_emulation_transport/
error.rsuse thiserror::Error;
#[derive(Debug, Error)]
#[error("vmgs io error: {0:?}")]
pub struct VmgsIoError(pub(crate) get_protocol::VmgsIoStatus);
#[expect(missing_docs)] #[derive(Debug, Error)]
pub enum DevicePlatformSettingsError {
#[error("unknown secure boot template type: {0:?}")]
UnknownSecureBootTemplateType(get_protocol::SecureBootTemplateType),
#[error("invalid console mode (must be 0b00..=0b11): {}", 0.0)]
InvalidConsoleMode(get_protocol::UefiConsoleMode),
#[error("invalid memory protection mode (must be 0b00..=0b11): {0}")]
InvalidMemoryProtectionMode(u8),
#[error("could not parse DPSv2 JSON")]
BadJson(#[source] serde_json::Error),
#[error("could not parse embedded VTL2 settings data")]
BadVtl2Settings(#[source] underhill_config::schema::ParseError),
#[error("invalid legacy bool representation ({0:?})")]
InvalidProtocolBool(#[from] InvalidProtocolBool),
}
#[derive(Debug, Error)]
#[error("expected 0 or 1, found {0}")]
pub struct InvalidProtocolBool(pub(crate) u8);
#[derive(Debug, Error)]
#[error("map framebuffer error: {0:?}")]
pub struct MapFramebufferError(pub(crate) get_protocol::MapFramebufferStatus);
#[derive(Debug, Error)]
#[error("unmap framebuffer error: {0:?}")]
pub struct UnmapFramebufferError(pub(crate) get_protocol::UnmapFramebufferStatus);
#[derive(Debug, Error)]
#[error("vpci operation error: {0:?}")]
pub struct VpciControlError(pub(crate) get_protocol::VpciDeviceControlStatus);
#[derive(Debug, Error)]
#[error("create ram GPA range error: {0:?}")]
pub struct CreateRamGpaRangeError(pub(crate) get_protocol::CreateRamGpaRangeStatus);
#[derive(Debug, Error)]
#[error("malformed response - reported len > actual len: {0} > {1}")]
pub struct GuestStateProtectionByIdError(pub(crate) u32, pub(crate) u32);
#[derive(Debug, Error)]
#[error("host rejected save/restore operation")]
#[non_exhaustive]
pub struct SaveRestoreOperationFailure {}
#[expect(missing_docs)] #[derive(Debug, Error)]
pub enum IgvmAttestError {
#[error("`agent_data` size {input_size} was larger than expected {expected_size}")]
InvalidAgentDataSize {
input_size: usize,
expected_size: usize,
},
#[error("`report` size {input_size} was larger than expected {expected_size}")]
InvalidReportSize {
input_size: usize,
expected_size: usize,
},
#[error("IGVM agent returned an error")]
IgvmAgentGenericError,
}
pub(crate) trait TryIntoProtocolBool {
fn into_bool(self) -> Result<bool, InvalidProtocolBool>;
}
impl TryIntoProtocolBool for get_protocol::ProtocolBool {
fn into_bool(self) -> Result<bool, InvalidProtocolBool> {
match self.0 {
0 => Ok(false),
1 => Ok(true),
_ => Err(InvalidProtocolBool(self.0)),
}
}
}