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

use async_trait::async_trait;
use hvdef::Vtl;
use inspect::InspectMut;
use memory_range::MemoryRange;
use std::sync::Arc;
use virt::PageVisibility;
use virt_mshv_vtl::UhPartition;
use vmcore::save_restore::NoSavedState;
use vmcore::save_restore::RestoreError;
use vmcore::save_restore::SaveError;
use vmcore::save_restore::SaveRestore;
use vmm_core::partition_unit::VmPartition;

/// Wraps `Arc<UhPartition>` and implements [`VmPartition`].
#[derive(InspectMut)]
#[inspect(transparent)]
pub struct WrappedPartition(pub Arc<UhPartition>);

#[async_trait]
impl VmPartition for WrappedPartition {
    fn reset(&mut self) -> anyhow::Result<()> {
        anyhow::bail!("reset not supported")
    }

    fn scrub_vtl(&mut self, _vtl: Vtl) -> anyhow::Result<()> {
        unreachable!()
    }

    fn accept_initial_pages(
        &mut self,
        _pages: Vec<(MemoryRange, PageVisibility)>,
    ) -> anyhow::Result<()> {
        unreachable!()
    }
}

impl SaveRestore for WrappedPartition {
    type SavedState = NoSavedState;

    fn save(&mut self) -> Result<Self::SavedState, SaveError> {
        Ok(NoSavedState)
    }

    fn restore(&mut self, NoSavedState: Self::SavedState) -> Result<(), RestoreError> {
        Ok(())
    }
}