use bitfield_struct::bitfield;
use guid::Guid;
use zerocopy::FromBytes;
use zerocopy::Immutable;
use zerocopy::IntoBytes;
use zerocopy::KnownLayout;
use zerocopy::Unaligned;
pub const CRASHDUMP_GUID: Guid = guid::guid!("427b03e7-4ceb-4286-b5fc-486f4a1dd439");
#[bitfield(u64)]
#[derive(IntoBytes, FromBytes, Immutable, KnownLayout, PartialEq, Eq)]
pub struct Capabilities {
pub windows_config_v1: bool,
pub linux_config_v1: bool,
#[bits(62)]
pub reserved: u64,
}
open_enum::open_enum! {
#[derive(IntoBytes, FromBytes, Immutable, KnownLayout)]
pub enum DumpType: u32 {
NONE = 0x00000000,
ELF = 0x00000001,
KDUMP = 0x00000002,
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct ConfigV1 {
pub max_dump_size: u64,
pub dump_type: DumpType,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct CompletionInfoV1 {
pub major_version: u32,
pub minor_version: u32,
pub version_banner: [u8; 256],
pub vtl: u8,
}
open_enum::open_enum! {
#[derive(IntoBytes, FromBytes, Immutable, KnownLayout)]
pub enum MessageType : u64 {
INVALID = 0, REQUEST_GET_CAPABILITIES_V1 = 0x00000001,
REQUEST_GET_WINDOWS_DUMP_CONFIG_V1 = 0x00000002,
REQUEST_WINDOWS_DUMP_START_V1 = 0x00000003,
REQUEST_WINDOWS_DUMP_WRITE_V1 = 0x00000004,
REQUEST_WINDOWS_DUMP_COMPLETE_V1 = 0x00000005,
REQUEST_GET_NIX_DUMP_CONFIG_V1 = 0x00000102,
REQUEST_NIX_DUMP_START_V1 = 0x00000103,
REQUEST_NIX_DUMP_WRITE_V1 = 0x00000104,
REQUEST_NIX_DUMP_COMPLETE_V1 = 0x00000105,
RESPONSE_GET_CAPABILITIES_V1 = 0x00010001,
RESPONSE_GET_WINDOWS_DUMP_CONFIG_V1 = 0x00010002,
RESPONSE_WINDOWS_DUMP_START_V1 = 0x00010003,
RESPONSE_WINDOWS_DUMP_WRITE_V1 = 0x00010004,
RESPONSE_WINDOWS_DUMP_COMPLETE_V1 = 0x00010005,
RESPONSE_GET_NIX_DUMP_CONFIG_V1 = 0x00010102,
RESPONSE_NIX_DUMP_START_V1 = 0x00010103,
RESPONSE_NIX_DUMP_WRITE_V1 = 0x00010104,
RESPONSE_NIX_DUMP_COMPLETE_V1 = 0x00010105,
}
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct Header {
pub activity_id: Guid,
pub message_type: MessageType,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpCapabilitiesRequestV1 {
pub header: Header,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpCapabilitiesResponseV1 {
pub header: Header,
pub capabilities: Capabilities,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpConfigRequestV1 {
pub header: Header,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpConfigResponseV1 {
pub header: Header,
pub config: ConfigV1,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpStartRequestV1 {
pub header: Header,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpStartResponseV1 {
pub header: Header,
pub status: i32,
}
#[derive(
Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout, Unaligned,
)]
#[repr(C, packed)]
pub struct DumpWriteRequestV1 {
pub header: Header,
pub offset: u64,
pub size: u32,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpWriteResponseV1 {
pub header: Header,
pub status: i32,
}
#[derive(Debug, Copy, Clone, PartialEq, Eq, IntoBytes, FromBytes, Immutable, KnownLayout)]
#[repr(C, packed)]
pub struct DumpCompleteRequestV1 {
pub header: Header,
pub info: CompletionInfoV1,
}