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
use vm_memory::{ByteValued, Bytes, GuestMemory};
use crate::configurator::{BootConfigurator, BootParams, Error as BootConfiguratorError, Result};
use crate::loader_gen::start_info::{hvm_memmap_table_entry, hvm_modlist_entry, hvm_start_info};
use std::fmt;
pub struct PvhBootConfigurator {}
#[derive(Debug, PartialEq)]
pub enum Error {
MemmapTableAddressMissing,
MemmapTableMissing,
MemmapTablePastRamEnd,
MemmapTableSetup,
StartInfoPastRamEnd,
StartInfoSetup,
}
impl fmt::Display for Error {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
use Error::*;
let desc = match self {
MemmapTableAddressMissing => {
"the starting address for the memory map wasn't passed to the boot configurator."
}
MemmapTableMissing => "no memory map was passed to the boot configurator.",
MemmapTablePastRamEnd => "the memory map table extends past the end of guest memory.",
MemmapTableSetup => "error writing memory map table to guest memory.",
StartInfoPastRamEnd => {
"the hvm_start_info structure extends past the end of guest memory."
}
StartInfoSetup => "error writing hvm_start_info to guest memory.",
};
write!(f, "PVH Boot Configurator: {}", desc)
}
}
impl std::error::Error for Error {}
impl From<Error> for BootConfiguratorError {
fn from(err: Error) -> Self {
BootConfiguratorError::Pvh(err)
}
}
unsafe impl ByteValued for hvm_start_info {}
unsafe impl ByteValued for hvm_memmap_table_entry {}
unsafe impl ByteValued for hvm_modlist_entry {}
impl BootConfigurator for PvhBootConfigurator {
fn write_bootparams<M>(params: &BootParams, guest_memory: &M) -> Result<()>
where
M: GuestMemory,
{
let memmap = params.sections.as_ref().ok_or(Error::MemmapTableMissing)?;
let memmap_addr = params
.sections_start
.ok_or(Error::MemmapTableAddressMissing)?;
guest_memory
.checked_offset(memmap_addr, memmap.len())
.ok_or(Error::MemmapTablePastRamEnd)?;
guest_memory
.write_slice(memmap.as_slice(), memmap_addr)
.map_err(|_| Error::MemmapTableSetup)?;
guest_memory
.checked_offset(params.header_start, params.header.len())
.ok_or(Error::StartInfoPastRamEnd)?;
guest_memory
.write_slice(params.header.as_slice(), params.header_start)
.map_err(|_| Error::StartInfoSetup)?;
Ok(())
}
}
#[cfg(test)]
mod tests {
use super::*;
use std::mem;
use vm_memory::{Address, GuestAddress, GuestMemoryMmap};
const XEN_HVM_START_MAGIC_VALUE: u32 = 0x336ec578;
const MEM_SIZE: u64 = 0x100_0000;
const E820_RAM: u32 = 1;
fn create_guest_mem() -> GuestMemoryMmap {
GuestMemoryMmap::from_ranges(&[(GuestAddress(0x0), (MEM_SIZE as usize))]).unwrap()
}
fn build_bootparams_common() -> (hvm_start_info, Vec<hvm_memmap_table_entry>) {
let mut start_info = hvm_start_info::default();
let memmap_entry = hvm_memmap_table_entry {
addr: 0x7000,
size: 0,
type_: E820_RAM,
reserved: 0,
};
start_info.magic = XEN_HVM_START_MAGIC_VALUE;
start_info.version = 1;
start_info.nr_modules = 0;
start_info.memmap_entries = 0;
(start_info, vec![memmap_entry])
}
#[test]
fn test_configure_pvh_boot() {
let (mut start_info, memmap_entries) = build_bootparams_common();
let guest_memory = create_guest_mem();
let start_info_addr = GuestAddress(0x6000);
let memmap_addr = GuestAddress(0x7000);
start_info.memmap_paddr = memmap_addr.raw_value();
let mut boot_params = BootParams::new::<hvm_start_info>(&start_info, start_info_addr);
assert_eq!(
PvhBootConfigurator::write_bootparams::<GuestMemoryMmap>(&boot_params, &guest_memory,)
.err(),
Some(Error::MemmapTableMissing.into())
);
let bad_start_info_addr = GuestAddress(
guest_memory.last_addr().raw_value() - mem::size_of::<hvm_start_info>() as u64 + 1,
);
boot_params.set_sections::<hvm_memmap_table_entry>(&memmap_entries, memmap_addr);
boot_params.header_start = bad_start_info_addr;
assert_eq!(
PvhBootConfigurator::write_bootparams::<GuestMemoryMmap>(&boot_params, &guest_memory,)
.err(),
Some(Error::StartInfoPastRamEnd.into())
);
let himem_start = GuestAddress(0x100000);
boot_params.header_start = himem_start;
let bad_memmap_addr = GuestAddress(
guest_memory.last_addr().raw_value() - mem::size_of::<hvm_memmap_table_entry>() as u64
+ 1,
);
boot_params.set_sections::<hvm_memmap_table_entry>(&memmap_entries, bad_memmap_addr);
assert_eq!(
PvhBootConfigurator::write_bootparams::<GuestMemoryMmap>(&boot_params, &guest_memory,)
.err(),
Some(Error::MemmapTablePastRamEnd.into())
);
boot_params.set_sections::<hvm_memmap_table_entry>(&memmap_entries, memmap_addr);
assert!(PvhBootConfigurator::write_bootparams::<GuestMemoryMmap>(
&boot_params,
&guest_memory,
)
.is_ok());
}
#[test]
fn test_error_messages() {
assert_eq!(
format!("{}", Error::MemmapTableMissing),
"PVH Boot Configurator: no memory map was passed to the boot configurator."
);
assert_eq!(
format!("{}", Error::MemmapTablePastRamEnd),
"PVH Boot Configurator: the memory map table extends past the end of guest memory."
);
assert_eq!(
format!("{}", Error::MemmapTableSetup),
"PVH Boot Configurator: error writing memory map table to guest memory."
);
assert_eq!(format!("{}", Error::StartInfoPastRamEnd), "PVH Boot Configurator: the hvm_start_info structure extends past the end of guest memory.");
assert_eq!(
format!("{}", Error::StartInfoSetup),
"PVH Boot Configurator: error writing hvm_start_info to guest memory."
);
}
}