blob: 36e8c459eb0ef8e70289b088149893e01744742d [file] [log] [blame]
Zach Reizner39aa26b2017-12-12 18:03:23 -08001// Copyright 2017 The Chromium OS Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
Hikaru Nishida584e52c2021-04-27 17:37:08 +09005use std::cmp::Reverse;
Zide Chendfc4b882021-03-10 16:35:37 -08006use std::collections::BTreeMap;
Jakub Starona3411ea2019-04-24 10:55:25 -07007use std::convert::TryFrom;
John Batesb220eac2020-09-14 17:03:02 -07008#[cfg(feature = "gpu")]
9use std::env;
Dylan Reid059a1882018-07-23 17:58:09 -070010use std::fs::{File, OpenOptions};
Federico 'Morg' Pareschia1184822021-09-09 10:52:58 +090011use std::io::stdin;
Steven Richmanf32d0b42020-06-20 21:45:32 -070012use std::iter;
Daniel Verkamp94c35272019-09-12 13:31:30 -070013use std::mem;
David Tolnay2b089fc2019-03-04 15:33:22 -080014use std::net::Ipv4Addr;
Christian Blichmann50f95912021-11-05 16:59:39 +010015use std::os::unix::{io::FromRawFd, net::UnixStream, prelude::OpenOptionsExt};
Zach Reizner39aa26b2017-12-12 18:03:23 -080016use std::path::{Path, PathBuf};
Chirantan Ekbote448516e2018-07-24 16:07:42 -070017use std::str;
Dylan Reidb0492662019-05-17 14:50:13 -070018use std::sync::{mpsc, Arc, Barrier};
Hikaru Nishida584e52c2021-04-27 17:37:08 +090019use std::time::Duration;
Dylan Reidb0492662019-05-17 14:50:13 -070020
Zach Reizner39aa26b2017-12-12 18:03:23 -080021use std::thread;
22use std::thread::JoinHandle;
23
Daniel Verkamp6b298582021-08-16 15:37:11 -070024use libc::{self, c_int, gid_t, uid_t};
Zach Reizner39aa26b2017-12-12 18:03:23 -080025
Tomasz Jeznach42644642020-05-20 23:27:59 -070026use acpi_tables::sdt::SDT;
27
Daniel Verkamp6b298582021-08-16 15:37:11 -070028use anyhow::{anyhow, bail, Context, Result};
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +090029use base::net::{UnixSeqpacket, UnixSeqpacketListener, UnlinkUnixSeqpacketListener};
Zach Reiznerd49bcdb2021-01-07 08:30:28 -080030use base::*;
Keiichi Watanabe553d2192021-08-16 16:42:27 +090031use devices::serial_device::{SerialHardware, SerialParameters};
Zide Chenafdb9382021-06-17 12:04:43 -070032use devices::vfio::{VfioCommonSetup, VfioCommonTrait};
Woody Chow0b2b6062021-09-03 15:40:02 +090033#[cfg(feature = "audio_cras")]
34use devices::virtio::snd::cras_backend::Parameters as CrasSndParameters;
Woody Chow1b16db12021-04-02 16:59:59 +090035#[cfg(feature = "audio")]
36use devices::virtio::vhost::user::vmm::Snd as VhostUserSnd;
Keiichi Watanabefb36e0c2021-08-13 18:48:31 +090037use devices::virtio::vhost::user::vmm::{
Richard5afeafa2021-07-26 19:02:09 -070038 Block as VhostUserBlock, Console as VhostUserConsole, Fs as VhostUserFs,
Chirantan Ekbote84091e52021-09-10 18:43:17 +090039 Mac80211Hwsim as VhostUserMac80211Hwsim, Net as VhostUserNet, Vsock as VhostUserVsock,
40 Wl as VhostUserWl,
Keiichi Watanabe60686582021-03-12 04:53:51 +090041};
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -070042use devices::virtio::{self, Console, VirtioDevice};
Chirantan Ekbote44292f52021-06-25 18:31:41 +090043#[cfg(feature = "gpu")]
44use devices::virtio::{
45 gpu::{DEFAULT_DISPLAY_HEIGHT, DEFAULT_DISPLAY_WIDTH},
46 vhost::user::vmm::Gpu as VhostUserGpu,
47 EventDevice,
48};
paulhsiace17e6e2020-08-28 18:37:45 +080049#[cfg(feature = "audio")]
50use devices::Ac97Dev;
Xiong Zhang46471a02021-11-12 00:34:42 +080051#[cfg(feature = "direct")]
52use devices::BusRange;
Will Deaconc48e7832021-07-30 19:03:06 +010053use devices::ProtectionType;
Xiong Zhang17b0daf2019-04-23 17:14:50 +080054use devices::{
Xiong Zhangf82f2dc2021-05-21 16:54:12 +080055 self, BusDeviceObj, HostHotPlugKey, HotPlugBus, IrqChip, IrqEventIndex, KvmKernelIrqChip,
56 PciAddress, PciBridge, PciDevice, PcieRootPort, StubPciDevice, VcpuRunState, VfioContainer,
57 VfioDevice, VfioPciDevice, VfioPlatformDevice, VirtioPciDevice,
Xiong Zhang17b0daf2019-04-23 17:14:50 +080058};
Daniel Verkampf1439d42021-05-21 13:55:10 -070059#[cfg(feature = "usb")]
60use devices::{HostBackendDeviceProvider, XhciController};
Steven Richmanf32d0b42020-06-20 21:45:32 -070061use hypervisor::kvm::{Kvm, KvmVcpu, KvmVm};
Xiong Zhangdea7dbb2021-07-26 14:49:03 +080062use hypervisor::{HypervisorCap, Vcpu, VcpuExit, VcpuRunHandle, Vm, VmCap};
Allen Webbf3024c82020-06-19 07:19:48 -070063use minijail::{self, Minijail};
Richard5afeafa2021-07-26 19:02:09 -070064use net_util::{MacAddress, Tap};
Xiong Zhang87a3b442019-10-29 17:32:44 +080065use resources::{Alloc, MmioType, SystemAllocator};
Gurchetan Singh293913c2020-12-09 10:44:13 -080066use rutabaga_gfx::RutabagaGralloc;
Dylan Reidb0492662019-05-17 14:50:13 -070067use sync::Mutex;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -080068use vm_control::*;
Sergey Senozhatskyd78d05b2021-04-13 20:59:58 +090069use vm_memory::{GuestAddress, GuestMemory, MemoryPolicy};
Zach Reizner39aa26b2017-12-12 18:03:23 -080070
Keiichi Watanabec5262e92020-10-21 15:57:33 +090071#[cfg(all(target_arch = "x86_64", feature = "gdb"))]
72use crate::gdb::{gdb_thread, GdbStub};
Keiichi Watanabef3a37f42021-01-21 15:41:11 +090073use crate::{
Tomasz Nowicki71aca792021-06-09 18:53:49 +000074 Config, DiskOption, Executable, SharedDir, SharedDirKind, TouchDeviceOption, VfioType,
Christian Blichmann50f95912021-11-05 16:59:39 +010075 VhostUserFsOption, VhostUserOption, VhostUserWlOption, VhostVsockDeviceParameter,
Keiichi Watanabef3a37f42021-01-21 15:41:11 +090076};
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -070077use arch::{
Keiichi Watanabe553d2192021-08-16 16:42:27 +090078 self, LinuxArch, RunnableLinuxVm, VcpuAffinity, VirtioDeviceStub, VmComponents, VmImage,
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -070079};
Sonny Raoed517d12018-02-13 22:09:43 -080080
Sonny Rao2ffa0cb2018-02-26 17:27:40 -080081#[cfg(any(target_arch = "arm", target_arch = "aarch64"))]
Steven Richmanf32d0b42020-06-20 21:45:32 -070082use {
83 aarch64::AArch64 as Arch,
Steven Richman11dc6712020-09-02 15:39:14 -070084 devices::IrqChipAArch64 as IrqChipArch,
Steven Richmanf32d0b42020-06-20 21:45:32 -070085 hypervisor::{VcpuAArch64 as VcpuArch, VmAArch64 as VmArch},
86};
Zach Reizner55a9e502018-10-03 10:22:32 -070087#[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
Steven Richmanf32d0b42020-06-20 21:45:32 -070088use {
Steven Richman11dc6712020-09-02 15:39:14 -070089 devices::{IrqChipX86_64 as IrqChipArch, KvmSplitIrqChip},
90 hypervisor::{VcpuX86_64 as VcpuArch, VmX86_64 as VmArch},
Steven Richmanf32d0b42020-06-20 21:45:32 -070091 x86_64::X8664arch as Arch,
92};
Zach Reizner39aa26b2017-12-12 18:03:23 -080093
Zach Reiznerd49bcdb2021-01-07 08:30:28 -080094enum TaggedControlTube {
95 Fs(Tube),
96 Vm(Tube),
97 VmMemory(Tube),
98 VmIrq(Tube),
99 VmMsync(Tube),
Jakub Starond99cd0a2019-04-11 14:09:39 -0700100}
101
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800102impl AsRef<Tube> for TaggedControlTube {
103 fn as_ref(&self) -> &Tube {
104 use self::TaggedControlTube::*;
Jakub Starond99cd0a2019-04-11 14:09:39 -0700105 match &self {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800106 Fs(tube) | Vm(tube) | VmMemory(tube) | VmIrq(tube) | VmMsync(tube) => tube,
Jakub Starond99cd0a2019-04-11 14:09:39 -0700107 }
108 }
109}
110
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800111impl AsRawDescriptor for TaggedControlTube {
Michael Hoylee392c462020-10-07 03:29:24 -0700112 fn as_raw_descriptor(&self) -> RawDescriptor {
Michael Hoylea596a072020-11-10 19:32:45 -0800113 self.as_ref().as_raw_descriptor()
Jakub Starond99cd0a2019-04-11 14:09:39 -0700114 }
115}
116
Matt Delcoc24ad782020-02-14 13:24:36 -0800117struct SandboxConfig<'a> {
118 limit_caps: bool,
119 log_failures: bool,
120 seccomp_policy: &'a Path,
121 uid_map: Option<&'a str>,
122 gid_map: Option<&'a str>,
123}
124
Zach Reizner44863792019-06-26 14:22:08 -0700125fn create_base_minijail(
126 root: &Path,
Matt Delcoc24ad782020-02-14 13:24:36 -0800127 r_limit: Option<u64>,
128 config: Option<&SandboxConfig>,
Zach Reizner44863792019-06-26 14:22:08 -0700129) -> Result<Minijail> {
Zach Reizner39aa26b2017-12-12 18:03:23 -0800130 // All child jails run in a new user namespace without any users mapped,
131 // they run as nobody unless otherwise configured.
Daniel Verkamp6b298582021-08-16 15:37:11 -0700132 let mut j = Minijail::new().context("failed to jail device")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800133
134 if let Some(config) = config {
135 j.namespace_pids();
136 j.namespace_user();
137 j.namespace_user_disable_setgroups();
138 if config.limit_caps {
139 // Don't need any capabilities.
140 j.use_caps(0);
141 }
142 if let Some(uid_map) = config.uid_map {
Daniel Verkamp6b298582021-08-16 15:37:11 -0700143 j.uidmap(uid_map).context("error setting UID map")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800144 }
145 if let Some(gid_map) = config.gid_map {
Daniel Verkamp6b298582021-08-16 15:37:11 -0700146 j.gidmap(gid_map).context("error setting GID map")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800147 }
Chirantan Ekbotef84c2292020-02-21 16:37:27 +0900148 // Run in a new mount namespace.
149 j.namespace_vfs();
150
Matt Delcoc24ad782020-02-14 13:24:36 -0800151 // Run in an empty network namespace.
152 j.namespace_net();
Chirantan Ekbotef84c2292020-02-21 16:37:27 +0900153
154 // Don't allow the device to gain new privileges.
Matt Delcoc24ad782020-02-14 13:24:36 -0800155 j.no_new_privs();
156
157 // By default we'll prioritize using the pre-compiled .bpf over the .policy
158 // file (the .bpf is expected to be compiled using "trap" as the failure
159 // behavior instead of the default "kill" behavior).
160 // Refer to the code comment for the "seccomp-log-failures"
161 // command-line parameter for an explanation about why the |log_failures|
162 // flag forces the use of .policy files (and the build-time alternative to
163 // this run-time flag).
164 let bpf_policy_file = config.seccomp_policy.with_extension("bpf");
165 if bpf_policy_file.exists() && !config.log_failures {
166 j.parse_seccomp_program(&bpf_policy_file)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700167 .context("failed to parse precompiled seccomp policy")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800168 } else {
169 // Use TSYNC only for the side effect of it using SECCOMP_RET_TRAP,
170 // which will correctly kill the entire device process if a worker
171 // thread commits a seccomp violation.
172 j.set_seccomp_filter_tsync();
173 if config.log_failures {
174 j.log_seccomp_filter_failures();
175 }
176 j.parse_seccomp_filters(&config.seccomp_policy.with_extension("policy"))
Daniel Verkamp6b298582021-08-16 15:37:11 -0700177 .context("failed to parse seccomp policy")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800178 }
179 j.use_seccomp_filter();
180 // Don't do init setup.
181 j.run_as_init();
182 }
183
Chirantan Ekbotef84c2292020-02-21 16:37:27 +0900184 // Only pivot_root if we are not re-using the current root directory.
185 if root != Path::new("/") {
186 // It's safe to call `namespace_vfs` multiple times.
187 j.namespace_vfs();
Daniel Verkamp6b298582021-08-16 15:37:11 -0700188 j.enter_pivot_root(root)
189 .context("failed to pivot root device")?;
Chirantan Ekbotef84c2292020-02-21 16:37:27 +0900190 }
Matt Delco45caf912019-11-13 08:11:09 -0800191
Matt Delcoc24ad782020-02-14 13:24:36 -0800192 // Most devices don't need to open many fds.
193 let limit = if let Some(r) = r_limit { r } else { 1024u64 };
194 j.set_rlimit(libc::RLIMIT_NOFILE as i32, limit, limit)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700195 .context("error setting max open files")?;
Matt Delcoc24ad782020-02-14 13:24:36 -0800196
Zach Reizner39aa26b2017-12-12 18:03:23 -0800197 Ok(j)
198}
199
Jianxun Zhang8f4d7682019-02-21 12:55:31 -0800200fn simple_jail(cfg: &Config, policy: &str) -> Result<Option<Minijail>> {
Lepton Wu9105e9f2019-03-14 11:38:31 -0700201 if cfg.sandbox {
Jianxun Zhang8f4d7682019-02-21 12:55:31 -0800202 let pivot_root: &str = option_env!("DEFAULT_PIVOT_ROOT").unwrap_or("/var/empty");
203 // A directory for a jailed device's pivot root.
204 let root_path = Path::new(pivot_root);
205 if !root_path.exists() {
Daniel Verkamp6b298582021-08-16 15:37:11 -0700206 bail!("{} doesn't exist, can't jail devices", pivot_root);
Jianxun Zhang8f4d7682019-02-21 12:55:31 -0800207 }
208 let policy_path: PathBuf = cfg.seccomp_policy_dir.join(policy);
Matt Delcoc24ad782020-02-14 13:24:36 -0800209 let config = SandboxConfig {
210 limit_caps: true,
211 log_failures: cfg.seccomp_log_failures,
212 seccomp_policy: &policy_path,
213 uid_map: None,
214 gid_map: None,
215 };
216 Ok(Some(create_base_minijail(root_path, None, Some(&config))?))
Jianxun Zhang8f4d7682019-02-21 12:55:31 -0800217 } else {
218 Ok(None)
219 }
220}
221
Daniel Verkamp6b298582021-08-16 15:37:11 -0700222type DeviceResult<T = VirtioDeviceStub> = Result<T>;
David Tolnay2b089fc2019-03-04 15:33:22 -0800223
Andrew Walbran4cad30a2021-06-28 15:58:08 +0000224fn create_block_device(cfg: &Config, disk: &DiskOption, disk_device_tube: Tube) -> DeviceResult {
Junichi Uekawa7bea39f2021-07-16 14:05:06 +0900225 let raw_image: File = open_file(&disk.path, disk.read_only, disk.o_direct)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700226 .with_context(|| format!("failed to load disk image {}", disk.path.display()))?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800227 // Lock the disk image to prevent other crosvm instances from using it.
228 let lock_op = if disk.read_only {
229 FlockOperation::LockShared
230 } else {
231 FlockOperation::LockExclusive
232 };
Daniel Verkamp6b298582021-08-16 15:37:11 -0700233 flock(&raw_image, lock_op, true).context("failed to lock disk image")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800234
Junichi Uekawa52437db2021-09-29 17:33:07 +0900235 info!("Trying to attach block device: {}", disk.path.display());
Daniel Verkamp6b298582021-08-16 15:37:11 -0700236 let dev = if disk::async_ok(&raw_image).context("failed to check disk async_ok")? {
237 let async_file = disk::create_async_disk_file(raw_image)
238 .context("failed to create async virtual disk")?;
Dylan Reid503c5ab2020-07-17 11:20:07 -0700239 Box::new(
240 virtio::BlockAsync::new(
241 virtio::base_features(cfg.protected_vm),
242 async_file,
243 disk.read_only,
244 disk.sparse,
245 disk.block_size,
Daniel Verkampdd0ee592021-03-29 13:05:22 -0700246 disk.id,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800247 Some(disk_device_tube),
Dylan Reid503c5ab2020-07-17 11:20:07 -0700248 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700249 .context("failed to create block device")?,
Dylan Reid503c5ab2020-07-17 11:20:07 -0700250 ) as Box<dyn VirtioDevice>
251 } else {
Daniel Verkampeb1640e2021-09-07 14:09:31 -0700252 let disk_file = disk::create_disk_file(raw_image, disk::MAX_NESTING_DEPTH)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700253 .context("failed to create virtual disk")?;
Dylan Reid503c5ab2020-07-17 11:20:07 -0700254 Box::new(
255 virtio::Block::new(
256 virtio::base_features(cfg.protected_vm),
257 disk_file,
258 disk.read_only,
259 disk.sparse,
260 disk.block_size,
261 disk.id,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800262 Some(disk_device_tube),
Dylan Reid503c5ab2020-07-17 11:20:07 -0700263 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700264 .context("failed to create block device")?,
Dylan Reid503c5ab2020-07-17 11:20:07 -0700265 ) as Box<dyn VirtioDevice>
266 };
David Tolnay2b089fc2019-03-04 15:33:22 -0800267
268 Ok(VirtioDeviceStub {
Dylan Reid503c5ab2020-07-17 11:20:07 -0700269 dev,
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700270 jail: simple_jail(cfg, "block_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800271 })
272}
273
Keiichi Watanabef3a37f42021-01-21 15:41:11 +0900274fn create_vhost_user_block_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult {
275 let dev = VhostUserBlock::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700276 .context("failed to set up vhost-user block device")?;
Keiichi Watanabef3a37f42021-01-21 15:41:11 +0900277
278 Ok(VirtioDeviceStub {
279 dev: Box::new(dev),
280 // no sandbox here because virtqueue handling is exported to a different process.
281 jail: None,
282 })
283}
284
Federico 'Morg' Pareschi70fc7de2021-04-08 15:43:13 +0900285fn create_vhost_user_console_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult {
286 let dev = VhostUserConsole::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700287 .context("failed to set up vhost-user console device")?;
Federico 'Morg' Pareschi70fc7de2021-04-08 15:43:13 +0900288
289 Ok(VirtioDeviceStub {
290 dev: Box::new(dev),
291 // no sandbox here because virtqueue handling is exported to a different process.
292 jail: None,
293 })
294}
295
Woody Chow5890b702021-02-12 14:57:02 +0900296fn create_vhost_user_fs_device(cfg: &Config, option: &VhostUserFsOption) -> DeviceResult {
297 let dev = VhostUserFs::new(
298 virtio::base_features(cfg.protected_vm),
299 &option.socket,
300 &option.tag,
301 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700302 .context("failed to set up vhost-user fs device")?;
Woody Chow5890b702021-02-12 14:57:02 +0900303
304 Ok(VirtioDeviceStub {
305 dev: Box::new(dev),
306 // no sandbox here because virtqueue handling is exported to a different process.
307 jail: None,
308 })
309}
310
JaeMan Parkeb9cc532021-07-02 15:02:59 +0900311fn create_vhost_user_mac80211_hwsim_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult {
312 let dev = VhostUserMac80211Hwsim::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700313 .context("failed to set up vhost-user mac80211_hwsim device")?;
JaeMan Parkeb9cc532021-07-02 15:02:59 +0900314
315 Ok(VirtioDeviceStub {
316 dev: Box::new(dev),
317 // no sandbox here because virtqueue handling is exported to a different process.
318 jail: None,
319 })
320}
321
Woody Chow1b16db12021-04-02 16:59:59 +0900322#[cfg(feature = "audio")]
323fn create_vhost_user_snd_device(cfg: &Config, option: &VhostUserOption) -> DeviceResult {
324 let dev = VhostUserSnd::new(virtio::base_features(cfg.protected_vm), &option.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700325 .context("failed to set up vhost-user snd device")?;
Woody Chow1b16db12021-04-02 16:59:59 +0900326
327 Ok(VirtioDeviceStub {
328 dev: Box::new(dev),
329 // no sandbox here because virtqueue handling is exported to a different process.
330 jail: None,
331 })
332}
333
David Tolnay2b089fc2019-03-04 15:33:22 -0800334fn create_rng_device(cfg: &Config) -> DeviceResult {
Daniel Verkamp6b298582021-08-16 15:37:11 -0700335 let dev = virtio::Rng::new(virtio::base_features(cfg.protected_vm))
336 .context("failed to set up rng")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800337
338 Ok(VirtioDeviceStub {
339 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700340 jail: simple_jail(cfg, "rng_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800341 })
342}
343
Woody Chow737ff122021-03-22 17:49:57 +0900344#[cfg(feature = "audio_cras")]
Woody Chow0b2b6062021-09-03 15:40:02 +0900345fn create_cras_snd_device(cfg: &Config, cras_snd: CrasSndParameters) -> DeviceResult {
346 let dev = virtio::snd::cras_backend::VirtioSndCras::new(
347 virtio::base_features(cfg.protected_vm),
348 cras_snd,
349 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700350 .context("failed to create cras sound device")?;
Woody Chow737ff122021-03-22 17:49:57 +0900351
352 let jail = match simple_jail(&cfg, "cras_snd_device")? {
353 Some(mut jail) => {
354 // Create a tmpfs in the device's root directory for cras_snd_device.
355 // The size is 20*1024, or 20 KB.
356 jail.mount_with_data(
357 Path::new("none"),
358 Path::new("/"),
359 "tmpfs",
360 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
361 "size=20480",
362 )?;
363
364 let run_cras_path = Path::new("/run/cras");
365 jail.mount_bind(run_cras_path, run_cras_path, true)?;
366
367 add_current_user_to_jail(&mut jail)?;
368
369 Some(jail)
370 }
371 None => None,
372 };
373
374 Ok(VirtioDeviceStub {
375 dev: Box::new(dev),
376 jail,
377 })
378}
379
David Tolnay2b089fc2019-03-04 15:33:22 -0800380#[cfg(feature = "tpm")]
381fn create_tpm_device(cfg: &Config) -> DeviceResult {
382 use std::ffi::CString;
383 use std::fs;
384 use std::process;
David Tolnay2b089fc2019-03-04 15:33:22 -0800385
386 let tpm_storage: PathBuf;
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700387 let mut tpm_jail = simple_jail(cfg, "tpm_device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800388
389 match &mut tpm_jail {
390 Some(jail) => {
391 // Create a tmpfs in the device's root directory for tpm
392 // simulator storage. The size is 20*1024, or 20 KB.
393 jail.mount_with_data(
394 Path::new("none"),
395 Path::new("/"),
396 "tmpfs",
397 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
398 "size=20480",
399 )?;
400
Fergus Dall51200512021-08-19 12:54:26 +1000401 let crosvm_ids = add_current_user_to_jail(jail)?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800402
403 let pid = process::id();
404 let tpm_pid_dir = format!("/run/vm/tpm.{}", pid);
405 tpm_storage = Path::new(&tpm_pid_dir).to_owned();
Daniel Verkamp6b298582021-08-16 15:37:11 -0700406 fs::create_dir_all(&tpm_storage).with_context(|| {
407 format!("failed to create tpm storage dir {}", tpm_storage.display())
408 })?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800409 let tpm_pid_dir_c = CString::new(tpm_pid_dir).expect("no nul bytes");
David Tolnayfd0971d2019-03-04 17:15:57 -0800410 chown(&tpm_pid_dir_c, crosvm_ids.uid, crosvm_ids.gid)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700411 .context("failed to chown tpm storage")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800412
413 jail.mount_bind(&tpm_storage, &tpm_storage, true)?;
414 }
415 None => {
416 // Path used inside cros_sdk which does not have /run/vm.
417 tpm_storage = Path::new("/tmp/tpm-simulator").to_owned();
418 }
419 }
420
421 let dev = virtio::Tpm::new(tpm_storage);
422
423 Ok(VirtioDeviceStub {
424 dev: Box::new(dev),
425 jail: tpm_jail,
426 })
427}
428
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700429fn create_single_touch_device(
430 cfg: &Config,
431 single_touch_spec: &TouchDeviceOption,
432 idx: u32,
433) -> DeviceResult {
Kaiyi Libccb4eb2020-02-06 17:53:11 -0800434 let socket = single_touch_spec
435 .get_path()
436 .into_unix_stream()
437 .map_err(|e| {
438 error!("failed configuring virtio single touch: {:?}", e);
439 e
440 })?;
Jorge E. Moreira99d3f082019-03-07 10:59:54 -0800441
Kaiyi Libccb4eb2020-02-06 17:53:11 -0800442 let (width, height) = single_touch_spec.get_size();
Noah Goldd4ca29b2020-10-27 12:21:52 -0700443 let dev = virtio::new_single_touch(
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700444 idx,
Noah Goldd4ca29b2020-10-27 12:21:52 -0700445 socket,
446 width,
447 height,
448 virtio::base_features(cfg.protected_vm),
449 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700450 .context("failed to set up input device")?;
Jorge E. Moreira99d3f082019-03-07 10:59:54 -0800451 Ok(VirtioDeviceStub {
452 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700453 jail: simple_jail(cfg, "input_device")?,
Jorge E. Moreira99d3f082019-03-07 10:59:54 -0800454 })
455}
456
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700457fn create_multi_touch_device(
458 cfg: &Config,
459 multi_touch_spec: &TouchDeviceOption,
460 idx: u32,
461) -> DeviceResult {
Tristan Muntsinger486cffc2020-09-29 22:05:41 +0000462 let socket = multi_touch_spec
463 .get_path()
464 .into_unix_stream()
465 .map_err(|e| {
466 error!("failed configuring virtio multi touch: {:?}", e);
467 e
468 })?;
469
470 let (width, height) = multi_touch_spec.get_size();
471 let dev = virtio::new_multi_touch(
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700472 idx,
Tristan Muntsinger486cffc2020-09-29 22:05:41 +0000473 socket,
474 width,
475 height,
476 virtio::base_features(cfg.protected_vm),
477 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700478 .context("failed to set up input device")?;
Tristan Muntsinger486cffc2020-09-29 22:05:41 +0000479
480 Ok(VirtioDeviceStub {
481 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700482 jail: simple_jail(cfg, "input_device")?,
Tristan Muntsinger486cffc2020-09-29 22:05:41 +0000483 })
484}
485
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700486fn create_trackpad_device(
487 cfg: &Config,
488 trackpad_spec: &TouchDeviceOption,
489 idx: u32,
490) -> DeviceResult {
Kaiyi Libccb4eb2020-02-06 17:53:11 -0800491 let socket = trackpad_spec.get_path().into_unix_stream().map_err(|e| {
Maciek Swiechc3011222021-11-24 21:01:04 +0000492 error!("failed configuring virtio trackpad: {:#}", e);
David Tolnay2b089fc2019-03-04 15:33:22 -0800493 e
494 })?;
495
Kaiyi Libccb4eb2020-02-06 17:53:11 -0800496 let (width, height) = trackpad_spec.get_size();
Noah Goldd4ca29b2020-10-27 12:21:52 -0700497 let dev = virtio::new_trackpad(
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700498 idx,
Noah Goldd4ca29b2020-10-27 12:21:52 -0700499 socket,
500 width,
501 height,
502 virtio::base_features(cfg.protected_vm),
503 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700504 .context("failed to set up input device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800505
506 Ok(VirtioDeviceStub {
507 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700508 jail: simple_jail(cfg, "input_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800509 })
510}
511
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700512fn create_mouse_device<T: IntoUnixStream>(cfg: &Config, mouse_socket: T, idx: u32) -> DeviceResult {
Zach Reizner65b98f12019-11-22 17:34:58 -0800513 let socket = mouse_socket.into_unix_stream().map_err(|e| {
Maciek Swiechc3011222021-11-24 21:01:04 +0000514 error!("failed configuring virtio mouse: {:#}", e);
David Tolnay2b089fc2019-03-04 15:33:22 -0800515 e
516 })?;
517
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700518 let dev = virtio::new_mouse(idx, socket, virtio::base_features(cfg.protected_vm))
Daniel Verkamp6b298582021-08-16 15:37:11 -0700519 .context("failed to set up input device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800520
521 Ok(VirtioDeviceStub {
522 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700523 jail: simple_jail(cfg, "input_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800524 })
525}
526
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700527fn create_keyboard_device<T: IntoUnixStream>(
528 cfg: &Config,
529 keyboard_socket: T,
530 idx: u32,
531) -> DeviceResult {
Zach Reizner65b98f12019-11-22 17:34:58 -0800532 let socket = keyboard_socket.into_unix_stream().map_err(|e| {
Maciek Swiechc3011222021-11-24 21:01:04 +0000533 error!("failed configuring virtio keyboard: {:#}", e);
David Tolnay2b089fc2019-03-04 15:33:22 -0800534 e
535 })?;
536
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700537 let dev = virtio::new_keyboard(idx, socket, virtio::base_features(cfg.protected_vm))
Daniel Verkamp6b298582021-08-16 15:37:11 -0700538 .context("failed to set up input device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800539
540 Ok(VirtioDeviceStub {
541 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700542 jail: simple_jail(cfg, "input_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800543 })
544}
545
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700546fn create_switches_device<T: IntoUnixStream>(
547 cfg: &Config,
548 switches_socket: T,
549 idx: u32,
550) -> DeviceResult {
Daniel Norman5e23df72021-03-11 10:11:02 -0800551 let socket = switches_socket.into_unix_stream().map_err(|e| {
Maciek Swiechc3011222021-11-24 21:01:04 +0000552 error!("failed configuring virtio switches: {:#}", e);
Daniel Norman5e23df72021-03-11 10:11:02 -0800553 e
554 })?;
555
Jorge E. Moreira6635ca42021-04-28 13:11:41 -0700556 let dev = virtio::new_switches(idx, socket, virtio::base_features(cfg.protected_vm))
Daniel Verkamp6b298582021-08-16 15:37:11 -0700557 .context("failed to set up input device")?;
Daniel Norman5e23df72021-03-11 10:11:02 -0800558
559 Ok(VirtioDeviceStub {
560 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700561 jail: simple_jail(cfg, "input_device")?,
Daniel Norman5e23df72021-03-11 10:11:02 -0800562 })
563}
564
David Tolnay2b089fc2019-03-04 15:33:22 -0800565fn create_vinput_device(cfg: &Config, dev_path: &Path) -> DeviceResult {
566 let dev_file = OpenOptions::new()
567 .read(true)
568 .write(true)
569 .open(dev_path)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700570 .with_context(|| format!("failed to open vinput device {}", dev_path.display()))?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800571
Noah Goldd4ca29b2020-10-27 12:21:52 -0700572 let dev = virtio::new_evdev(dev_file, virtio::base_features(cfg.protected_vm))
Daniel Verkamp6b298582021-08-16 15:37:11 -0700573 .context("failed to set up input device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800574
575 Ok(VirtioDeviceStub {
576 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700577 jail: simple_jail(cfg, "input_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800578 })
579}
580
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800581fn create_balloon_device(cfg: &Config, tube: Tube) -> DeviceResult {
582 let dev = virtio::Balloon::new(virtio::base_features(cfg.protected_vm), tube)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700583 .context("failed to create balloon")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800584
585 Ok(VirtioDeviceStub {
586 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700587 jail: simple_jail(cfg, "balloon_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800588 })
589}
590
Michael Hoylea596a072020-11-10 19:32:45 -0800591fn create_tap_net_device(cfg: &Config, tap_fd: RawDescriptor) -> DeviceResult {
David Tolnay2b089fc2019-03-04 15:33:22 -0800592 // Safe because we ensure that we get a unique handle to the fd.
593 let tap = unsafe {
Michael Hoylea596a072020-11-10 19:32:45 -0800594 Tap::from_raw_descriptor(
Daniel Verkamp6b298582021-08-16 15:37:11 -0700595 validate_raw_descriptor(tap_fd).context("failed to validate tap descriptor")?,
Michael Hoylea596a072020-11-10 19:32:45 -0800596 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700597 .context("failed to create tap device")?
David Tolnay2b089fc2019-03-04 15:33:22 -0800598 };
599
Xiong Zhang773c7072020-03-20 10:39:55 +0800600 let mut vq_pairs = cfg.net_vq_pairs.unwrap_or(1);
601 let vcpu_count = cfg.vcpu_count.unwrap_or(1);
Steven Richmanf32d0b42020-06-20 21:45:32 -0700602 if vcpu_count < vq_pairs as usize {
Xiong Zhang773c7072020-03-20 10:39:55 +0800603 error!("net vq pairs must be smaller than vcpu count, fall back to single queue mode");
604 vq_pairs = 1;
605 }
Will Deacon7d2b8ac2020-10-06 18:51:12 +0100606 let features = virtio::base_features(cfg.protected_vm);
Daniel Verkamp6b298582021-08-16 15:37:11 -0700607 let dev =
608 virtio::Net::from(features, tap, vq_pairs).context("failed to set up virtio networking")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800609
610 Ok(VirtioDeviceStub {
611 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700612 jail: simple_jail(cfg, "net_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800613 })
614}
615
616fn create_net_device(
617 cfg: &Config,
618 host_ip: Ipv4Addr,
619 netmask: Ipv4Addr,
620 mac_address: MacAddress,
David Tolnay2b089fc2019-03-04 15:33:22 -0800621) -> DeviceResult {
Xiong Zhang773c7072020-03-20 10:39:55 +0800622 let mut vq_pairs = cfg.net_vq_pairs.unwrap_or(1);
623 let vcpu_count = cfg.vcpu_count.unwrap_or(1);
Steven Richmanf32d0b42020-06-20 21:45:32 -0700624 if vcpu_count < vq_pairs as usize {
Xiong Zhang773c7072020-03-20 10:39:55 +0800625 error!("net vq pairs must be smaller than vcpu count, fall back to single queue mode");
626 vq_pairs = 1;
627 }
628
Will Deacon7d2b8ac2020-10-06 18:51:12 +0100629 let features = virtio::base_features(cfg.protected_vm);
David Tolnay2b089fc2019-03-04 15:33:22 -0800630 let dev = if cfg.vhost_net {
Will Deacon81d5adb2020-10-06 18:37:48 +0100631 let dev = virtio::vhost::Net::<Tap, vhost::Net<Tap>>::new(
Christian Blichmann2f5d4b62021-03-10 18:08:08 +0100632 &cfg.vhost_net_device_path,
Will Deacon81d5adb2020-10-06 18:37:48 +0100633 features,
634 host_ip,
635 netmask,
636 mac_address,
Will Deacon81d5adb2020-10-06 18:37:48 +0100637 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700638 .context("failed to set up vhost networking")?;
David Tolnayfdac5ed2019-03-08 16:56:14 -0800639 Box::new(dev) as Box<dyn VirtioDevice>
David Tolnay2b089fc2019-03-04 15:33:22 -0800640 } else {
Will Deacon81d5adb2020-10-06 18:37:48 +0100641 let dev = virtio::Net::<Tap>::new(features, host_ip, netmask, mac_address, vq_pairs)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700642 .context("failed to set up virtio networking")?;
David Tolnayfdac5ed2019-03-08 16:56:14 -0800643 Box::new(dev) as Box<dyn VirtioDevice>
David Tolnay2b089fc2019-03-04 15:33:22 -0800644 };
645
646 let policy = if cfg.vhost_net {
Matt Delco45caf912019-11-13 08:11:09 -0800647 "vhost_net_device"
David Tolnay2b089fc2019-03-04 15:33:22 -0800648 } else {
Matt Delco45caf912019-11-13 08:11:09 -0800649 "net_device"
David Tolnay2b089fc2019-03-04 15:33:22 -0800650 };
651
652 Ok(VirtioDeviceStub {
653 dev,
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700654 jail: simple_jail(cfg, policy)?,
David Tolnay2b089fc2019-03-04 15:33:22 -0800655 })
656}
657
Keiichi Watanabe60686582021-03-12 04:53:51 +0900658fn create_vhost_user_net_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult {
659 let dev = VhostUserNet::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700660 .context("failed to set up vhost-user net device")?;
Keiichi Watanabe60686582021-03-12 04:53:51 +0900661
662 Ok(VirtioDeviceStub {
663 dev: Box::new(dev),
664 // no sandbox here because virtqueue handling is exported to a different process.
665 jail: None,
666 })
667}
668
Chirantan Ekbote84091e52021-09-10 18:43:17 +0900669fn create_vhost_user_vsock_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult {
670 let dev = VhostUserVsock::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700671 .context("failed to set up vhost-user vsock device")?;
Chirantan Ekbote84091e52021-09-10 18:43:17 +0900672
673 Ok(VirtioDeviceStub {
674 dev: Box::new(dev),
675 // no sandbox here because virtqueue handling is exported to a different process.
676 jail: None,
677 })
678}
679
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +0900680fn create_vhost_user_wl_device(cfg: &Config, opt: &VhostUserWlOption) -> DeviceResult {
681 // The crosvm wl device expects us to connect the tube before it will accept a vhost-user
682 // connection.
683 let dev = VhostUserWl::new(virtio::base_features(cfg.protected_vm), &opt.socket)
Daniel Verkamp6b298582021-08-16 15:37:11 -0700684 .context("failed to set up vhost-user wl device")?;
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +0900685
686 Ok(VirtioDeviceStub {
687 dev: Box::new(dev),
688 // no sandbox here because virtqueue handling is exported to a different process.
689 jail: None,
690 })
691}
692
David Tolnay2b089fc2019-03-04 15:33:22 -0800693#[cfg(feature = "gpu")]
Chirantan Ekbote44292f52021-06-25 18:31:41 +0900694fn create_vhost_user_gpu_device(
695 cfg: &Config,
696 opt: &VhostUserOption,
697 host_tube: Tube,
698 device_tube: Tube,
699) -> DeviceResult {
700 // The crosvm gpu device expects us to connect the tube before it will accept a vhost-user
701 // connection.
702 let dev = VhostUserGpu::new(
703 virtio::base_features(cfg.protected_vm),
704 &opt.socket,
705 host_tube,
706 device_tube,
707 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700708 .context("failed to set up vhost-user gpu device")?;
Chirantan Ekbote44292f52021-06-25 18:31:41 +0900709
710 Ok(VirtioDeviceStub {
711 dev: Box::new(dev),
712 // no sandbox here because virtqueue handling is exported to a different process.
713 jail: None,
714 })
715}
716
717#[cfg(feature = "gpu")]
David Tolnay2b089fc2019-03-04 15:33:22 -0800718fn create_gpu_device(
719 cfg: &Config,
Michael Hoyle685316f2020-09-16 15:29:20 -0700720 exit_evt: &Event,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800721 gpu_device_tube: Tube,
722 resource_bridges: Vec<Tube>,
Ryo Hashimoto0b788de2019-12-10 17:14:13 +0900723 wayland_socket_path: Option<&PathBuf>,
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700724 x_display: Option<String>,
Zach Reizner65b98f12019-11-22 17:34:58 -0800725 event_devices: Vec<EventDevice>,
Lingfeng Yang5572c8d2020-05-05 08:40:36 -0700726 map_request: Arc<Mutex<Option<ExternalMapping>>>,
David Tolnay2b089fc2019-03-04 15:33:22 -0800727) -> DeviceResult {
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700728 let mut display_backends = vec![
729 virtio::DisplayBackend::X(x_display),
Jason Macnak60eb1fb2020-01-09 14:36:29 -0800730 virtio::DisplayBackend::Stub,
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700731 ];
732
Gurchetan Singh1bbbf1c2021-05-19 15:05:56 -0700733 let wayland_socket_dirs = cfg
734 .wayland_socket_paths
735 .iter()
736 .map(|(_name, path)| path.parent())
737 .collect::<Option<Vec<_>>>()
Daniel Verkamp6b298582021-08-16 15:37:11 -0700738 .ok_or_else(|| anyhow!("wayland socket path has no parent or file name"))?;
Gurchetan Singh1bbbf1c2021-05-19 15:05:56 -0700739
Ryo Hashimoto0b788de2019-12-10 17:14:13 +0900740 if let Some(socket_path) = wayland_socket_path {
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700741 display_backends.insert(
742 0,
Gurchetan Singh1bbbf1c2021-05-19 15:05:56 -0700743 virtio::DisplayBackend::Wayland(Some(socket_path.to_owned())),
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700744 );
745 }
746
David Tolnay2b089fc2019-03-04 15:33:22 -0800747 let dev = virtio::Gpu::new(
Daniel Verkamp6b298582021-08-16 15:37:11 -0700748 exit_evt.try_clone().context("failed to clone event")?,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800749 Some(gpu_device_tube),
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800750 resource_bridges,
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700751 display_backends,
Jason Macnakcc7070b2019-11-06 14:48:12 -0800752 cfg.gpu_parameters.as_ref().unwrap(),
Zach Reizner65b98f12019-11-22 17:34:58 -0800753 event_devices,
Lingfeng Yang5572c8d2020-05-05 08:40:36 -0700754 map_request,
755 cfg.sandbox,
Will Deacon7d2b8ac2020-10-06 18:51:12 +0100756 virtio::base_features(cfg.protected_vm),
Gurchetan Singh781d9752021-02-15 17:45:22 -0800757 cfg.wayland_socket_paths.clone(),
David Tolnay2b089fc2019-03-04 15:33:22 -0800758 );
759
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700760 let jail = match simple_jail(cfg, "gpu_device")? {
David Tolnay2b089fc2019-03-04 15:33:22 -0800761 Some(mut jail) => {
762 // Create a tmpfs in the device's root directory so that we can bind mount the
763 // dri directory into it. The size=67108864 is size=64*1024*1024 or size=64MB.
764 jail.mount_with_data(
765 Path::new("none"),
766 Path::new("/"),
767 "tmpfs",
768 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
769 "size=67108864",
David Tolnayfd0971d2019-03-04 17:15:57 -0800770 )?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800771
772 // Device nodes required for DRM.
773 let sys_dev_char_path = Path::new("/sys/dev/char");
David Tolnayfd0971d2019-03-04 17:15:57 -0800774 jail.mount_bind(sys_dev_char_path, sys_dev_char_path, false)?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800775 let sys_devices_path = Path::new("/sys/devices");
David Tolnayfd0971d2019-03-04 17:15:57 -0800776 jail.mount_bind(sys_devices_path, sys_devices_path, false)?;
Jason Macnak23400522020-08-28 09:10:46 -0700777
David Tolnay2b089fc2019-03-04 15:33:22 -0800778 let drm_dri_path = Path::new("/dev/dri");
Jason Macnak23400522020-08-28 09:10:46 -0700779 if drm_dri_path.exists() {
780 jail.mount_bind(drm_dri_path, drm_dri_path, false)?;
781 }
David Tolnay2b089fc2019-03-04 15:33:22 -0800782
John Batesb220eac2020-09-14 17:03:02 -0700783 // Prepare GPU shader disk cache directory.
784 if let Some(cache_dir) = cfg
785 .gpu_parameters
786 .as_ref()
787 .and_then(|params| params.cache_path.as_ref())
788 {
789 if cfg!(any(target_arch = "arm", target_arch = "aarch64")) && cfg.sandbox {
790 warn!("shader caching not yet supported on ARM with sandbox enabled");
791 env::set_var("MESA_GLSL_CACHE_DISABLE", "true");
792 } else {
John Bates04059732020-10-01 15:58:55 -0700793 env::set_var("MESA_GLSL_CACHE_DISABLE", "false");
John Batesb220eac2020-09-14 17:03:02 -0700794 env::set_var("MESA_GLSL_CACHE_DIR", cache_dir);
795 if let Some(cache_size) = cfg
796 .gpu_parameters
797 .as_ref()
798 .and_then(|params| params.cache_size.as_ref())
799 {
800 env::set_var("MESA_GLSL_CACHE_MAX_SIZE", cache_size);
801 }
802 let shadercache_path = Path::new(cache_dir);
803 jail.mount_bind(shadercache_path, shadercache_path, true)?;
804 }
805 }
806
David Riley06787c52019-07-24 12:09:07 -0700807 // If the ARM specific devices exist on the host, bind mount them in.
808 let mali0_path = Path::new("/dev/mali0");
809 if mali0_path.exists() {
810 jail.mount_bind(mali0_path, mali0_path, true)?;
811 }
812
813 let pvr_sync_path = Path::new("/dev/pvr_sync");
814 if pvr_sync_path.exists() {
815 jail.mount_bind(pvr_sync_path, pvr_sync_path, true)?;
816 }
817
Gurchetan Singhb66d6f62019-11-08 10:41:29 -0800818 // If the udmabuf driver exists on the host, bind mount it in.
819 let udmabuf_path = Path::new("/dev/udmabuf");
820 if udmabuf_path.exists() {
821 jail.mount_bind(udmabuf_path, udmabuf_path, true)?;
822 }
823
David Tolnay2b089fc2019-03-04 15:33:22 -0800824 // Libraries that are required when mesa drivers are dynamically loaded.
Chia-I Wud562b1a2020-12-27 21:08:27 -0800825 let lib_dirs = &[
826 "/usr/lib",
827 "/usr/lib64",
828 "/lib",
829 "/lib64",
John Batesef085de2021-03-15 08:55:54 -0700830 "/usr/share/glvnd",
Chia-I Wud562b1a2020-12-27 21:08:27 -0800831 "/usr/share/vulkan",
832 ];
David Riley06787c52019-07-24 12:09:07 -0700833 for dir in lib_dirs {
834 let dir_path = Path::new(dir);
835 if dir_path.exists() {
836 jail.mount_bind(dir_path, dir_path, false)?;
837 }
838 }
David Tolnay2b089fc2019-03-04 15:33:22 -0800839
Gurchetan Singh1bbbf1c2021-05-19 15:05:56 -0700840 // Bind mount the wayland socket's directory into jail's root. This is necessary since
841 // each new wayland context must open() the socket. If the wayland socket is ever
842 // destroyed and remade in the same host directory, new connections will be possible
843 // without restarting the wayland device.
844 for dir in &wayland_socket_dirs {
845 jail.mount_bind(dir, dir, true)?;
Zach Reizner0f2cfb02019-06-19 17:46:03 -0700846 }
David Tolnay2b089fc2019-03-04 15:33:22 -0800847
Fergus Dall51200512021-08-19 12:54:26 +1000848 add_current_user_to_jail(&mut jail)?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800849
David Riley54e660b2019-07-24 17:22:50 -0700850 // pvr driver requires read access to /proc/self/task/*/comm.
851 let proc_path = Path::new("/proc");
852 jail.mount(
853 proc_path,
854 proc_path,
855 "proc",
856 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC | libc::MS_RDONLY) as usize,
857 )?;
858
John Bates0d9d0e32020-12-03 11:37:33 -0800859 // To enable perfetto tracing, we need to give access to the perfetto service IPC
860 // endpoints.
861 let perfetto_path = Path::new("/run/perfetto");
862 if perfetto_path.exists() {
863 jail.mount_bind(perfetto_path, perfetto_path, true)?;
864 }
865
David Tolnay2b089fc2019-03-04 15:33:22 -0800866 Some(jail)
867 }
868 None => None,
869 };
870
871 Ok(VirtioDeviceStub {
872 dev: Box::new(dev),
873 jail,
874 })
875}
876
877fn create_wayland_device(
878 cfg: &Config,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800879 control_tube: Tube,
880 resource_bridge: Option<Tube>,
David Tolnay2b089fc2019-03-04 15:33:22 -0800881) -> DeviceResult {
Ryo Hashimoto0b788de2019-12-10 17:14:13 +0900882 let wayland_socket_dirs = cfg
883 .wayland_socket_paths
884 .iter()
885 .map(|(_name, path)| path.parent())
886 .collect::<Option<Vec<_>>>()
Daniel Verkamp6b298582021-08-16 15:37:11 -0700887 .ok_or_else(|| anyhow!("wayland socket path has no parent or file name"))?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800888
Will Deacon7d2b8ac2020-10-06 18:51:12 +0100889 let features = virtio::base_features(cfg.protected_vm);
Will Deacon81d5adb2020-10-06 18:37:48 +0100890 let dev = virtio::Wl::new(
891 features,
892 cfg.wayland_socket_paths.clone(),
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800893 control_tube,
Will Deacon81d5adb2020-10-06 18:37:48 +0100894 resource_bridge,
895 )
Daniel Verkamp6b298582021-08-16 15:37:11 -0700896 .context("failed to create wayland device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800897
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700898 let jail = match simple_jail(cfg, "wl_device")? {
David Tolnay2b089fc2019-03-04 15:33:22 -0800899 Some(mut jail) => {
900 // Create a tmpfs in the device's root directory so that we can bind mount the wayland
901 // socket directory into it. The size=67108864 is size=64*1024*1024 or size=64MB.
902 jail.mount_with_data(
903 Path::new("none"),
904 Path::new("/"),
905 "tmpfs",
906 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
907 "size=67108864",
David Tolnayfd0971d2019-03-04 17:15:57 -0800908 )?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800909
910 // Bind mount the wayland socket's directory into jail's root. This is necessary since
911 // each new wayland context must open() the socket. If the wayland socket is ever
912 // destroyed and remade in the same host directory, new connections will be possible
913 // without restarting the wayland device.
Ryo Hashimoto0b788de2019-12-10 17:14:13 +0900914 for dir in &wayland_socket_dirs {
915 jail.mount_bind(dir, dir, true)?;
916 }
Fergus Dall51200512021-08-19 12:54:26 +1000917 add_current_user_to_jail(&mut jail)?;
David Tolnay2b089fc2019-03-04 15:33:22 -0800918
919 Some(jail)
920 }
921 None => None,
922 };
923
924 Ok(VirtioDeviceStub {
925 dev: Box::new(dev),
926 jail,
927 })
928}
929
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900930#[cfg(any(feature = "video-decoder", feature = "video-encoder"))]
931fn create_video_device(
932 cfg: &Config,
933 typ: devices::virtio::VideoDeviceType,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800934 resource_bridge: Tube,
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900935) -> DeviceResult {
Daniel Verkamp166d1dd2021-08-19 17:05:29 -0700936 let jail = match simple_jail(cfg, "video_device")? {
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900937 Some(mut jail) => {
938 match typ {
Alexandre Courbot8230abf2021-06-26 22:49:26 +0900939 #[cfg(feature = "video-decoder")]
Fergus Dall51200512021-08-19 12:54:26 +1000940 devices::virtio::VideoDeviceType::Decoder => add_current_user_to_jail(&mut jail)?,
Alexandre Courbot8230abf2021-06-26 22:49:26 +0900941 #[cfg(feature = "video-encoder")]
Fergus Dall51200512021-08-19 12:54:26 +1000942 devices::virtio::VideoDeviceType::Encoder => add_current_user_to_jail(&mut jail)?,
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900943 };
944
945 // Create a tmpfs in the device's root directory so that we can bind mount files.
946 jail.mount_with_data(
947 Path::new("none"),
948 Path::new("/"),
949 "tmpfs",
950 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
951 "size=67108864",
952 )?;
953
954 // Render node for libvda.
955 let dev_dri_path = Path::new("/dev/dri/renderD128");
956 jail.mount_bind(dev_dri_path, dev_dri_path, false)?;
957
David Stevense341d0a2020-10-08 18:02:32 +0900958 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
959 {
960 // Device nodes used by libdrm through minigbm in libvda on AMD devices.
961 let sys_dev_char_path = Path::new("/sys/dev/char");
962 jail.mount_bind(sys_dev_char_path, sys_dev_char_path, false)?;
963 let sys_devices_path = Path::new("/sys/devices");
964 jail.mount_bind(sys_devices_path, sys_devices_path, false)?;
965
966 // Required for loading dri libraries loaded by minigbm on AMD devices.
967 let lib_dir = Path::new("/usr/lib64");
968 jail.mount_bind(lib_dir, lib_dir, false)?;
969 }
970
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900971 // Device nodes required by libchrome which establishes Mojo connection in libvda.
972 let dev_urandom_path = Path::new("/dev/urandom");
973 jail.mount_bind(dev_urandom_path, dev_urandom_path, false)?;
974 let system_bus_socket_path = Path::new("/run/dbus/system_bus_socket");
975 jail.mount_bind(system_bus_socket_path, system_bus_socket_path, true)?;
976
977 Some(jail)
978 }
979 None => None,
980 };
981
982 Ok(VirtioDeviceStub {
983 dev: Box::new(devices::virtio::VideoDevice::new(
Will Deacon7d2b8ac2020-10-06 18:51:12 +0100984 virtio::base_features(cfg.protected_vm),
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900985 typ,
986 Some(resource_bridge),
987 )),
988 jail,
989 })
990}
991
992#[cfg(any(feature = "video-decoder", feature = "video-encoder"))]
993fn register_video_device(
994 devs: &mut Vec<VirtioDeviceStub>,
Daniel Verkampffb59122021-03-18 14:06:15 -0700995 video_tube: Tube,
Keiichi Watanabe57df6a02019-12-06 22:24:40 +0900996 cfg: &Config,
997 typ: devices::virtio::VideoDeviceType,
Daniel Verkamp6b298582021-08-16 15:37:11 -0700998) -> Result<()> {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -0800999 devs.push(create_video_device(cfg, typ, video_tube)?);
Keiichi Watanabe57df6a02019-12-06 22:24:40 +09001000 Ok(())
1001}
1002
Chirantan Ekbote3e8d52b2021-09-10 18:27:16 +09001003fn create_vhost_vsock_device(cfg: &Config, cid: u64) -> DeviceResult {
Will Deacon7d2b8ac2020-10-06 18:51:12 +01001004 let features = virtio::base_features(cfg.protected_vm);
Christian Blichmann50f95912021-11-05 16:59:39 +01001005
1006 let device_file = match cfg
1007 .vhost_vsock_device
1008 .as_ref()
1009 .unwrap_or(&VhostVsockDeviceParameter::default())
1010 {
1011 VhostVsockDeviceParameter::Fd(fd) => {
1012 let fd = validate_raw_descriptor(*fd)
1013 .context("failed to validate fd for virtual socker device")?;
1014 // Safe because the `fd` is actually owned by this process and
1015 // we have a unique handle to it.
1016 unsafe { File::from_raw_fd(fd) }
1017 }
1018 VhostVsockDeviceParameter::Path(path) => OpenOptions::new()
1019 .read(true)
1020 .write(true)
1021 .custom_flags(libc::O_CLOEXEC | libc::O_NONBLOCK)
1022 .open(path)
1023 .context("failed to open virtual socket device")?,
1024 };
1025
1026 let dev = virtio::vhost::Vsock::new(device_file, features, cid)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001027 .context("failed to set up virtual socket device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -08001028
1029 Ok(VirtioDeviceStub {
1030 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001031 jail: simple_jail(cfg, "vhost_vsock_device")?,
David Tolnay2b089fc2019-03-04 15:33:22 -08001032 })
1033}
1034
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001035fn create_fs_device(
1036 cfg: &Config,
1037 uid_map: &str,
1038 gid_map: &str,
1039 src: &Path,
1040 tag: &str,
1041 fs_cfg: virtio::fs::passthrough::Config,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001042 device_tube: Tube,
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001043) -> DeviceResult {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001044 let max_open_files =
1045 base::get_max_open_files().context("failed to get max number of open files")?;
Matt Delcoc24ad782020-02-14 13:24:36 -08001046 let j = if cfg.sandbox {
1047 let seccomp_policy = cfg.seccomp_policy_dir.join("fs_device");
1048 let config = SandboxConfig {
1049 limit_caps: false,
1050 uid_map: Some(uid_map),
1051 gid_map: Some(gid_map),
1052 log_failures: cfg.seccomp_log_failures,
1053 seccomp_policy: &seccomp_policy,
1054 };
Chirantan Ekbote34d45e52020-04-20 18:15:02 +09001055 let mut jail = create_base_minijail(src, Some(max_open_files), Some(&config))?;
1056 // We want bind mounts from the parent namespaces to propagate into the fs device's
1057 // namespace.
1058 jail.set_remount_mode(libc::MS_SLAVE);
1059
1060 jail
Matt Delcoc24ad782020-02-14 13:24:36 -08001061 } else {
1062 create_base_minijail(src, Some(max_open_files), None)?
1063 };
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001064
Will Deacon7d2b8ac2020-10-06 18:51:12 +01001065 let features = virtio::base_features(cfg.protected_vm);
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001066 // TODO(chirantan): Use more than one worker once the kernel driver has been fixed to not panic
1067 // when num_queues > 1.
Daniel Verkamp6b298582021-08-16 15:37:11 -07001068 let dev = virtio::fs::Fs::new(features, tag, 1, fs_cfg, device_tube)
1069 .context("failed to create fs device")?;
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001070
1071 Ok(VirtioDeviceStub {
1072 dev: Box::new(dev),
1073 jail: Some(j),
1074 })
1075}
1076
Chirantan Ekbotec6b73e32020-02-20 15:53:06 +09001077fn create_9p_device(
1078 cfg: &Config,
1079 uid_map: &str,
1080 gid_map: &str,
1081 src: &Path,
1082 tag: &str,
Chirantan Ekbote75ba8752020-10-27 18:33:02 +09001083 mut p9_cfg: p9::Config,
Chirantan Ekbotec6b73e32020-02-20 15:53:06 +09001084) -> DeviceResult {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001085 let max_open_files =
1086 base::get_max_open_files().context("failed to get max number of open files")?;
Chirantan Ekbotec6b73e32020-02-20 15:53:06 +09001087 let (jail, root) = if cfg.sandbox {
1088 let seccomp_policy = cfg.seccomp_policy_dir.join("9p_device");
1089 let config = SandboxConfig {
1090 limit_caps: false,
1091 uid_map: Some(uid_map),
1092 gid_map: Some(gid_map),
1093 log_failures: cfg.seccomp_log_failures,
1094 seccomp_policy: &seccomp_policy,
1095 };
David Tolnay2b089fc2019-03-04 15:33:22 -08001096
Chirantan Ekbotec6b73e32020-02-20 15:53:06 +09001097 let mut jail = create_base_minijail(src, Some(max_open_files), Some(&config))?;
1098 // We want bind mounts from the parent namespaces to propagate into the 9p server's
1099 // namespace.
1100 jail.set_remount_mode(libc::MS_SLAVE);
Chirantan Ekbote055de382020-01-24 12:16:58 +09001101
Chirantan Ekbotec6b73e32020-02-20 15:53:06 +09001102 // The shared directory becomes the root of the device's file system.
1103 let root = Path::new("/");
1104 (Some(jail), root)
1105 } else {
1106 // There's no mount namespace so we tell the server to treat the source directory as the
1107 // root.
1108 (None, src)
David Tolnay2b089fc2019-03-04 15:33:22 -08001109 };
1110
Will Deacon7d2b8ac2020-10-06 18:51:12 +01001111 let features = virtio::base_features(cfg.protected_vm);
Chirantan Ekbote75ba8752020-10-27 18:33:02 +09001112 p9_cfg.root = root.into();
Daniel Verkamp6b298582021-08-16 15:37:11 -07001113 let dev = virtio::P9::new(features, tag, p9_cfg).context("failed to create 9p device")?;
David Tolnay2b089fc2019-03-04 15:33:22 -08001114
1115 Ok(VirtioDeviceStub {
1116 dev: Box::new(dev),
1117 jail,
1118 })
1119}
1120
Jakub Starona3411ea2019-04-24 10:55:25 -07001121fn create_pmem_device(
1122 cfg: &Config,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001123 vm: &mut impl Vm,
Jakub Starona3411ea2019-04-24 10:55:25 -07001124 resources: &mut SystemAllocator,
1125 disk: &DiskOption,
1126 index: usize,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001127 pmem_device_tube: Tube,
Jakub Starona3411ea2019-04-24 10:55:25 -07001128) -> DeviceResult {
Junichi Uekawa7bea39f2021-07-16 14:05:06 +09001129 let fd = open_file(&disk.path, disk.read_only, false /*O_DIRECT*/)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001130 .with_context(|| format!("failed to load disk image {}", disk.path.display()))?;
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001131
1132 let (disk_size, arena_size) = {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001133 let metadata = std::fs::metadata(&disk.path).with_context(|| {
1134 format!("failed to get disk image {} metadata", disk.path.display())
1135 })?;
Stephen Barberdc7c07b2019-12-20 12:43:35 -08001136 let disk_len = metadata.len();
1137 // Linux requires pmem region sizes to be 2 MiB aligned. Linux will fill any partial page
1138 // at the end of an mmap'd file and won't write back beyond the actual file length, but if
1139 // we just align the size of the file to 2 MiB then access beyond the last page of the
1140 // mapped file will generate SIGBUS. So use a memory mapping arena that will provide
1141 // padding up to 2 MiB.
1142 let alignment = 2 * 1024 * 1024;
1143 let align_adjust = if disk_len % alignment != 0 {
1144 alignment - (disk_len % alignment)
1145 } else {
1146 0
1147 };
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001148 (
1149 disk_len,
1150 disk_len
1151 .checked_add(align_adjust)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001152 .ok_or_else(|| anyhow!("pmem device image too big"))?,
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001153 )
Jakub Starona3411ea2019-04-24 10:55:25 -07001154 };
1155
1156 let protection = {
1157 if disk.read_only {
1158 Protection::read()
1159 } else {
1160 Protection::read_write()
1161 }
1162 };
1163
Stephen Barberdc7c07b2019-12-20 12:43:35 -08001164 let arena = {
Jakub Starona3411ea2019-04-24 10:55:25 -07001165 // Conversion from u64 to usize may fail on 32bit system.
Daniel Verkamp6b298582021-08-16 15:37:11 -07001166 let arena_size = usize::try_from(arena_size).context("pmem device image too big")?;
1167 let disk_size = usize::try_from(disk_size).context("pmem device image too big")?;
Jakub Starona3411ea2019-04-24 10:55:25 -07001168
Daniel Verkamp6b298582021-08-16 15:37:11 -07001169 let mut arena =
1170 MemoryMappingArena::new(arena_size).context("failed to reserve pmem memory")?;
Stephen Barberdc7c07b2019-12-20 12:43:35 -08001171 arena
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001172 .add_fd_offset_protection(0, disk_size, &fd, 0, protection)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001173 .context("failed to reserve pmem memory")?;
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001174
1175 // If the disk is not a multiple of the page size, the OS will fill the remaining part
1176 // of the page with zeroes. However, the anonymous mapping added below must start on a
1177 // page boundary, so round up the size before calculating the offset of the anon region.
1178 let disk_size = round_up_to_page_size(disk_size);
1179
1180 if arena_size > disk_size {
1181 // Add an anonymous region with the same protection as the disk mapping if the arena
1182 // size was aligned.
1183 arena
1184 .add_anon_protection(disk_size, arena_size - disk_size, protection)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001185 .context("failed to reserve pmem padding")?;
Daniel Verkamp3eeaf6a2021-08-30 15:29:44 -07001186 }
Stephen Barberdc7c07b2019-12-20 12:43:35 -08001187 arena
Jakub Starona3411ea2019-04-24 10:55:25 -07001188 };
1189
1190 let mapping_address = resources
Xiong Zhang383b3b52019-10-30 14:59:26 +08001191 .mmio_allocator(MmioType::High)
Daniel Verkamp57e4f542021-10-28 09:56:40 -07001192 .reverse_allocate_with_align(
Stephen Barberdc7c07b2019-12-20 12:43:35 -08001193 arena_size,
Jakub Starona3411ea2019-04-24 10:55:25 -07001194 Alloc::PmemDevice(index),
1195 format!("pmem_disk_image_{}", index),
1196 // Linux kernel requires pmem namespaces to be 128 MiB aligned.
1197 128 * 1024 * 1024, /* 128 MiB */
1198 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001199 .context("failed to allocate memory for pmem device")?;
Jakub Starona3411ea2019-04-24 10:55:25 -07001200
Daniel Verkampe1980a92020-02-07 11:00:55 -08001201 let slot = vm
Gurchetan Singh173fe622020-05-21 18:05:06 -07001202 .add_memory_region(
Daniel Verkampe1980a92020-02-07 11:00:55 -08001203 GuestAddress(mapping_address),
Gurchetan Singh173fe622020-05-21 18:05:06 -07001204 Box::new(arena),
Daniel Verkampe1980a92020-02-07 11:00:55 -08001205 /* read_only = */ disk.read_only,
1206 /* log_dirty_pages = */ false,
1207 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001208 .context("failed to add pmem device memory")?;
Jakub Starona3411ea2019-04-24 10:55:25 -07001209
Daniel Verkampe1980a92020-02-07 11:00:55 -08001210 let dev = virtio::Pmem::new(
Will Deacon7d2b8ac2020-10-06 18:51:12 +01001211 virtio::base_features(cfg.protected_vm),
Daniel Verkampe1980a92020-02-07 11:00:55 -08001212 fd,
1213 GuestAddress(mapping_address),
1214 slot,
1215 arena_size,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001216 Some(pmem_device_tube),
Daniel Verkampe1980a92020-02-07 11:00:55 -08001217 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001218 .context("failed to create pmem device")?;
Jakub Starona3411ea2019-04-24 10:55:25 -07001219
1220 Ok(VirtioDeviceStub {
1221 dev: Box::new(dev) as Box<dyn VirtioDevice>,
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001222 jail: simple_jail(cfg, "pmem_device")?,
Jakub Starona3411ea2019-04-24 10:55:25 -07001223 })
1224}
1225
Zide Chendfc4b882021-03-10 16:35:37 -08001226fn create_iommu_device(
1227 cfg: &Config,
Zide Chen71435c12021-03-03 15:02:02 -08001228 phys_max_addr: u64,
Zide Chendfc4b882021-03-10 16:35:37 -08001229 endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>>,
1230) -> DeviceResult {
Zide Chen71435c12021-03-03 15:02:02 -08001231 let dev = virtio::Iommu::new(
1232 virtio::base_features(cfg.protected_vm),
1233 endpoints,
1234 phys_max_addr,
1235 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001236 .context("failed to create IOMMU device")?;
Zide Chendfc4b882021-03-10 16:35:37 -08001237
1238 Ok(VirtioDeviceStub {
1239 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001240 jail: simple_jail(cfg, "iommu_device")?,
Zide Chendfc4b882021-03-10 16:35:37 -08001241 })
1242}
1243
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001244fn create_console_device(cfg: &Config, param: &SerialParameters) -> DeviceResult {
Michael Hoylecd23bc22020-10-20 22:12:20 -07001245 let mut keep_rds = Vec::new();
Daniel Verkamp6b298582021-08-16 15:37:11 -07001246 let evt = Event::new().context("failed to create event")?;
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001247 let dev = param
Michael Hoylecd23bc22020-10-20 22:12:20 -07001248 .create_serial_device::<Console>(cfg.protected_vm, &evt, &mut keep_rds)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001249 .context("failed to create console device")?;
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001250
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001251 let jail = match simple_jail(cfg, "serial")? {
Nicholas Verne71e73d82020-07-08 17:19:55 +10001252 Some(mut jail) => {
1253 // Create a tmpfs in the device's root directory so that we can bind mount the
1254 // log socket directory into it.
1255 // The size=67108864 is size=64*1024*1024 or size=64MB.
1256 jail.mount_with_data(
1257 Path::new("none"),
1258 Path::new("/"),
1259 "tmpfs",
1260 (libc::MS_NODEV | libc::MS_NOEXEC | libc::MS_NOSUID) as usize,
1261 "size=67108864",
1262 )?;
Fergus Dall51200512021-08-19 12:54:26 +10001263 add_current_user_to_jail(&mut jail)?;
Nicholas Verne71e73d82020-07-08 17:19:55 +10001264 let res = param.add_bind_mounts(&mut jail);
1265 if res.is_err() {
1266 error!("failed to add bind mounts for console device");
1267 }
1268 Some(jail)
1269 }
1270 None => None,
1271 };
1272
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001273 Ok(VirtioDeviceStub {
1274 dev: Box::new(dev),
Nicholas Verne71e73d82020-07-08 17:19:55 +10001275 jail, // TODO(dverkamp): use a separate policy for console?
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001276 })
1277}
1278
Jorge E. Moreirad4562d02021-06-28 16:21:12 -07001279#[cfg(feature = "audio")]
1280fn create_sound_device(path: &Path, cfg: &Config) -> DeviceResult {
1281 let dev = virtio::new_sound(path, virtio::base_features(cfg.protected_vm))
Daniel Verkamp6b298582021-08-16 15:37:11 -07001282 .context("failed to create sound device")?;
Jorge E. Moreirad4562d02021-06-28 16:21:12 -07001283
1284 Ok(VirtioDeviceStub {
1285 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001286 jail: simple_jail(cfg, "vios_audio_device")?,
Jorge E. Moreirad4562d02021-06-28 16:21:12 -07001287 })
1288}
1289
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001290// gpu_device_tube is not used when GPU support is disabled.
Dmitry Torokhovee42b8c2019-05-27 11:14:20 -07001291#[cfg_attr(not(feature = "gpu"), allow(unused_variables))]
David Tolnay2b089fc2019-03-04 15:33:22 -08001292fn create_virtio_devices(
1293 cfg: &Config,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001294 vm: &mut impl Vm,
Jakub Starona3411ea2019-04-24 10:55:25 -07001295 resources: &mut SystemAllocator,
Michael Hoyle685316f2020-09-16 15:29:20 -07001296 _exit_evt: &Event,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001297 wayland_device_tube: Tube,
1298 gpu_device_tube: Tube,
Chirantan Ekbote44292f52021-06-25 18:31:41 +09001299 vhost_user_gpu_tubes: Vec<(Tube, Tube)>,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001300 balloon_device_tube: Tube,
1301 disk_device_tubes: &mut Vec<Tube>,
1302 pmem_device_tubes: &mut Vec<Tube>,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08001303 map_request: Arc<Mutex<Option<ExternalMapping>>>,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001304 fs_device_tubes: &mut Vec<Tube>,
David Tolnay2b089fc2019-03-04 15:33:22 -08001305) -> DeviceResult<Vec<VirtioDeviceStub>> {
Dylan Reid059a1882018-07-23 17:58:09 -07001306 let mut devs = Vec::new();
Zach Reizner39aa26b2017-12-12 18:03:23 -08001307
Daniel Verkampa7b6a1c2020-03-09 13:16:46 -07001308 for (_, param) in cfg
1309 .serial_parameters
1310 .iter()
1311 .filter(|(_k, v)| v.hardware == SerialHardware::VirtioConsole)
1312 {
1313 let dev = create_console_device(cfg, param)?;
1314 devs.push(dev);
1315 }
1316
Zach Reizner8fb52112017-12-13 16:04:39 -08001317 for disk in &cfg.disks {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001318 let disk_device_tube = disk_device_tubes.remove(0);
1319 devs.push(create_block_device(cfg, disk, disk_device_tube)?);
Zach Reizner39aa26b2017-12-12 18:03:23 -08001320 }
1321
Keiichi Watanabef3a37f42021-01-21 15:41:11 +09001322 for blk in &cfg.vhost_user_blk {
1323 devs.push(create_vhost_user_block_device(cfg, blk)?);
1324 }
1325
Federico 'Morg' Pareschi70fc7de2021-04-08 15:43:13 +09001326 for console in &cfg.vhost_user_console {
1327 devs.push(create_vhost_user_console_device(cfg, console)?);
1328 }
1329
Jakub Starona3411ea2019-04-24 10:55:25 -07001330 for (index, pmem_disk) in cfg.pmem_devices.iter().enumerate() {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001331 let pmem_device_tube = pmem_device_tubes.remove(0);
Daniel Verkampe1980a92020-02-07 11:00:55 -08001332 devs.push(create_pmem_device(
1333 cfg,
1334 vm,
1335 resources,
1336 pmem_disk,
1337 index,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001338 pmem_device_tube,
Daniel Verkampe1980a92020-02-07 11:00:55 -08001339 )?);
Jakub Starona3411ea2019-04-24 10:55:25 -07001340 }
1341
David Tolnay2b089fc2019-03-04 15:33:22 -08001342 devs.push(create_rng_device(cfg)?);
Zach Reizner39aa26b2017-12-12 18:03:23 -08001343
Woody Chow737ff122021-03-22 17:49:57 +09001344 #[cfg(feature = "audio_cras")]
1345 {
Woody Chow0b2b6062021-09-03 15:40:02 +09001346 if let Some(cras_snd) = &cfg.cras_snd {
1347 devs.push(create_cras_snd_device(cfg, cras_snd.clone())?);
Woody Chow737ff122021-03-22 17:49:57 +09001348 }
1349 }
1350
David Tolnayde6b29a2018-12-20 11:49:46 -08001351 #[cfg(feature = "tpm")]
1352 {
David Tolnay43f8e212019-02-13 17:28:16 -08001353 if cfg.software_tpm {
David Tolnay2b089fc2019-03-04 15:33:22 -08001354 devs.push(create_tpm_device(cfg)?);
David Tolnay43f8e212019-02-13 17:28:16 -08001355 }
David Tolnayde6b29a2018-12-20 11:49:46 -08001356 }
1357
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001358 for (idx, single_touch_spec) in cfg.virtio_single_touch.iter().enumerate() {
1359 devs.push(create_single_touch_device(
1360 cfg,
1361 single_touch_spec,
1362 idx as u32,
1363 )?);
Jorge E. Moreira99d3f082019-03-07 10:59:54 -08001364 }
1365
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001366 for (idx, multi_touch_spec) in cfg.virtio_multi_touch.iter().enumerate() {
1367 devs.push(create_multi_touch_device(
1368 cfg,
1369 multi_touch_spec,
1370 idx as u32,
1371 )?);
Tristan Muntsinger486cffc2020-09-29 22:05:41 +00001372 }
1373
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001374 for (idx, trackpad_spec) in cfg.virtio_trackpad.iter().enumerate() {
1375 devs.push(create_trackpad_device(cfg, trackpad_spec, idx as u32)?);
Jorge E. Moreiradffec502019-01-14 18:44:49 -08001376 }
1377
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001378 for (idx, mouse_socket) in cfg.virtio_mice.iter().enumerate() {
1379 devs.push(create_mouse_device(cfg, mouse_socket, idx as u32)?);
Jorge E. Moreiradffec502019-01-14 18:44:49 -08001380 }
1381
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001382 for (idx, keyboard_socket) in cfg.virtio_keyboard.iter().enumerate() {
1383 devs.push(create_keyboard_device(cfg, keyboard_socket, idx as u32)?);
Jorge E. Moreiradffec502019-01-14 18:44:49 -08001384 }
1385
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001386 for (idx, switches_socket) in cfg.virtio_switches.iter().enumerate() {
1387 devs.push(create_switches_device(cfg, switches_socket, idx as u32)?);
Daniel Norman5e23df72021-03-11 10:11:02 -08001388 }
1389
Jianxun Zhang8f4d7682019-02-21 12:55:31 -08001390 for dev_path in &cfg.virtio_input_evdevs {
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001391 devs.push(create_vinput_device(cfg, dev_path)?);
Jorge E. Moreiradffec502019-01-14 18:44:49 -08001392 }
1393
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001394 devs.push(create_balloon_device(cfg, balloon_device_tube)?);
Dylan Reid295ccac2017-11-06 14:06:24 -08001395
Zach Reizner39aa26b2017-12-12 18:03:23 -08001396 // We checked above that if the IP is defined, then the netmask is, too.
Jianxun Zhang8f4d7682019-02-21 12:55:31 -08001397 for tap_fd in &cfg.tap_fd {
David Tolnay2b089fc2019-03-04 15:33:22 -08001398 devs.push(create_tap_net_device(cfg, *tap_fd)?);
Jorge E. Moreirab7952802019-02-12 16:43:05 -08001399 }
1400
David Tolnay2b089fc2019-03-04 15:33:22 -08001401 if let (Some(host_ip), Some(netmask), Some(mac_address)) =
1402 (cfg.host_ip, cfg.netmask, cfg.mac_address)
1403 {
Keiichi Watanabe60686582021-03-12 04:53:51 +09001404 if !cfg.vhost_user_net.is_empty() {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001405 bail!("vhost-user-net cannot be used with any of --host_ip, --netmask or --mac");
Keiichi Watanabe60686582021-03-12 04:53:51 +09001406 }
Chirantan Ekbote3e8d52b2021-09-10 18:27:16 +09001407 devs.push(create_net_device(cfg, host_ip, netmask, mac_address)?);
Zach Reizner39aa26b2017-12-12 18:03:23 -08001408 }
1409
Keiichi Watanabe60686582021-03-12 04:53:51 +09001410 for net in &cfg.vhost_user_net {
1411 devs.push(create_vhost_user_net_device(cfg, net)?);
1412 }
1413
Chirantan Ekbote84091e52021-09-10 18:43:17 +09001414 for vsock in &cfg.vhost_user_vsock {
1415 devs.push(create_vhost_user_vsock_device(cfg, vsock)?);
1416 }
1417
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +09001418 for opt in &cfg.vhost_user_wl {
1419 devs.push(create_vhost_user_wl_device(cfg, opt)?);
1420 }
1421
Chirantan Ekbote44292f52021-06-25 18:31:41 +09001422 #[cfg(feature = "gpu")]
1423 for (opt, (host_tube, device_tube)) in cfg.vhost_user_gpu.iter().zip(vhost_user_gpu_tubes) {
1424 devs.push(create_vhost_user_gpu_device(
1425 cfg,
1426 opt,
1427 host_tube,
1428 device_tube,
1429 )?);
1430 }
1431
David Tolnayfa701712019-02-13 16:42:54 -08001432 #[cfg_attr(not(feature = "gpu"), allow(unused_mut))]
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001433 let mut resource_bridges = Vec::<Tube>::new();
Chirantan Ekbotedd11d432019-06-11 21:50:46 +09001434
Ryo Hashimoto0b788de2019-12-10 17:14:13 +09001435 if !cfg.wayland_socket_paths.is_empty() {
Chirantan Ekbotedd11d432019-06-11 21:50:46 +09001436 #[cfg_attr(not(feature = "gpu"), allow(unused_mut))]
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001437 let mut wl_resource_bridge = None::<Tube>;
Chirantan Ekbotedd11d432019-06-11 21:50:46 +09001438
1439 #[cfg(feature = "gpu")]
1440 {
Jason Macnakcc7070b2019-11-06 14:48:12 -08001441 if cfg.gpu_parameters.is_some() {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001442 let (wl_socket, gpu_socket) = Tube::pair().context("failed to create tube")?;
Chirantan Ekbotedd11d432019-06-11 21:50:46 +09001443 resource_bridges.push(gpu_socket);
1444 wl_resource_bridge = Some(wl_socket);
1445 }
1446 }
1447
1448 devs.push(create_wayland_device(
1449 cfg,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001450 wayland_device_tube,
Chirantan Ekbotedd11d432019-06-11 21:50:46 +09001451 wl_resource_bridge,
1452 )?);
1453 }
David Tolnayfa701712019-02-13 16:42:54 -08001454
Keiichi Watanabe57df6a02019-12-06 22:24:40 +09001455 #[cfg(feature = "video-decoder")]
Daniel Verkampffb59122021-03-18 14:06:15 -07001456 let video_dec_tube = if cfg.video_dec {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001457 let (video_tube, gpu_tube) = Tube::pair().context("failed to create tube")?;
Daniel Verkampffb59122021-03-18 14:06:15 -07001458 resource_bridges.push(gpu_tube);
1459 Some(video_tube)
1460 } else {
1461 None
1462 };
Keiichi Watanabe57df6a02019-12-06 22:24:40 +09001463
1464 #[cfg(feature = "video-encoder")]
Daniel Verkampffb59122021-03-18 14:06:15 -07001465 let video_enc_tube = if cfg.video_enc {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001466 let (video_tube, gpu_tube) = Tube::pair().context("failed to create tube")?;
Daniel Verkampffb59122021-03-18 14:06:15 -07001467 resource_bridges.push(gpu_tube);
1468 Some(video_tube)
1469 } else {
1470 None
1471 };
Keiichi Watanabe57df6a02019-12-06 22:24:40 +09001472
Zach Reizner3a8100a2017-09-13 19:15:43 -07001473 #[cfg(feature = "gpu")]
1474 {
Noah Golddc7f52b2020-02-01 13:01:58 -08001475 if let Some(gpu_parameters) = &cfg.gpu_parameters {
Jason Macnakd659a0d2021-03-15 15:33:01 -07001476 let mut gpu_display_w = DEFAULT_DISPLAY_WIDTH;
1477 let mut gpu_display_h = DEFAULT_DISPLAY_HEIGHT;
1478 if !gpu_parameters.displays.is_empty() {
1479 gpu_display_w = gpu_parameters.displays[0].width;
1480 gpu_display_h = gpu_parameters.displays[0].height;
1481 }
1482
Zach Reizner65b98f12019-11-22 17:34:58 -08001483 let mut event_devices = Vec::new();
1484 if cfg.display_window_mouse {
1485 let (event_device_socket, virtio_dev_socket) =
Daniel Verkamp6b298582021-08-16 15:37:11 -07001486 UnixStream::pair().context("failed to create socket")?;
Tristan Muntsinger486cffc2020-09-29 22:05:41 +00001487 let (multi_touch_width, multi_touch_height) = cfg
1488 .virtio_multi_touch
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001489 .first()
Kaiyi Libccb4eb2020-02-06 17:53:11 -08001490 .as_ref()
Tristan Muntsinger486cffc2020-09-29 22:05:41 +00001491 .map(|multi_touch_spec| multi_touch_spec.get_size())
Jason Macnakd659a0d2021-03-15 15:33:01 -07001492 .unwrap_or((gpu_display_w, gpu_display_h));
Tristan Muntsinger486cffc2020-09-29 22:05:41 +00001493 let dev = virtio::new_multi_touch(
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001494 // u32::MAX is the least likely to collide with the indices generated above for
1495 // the multi_touch options, which begin at 0.
1496 u32::MAX,
Kaiyi Libccb4eb2020-02-06 17:53:11 -08001497 virtio_dev_socket,
Tristan Muntsinger486cffc2020-09-29 22:05:41 +00001498 multi_touch_width,
1499 multi_touch_height,
Noah Goldd4ca29b2020-10-27 12:21:52 -07001500 virtio::base_features(cfg.protected_vm),
Kaiyi Libccb4eb2020-02-06 17:53:11 -08001501 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001502 .context("failed to set up mouse device")?;
Zach Reizner65b98f12019-11-22 17:34:58 -08001503 devs.push(VirtioDeviceStub {
1504 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001505 jail: simple_jail(cfg, "input_device")?,
Zach Reizner65b98f12019-11-22 17:34:58 -08001506 });
1507 event_devices.push(EventDevice::touchscreen(event_device_socket));
1508 }
1509 if cfg.display_window_keyboard {
1510 let (event_device_socket, virtio_dev_socket) =
Daniel Verkamp6b298582021-08-16 15:37:11 -07001511 UnixStream::pair().context("failed to create socket")?;
Noah Goldd4ca29b2020-10-27 12:21:52 -07001512 let dev = virtio::new_keyboard(
Jorge E. Moreira6635ca42021-04-28 13:11:41 -07001513 // u32::MAX is the least likely to collide with the indices generated above for
1514 // the multi_touch options, which begin at 0.
1515 u32::MAX,
Noah Goldd4ca29b2020-10-27 12:21:52 -07001516 virtio_dev_socket,
1517 virtio::base_features(cfg.protected_vm),
1518 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001519 .context("failed to set up keyboard device")?;
Zach Reizner65b98f12019-11-22 17:34:58 -08001520 devs.push(VirtioDeviceStub {
1521 dev: Box::new(dev),
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001522 jail: simple_jail(cfg, "input_device")?,
Zach Reizner65b98f12019-11-22 17:34:58 -08001523 });
1524 event_devices.push(EventDevice::keyboard(event_device_socket));
1525 }
Zach Reizner0f2cfb02019-06-19 17:46:03 -07001526 devs.push(create_gpu_device(
1527 cfg,
1528 _exit_evt,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001529 gpu_device_tube,
Zach Reizner0f2cfb02019-06-19 17:46:03 -07001530 resource_bridges,
Ryo Hashimoto0b788de2019-12-10 17:14:13 +09001531 // Use the unnamed socket for GPU display screens.
1532 cfg.wayland_socket_paths.get(""),
Zach Reizner0f2cfb02019-06-19 17:46:03 -07001533 cfg.x_display.clone(),
Zach Reizner65b98f12019-11-22 17:34:58 -08001534 event_devices,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08001535 map_request,
Zach Reizner0f2cfb02019-06-19 17:46:03 -07001536 )?);
Zach Reizner3a8100a2017-09-13 19:15:43 -07001537 }
1538 }
1539
Daniel Verkampffb59122021-03-18 14:06:15 -07001540 #[cfg(feature = "video-decoder")]
1541 {
1542 if let Some(video_dec_tube) = video_dec_tube {
1543 register_video_device(
1544 &mut devs,
1545 video_dec_tube,
1546 cfg,
1547 devices::virtio::VideoDeviceType::Decoder,
1548 )?;
1549 }
1550 }
1551
1552 #[cfg(feature = "video-encoder")]
1553 {
1554 if let Some(video_enc_tube) = video_enc_tube {
1555 register_video_device(
1556 &mut devs,
1557 video_enc_tube,
1558 cfg,
1559 devices::virtio::VideoDeviceType::Encoder,
1560 )?;
1561 }
1562 }
1563
Zach Reizneraa575662018-08-15 10:46:32 -07001564 if let Some(cid) = cfg.cid {
Chirantan Ekbote3e8d52b2021-09-10 18:27:16 +09001565 devs.push(create_vhost_vsock_device(cfg, cid)?);
Zach Reizneraa575662018-08-15 10:46:32 -07001566 }
1567
Woody Chow5890b702021-02-12 14:57:02 +09001568 for vhost_user_fs in &cfg.vhost_user_fs {
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001569 devs.push(create_vhost_user_fs_device(cfg, vhost_user_fs)?);
Woody Chow5890b702021-02-12 14:57:02 +09001570 }
1571
Woody Chow1b16db12021-04-02 16:59:59 +09001572 #[cfg(feature = "audio")]
1573 for vhost_user_snd in &cfg.vhost_user_snd {
1574 devs.push(create_vhost_user_snd_device(cfg, vhost_user_snd)?);
1575 }
1576
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001577 for shared_dir in &cfg.shared_dirs {
1578 let SharedDir {
1579 src,
1580 tag,
1581 kind,
1582 uid_map,
1583 gid_map,
Chirantan Ekbote75ba8752020-10-27 18:33:02 +09001584 fs_cfg,
1585 p9_cfg,
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001586 } = shared_dir;
David Tolnay2b089fc2019-03-04 15:33:22 -08001587
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001588 let dev = match kind {
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09001589 SharedDirKind::FS => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001590 let device_tube = fs_device_tubes.remove(0);
1591 create_fs_device(cfg, uid_map, gid_map, src, tag, fs_cfg.clone(), device_tube)?
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09001592 }
Chirantan Ekbote75ba8752020-10-27 18:33:02 +09001593 SharedDirKind::P9 => create_9p_device(cfg, uid_map, gid_map, src, tag, p9_cfg.clone())?,
Chirantan Ekbotebd4723b2019-07-17 10:50:30 +09001594 };
1595 devs.push(dev);
David Tolnay2b089fc2019-03-04 15:33:22 -08001596 }
1597
JaeMan Parkeb9cc532021-07-02 15:02:59 +09001598 if let Some(vhost_user_mac80211_hwsim) = &cfg.vhost_user_mac80211_hwsim {
1599 devs.push(create_vhost_user_mac80211_hwsim_device(
1600 cfg,
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001601 vhost_user_mac80211_hwsim,
JaeMan Parkeb9cc532021-07-02 15:02:59 +09001602 )?);
1603 }
1604
Jorge E. Moreirad4562d02021-06-28 16:21:12 -07001605 #[cfg(feature = "audio")]
1606 if let Some(path) = &cfg.sound {
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001607 devs.push(create_sound_device(path, cfg)?);
Jorge E. Moreirad4562d02021-06-28 16:21:12 -07001608 }
1609
David Tolnay2b089fc2019-03-04 15:33:22 -08001610 Ok(devs)
1611}
1612
Xiong Zhang10f15052021-04-08 17:23:33 +08001613fn create_vfio_device(
1614 cfg: &Config,
1615 vm: &impl Vm,
1616 resources: &mut SystemAllocator,
1617 control_tubes: &mut Vec<TaggedControlTube>,
1618 vfio_path: &Path,
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08001619 bus_num: Option<u8>,
Zide Chendfc4b882021-03-10 16:35:37 -08001620 endpoints: &mut BTreeMap<u32, Arc<Mutex<VfioContainer>>>,
1621 iommu_enabled: bool,
Xiong Zhang10f15052021-04-08 17:23:33 +08001622) -> DeviceResult<(Box<VfioPciDevice>, Option<Minijail>)> {
Zide Chendfc4b882021-03-10 16:35:37 -08001623 let vfio_container = VfioCommonSetup::vfio_get_container(vfio_path, iommu_enabled)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001624 .context("failed to get vfio container")?;
Xiong Zhang10f15052021-04-08 17:23:33 +08001625
1626 // create MSI, MSI-X, and Mem request sockets for each vfio device
Daniel Verkamp6b298582021-08-16 15:37:11 -07001627 let (vfio_host_tube_msi, vfio_device_tube_msi) =
1628 Tube::pair().context("failed to create tube")?;
Xiong Zhang10f15052021-04-08 17:23:33 +08001629 control_tubes.push(TaggedControlTube::VmIrq(vfio_host_tube_msi));
1630
Daniel Verkamp6b298582021-08-16 15:37:11 -07001631 let (vfio_host_tube_msix, vfio_device_tube_msix) =
1632 Tube::pair().context("failed to create tube")?;
Xiong Zhang10f15052021-04-08 17:23:33 +08001633 control_tubes.push(TaggedControlTube::VmIrq(vfio_host_tube_msix));
1634
Daniel Verkamp6b298582021-08-16 15:37:11 -07001635 let (vfio_host_tube_mem, vfio_device_tube_mem) =
1636 Tube::pair().context("failed to create tube")?;
Xiong Zhang10f15052021-04-08 17:23:33 +08001637 control_tubes.push(TaggedControlTube::VmMemory(vfio_host_tube_mem));
1638
Xiong Zhangdea7dbb2021-07-26 14:49:03 +08001639 let vfio_device = VfioDevice::new(vfio_path, vm, vfio_container.clone(), iommu_enabled)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001640 .context("failed to create vfio device")?;
Xiong Zhang10f15052021-04-08 17:23:33 +08001641 let mut vfio_pci_device = Box::new(VfioPciDevice::new(
1642 vfio_device,
Xiong Zhange19ab752021-05-20 18:18:46 +08001643 bus_num,
Xiong Zhang10f15052021-04-08 17:23:33 +08001644 vfio_device_tube_msi,
1645 vfio_device_tube_msix,
1646 vfio_device_tube_mem,
1647 ));
1648 // early reservation for pass-through PCI devices.
Zide Chendfc4b882021-03-10 16:35:37 -08001649 let endpoint_addr = vfio_pci_device.allocate_address(resources);
1650 if endpoint_addr.is_err() {
Xiong Zhang10f15052021-04-08 17:23:33 +08001651 warn!(
1652 "address reservation failed for vfio {}",
1653 vfio_pci_device.debug_label()
1654 );
1655 }
1656
Zide Chendfc4b882021-03-10 16:35:37 -08001657 if iommu_enabled {
1658 endpoints.insert(endpoint_addr.unwrap().to_u32(), vfio_container);
1659 }
1660
Xiong Zhang10f15052021-04-08 17:23:33 +08001661 Ok((vfio_pci_device, simple_jail(cfg, "vfio_device")?))
1662}
1663
Tomasz Nowicki344eb142021-09-22 05:51:58 +00001664fn create_vfio_platform_device(
1665 cfg: &Config,
1666 vm: &impl Vm,
1667 _resources: &mut SystemAllocator,
1668 control_tubes: &mut Vec<TaggedControlTube>,
1669 vfio_path: &Path,
1670 _endpoints: &mut BTreeMap<u32, Arc<Mutex<VfioContainer>>>,
1671 iommu_enabled: bool,
1672) -> DeviceResult<(VfioPlatformDevice, Option<Minijail>)> {
1673 let vfio_container = VfioCommonSetup::vfio_get_container(vfio_path, iommu_enabled)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001674 .context("Failed to create vfio device")?;
Tomasz Nowicki344eb142021-09-22 05:51:58 +00001675
Daniel Verkamp6b298582021-08-16 15:37:11 -07001676 let (vfio_host_tube_mem, vfio_device_tube_mem) =
1677 Tube::pair().context("failed to create tube")?;
Tomasz Nowicki344eb142021-09-22 05:51:58 +00001678 control_tubes.push(TaggedControlTube::VmMemory(vfio_host_tube_mem));
1679
1680 let vfio_device = VfioDevice::new(vfio_path, vm, vfio_container, iommu_enabled)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001681 .context("Failed to create vfio device")?;
Tomasz Nowicki344eb142021-09-22 05:51:58 +00001682 let vfio_plat_dev = VfioPlatformDevice::new(vfio_device, vfio_device_tube_mem);
1683
1684 Ok((vfio_plat_dev, simple_jail(cfg, "vfio_platform_device")?))
1685}
1686
David Tolnay2b089fc2019-03-04 15:33:22 -08001687fn create_devices(
Trent Begin17ccaad2019-04-17 13:51:25 -06001688 cfg: &Config,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001689 vm: &mut impl Vm,
Jakub Starona3411ea2019-04-24 10:55:25 -07001690 resources: &mut SystemAllocator,
Michael Hoyle685316f2020-09-16 15:29:20 -07001691 exit_evt: &Event,
Zide Chen71435c12021-03-03 15:02:02 -08001692 phys_max_addr: u64,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001693 control_tubes: &mut Vec<TaggedControlTube>,
1694 wayland_device_tube: Tube,
1695 gpu_device_tube: Tube,
Chirantan Ekbote44292f52021-06-25 18:31:41 +09001696 vhost_user_gpu_tubes: Vec<(Tube, Tube)>,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001697 balloon_device_tube: Tube,
1698 disk_device_tubes: &mut Vec<Tube>,
1699 pmem_device_tubes: &mut Vec<Tube>,
1700 fs_device_tubes: &mut Vec<Tube>,
Daniel Verkampf1439d42021-05-21 13:55:10 -07001701 #[cfg(feature = "usb")] usb_provider: HostBackendDeviceProvider,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08001702 map_request: Arc<Mutex<Option<ExternalMapping>>>,
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001703) -> DeviceResult<Vec<(Box<dyn BusDeviceObj>, Option<Minijail>)>> {
David Tolnay2b089fc2019-03-04 15:33:22 -08001704 let stubs = create_virtio_devices(
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001705 cfg,
Jakub Starona3411ea2019-04-24 10:55:25 -07001706 vm,
1707 resources,
David Tolnay2b089fc2019-03-04 15:33:22 -08001708 exit_evt,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001709 wayland_device_tube,
1710 gpu_device_tube,
Chirantan Ekbote44292f52021-06-25 18:31:41 +09001711 vhost_user_gpu_tubes,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001712 balloon_device_tube,
1713 disk_device_tubes,
1714 pmem_device_tubes,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08001715 map_request,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001716 fs_device_tubes,
David Tolnay2b089fc2019-03-04 15:33:22 -08001717 )?;
1718
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001719 let mut devices = Vec::new();
David Tolnay2b089fc2019-03-04 15:33:22 -08001720
1721 for stub in stubs {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001722 let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001723 control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube));
Zach Reiznerdc748482021-04-14 13:59:30 -07001724 let dev = VirtioPciDevice::new(vm.get_memory().clone(), stub.dev, msi_device_tube)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001725 .context("failed to create virtio pci dev")?;
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001726 let dev = Box::new(dev) as Box<dyn BusDeviceObj>;
1727 devices.push((dev, stub.jail));
David Tolnay2b089fc2019-03-04 15:33:22 -08001728 }
1729
Andrew Scull1590e6f2020-03-18 18:00:47 +00001730 #[cfg(feature = "audio")]
Judy Hsiaod5c1e962020-02-04 12:30:01 +08001731 for ac97_param in &cfg.ac97_parameters {
Zach Reiznerdc748482021-04-14 13:59:30 -07001732 let dev = Ac97Dev::try_new(vm.get_memory().clone(), ac97_param.clone())
Daniel Verkamp6b298582021-08-16 15:37:11 -07001733 .context("failed to create ac97 device")?;
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07001734 let jail = simple_jail(cfg, dev.minijail_policy())?;
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001735 devices.push((Box::new(dev), jail));
David Tolnay2b089fc2019-03-04 15:33:22 -08001736 }
Andrew Scull1590e6f2020-03-18 18:00:47 +00001737
Daniel Verkampf1439d42021-05-21 13:55:10 -07001738 #[cfg(feature = "usb")]
1739 {
1740 // Create xhci controller.
1741 let usb_controller = Box::new(XhciController::new(vm.get_memory().clone(), usb_provider));
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001742 devices.push((usb_controller, simple_jail(cfg, "xhci")?));
Daniel Verkampf1439d42021-05-21 13:55:10 -07001743 }
David Tolnay2b089fc2019-03-04 15:33:22 -08001744
Zide Chen5deee482021-04-19 11:06:01 -07001745 if !cfg.vfio.is_empty() {
Zide Chendfc4b882021-03-10 16:35:37 -08001746 let mut iommu_attached_endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>> =
1747 BTreeMap::new();
1748
Tomasz Nowicki71aca792021-06-09 18:53:49 +00001749 for vfio_dev in cfg
1750 .vfio
1751 .iter()
1752 .filter(|dev| dev.get_type() == VfioType::Pci)
1753 {
1754 let vfio_path = &vfio_dev.vfio_path;
Zide Chen5deee482021-04-19 11:06:01 -07001755 let (vfio_pci_device, jail) = create_vfio_device(
1756 cfg,
1757 vm,
1758 resources,
1759 control_tubes,
1760 vfio_path.as_path(),
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08001761 None,
Zide Chendfc4b882021-03-10 16:35:37 -08001762 &mut iommu_attached_endpoints,
Tomasz Nowicki71aca792021-06-09 18:53:49 +00001763 vfio_dev.iommu_enabled(),
Zide Chen5deee482021-04-19 11:06:01 -07001764 )?;
Zide Chendfc4b882021-03-10 16:35:37 -08001765
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001766 devices.push((vfio_pci_device, jail));
Zide Chen5deee482021-04-19 11:06:01 -07001767 }
Zide Chendfc4b882021-03-10 16:35:37 -08001768
Tomasz Nowicki344eb142021-09-22 05:51:58 +00001769 for vfio_dev in cfg
1770 .vfio
1771 .iter()
1772 .filter(|dev| dev.get_type() == VfioType::Platform)
1773 {
1774 let vfio_path = &vfio_dev.vfio_path;
1775 let (vfio_plat_dev, jail) = create_vfio_platform_device(
1776 cfg,
1777 vm,
1778 resources,
1779 control_tubes,
1780 vfio_path.as_path(),
1781 &mut iommu_attached_endpoints,
1782 false, // Virtio IOMMU is not supported yet
1783 )?;
1784
1785 devices.push((Box::new(vfio_plat_dev), jail));
1786 }
1787
Zide Chendfc4b882021-03-10 16:35:37 -08001788 if !iommu_attached_endpoints.is_empty() {
Zide Chen71435c12021-03-03 15:02:02 -08001789 let iommu_dev = create_iommu_device(cfg, phys_max_addr, iommu_attached_endpoints)?;
Zide Chendfc4b882021-03-10 16:35:37 -08001790
Daniel Verkamp6b298582021-08-16 15:37:11 -07001791 let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?;
Zide Chendfc4b882021-03-10 16:35:37 -08001792 control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube));
Peter Fangad3b24e2021-06-21 00:43:29 -07001793 let mut dev =
1794 VirtioPciDevice::new(vm.get_memory().clone(), iommu_dev.dev, msi_device_tube)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001795 .context("failed to create virtio pci dev")?;
Peter Fangad3b24e2021-06-21 00:43:29 -07001796 // early reservation for viommu.
1797 dev.allocate_address(resources)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001798 .context("failed to allocate resources early for virtio pci dev")?;
Peter Fangad3b24e2021-06-21 00:43:29 -07001799 let dev = Box::new(dev);
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001800 devices.push((dev, iommu_dev.jail));
Zide Chendfc4b882021-03-10 16:35:37 -08001801 }
Xiong Zhang17b0daf2019-04-23 17:14:50 +08001802 }
1803
Mattias Nisslerde2c6402021-10-21 12:05:29 +00001804 for params in &cfg.stub_pci_devices {
1805 // Stub devices don't need jailing since they don't do anything.
1806 devices.push((Box::new(StubPciDevice::new(params)), None));
1807 }
1808
Tomasz Nowickiab86d522021-09-22 05:50:46 +00001809 Ok(devices)
David Tolnay2b089fc2019-03-04 15:33:22 -08001810}
1811
1812#[derive(Copy, Clone)]
Chirantan Ekbote1a2683b2019-11-26 16:28:23 +09001813#[cfg_attr(not(feature = "tpm"), allow(dead_code))]
David Tolnay2b089fc2019-03-04 15:33:22 -08001814struct Ids {
1815 uid: uid_t,
1816 gid: gid_t,
1817}
1818
David Tolnay48c48292019-03-01 16:54:25 -08001819// Set the uid/gid for the jailed process and give a basic id map. This is
1820// required for bind mounts to work.
Fergus Dall51200512021-08-19 12:54:26 +10001821fn add_current_user_to_jail(jail: &mut Minijail) -> Result<Ids> {
1822 let crosvm_uid = geteuid();
1823 let crosvm_gid = getegid();
David Tolnay48c48292019-03-01 16:54:25 -08001824
David Tolnay48c48292019-03-01 16:54:25 -08001825 jail.uidmap(&format!("{0} {0} 1", crosvm_uid))
Daniel Verkamp6b298582021-08-16 15:37:11 -07001826 .context("error setting UID map")?;
David Tolnay48c48292019-03-01 16:54:25 -08001827 jail.gidmap(&format!("{0} {0} 1", crosvm_gid))
Daniel Verkamp6b298582021-08-16 15:37:11 -07001828 .context("error setting GID map")?;
David Tolnay48c48292019-03-01 16:54:25 -08001829
Chirantan Ekbotee1663ee2021-09-03 18:31:25 +09001830 if crosvm_uid != 0 {
1831 jail.change_uid(crosvm_uid);
1832 }
1833 if crosvm_gid != 0 {
1834 jail.change_gid(crosvm_gid);
1835 }
Fergus Dall51200512021-08-19 12:54:26 +10001836
David Tolnay41a6f842019-03-01 16:18:44 -08001837 Ok(Ids {
1838 uid: crosvm_uid,
1839 gid: crosvm_gid,
1840 })
David Tolnay48c48292019-03-01 16:54:25 -08001841}
1842
Zach Reizner65b98f12019-11-22 17:34:58 -08001843trait IntoUnixStream {
1844 fn into_unix_stream(self) -> Result<UnixStream>;
1845}
1846
1847impl<'a> IntoUnixStream for &'a Path {
1848 fn into_unix_stream(self) -> Result<UnixStream> {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001849 if let Some(fd) = safe_descriptor_from_path(self).context("failed to open event device")? {
Andrew Walbranbc55e302021-07-13 17:35:10 +01001850 Ok(fd.into())
Zach Reizner65b98f12019-11-22 17:34:58 -08001851 } else {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001852 UnixStream::connect(self).context("failed to open event device")
Zach Reizner65b98f12019-11-22 17:34:58 -08001853 }
1854 }
1855}
1856impl<'a> IntoUnixStream for &'a PathBuf {
1857 fn into_unix_stream(self) -> Result<UnixStream> {
1858 self.as_path().into_unix_stream()
1859 }
1860}
1861
1862impl IntoUnixStream for UnixStream {
1863 fn into_unix_stream(self) -> Result<UnixStream> {
1864 Ok(self)
Jorge E. Moreiradffec502019-01-14 18:44:49 -08001865 }
1866}
1867
Steven Richmanf32d0b42020-06-20 21:45:32 -07001868fn setup_vcpu_signal_handler<T: Vcpu>(use_hypervisor_signals: bool) -> Result<()> {
1869 if use_hypervisor_signals {
Matt Delco84cf9c02019-10-07 22:38:13 -07001870 unsafe {
Allen Webb44c728c2021-03-23 15:22:41 -05001871 extern "C" fn handle_signal(_: c_int) {}
Matt Delco84cf9c02019-10-07 22:38:13 -07001872 // Our signal handler does nothing and is trivially async signal safe.
1873 register_rt_signal_handler(SIGRTMIN() + 0, handle_signal)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001874 .context("error registering signal handler")?;
Matt Delco84cf9c02019-10-07 22:38:13 -07001875 }
Daniel Verkamp6b298582021-08-16 15:37:11 -07001876 block_signal(SIGRTMIN() + 0).context("failed to block signal")?;
Matt Delco84cf9c02019-10-07 22:38:13 -07001877 } else {
1878 unsafe {
Allen Webb44c728c2021-03-23 15:22:41 -05001879 extern "C" fn handle_signal<T: Vcpu>(_: c_int) {
Steven Richmanf32d0b42020-06-20 21:45:32 -07001880 T::set_local_immediate_exit(true);
Matt Delco84cf9c02019-10-07 22:38:13 -07001881 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07001882 register_rt_signal_handler(SIGRTMIN() + 0, handle_signal::<T>)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001883 .context("error registering signal handler")?;
Matt Delco84cf9c02019-10-07 22:38:13 -07001884 }
Mark Ryan6ed5aea2018-04-20 13:52:35 +01001885 }
Mark Ryan6ed5aea2018-04-20 13:52:35 +01001886 Ok(())
1887}
1888
Steven Richmanf32d0b42020-06-20 21:45:32 -07001889// Sets up a vcpu and converts it into a runnable vcpu.
Zach Reizner2c770e62020-09-30 16:49:59 -07001890fn runnable_vcpu<V>(
Steven Richmanf32d0b42020-06-20 21:45:32 -07001891 cpu_id: usize,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08001892 kvm_vcpu_id: usize,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001893 vcpu: Option<V>,
Zach Reizner304e7312020-09-29 16:00:24 -07001894 vm: impl VmArch,
Zach Reiznerdc748482021-04-14 13:59:30 -07001895 irq_chip: &mut dyn IrqChipArch,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001896 vcpu_count: usize,
Kansho Nishidaab205af2020-08-13 18:17:50 +09001897 run_rt: bool,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001898 vcpu_affinity: Vec<usize>,
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09001899 no_smt: bool,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001900 has_bios: bool,
1901 use_hypervisor_signals: bool,
Yusuke Sato31e136a2021-08-18 11:51:38 -07001902 enable_per_vm_core_scheduling: bool,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08001903 host_cpu_topology: bool,
Zach Reizner2c770e62020-09-30 16:49:59 -07001904) -> Result<(V, VcpuRunHandle)>
Steven Richmanf32d0b42020-06-20 21:45:32 -07001905where
Zach Reizner2c770e62020-09-30 16:49:59 -07001906 V: VcpuArch,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001907{
Zach Reizner304e7312020-09-29 16:00:24 -07001908 let mut vcpu = match vcpu {
1909 Some(v) => v,
1910 None => {
1911 // If vcpu is None, it means this arch/hypervisor requires create_vcpu to be called from
1912 // the vcpu thread.
1913 match vm
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08001914 .create_vcpu(kvm_vcpu_id)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001915 .context("failed to create vcpu")?
Zach Reizner304e7312020-09-29 16:00:24 -07001916 .downcast::<V>()
1917 {
1918 Ok(v) => *v,
1919 Err(_) => panic!("VM created wrong type of VCPU"),
1920 }
1921 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07001922 };
Dylan Reidbb30b2f2019-10-22 18:30:36 +03001923
Steven Richmanf32d0b42020-06-20 21:45:32 -07001924 irq_chip
Zach Reizner304e7312020-09-29 16:00:24 -07001925 .add_vcpu(cpu_id, &vcpu)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001926 .context("failed to add vcpu to irq chip")?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07001927
Daniel Verkampcaf9ced2020-09-29 15:35:02 -07001928 if !vcpu_affinity.is_empty() {
1929 if let Err(e) = set_cpu_affinity(vcpu_affinity) {
1930 error!("Failed to set CPU affinity: {}", e);
1931 }
1932 }
1933
Steven Richmanf32d0b42020-06-20 21:45:32 -07001934 Arch::configure_vcpu(
1935 vm.get_memory(),
1936 vm.get_hypervisor(),
1937 irq_chip,
1938 &mut vcpu,
1939 cpu_id,
1940 vcpu_count,
1941 has_bios,
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09001942 no_smt,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08001943 host_cpu_topology,
Steven Richmanf32d0b42020-06-20 21:45:32 -07001944 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07001945 .context("failed to configure vcpu")?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07001946
Yusuke Sato31e136a2021-08-18 11:51:38 -07001947 if !enable_per_vm_core_scheduling {
1948 // Do per-vCPU core scheduling by setting a unique cookie to each vCPU.
1949 if let Err(e) = enable_core_scheduling() {
1950 error!("Failed to enable core scheduling: {}", e);
1951 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07001952 }
1953
Kansho Nishidaab205af2020-08-13 18:17:50 +09001954 if run_rt {
1955 const DEFAULT_VCPU_RT_LEVEL: u16 = 6;
1956 if let Err(e) = set_rt_prio_limit(u64::from(DEFAULT_VCPU_RT_LEVEL))
1957 .and_then(|_| set_rt_round_robin(i32::from(DEFAULT_VCPU_RT_LEVEL)))
1958 {
1959 warn!("Failed to set vcpu to real time: {}", e);
1960 }
1961 }
1962
Steven Richmanf32d0b42020-06-20 21:45:32 -07001963 if use_hypervisor_signals {
Daniel Verkamp6b298582021-08-16 15:37:11 -07001964 let mut v = get_blocked_signals().context("failed to retrieve signal mask for vcpu")?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07001965 v.retain(|&x| x != SIGRTMIN() + 0);
Daniel Verkamp6b298582021-08-16 15:37:11 -07001966 vcpu.set_signal_mask(&v)
1967 .context("failed to set the signal mask for vcpu")?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07001968 }
1969
Zach Reizner2c770e62020-09-30 16:49:59 -07001970 let vcpu_run_handle = vcpu
1971 .take_run_handle(Some(SIGRTMIN() + 0))
Daniel Verkamp6b298582021-08-16 15:37:11 -07001972 .context("failed to set thread id for vcpu")?;
Zach Reizner2c770e62020-09-30 16:49:59 -07001973
1974 Ok((vcpu, vcpu_run_handle))
Dylan Reidbb30b2f2019-10-22 18:30:36 +03001975}
1976
Keiichi Watanabec5262e92020-10-21 15:57:33 +09001977#[cfg(all(target_arch = "x86_64", feature = "gdb"))]
1978fn handle_debug_msg<V>(
1979 cpu_id: usize,
1980 vcpu: &V,
1981 guest_mem: &GuestMemory,
1982 d: VcpuDebug,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001983 reply_tube: &mpsc::Sender<VcpuDebugStatusMessage>,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09001984) -> Result<()>
1985where
1986 V: VcpuArch + 'static,
1987{
1988 match d {
1989 VcpuDebug::ReadRegs => {
1990 let msg = VcpuDebugStatusMessage {
1991 cpu: cpu_id as usize,
1992 msg: VcpuDebugStatus::RegValues(
Daniel Verkamp6b298582021-08-16 15:37:11 -07001993 Arch::debug_read_registers(vcpu as &V)
1994 .context("failed to handle a gdb ReadRegs command")?,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09001995 ),
1996 };
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08001997 reply_tube
Keiichi Watanabec5262e92020-10-21 15:57:33 +09001998 .send(msg)
Daniel Verkamp6b298582021-08-16 15:37:11 -07001999 .context("failed to send a debug status to GDB thread")
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002000 }
2001 VcpuDebug::WriteRegs(regs) => {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002002 Arch::debug_write_registers(vcpu as &V, &regs)
2003 .context("failed to handle a gdb WriteRegs command")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002004 reply_tube
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002005 .send(VcpuDebugStatusMessage {
2006 cpu: cpu_id as usize,
2007 msg: VcpuDebugStatus::CommandComplete,
2008 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002009 .context("failed to send a debug status to GDB thread")
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002010 }
2011 VcpuDebug::ReadMem(vaddr, len) => {
2012 let msg = VcpuDebugStatusMessage {
2013 cpu: cpu_id as usize,
2014 msg: VcpuDebugStatus::MemoryRegion(
2015 Arch::debug_read_memory(vcpu as &V, guest_mem, vaddr, len)
2016 .unwrap_or(Vec::new()),
2017 ),
2018 };
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002019 reply_tube
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002020 .send(msg)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002021 .context("failed to send a debug status to GDB thread")
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002022 }
2023 VcpuDebug::WriteMem(vaddr, buf) => {
2024 Arch::debug_write_memory(vcpu as &V, guest_mem, vaddr, &buf)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002025 .context("failed to handle a gdb WriteMem command")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002026 reply_tube
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002027 .send(VcpuDebugStatusMessage {
2028 cpu: cpu_id as usize,
2029 msg: VcpuDebugStatus::CommandComplete,
2030 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002031 .context("failed to send a debug status to GDB thread")
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002032 }
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002033 VcpuDebug::EnableSinglestep => {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002034 Arch::debug_enable_singlestep(vcpu as &V)
2035 .context("failed to handle a gdb EnableSingleStep command")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002036 reply_tube
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002037 .send(VcpuDebugStatusMessage {
2038 cpu: cpu_id as usize,
2039 msg: VcpuDebugStatus::CommandComplete,
2040 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002041 .context("failed to send a debug status to GDB thread")
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002042 }
2043 VcpuDebug::SetHwBreakPoint(addrs) => {
2044 Arch::debug_set_hw_breakpoints(vcpu as &V, &addrs)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002045 .context("failed to handle a gdb SetHwBreakPoint command")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002046 reply_tube
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002047 .send(VcpuDebugStatusMessage {
2048 cpu: cpu_id as usize,
2049 msg: VcpuDebugStatus::CommandComplete,
2050 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002051 .context("failed to send a debug status to GDB thread")
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002052 }
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002053 }
2054}
2055
Zach Reizner2c770e62020-09-30 16:49:59 -07002056fn run_vcpu<V>(
Steven Richmanf32d0b42020-06-20 21:45:32 -07002057 cpu_id: usize,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002058 kvm_vcpu_id: usize,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002059 vcpu: Option<V>,
Zach Reizner304e7312020-09-29 16:00:24 -07002060 vm: impl VmArch + 'static,
Zach Reiznerdc748482021-04-14 13:59:30 -07002061 mut irq_chip: Box<dyn IrqChipArch + 'static>,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002062 vcpu_count: usize,
Kansho Nishidaab205af2020-08-13 18:17:50 +09002063 run_rt: bool,
Daniel Verkamp107edb32019-04-05 09:58:48 -07002064 vcpu_affinity: Vec<usize>,
Suleiman Souhlal63630e82021-02-18 11:53:11 +09002065 delay_rt: bool,
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09002066 no_smt: bool,
Zach Reizner55a9e502018-10-03 10:22:32 -07002067 start_barrier: Arc<Barrier>,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002068 has_bios: bool,
Colin Downs-Razouk11bed5e2021-11-02 09:33:14 -07002069 mut io_bus: devices::Bus,
2070 mut mmio_bus: devices::Bus,
Michael Hoyle685316f2020-09-16 15:29:20 -07002071 exit_evt: Event,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002072 requires_pvclock_ctrl: bool,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002073 from_main_tube: mpsc::Receiver<VcpuControl>,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002074 use_hypervisor_signals: bool,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002075 #[cfg(all(target_arch = "x86_64", feature = "gdb"))] to_gdb_tube: Option<
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002076 mpsc::Sender<VcpuDebugStatusMessage>,
2077 >,
Yusuke Sato31e136a2021-08-18 11:51:38 -07002078 enable_per_vm_core_scheduling: bool,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002079 host_cpu_topology: bool,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002080) -> Result<JoinHandle<()>>
2081where
Zach Reizner2c770e62020-09-30 16:49:59 -07002082 V: VcpuArch + 'static,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002083{
Zach Reizner8fb52112017-12-13 16:04:39 -08002084 thread::Builder::new()
2085 .name(format!("crosvm_vcpu{}", cpu_id))
2086 .spawn(move || {
Zach Reizner95885312020-01-29 18:06:01 -08002087 // The VCPU thread must trigger the `exit_evt` in all paths, and a `ScopedEvent`'s Drop
2088 // implementation accomplishes that.
2089 let _scoped_exit_evt = ScopedEvent::from(exit_evt);
2090
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002091 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
2092 let guest_mem = vm.get_memory().clone();
Zach Reizner2c770e62020-09-30 16:49:59 -07002093 let runnable_vcpu = runnable_vcpu(
Steven Richmanf32d0b42020-06-20 21:45:32 -07002094 cpu_id,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002095 kvm_vcpu_id,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002096 vcpu,
2097 vm,
Zach Reiznerdc748482021-04-14 13:59:30 -07002098 irq_chip.as_mut(),
Steven Richmanf32d0b42020-06-20 21:45:32 -07002099 vcpu_count,
Suleiman Souhlal63630e82021-02-18 11:53:11 +09002100 run_rt && !delay_rt,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002101 vcpu_affinity,
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09002102 no_smt,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002103 has_bios,
2104 use_hypervisor_signals,
Yusuke Sato31e136a2021-08-18 11:51:38 -07002105 enable_per_vm_core_scheduling,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002106 host_cpu_topology,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002107 );
Zach Reizner39aa26b2017-12-12 18:03:23 -08002108
Zach Reizner8fb52112017-12-13 16:04:39 -08002109 start_barrier.wait();
Mark Ryan6ed5aea2018-04-20 13:52:35 +01002110
Zach Reizner2c770e62020-09-30 16:49:59 -07002111 let (vcpu, vcpu_run_handle) = match runnable_vcpu {
Steven Richmanf32d0b42020-06-20 21:45:32 -07002112 Ok(v) => v,
2113 Err(e) => {
Maciek Swiechc3011222021-11-24 21:01:04 +00002114 error!("failed to start vcpu {}: {:#}", cpu_id, e);
Steven Richmanf32d0b42020-06-20 21:45:32 -07002115 return;
2116 }
2117 };
Mark Ryan6ed5aea2018-04-20 13:52:35 +01002118
Dylan Reidb0492662019-05-17 14:50:13 -07002119 let mut run_mode = VmRunMode::Running;
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002120 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002121 if to_gdb_tube.is_some() {
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002122 // Wait until a GDB client attaches
2123 run_mode = VmRunMode::Breakpoint;
2124 }
2125
Dylan Reidb0492662019-05-17 14:50:13 -07002126 let mut interrupted_by_signal = false;
2127
Colin Downs-Razouk11bed5e2021-11-02 09:33:14 -07002128 mmio_bus.set_access_id(cpu_id);
2129 io_bus.set_access_id(cpu_id);
2130
Dylan Reidb0492662019-05-17 14:50:13 -07002131 'vcpu_loop: loop {
2132 // Start by checking for messages to process and the run state of the CPU.
2133 // An extra check here for Running so there isn't a need to call recv unless a
2134 // message is likely to be ready because a signal was sent.
2135 if interrupted_by_signal || run_mode != VmRunMode::Running {
2136 'state_loop: loop {
2137 // Tries to get a pending message without blocking first.
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002138 let msg = match from_main_tube.try_recv() {
Dylan Reidb0492662019-05-17 14:50:13 -07002139 Ok(m) => m,
2140 Err(mpsc::TryRecvError::Empty) if run_mode == VmRunMode::Running => {
2141 // If the VM is running and no message is pending, the state won't
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002142 // change.
Dylan Reidb0492662019-05-17 14:50:13 -07002143 break 'state_loop;
2144 }
2145 Err(mpsc::TryRecvError::Empty) => {
2146 // If the VM is not running, wait until a message is ready.
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002147 match from_main_tube.recv() {
Dylan Reidb0492662019-05-17 14:50:13 -07002148 Ok(m) => m,
2149 Err(mpsc::RecvError) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002150 error!("Failed to read from main tube in vcpu");
Dylan Reidb0492662019-05-17 14:50:13 -07002151 break 'vcpu_loop;
2152 }
2153 }
2154 }
2155 Err(mpsc::TryRecvError::Disconnected) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002156 error!("Failed to read from main tube in vcpu");
Dylan Reidb0492662019-05-17 14:50:13 -07002157 break 'vcpu_loop;
2158 }
2159 };
2160
2161 // Collect all pending messages.
2162 let mut messages = vec![msg];
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002163 messages.append(&mut from_main_tube.try_iter().collect());
Dylan Reidb0492662019-05-17 14:50:13 -07002164
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002165 for msg in messages {
2166 match msg {
2167 VcpuControl::RunState(new_mode) => {
2168 run_mode = new_mode;
2169 match run_mode {
2170 VmRunMode::Running => break 'state_loop,
2171 VmRunMode::Suspending => {
2172 // On KVM implementations that use a paravirtualized
2173 // clock (e.g. x86), a flag must be set to indicate to
2174 // the guest kernel that a vCPU was suspended. The guest
2175 // kernel will use this flag to prevent the soft lockup
2176 // detection from triggering when this vCPU resumes,
2177 // which could happen days later in realtime.
2178 if requires_pvclock_ctrl {
2179 if let Err(e) = vcpu.pvclock_ctrl() {
2180 error!(
2181 "failed to tell hypervisor vcpu {} is suspending: {}",
2182 cpu_id, e
2183 );
2184 }
2185 }
2186 }
2187 VmRunMode::Breakpoint => {}
2188 VmRunMode::Exiting => break 'vcpu_loop,
2189 }
2190 }
2191 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
2192 VcpuControl::Debug(d) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002193 match &to_gdb_tube {
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002194 Some(ref ch) => {
2195 if let Err(e) = handle_debug_msg(
Daniel Verkamp166d1dd2021-08-19 17:05:29 -07002196 cpu_id, &vcpu, &guest_mem, d, ch,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002197 ) {
2198 error!("Failed to handle gdb message: {}", e);
2199 }
2200 },
2201 None => {
2202 error!("VcpuControl::Debug received while GDB feature is disabled: {:?}", d);
Dylan Reidb0492662019-05-17 14:50:13 -07002203 }
2204 }
2205 }
Suleiman Souhlal2ac78b92021-02-01 12:33:26 +09002206 VcpuControl::MakeRT => {
2207 if run_rt && delay_rt {
2208 info!("Making vcpu {} RT\n", cpu_id);
2209 const DEFAULT_VCPU_RT_LEVEL: u16 = 6;
2210 if let Err(e) = set_rt_prio_limit(
2211 u64::from(DEFAULT_VCPU_RT_LEVEL))
2212 .and_then(|_|
2213 set_rt_round_robin(
2214 i32::from(DEFAULT_VCPU_RT_LEVEL)
2215 ))
2216 {
2217 warn!("Failed to set vcpu to real time: {}", e);
2218 }
2219 }
2220 }
Dylan Reidb0492662019-05-17 14:50:13 -07002221 }
2222 }
2223 }
2224 }
2225
2226 interrupted_by_signal = false;
2227
Steven Richman11dc6712020-09-02 15:39:14 -07002228 // Vcpus may have run a HLT instruction, which puts them into a state other than
2229 // VcpuRunState::Runnable. In that case, this call to wait_until_runnable blocks
2230 // until either the irqchip receives an interrupt for this vcpu, or until the main
2231 // thread kicks this vcpu as a result of some VmControl operation. In most IrqChip
2232 // implementations HLT instructions do not make it to crosvm, and thus this is a
2233 // no-op that always returns VcpuRunState::Runnable.
2234 match irq_chip.wait_until_runnable(&vcpu) {
2235 Ok(VcpuRunState::Runnable) => {}
2236 Ok(VcpuRunState::Interrupted) => interrupted_by_signal = true,
2237 Err(e) => error!(
2238 "error waiting for vcpu {} to become runnable: {}",
2239 cpu_id, e
2240 ),
2241 }
2242
2243 if !interrupted_by_signal {
2244 match vcpu.run(&vcpu_run_handle) {
2245 Ok(VcpuExit::IoIn { port, mut size }) => {
2246 let mut data = [0; 8];
2247 if size > data.len() {
Dmitry Torokhova0410682021-08-01 10:40:50 -07002248 error!("unsupported IoIn size of {} bytes at port {:#x}", size, port);
Steven Richman11dc6712020-09-02 15:39:14 -07002249 size = data.len();
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002250 }
Steven Richman11dc6712020-09-02 15:39:14 -07002251 io_bus.read(port as u64, &mut data[..size]);
2252 if let Err(e) = vcpu.set_data(&data[..size]) {
Dmitry Torokhova0410682021-08-01 10:40:50 -07002253 error!("failed to set return data for IoIn at port {:#x}: {}", port, e);
Steven Richman11dc6712020-09-02 15:39:14 -07002254 }
Keiichi Watanabe23f94712020-10-22 17:43:06 +09002255 }
Steven Richman11dc6712020-09-02 15:39:14 -07002256 Ok(VcpuExit::IoOut {
2257 port,
2258 mut size,
2259 data,
2260 }) => {
2261 if size > data.len() {
Dmitry Torokhova0410682021-08-01 10:40:50 -07002262 error!("unsupported IoOut size of {} bytes at port {:#x}", size, port);
Steven Richman11dc6712020-09-02 15:39:14 -07002263 size = data.len();
2264 }
2265 io_bus.write(port as u64, &data[..size]);
2266 }
2267 Ok(VcpuExit::MmioRead { address, size }) => {
2268 let mut data = [0; 8];
2269 mmio_bus.read(address, &mut data[..size]);
2270 // Setting data for mmio can not fail.
2271 let _ = vcpu.set_data(&data[..size]);
2272 }
2273 Ok(VcpuExit::MmioWrite {
2274 address,
2275 size,
2276 data,
2277 }) => {
2278 mmio_bus.write(address, &data[..size]);
2279 }
2280 Ok(VcpuExit::IoapicEoi { vector }) => {
2281 if let Err(e) = irq_chip.broadcast_eoi(vector) {
2282 error!(
2283 "failed to broadcast eoi {} on vcpu {}: {}",
2284 vector, cpu_id, e
2285 );
2286 }
2287 }
2288 Ok(VcpuExit::IrqWindowOpen) => {}
Leo Lai558460f2021-07-23 05:32:27 +00002289 Ok(VcpuExit::Hlt) => irq_chip.halted(cpu_id),
Steven Richman11dc6712020-09-02 15:39:14 -07002290 Ok(VcpuExit::Shutdown) => break,
2291 Ok(VcpuExit::FailEntry {
2292 hardware_entry_failure_reason,
2293 }) => {
2294 error!("vcpu hw run failure: {:#x}", hardware_entry_failure_reason);
Steven Richmanf32d0b42020-06-20 21:45:32 -07002295 break;
2296 }
Steven Richman11dc6712020-09-02 15:39:14 -07002297 Ok(VcpuExit::SystemEvent(_, _)) => break,
2298 Ok(VcpuExit::Debug { .. }) => {
2299 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
2300 {
2301 let msg = VcpuDebugStatusMessage {
2302 cpu: cpu_id as usize,
2303 msg: VcpuDebugStatus::HitBreakPoint,
2304 };
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002305 if let Some(ref ch) = to_gdb_tube {
Steven Richman11dc6712020-09-02 15:39:14 -07002306 if let Err(e) = ch.send(msg) {
2307 error!("failed to notify breakpoint to GDB thread: {}", e);
2308 break;
2309 }
2310 }
2311 run_mode = VmRunMode::Breakpoint;
2312 }
2313 }
2314 Ok(r) => warn!("unexpected vcpu exit: {:?}", r),
2315 Err(e) => match e.errno() {
2316 libc::EINTR => interrupted_by_signal = true,
2317 libc::EAGAIN => {}
2318 _ => {
2319 error!("vcpu hit unknown error: {}", e);
2320 break;
2321 }
2322 },
2323 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07002324 }
2325
2326 if interrupted_by_signal {
2327 if use_hypervisor_signals {
2328 // Try to clear the signal that we use to kick VCPU if it is pending before
2329 // attempting to handle pause requests.
2330 if let Err(e) = clear_signal(SIGRTMIN() + 0) {
2331 error!("failed to clear pending signal: {}", e);
2332 break;
2333 }
2334 } else {
2335 vcpu.set_immediate_exit(false);
2336 }
David Tolnay8f3a2322018-11-30 17:11:35 -08002337 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07002338
Steven Richman11dc6712020-09-02 15:39:14 -07002339 if let Err(e) = irq_chip.inject_interrupts(&vcpu) {
2340 error!("failed to inject interrupts for vcpu {}: {}", cpu_id, e);
2341 }
Zach Reizner39aa26b2017-12-12 18:03:23 -08002342 }
David Tolnay2bac1e72018-12-12 14:33:42 -08002343 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002344 .context("failed to spawn VCPU thread")
Zach Reizner39aa26b2017-12-12 18:03:23 -08002345}
2346
Zach Reiznera90649a2021-03-31 12:56:08 -07002347fn setup_vm_components(cfg: &Config) -> Result<VmComponents> {
David Tolnay2b089fc2019-03-04 15:33:22 -08002348 let initrd_image = if let Some(initrd_path) = &cfg.initrd_path {
Andrew Walbranbc55e302021-07-13 17:35:10 +01002349 Some(
Junichi Uekawa7bea39f2021-07-16 14:05:06 +09002350 open_file(
2351 initrd_path,
2352 true, /*read_only*/
2353 false, /*O_DIRECT*/
2354 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07002355 .with_context(|| format!("failed to open initrd {}", initrd_path.display()))?,
Andrew Walbranbc55e302021-07-13 17:35:10 +01002356 )
Daniel Verkampe403f5c2018-12-11 16:29:26 -08002357 } else {
2358 None
2359 };
2360
Cody Schuffelen6d1ab502019-05-21 12:12:38 -07002361 let vm_image = match cfg.executable_path {
Andrew Walbranbc55e302021-07-13 17:35:10 +01002362 Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel(
Junichi Uekawa7bea39f2021-07-16 14:05:06 +09002363 open_file(
2364 kernel_path,
2365 true, /*read_only*/
2366 false, /*O_DIRECT*/
2367 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07002368 .with_context(|| format!("failed to open kernel image {}", kernel_path.display()))?,
Andrew Walbranbc55e302021-07-13 17:35:10 +01002369 ),
2370 Some(Executable::Bios(ref bios_path)) => VmImage::Bios(
Junichi Uekawa7bea39f2021-07-16 14:05:06 +09002371 open_file(bios_path, true /*read_only*/, false /*O_DIRECT*/)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002372 .with_context(|| format!("failed to open bios {}", bios_path.display()))?,
Andrew Walbranbc55e302021-07-13 17:35:10 +01002373 ),
Cody Schuffelen6d1ab502019-05-21 12:12:38 -07002374 _ => panic!("Did not receive a bios or kernel, should be impossible."),
2375 };
2376
Will Deaconc48e7832021-07-30 19:03:06 +01002377 let swiotlb = if let Some(size) = cfg.swiotlb {
2378 Some(
2379 size.checked_mul(1024 * 1024)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002380 .ok_or_else(|| anyhow!("requested swiotlb size too large"))?,
Will Deaconc48e7832021-07-30 19:03:06 +01002381 )
2382 } else {
2383 match cfg.protected_vm {
2384 ProtectionType::Protected => Some(64 * 1024 * 1024),
2385 ProtectionType::Unprotected => None,
2386 }
2387 };
2388
Zach Reiznera90649a2021-03-31 12:56:08 -07002389 Ok(VmComponents {
Daniel Verkamp6a847062019-11-26 13:16:35 -08002390 memory_size: cfg
2391 .memory
2392 .unwrap_or(256)
2393 .checked_mul(1024 * 1024)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002394 .ok_or_else(|| anyhow!("requested memory size too large"))?,
Will Deaconc48e7832021-07-30 19:03:06 +01002395 swiotlb,
Dylan Reid059a1882018-07-23 17:58:09 -07002396 vcpu_count: cfg.vcpu_count.unwrap_or(1),
Daniel Verkamp107edb32019-04-05 09:58:48 -07002397 vcpu_affinity: cfg.vcpu_affinity.clone(),
Daniel Verkamp8a72afc2021-03-15 17:55:52 -07002398 cpu_clusters: cfg.cpu_clusters.clone(),
2399 cpu_capacity: cfg.cpu_capacity.clone(),
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09002400 no_smt: cfg.no_smt,
Sergey Senozhatsky1e369c52021-04-13 20:23:51 +09002401 hugepages: cfg.hugepages,
Cody Schuffelen6d1ab502019-05-21 12:12:38 -07002402 vm_image,
Tristan Muntsinger4133b012018-12-21 16:01:56 -08002403 android_fstab: cfg
2404 .android_fstab
2405 .as_ref()
Daniel Verkamp6b298582021-08-16 15:37:11 -07002406 .map(|x| {
2407 File::open(x)
2408 .with_context(|| format!("failed to open android fstab file {}", x.display()))
2409 })
Tristan Muntsinger4133b012018-12-21 16:01:56 -08002410 .map_or(Ok(None), |v| v.map(Some))?,
Kansho Nishida282115b2019-12-18 13:13:14 +09002411 pstore: cfg.pstore.clone(),
Daniel Verkampe403f5c2018-12-11 16:29:26 -08002412 initrd_image,
Daniel Verkampaac28132018-10-15 14:58:48 -07002413 extra_kernel_params: cfg.params.clone(),
Tomasz Jeznach42644642020-05-20 23:27:59 -07002414 acpi_sdts: cfg
2415 .acpi_tables
2416 .iter()
Daniel Verkamp6b298582021-08-16 15:37:11 -07002417 .map(|path| {
2418 SDT::from_file(path)
2419 .with_context(|| format!("failed to open ACPI file {}", path.display()))
2420 })
Tomasz Jeznach42644642020-05-20 23:27:59 -07002421 .collect::<Result<Vec<SDT>>>()?,
Kansho Nishidaab205af2020-08-13 18:17:50 +09002422 rt_cpus: cfg.rt_cpus.clone(),
Suleiman Souhlal63630e82021-02-18 11:53:11 +09002423 delay_rt: cfg.delay_rt,
Will Deacon7d2b8ac2020-10-06 18:51:12 +01002424 protected_vm: cfg.protected_vm,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002425 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
Zach Reiznera90649a2021-03-31 12:56:08 -07002426 gdb: None,
Tomasz Jeznachccb26942021-03-30 22:44:11 -07002427 dmi_path: cfg.dmi_path.clone(),
Tomasz Jeznachd93c29f2021-04-12 11:00:24 -07002428 no_legacy: cfg.no_legacy,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002429 host_cpu_topology: cfg.host_cpu_topology,
Zach Reiznera90649a2021-03-31 12:56:08 -07002430 })
2431}
2432
Zach Reiznerdc748482021-04-14 13:59:30 -07002433pub fn run_config(cfg: Config) -> Result<()> {
2434 let components = setup_vm_components(&cfg)?;
2435
2436 let guest_mem_layout =
Daniel Verkamp6b298582021-08-16 15:37:11 -07002437 Arch::guest_memory_layout(&components).context("failed to create guest memory layout")?;
2438 let guest_mem = GuestMemory::new(&guest_mem_layout).context("failed to create guest memory")?;
Zach Reiznerdc748482021-04-14 13:59:30 -07002439 let mut mem_policy = MemoryPolicy::empty();
2440 if components.hugepages {
2441 mem_policy |= MemoryPolicy::USE_HUGEPAGES;
2442 }
Will Deaconb9755462021-11-03 09:52:21 +00002443 if components.protected_vm == ProtectionType::Protected {
2444 mem_policy |= MemoryPolicy::MLOCK_ON_FAULT;
2445 }
2446 guest_mem
2447 .set_memory_policy(mem_policy)
2448 .context("failed to set guest memory policy")?;
Daniel Verkamp6b298582021-08-16 15:37:11 -07002449 let kvm = Kvm::new_with_path(&cfg.kvm_device_path).context("failed to create kvm")?;
2450 let vm = KvmVm::new(&kvm, guest_mem).context("failed to create vm")?;
2451 let vm_clone = vm.try_clone().context("failed to clone vm")?;
Zach Reiznerdc748482021-04-14 13:59:30 -07002452
2453 enum KvmIrqChip {
2454 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
2455 Split(KvmSplitIrqChip),
2456 Kernel(KvmKernelIrqChip),
2457 }
2458
2459 impl KvmIrqChip {
2460 fn as_mut(&mut self) -> &mut dyn IrqChipArch {
2461 match self {
2462 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
2463 KvmIrqChip::Split(i) => i,
2464 KvmIrqChip::Kernel(i) => i,
2465 }
2466 }
2467 }
2468
2469 let ioapic_host_tube;
2470 let mut irq_chip = if cfg.split_irqchip {
2471 #[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))]
2472 unimplemented!("KVM split irqchip mode only supported on x86 processors");
2473 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
2474 {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002475 let (host_tube, ioapic_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerdc748482021-04-14 13:59:30 -07002476 ioapic_host_tube = Some(host_tube);
2477 KvmIrqChip::Split(
2478 KvmSplitIrqChip::new(
2479 vm_clone,
2480 components.vcpu_count,
2481 ioapic_device_tube,
2482 Some(120),
2483 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07002484 .context("failed to create IRQ chip")?,
Zach Reiznerdc748482021-04-14 13:59:30 -07002485 )
2486 }
2487 } else {
2488 ioapic_host_tube = None;
2489 KvmIrqChip::Kernel(
Daniel Verkamp6b298582021-08-16 15:37:11 -07002490 KvmKernelIrqChip::new(vm_clone, components.vcpu_count)
2491 .context("failed to create IRQ chip")?,
Zach Reiznerdc748482021-04-14 13:59:30 -07002492 )
2493 };
2494
2495 run_vm::<KvmVcpu, KvmVm>(cfg, components, vm, irq_chip.as_mut(), ioapic_host_tube)
2496}
2497
2498fn run_vm<Vcpu, V>(
Zach Reiznera90649a2021-03-31 12:56:08 -07002499 cfg: Config,
2500 #[allow(unused_mut)] mut components: VmComponents,
Zach Reiznerdc748482021-04-14 13:59:30 -07002501 mut vm: V,
2502 irq_chip: &mut dyn IrqChipArch,
2503 ioapic_host_tube: Option<Tube>,
Zach Reiznera90649a2021-03-31 12:56:08 -07002504) -> Result<()>
2505where
2506 Vcpu: VcpuArch + 'static,
2507 V: VmArch + 'static,
Zach Reiznera90649a2021-03-31 12:56:08 -07002508{
2509 if cfg.sandbox {
2510 // Printing something to the syslog before entering minijail so that libc's syslogger has a
2511 // chance to open files necessary for its operation, like `/etc/localtime`. After jailing,
2512 // access to those files will not be possible.
2513 info!("crosvm entering multiprocess mode");
2514 }
2515
Daniel Verkampf1439d42021-05-21 13:55:10 -07002516 #[cfg(feature = "usb")]
Zach Reiznera90649a2021-03-31 12:56:08 -07002517 let (usb_control_tube, usb_provider) =
Daniel Verkamp6b298582021-08-16 15:37:11 -07002518 HostBackendDeviceProvider::new().context("failed to create usb provider")?;
Daniel Verkampf1439d42021-05-21 13:55:10 -07002519
Zach Reiznera90649a2021-03-31 12:56:08 -07002520 // Masking signals is inherently dangerous, since this can persist across clones/execs. Do this
2521 // before any jailed devices have been spawned, so that we can catch any of them that fail very
2522 // quickly.
Daniel Verkamp6b298582021-08-16 15:37:11 -07002523 let sigchld_fd = SignalFd::new(libc::SIGCHLD).context("failed to create signalfd")?;
Dylan Reid059a1882018-07-23 17:58:09 -07002524
Zach Reiznera60744b2019-02-13 17:33:32 -08002525 let control_server_socket = match &cfg.socket_path {
2526 Some(path) => Some(UnlinkUnixSeqpacketListener(
Daniel Verkamp6b298582021-08-16 15:37:11 -07002527 UnixSeqpacketListener::bind(path).context("failed to create control server")?,
Zach Reiznera60744b2019-02-13 17:33:32 -08002528 )),
2529 None => None,
Dylan Reid059a1882018-07-23 17:58:09 -07002530 };
Zach Reiznera60744b2019-02-13 17:33:32 -08002531
Zach Reiznera90649a2021-03-31 12:56:08 -07002532 let mut control_tubes = Vec::new();
2533
2534 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
2535 if let Some(port) = cfg.gdb {
2536 // GDB needs a control socket to interrupt vcpus.
Daniel Verkamp6b298582021-08-16 15:37:11 -07002537 let (gdb_host_tube, gdb_control_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznera90649a2021-03-31 12:56:08 -07002538 control_tubes.push(TaggedControlTube::Vm(gdb_host_tube));
2539 components.gdb = Some((port, gdb_control_tube));
2540 }
2541
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +09002542 for wl_cfg in &cfg.vhost_user_wl {
2543 let wayland_host_tube = UnixSeqpacket::connect(&wl_cfg.vm_tube)
2544 .map(Tube::new)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002545 .context("failed to connect to wayland tube")?;
Chirantan Ekbote2ee9dcd2021-05-26 18:21:44 +09002546 control_tubes.push(TaggedControlTube::VmMemory(wayland_host_tube));
2547 }
2548
Chirantan Ekbote44292f52021-06-25 18:31:41 +09002549 let mut vhost_user_gpu_tubes = Vec::with_capacity(cfg.vhost_user_gpu.len());
2550 for _ in 0..cfg.vhost_user_gpu.len() {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002551 let (host_tube, device_tube) = Tube::pair().context("failed to create tube")?;
Chirantan Ekbote44292f52021-06-25 18:31:41 +09002552 vhost_user_gpu_tubes.push((
Daniel Verkamp6b298582021-08-16 15:37:11 -07002553 host_tube.try_clone().context("failed to clone tube")?,
Chirantan Ekbote44292f52021-06-25 18:31:41 +09002554 device_tube,
2555 ));
2556 control_tubes.push(TaggedControlTube::VmMemory(host_tube));
2557 }
2558
Daniel Verkamp6b298582021-08-16 15:37:11 -07002559 let (wayland_host_tube, wayland_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002560 control_tubes.push(TaggedControlTube::VmMemory(wayland_host_tube));
Dylan Reid059a1882018-07-23 17:58:09 -07002561 // Balloon gets a special socket so balloon requests can be forwarded from the main process.
Daniel Verkamp6b298582021-08-16 15:37:11 -07002562 let (balloon_host_tube, balloon_device_tube) = Tube::pair().context("failed to create tube")?;
Hikaru Nishidaaf3f3bb2021-05-21 12:03:54 +09002563 // Set recv timeout to avoid deadlock on sending BalloonControlCommand before guest is ready.
2564 balloon_host_tube
2565 .set_recv_timeout(Some(Duration::from_millis(100)))
Daniel Verkamp6b298582021-08-16 15:37:11 -07002566 .context("failed to create tube")?;
Dylan Reid059a1882018-07-23 17:58:09 -07002567
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002568 // Create one control socket per disk.
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002569 let mut disk_device_tubes = Vec::new();
2570 let mut disk_host_tubes = Vec::new();
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002571 let disk_count = cfg.disks.len();
2572 for _ in 0..disk_count {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002573 let (disk_host_tub, disk_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002574 disk_host_tubes.push(disk_host_tub);
2575 disk_device_tubes.push(disk_device_tube);
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002576 }
2577
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002578 let mut pmem_device_tubes = Vec::new();
Daniel Verkampe1980a92020-02-07 11:00:55 -08002579 let pmem_count = cfg.pmem_devices.len();
2580 for _ in 0..pmem_count {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002581 let (pmem_host_tube, pmem_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002582 pmem_device_tubes.push(pmem_device_tube);
2583 control_tubes.push(TaggedControlTube::VmMsync(pmem_host_tube));
Daniel Verkampe1980a92020-02-07 11:00:55 -08002584 }
2585
Daniel Verkamp6b298582021-08-16 15:37:11 -07002586 let (gpu_host_tube, gpu_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002587 control_tubes.push(TaggedControlTube::VmMemory(gpu_host_tube));
Gurchetan Singh96beafc2019-05-15 09:46:52 -07002588
Zach Reiznerdc748482021-04-14 13:59:30 -07002589 if let Some(ioapic_host_tube) = ioapic_host_tube {
2590 control_tubes.push(TaggedControlTube::VmIrq(ioapic_host_tube));
2591 }
Zhuocheng Dingf2e90bf2019-12-02 15:50:20 +08002592
Chuanxiao Dongbbb32af2020-04-27 16:37:10 +08002593 let battery = if cfg.battery_type.is_some() {
Daniel Verkampcfe49462021-08-19 17:11:05 -07002594 #[cfg_attr(not(feature = "power-monitor-powerd"), allow(clippy::manual_map))]
Alex Lauf408c732020-11-10 18:24:04 +09002595 let jail = match simple_jail(&cfg, "battery")? {
Daniel Verkampcfe49462021-08-19 17:11:05 -07002596 #[cfg_attr(not(feature = "power-monitor-powerd"), allow(unused_mut))]
Alex Lauf408c732020-11-10 18:24:04 +09002597 Some(mut jail) => {
2598 // Setup a bind mount to the system D-Bus socket if the powerd monitor is used.
2599 #[cfg(feature = "power-monitor-powerd")]
2600 {
Fergus Dall51200512021-08-19 12:54:26 +10002601 add_current_user_to_jail(&mut jail)?;
Alex Lauf408c732020-11-10 18:24:04 +09002602
2603 // Create a tmpfs in the device's root directory so that we can bind mount files.
2604 jail.mount_with_data(
2605 Path::new("none"),
2606 Path::new("/"),
2607 "tmpfs",
2608 (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize,
2609 "size=67108864",
2610 )?;
2611
2612 let system_bus_socket_path = Path::new("/run/dbus/system_bus_socket");
2613 jail.mount_bind(system_bus_socket_path, system_bus_socket_path, true)?;
2614 }
2615 Some(jail)
2616 }
2617 None => None,
2618 };
2619 (&cfg.battery_type, jail)
Chuanxiao Dongbbb32af2020-04-27 16:37:10 +08002620 } else {
2621 (&cfg.battery_type, None)
2622 };
2623
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08002624 let map_request: Arc<Mutex<Option<ExternalMapping>>> = Arc::new(Mutex::new(None));
2625
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09002626 let fs_count = cfg
2627 .shared_dirs
2628 .iter()
2629 .filter(|sd| sd.kind == SharedDirKind::FS)
2630 .count();
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002631 let mut fs_device_tubes = Vec::with_capacity(fs_count);
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09002632 for _ in 0..fs_count {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002633 let (fs_host_tube, fs_device_tube) = Tube::pair().context("failed to create tube")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002634 control_tubes.push(TaggedControlTube::Fs(fs_host_tube));
2635 fs_device_tubes.push(fs_device_tube);
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09002636 }
2637
Daniel Verkamp6b298582021-08-16 15:37:11 -07002638 let exit_evt = Event::new().context("failed to create event")?;
Zach Reiznerdc748482021-04-14 13:59:30 -07002639 let mut sys_allocator = Arch::create_system_allocator(vm.get_memory());
Ryo Hashimoto8f9dc1d2021-08-18 19:07:29 +09002640
2641 // Allocate the ramoops region first. AArch64::build_vm() assumes this.
2642 let ramoops_region = match &components.pstore {
2643 Some(pstore) => Some(
Dennis Kempin65740a62021-10-18 16:46:57 -07002644 arch::pstore::create_memory_region(&mut vm, &mut sys_allocator, pstore)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002645 .context("failed to allocate pstore region")?,
Ryo Hashimoto8f9dc1d2021-08-18 19:07:29 +09002646 ),
2647 None => None,
2648 };
2649
Zide Chen71435c12021-03-03 15:02:02 -08002650 let phys_max_addr = Arch::get_phys_max_addr();
Tomasz Nowickiab86d522021-09-22 05:50:46 +00002651 let mut devices = create_devices(
Zach Reiznerdc748482021-04-14 13:59:30 -07002652 &cfg,
2653 &mut vm,
2654 &mut sys_allocator,
2655 &exit_evt,
Zide Chen71435c12021-03-03 15:02:02 -08002656 phys_max_addr,
Zach Reiznerdc748482021-04-14 13:59:30 -07002657 &mut control_tubes,
2658 wayland_device_tube,
2659 gpu_device_tube,
Chirantan Ekbote44292f52021-06-25 18:31:41 +09002660 vhost_user_gpu_tubes,
Zach Reiznerdc748482021-04-14 13:59:30 -07002661 balloon_device_tube,
2662 &mut disk_device_tubes,
2663 &mut pmem_device_tubes,
2664 &mut fs_device_tubes,
Daniel Verkampf1439d42021-05-21 13:55:10 -07002665 #[cfg(feature = "usb")]
Zach Reiznerdc748482021-04-14 13:59:30 -07002666 usb_provider,
2667 Arc::clone(&map_request),
2668 )?;
2669
Peter Fangc2bba082021-04-19 18:40:24 -07002670 #[cfg(any(target_arch = "x86", target_arch = "x86_64"))]
Tomasz Nowickiab86d522021-09-22 05:50:46 +00002671 for device in devices
2672 .iter_mut()
2673 .filter_map(|(dev, _)| dev.as_pci_device_mut())
2674 {
Peter Fangc2bba082021-04-19 18:40:24 -07002675 let sdts = device
2676 .generate_acpi(components.acpi_sdts)
2677 .or_else(|| {
2678 error!("ACPI table generation error");
2679 None
2680 })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002681 .ok_or_else(|| anyhow!("failed to generate ACPI table"))?;
Peter Fangc2bba082021-04-19 18:40:24 -07002682 components.acpi_sdts = sdts;
2683 }
2684
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002685 // KVM_CREATE_VCPU uses apic id for x86 and uses cpu id for others.
2686 let mut kvm_vcpu_ids = Vec::new();
2687
Kuo-Hsin Yang6139da62021-04-14 16:55:24 +08002688 #[cfg_attr(not(feature = "direct"), allow(unused_mut))]
Zach Reiznerdc748482021-04-14 13:59:30 -07002689 let mut linux = Arch::build_vm::<V, Vcpu>(
Trent Begin17ccaad2019-04-17 13:51:25 -06002690 components,
Zach Reiznerdc748482021-04-14 13:59:30 -07002691 &exit_evt,
2692 &mut sys_allocator,
Trent Begin17ccaad2019-04-17 13:51:25 -06002693 &cfg.serial_parameters,
Matt Delco45caf912019-11-13 08:11:09 -08002694 simple_jail(&cfg, "serial")?,
Chuanxiao Dongbbb32af2020-04-27 16:37:10 +08002695 battery,
Zach Reiznera90649a2021-03-31 12:56:08 -07002696 vm,
Ryo Hashimoto8f9dc1d2021-08-18 19:07:29 +09002697 ramoops_region,
Tomasz Nowickiab86d522021-09-22 05:50:46 +00002698 devices,
Zach Reiznerdc748482021-04-14 13:59:30 -07002699 irq_chip,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002700 &mut kvm_vcpu_ids,
Trent Begin17ccaad2019-04-17 13:51:25 -06002701 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07002702 .context("the architecture failed to build the vm")?;
Lepton Wu60893882018-11-21 11:06:18 -08002703
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002704 // Create Pcie Root Port
2705 let pcie_root_port = Arc::new(Mutex::new(PcieRootPort::new()));
2706 let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?;
2707 control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube));
2708 let sec_bus = (1..255)
2709 .find(|&bus_num| sys_allocator.pci_bus_empty(bus_num))
2710 .context("failed to find empty bus for Pci hotplug")?;
2711 let pci_bridge = Box::new(PciBridge::new(
2712 pcie_root_port.clone(),
2713 msi_device_tube,
2714 0,
2715 sec_bus,
2716 ));
2717 Arch::register_pci_device(&mut linux, pci_bridge, None, &mut sys_allocator)
2718 .context("Failed to configure pci bridge device")?;
2719 linux.hotplug_bus.push(pcie_root_port);
2720
Tomasz Jeznach3ce74762021-02-26 01:01:53 -08002721 #[cfg(feature = "direct")]
2722 if let Some(pmio) = &cfg.direct_pmio {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002723 let direct_io = Arc::new(
2724 devices::DirectIo::new(&pmio.path, false).context("failed to open direct io device")?,
2725 );
Tomasz Jeznach3ce74762021-02-26 01:01:53 -08002726 for range in pmio.ranges.iter() {
2727 linux
2728 .io_bus
2729 .insert_sync(direct_io.clone(), range.0, range.1)
2730 .unwrap();
2731 }
2732 };
2733
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002734 #[cfg(feature = "direct")]
Tomasz Jeznach9e6c6332021-05-27 21:49:14 -07002735 if let Some(mmio) = &cfg.direct_mmio {
Xiong Zhang46471a02021-11-12 00:34:42 +08002736 let mut ranges = Vec::new();
2737 for range in mmio.ranges.iter() {
2738 ranges.push(BusRange {
2739 base: range.0,
2740 len: range.1,
2741 });
2742 }
2743
2744 let direct_mmio = Arc::new(
2745 devices::DirectMmio::new(&mmio.path, false, ranges)
2746 .context("failed to open direct mmio device")?,
Daniel Verkamp6b298582021-08-16 15:37:11 -07002747 );
Xiong Zhang46471a02021-11-12 00:34:42 +08002748
Tomasz Jeznach9e6c6332021-05-27 21:49:14 -07002749 for range in mmio.ranges.iter() {
2750 linux
2751 .mmio_bus
Xiong Zhang46471a02021-11-12 00:34:42 +08002752 .insert_sync(direct_mmio.clone(), range.0, range.1)
Tomasz Jeznach9e6c6332021-05-27 21:49:14 -07002753 .unwrap();
2754 }
2755 };
2756
2757 #[cfg(feature = "direct")]
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002758 let mut irqs = Vec::new();
2759
2760 #[cfg(feature = "direct")]
2761 for irq in &cfg.direct_level_irq {
Zach Reiznerdc748482021-04-14 13:59:30 -07002762 if !sys_allocator.reserve_irq(*irq) {
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002763 warn!("irq {} already reserved.", irq);
2764 }
Daniel Verkamp6b298582021-08-16 15:37:11 -07002765 let trigger = Event::new().context("failed to create event")?;
2766 let resample = Event::new().context("failed to create event")?;
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002767 linux
2768 .irq_chip
2769 .register_irq_event(*irq, &trigger, Some(&resample))
2770 .unwrap();
Daniel Verkamp6b298582021-08-16 15:37:11 -07002771 let direct_irq = devices::DirectIrq::new(trigger, Some(resample))
2772 .context("failed to enable interrupt forwarding")?;
2773 direct_irq
2774 .irq_enable(*irq)
2775 .context("failed to enable interrupt forwarding")?;
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002776 irqs.push(direct_irq);
2777 }
2778
2779 #[cfg(feature = "direct")]
2780 for irq in &cfg.direct_edge_irq {
Zach Reiznerdc748482021-04-14 13:59:30 -07002781 if !sys_allocator.reserve_irq(*irq) {
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002782 warn!("irq {} already reserved.", irq);
2783 }
Daniel Verkamp6b298582021-08-16 15:37:11 -07002784 let trigger = Event::new().context("failed to create event")?;
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002785 linux
2786 .irq_chip
2787 .register_irq_event(*irq, &trigger, None)
2788 .unwrap();
Daniel Verkamp6b298582021-08-16 15:37:11 -07002789 let direct_irq = devices::DirectIrq::new(trigger, None)
2790 .context("failed to enable interrupt forwarding")?;
2791 direct_irq
2792 .irq_enable(*irq)
2793 .context("failed to enable interrupt forwarding")?;
Tomasz Jeznach7271f752021-03-04 01:44:06 -08002794 irqs.push(direct_irq);
2795 }
2796
Daniel Verkamp6b298582021-08-16 15:37:11 -07002797 let gralloc = RutabagaGralloc::new().context("failed to create gralloc")?;
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002798 run_control(
2799 linux,
Zach Reiznerdc748482021-04-14 13:59:30 -07002800 sys_allocator,
Zach Reiznera60744b2019-02-13 17:33:32 -08002801 control_server_socket,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002802 control_tubes,
2803 balloon_host_tube,
2804 &disk_host_tubes,
Daniel Verkampf1439d42021-05-21 13:55:10 -07002805 #[cfg(feature = "usb")]
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002806 usb_control_tube,
Zach Reiznerdc748482021-04-14 13:59:30 -07002807 exit_evt,
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002808 sigchld_fd,
Steven Richmanf32d0b42020-06-20 21:45:32 -07002809 cfg.sandbox,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08002810 Arc::clone(&map_request),
Gurchetan Singh293913c2020-12-09 10:44:13 -08002811 gralloc,
Yusuke Sato31e136a2021-08-18 11:51:38 -07002812 cfg.per_vm_core_scheduling,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002813 cfg.host_cpu_topology,
2814 kvm_vcpu_ids,
Daniel Verkamp92f73d72018-12-04 13:17:46 -08002815 )
Dylan Reid0ed91ab2018-05-31 15:42:18 -07002816}
2817
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002818fn get_hp_bus<V: VmArch, Vcpu: VcpuArch>(
2819 linux: &RunnableLinuxVm<V, Vcpu>,
2820 host_addr: PciAddress,
2821) -> Result<(Arc<Mutex<dyn HotPlugBus>>, u8)> {
2822 for hp_bus in linux.hotplug_bus.iter() {
2823 if let Some(number) = hp_bus.lock().is_match(host_addr) {
2824 return Ok((hp_bus.clone(), number));
2825 }
2826 }
2827 Err(anyhow!("Failed to find a suitable hotplug bus"))
2828}
2829
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002830#[allow(dead_code)]
2831fn add_vfio_device<V: VmArch, Vcpu: VcpuArch>(
2832 linux: &mut RunnableLinuxVm<V, Vcpu>,
2833 sys_allocator: &mut SystemAllocator,
2834 cfg: &Config,
2835 control_tubes: &mut Vec<TaggedControlTube>,
2836 vfio_path: &Path,
2837) -> Result<()> {
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002838 let host_os_str = vfio_path
2839 .file_name()
2840 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
2841 let host_str = host_os_str
2842 .to_str()
2843 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
2844 let host_addr = PciAddress::from_string(host_str);
2845
2846 let (hp_bus, bus_num) = get_hp_bus(linux, host_addr)?;
2847
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002848 let mut endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>> = BTreeMap::new();
2849 let (vfio_pci_device, jail) = create_vfio_device(
2850 cfg,
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002851 &linux.vm,
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002852 sys_allocator,
2853 control_tubes,
2854 vfio_path,
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002855 Some(bus_num),
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002856 &mut endpoints,
2857 false,
2858 )?;
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002859
2860 let pci_address = Arch::register_pci_device(linux, vfio_pci_device, jail, sys_allocator)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002861 .context("Failed to configure pci hotplug device")?;
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002862
Daniel Verkamp6b298582021-08-16 15:37:11 -07002863 let host_os_str = vfio_path
2864 .file_name()
2865 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
2866 let host_str = host_os_str
2867 .to_str()
2868 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002869 let host_addr = PciAddress::from_string(host_str);
2870 let host_key = HostHotPlugKey::Vfio { host_addr };
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002871 let mut hp_bus = hp_bus.lock();
2872 hp_bus.add_hotplug_device(host_key, pci_address);
2873 hp_bus.hot_plug(pci_address);
2874 Ok(())
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002875}
2876
2877#[allow(dead_code)]
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002878fn remove_vfio_device<V: VmArch, Vcpu: VcpuArch>(
2879 linux: &RunnableLinuxVm<V, Vcpu>,
Xiong Zhang2d45b912021-05-13 16:22:25 +08002880 sys_allocator: &mut SystemAllocator,
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002881 vfio_path: &Path,
2882) -> Result<()> {
Daniel Verkamp6b298582021-08-16 15:37:11 -07002883 let host_os_str = vfio_path
2884 .file_name()
2885 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
2886 let host_str = host_os_str
2887 .to_str()
2888 .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?;
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002889 let host_addr = PciAddress::from_string(host_str);
2890 let host_key = HostHotPlugKey::Vfio { host_addr };
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002891 for hp_bus in linux.hotplug_bus.iter() {
2892 let mut hp_bus_lock = hp_bus.lock();
2893 if let Some(pci_addr) = hp_bus_lock.get_hotplug_device(host_key) {
2894 hp_bus_lock.hot_unplug(pci_addr);
Xiong Zhang2d45b912021-05-13 16:22:25 +08002895 sys_allocator.release_pci(pci_addr.bus, pci_addr.dev, pci_addr.func);
Xiong Zhangf82f2dc2021-05-21 16:54:12 +08002896 return Ok(());
2897 }
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002898 }
2899
Daniel Verkamp6b298582021-08-16 15:37:11 -07002900 Err(anyhow!("HotPlugBus hasn't been implemented"))
Xiong Zhang9fadc3f2021-06-07 14:16:45 +08002901}
Xiong Zhang8c9fe3e2021-04-12 15:07:17 +08002902
Daniel Verkamp29409802021-02-24 14:46:19 -08002903/// Signals all running VCPUs to vmexit, sends VcpuControl message to each VCPU tube, and tells
2904/// `irq_chip` to stop blocking halted VCPUs. The channel message is set first because both the
Steven Richman11dc6712020-09-02 15:39:14 -07002905/// signal and the irq_chip kick could cause the VCPU thread to continue through the VCPU run
2906/// loop.
2907fn kick_all_vcpus(
2908 vcpu_handles: &[(JoinHandle<()>, mpsc::Sender<vm_control::VcpuControl>)],
Zach Reiznerdc748482021-04-14 13:59:30 -07002909 irq_chip: &dyn IrqChip,
Daniel Verkamp29409802021-02-24 14:46:19 -08002910 message: VcpuControl,
Steven Richman11dc6712020-09-02 15:39:14 -07002911) {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002912 for (handle, tube) in vcpu_handles {
Daniel Verkamp29409802021-02-24 14:46:19 -08002913 if let Err(e) = tube.send(message.clone()) {
2914 error!("failed to send VcpuControl: {}", e);
Steven Richman11dc6712020-09-02 15:39:14 -07002915 }
2916 let _ = handle.kill(SIGRTMIN() + 0);
2917 }
2918 irq_chip.kick_halted_vcpus();
2919}
2920
Zach Reiznerdc748482021-04-14 13:59:30 -07002921fn run_control<V: VmArch + 'static, Vcpu: VcpuArch + 'static>(
2922 mut linux: RunnableLinuxVm<V, Vcpu>,
2923 mut sys_allocator: SystemAllocator,
Zach Reiznera60744b2019-02-13 17:33:32 -08002924 control_server_socket: Option<UnlinkUnixSeqpacketListener>,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002925 mut control_tubes: Vec<TaggedControlTube>,
2926 balloon_host_tube: Tube,
2927 disk_host_tubes: &[Tube],
Daniel Verkampf1439d42021-05-21 13:55:10 -07002928 #[cfg(feature = "usb")] usb_control_tube: Tube,
Zach Reiznerdc748482021-04-14 13:59:30 -07002929 exit_evt: Event,
Zach Reizner55a9e502018-10-03 10:22:32 -07002930 sigchld_fd: SignalFd,
Lepton Wu20333e42019-03-14 10:48:03 -07002931 sandbox: bool,
Lingfeng Yangd6ac1ab2020-01-31 13:55:35 -08002932 map_request: Arc<Mutex<Option<ExternalMapping>>>,
Gurchetan Singh293913c2020-12-09 10:44:13 -08002933 mut gralloc: RutabagaGralloc,
Yusuke Sato31e136a2021-08-18 11:51:38 -07002934 enable_per_vm_core_scheduling: bool,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08002935 host_cpu_topology: bool,
2936 kvm_vcpu_ids: Vec<usize>,
Zach Reizner55a9e502018-10-03 10:22:32 -07002937) -> Result<()> {
Zach Reizner5bed0d22018-03-28 02:31:11 -07002938 #[derive(PollToken)]
2939 enum Token {
2940 Exit,
Chuanxiao Dong546f01c2020-02-12 21:58:47 +08002941 Suspend,
Zach Reizner5bed0d22018-03-28 02:31:11 -07002942 ChildSignal,
Colin Downs-Razoukbd532762020-09-08 15:49:35 -07002943 IrqFd { index: IrqEventIndex },
Zach Reiznera60744b2019-02-13 17:33:32 -08002944 VmControlServer,
Zach Reizner5bed0d22018-03-28 02:31:11 -07002945 VmControl { index: usize },
2946 }
Zach Reizner39aa26b2017-12-12 18:03:23 -08002947
Zach Reizner19ad1f32019-12-12 18:58:50 -08002948 stdin()
Zach Reizner39aa26b2017-12-12 18:03:23 -08002949 .set_raw_mode()
2950 .expect("failed to set terminal raw mode");
2951
Michael Hoylee392c462020-10-07 03:29:24 -07002952 let wait_ctx = WaitContext::build_with(&[
Zach Reiznerdc748482021-04-14 13:59:30 -07002953 (&exit_evt, Token::Exit),
Chuanxiao Dong546f01c2020-02-12 21:58:47 +08002954 (&linux.suspend_evt, Token::Suspend),
Zach Reiznerb2110be2019-07-23 15:55:03 -07002955 (&sigchld_fd, Token::ChildSignal),
2956 ])
Daniel Verkamp6b298582021-08-16 15:37:11 -07002957 .context("failed to add descriptor to wait context")?;
Zach Reiznerb2110be2019-07-23 15:55:03 -07002958
Zach Reiznera60744b2019-02-13 17:33:32 -08002959 if let Some(socket_server) = &control_server_socket {
Michael Hoylee392c462020-10-07 03:29:24 -07002960 wait_ctx
Zach Reiznera60744b2019-02-13 17:33:32 -08002961 .add(socket_server, Token::VmControlServer)
Daniel Verkamp6b298582021-08-16 15:37:11 -07002962 .context("failed to add descriptor to wait context")?;
Zach Reiznera60744b2019-02-13 17:33:32 -08002963 }
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08002964 for (index, socket) in control_tubes.iter().enumerate() {
Michael Hoylee392c462020-10-07 03:29:24 -07002965 wait_ctx
Zach Reizner55a9e502018-10-03 10:22:32 -07002966 .add(socket.as_ref(), Token::VmControl { index })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002967 .context("failed to add descriptor to wait context")?;
Zach Reizner39aa26b2017-12-12 18:03:23 -08002968 }
2969
Steven Richmanf32d0b42020-06-20 21:45:32 -07002970 let events = linux
2971 .irq_chip
2972 .irq_event_tokens()
Daniel Verkamp6b298582021-08-16 15:37:11 -07002973 .context("failed to add descriptor to wait context")?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07002974
Colin Downs-Razoukbd532762020-09-08 15:49:35 -07002975 for (index, _gsi, evt) in events {
Michael Hoylee392c462020-10-07 03:29:24 -07002976 wait_ctx
Colin Downs-Razoukbd532762020-09-08 15:49:35 -07002977 .add(&evt, Token::IrqFd { index })
Daniel Verkamp6b298582021-08-16 15:37:11 -07002978 .context("failed to add descriptor to wait context")?;
Zhuocheng Dingb9f4c9b2019-12-02 15:50:28 +08002979 }
2980
Lepton Wu20333e42019-03-14 10:48:03 -07002981 if sandbox {
2982 // Before starting VCPUs, in case we started with some capabilities, drop them all.
Daniel Verkamp6b298582021-08-16 15:37:11 -07002983 drop_capabilities().context("failed to drop process capabilities")?;
Lepton Wu20333e42019-03-14 10:48:03 -07002984 }
Dmitry Torokhov71006072019-03-06 10:56:51 -08002985
Keiichi Watanabec5262e92020-10-21 15:57:33 +09002986 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
2987 // Create a channel for GDB thread.
2988 let (to_gdb_channel, from_vcpu_channel) = if linux.gdb.is_some() {
2989 let (s, r) = mpsc::channel();
2990 (Some(s), Some(r))
2991 } else {
2992 (None, None)
2993 };
2994
Steven Richmanf32d0b42020-06-20 21:45:32 -07002995 let mut vcpu_handles = Vec::with_capacity(linux.vcpu_count);
2996 let vcpu_thread_barrier = Arc::new(Barrier::new(linux.vcpu_count + 1));
Steven Richmanf32d0b42020-06-20 21:45:32 -07002997 let use_hypervisor_signals = !linux
2998 .vm
2999 .get_hypervisor()
3000 .check_capability(&HypervisorCap::ImmediateExit);
Zach Reizner304e7312020-09-29 16:00:24 -07003001 setup_vcpu_signal_handler::<Vcpu>(use_hypervisor_signals)?;
Steven Richmanf32d0b42020-06-20 21:45:32 -07003002
Zach Reizner304e7312020-09-29 16:00:24 -07003003 let vcpus: Vec<Option<_>> = match linux.vcpus.take() {
Andrew Walbran9cfdbd92021-01-11 17:40:34 +00003004 Some(vec) => vec.into_iter().map(Some).collect(),
Steven Richmanf32d0b42020-06-20 21:45:32 -07003005 None => iter::repeat_with(|| None).take(linux.vcpu_count).collect(),
3006 };
Yusuke Sato31e136a2021-08-18 11:51:38 -07003007 // Enable core scheduling before creating vCPUs so that the cookie will be
3008 // shared by all vCPU threads.
3009 // TODO(b/199312402): Avoid enabling core scheduling for the crosvm process
3010 // itself for even better performance. Only vCPUs need the feature.
3011 if enable_per_vm_core_scheduling {
3012 if let Err(e) = enable_core_scheduling() {
3013 error!("Failed to enable core scheduling: {}", e);
3014 }
3015 }
Daniel Verkamp94c35272019-09-12 13:31:30 -07003016 for (cpu_id, vcpu) in vcpus.into_iter().enumerate() {
Dylan Reidb0492662019-05-17 14:50:13 -07003017 let (to_vcpu_channel, from_main_channel) = mpsc::channel();
Daniel Verkampc677fb42020-09-08 13:47:49 -07003018 let vcpu_affinity = match linux.vcpu_affinity.clone() {
3019 Some(VcpuAffinity::Global(v)) => v,
3020 Some(VcpuAffinity::PerVcpu(mut m)) => m.remove(&cpu_id).unwrap_or_default(),
3021 None => Default::default(),
3022 };
Zach Reizner55a9e502018-10-03 10:22:32 -07003023 let handle = run_vcpu(
Steven Richmanf32d0b42020-06-20 21:45:32 -07003024 cpu_id,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08003025 kvm_vcpu_ids[cpu_id],
Zach Reizner55a9e502018-10-03 10:22:32 -07003026 vcpu,
Daniel Verkamp6b298582021-08-16 15:37:11 -07003027 linux.vm.try_clone().context("failed to clone vm")?,
3028 linux
3029 .irq_chip
3030 .try_box_clone()
3031 .context("failed to clone irqchip")?,
Steven Richmanf32d0b42020-06-20 21:45:32 -07003032 linux.vcpu_count,
Kansho Nishidaab205af2020-08-13 18:17:50 +09003033 linux.rt_cpus.contains(&cpu_id),
Daniel Verkampc677fb42020-09-08 13:47:49 -07003034 vcpu_affinity,
Suleiman Souhlal63630e82021-02-18 11:53:11 +09003035 linux.delay_rt,
Suleiman Souhlal015c3c12020-10-07 14:15:41 +09003036 linux.no_smt,
Zach Reizner55a9e502018-10-03 10:22:32 -07003037 vcpu_thread_barrier.clone(),
Steven Richmanf32d0b42020-06-20 21:45:32 -07003038 linux.has_bios,
Colin Downs-Razouk11bed5e2021-11-02 09:33:14 -07003039 (*linux.io_bus).clone(),
3040 (*linux.mmio_bus).clone(),
Daniel Verkamp6b298582021-08-16 15:37:11 -07003041 exit_evt.try_clone().context("failed to clone event")?,
Steven Richmanf32d0b42020-06-20 21:45:32 -07003042 linux.vm.check_capability(VmCap::PvClockSuspend),
Dylan Reidb0492662019-05-17 14:50:13 -07003043 from_main_channel,
Steven Richmanf32d0b42020-06-20 21:45:32 -07003044 use_hypervisor_signals,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003045 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
3046 to_gdb_channel.clone(),
Yusuke Sato31e136a2021-08-18 11:51:38 -07003047 enable_per_vm_core_scheduling,
ZhaoLiu2aaf7ad2021-10-10 18:22:29 +08003048 host_cpu_topology,
Zach Reizner55a9e502018-10-03 10:22:32 -07003049 )?;
Dylan Reidb0492662019-05-17 14:50:13 -07003050 vcpu_handles.push((handle, to_vcpu_channel));
Dylan Reid059a1882018-07-23 17:58:09 -07003051 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07003052
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003053 #[cfg(all(target_arch = "x86_64", feature = "gdb"))]
3054 // Spawn GDB thread.
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003055 if let Some((gdb_port_num, gdb_control_tube)) = linux.gdb.take() {
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003056 let to_vcpu_channels = vcpu_handles
3057 .iter()
3058 .map(|(_handle, channel)| channel.clone())
3059 .collect();
3060 let target = GdbStub::new(
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003061 gdb_control_tube,
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003062 to_vcpu_channels,
3063 from_vcpu_channel.unwrap(), // Must succeed to unwrap()
3064 );
3065 thread::Builder::new()
3066 .name("gdb".to_owned())
3067 .spawn(move || gdb_thread(target, gdb_port_num))
Daniel Verkamp6b298582021-08-16 15:37:11 -07003068 .context("failed to spawn GDB thread")?;
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003069 };
3070
Dylan Reid059a1882018-07-23 17:58:09 -07003071 vcpu_thread_barrier.wait();
3072
Charles William Dick54045012021-07-27 19:11:53 +09003073 let mut balloon_stats_id: u64 = 0;
3074
Michael Hoylee392c462020-10-07 03:29:24 -07003075 'wait: loop {
Zach Reizner5bed0d22018-03-28 02:31:11 -07003076 let events = {
Michael Hoylee392c462020-10-07 03:29:24 -07003077 match wait_ctx.wait() {
Zach Reizner39aa26b2017-12-12 18:03:23 -08003078 Ok(v) => v,
3079 Err(e) => {
David Tolnayb4bd00f2019-02-12 17:51:26 -08003080 error!("failed to poll: {}", e);
Zach Reizner39aa26b2017-12-12 18:03:23 -08003081 break;
3082 }
3083 }
3084 };
Zach Reiznera60744b2019-02-13 17:33:32 -08003085
Steven Richmanf32d0b42020-06-20 21:45:32 -07003086 if let Err(e) = linux.irq_chip.process_delayed_irq_events() {
3087 warn!("can't deliver delayed irqs: {}", e);
3088 }
Zhuocheng Dingb9f4c9b2019-12-02 15:50:28 +08003089
Zach Reiznera60744b2019-02-13 17:33:32 -08003090 let mut vm_control_indices_to_remove = Vec::new();
Michael Hoylee392c462020-10-07 03:29:24 -07003091 for event in events.iter().filter(|e| e.is_readable) {
3092 match event.token {
Zach Reizner5bed0d22018-03-28 02:31:11 -07003093 Token::Exit => {
Zach Reizner39aa26b2017-12-12 18:03:23 -08003094 info!("vcpu requested shutdown");
Michael Hoylee392c462020-10-07 03:29:24 -07003095 break 'wait;
Zach Reizner39aa26b2017-12-12 18:03:23 -08003096 }
Chuanxiao Dong546f01c2020-02-12 21:58:47 +08003097 Token::Suspend => {
3098 info!("VM requested suspend");
3099 linux.suspend_evt.read().unwrap();
Zach Reiznerdc748482021-04-14 13:59:30 -07003100 kick_all_vcpus(
3101 &vcpu_handles,
3102 linux.irq_chip.as_irq_chip(),
Daniel Verkamp29409802021-02-24 14:46:19 -08003103 VcpuControl::RunState(VmRunMode::Suspending),
Zach Reiznerdc748482021-04-14 13:59:30 -07003104 );
Chuanxiao Dong546f01c2020-02-12 21:58:47 +08003105 }
Zach Reizner5bed0d22018-03-28 02:31:11 -07003106 Token::ChildSignal => {
Zach Reizner39aa26b2017-12-12 18:03:23 -08003107 // Print all available siginfo structs, then exit the loop.
Daniel Verkamp6b298582021-08-16 15:37:11 -07003108 while let Some(siginfo) =
3109 sigchld_fd.read().context("failed to create signalfd")?
3110 {
Zach Reizner3ba00982019-01-23 19:04:43 -08003111 let pid = siginfo.ssi_pid;
3112 let pid_label = match linux.pid_debug_label_map.get(&pid) {
3113 Some(label) => format!("{} (pid {})", label, pid),
3114 None => format!("pid {}", pid),
3115 };
David Tolnayf5032762018-12-03 10:46:45 -08003116 error!(
3117 "child {} died: signo {}, status {}, code {}",
Zach Reizner3ba00982019-01-23 19:04:43 -08003118 pid_label, siginfo.ssi_signo, siginfo.ssi_status, siginfo.ssi_code
David Tolnayf5032762018-12-03 10:46:45 -08003119 );
Zach Reizner39aa26b2017-12-12 18:03:23 -08003120 }
Michael Hoylee392c462020-10-07 03:29:24 -07003121 break 'wait;
Zach Reizner39aa26b2017-12-12 18:03:23 -08003122 }
Colin Downs-Razoukbd532762020-09-08 15:49:35 -07003123 Token::IrqFd { index } => {
3124 if let Err(e) = linux.irq_chip.service_irq_event(index) {
3125 error!("failed to signal irq {}: {}", index, e);
Zhuocheng Dingb9f4c9b2019-12-02 15:50:28 +08003126 }
3127 }
Zach Reiznera60744b2019-02-13 17:33:32 -08003128 Token::VmControlServer => {
3129 if let Some(socket_server) = &control_server_socket {
3130 match socket_server.accept() {
3131 Ok(socket) => {
Michael Hoylee392c462020-10-07 03:29:24 -07003132 wait_ctx
Zach Reiznera60744b2019-02-13 17:33:32 -08003133 .add(
3134 &socket,
3135 Token::VmControl {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003136 index: control_tubes.len(),
Zach Reiznera60744b2019-02-13 17:33:32 -08003137 },
3138 )
Daniel Verkamp6b298582021-08-16 15:37:11 -07003139 .context("failed to add descriptor to wait context")?;
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003140 control_tubes.push(TaggedControlTube::Vm(Tube::new(socket)));
Zach Reiznera60744b2019-02-13 17:33:32 -08003141 }
3142 Err(e) => error!("failed to accept socket: {}", e),
3143 }
3144 }
3145 }
Zach Reizner5bed0d22018-03-28 02:31:11 -07003146 Token::VmControl { index } => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003147 if let Some(socket) = control_tubes.get(index) {
Jakub Starond99cd0a2019-04-11 14:09:39 -07003148 match socket {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003149 TaggedControlTube::Vm(tube) => match tube.recv::<VmRequest>() {
Jakub Starond99cd0a2019-04-11 14:09:39 -07003150 Ok(request) => {
3151 let mut run_mode_opt = None;
3152 let response = request.execute(
3153 &mut run_mode_opt,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003154 &balloon_host_tube,
Charles William Dick54045012021-07-27 19:11:53 +09003155 &mut balloon_stats_id,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003156 disk_host_tubes,
Daniel Verkampf1439d42021-05-21 13:55:10 -07003157 #[cfg(feature = "usb")]
3158 Some(&usb_control_tube),
3159 #[cfg(not(feature = "usb"))]
3160 None,
Chuanxiao Dong256be3a2020-04-27 16:39:33 +08003161 &mut linux.bat_control,
Suleiman Souhlal2ac78b92021-02-01 12:33:26 +09003162 &vcpu_handles,
Jakub Starond99cd0a2019-04-11 14:09:39 -07003163 );
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003164 if let Err(e) = tube.send(&response) {
Jakub Starond99cd0a2019-04-11 14:09:39 -07003165 error!("failed to send VmResponse: {}", e);
3166 }
3167 if let Some(run_mode) = run_mode_opt {
3168 info!("control socket changed run mode to {}", run_mode);
3169 match run_mode {
3170 VmRunMode::Exiting => {
Michael Hoylee392c462020-10-07 03:29:24 -07003171 break 'wait;
Jakub Starond99cd0a2019-04-11 14:09:39 -07003172 }
Keiichi Watanabec5262e92020-10-21 15:57:33 +09003173 other => {
Chuanxiao Dong2bbe85c2020-11-12 17:18:07 +08003174 if other == VmRunMode::Running {
Daniel Verkampda4e8a92021-07-21 13:49:02 -07003175 for dev in &linux.resume_notify_devices {
3176 dev.lock().resume_imminent();
3177 }
Chuanxiao Dong546f01c2020-02-12 21:58:47 +08003178 }
Steven Richman11dc6712020-09-02 15:39:14 -07003179 kick_all_vcpus(
3180 &vcpu_handles,
Zach Reiznerdc748482021-04-14 13:59:30 -07003181 linux.irq_chip.as_irq_chip(),
Daniel Verkamp29409802021-02-24 14:46:19 -08003182 VcpuControl::RunState(other),
Steven Richman11dc6712020-09-02 15:39:14 -07003183 );
Zach Reizner6a8fdd92019-01-16 14:38:41 -08003184 }
3185 }
3186 }
Zach Reizner5bed0d22018-03-28 02:31:11 -07003187 }
Jakub Starond99cd0a2019-04-11 14:09:39 -07003188 Err(e) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003189 if let TubeError::Disconnected = e {
Jakub Starond99cd0a2019-04-11 14:09:39 -07003190 vm_control_indices_to_remove.push(index);
3191 } else {
3192 error!("failed to recv VmRequest: {}", e);
3193 }
Zach Reiznera60744b2019-02-13 17:33:32 -08003194 }
Jakub Starond99cd0a2019-04-11 14:09:39 -07003195 },
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003196 TaggedControlTube::VmMemory(tube) => {
3197 match tube.recv::<VmMemoryRequest>() {
3198 Ok(request) => {
3199 let response = request.execute(
3200 &mut linux.vm,
Zach Reiznerdc748482021-04-14 13:59:30 -07003201 &mut sys_allocator,
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003202 Arc::clone(&map_request),
3203 &mut gralloc,
3204 );
3205 if let Err(e) = tube.send(&response) {
3206 error!("failed to send VmMemoryControlResponse: {}", e);
3207 }
3208 }
3209 Err(e) => {
3210 if let TubeError::Disconnected = e {
3211 vm_control_indices_to_remove.push(index);
3212 } else {
3213 error!("failed to recv VmMemoryControlRequest: {}", e);
3214 }
Jakub Starond99cd0a2019-04-11 14:09:39 -07003215 }
3216 }
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003217 }
3218 TaggedControlTube::VmIrq(tube) => match tube.recv::<VmIrqRequest>() {
Xiong Zhang2515b752019-09-19 10:29:02 +08003219 Ok(request) => {
Steven Richmanf32d0b42020-06-20 21:45:32 -07003220 let response = {
3221 let irq_chip = &mut linux.irq_chip;
3222 request.execute(
3223 |setup| match setup {
3224 IrqSetup::Event(irq, ev) => {
Colin Downs-Razoukbd532762020-09-08 15:49:35 -07003225 if let Some(event_index) = irq_chip
3226 .register_irq_event(irq, ev, None)?
3227 {
3228 match wait_ctx.add(
3229 ev,
3230 Token::IrqFd {
3231 index: event_index
3232 },
3233 ) {
3234 Err(e) => {
3235 warn!("failed to add IrqFd to poll context: {}", e);
3236 Err(e)
3237 },
3238 Ok(_) => {
3239 Ok(())
3240 }
3241 }
3242 } else {
3243 Ok(())
3244 }
Steven Richmanf32d0b42020-06-20 21:45:32 -07003245 }
3246 IrqSetup::Route(route) => irq_chip.route_irq(route),
3247 },
Zach Reiznerdc748482021-04-14 13:59:30 -07003248 &mut sys_allocator,
Steven Richmanf32d0b42020-06-20 21:45:32 -07003249 )
3250 };
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003251 if let Err(e) = tube.send(&response) {
Xiong Zhang2515b752019-09-19 10:29:02 +08003252 error!("failed to send VmIrqResponse: {}", e);
3253 }
3254 }
3255 Err(e) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003256 if let TubeError::Disconnected = e {
Xiong Zhang2515b752019-09-19 10:29:02 +08003257 vm_control_indices_to_remove.push(index);
3258 } else {
3259 error!("failed to recv VmIrqRequest: {}", e);
3260 }
3261 }
3262 },
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003263 TaggedControlTube::VmMsync(tube) => {
3264 match tube.recv::<VmMsyncRequest>() {
3265 Ok(request) => {
3266 let response = request.execute(&mut linux.vm);
3267 if let Err(e) = tube.send(&response) {
3268 error!("failed to send VmMsyncResponse: {}", e);
3269 }
3270 }
3271 Err(e) => {
3272 if let TubeError::Disconnected = e {
3273 vm_control_indices_to_remove.push(index);
3274 } else {
3275 error!("failed to recv VmMsyncRequest: {}", e);
3276 }
Daniel Verkampe1980a92020-02-07 11:00:55 -08003277 }
3278 }
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003279 }
3280 TaggedControlTube::Fs(tube) => match tube.recv::<FsMappingRequest>() {
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09003281 Ok(request) => {
3282 let response =
Zach Reiznerdc748482021-04-14 13:59:30 -07003283 request.execute(&mut linux.vm, &mut sys_allocator);
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003284 if let Err(e) = tube.send(&response) {
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09003285 error!("failed to send VmResponse: {}", e);
3286 }
3287 }
3288 Err(e) => {
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003289 if let TubeError::Disconnected = e {
Keiichi Watanabeeefe7fb2020-11-17 17:58:35 +09003290 vm_control_indices_to_remove.push(index);
3291 } else {
3292 error!("failed to recv VmResponse: {}", e);
3293 }
3294 }
3295 },
Zach Reizner39aa26b2017-12-12 18:03:23 -08003296 }
Zach Reizner39aa26b2017-12-12 18:03:23 -08003297 }
3298 }
Zach Reizner5bed0d22018-03-28 02:31:11 -07003299 }
3300 }
Zach Reiznera60744b2019-02-13 17:33:32 -08003301
Vikram Auradkarede68c72021-07-01 14:33:54 -07003302 // It's possible more data is readable and buffered while the socket is hungup,
3303 // so don't delete the tube from the poll context until we're sure all the
3304 // data is read.
3305 // Below case covers a condition where we have received a hungup event and the tube is not
3306 // readable.
3307 // In case of readable tube, once all data is read, any attempt to read more data on hungup
3308 // tube should fail. On such failure, we get Disconnected error and index gets added to
3309 // vm_control_indices_to_remove by the time we reach here.
3310 for event in events.iter().filter(|e| e.is_hungup && !e.is_readable) {
3311 if let Token::VmControl { index } = event.token {
3312 vm_control_indices_to_remove.push(index);
Zach Reizner39aa26b2017-12-12 18:03:23 -08003313 }
3314 }
Zach Reiznera60744b2019-02-13 17:33:32 -08003315
3316 // Sort in reverse so the highest indexes are removed first. This removal algorithm
Zide Chen89584072019-11-14 10:33:51 -08003317 // preserves correct indexes as each element is removed.
Daniel Verkamp8c2f0002020-08-31 15:13:35 -07003318 vm_control_indices_to_remove.sort_unstable_by_key(|&k| Reverse(k));
Zach Reiznera60744b2019-02-13 17:33:32 -08003319 vm_control_indices_to_remove.dedup();
3320 for index in vm_control_indices_to_remove {
Michael Hoylee392c462020-10-07 03:29:24 -07003321 // Delete the socket from the `wait_ctx` synchronously. Otherwise, the kernel will do
3322 // this automatically when the FD inserted into the `wait_ctx` is closed after this
Zide Chen89584072019-11-14 10:33:51 -08003323 // if-block, but this removal can be deferred unpredictably. In some instances where the
Michael Hoylee392c462020-10-07 03:29:24 -07003324 // system is under heavy load, we can even get events returned by `wait_ctx` for an FD
Zide Chen89584072019-11-14 10:33:51 -08003325 // that has already been closed. Because the token associated with that spurious event
3326 // now belongs to a different socket, the control loop will start to interact with
3327 // sockets that might not be ready to use. This can cause incorrect hangup detection or
3328 // blocking on a socket that will never be ready. See also: crbug.com/1019986
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003329 if let Some(socket) = control_tubes.get(index) {
Daniel Verkamp6b298582021-08-16 15:37:11 -07003330 wait_ctx
3331 .delete(socket)
3332 .context("failed to remove descriptor from wait context")?;
Zide Chen89584072019-11-14 10:33:51 -08003333 }
3334
3335 // This line implicitly drops the socket at `index` when it gets returned by
3336 // `swap_remove`. After this line, the socket at `index` is not the one from
3337 // `vm_control_indices_to_remove`. Because of this socket's change in index, we need to
Michael Hoylee392c462020-10-07 03:29:24 -07003338 // use `wait_ctx.modify` to change the associated index in its `Token::VmControl`.
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003339 control_tubes.swap_remove(index);
3340 if let Some(tube) = control_tubes.get(index) {
Michael Hoylee392c462020-10-07 03:29:24 -07003341 wait_ctx
Zach Reiznerd49bcdb2021-01-07 08:30:28 -08003342 .modify(tube, EventType::Read, Token::VmControl { index })
Daniel Verkamp6b298582021-08-16 15:37:11 -07003343 .context("failed to add descriptor to wait context")?;
Zach Reiznera60744b2019-02-13 17:33:32 -08003344 }
3345 }
Zach Reizner39aa26b2017-12-12 18:03:23 -08003346 }
3347
Zach Reiznerdc748482021-04-14 13:59:30 -07003348 kick_all_vcpus(
3349 &vcpu_handles,
3350 linux.irq_chip.as_irq_chip(),
Daniel Verkamp29409802021-02-24 14:46:19 -08003351 VcpuControl::RunState(VmRunMode::Exiting),
Zach Reiznerdc748482021-04-14 13:59:30 -07003352 );
Steven Richman11dc6712020-09-02 15:39:14 -07003353 for (handle, _) in vcpu_handles {
3354 if let Err(e) = handle.join() {
3355 error!("failed to join vcpu thread: {:?}", e);
Zach Reizner39aa26b2017-12-12 18:03:23 -08003356 }
3357 }
3358
Daniel Verkamp94c35272019-09-12 13:31:30 -07003359 // Explicitly drop the VM structure here to allow the devices to clean up before the
3360 // control sockets are closed when this function exits.
3361 mem::drop(linux);
3362
Zach Reizner19ad1f32019-12-12 18:58:50 -08003363 stdin()
Zach Reizner39aa26b2017-12-12 18:03:23 -08003364 .set_canon_mode()
3365 .expect("failed to restore canonical mode for terminal");
3366
3367 Ok(())
3368}