sidecar_defs/
lib.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

//! Definitions for the sidecar kernel.

#![no_std]
#![forbid(unsafe_code)]

use core::sync::atomic::AtomicU8;
use core::sync::atomic::AtomicU32;
use hvdef::HvMessage;
use hvdef::HvStatus;
use hvdef::hypercall::HvInputVtl;
use open_enum::open_enum;
use zerocopy::FromBytes;
use zerocopy::FromZeros;
use zerocopy::Immutable;
use zerocopy::IntoBytes;
use zerocopy::KnownLayout;

/// Sidecar start input parameters.
#[repr(C, align(4096))]
#[derive(FromZeros, Immutable, KnownLayout)]
pub struct SidecarParams {
    /// The physical address of the x86-64 hypercall page.
    pub hypercall_page: u64,
    /// If true, enabling serial logging.
    pub enable_logging: bool,
    /// The number of valid nodes in `nodes`.
    pub node_count: u32,
    /// The node-specific input parameters.
    pub nodes: [SidecarNodeParams; MAX_NODES],
}

/// Node-specific input parameters.
#[repr(C)]
#[derive(FromZeros, Immutable, KnownLayout)]
pub struct SidecarNodeParams {
    /// The physical address of the beginning of the reserved memory for this
    /// node. Must be page aligned.
    pub memory_base: u64,
    /// The size of the reserved memory region. Must be a page multiple.
    pub memory_size: u64,
    /// The base VP for this node.
    pub base_vp: u32,
    /// The number of VPs in the node.
    pub vp_count: u32,
}

/// The maximum number of supported sidecar nodes.
pub const MAX_NODES: usize = 128;

const _: () = assert!(size_of::<SidecarParams>() <= PAGE_SIZE);

/// The output of the sidecar kernel boot process.
#[repr(C)]
#[derive(FromZeros, Immutable, KnownLayout)]
pub struct SidecarOutput {
    /// The boot error. This is only set if the entry point returns false.
    pub error: CommandError,
    /// The per-node output information.
    pub nodes: [SidecarNodeOutput; MAX_NODES],
}

/// The per-node output of the sidecar kernel boot process.
#[repr(C)]
#[derive(FromZeros, Immutable, KnownLayout)]
pub struct SidecarNodeOutput {
    /// The physical address of the control page for the node.
    pub control_page: u64,
    /// The base physical address of the per-VP pages for the node.
    pub shmem_pages_base: u64,
    /// The size of the VP page region.
    pub shmem_pages_size: u64,
}

const _: () = assert!(size_of::<SidecarOutput>() <= PAGE_SIZE);

/// The page size for all sidecar objects.
pub const PAGE_SIZE: usize = 4096;

/// The per-node control page, which is used to communicate between the sidecar
/// kernel and the main kernel sidecar kernel driver.
#[repr(C, align(4096))]
pub struct ControlPage {
    /// The node index.
    pub index: AtomicU32,
    /// The base CPU of the node.
    pub base_cpu: AtomicU32,
    /// The number of CPUs in the node.
    pub cpu_count: AtomicU32,
    /// The vector the driver should IPI to wake up a sidecar CPU.
    pub request_vector: AtomicU32,
    /// The APIC ID of the CPU that the sidecar CPU should IPI to wake up the
    /// driver.
    pub response_cpu: AtomicU32,
    /// The vector the sidecar CPU should IPI to wake up the driver.
    pub response_vector: AtomicU32,
    /// If non-zero, then a sidecar CPU has a message for the driver.
    pub needs_attention: AtomicU32,
    /// Reserved.
    pub reserved: [u8; 36],
    /// The per-CPU status.
    pub cpu_status: [AtomicU8; 4032],
}

const _: () = assert!(size_of::<ControlPage>() == PAGE_SIZE);

open_enum::open_enum! {
    /// The CPU status.
    pub enum CpuStatus: u8 {
        /// The CPU is not running in the sidecar kernel.
        REMOVED = 0,
        /// The CPU is idle, having completed any previous commands.
        IDLE = 1,
        /// The CPU is running a command.
        RUN = 2,
        /// The CPU is being asked to stop running a command.
        STOP = 3,
        /// The CPU is being asked to terminate.
        REMOVE = 4,
    }
}

/// The number of reserved pages required for each VP.
// 1. pml4
// 2. pdpt
// 3. pd
// 4. pt
// 5. globals
// 6. vp assist page
// 7. hypercall input page
// 8. hypercall output page
pub const PER_VP_PAGES: usize = 8 + STACK_PAGES;

/// The number of per-VP shared-memory pages.
// 1. command page
// 2. register page
pub const PER_VP_SHMEM_PAGES: usize = 2;

/// The number of pages in the per-VP stack.
pub const STACK_PAGES: usize = 3;

/// The required memory (in bytes) for a node.
pub const fn required_memory(vp_count: u32) -> usize {
    // Control page + per-VP pages.
    (1 + (PER_VP_SHMEM_PAGES + PER_VP_PAGES) * vp_count as usize) * PAGE_SIZE
}

/// The sidecar command page, containing command requests and responses.
#[repr(C)]
#[derive(Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct CommandPage {
    /// The command to run.
    pub command: SidecarCommand,
    /// If non-zero, the command failed.
    pub has_error: u8,
    /// Padding bytes.
    pub padding: [u8; 11],
    /// The current CPU register state.
    pub cpu_context: CpuContextX64,
    /// The intercept message from the last VP exit.
    pub intercept_message: HvMessage,
    /// The error, if `has_error` is non-zero.
    pub error: CommandError,
    /// The request data for the command.
    pub request_data: [u128; REQUEST_DATA_SIZE / size_of::<u128>()],
    /// Reserved.
    pub reserved: [u64; 190],
}

const REQUEST_DATA_SIZE: usize = 64 * size_of::<u128>();

/// A string error.
#[repr(C)]
#[derive(Debug, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct CommandError {
    /// The length of the error string, in bytes.
    pub len: u8,
    /// The error string, encoded as UTF-8, containing `len` bytes.
    pub buf: [u8; 255],
}

const _: () = assert!(size_of::<CommandPage>() == PAGE_SIZE);

open_enum! {
    /// The sidecar command.
    #[derive(IntoBytes, Immutable, KnownLayout, FromBytes)]
    pub enum SidecarCommand: u32 {
        /// No command.
        NONE = 0,
        /// Run the VP until cancelled or an intercept occurs.
        RUN_VP = 1,
        /// Gets VP registers.
        GET_VP_REGISTERS = 2,
        /// Sets VP registers.
        SET_VP_REGISTERS = 3,
        /// Translates a guest virtual address.
        TRANSLATE_GVA = 4,
    }
}

/// A request and response for [`SidecarCommand::GET_VP_REGISTERS`] or
/// [`SidecarCommand::SET_VP_REGISTERS`].
///
/// Followed by an array of [`hvdef::hypercall::HvRegisterAssoc`], which are
/// updated in place for the get request.
#[repr(C)]
#[derive(Debug, Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct GetSetVpRegisterRequest {
    /// The number of registers to get.
    pub count: u16,
    /// The target VTL.
    pub target_vtl: HvInputVtl,
    /// Reserved.
    pub rsvd: u8,
    /// The hypervisor result.
    pub status: HvStatus,
    /// Reserved.
    pub rsvd2: [u8; 10],
    /// Alignment field.
    pub regs: [hvdef::hypercall::HvRegisterAssoc; 0],
}

/// The maximum number of registers that can be requested in a single
/// [`SidecarCommand::GET_VP_REGISTERS`] or
/// [`SidecarCommand::SET_VP_REGISTERS`].
pub const MAX_GET_SET_VP_REGISTERS: usize = (REQUEST_DATA_SIZE
    - size_of::<GetSetVpRegisterRequest>())
    / size_of::<hvdef::hypercall::HvRegisterAssoc>();

/// A request for [`SidecarCommand::TRANSLATE_GVA`].
#[repr(C)]
#[derive(Debug, Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct TranslateGvaRequest {
    /// The guest virtual address page number.
    pub gvn: u64,
    /// The control flags.
    pub control_flags: hvdef::hypercall::TranslateGvaControlFlagsX64,
}

/// A response for [`SidecarCommand::TRANSLATE_GVA`].
#[repr(C)]
#[derive(Debug, Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct TranslateGvaResponse {
    /// The hypervisor result.
    pub status: HvStatus,
    /// Reserved.
    pub rsvd: [u16; 7],
    /// The output of the translation.
    pub output: hvdef::hypercall::TranslateVirtualAddressExOutputX64,
}

/// A response for [`SidecarCommand::RUN_VP`].
#[repr(C)]
#[derive(Debug, Copy, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct RunVpResponse {
    /// If true, the VP was stopped due to an intercept.
    pub intercept: u8,
}

/// The CPU context for x86-64.
#[repr(C, align(16))]
#[derive(Debug, Clone, IntoBytes, Immutable, KnownLayout, FromBytes)]
pub struct CpuContextX64 {
    /// The general purpose registers, in the usual order, except CR2 is in
    /// RSP's position.
    pub gps: [u64; 16],
    /// The `fxsave` state.
    pub fx_state: x86defs::xsave::Fxsave,
    /// Reserved.
    pub reserved: [u8; 384],
}

impl CpuContextX64 {
    /// The index of the RAX register.
    pub const RAX: usize = 0;
    /// The index of the RCX register.
    pub const RCX: usize = 1;
    /// The index of the RDX register.
    pub const RDX: usize = 2;
    /// The index of the RBX register.
    pub const RBX: usize = 3;
    /// The index of the CR2 register.
    pub const CR2: usize = 4;
    /// The index of the RBP register.
    pub const RBP: usize = 5;
    /// The index of the RSI register.
    pub const RSI: usize = 6;
    /// The index of the RDI register.
    pub const RDI: usize = 7;
    /// The index of the R8 register.
    pub const R8: usize = 8;
    /// The index of the R9 register.
    pub const R9: usize = 9;
    /// The index of the R10 register.
    pub const R10: usize = 10;
    /// The index of the R11 register.
    pub const R11: usize = 11;
    /// The index of the R12 register.
    pub const R12: usize = 12;
    /// The index of the R13 register.
    pub const R13: usize = 13;
    /// The index of the R14 register.
    pub const R14: usize = 14;
    /// The index of the R15 register.
    pub const R15: usize = 15;
}