hyperv_ic_resources/shutdown.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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
//! Resource definitions for the shutdown IC.
use mesh::MeshPayload;
use mesh::rpc::Rpc;
use vm_resource::ResourceId;
use vm_resource::kind::VmbusDeviceHandleKind;
/// A handle to a shutdown IC.
#[derive(MeshPayload)]
pub struct ShutdownIcHandle {
/// The channel by which to receive shutdown requests.
pub recv: mesh::Receiver<ShutdownRpc>,
}
impl ResourceId<VmbusDeviceHandleKind> for ShutdownIcHandle {
const ID: &'static str = "shutdown_ic";
}
/// An RPC request to the shutdown IC.
#[derive(MeshPayload)]
pub enum ShutdownRpc {
/// Wait for the shutdown IC to be ready.
///
/// Returns a receiver that closes when the IC is no longer ready.
///
/// FUTURE: this should instead be a `Sender` that is used to send the
/// shutdown request. Do this once `Sender` has a mechanism to wait on the
/// receiver to be closed.
WaitReady(Rpc<(), mesh::OneshotReceiver<()>>),
/// Send a shutdown request to the guest.
Shutdown(Rpc<ShutdownParams, ShutdownResult>),
}
/// Guest shutdown parameters.
#[derive(Debug, MeshPayload)]
pub struct ShutdownParams {
/// The type of power state change.
pub shutdown_type: ShutdownType,
/// Whether to force a shutdown.
pub force: bool,
}
/// The shutdown type.
#[derive(Debug, MeshPayload)]
pub enum ShutdownType {
/// Power off the VM.
PowerOff,
/// Reboot the VM.
Reboot,
/// Hibernate the VM.
Hibernate,
}
/// The result of a shutdown request.
#[derive(MeshPayload, Debug, PartialEq)]
pub enum ShutdownResult {
/// The shutdown has been initiated.
Ok,
/// The IC is not ready to send shutdown requests.
NotReady,
/// A shutdown is already in progress.
AlreadyInProgress,
/// The shutdown failed with the given error code.
Failed(u32),
}