-
Notifications
You must be signed in to change notification settings - Fork 1.9k
/
Copy pathintegration_tests.rs
409 lines (345 loc) · 14.5 KB
/
integration_tests.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
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
// Copyright 2020 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
use std::io::{Seek, SeekFrom};
use std::thread;
use std::time::Duration;
use vmm::builder::build_and_boot_microvm;
use vmm::devices::virtio::block::CacheType;
use vmm::persist::{snapshot_state_sanity_check, MicrovmState, MicrovmStateError, VmInfo};
use vmm::resources::VmResources;
use vmm::rpc_interface::{
LoadSnapshotError, PrebootApiController, RuntimeApiController, VmmAction, VmmActionError,
};
use vmm::seccomp::get_empty_filters;
use vmm::snapshot::Snapshot;
#[cfg(target_arch = "x86_64")]
use vmm::test_utils::dirty_tracking_vmm;
use vmm::test_utils::mock_resources::{MockVmResources, NOISY_KERNEL_IMAGE};
use vmm::test_utils::{create_vmm, default_vmm, default_vmm_no_boot};
use vmm::vmm_config::balloon::BalloonDeviceConfig;
use vmm::vmm_config::boot_source::BootSourceConfig;
use vmm::vmm_config::drive::BlockDeviceConfig;
use vmm::vmm_config::instance_info::{InstanceInfo, VmState};
use vmm::vmm_config::machine_config::{MachineConfig, MachineConfigUpdate};
use vmm::vmm_config::net::NetworkInterfaceConfig;
use vmm::vmm_config::snapshot::{
CreateSnapshotParams, LoadSnapshotParams, MemBackendConfig, MemBackendType, SnapshotType,
};
use vmm::vmm_config::vsock::VsockDeviceConfig;
use vmm::{DumpCpuConfigError, EventManager, FcExitCode};
use vmm_sys_util::tempfile::TempFile;
#[test]
fn test_build_and_boot_microvm() {
// Error case: no boot source configured.
{
let resources: VmResources = MockVmResources::new().into();
let mut event_manager = EventManager::new().unwrap();
let empty_seccomp_filters = get_empty_filters();
let vmm_ret = build_and_boot_microvm(
&InstanceInfo::default(),
&resources,
&mut event_manager,
&empty_seccomp_filters,
);
assert_eq!(format!("{:?}", vmm_ret.err()), "Some(MissingKernelConfig)");
}
// Success case.
let (vmm, mut _evmgr) = default_vmm(None);
// On x86_64, the vmm should exit once its workload completes and signals the exit event.
// On aarch64, the test kernel doesn't exit, so the vmm is force-stopped.
#[cfg(target_arch = "x86_64")]
_evmgr.run_with_timeout(500).unwrap();
#[cfg(target_arch = "aarch64")]
vmm.lock().unwrap().stop(FcExitCode::Ok);
assert_eq!(
vmm.lock().unwrap().shutdown_exit_code(),
Some(FcExitCode::Ok)
);
}
#[test]
fn test_build_microvm() {
// The built microVM should be in the `VmState::Paused` state here.
let (vmm, mut _evtmgr) = default_vmm_no_boot(None);
assert_eq!(vmm.lock().unwrap().instance_info().state, VmState::Paused);
// The microVM should be able to resume and exit successfully.
// On x86_64, the vmm should exit once its workload completes and signals the exit event.
// On aarch64, the test kernel doesn't exit, so the vmm is force-stopped.
vmm.lock().unwrap().resume_vm().unwrap();
#[cfg(target_arch = "x86_64")]
_evtmgr.run_with_timeout(500).unwrap();
#[cfg(target_arch = "aarch64")]
vmm.lock().unwrap().stop(FcExitCode::Ok);
assert_eq!(
vmm.lock().unwrap().shutdown_exit_code(),
Some(FcExitCode::Ok)
);
}
#[test]
fn test_pause_resume_microvm() {
// Tests that pausing and resuming a microVM work as expected.
let (vmm, _) = default_vmm(None);
let mut api_controller = RuntimeApiController::new(VmResources::default(), vmm.clone());
// There's a race between this thread and the vcpu thread, but this thread
// should be able to pause vcpu thread before it finishes running its test-binary.
api_controller.handle_request(VmmAction::Pause).unwrap();
// Pausing again the microVM should not fail (microVM remains in the
// `Paused` state).
api_controller.handle_request(VmmAction::Pause).unwrap();
api_controller.handle_request(VmmAction::Resume).unwrap();
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
#[test]
fn test_dirty_bitmap_error() {
// Error case: dirty tracking disabled.
let (vmm, _) = default_vmm(None);
// The vmm will start with dirty page tracking = OFF.
// With dirty tracking disabled, the underlying KVM_GET_DIRTY_LOG ioctl will fail
// with errno 2 (ENOENT) because KVM can't find any guest memory regions with dirty
// page tracking enabled.
assert_eq!(
format!("{:?}", vmm.lock().unwrap().get_dirty_bitmap().err()),
"Some(DirtyBitmap(Error(2)))"
);
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
#[test]
#[cfg(target_arch = "x86_64")]
fn test_dirty_bitmap_success() {
// The vmm will start with dirty page tracking = ON.
let (vmm, _) = dirty_tracking_vmm(Some(NOISY_KERNEL_IMAGE));
// Let it churn for a while and dirty some pages...
thread::sleep(Duration::from_millis(100));
let bitmap = vmm.lock().unwrap().get_dirty_bitmap().unwrap();
let num_dirty_pages: u32 = bitmap
.values()
.map(|bitmap_per_region| {
// Gently coerce to u32
let num_dirty_pages_per_region: u32 =
bitmap_per_region.iter().map(|n| n.count_ones()).sum();
num_dirty_pages_per_region
})
.sum();
assert!(num_dirty_pages > 0);
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
#[test]
fn test_disallow_snapshots_without_pausing() {
let (vmm, _) = default_vmm(Some(NOISY_KERNEL_IMAGE));
let vm_info = VmInfo {
mem_size_mib: 1u64,
..Default::default()
};
// Verify saving state while running is not allowed.
assert!(matches!(
vmm.lock().unwrap().save_state(&vm_info),
Err(MicrovmStateError::NotAllowed(_))
));
// Pause microVM.
vmm.lock().unwrap().pause_vm().unwrap();
// It is now allowed.
vmm.lock().unwrap().save_state(&vm_info).unwrap();
// Stop.
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
#[test]
fn test_disallow_dump_cpu_config_without_pausing() {
let (vmm, _) = default_vmm_no_boot(Some(NOISY_KERNEL_IMAGE));
// This call should succeed since the microVM is in the paused state before boot.
vmm.lock().unwrap().dump_cpu_config().unwrap();
// Boot the microVM.
vmm.lock().unwrap().resume_vm().unwrap();
// Verify this call is not allowed while running.
assert!(matches!(
vmm.lock().unwrap().dump_cpu_config(),
Err(DumpCpuConfigError::NotAllowed(_))
));
// Stop the microVM.
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
fn verify_create_snapshot(is_diff: bool) -> (TempFile, TempFile) {
let snapshot_file = TempFile::new().unwrap();
let memory_file = TempFile::new().unwrap();
let (vmm, _) = create_vmm(Some(NOISY_KERNEL_IMAGE), is_diff, true);
let resources = VmResources {
machine_config: MachineConfig {
mem_size_mib: 1,
track_dirty_pages: is_diff,
..Default::default()
},
..Default::default()
};
let vm_info = VmInfo::from(&resources);
let mut controller = RuntimeApiController::new(resources, vmm.clone());
// Be sure that the microVM is running.
thread::sleep(Duration::from_millis(200));
// Pause microVM.
controller.handle_request(VmmAction::Pause).unwrap();
// Create snapshot.
let snapshot_type = match is_diff {
true => SnapshotType::Diff,
false => SnapshotType::Full,
};
let snapshot_params = CreateSnapshotParams {
snapshot_type,
snapshot_path: snapshot_file.as_path().to_path_buf(),
mem_file_path: memory_file.as_path().to_path_buf(),
};
controller
.handle_request(VmmAction::CreateSnapshot(snapshot_params))
.unwrap();
vmm.lock().unwrap().stop(FcExitCode::Ok);
// Check that we can deserialize the microVM state from `snapshot_file`.
let snapshot_path = snapshot_file.as_path().to_path_buf();
let snapshot_file_metadata = std::fs::metadata(snapshot_path).unwrap();
let snapshot_len = snapshot_file_metadata.len() as usize;
let (restored_microvm_state, _) =
Snapshot::load::<_, MicrovmState>(&mut snapshot_file.as_file(), snapshot_len).unwrap();
assert_eq!(restored_microvm_state.vm_info, vm_info);
// Verify deserialized data.
// The default vmm has no devices and one vCPU.
assert_eq!(restored_microvm_state.device_states.block_devices.len(), 0);
assert_eq!(restored_microvm_state.device_states.net_devices.len(), 0);
assert!(restored_microvm_state.device_states.vsock_device.is_none());
assert_eq!(restored_microvm_state.vcpu_states.len(), 1);
(snapshot_file, memory_file)
}
fn verify_load_snapshot(snapshot_file: TempFile, memory_file: TempFile) {
let mut event_manager = EventManager::new().unwrap();
let empty_seccomp_filters = get_empty_filters();
let mut vm_resources = VmResources::default();
let mut preboot_api_controller = PrebootApiController::new(
&empty_seccomp_filters,
InstanceInfo::default(),
&mut vm_resources,
&mut event_manager,
);
preboot_api_controller
.handle_preboot_request(VmmAction::LoadSnapshot(LoadSnapshotParams {
snapshot_path: snapshot_file.as_path().to_path_buf(),
mem_backend: MemBackendConfig {
backend_path: memory_file.as_path().to_path_buf(),
backend_type: MemBackendType::File,
},
enable_diff_snapshots: false,
resume_vm: true,
}))
.unwrap();
let vmm = preboot_api_controller.built_vmm.take().unwrap();
assert_eq!(vmm.lock().unwrap().instance_info.state, VmState::Running);
vmm.lock().unwrap().stop(FcExitCode::Ok);
}
#[test]
fn test_create_and_load_snapshot() {
// Create diff snapshot.
let (snapshot_file, memory_file) = verify_create_snapshot(true);
// Create a new microVm from snapshot. This only tests code-level logic; it verifies
// that a microVM can be built with no errors from given snapshot.
// It does _not_ verify that the guest is actually restored properly. We're using
// python integration tests for that.
verify_load_snapshot(snapshot_file, memory_file);
// Create full snapshot.
let (snapshot_file, memory_file) = verify_create_snapshot(false);
// Create a new microVm from snapshot. This only tests code-level logic; it verifies
// that a microVM can be built with no errors from given snapshot.
// It does _not_ verify that the guest is actually restored properly. We're using
// python integration tests for that.
verify_load_snapshot(snapshot_file, memory_file);
}
#[test]
fn test_snapshot_load_sanity_checks() {
use vmm::persist::SnapShotStateSanityCheckError;
let mut microvm_state = get_microvm_state_from_snapshot();
snapshot_state_sanity_check(µvm_state).unwrap();
// Remove memory regions.
microvm_state.memory_state.regions.clear();
// Validate sanity checks fail because there is no mem region in state.
assert_eq!(
snapshot_state_sanity_check(µvm_state),
Err(SnapShotStateSanityCheckError::NoMemory)
);
}
fn get_microvm_state_from_snapshot() -> MicrovmState {
// Create a diff snapshot
let (snapshot_file, _) = verify_create_snapshot(true);
// Deserialize the microVM state.
let snapshot_file_metadata = snapshot_file.as_file().metadata().unwrap();
let snapshot_len = snapshot_file_metadata.len() as usize;
snapshot_file.as_file().seek(SeekFrom::Start(0)).unwrap();
let (state, _) = Snapshot::load(&mut snapshot_file.as_file(), snapshot_len).unwrap();
state
}
fn verify_load_snap_disallowed_after_boot_resources(res: VmmAction, res_name: &str) {
let (snapshot_file, memory_file) = verify_create_snapshot(false);
let mut event_manager = EventManager::new().unwrap();
let empty_seccomp_filters = get_empty_filters();
let mut vm_resources = VmResources::default();
let mut preboot_api_controller = PrebootApiController::new(
&empty_seccomp_filters,
InstanceInfo::default(),
&mut vm_resources,
&mut event_manager,
);
preboot_api_controller.handle_preboot_request(res).unwrap();
// Load snapshot should no longer be allowed.
let req = VmmAction::LoadSnapshot(LoadSnapshotParams {
snapshot_path: snapshot_file.as_path().to_path_buf(),
mem_backend: MemBackendConfig {
backend_path: memory_file.as_path().to_path_buf(),
backend_type: MemBackendType::File,
},
enable_diff_snapshots: false,
resume_vm: false,
});
let err = preboot_api_controller.handle_preboot_request(req);
assert!(
matches!(
err.unwrap_err(),
VmmActionError::LoadSnapshot(LoadSnapshotError::LoadSnapshotNotAllowed)
),
"LoadSnapshot should be disallowed after {}",
res_name
);
}
#[test]
fn test_preboot_load_snap_disallowed_after_boot_resources() {
let tmp_file = TempFile::new().unwrap();
let tmp_file = tmp_file.as_path().to_str().unwrap().to_string();
// Verify LoadSnapshot not allowed after configuring various boot-specific resources.
let req = VmmAction::ConfigureBootSource(BootSourceConfig {
kernel_image_path: tmp_file.clone(),
..Default::default()
});
verify_load_snap_disallowed_after_boot_resources(req, "ConfigureBootSource");
let config = BlockDeviceConfig {
drive_id: String::new(),
partuuid: None,
is_root_device: false,
cache_type: CacheType::Unsafe,
is_read_only: Some(false),
path_on_host: Some(tmp_file),
rate_limiter: None,
file_engine_type: None,
socket: None,
};
let req = VmmAction::InsertBlockDevice(config);
verify_load_snap_disallowed_after_boot_resources(req, "InsertBlockDevice");
let req = VmmAction::InsertNetworkDevice(NetworkInterfaceConfig {
iface_id: String::new(),
host_dev_name: String::new(),
guest_mac: None,
rx_rate_limiter: None,
tx_rate_limiter: None,
});
verify_load_snap_disallowed_after_boot_resources(req, "InsertNetworkDevice");
let req = VmmAction::SetBalloonDevice(BalloonDeviceConfig::default());
verify_load_snap_disallowed_after_boot_resources(req, "SetBalloonDevice");
let req = VmmAction::SetVsockDevice(VsockDeviceConfig {
vsock_id: Some(String::new()),
guest_cid: 0,
uds_path: String::new(),
});
verify_load_snap_disallowed_after_boot_resources(req, "SetVsockDevice");
let req =
VmmAction::UpdateMachineConfiguration(MachineConfigUpdate::from(MachineConfig::default()));
verify_load_snap_disallowed_after_boot_resources(req, "SetVmConfiguration");
}