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

//! Heartbeat component protocol.
use open_enum::open_enum;
use zerocopy::FromBytes;
use zerocopy::Immutable;
use zerocopy::IntoBytes;
use zerocopy::KnownLayout;

/// Heartbeat message from guest to host.
#[repr(C)]
#[derive(IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct HeartbeatMessage {
    /// Incrementing sequence counter.
    pub sequence_number: u64,
    /// Current state of the guest.
    pub application_state: ApplicationState,
    /// Reserved.
    pub reserved: [u8; 4],
}

open_enum! {
    #[derive(IntoBytes, Immutable, KnownLayout, FromBytes)]
    /// Current state of guest.
    pub enum ApplicationState: u32 {
        /// Guest is in an unknown state.
        UNKNOWN = 0,
        /// Guest is healthy.
        HEALTHY = 1,
        /// Guest encountered a critical error.
        CRITICAL = 2,
        /// Guest is no longer running.
        STOPPED = 3,
    }
}