Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1 | // 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 Nishida | 584e52c | 2021-04-27 17:37:08 +0900 | [diff] [blame] | 5 | use std::cmp::Reverse; |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 6 | use std::collections::BTreeMap; |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 7 | use std::convert::TryFrom; |
John Bates | b220eac | 2020-09-14 17:03:02 -0700 | [diff] [blame] | 8 | #[cfg(feature = "gpu")] |
| 9 | use std::env; |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 10 | use std::fs::{File, OpenOptions}; |
Federico 'Morg' Pareschi | a118482 | 2021-09-09 10:52:58 +0900 | [diff] [blame] | 11 | use std::io::stdin; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 12 | use std::iter; |
Daniel Verkamp | 94c3527 | 2019-09-12 13:31:30 -0700 | [diff] [blame] | 13 | use std::mem; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 14 | use std::net::Ipv4Addr; |
Christian Blichmann | 50f9591 | 2021-11-05 16:59:39 +0100 | [diff] [blame] | 15 | use std::os::unix::{io::FromRawFd, net::UnixStream, prelude::OpenOptionsExt}; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 16 | use std::path::{Path, PathBuf}; |
Chirantan Ekbote | 448516e | 2018-07-24 16:07:42 -0700 | [diff] [blame] | 17 | use std::str; |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 18 | use std::sync::{mpsc, Arc, Barrier}; |
Hikaru Nishida | 584e52c | 2021-04-27 17:37:08 +0900 | [diff] [blame] | 19 | use std::time::Duration; |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 20 | |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 21 | use std::thread; |
| 22 | use std::thread::JoinHandle; |
| 23 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 24 | use libc::{self, c_int, gid_t, uid_t}; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 25 | |
Tomasz Jeznach | 4264464 | 2020-05-20 23:27:59 -0700 | [diff] [blame] | 26 | use acpi_tables::sdt::SDT; |
| 27 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 28 | use anyhow::{anyhow, bail, Context, Result}; |
Chirantan Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 29 | use base::net::{UnixSeqpacket, UnixSeqpacketListener, UnlinkUnixSeqpacketListener}; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 30 | use base::*; |
Keiichi Watanabe | 553d219 | 2021-08-16 16:42:27 +0900 | [diff] [blame] | 31 | use devices::serial_device::{SerialHardware, SerialParameters}; |
Zide Chen | afdb938 | 2021-06-17 12:04:43 -0700 | [diff] [blame] | 32 | use devices::vfio::{VfioCommonSetup, VfioCommonTrait}; |
Woody Chow | 0b2b606 | 2021-09-03 15:40:02 +0900 | [diff] [blame] | 33 | #[cfg(feature = "audio_cras")] |
| 34 | use devices::virtio::snd::cras_backend::Parameters as CrasSndParameters; |
Woody Chow | 1b16db1 | 2021-04-02 16:59:59 +0900 | [diff] [blame] | 35 | #[cfg(feature = "audio")] |
| 36 | use devices::virtio::vhost::user::vmm::Snd as VhostUserSnd; |
Keiichi Watanabe | fb36e0c | 2021-08-13 18:48:31 +0900 | [diff] [blame] | 37 | use devices::virtio::vhost::user::vmm::{ |
Richard | 5afeafa | 2021-07-26 19:02:09 -0700 | [diff] [blame] | 38 | Block as VhostUserBlock, Console as VhostUserConsole, Fs as VhostUserFs, |
Chirantan Ekbote | 84091e5 | 2021-09-10 18:43:17 +0900 | [diff] [blame] | 39 | Mac80211Hwsim as VhostUserMac80211Hwsim, Net as VhostUserNet, Vsock as VhostUserVsock, |
| 40 | Wl as VhostUserWl, |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 41 | }; |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 42 | #[cfg(any(feature = "video-decoder", feature = "video-encoder"))] |
| 43 | use devices::virtio::VideoBackendType; |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 44 | use devices::virtio::{self, Console, VirtioDevice}; |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 45 | #[cfg(feature = "gpu")] |
| 46 | use devices::virtio::{ |
| 47 | gpu::{DEFAULT_DISPLAY_HEIGHT, DEFAULT_DISPLAY_WIDTH}, |
| 48 | vhost::user::vmm::Gpu as VhostUserGpu, |
| 49 | EventDevice, |
| 50 | }; |
paulhsia | ce17e6e | 2020-08-28 18:37:45 +0800 | [diff] [blame] | 51 | #[cfg(feature = "audio")] |
| 52 | use devices::Ac97Dev; |
Will Deacon | c48e783 | 2021-07-30 19:03:06 +0100 | [diff] [blame] | 53 | use devices::ProtectionType; |
Xiong Zhang | 17b0daf | 2019-04-23 17:14:50 +0800 | [diff] [blame] | 54 | use devices::{ |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 55 | self, BusDeviceObj, HostHotPlugKey, HotPlugBus, IrqChip, IrqEventIndex, KvmKernelIrqChip, |
| 56 | PciAddress, PciBridge, PciDevice, PcieRootPort, StubPciDevice, VcpuRunState, VfioContainer, |
| 57 | VfioDevice, VfioPciDevice, VfioPlatformDevice, VirtioPciDevice, |
Xiong Zhang | 17b0daf | 2019-04-23 17:14:50 +0800 | [diff] [blame] | 58 | }; |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 59 | #[cfg(feature = "usb")] |
| 60 | use devices::{HostBackendDeviceProvider, XhciController}; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 61 | use hypervisor::kvm::{Kvm, KvmVcpu, KvmVm}; |
Xiong Zhang | dea7dbb | 2021-07-26 14:49:03 +0800 | [diff] [blame] | 62 | use hypervisor::{HypervisorCap, Vcpu, VcpuExit, VcpuRunHandle, Vm, VmCap}; |
Allen Webb | f3024c8 | 2020-06-19 07:19:48 -0700 | [diff] [blame] | 63 | use minijail::{self, Minijail}; |
Richard | 5afeafa | 2021-07-26 19:02:09 -0700 | [diff] [blame] | 64 | use net_util::{MacAddress, Tap}; |
Xiong Zhang | 87a3b44 | 2019-10-29 17:32:44 +0800 | [diff] [blame] | 65 | use resources::{Alloc, MmioType, SystemAllocator}; |
Gurchetan Singh | 293913c | 2020-12-09 10:44:13 -0800 | [diff] [blame] | 66 | use rutabaga_gfx::RutabagaGralloc; |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 67 | use sync::Mutex; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 68 | use vm_control::*; |
Sergey Senozhatsky | d78d05b | 2021-04-13 20:59:58 +0900 | [diff] [blame] | 69 | use vm_memory::{GuestAddress, GuestMemory, MemoryPolicy}; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 70 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 71 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 72 | use crate::gdb::{gdb_thread, GdbStub}; |
Keiichi Watanabe | f3a37f4 | 2021-01-21 15:41:11 +0900 | [diff] [blame] | 73 | use crate::{ |
Tomasz Nowicki | 71aca79 | 2021-06-09 18:53:49 +0000 | [diff] [blame] | 74 | Config, DiskOption, Executable, SharedDir, SharedDirKind, TouchDeviceOption, VfioType, |
Christian Blichmann | 50f9591 | 2021-11-05 16:59:39 +0100 | [diff] [blame] | 75 | VhostUserFsOption, VhostUserOption, VhostUserWlOption, VhostVsockDeviceParameter, |
Keiichi Watanabe | f3a37f4 | 2021-01-21 15:41:11 +0900 | [diff] [blame] | 76 | }; |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 77 | use arch::{ |
Keiichi Watanabe | 553d219 | 2021-08-16 16:42:27 +0900 | [diff] [blame] | 78 | self, LinuxArch, RunnableLinuxVm, VcpuAffinity, VirtioDeviceStub, VmComponents, VmImage, |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 79 | }; |
Sonny Rao | ed517d1 | 2018-02-13 22:09:43 -0800 | [diff] [blame] | 80 | |
Sonny Rao | 2ffa0cb | 2018-02-26 17:27:40 -0800 | [diff] [blame] | 81 | #[cfg(any(target_arch = "arm", target_arch = "aarch64"))] |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 82 | use { |
| 83 | aarch64::AArch64 as Arch, |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 84 | devices::IrqChipAArch64 as IrqChipArch, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 85 | hypervisor::{VcpuAArch64 as VcpuArch, VmAArch64 as VmArch}, |
| 86 | }; |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 87 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 88 | use { |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 89 | devices::{IrqChipX86_64 as IrqChipArch, KvmSplitIrqChip}, |
| 90 | hypervisor::{VcpuX86_64 as VcpuArch, VmX86_64 as VmArch}, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 91 | x86_64::X8664arch as Arch, |
| 92 | }; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 93 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 94 | enum TaggedControlTube { |
| 95 | Fs(Tube), |
| 96 | Vm(Tube), |
| 97 | VmMemory(Tube), |
| 98 | VmIrq(Tube), |
| 99 | VmMsync(Tube), |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 100 | } |
| 101 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 102 | impl AsRef<Tube> for TaggedControlTube { |
| 103 | fn as_ref(&self) -> &Tube { |
| 104 | use self::TaggedControlTube::*; |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 105 | match &self { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 106 | Fs(tube) | Vm(tube) | VmMemory(tube) | VmIrq(tube) | VmMsync(tube) => tube, |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 107 | } |
| 108 | } |
| 109 | } |
| 110 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 111 | impl AsRawDescriptor for TaggedControlTube { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 112 | fn as_raw_descriptor(&self) -> RawDescriptor { |
Michael Hoyle | a596a07 | 2020-11-10 19:32:45 -0800 | [diff] [blame] | 113 | self.as_ref().as_raw_descriptor() |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 114 | } |
| 115 | } |
| 116 | |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 117 | struct 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 Reizner | 4486379 | 2019-06-26 14:22:08 -0700 | [diff] [blame] | 125 | fn create_base_minijail( |
| 126 | root: &Path, |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 127 | r_limit: Option<u64>, |
| 128 | config: Option<&SandboxConfig>, |
Zach Reizner | 4486379 | 2019-06-26 14:22:08 -0700 | [diff] [blame] | 129 | ) -> Result<Minijail> { |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 130 | // All child jails run in a new user namespace without any users mapped, |
| 131 | // they run as nobody unless otherwise configured. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 132 | let mut j = Minijail::new().context("failed to jail device")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 133 | |
| 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 143 | j.uidmap(uid_map).context("error setting UID map")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 144 | } |
| 145 | if let Some(gid_map) = config.gid_map { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 146 | j.gidmap(gid_map).context("error setting GID map")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 147 | } |
Chirantan Ekbote | f84c229 | 2020-02-21 16:37:27 +0900 | [diff] [blame] | 148 | // Run in a new mount namespace. |
| 149 | j.namespace_vfs(); |
| 150 | |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 151 | // Run in an empty network namespace. |
| 152 | j.namespace_net(); |
Chirantan Ekbote | f84c229 | 2020-02-21 16:37:27 +0900 | [diff] [blame] | 153 | |
| 154 | // Don't allow the device to gain new privileges. |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 155 | 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 167 | .context("failed to parse precompiled seccomp policy")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 168 | } 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 177 | .context("failed to parse seccomp policy")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 178 | } |
| 179 | j.use_seccomp_filter(); |
| 180 | // Don't do init setup. |
| 181 | j.run_as_init(); |
| 182 | } |
| 183 | |
Chirantan Ekbote | f84c229 | 2020-02-21 16:37:27 +0900 | [diff] [blame] | 184 | // 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 188 | j.enter_pivot_root(root) |
| 189 | .context("failed to pivot root device")?; |
Chirantan Ekbote | f84c229 | 2020-02-21 16:37:27 +0900 | [diff] [blame] | 190 | } |
Matt Delco | 45caf91 | 2019-11-13 08:11:09 -0800 | [diff] [blame] | 191 | |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 192 | // 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 195 | .context("error setting max open files")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 196 | |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 197 | Ok(j) |
| 198 | } |
| 199 | |
Jianxun Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 200 | fn simple_jail(cfg: &Config, policy: &str) -> Result<Option<Minijail>> { |
Lepton Wu | 9105e9f | 2019-03-14 11:38:31 -0700 | [diff] [blame] | 201 | if cfg.sandbox { |
Jianxun Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 202 | 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 206 | bail!("{} doesn't exist, can't jail devices", pivot_root); |
Jianxun Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 207 | } |
| 208 | let policy_path: PathBuf = cfg.seccomp_policy_dir.join(policy); |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 209 | 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 Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 217 | } else { |
| 218 | Ok(None) |
| 219 | } |
| 220 | } |
| 221 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 222 | type DeviceResult<T = VirtioDeviceStub> = Result<T>; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 223 | |
Andrew Walbran | 4cad30a | 2021-06-28 15:58:08 +0000 | [diff] [blame] | 224 | fn create_block_device(cfg: &Config, disk: &DiskOption, disk_device_tube: Tube) -> DeviceResult { |
Junichi Uekawa | 7bea39f | 2021-07-16 14:05:06 +0900 | [diff] [blame] | 225 | let raw_image: File = open_file(&disk.path, disk.read_only, disk.o_direct) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 226 | .with_context(|| format!("failed to load disk image {}", disk.path.display()))?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 227 | // 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 233 | flock(&raw_image, lock_op, true).context("failed to lock disk image")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 234 | |
Junichi Uekawa | 52437db | 2021-09-29 17:33:07 +0900 | [diff] [blame] | 235 | info!("Trying to attach block device: {}", disk.path.display()); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 236 | 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 Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 239 | 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 Verkamp | dd0ee59 | 2021-03-29 13:05:22 -0700 | [diff] [blame] | 246 | disk.id, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 247 | Some(disk_device_tube), |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 248 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 249 | .context("failed to create block device")?, |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 250 | ) as Box<dyn VirtioDevice> |
| 251 | } else { |
Daniel Verkamp | eb1640e | 2021-09-07 14:09:31 -0700 | [diff] [blame] | 252 | let disk_file = disk::create_disk_file(raw_image, disk::MAX_NESTING_DEPTH) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 253 | .context("failed to create virtual disk")?; |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 254 | 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 Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 262 | Some(disk_device_tube), |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 263 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 264 | .context("failed to create block device")?, |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 265 | ) as Box<dyn VirtioDevice> |
| 266 | }; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 267 | |
| 268 | Ok(VirtioDeviceStub { |
Dylan Reid | 503c5ab | 2020-07-17 11:20:07 -0700 | [diff] [blame] | 269 | dev, |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 270 | jail: simple_jail(cfg, "block_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 271 | }) |
| 272 | } |
| 273 | |
Keiichi Watanabe | f3a37f4 | 2021-01-21 15:41:11 +0900 | [diff] [blame] | 274 | fn create_vhost_user_block_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult { |
| 275 | let dev = VhostUserBlock::new(virtio::base_features(cfg.protected_vm), &opt.socket) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 276 | .context("failed to set up vhost-user block device")?; |
Keiichi Watanabe | f3a37f4 | 2021-01-21 15:41:11 +0900 | [diff] [blame] | 277 | |
| 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' Pareschi | 70fc7de | 2021-04-08 15:43:13 +0900 | [diff] [blame] | 285 | fn create_vhost_user_console_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult { |
| 286 | let dev = VhostUserConsole::new(virtio::base_features(cfg.protected_vm), &opt.socket) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 287 | .context("failed to set up vhost-user console device")?; |
Federico 'Morg' Pareschi | 70fc7de | 2021-04-08 15:43:13 +0900 | [diff] [blame] | 288 | |
| 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 Chow | 5890b70 | 2021-02-12 14:57:02 +0900 | [diff] [blame] | 296 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 302 | .context("failed to set up vhost-user fs device")?; |
Woody Chow | 5890b70 | 2021-02-12 14:57:02 +0900 | [diff] [blame] | 303 | |
| 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 Park | eb9cc53 | 2021-07-02 15:02:59 +0900 | [diff] [blame] | 311 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 313 | .context("failed to set up vhost-user mac80211_hwsim device")?; |
JaeMan Park | eb9cc53 | 2021-07-02 15:02:59 +0900 | [diff] [blame] | 314 | |
| 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 Chow | 1b16db1 | 2021-04-02 16:59:59 +0900 | [diff] [blame] | 322 | #[cfg(feature = "audio")] |
| 323 | fn create_vhost_user_snd_device(cfg: &Config, option: &VhostUserOption) -> DeviceResult { |
| 324 | let dev = VhostUserSnd::new(virtio::base_features(cfg.protected_vm), &option.socket) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 325 | .context("failed to set up vhost-user snd device")?; |
Woody Chow | 1b16db1 | 2021-04-02 16:59:59 +0900 | [diff] [blame] | 326 | |
| 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 334 | fn create_rng_device(cfg: &Config) -> DeviceResult { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 335 | let dev = virtio::Rng::new(virtio::base_features(cfg.protected_vm)) |
| 336 | .context("failed to set up rng")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 337 | |
| 338 | Ok(VirtioDeviceStub { |
| 339 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 340 | jail: simple_jail(cfg, "rng_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 341 | }) |
| 342 | } |
| 343 | |
Woody Chow | 737ff12 | 2021-03-22 17:49:57 +0900 | [diff] [blame] | 344 | #[cfg(feature = "audio_cras")] |
Woody Chow | 0b2b606 | 2021-09-03 15:40:02 +0900 | [diff] [blame] | 345 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 350 | .context("failed to create cras sound device")?; |
Woody Chow | 737ff12 | 2021-03-22 17:49:57 +0900 | [diff] [blame] | 351 | |
| 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 380 | #[cfg(feature = "tpm")] |
| 381 | fn create_tpm_device(cfg: &Config) -> DeviceResult { |
| 382 | use std::ffi::CString; |
| 383 | use std::fs; |
| 384 | use std::process; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 385 | |
| 386 | let tpm_storage: PathBuf; |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 387 | let mut tpm_jail = simple_jail(cfg, "tpm_device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 388 | |
| 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 Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 401 | let crosvm_ids = add_current_user_to_jail(jail)?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 402 | |
| 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 406 | fs::create_dir_all(&tpm_storage).with_context(|| { |
| 407 | format!("failed to create tpm storage dir {}", tpm_storage.display()) |
| 408 | })?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 409 | let tpm_pid_dir_c = CString::new(tpm_pid_dir).expect("no nul bytes"); |
David Tolnay | fd0971d | 2019-03-04 17:15:57 -0800 | [diff] [blame] | 410 | chown(&tpm_pid_dir_c, crosvm_ids.uid, crosvm_ids.gid) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 411 | .context("failed to chown tpm storage")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 412 | |
| 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. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 429 | fn create_single_touch_device( |
| 430 | cfg: &Config, |
| 431 | single_touch_spec: &TouchDeviceOption, |
| 432 | idx: u32, |
| 433 | ) -> DeviceResult { |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 434 | 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. Moreira | 99d3f08 | 2019-03-07 10:59:54 -0800 | [diff] [blame] | 441 | |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 442 | let (width, height) = single_touch_spec.get_size(); |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 443 | let dev = virtio::new_single_touch( |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 444 | idx, |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 445 | socket, |
| 446 | width, |
| 447 | height, |
| 448 | virtio::base_features(cfg.protected_vm), |
| 449 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 450 | .context("failed to set up input device")?; |
Jorge E. Moreira | 99d3f08 | 2019-03-07 10:59:54 -0800 | [diff] [blame] | 451 | Ok(VirtioDeviceStub { |
| 452 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 453 | jail: simple_jail(cfg, "input_device")?, |
Jorge E. Moreira | 99d3f08 | 2019-03-07 10:59:54 -0800 | [diff] [blame] | 454 | }) |
| 455 | } |
| 456 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 457 | fn create_multi_touch_device( |
| 458 | cfg: &Config, |
| 459 | multi_touch_spec: &TouchDeviceOption, |
| 460 | idx: u32, |
| 461 | ) -> DeviceResult { |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 462 | 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. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 472 | idx, |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 473 | socket, |
| 474 | width, |
| 475 | height, |
| 476 | virtio::base_features(cfg.protected_vm), |
| 477 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 478 | .context("failed to set up input device")?; |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 479 | |
| 480 | Ok(VirtioDeviceStub { |
| 481 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 482 | jail: simple_jail(cfg, "input_device")?, |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 483 | }) |
| 484 | } |
| 485 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 486 | fn create_trackpad_device( |
| 487 | cfg: &Config, |
| 488 | trackpad_spec: &TouchDeviceOption, |
| 489 | idx: u32, |
| 490 | ) -> DeviceResult { |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 491 | let socket = trackpad_spec.get_path().into_unix_stream().map_err(|e| { |
Maciek Swiech | c301122 | 2021-11-24 21:01:04 +0000 | [diff] [blame] | 492 | error!("failed configuring virtio trackpad: {:#}", e); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 493 | e |
| 494 | })?; |
| 495 | |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 496 | let (width, height) = trackpad_spec.get_size(); |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 497 | let dev = virtio::new_trackpad( |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 498 | idx, |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 499 | socket, |
| 500 | width, |
| 501 | height, |
| 502 | virtio::base_features(cfg.protected_vm), |
| 503 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 504 | .context("failed to set up input device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 505 | |
| 506 | Ok(VirtioDeviceStub { |
| 507 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 508 | jail: simple_jail(cfg, "input_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 509 | }) |
| 510 | } |
| 511 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 512 | fn create_mouse_device<T: IntoUnixStream>(cfg: &Config, mouse_socket: T, idx: u32) -> DeviceResult { |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 513 | let socket = mouse_socket.into_unix_stream().map_err(|e| { |
Maciek Swiech | c301122 | 2021-11-24 21:01:04 +0000 | [diff] [blame] | 514 | error!("failed configuring virtio mouse: {:#}", e); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 515 | e |
| 516 | })?; |
| 517 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 518 | let dev = virtio::new_mouse(idx, socket, virtio::base_features(cfg.protected_vm)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 519 | .context("failed to set up input device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 520 | |
| 521 | Ok(VirtioDeviceStub { |
| 522 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 523 | jail: simple_jail(cfg, "input_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 524 | }) |
| 525 | } |
| 526 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 527 | fn create_keyboard_device<T: IntoUnixStream>( |
| 528 | cfg: &Config, |
| 529 | keyboard_socket: T, |
| 530 | idx: u32, |
| 531 | ) -> DeviceResult { |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 532 | let socket = keyboard_socket.into_unix_stream().map_err(|e| { |
Maciek Swiech | c301122 | 2021-11-24 21:01:04 +0000 | [diff] [blame] | 533 | error!("failed configuring virtio keyboard: {:#}", e); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 534 | e |
| 535 | })?; |
| 536 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 537 | let dev = virtio::new_keyboard(idx, socket, virtio::base_features(cfg.protected_vm)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 538 | .context("failed to set up input device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 539 | |
| 540 | Ok(VirtioDeviceStub { |
| 541 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 542 | jail: simple_jail(cfg, "input_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 543 | }) |
| 544 | } |
| 545 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 546 | fn create_switches_device<T: IntoUnixStream>( |
| 547 | cfg: &Config, |
| 548 | switches_socket: T, |
| 549 | idx: u32, |
| 550 | ) -> DeviceResult { |
Daniel Norman | 5e23df7 | 2021-03-11 10:11:02 -0800 | [diff] [blame] | 551 | let socket = switches_socket.into_unix_stream().map_err(|e| { |
Maciek Swiech | c301122 | 2021-11-24 21:01:04 +0000 | [diff] [blame] | 552 | error!("failed configuring virtio switches: {:#}", e); |
Daniel Norman | 5e23df7 | 2021-03-11 10:11:02 -0800 | [diff] [blame] | 553 | e |
| 554 | })?; |
| 555 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 556 | let dev = virtio::new_switches(idx, socket, virtio::base_features(cfg.protected_vm)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 557 | .context("failed to set up input device")?; |
Daniel Norman | 5e23df7 | 2021-03-11 10:11:02 -0800 | [diff] [blame] | 558 | |
| 559 | Ok(VirtioDeviceStub { |
| 560 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 561 | jail: simple_jail(cfg, "input_device")?, |
Daniel Norman | 5e23df7 | 2021-03-11 10:11:02 -0800 | [diff] [blame] | 562 | }) |
| 563 | } |
| 564 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 565 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 570 | .with_context(|| format!("failed to open vinput device {}", dev_path.display()))?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 571 | |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 572 | let dev = virtio::new_evdev(dev_file, virtio::base_features(cfg.protected_vm)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 573 | .context("failed to set up input device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 574 | |
| 575 | Ok(VirtioDeviceStub { |
| 576 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 577 | jail: simple_jail(cfg, "input_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 578 | }) |
| 579 | } |
| 580 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 581 | fn create_balloon_device(cfg: &Config, tube: Tube) -> DeviceResult { |
| 582 | let dev = virtio::Balloon::new(virtio::base_features(cfg.protected_vm), tube) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 583 | .context("failed to create balloon")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 584 | |
| 585 | Ok(VirtioDeviceStub { |
| 586 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 587 | jail: simple_jail(cfg, "balloon_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 588 | }) |
| 589 | } |
| 590 | |
Michael Hoyle | a596a07 | 2020-11-10 19:32:45 -0800 | [diff] [blame] | 591 | fn create_tap_net_device(cfg: &Config, tap_fd: RawDescriptor) -> DeviceResult { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 592 | // Safe because we ensure that we get a unique handle to the fd. |
| 593 | let tap = unsafe { |
Michael Hoyle | a596a07 | 2020-11-10 19:32:45 -0800 | [diff] [blame] | 594 | Tap::from_raw_descriptor( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 595 | validate_raw_descriptor(tap_fd).context("failed to validate tap descriptor")?, |
Michael Hoyle | a596a07 | 2020-11-10 19:32:45 -0800 | [diff] [blame] | 596 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 597 | .context("failed to create tap device")? |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 598 | }; |
| 599 | |
Xiong Zhang | 773c707 | 2020-03-20 10:39:55 +0800 | [diff] [blame] | 600 | let mut vq_pairs = cfg.net_vq_pairs.unwrap_or(1); |
| 601 | let vcpu_count = cfg.vcpu_count.unwrap_or(1); |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 602 | if vcpu_count < vq_pairs as usize { |
Xiong Zhang | 773c707 | 2020-03-20 10:39:55 +0800 | [diff] [blame] | 603 | error!("net vq pairs must be smaller than vcpu count, fall back to single queue mode"); |
| 604 | vq_pairs = 1; |
| 605 | } |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 606 | let features = virtio::base_features(cfg.protected_vm); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 607 | let dev = |
Alexandre Courbot | 0006586 | 2021-12-08 13:23:54 +0900 | [diff] [blame] | 608 | virtio::Net::from(features, tap, vq_pairs).context("failed to create tap net device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 609 | |
| 610 | Ok(VirtioDeviceStub { |
| 611 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 612 | jail: simple_jail(cfg, "net_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 613 | }) |
| 614 | } |
| 615 | |
| 616 | fn create_net_device( |
| 617 | cfg: &Config, |
| 618 | host_ip: Ipv4Addr, |
| 619 | netmask: Ipv4Addr, |
| 620 | mac_address: MacAddress, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 621 | ) -> DeviceResult { |
Xiong Zhang | 773c707 | 2020-03-20 10:39:55 +0800 | [diff] [blame] | 622 | let mut vq_pairs = cfg.net_vq_pairs.unwrap_or(1); |
| 623 | let vcpu_count = cfg.vcpu_count.unwrap_or(1); |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 624 | if vcpu_count < vq_pairs as usize { |
Xiong Zhang | 773c707 | 2020-03-20 10:39:55 +0800 | [diff] [blame] | 625 | error!("net vq pairs must be smaller than vcpu count, fall back to single queue mode"); |
| 626 | vq_pairs = 1; |
| 627 | } |
| 628 | |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 629 | let features = virtio::base_features(cfg.protected_vm); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 630 | let dev = if cfg.vhost_net { |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 631 | let dev = virtio::vhost::Net::<Tap, vhost::Net<Tap>>::new( |
Christian Blichmann | 2f5d4b6 | 2021-03-10 18:08:08 +0100 | [diff] [blame] | 632 | &cfg.vhost_net_device_path, |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 633 | features, |
| 634 | host_ip, |
| 635 | netmask, |
| 636 | mac_address, |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 637 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 638 | .context("failed to set up vhost networking")?; |
David Tolnay | fdac5ed | 2019-03-08 16:56:14 -0800 | [diff] [blame] | 639 | Box::new(dev) as Box<dyn VirtioDevice> |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 640 | } else { |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 641 | let dev = virtio::Net::<Tap>::new(features, host_ip, netmask, mac_address, vq_pairs) |
Alexandre Courbot | 0006586 | 2021-12-08 13:23:54 +0900 | [diff] [blame] | 642 | .context("failed to create virtio network device")?; |
David Tolnay | fdac5ed | 2019-03-08 16:56:14 -0800 | [diff] [blame] | 643 | Box::new(dev) as Box<dyn VirtioDevice> |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 644 | }; |
| 645 | |
| 646 | let policy = if cfg.vhost_net { |
Matt Delco | 45caf91 | 2019-11-13 08:11:09 -0800 | [diff] [blame] | 647 | "vhost_net_device" |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 648 | } else { |
Matt Delco | 45caf91 | 2019-11-13 08:11:09 -0800 | [diff] [blame] | 649 | "net_device" |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 650 | }; |
| 651 | |
| 652 | Ok(VirtioDeviceStub { |
| 653 | dev, |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 654 | jail: simple_jail(cfg, policy)?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 655 | }) |
| 656 | } |
| 657 | |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 658 | fn create_vhost_user_net_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult { |
| 659 | let dev = VhostUserNet::new(virtio::base_features(cfg.protected_vm), &opt.socket) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 660 | .context("failed to set up vhost-user net device")?; |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 661 | |
| 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 Ekbote | 84091e5 | 2021-09-10 18:43:17 +0900 | [diff] [blame] | 669 | fn create_vhost_user_vsock_device(cfg: &Config, opt: &VhostUserOption) -> DeviceResult { |
| 670 | let dev = VhostUserVsock::new(virtio::base_features(cfg.protected_vm), &opt.socket) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 671 | .context("failed to set up vhost-user vsock device")?; |
Chirantan Ekbote | 84091e5 | 2021-09-10 18:43:17 +0900 | [diff] [blame] | 672 | |
| 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 Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 680 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 684 | .context("failed to set up vhost-user wl device")?; |
Chirantan Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 685 | |
| 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 693 | #[cfg(feature = "gpu")] |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 694 | fn 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 Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 708 | .context("failed to set up vhost-user gpu device")?; |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 709 | |
| 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 718 | fn create_gpu_device( |
| 719 | cfg: &Config, |
Michael Hoyle | 685316f | 2020-09-16 15:29:20 -0700 | [diff] [blame] | 720 | exit_evt: &Event, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 721 | gpu_device_tube: Tube, |
| 722 | resource_bridges: Vec<Tube>, |
Ryo Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 723 | wayland_socket_path: Option<&PathBuf>, |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 724 | x_display: Option<String>, |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 725 | event_devices: Vec<EventDevice>, |
Lingfeng Yang | 5572c8d | 2020-05-05 08:40:36 -0700 | [diff] [blame] | 726 | map_request: Arc<Mutex<Option<ExternalMapping>>>, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 727 | ) -> DeviceResult { |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 728 | let mut display_backends = vec![ |
| 729 | virtio::DisplayBackend::X(x_display), |
Jason Macnak | 60eb1fb | 2020-01-09 14:36:29 -0800 | [diff] [blame] | 730 | virtio::DisplayBackend::Stub, |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 731 | ]; |
| 732 | |
Gurchetan Singh | 1bbbf1c | 2021-05-19 15:05:56 -0700 | [diff] [blame] | 733 | let wayland_socket_dirs = cfg |
| 734 | .wayland_socket_paths |
| 735 | .iter() |
| 736 | .map(|(_name, path)| path.parent()) |
| 737 | .collect::<Option<Vec<_>>>() |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 738 | .ok_or_else(|| anyhow!("wayland socket path has no parent or file name"))?; |
Gurchetan Singh | 1bbbf1c | 2021-05-19 15:05:56 -0700 | [diff] [blame] | 739 | |
Ryo Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 740 | if let Some(socket_path) = wayland_socket_path { |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 741 | display_backends.insert( |
| 742 | 0, |
Gurchetan Singh | 1bbbf1c | 2021-05-19 15:05:56 -0700 | [diff] [blame] | 743 | virtio::DisplayBackend::Wayland(Some(socket_path.to_owned())), |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 744 | ); |
| 745 | } |
| 746 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 747 | let dev = virtio::Gpu::new( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 748 | exit_evt.try_clone().context("failed to clone event")?, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 749 | Some(gpu_device_tube), |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 750 | resource_bridges, |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 751 | display_backends, |
Jason Macnak | cc7070b | 2019-11-06 14:48:12 -0800 | [diff] [blame] | 752 | cfg.gpu_parameters.as_ref().unwrap(), |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 753 | event_devices, |
Lingfeng Yang | 5572c8d | 2020-05-05 08:40:36 -0700 | [diff] [blame] | 754 | map_request, |
| 755 | cfg.sandbox, |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 756 | virtio::base_features(cfg.protected_vm), |
Gurchetan Singh | 781d975 | 2021-02-15 17:45:22 -0800 | [diff] [blame] | 757 | cfg.wayland_socket_paths.clone(), |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 758 | ); |
| 759 | |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 760 | let jail = match simple_jail(cfg, "gpu_device")? { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 761 | 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 Tolnay | fd0971d | 2019-03-04 17:15:57 -0800 | [diff] [blame] | 770 | )?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 771 | |
| 772 | // Device nodes required for DRM. |
| 773 | let sys_dev_char_path = Path::new("/sys/dev/char"); |
David Tolnay | fd0971d | 2019-03-04 17:15:57 -0800 | [diff] [blame] | 774 | jail.mount_bind(sys_dev_char_path, sys_dev_char_path, false)?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 775 | let sys_devices_path = Path::new("/sys/devices"); |
David Tolnay | fd0971d | 2019-03-04 17:15:57 -0800 | [diff] [blame] | 776 | jail.mount_bind(sys_devices_path, sys_devices_path, false)?; |
Jason Macnak | 2340052 | 2020-08-28 09:10:46 -0700 | [diff] [blame] | 777 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 778 | let drm_dri_path = Path::new("/dev/dri"); |
Jason Macnak | 2340052 | 2020-08-28 09:10:46 -0700 | [diff] [blame] | 779 | if drm_dri_path.exists() { |
| 780 | jail.mount_bind(drm_dri_path, drm_dri_path, false)?; |
| 781 | } |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 782 | |
John Bates | b220eac | 2020-09-14 17:03:02 -0700 | [diff] [blame] | 783 | // 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 Bates | 0405973 | 2020-10-01 15:58:55 -0700 | [diff] [blame] | 793 | env::set_var("MESA_GLSL_CACHE_DISABLE", "false"); |
John Bates | b220eac | 2020-09-14 17:03:02 -0700 | [diff] [blame] | 794 | 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 Riley | 06787c5 | 2019-07-24 12:09:07 -0700 | [diff] [blame] | 807 | // 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 Singh | b66d6f6 | 2019-11-08 10:41:29 -0800 | [diff] [blame] | 818 | // 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 824 | // Libraries that are required when mesa drivers are dynamically loaded. |
Chia-I Wu | d562b1a | 2020-12-27 21:08:27 -0800 | [diff] [blame] | 825 | let lib_dirs = &[ |
| 826 | "/usr/lib", |
| 827 | "/usr/lib64", |
| 828 | "/lib", |
| 829 | "/lib64", |
John Bates | ef085de | 2021-03-15 08:55:54 -0700 | [diff] [blame] | 830 | "/usr/share/glvnd", |
Chia-I Wu | d562b1a | 2020-12-27 21:08:27 -0800 | [diff] [blame] | 831 | "/usr/share/vulkan", |
| 832 | ]; |
David Riley | 06787c5 | 2019-07-24 12:09:07 -0700 | [diff] [blame] | 833 | 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 839 | |
Gurchetan Singh | 1bbbf1c | 2021-05-19 15:05:56 -0700 | [diff] [blame] | 840 | // 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 Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 846 | } |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 847 | |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 848 | add_current_user_to_jail(&mut jail)?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 849 | |
David Riley | 54e660b | 2019-07-24 17:22:50 -0700 | [diff] [blame] | 850 | // 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 Bates | 0d9d0e3 | 2020-12-03 11:37:33 -0800 | [diff] [blame] | 859 | // 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 Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 866 | Some(jail) |
| 867 | } |
| 868 | None => None, |
| 869 | }; |
| 870 | |
| 871 | Ok(VirtioDeviceStub { |
| 872 | dev: Box::new(dev), |
| 873 | jail, |
| 874 | }) |
| 875 | } |
| 876 | |
| 877 | fn create_wayland_device( |
| 878 | cfg: &Config, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 879 | control_tube: Tube, |
| 880 | resource_bridge: Option<Tube>, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 881 | ) -> DeviceResult { |
Ryo Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 882 | let wayland_socket_dirs = cfg |
| 883 | .wayland_socket_paths |
| 884 | .iter() |
| 885 | .map(|(_name, path)| path.parent()) |
| 886 | .collect::<Option<Vec<_>>>() |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 887 | .ok_or_else(|| anyhow!("wayland socket path has no parent or file name"))?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 888 | |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 889 | let features = virtio::base_features(cfg.protected_vm); |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 890 | let dev = virtio::Wl::new( |
| 891 | features, |
| 892 | cfg.wayland_socket_paths.clone(), |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 893 | control_tube, |
Will Deacon | 81d5adb | 2020-10-06 18:37:48 +0100 | [diff] [blame] | 894 | resource_bridge, |
| 895 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 896 | .context("failed to create wayland device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 897 | |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 898 | let jail = match simple_jail(cfg, "wl_device")? { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 899 | 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 Tolnay | fd0971d | 2019-03-04 17:15:57 -0800 | [diff] [blame] | 908 | )?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 909 | |
| 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 Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 914 | for dir in &wayland_socket_dirs { |
| 915 | jail.mount_bind(dir, dir, true)?; |
| 916 | } |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 917 | add_current_user_to_jail(&mut jail)?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 918 | |
| 919 | Some(jail) |
| 920 | } |
| 921 | None => None, |
| 922 | }; |
| 923 | |
| 924 | Ok(VirtioDeviceStub { |
| 925 | dev: Box::new(dev), |
| 926 | jail, |
| 927 | }) |
| 928 | } |
| 929 | |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 930 | #[cfg(any(feature = "video-decoder", feature = "video-encoder"))] |
| 931 | fn create_video_device( |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 932 | backend: VideoBackendType, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 933 | cfg: &Config, |
| 934 | typ: devices::virtio::VideoDeviceType, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 935 | resource_bridge: Tube, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 936 | ) -> DeviceResult { |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 937 | let jail = match simple_jail(cfg, "video_device")? { |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 938 | Some(mut jail) => { |
| 939 | match typ { |
Alexandre Courbot | 8230abf | 2021-06-26 22:49:26 +0900 | [diff] [blame] | 940 | #[cfg(feature = "video-decoder")] |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 941 | devices::virtio::VideoDeviceType::Decoder => add_current_user_to_jail(&mut jail)?, |
Alexandre Courbot | 8230abf | 2021-06-26 22:49:26 +0900 | [diff] [blame] | 942 | #[cfg(feature = "video-encoder")] |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 943 | devices::virtio::VideoDeviceType::Encoder => add_current_user_to_jail(&mut jail)?, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 944 | }; |
| 945 | |
| 946 | // Create a tmpfs in the device's root directory so that we can bind mount files. |
| 947 | jail.mount_with_data( |
| 948 | Path::new("none"), |
| 949 | Path::new("/"), |
| 950 | "tmpfs", |
| 951 | (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize, |
| 952 | "size=67108864", |
| 953 | )?; |
| 954 | |
Alexandre Courbot | c02960d | 2021-07-11 23:06:30 +0900 | [diff] [blame] | 955 | #[cfg(feature = "libvda")] |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 956 | // Render node for libvda. |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 957 | if backend == VideoBackendType::Libvda { |
Chih-Yu Huang | d2c2bd1 | 2021-12-06 14:09:59 +0900 | [diff] [blame] | 958 | // follow the implementation at: |
| 959 | // https://source.corp.google.com/chromeos_public/src/platform/minigbm/cros_gralloc/cros_gralloc_driver.cc;l=90;bpv=0;cl=c06cc9cccb3cf3c7f9d2aec706c27c34cd6162a0 |
| 960 | const DRM_NUM_NODES: u32 = 63; |
| 961 | const DRM_RENDER_NODE_START: u32 = 128; |
| 962 | for offset in 0..DRM_NUM_NODES { |
| 963 | let path_str = format!("/dev/dri/renderD{}", DRM_RENDER_NODE_START + offset); |
| 964 | let dev_dri_path = Path::new(&path_str); |
| 965 | if !dev_dri_path.exists() { |
| 966 | break; |
| 967 | } |
| 968 | jail.mount_bind(dev_dri_path, dev_dri_path, false)?; |
| 969 | } |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 970 | } |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 971 | |
David Stevens | e341d0a | 2020-10-08 18:02:32 +0900 | [diff] [blame] | 972 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| 973 | { |
| 974 | // Device nodes used by libdrm through minigbm in libvda on AMD devices. |
| 975 | let sys_dev_char_path = Path::new("/sys/dev/char"); |
| 976 | jail.mount_bind(sys_dev_char_path, sys_dev_char_path, false)?; |
| 977 | let sys_devices_path = Path::new("/sys/devices"); |
| 978 | jail.mount_bind(sys_devices_path, sys_devices_path, false)?; |
| 979 | |
| 980 | // Required for loading dri libraries loaded by minigbm on AMD devices. |
| 981 | let lib_dir = Path::new("/usr/lib64"); |
| 982 | jail.mount_bind(lib_dir, lib_dir, false)?; |
| 983 | } |
| 984 | |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 985 | // Device nodes required by libchrome which establishes Mojo connection in libvda. |
| 986 | let dev_urandom_path = Path::new("/dev/urandom"); |
| 987 | jail.mount_bind(dev_urandom_path, dev_urandom_path, false)?; |
| 988 | let system_bus_socket_path = Path::new("/run/dbus/system_bus_socket"); |
| 989 | jail.mount_bind(system_bus_socket_path, system_bus_socket_path, true)?; |
| 990 | |
| 991 | Some(jail) |
| 992 | } |
| 993 | None => None, |
| 994 | }; |
| 995 | |
| 996 | Ok(VirtioDeviceStub { |
| 997 | dev: Box::new(devices::virtio::VideoDevice::new( |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 998 | virtio::base_features(cfg.protected_vm), |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 999 | typ, |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1000 | backend, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1001 | Some(resource_bridge), |
| 1002 | )), |
| 1003 | jail, |
| 1004 | }) |
| 1005 | } |
| 1006 | |
| 1007 | #[cfg(any(feature = "video-decoder", feature = "video-encoder"))] |
| 1008 | fn register_video_device( |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1009 | backend: VideoBackendType, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1010 | devs: &mut Vec<VirtioDeviceStub>, |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1011 | video_tube: Tube, |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1012 | cfg: &Config, |
| 1013 | typ: devices::virtio::VideoDeviceType, |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1014 | ) -> Result<()> { |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1015 | devs.push(create_video_device(backend, cfg, typ, video_tube)?); |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1016 | Ok(()) |
| 1017 | } |
| 1018 | |
Chirantan Ekbote | 3e8d52b | 2021-09-10 18:27:16 +0900 | [diff] [blame] | 1019 | fn create_vhost_vsock_device(cfg: &Config, cid: u64) -> DeviceResult { |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 1020 | let features = virtio::base_features(cfg.protected_vm); |
Christian Blichmann | 50f9591 | 2021-11-05 16:59:39 +0100 | [diff] [blame] | 1021 | |
| 1022 | let device_file = match cfg |
| 1023 | .vhost_vsock_device |
| 1024 | .as_ref() |
| 1025 | .unwrap_or(&VhostVsockDeviceParameter::default()) |
| 1026 | { |
| 1027 | VhostVsockDeviceParameter::Fd(fd) => { |
| 1028 | let fd = validate_raw_descriptor(*fd) |
| 1029 | .context("failed to validate fd for virtual socker device")?; |
| 1030 | // Safe because the `fd` is actually owned by this process and |
| 1031 | // we have a unique handle to it. |
| 1032 | unsafe { File::from_raw_fd(fd) } |
| 1033 | } |
| 1034 | VhostVsockDeviceParameter::Path(path) => OpenOptions::new() |
| 1035 | .read(true) |
| 1036 | .write(true) |
| 1037 | .custom_flags(libc::O_CLOEXEC | libc::O_NONBLOCK) |
| 1038 | .open(path) |
| 1039 | .context("failed to open virtual socket device")?, |
| 1040 | }; |
| 1041 | |
| 1042 | let dev = virtio::vhost::Vsock::new(device_file, features, cid) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1043 | .context("failed to set up virtual socket device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1044 | |
| 1045 | Ok(VirtioDeviceStub { |
| 1046 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1047 | jail: simple_jail(cfg, "vhost_vsock_device")?, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1048 | }) |
| 1049 | } |
| 1050 | |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1051 | fn create_fs_device( |
| 1052 | cfg: &Config, |
| 1053 | uid_map: &str, |
| 1054 | gid_map: &str, |
| 1055 | src: &Path, |
| 1056 | tag: &str, |
| 1057 | fs_cfg: virtio::fs::passthrough::Config, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1058 | device_tube: Tube, |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1059 | ) -> DeviceResult { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1060 | let max_open_files = |
| 1061 | base::get_max_open_files().context("failed to get max number of open files")?; |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 1062 | let j = if cfg.sandbox { |
| 1063 | let seccomp_policy = cfg.seccomp_policy_dir.join("fs_device"); |
| 1064 | let config = SandboxConfig { |
| 1065 | limit_caps: false, |
| 1066 | uid_map: Some(uid_map), |
| 1067 | gid_map: Some(gid_map), |
| 1068 | log_failures: cfg.seccomp_log_failures, |
| 1069 | seccomp_policy: &seccomp_policy, |
| 1070 | }; |
Chirantan Ekbote | 34d45e5 | 2020-04-20 18:15:02 +0900 | [diff] [blame] | 1071 | let mut jail = create_base_minijail(src, Some(max_open_files), Some(&config))?; |
| 1072 | // We want bind mounts from the parent namespaces to propagate into the fs device's |
| 1073 | // namespace. |
| 1074 | jail.set_remount_mode(libc::MS_SLAVE); |
| 1075 | |
| 1076 | jail |
Matt Delco | c24ad78 | 2020-02-14 13:24:36 -0800 | [diff] [blame] | 1077 | } else { |
| 1078 | create_base_minijail(src, Some(max_open_files), None)? |
| 1079 | }; |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1080 | |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 1081 | let features = virtio::base_features(cfg.protected_vm); |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1082 | // TODO(chirantan): Use more than one worker once the kernel driver has been fixed to not panic |
| 1083 | // when num_queues > 1. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1084 | let dev = virtio::fs::Fs::new(features, tag, 1, fs_cfg, device_tube) |
| 1085 | .context("failed to create fs device")?; |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1086 | |
| 1087 | Ok(VirtioDeviceStub { |
| 1088 | dev: Box::new(dev), |
| 1089 | jail: Some(j), |
| 1090 | }) |
| 1091 | } |
| 1092 | |
Chirantan Ekbote | c6b73e3 | 2020-02-20 15:53:06 +0900 | [diff] [blame] | 1093 | fn create_9p_device( |
| 1094 | cfg: &Config, |
| 1095 | uid_map: &str, |
| 1096 | gid_map: &str, |
| 1097 | src: &Path, |
| 1098 | tag: &str, |
Chirantan Ekbote | 75ba875 | 2020-10-27 18:33:02 +0900 | [diff] [blame] | 1099 | mut p9_cfg: p9::Config, |
Chirantan Ekbote | c6b73e3 | 2020-02-20 15:53:06 +0900 | [diff] [blame] | 1100 | ) -> DeviceResult { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1101 | let max_open_files = |
| 1102 | base::get_max_open_files().context("failed to get max number of open files")?; |
Chirantan Ekbote | c6b73e3 | 2020-02-20 15:53:06 +0900 | [diff] [blame] | 1103 | let (jail, root) = if cfg.sandbox { |
| 1104 | let seccomp_policy = cfg.seccomp_policy_dir.join("9p_device"); |
| 1105 | let config = SandboxConfig { |
| 1106 | limit_caps: false, |
| 1107 | uid_map: Some(uid_map), |
| 1108 | gid_map: Some(gid_map), |
| 1109 | log_failures: cfg.seccomp_log_failures, |
| 1110 | seccomp_policy: &seccomp_policy, |
| 1111 | }; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1112 | |
Chirantan Ekbote | c6b73e3 | 2020-02-20 15:53:06 +0900 | [diff] [blame] | 1113 | let mut jail = create_base_minijail(src, Some(max_open_files), Some(&config))?; |
| 1114 | // We want bind mounts from the parent namespaces to propagate into the 9p server's |
| 1115 | // namespace. |
| 1116 | jail.set_remount_mode(libc::MS_SLAVE); |
Chirantan Ekbote | 055de38 | 2020-01-24 12:16:58 +0900 | [diff] [blame] | 1117 | |
Chirantan Ekbote | c6b73e3 | 2020-02-20 15:53:06 +0900 | [diff] [blame] | 1118 | // The shared directory becomes the root of the device's file system. |
| 1119 | let root = Path::new("/"); |
| 1120 | (Some(jail), root) |
| 1121 | } else { |
| 1122 | // There's no mount namespace so we tell the server to treat the source directory as the |
| 1123 | // root. |
| 1124 | (None, src) |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1125 | }; |
| 1126 | |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 1127 | let features = virtio::base_features(cfg.protected_vm); |
Chirantan Ekbote | 75ba875 | 2020-10-27 18:33:02 +0900 | [diff] [blame] | 1128 | p9_cfg.root = root.into(); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1129 | let dev = virtio::P9::new(features, tag, p9_cfg).context("failed to create 9p device")?; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1130 | |
| 1131 | Ok(VirtioDeviceStub { |
| 1132 | dev: Box::new(dev), |
| 1133 | jail, |
| 1134 | }) |
| 1135 | } |
| 1136 | |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1137 | fn create_pmem_device( |
| 1138 | cfg: &Config, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1139 | vm: &mut impl Vm, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1140 | resources: &mut SystemAllocator, |
| 1141 | disk: &DiskOption, |
| 1142 | index: usize, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1143 | pmem_device_tube: Tube, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1144 | ) -> DeviceResult { |
Junichi Uekawa | 7bea39f | 2021-07-16 14:05:06 +0900 | [diff] [blame] | 1145 | let fd = open_file(&disk.path, disk.read_only, false /*O_DIRECT*/) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1146 | .with_context(|| format!("failed to load disk image {}", disk.path.display()))?; |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1147 | |
| 1148 | let (disk_size, arena_size) = { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1149 | let metadata = std::fs::metadata(&disk.path).with_context(|| { |
| 1150 | format!("failed to get disk image {} metadata", disk.path.display()) |
| 1151 | })?; |
Stephen Barber | dc7c07b | 2019-12-20 12:43:35 -0800 | [diff] [blame] | 1152 | let disk_len = metadata.len(); |
| 1153 | // Linux requires pmem region sizes to be 2 MiB aligned. Linux will fill any partial page |
| 1154 | // at the end of an mmap'd file and won't write back beyond the actual file length, but if |
| 1155 | // we just align the size of the file to 2 MiB then access beyond the last page of the |
| 1156 | // mapped file will generate SIGBUS. So use a memory mapping arena that will provide |
| 1157 | // padding up to 2 MiB. |
| 1158 | let alignment = 2 * 1024 * 1024; |
| 1159 | let align_adjust = if disk_len % alignment != 0 { |
| 1160 | alignment - (disk_len % alignment) |
| 1161 | } else { |
| 1162 | 0 |
| 1163 | }; |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1164 | ( |
| 1165 | disk_len, |
| 1166 | disk_len |
| 1167 | .checked_add(align_adjust) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1168 | .ok_or_else(|| anyhow!("pmem device image too big"))?, |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1169 | ) |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1170 | }; |
| 1171 | |
| 1172 | let protection = { |
| 1173 | if disk.read_only { |
| 1174 | Protection::read() |
| 1175 | } else { |
| 1176 | Protection::read_write() |
| 1177 | } |
| 1178 | }; |
| 1179 | |
Stephen Barber | dc7c07b | 2019-12-20 12:43:35 -0800 | [diff] [blame] | 1180 | let arena = { |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1181 | // Conversion from u64 to usize may fail on 32bit system. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1182 | let arena_size = usize::try_from(arena_size).context("pmem device image too big")?; |
| 1183 | let disk_size = usize::try_from(disk_size).context("pmem device image too big")?; |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1184 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1185 | let mut arena = |
| 1186 | MemoryMappingArena::new(arena_size).context("failed to reserve pmem memory")?; |
Stephen Barber | dc7c07b | 2019-12-20 12:43:35 -0800 | [diff] [blame] | 1187 | arena |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1188 | .add_fd_offset_protection(0, disk_size, &fd, 0, protection) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1189 | .context("failed to reserve pmem memory")?; |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1190 | |
| 1191 | // If the disk is not a multiple of the page size, the OS will fill the remaining part |
| 1192 | // of the page with zeroes. However, the anonymous mapping added below must start on a |
| 1193 | // page boundary, so round up the size before calculating the offset of the anon region. |
| 1194 | let disk_size = round_up_to_page_size(disk_size); |
| 1195 | |
| 1196 | if arena_size > disk_size { |
| 1197 | // Add an anonymous region with the same protection as the disk mapping if the arena |
| 1198 | // size was aligned. |
| 1199 | arena |
| 1200 | .add_anon_protection(disk_size, arena_size - disk_size, protection) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1201 | .context("failed to reserve pmem padding")?; |
Daniel Verkamp | 3eeaf6a | 2021-08-30 15:29:44 -0700 | [diff] [blame] | 1202 | } |
Stephen Barber | dc7c07b | 2019-12-20 12:43:35 -0800 | [diff] [blame] | 1203 | arena |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1204 | }; |
| 1205 | |
| 1206 | let mapping_address = resources |
Xiong Zhang | 383b3b5 | 2019-10-30 14:59:26 +0800 | [diff] [blame] | 1207 | .mmio_allocator(MmioType::High) |
Daniel Verkamp | 57e4f54 | 2021-10-28 09:56:40 -0700 | [diff] [blame] | 1208 | .reverse_allocate_with_align( |
Stephen Barber | dc7c07b | 2019-12-20 12:43:35 -0800 | [diff] [blame] | 1209 | arena_size, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1210 | Alloc::PmemDevice(index), |
| 1211 | format!("pmem_disk_image_{}", index), |
| 1212 | // Linux kernel requires pmem namespaces to be 128 MiB aligned. |
| 1213 | 128 * 1024 * 1024, /* 128 MiB */ |
| 1214 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1215 | .context("failed to allocate memory for pmem device")?; |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1216 | |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1217 | let slot = vm |
Gurchetan Singh | 173fe62 | 2020-05-21 18:05:06 -0700 | [diff] [blame] | 1218 | .add_memory_region( |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1219 | GuestAddress(mapping_address), |
Gurchetan Singh | 173fe62 | 2020-05-21 18:05:06 -0700 | [diff] [blame] | 1220 | Box::new(arena), |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1221 | /* read_only = */ disk.read_only, |
| 1222 | /* log_dirty_pages = */ false, |
| 1223 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1224 | .context("failed to add pmem device memory")?; |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1225 | |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1226 | let dev = virtio::Pmem::new( |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 1227 | virtio::base_features(cfg.protected_vm), |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1228 | fd, |
| 1229 | GuestAddress(mapping_address), |
| 1230 | slot, |
| 1231 | arena_size, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1232 | Some(pmem_device_tube), |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1233 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1234 | .context("failed to create pmem device")?; |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1235 | |
| 1236 | Ok(VirtioDeviceStub { |
| 1237 | dev: Box::new(dev) as Box<dyn VirtioDevice>, |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1238 | jail: simple_jail(cfg, "pmem_device")?, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1239 | }) |
| 1240 | } |
| 1241 | |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1242 | fn create_iommu_device( |
| 1243 | cfg: &Config, |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 1244 | phys_max_addr: u64, |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1245 | endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>>, |
| 1246 | ) -> DeviceResult { |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 1247 | let dev = virtio::Iommu::new( |
| 1248 | virtio::base_features(cfg.protected_vm), |
| 1249 | endpoints, |
| 1250 | phys_max_addr, |
| 1251 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1252 | .context("failed to create IOMMU device")?; |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1253 | |
| 1254 | Ok(VirtioDeviceStub { |
| 1255 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1256 | jail: simple_jail(cfg, "iommu_device")?, |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1257 | }) |
| 1258 | } |
| 1259 | |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1260 | fn create_console_device(cfg: &Config, param: &SerialParameters) -> DeviceResult { |
Michael Hoyle | cd23bc2 | 2020-10-20 22:12:20 -0700 | [diff] [blame] | 1261 | let mut keep_rds = Vec::new(); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1262 | let evt = Event::new().context("failed to create event")?; |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1263 | let dev = param |
Michael Hoyle | cd23bc2 | 2020-10-20 22:12:20 -0700 | [diff] [blame] | 1264 | .create_serial_device::<Console>(cfg.protected_vm, &evt, &mut keep_rds) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1265 | .context("failed to create console device")?; |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1266 | |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1267 | let jail = match simple_jail(cfg, "serial")? { |
Nicholas Verne | 71e73d8 | 2020-07-08 17:19:55 +1000 | [diff] [blame] | 1268 | Some(mut jail) => { |
| 1269 | // Create a tmpfs in the device's root directory so that we can bind mount the |
| 1270 | // log socket directory into it. |
| 1271 | // The size=67108864 is size=64*1024*1024 or size=64MB. |
| 1272 | jail.mount_with_data( |
| 1273 | Path::new("none"), |
| 1274 | Path::new("/"), |
| 1275 | "tmpfs", |
| 1276 | (libc::MS_NODEV | libc::MS_NOEXEC | libc::MS_NOSUID) as usize, |
| 1277 | "size=67108864", |
| 1278 | )?; |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 1279 | add_current_user_to_jail(&mut jail)?; |
Nicholas Verne | 71e73d8 | 2020-07-08 17:19:55 +1000 | [diff] [blame] | 1280 | let res = param.add_bind_mounts(&mut jail); |
| 1281 | if res.is_err() { |
| 1282 | error!("failed to add bind mounts for console device"); |
| 1283 | } |
| 1284 | Some(jail) |
| 1285 | } |
| 1286 | None => None, |
| 1287 | }; |
| 1288 | |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1289 | Ok(VirtioDeviceStub { |
| 1290 | dev: Box::new(dev), |
Nicholas Verne | 71e73d8 | 2020-07-08 17:19:55 +1000 | [diff] [blame] | 1291 | jail, // TODO(dverkamp): use a separate policy for console? |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1292 | }) |
| 1293 | } |
| 1294 | |
Jorge E. Moreira | d4562d0 | 2021-06-28 16:21:12 -0700 | [diff] [blame] | 1295 | #[cfg(feature = "audio")] |
| 1296 | fn create_sound_device(path: &Path, cfg: &Config) -> DeviceResult { |
| 1297 | let dev = virtio::new_sound(path, virtio::base_features(cfg.protected_vm)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1298 | .context("failed to create sound device")?; |
Jorge E. Moreira | d4562d0 | 2021-06-28 16:21:12 -0700 | [diff] [blame] | 1299 | |
| 1300 | Ok(VirtioDeviceStub { |
| 1301 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1302 | jail: simple_jail(cfg, "vios_audio_device")?, |
Jorge E. Moreira | d4562d0 | 2021-06-28 16:21:12 -0700 | [diff] [blame] | 1303 | }) |
| 1304 | } |
| 1305 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1306 | // gpu_device_tube is not used when GPU support is disabled. |
Dmitry Torokhov | ee42b8c | 2019-05-27 11:14:20 -0700 | [diff] [blame] | 1307 | #[cfg_attr(not(feature = "gpu"), allow(unused_variables))] |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1308 | fn create_virtio_devices( |
| 1309 | cfg: &Config, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1310 | vm: &mut impl Vm, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1311 | resources: &mut SystemAllocator, |
Michael Hoyle | 685316f | 2020-09-16 15:29:20 -0700 | [diff] [blame] | 1312 | _exit_evt: &Event, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1313 | wayland_device_tube: Tube, |
| 1314 | gpu_device_tube: Tube, |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 1315 | vhost_user_gpu_tubes: Vec<(Tube, Tube)>, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1316 | balloon_device_tube: Tube, |
| 1317 | disk_device_tubes: &mut Vec<Tube>, |
| 1318 | pmem_device_tubes: &mut Vec<Tube>, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 1319 | map_request: Arc<Mutex<Option<ExternalMapping>>>, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1320 | fs_device_tubes: &mut Vec<Tube>, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1321 | ) -> DeviceResult<Vec<VirtioDeviceStub>> { |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 1322 | let mut devs = Vec::new(); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1323 | |
Daniel Verkamp | a7b6a1c | 2020-03-09 13:16:46 -0700 | [diff] [blame] | 1324 | for (_, param) in cfg |
| 1325 | .serial_parameters |
| 1326 | .iter() |
| 1327 | .filter(|(_k, v)| v.hardware == SerialHardware::VirtioConsole) |
| 1328 | { |
| 1329 | let dev = create_console_device(cfg, param)?; |
| 1330 | devs.push(dev); |
| 1331 | } |
| 1332 | |
Zach Reizner | 8fb5211 | 2017-12-13 16:04:39 -0800 | [diff] [blame] | 1333 | for disk in &cfg.disks { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1334 | let disk_device_tube = disk_device_tubes.remove(0); |
| 1335 | devs.push(create_block_device(cfg, disk, disk_device_tube)?); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1336 | } |
| 1337 | |
Keiichi Watanabe | f3a37f4 | 2021-01-21 15:41:11 +0900 | [diff] [blame] | 1338 | for blk in &cfg.vhost_user_blk { |
| 1339 | devs.push(create_vhost_user_block_device(cfg, blk)?); |
| 1340 | } |
| 1341 | |
Federico 'Morg' Pareschi | 70fc7de | 2021-04-08 15:43:13 +0900 | [diff] [blame] | 1342 | for console in &cfg.vhost_user_console { |
| 1343 | devs.push(create_vhost_user_console_device(cfg, console)?); |
| 1344 | } |
| 1345 | |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1346 | for (index, pmem_disk) in cfg.pmem_devices.iter().enumerate() { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1347 | let pmem_device_tube = pmem_device_tubes.remove(0); |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1348 | devs.push(create_pmem_device( |
| 1349 | cfg, |
| 1350 | vm, |
| 1351 | resources, |
| 1352 | pmem_disk, |
| 1353 | index, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1354 | pmem_device_tube, |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 1355 | )?); |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1356 | } |
| 1357 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1358 | devs.push(create_rng_device(cfg)?); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1359 | |
Woody Chow | 737ff12 | 2021-03-22 17:49:57 +0900 | [diff] [blame] | 1360 | #[cfg(feature = "audio_cras")] |
| 1361 | { |
Woody Chow | 0b2b606 | 2021-09-03 15:40:02 +0900 | [diff] [blame] | 1362 | if let Some(cras_snd) = &cfg.cras_snd { |
| 1363 | devs.push(create_cras_snd_device(cfg, cras_snd.clone())?); |
Woody Chow | 737ff12 | 2021-03-22 17:49:57 +0900 | [diff] [blame] | 1364 | } |
| 1365 | } |
| 1366 | |
David Tolnay | de6b29a | 2018-12-20 11:49:46 -0800 | [diff] [blame] | 1367 | #[cfg(feature = "tpm")] |
| 1368 | { |
David Tolnay | 43f8e21 | 2019-02-13 17:28:16 -0800 | [diff] [blame] | 1369 | if cfg.software_tpm { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1370 | devs.push(create_tpm_device(cfg)?); |
David Tolnay | 43f8e21 | 2019-02-13 17:28:16 -0800 | [diff] [blame] | 1371 | } |
David Tolnay | de6b29a | 2018-12-20 11:49:46 -0800 | [diff] [blame] | 1372 | } |
| 1373 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1374 | for (idx, single_touch_spec) in cfg.virtio_single_touch.iter().enumerate() { |
| 1375 | devs.push(create_single_touch_device( |
| 1376 | cfg, |
| 1377 | single_touch_spec, |
| 1378 | idx as u32, |
| 1379 | )?); |
Jorge E. Moreira | 99d3f08 | 2019-03-07 10:59:54 -0800 | [diff] [blame] | 1380 | } |
| 1381 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1382 | for (idx, multi_touch_spec) in cfg.virtio_multi_touch.iter().enumerate() { |
| 1383 | devs.push(create_multi_touch_device( |
| 1384 | cfg, |
| 1385 | multi_touch_spec, |
| 1386 | idx as u32, |
| 1387 | )?); |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 1388 | } |
| 1389 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1390 | for (idx, trackpad_spec) in cfg.virtio_trackpad.iter().enumerate() { |
| 1391 | devs.push(create_trackpad_device(cfg, trackpad_spec, idx as u32)?); |
Jorge E. Moreira | dffec50 | 2019-01-14 18:44:49 -0800 | [diff] [blame] | 1392 | } |
| 1393 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1394 | for (idx, mouse_socket) in cfg.virtio_mice.iter().enumerate() { |
| 1395 | devs.push(create_mouse_device(cfg, mouse_socket, idx as u32)?); |
Jorge E. Moreira | dffec50 | 2019-01-14 18:44:49 -0800 | [diff] [blame] | 1396 | } |
| 1397 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1398 | for (idx, keyboard_socket) in cfg.virtio_keyboard.iter().enumerate() { |
| 1399 | devs.push(create_keyboard_device(cfg, keyboard_socket, idx as u32)?); |
Jorge E. Moreira | dffec50 | 2019-01-14 18:44:49 -0800 | [diff] [blame] | 1400 | } |
| 1401 | |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1402 | for (idx, switches_socket) in cfg.virtio_switches.iter().enumerate() { |
| 1403 | devs.push(create_switches_device(cfg, switches_socket, idx as u32)?); |
Daniel Norman | 5e23df7 | 2021-03-11 10:11:02 -0800 | [diff] [blame] | 1404 | } |
| 1405 | |
Jianxun Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 1406 | for dev_path in &cfg.virtio_input_evdevs { |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1407 | devs.push(create_vinput_device(cfg, dev_path)?); |
Jorge E. Moreira | dffec50 | 2019-01-14 18:44:49 -0800 | [diff] [blame] | 1408 | } |
| 1409 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1410 | devs.push(create_balloon_device(cfg, balloon_device_tube)?); |
Dylan Reid | 295ccac | 2017-11-06 14:06:24 -0800 | [diff] [blame] | 1411 | |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1412 | // We checked above that if the IP is defined, then the netmask is, too. |
Jianxun Zhang | 8f4d768 | 2019-02-21 12:55:31 -0800 | [diff] [blame] | 1413 | for tap_fd in &cfg.tap_fd { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1414 | devs.push(create_tap_net_device(cfg, *tap_fd)?); |
Jorge E. Moreira | b795280 | 2019-02-12 16:43:05 -0800 | [diff] [blame] | 1415 | } |
| 1416 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1417 | if let (Some(host_ip), Some(netmask), Some(mac_address)) = |
| 1418 | (cfg.host_ip, cfg.netmask, cfg.mac_address) |
| 1419 | { |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 1420 | if !cfg.vhost_user_net.is_empty() { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1421 | bail!("vhost-user-net cannot be used with any of --host_ip, --netmask or --mac"); |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 1422 | } |
Chirantan Ekbote | 3e8d52b | 2021-09-10 18:27:16 +0900 | [diff] [blame] | 1423 | devs.push(create_net_device(cfg, host_ip, netmask, mac_address)?); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 1424 | } |
| 1425 | |
Keiichi Watanabe | 6068658 | 2021-03-12 04:53:51 +0900 | [diff] [blame] | 1426 | for net in &cfg.vhost_user_net { |
| 1427 | devs.push(create_vhost_user_net_device(cfg, net)?); |
| 1428 | } |
| 1429 | |
Chirantan Ekbote | 84091e5 | 2021-09-10 18:43:17 +0900 | [diff] [blame] | 1430 | for vsock in &cfg.vhost_user_vsock { |
| 1431 | devs.push(create_vhost_user_vsock_device(cfg, vsock)?); |
| 1432 | } |
| 1433 | |
Chirantan Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 1434 | for opt in &cfg.vhost_user_wl { |
| 1435 | devs.push(create_vhost_user_wl_device(cfg, opt)?); |
| 1436 | } |
| 1437 | |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 1438 | #[cfg(feature = "gpu")] |
| 1439 | for (opt, (host_tube, device_tube)) in cfg.vhost_user_gpu.iter().zip(vhost_user_gpu_tubes) { |
| 1440 | devs.push(create_vhost_user_gpu_device( |
| 1441 | cfg, |
| 1442 | opt, |
| 1443 | host_tube, |
| 1444 | device_tube, |
| 1445 | )?); |
| 1446 | } |
| 1447 | |
David Tolnay | fa70171 | 2019-02-13 16:42:54 -0800 | [diff] [blame] | 1448 | #[cfg_attr(not(feature = "gpu"), allow(unused_mut))] |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1449 | let mut resource_bridges = Vec::<Tube>::new(); |
Chirantan Ekbote | dd11d43 | 2019-06-11 21:50:46 +0900 | [diff] [blame] | 1450 | |
Ryo Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 1451 | if !cfg.wayland_socket_paths.is_empty() { |
Chirantan Ekbote | dd11d43 | 2019-06-11 21:50:46 +0900 | [diff] [blame] | 1452 | #[cfg_attr(not(feature = "gpu"), allow(unused_mut))] |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1453 | let mut wl_resource_bridge = None::<Tube>; |
Chirantan Ekbote | dd11d43 | 2019-06-11 21:50:46 +0900 | [diff] [blame] | 1454 | |
| 1455 | #[cfg(feature = "gpu")] |
| 1456 | { |
Jason Macnak | cc7070b | 2019-11-06 14:48:12 -0800 | [diff] [blame] | 1457 | if cfg.gpu_parameters.is_some() { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1458 | let (wl_socket, gpu_socket) = Tube::pair().context("failed to create tube")?; |
Chirantan Ekbote | dd11d43 | 2019-06-11 21:50:46 +0900 | [diff] [blame] | 1459 | resource_bridges.push(gpu_socket); |
| 1460 | wl_resource_bridge = Some(wl_socket); |
| 1461 | } |
| 1462 | } |
| 1463 | |
| 1464 | devs.push(create_wayland_device( |
| 1465 | cfg, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1466 | wayland_device_tube, |
Chirantan Ekbote | dd11d43 | 2019-06-11 21:50:46 +0900 | [diff] [blame] | 1467 | wl_resource_bridge, |
| 1468 | )?); |
| 1469 | } |
David Tolnay | fa70171 | 2019-02-13 16:42:54 -0800 | [diff] [blame] | 1470 | |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1471 | #[cfg(feature = "video-decoder")] |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1472 | let video_dec_cfg = if let Some(backend) = cfg.video_dec { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1473 | let (video_tube, gpu_tube) = Tube::pair().context("failed to create tube")?; |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1474 | resource_bridges.push(gpu_tube); |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1475 | Some((video_tube, backend)) |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1476 | } else { |
| 1477 | None |
| 1478 | }; |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1479 | |
| 1480 | #[cfg(feature = "video-encoder")] |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1481 | let video_enc_cfg = if let Some(backend) = cfg.video_enc { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1482 | let (video_tube, gpu_tube) = Tube::pair().context("failed to create tube")?; |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1483 | resource_bridges.push(gpu_tube); |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1484 | Some((video_tube, backend)) |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1485 | } else { |
| 1486 | None |
| 1487 | }; |
Keiichi Watanabe | 57df6a0 | 2019-12-06 22:24:40 +0900 | [diff] [blame] | 1488 | |
Zach Reizner | 3a8100a | 2017-09-13 19:15:43 -0700 | [diff] [blame] | 1489 | #[cfg(feature = "gpu")] |
| 1490 | { |
Noah Gold | dc7f52b | 2020-02-01 13:01:58 -0800 | [diff] [blame] | 1491 | if let Some(gpu_parameters) = &cfg.gpu_parameters { |
Jason Macnak | d659a0d | 2021-03-15 15:33:01 -0700 | [diff] [blame] | 1492 | let mut gpu_display_w = DEFAULT_DISPLAY_WIDTH; |
| 1493 | let mut gpu_display_h = DEFAULT_DISPLAY_HEIGHT; |
| 1494 | if !gpu_parameters.displays.is_empty() { |
| 1495 | gpu_display_w = gpu_parameters.displays[0].width; |
| 1496 | gpu_display_h = gpu_parameters.displays[0].height; |
| 1497 | } |
| 1498 | |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1499 | let mut event_devices = Vec::new(); |
| 1500 | if cfg.display_window_mouse { |
| 1501 | let (event_device_socket, virtio_dev_socket) = |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1502 | UnixStream::pair().context("failed to create socket")?; |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 1503 | let (multi_touch_width, multi_touch_height) = cfg |
| 1504 | .virtio_multi_touch |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1505 | .first() |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 1506 | .as_ref() |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 1507 | .map(|multi_touch_spec| multi_touch_spec.get_size()) |
Jason Macnak | d659a0d | 2021-03-15 15:33:01 -0700 | [diff] [blame] | 1508 | .unwrap_or((gpu_display_w, gpu_display_h)); |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 1509 | let dev = virtio::new_multi_touch( |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1510 | // u32::MAX is the least likely to collide with the indices generated above for |
| 1511 | // the multi_touch options, which begin at 0. |
| 1512 | u32::MAX, |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 1513 | virtio_dev_socket, |
Tristan Muntsinger | 486cffc | 2020-09-29 22:05:41 +0000 | [diff] [blame] | 1514 | multi_touch_width, |
| 1515 | multi_touch_height, |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 1516 | virtio::base_features(cfg.protected_vm), |
Kaiyi Li | bccb4eb | 2020-02-06 17:53:11 -0800 | [diff] [blame] | 1517 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1518 | .context("failed to set up mouse device")?; |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1519 | devs.push(VirtioDeviceStub { |
| 1520 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1521 | jail: simple_jail(cfg, "input_device")?, |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1522 | }); |
| 1523 | event_devices.push(EventDevice::touchscreen(event_device_socket)); |
| 1524 | } |
| 1525 | if cfg.display_window_keyboard { |
| 1526 | let (event_device_socket, virtio_dev_socket) = |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1527 | UnixStream::pair().context("failed to create socket")?; |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 1528 | let dev = virtio::new_keyboard( |
Jorge E. Moreira | 6635ca4 | 2021-04-28 13:11:41 -0700 | [diff] [blame] | 1529 | // u32::MAX is the least likely to collide with the indices generated above for |
| 1530 | // the multi_touch options, which begin at 0. |
| 1531 | u32::MAX, |
Noah Gold | d4ca29b | 2020-10-27 12:21:52 -0700 | [diff] [blame] | 1532 | virtio_dev_socket, |
| 1533 | virtio::base_features(cfg.protected_vm), |
| 1534 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1535 | .context("failed to set up keyboard device")?; |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1536 | devs.push(VirtioDeviceStub { |
| 1537 | dev: Box::new(dev), |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1538 | jail: simple_jail(cfg, "input_device")?, |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1539 | }); |
| 1540 | event_devices.push(EventDevice::keyboard(event_device_socket)); |
| 1541 | } |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 1542 | devs.push(create_gpu_device( |
| 1543 | cfg, |
| 1544 | _exit_evt, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1545 | gpu_device_tube, |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 1546 | resource_bridges, |
Ryo Hashimoto | 0b788de | 2019-12-10 17:14:13 +0900 | [diff] [blame] | 1547 | // Use the unnamed socket for GPU display screens. |
| 1548 | cfg.wayland_socket_paths.get(""), |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 1549 | cfg.x_display.clone(), |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1550 | event_devices, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 1551 | map_request, |
Zach Reizner | 0f2cfb0 | 2019-06-19 17:46:03 -0700 | [diff] [blame] | 1552 | )?); |
Zach Reizner | 3a8100a | 2017-09-13 19:15:43 -0700 | [diff] [blame] | 1553 | } |
| 1554 | } |
| 1555 | |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1556 | #[cfg(feature = "video-decoder")] |
| 1557 | { |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1558 | if let Some((video_dec_tube, video_dec_backend)) = video_dec_cfg { |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1559 | register_video_device( |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1560 | video_dec_backend, |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1561 | &mut devs, |
| 1562 | video_dec_tube, |
| 1563 | cfg, |
| 1564 | devices::virtio::VideoDeviceType::Decoder, |
| 1565 | )?; |
| 1566 | } |
| 1567 | } |
| 1568 | |
| 1569 | #[cfg(feature = "video-encoder")] |
| 1570 | { |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1571 | if let Some((video_enc_tube, video_enc_backend)) = video_enc_cfg { |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1572 | register_video_device( |
Alexandre Courbot | b42b3e5 | 2021-07-09 23:38:57 +0900 | [diff] [blame] | 1573 | video_enc_backend, |
Daniel Verkamp | ffb5912 | 2021-03-18 14:06:15 -0700 | [diff] [blame] | 1574 | &mut devs, |
| 1575 | video_enc_tube, |
| 1576 | cfg, |
| 1577 | devices::virtio::VideoDeviceType::Encoder, |
| 1578 | )?; |
| 1579 | } |
| 1580 | } |
| 1581 | |
Zach Reizner | aa57566 | 2018-08-15 10:46:32 -0700 | [diff] [blame] | 1582 | if let Some(cid) = cfg.cid { |
Chirantan Ekbote | 3e8d52b | 2021-09-10 18:27:16 +0900 | [diff] [blame] | 1583 | devs.push(create_vhost_vsock_device(cfg, cid)?); |
Zach Reizner | aa57566 | 2018-08-15 10:46:32 -0700 | [diff] [blame] | 1584 | } |
| 1585 | |
Woody Chow | 5890b70 | 2021-02-12 14:57:02 +0900 | [diff] [blame] | 1586 | for vhost_user_fs in &cfg.vhost_user_fs { |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1587 | devs.push(create_vhost_user_fs_device(cfg, vhost_user_fs)?); |
Woody Chow | 5890b70 | 2021-02-12 14:57:02 +0900 | [diff] [blame] | 1588 | } |
| 1589 | |
Woody Chow | 1b16db1 | 2021-04-02 16:59:59 +0900 | [diff] [blame] | 1590 | #[cfg(feature = "audio")] |
| 1591 | for vhost_user_snd in &cfg.vhost_user_snd { |
| 1592 | devs.push(create_vhost_user_snd_device(cfg, vhost_user_snd)?); |
| 1593 | } |
| 1594 | |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1595 | for shared_dir in &cfg.shared_dirs { |
| 1596 | let SharedDir { |
| 1597 | src, |
| 1598 | tag, |
| 1599 | kind, |
| 1600 | uid_map, |
| 1601 | gid_map, |
Chirantan Ekbote | 75ba875 | 2020-10-27 18:33:02 +0900 | [diff] [blame] | 1602 | fs_cfg, |
| 1603 | p9_cfg, |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1604 | } = shared_dir; |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1605 | |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1606 | let dev = match kind { |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 1607 | SharedDirKind::FS => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1608 | let device_tube = fs_device_tubes.remove(0); |
| 1609 | create_fs_device(cfg, uid_map, gid_map, src, tag, fs_cfg.clone(), device_tube)? |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 1610 | } |
Chirantan Ekbote | 75ba875 | 2020-10-27 18:33:02 +0900 | [diff] [blame] | 1611 | SharedDirKind::P9 => create_9p_device(cfg, uid_map, gid_map, src, tag, p9_cfg.clone())?, |
Chirantan Ekbote | bd4723b | 2019-07-17 10:50:30 +0900 | [diff] [blame] | 1612 | }; |
| 1613 | devs.push(dev); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1614 | } |
| 1615 | |
JaeMan Park | eb9cc53 | 2021-07-02 15:02:59 +0900 | [diff] [blame] | 1616 | if let Some(vhost_user_mac80211_hwsim) = &cfg.vhost_user_mac80211_hwsim { |
| 1617 | devs.push(create_vhost_user_mac80211_hwsim_device( |
| 1618 | cfg, |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1619 | vhost_user_mac80211_hwsim, |
JaeMan Park | eb9cc53 | 2021-07-02 15:02:59 +0900 | [diff] [blame] | 1620 | )?); |
| 1621 | } |
| 1622 | |
Jorge E. Moreira | d4562d0 | 2021-06-28 16:21:12 -0700 | [diff] [blame] | 1623 | #[cfg(feature = "audio")] |
| 1624 | if let Some(path) = &cfg.sound { |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1625 | devs.push(create_sound_device(path, cfg)?); |
Jorge E. Moreira | d4562d0 | 2021-06-28 16:21:12 -0700 | [diff] [blame] | 1626 | } |
| 1627 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1628 | Ok(devs) |
| 1629 | } |
| 1630 | |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1631 | fn create_vfio_device( |
| 1632 | cfg: &Config, |
| 1633 | vm: &impl Vm, |
| 1634 | resources: &mut SystemAllocator, |
| 1635 | control_tubes: &mut Vec<TaggedControlTube>, |
| 1636 | vfio_path: &Path, |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 1637 | bus_num: Option<u8>, |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1638 | endpoints: &mut BTreeMap<u32, Arc<Mutex<VfioContainer>>>, |
| 1639 | iommu_enabled: bool, |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1640 | ) -> DeviceResult<(Box<VfioPciDevice>, Option<Minijail>)> { |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1641 | let vfio_container = VfioCommonSetup::vfio_get_container(vfio_path, iommu_enabled) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1642 | .context("failed to get vfio container")?; |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1643 | |
| 1644 | // create MSI, MSI-X, and Mem request sockets for each vfio device |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1645 | let (vfio_host_tube_msi, vfio_device_tube_msi) = |
| 1646 | Tube::pair().context("failed to create tube")?; |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1647 | control_tubes.push(TaggedControlTube::VmIrq(vfio_host_tube_msi)); |
| 1648 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1649 | let (vfio_host_tube_msix, vfio_device_tube_msix) = |
| 1650 | Tube::pair().context("failed to create tube")?; |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1651 | control_tubes.push(TaggedControlTube::VmIrq(vfio_host_tube_msix)); |
| 1652 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1653 | let (vfio_host_tube_mem, vfio_device_tube_mem) = |
| 1654 | Tube::pair().context("failed to create tube")?; |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1655 | control_tubes.push(TaggedControlTube::VmMemory(vfio_host_tube_mem)); |
| 1656 | |
Keiichi Watanabe | 7b80554 | 2021-09-03 02:13:51 +0900 | [diff] [blame] | 1657 | let vfio_device = |
| 1658 | VfioDevice::new_passthrough(&vfio_path, vm, vfio_container.clone(), iommu_enabled) |
| 1659 | .context("failed to create vfio device")?; |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1660 | let mut vfio_pci_device = Box::new(VfioPciDevice::new( |
| 1661 | vfio_device, |
Xiong Zhang | e19ab75 | 2021-05-20 18:18:46 +0800 | [diff] [blame] | 1662 | bus_num, |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1663 | vfio_device_tube_msi, |
| 1664 | vfio_device_tube_msix, |
| 1665 | vfio_device_tube_mem, |
| 1666 | )); |
| 1667 | // early reservation for pass-through PCI devices. |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1668 | let endpoint_addr = vfio_pci_device.allocate_address(resources); |
| 1669 | if endpoint_addr.is_err() { |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1670 | warn!( |
| 1671 | "address reservation failed for vfio {}", |
| 1672 | vfio_pci_device.debug_label() |
| 1673 | ); |
| 1674 | } |
| 1675 | |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1676 | if iommu_enabled { |
| 1677 | endpoints.insert(endpoint_addr.unwrap().to_u32(), vfio_container); |
| 1678 | } |
| 1679 | |
Xiong Zhang | 10f1505 | 2021-04-08 17:23:33 +0800 | [diff] [blame] | 1680 | Ok((vfio_pci_device, simple_jail(cfg, "vfio_device")?)) |
| 1681 | } |
| 1682 | |
Tomasz Nowicki | 344eb14 | 2021-09-22 05:51:58 +0000 | [diff] [blame] | 1683 | fn create_vfio_platform_device( |
| 1684 | cfg: &Config, |
| 1685 | vm: &impl Vm, |
| 1686 | _resources: &mut SystemAllocator, |
| 1687 | control_tubes: &mut Vec<TaggedControlTube>, |
| 1688 | vfio_path: &Path, |
| 1689 | _endpoints: &mut BTreeMap<u32, Arc<Mutex<VfioContainer>>>, |
| 1690 | iommu_enabled: bool, |
| 1691 | ) -> DeviceResult<(VfioPlatformDevice, Option<Minijail>)> { |
| 1692 | let vfio_container = VfioCommonSetup::vfio_get_container(vfio_path, iommu_enabled) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1693 | .context("Failed to create vfio device")?; |
Tomasz Nowicki | 344eb14 | 2021-09-22 05:51:58 +0000 | [diff] [blame] | 1694 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1695 | let (vfio_host_tube_mem, vfio_device_tube_mem) = |
| 1696 | Tube::pair().context("failed to create tube")?; |
Tomasz Nowicki | 344eb14 | 2021-09-22 05:51:58 +0000 | [diff] [blame] | 1697 | control_tubes.push(TaggedControlTube::VmMemory(vfio_host_tube_mem)); |
| 1698 | |
Keiichi Watanabe | 7b80554 | 2021-09-03 02:13:51 +0900 | [diff] [blame] | 1699 | let vfio_device = VfioDevice::new_passthrough(&vfio_path, vm, vfio_container, iommu_enabled) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1700 | .context("Failed to create vfio device")?; |
Tomasz Nowicki | 344eb14 | 2021-09-22 05:51:58 +0000 | [diff] [blame] | 1701 | let vfio_plat_dev = VfioPlatformDevice::new(vfio_device, vfio_device_tube_mem); |
| 1702 | |
| 1703 | Ok((vfio_plat_dev, simple_jail(cfg, "vfio_platform_device")?)) |
| 1704 | } |
| 1705 | |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1706 | fn create_devices( |
Trent Begin | 17ccaad | 2019-04-17 13:51:25 -0600 | [diff] [blame] | 1707 | cfg: &Config, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1708 | vm: &mut impl Vm, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1709 | resources: &mut SystemAllocator, |
Michael Hoyle | 685316f | 2020-09-16 15:29:20 -0700 | [diff] [blame] | 1710 | exit_evt: &Event, |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 1711 | phys_max_addr: u64, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1712 | control_tubes: &mut Vec<TaggedControlTube>, |
| 1713 | wayland_device_tube: Tube, |
| 1714 | gpu_device_tube: Tube, |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 1715 | vhost_user_gpu_tubes: Vec<(Tube, Tube)>, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1716 | balloon_device_tube: Tube, |
| 1717 | disk_device_tubes: &mut Vec<Tube>, |
| 1718 | pmem_device_tubes: &mut Vec<Tube>, |
| 1719 | fs_device_tubes: &mut Vec<Tube>, |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 1720 | #[cfg(feature = "usb")] usb_provider: HostBackendDeviceProvider, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 1721 | map_request: Arc<Mutex<Option<ExternalMapping>>>, |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1722 | ) -> DeviceResult<Vec<(Box<dyn BusDeviceObj>, Option<Minijail>)>> { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1723 | let stubs = create_virtio_devices( |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1724 | cfg, |
Jakub Staron | a3411ea | 2019-04-24 10:55:25 -0700 | [diff] [blame] | 1725 | vm, |
| 1726 | resources, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1727 | exit_evt, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1728 | wayland_device_tube, |
| 1729 | gpu_device_tube, |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 1730 | vhost_user_gpu_tubes, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1731 | balloon_device_tube, |
| 1732 | disk_device_tubes, |
| 1733 | pmem_device_tubes, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 1734 | map_request, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1735 | fs_device_tubes, |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1736 | )?; |
| 1737 | |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1738 | let mut devices = Vec::new(); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1739 | |
| 1740 | for stub in stubs { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1741 | let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 1742 | control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube)); |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 1743 | let dev = VirtioPciDevice::new(vm.get_memory().clone(), stub.dev, msi_device_tube) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1744 | .context("failed to create virtio pci dev")?; |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1745 | let dev = Box::new(dev) as Box<dyn BusDeviceObj>; |
| 1746 | devices.push((dev, stub.jail)); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1747 | } |
| 1748 | |
Andrew Scull | 1590e6f | 2020-03-18 18:00:47 +0000 | [diff] [blame] | 1749 | #[cfg(feature = "audio")] |
Judy Hsiao | d5c1e96 | 2020-02-04 12:30:01 +0800 | [diff] [blame] | 1750 | for ac97_param in &cfg.ac97_parameters { |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 1751 | let dev = Ac97Dev::try_new(vm.get_memory().clone(), ac97_param.clone()) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1752 | .context("failed to create ac97 device")?; |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 1753 | let jail = simple_jail(cfg, dev.minijail_policy())?; |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1754 | devices.push((Box::new(dev), jail)); |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1755 | } |
Andrew Scull | 1590e6f | 2020-03-18 18:00:47 +0000 | [diff] [blame] | 1756 | |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 1757 | #[cfg(feature = "usb")] |
| 1758 | { |
| 1759 | // Create xhci controller. |
| 1760 | let usb_controller = Box::new(XhciController::new(vm.get_memory().clone(), usb_provider)); |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1761 | devices.push((usb_controller, simple_jail(cfg, "xhci")?)); |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 1762 | } |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1763 | |
Zide Chen | 5deee48 | 2021-04-19 11:06:01 -0700 | [diff] [blame] | 1764 | if !cfg.vfio.is_empty() { |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1765 | let mut iommu_attached_endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>> = |
| 1766 | BTreeMap::new(); |
| 1767 | |
Tomasz Nowicki | 71aca79 | 2021-06-09 18:53:49 +0000 | [diff] [blame] | 1768 | for vfio_dev in cfg |
| 1769 | .vfio |
| 1770 | .iter() |
| 1771 | .filter(|dev| dev.get_type() == VfioType::Pci) |
| 1772 | { |
| 1773 | let vfio_path = &vfio_dev.vfio_path; |
Zide Chen | 5deee48 | 2021-04-19 11:06:01 -0700 | [diff] [blame] | 1774 | let (vfio_pci_device, jail) = create_vfio_device( |
| 1775 | cfg, |
| 1776 | vm, |
| 1777 | resources, |
| 1778 | control_tubes, |
| 1779 | vfio_path.as_path(), |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 1780 | None, |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1781 | &mut iommu_attached_endpoints, |
Tomasz Nowicki | 71aca79 | 2021-06-09 18:53:49 +0000 | [diff] [blame] | 1782 | vfio_dev.iommu_enabled(), |
Zide Chen | 5deee48 | 2021-04-19 11:06:01 -0700 | [diff] [blame] | 1783 | )?; |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1784 | |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1785 | devices.push((vfio_pci_device, jail)); |
Zide Chen | 5deee48 | 2021-04-19 11:06:01 -0700 | [diff] [blame] | 1786 | } |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1787 | |
Tomasz Nowicki | 344eb14 | 2021-09-22 05:51:58 +0000 | [diff] [blame] | 1788 | for vfio_dev in cfg |
| 1789 | .vfio |
| 1790 | .iter() |
| 1791 | .filter(|dev| dev.get_type() == VfioType::Platform) |
| 1792 | { |
| 1793 | let vfio_path = &vfio_dev.vfio_path; |
| 1794 | let (vfio_plat_dev, jail) = create_vfio_platform_device( |
| 1795 | cfg, |
| 1796 | vm, |
| 1797 | resources, |
| 1798 | control_tubes, |
| 1799 | vfio_path.as_path(), |
| 1800 | &mut iommu_attached_endpoints, |
| 1801 | false, // Virtio IOMMU is not supported yet |
| 1802 | )?; |
| 1803 | |
| 1804 | devices.push((Box::new(vfio_plat_dev), jail)); |
| 1805 | } |
| 1806 | |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1807 | if !iommu_attached_endpoints.is_empty() { |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 1808 | let iommu_dev = create_iommu_device(cfg, phys_max_addr, iommu_attached_endpoints)?; |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1809 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1810 | let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?; |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1811 | control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube)); |
Peter Fang | ad3b24e | 2021-06-21 00:43:29 -0700 | [diff] [blame] | 1812 | let mut dev = |
| 1813 | VirtioPciDevice::new(vm.get_memory().clone(), iommu_dev.dev, msi_device_tube) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1814 | .context("failed to create virtio pci dev")?; |
Peter Fang | ad3b24e | 2021-06-21 00:43:29 -0700 | [diff] [blame] | 1815 | // early reservation for viommu. |
| 1816 | dev.allocate_address(resources) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1817 | .context("failed to allocate resources early for virtio pci dev")?; |
Peter Fang | ad3b24e | 2021-06-21 00:43:29 -0700 | [diff] [blame] | 1818 | let dev = Box::new(dev); |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1819 | devices.push((dev, iommu_dev.jail)); |
Zide Chen | dfc4b88 | 2021-03-10 16:35:37 -0800 | [diff] [blame] | 1820 | } |
Xiong Zhang | 17b0daf | 2019-04-23 17:14:50 +0800 | [diff] [blame] | 1821 | } |
| 1822 | |
Mattias Nissler | de2c640 | 2021-10-21 12:05:29 +0000 | [diff] [blame] | 1823 | for params in &cfg.stub_pci_devices { |
| 1824 | // Stub devices don't need jailing since they don't do anything. |
| 1825 | devices.push((Box::new(StubPciDevice::new(params)), None)); |
| 1826 | } |
| 1827 | |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 1828 | Ok(devices) |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1829 | } |
| 1830 | |
| 1831 | #[derive(Copy, Clone)] |
Chirantan Ekbote | 1a2683b | 2019-11-26 16:28:23 +0900 | [diff] [blame] | 1832 | #[cfg_attr(not(feature = "tpm"), allow(dead_code))] |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 1833 | struct Ids { |
| 1834 | uid: uid_t, |
| 1835 | gid: gid_t, |
| 1836 | } |
| 1837 | |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1838 | // Set the uid/gid for the jailed process and give a basic id map. This is |
| 1839 | // required for bind mounts to work. |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 1840 | fn add_current_user_to_jail(jail: &mut Minijail) -> Result<Ids> { |
| 1841 | let crosvm_uid = geteuid(); |
| 1842 | let crosvm_gid = getegid(); |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1843 | |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1844 | jail.uidmap(&format!("{0} {0} 1", crosvm_uid)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1845 | .context("error setting UID map")?; |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1846 | jail.gidmap(&format!("{0} {0} 1", crosvm_gid)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1847 | .context("error setting GID map")?; |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1848 | |
Chirantan Ekbote | e1663ee | 2021-09-03 18:31:25 +0900 | [diff] [blame] | 1849 | if crosvm_uid != 0 { |
| 1850 | jail.change_uid(crosvm_uid); |
| 1851 | } |
| 1852 | if crosvm_gid != 0 { |
| 1853 | jail.change_gid(crosvm_gid); |
| 1854 | } |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 1855 | |
David Tolnay | 41a6f84 | 2019-03-01 16:18:44 -0800 | [diff] [blame] | 1856 | Ok(Ids { |
| 1857 | uid: crosvm_uid, |
| 1858 | gid: crosvm_gid, |
| 1859 | }) |
David Tolnay | 48c4829 | 2019-03-01 16:54:25 -0800 | [diff] [blame] | 1860 | } |
| 1861 | |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1862 | trait IntoUnixStream { |
| 1863 | fn into_unix_stream(self) -> Result<UnixStream>; |
| 1864 | } |
| 1865 | |
| 1866 | impl<'a> IntoUnixStream for &'a Path { |
| 1867 | fn into_unix_stream(self) -> Result<UnixStream> { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1868 | if let Some(fd) = safe_descriptor_from_path(self).context("failed to open event device")? { |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 1869 | Ok(fd.into()) |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1870 | } else { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1871 | UnixStream::connect(self).context("failed to open event device") |
Zach Reizner | 65b98f1 | 2019-11-22 17:34:58 -0800 | [diff] [blame] | 1872 | } |
| 1873 | } |
| 1874 | } |
| 1875 | impl<'a> IntoUnixStream for &'a PathBuf { |
| 1876 | fn into_unix_stream(self) -> Result<UnixStream> { |
| 1877 | self.as_path().into_unix_stream() |
| 1878 | } |
| 1879 | } |
| 1880 | |
| 1881 | impl IntoUnixStream for UnixStream { |
| 1882 | fn into_unix_stream(self) -> Result<UnixStream> { |
| 1883 | Ok(self) |
Jorge E. Moreira | dffec50 | 2019-01-14 18:44:49 -0800 | [diff] [blame] | 1884 | } |
| 1885 | } |
| 1886 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1887 | fn setup_vcpu_signal_handler<T: Vcpu>(use_hypervisor_signals: bool) -> Result<()> { |
| 1888 | if use_hypervisor_signals { |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1889 | unsafe { |
Allen Webb | 44c728c | 2021-03-23 15:22:41 -0500 | [diff] [blame] | 1890 | extern "C" fn handle_signal(_: c_int) {} |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1891 | // Our signal handler does nothing and is trivially async signal safe. |
| 1892 | register_rt_signal_handler(SIGRTMIN() + 0, handle_signal) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1893 | .context("error registering signal handler")?; |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1894 | } |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1895 | block_signal(SIGRTMIN() + 0).context("failed to block signal")?; |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1896 | } else { |
| 1897 | unsafe { |
Allen Webb | 44c728c | 2021-03-23 15:22:41 -0500 | [diff] [blame] | 1898 | extern "C" fn handle_signal<T: Vcpu>(_: c_int) { |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1899 | T::set_local_immediate_exit(true); |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1900 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1901 | register_rt_signal_handler(SIGRTMIN() + 0, handle_signal::<T>) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1902 | .context("error registering signal handler")?; |
Matt Delco | 84cf9c0 | 2019-10-07 22:38:13 -0700 | [diff] [blame] | 1903 | } |
Mark Ryan | 6ed5aea | 2018-04-20 13:52:35 +0100 | [diff] [blame] | 1904 | } |
Mark Ryan | 6ed5aea | 2018-04-20 13:52:35 +0100 | [diff] [blame] | 1905 | Ok(()) |
| 1906 | } |
| 1907 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1908 | // Sets up a vcpu and converts it into a runnable vcpu. |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 1909 | fn runnable_vcpu<V>( |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1910 | cpu_id: usize, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 1911 | kvm_vcpu_id: usize, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1912 | vcpu: Option<V>, |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 1913 | vm: impl VmArch, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 1914 | irq_chip: &mut dyn IrqChipArch, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1915 | vcpu_count: usize, |
Kansho Nishida | ab205af | 2020-08-13 18:17:50 +0900 | [diff] [blame] | 1916 | run_rt: bool, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1917 | vcpu_affinity: Vec<usize>, |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 1918 | no_smt: bool, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1919 | has_bios: bool, |
| 1920 | use_hypervisor_signals: bool, |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 1921 | enable_per_vm_core_scheduling: bool, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 1922 | host_cpu_topology: bool, |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 1923 | ) -> Result<(V, VcpuRunHandle)> |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1924 | where |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 1925 | V: VcpuArch, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1926 | { |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 1927 | let mut vcpu = match vcpu { |
| 1928 | Some(v) => v, |
| 1929 | None => { |
| 1930 | // If vcpu is None, it means this arch/hypervisor requires create_vcpu to be called from |
| 1931 | // the vcpu thread. |
| 1932 | match vm |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 1933 | .create_vcpu(kvm_vcpu_id) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1934 | .context("failed to create vcpu")? |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 1935 | .downcast::<V>() |
| 1936 | { |
| 1937 | Ok(v) => *v, |
| 1938 | Err(_) => panic!("VM created wrong type of VCPU"), |
| 1939 | } |
| 1940 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1941 | }; |
Dylan Reid | bb30b2f | 2019-10-22 18:30:36 +0300 | [diff] [blame] | 1942 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1943 | irq_chip |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 1944 | .add_vcpu(cpu_id, &vcpu) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1945 | .context("failed to add vcpu to irq chip")?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1946 | |
Daniel Verkamp | caf9ced | 2020-09-29 15:35:02 -0700 | [diff] [blame] | 1947 | if !vcpu_affinity.is_empty() { |
| 1948 | if let Err(e) = set_cpu_affinity(vcpu_affinity) { |
| 1949 | error!("Failed to set CPU affinity: {}", e); |
| 1950 | } |
| 1951 | } |
| 1952 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1953 | Arch::configure_vcpu( |
| 1954 | vm.get_memory(), |
| 1955 | vm.get_hypervisor(), |
| 1956 | irq_chip, |
| 1957 | &mut vcpu, |
| 1958 | cpu_id, |
| 1959 | vcpu_count, |
| 1960 | has_bios, |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 1961 | no_smt, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 1962 | host_cpu_topology, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1963 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1964 | .context("failed to configure vcpu")?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1965 | |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 1966 | if !enable_per_vm_core_scheduling { |
| 1967 | // Do per-vCPU core scheduling by setting a unique cookie to each vCPU. |
| 1968 | if let Err(e) = enable_core_scheduling() { |
| 1969 | error!("Failed to enable core scheduling: {}", e); |
| 1970 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1971 | } |
| 1972 | |
Kansho Nishida | ab205af | 2020-08-13 18:17:50 +0900 | [diff] [blame] | 1973 | if run_rt { |
| 1974 | const DEFAULT_VCPU_RT_LEVEL: u16 = 6; |
| 1975 | if let Err(e) = set_rt_prio_limit(u64::from(DEFAULT_VCPU_RT_LEVEL)) |
| 1976 | .and_then(|_| set_rt_round_robin(i32::from(DEFAULT_VCPU_RT_LEVEL))) |
| 1977 | { |
| 1978 | warn!("Failed to set vcpu to real time: {}", e); |
| 1979 | } |
| 1980 | } |
| 1981 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1982 | if use_hypervisor_signals { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1983 | let mut v = get_blocked_signals().context("failed to retrieve signal mask for vcpu")?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1984 | v.retain(|&x| x != SIGRTMIN() + 0); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1985 | vcpu.set_signal_mask(&v) |
| 1986 | .context("failed to set the signal mask for vcpu")?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 1987 | } |
| 1988 | |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 1989 | let vcpu_run_handle = vcpu |
| 1990 | .take_run_handle(Some(SIGRTMIN() + 0)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 1991 | .context("failed to set thread id for vcpu")?; |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 1992 | |
| 1993 | Ok((vcpu, vcpu_run_handle)) |
Dylan Reid | bb30b2f | 2019-10-22 18:30:36 +0300 | [diff] [blame] | 1994 | } |
| 1995 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 1996 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 1997 | fn handle_debug_msg<V>( |
| 1998 | cpu_id: usize, |
| 1999 | vcpu: &V, |
| 2000 | guest_mem: &GuestMemory, |
| 2001 | d: VcpuDebug, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2002 | reply_tube: &mpsc::Sender<VcpuDebugStatusMessage>, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2003 | ) -> Result<()> |
| 2004 | where |
| 2005 | V: VcpuArch + 'static, |
| 2006 | { |
| 2007 | match d { |
| 2008 | VcpuDebug::ReadRegs => { |
| 2009 | let msg = VcpuDebugStatusMessage { |
| 2010 | cpu: cpu_id as usize, |
| 2011 | msg: VcpuDebugStatus::RegValues( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2012 | Arch::debug_read_registers(vcpu as &V) |
| 2013 | .context("failed to handle a gdb ReadRegs command")?, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2014 | ), |
| 2015 | }; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2016 | reply_tube |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2017 | .send(msg) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2018 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2019 | } |
| 2020 | VcpuDebug::WriteRegs(regs) => { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2021 | Arch::debug_write_registers(vcpu as &V, ®s) |
| 2022 | .context("failed to handle a gdb WriteRegs command")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2023 | reply_tube |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2024 | .send(VcpuDebugStatusMessage { |
| 2025 | cpu: cpu_id as usize, |
| 2026 | msg: VcpuDebugStatus::CommandComplete, |
| 2027 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2028 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2029 | } |
| 2030 | VcpuDebug::ReadMem(vaddr, len) => { |
| 2031 | let msg = VcpuDebugStatusMessage { |
| 2032 | cpu: cpu_id as usize, |
| 2033 | msg: VcpuDebugStatus::MemoryRegion( |
| 2034 | Arch::debug_read_memory(vcpu as &V, guest_mem, vaddr, len) |
| 2035 | .unwrap_or(Vec::new()), |
| 2036 | ), |
| 2037 | }; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2038 | reply_tube |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2039 | .send(msg) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2040 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2041 | } |
| 2042 | VcpuDebug::WriteMem(vaddr, buf) => { |
| 2043 | Arch::debug_write_memory(vcpu as &V, guest_mem, vaddr, &buf) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2044 | .context("failed to handle a gdb WriteMem command")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2045 | reply_tube |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2046 | .send(VcpuDebugStatusMessage { |
| 2047 | cpu: cpu_id as usize, |
| 2048 | msg: VcpuDebugStatus::CommandComplete, |
| 2049 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2050 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2051 | } |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2052 | VcpuDebug::EnableSinglestep => { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2053 | Arch::debug_enable_singlestep(vcpu as &V) |
| 2054 | .context("failed to handle a gdb EnableSingleStep command")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2055 | reply_tube |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2056 | .send(VcpuDebugStatusMessage { |
| 2057 | cpu: cpu_id as usize, |
| 2058 | msg: VcpuDebugStatus::CommandComplete, |
| 2059 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2060 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2061 | } |
| 2062 | VcpuDebug::SetHwBreakPoint(addrs) => { |
| 2063 | Arch::debug_set_hw_breakpoints(vcpu as &V, &addrs) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2064 | .context("failed to handle a gdb SetHwBreakPoint command")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2065 | reply_tube |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2066 | .send(VcpuDebugStatusMessage { |
| 2067 | cpu: cpu_id as usize, |
| 2068 | msg: VcpuDebugStatus::CommandComplete, |
| 2069 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2070 | .context("failed to send a debug status to GDB thread") |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2071 | } |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2072 | } |
| 2073 | } |
| 2074 | |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 2075 | fn run_vcpu<V>( |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2076 | cpu_id: usize, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2077 | kvm_vcpu_id: usize, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2078 | vcpu: Option<V>, |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 2079 | vm: impl VmArch + 'static, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2080 | mut irq_chip: Box<dyn IrqChipArch + 'static>, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2081 | vcpu_count: usize, |
Kansho Nishida | ab205af | 2020-08-13 18:17:50 +0900 | [diff] [blame] | 2082 | run_rt: bool, |
Daniel Verkamp | 107edb3 | 2019-04-05 09:58:48 -0700 | [diff] [blame] | 2083 | vcpu_affinity: Vec<usize>, |
Suleiman Souhlal | 63630e8 | 2021-02-18 11:53:11 +0900 | [diff] [blame] | 2084 | delay_rt: bool, |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 2085 | no_smt: bool, |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 2086 | start_barrier: Arc<Barrier>, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2087 | has_bios: bool, |
Colin Downs-Razouk | 11bed5e | 2021-11-02 09:33:14 -0700 | [diff] [blame] | 2088 | mut io_bus: devices::Bus, |
| 2089 | mut mmio_bus: devices::Bus, |
Michael Hoyle | 685316f | 2020-09-16 15:29:20 -0700 | [diff] [blame] | 2090 | exit_evt: Event, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2091 | requires_pvclock_ctrl: bool, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2092 | from_main_tube: mpsc::Receiver<VcpuControl>, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2093 | use_hypervisor_signals: bool, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2094 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] to_gdb_tube: Option< |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2095 | mpsc::Sender<VcpuDebugStatusMessage>, |
| 2096 | >, |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 2097 | enable_per_vm_core_scheduling: bool, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2098 | host_cpu_topology: bool, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2099 | ) -> Result<JoinHandle<()>> |
| 2100 | where |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 2101 | V: VcpuArch + 'static, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2102 | { |
Zach Reizner | 8fb5211 | 2017-12-13 16:04:39 -0800 | [diff] [blame] | 2103 | thread::Builder::new() |
| 2104 | .name(format!("crosvm_vcpu{}", cpu_id)) |
| 2105 | .spawn(move || { |
Zach Reizner | 9588531 | 2020-01-29 18:06:01 -0800 | [diff] [blame] | 2106 | // The VCPU thread must trigger the `exit_evt` in all paths, and a `ScopedEvent`'s Drop |
| 2107 | // implementation accomplishes that. |
| 2108 | let _scoped_exit_evt = ScopedEvent::from(exit_evt); |
| 2109 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2110 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 2111 | let guest_mem = vm.get_memory().clone(); |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 2112 | let runnable_vcpu = runnable_vcpu( |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2113 | cpu_id, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2114 | kvm_vcpu_id, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2115 | vcpu, |
| 2116 | vm, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2117 | irq_chip.as_mut(), |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2118 | vcpu_count, |
Suleiman Souhlal | 63630e8 | 2021-02-18 11:53:11 +0900 | [diff] [blame] | 2119 | run_rt && !delay_rt, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2120 | vcpu_affinity, |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 2121 | no_smt, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2122 | has_bios, |
| 2123 | use_hypervisor_signals, |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 2124 | enable_per_vm_core_scheduling, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2125 | host_cpu_topology, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2126 | ); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2127 | |
Zach Reizner | 8fb5211 | 2017-12-13 16:04:39 -0800 | [diff] [blame] | 2128 | start_barrier.wait(); |
Mark Ryan | 6ed5aea | 2018-04-20 13:52:35 +0100 | [diff] [blame] | 2129 | |
Zach Reizner | 2c770e6 | 2020-09-30 16:49:59 -0700 | [diff] [blame] | 2130 | let (vcpu, vcpu_run_handle) = match runnable_vcpu { |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2131 | Ok(v) => v, |
| 2132 | Err(e) => { |
Maciek Swiech | c301122 | 2021-11-24 21:01:04 +0000 | [diff] [blame] | 2133 | error!("failed to start vcpu {}: {:#}", cpu_id, e); |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2134 | return; |
| 2135 | } |
| 2136 | }; |
Mark Ryan | 6ed5aea | 2018-04-20 13:52:35 +0100 | [diff] [blame] | 2137 | |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2138 | let mut run_mode = VmRunMode::Running; |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2139 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2140 | if to_gdb_tube.is_some() { |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2141 | // Wait until a GDB client attaches |
| 2142 | run_mode = VmRunMode::Breakpoint; |
| 2143 | } |
| 2144 | |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2145 | let mut interrupted_by_signal = false; |
| 2146 | |
Colin Downs-Razouk | 11bed5e | 2021-11-02 09:33:14 -0700 | [diff] [blame] | 2147 | mmio_bus.set_access_id(cpu_id); |
| 2148 | io_bus.set_access_id(cpu_id); |
| 2149 | |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2150 | 'vcpu_loop: loop { |
| 2151 | // Start by checking for messages to process and the run state of the CPU. |
| 2152 | // An extra check here for Running so there isn't a need to call recv unless a |
| 2153 | // message is likely to be ready because a signal was sent. |
| 2154 | if interrupted_by_signal || run_mode != VmRunMode::Running { |
| 2155 | 'state_loop: loop { |
| 2156 | // Tries to get a pending message without blocking first. |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2157 | let msg = match from_main_tube.try_recv() { |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2158 | Ok(m) => m, |
| 2159 | Err(mpsc::TryRecvError::Empty) if run_mode == VmRunMode::Running => { |
| 2160 | // If the VM is running and no message is pending, the state won't |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2161 | // change. |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2162 | break 'state_loop; |
| 2163 | } |
| 2164 | Err(mpsc::TryRecvError::Empty) => { |
| 2165 | // If the VM is not running, wait until a message is ready. |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2166 | match from_main_tube.recv() { |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2167 | Ok(m) => m, |
| 2168 | Err(mpsc::RecvError) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2169 | error!("Failed to read from main tube in vcpu"); |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2170 | break 'vcpu_loop; |
| 2171 | } |
| 2172 | } |
| 2173 | } |
| 2174 | Err(mpsc::TryRecvError::Disconnected) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2175 | error!("Failed to read from main tube in vcpu"); |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2176 | break 'vcpu_loop; |
| 2177 | } |
| 2178 | }; |
| 2179 | |
| 2180 | // Collect all pending messages. |
| 2181 | let mut messages = vec![msg]; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2182 | messages.append(&mut from_main_tube.try_iter().collect()); |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2183 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2184 | for msg in messages { |
| 2185 | match msg { |
| 2186 | VcpuControl::RunState(new_mode) => { |
| 2187 | run_mode = new_mode; |
| 2188 | match run_mode { |
| 2189 | VmRunMode::Running => break 'state_loop, |
| 2190 | VmRunMode::Suspending => { |
| 2191 | // On KVM implementations that use a paravirtualized |
| 2192 | // clock (e.g. x86), a flag must be set to indicate to |
| 2193 | // the guest kernel that a vCPU was suspended. The guest |
| 2194 | // kernel will use this flag to prevent the soft lockup |
| 2195 | // detection from triggering when this vCPU resumes, |
| 2196 | // which could happen days later in realtime. |
| 2197 | if requires_pvclock_ctrl { |
| 2198 | if let Err(e) = vcpu.pvclock_ctrl() { |
| 2199 | error!( |
| 2200 | "failed to tell hypervisor vcpu {} is suspending: {}", |
| 2201 | cpu_id, e |
| 2202 | ); |
| 2203 | } |
| 2204 | } |
| 2205 | } |
| 2206 | VmRunMode::Breakpoint => {} |
| 2207 | VmRunMode::Exiting => break 'vcpu_loop, |
| 2208 | } |
| 2209 | } |
| 2210 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 2211 | VcpuControl::Debug(d) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2212 | match &to_gdb_tube { |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2213 | Some(ref ch) => { |
| 2214 | if let Err(e) = handle_debug_msg( |
Daniel Verkamp | 166d1dd | 2021-08-19 17:05:29 -0700 | [diff] [blame] | 2215 | cpu_id, &vcpu, &guest_mem, d, ch, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2216 | ) { |
| 2217 | error!("Failed to handle gdb message: {}", e); |
| 2218 | } |
| 2219 | }, |
| 2220 | None => { |
| 2221 | error!("VcpuControl::Debug received while GDB feature is disabled: {:?}", d); |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2222 | } |
| 2223 | } |
| 2224 | } |
Suleiman Souhlal | 2ac78b9 | 2021-02-01 12:33:26 +0900 | [diff] [blame] | 2225 | VcpuControl::MakeRT => { |
| 2226 | if run_rt && delay_rt { |
| 2227 | info!("Making vcpu {} RT\n", cpu_id); |
| 2228 | const DEFAULT_VCPU_RT_LEVEL: u16 = 6; |
| 2229 | if let Err(e) = set_rt_prio_limit( |
| 2230 | u64::from(DEFAULT_VCPU_RT_LEVEL)) |
| 2231 | .and_then(|_| |
| 2232 | set_rt_round_robin( |
| 2233 | i32::from(DEFAULT_VCPU_RT_LEVEL) |
| 2234 | )) |
| 2235 | { |
| 2236 | warn!("Failed to set vcpu to real time: {}", e); |
| 2237 | } |
| 2238 | } |
| 2239 | } |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 2240 | } |
| 2241 | } |
| 2242 | } |
| 2243 | } |
| 2244 | |
| 2245 | interrupted_by_signal = false; |
| 2246 | |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2247 | // Vcpus may have run a HLT instruction, which puts them into a state other than |
| 2248 | // VcpuRunState::Runnable. In that case, this call to wait_until_runnable blocks |
| 2249 | // until either the irqchip receives an interrupt for this vcpu, or until the main |
| 2250 | // thread kicks this vcpu as a result of some VmControl operation. In most IrqChip |
| 2251 | // implementations HLT instructions do not make it to crosvm, and thus this is a |
| 2252 | // no-op that always returns VcpuRunState::Runnable. |
| 2253 | match irq_chip.wait_until_runnable(&vcpu) { |
| 2254 | Ok(VcpuRunState::Runnable) => {} |
| 2255 | Ok(VcpuRunState::Interrupted) => interrupted_by_signal = true, |
| 2256 | Err(e) => error!( |
| 2257 | "error waiting for vcpu {} to become runnable: {}", |
| 2258 | cpu_id, e |
| 2259 | ), |
| 2260 | } |
| 2261 | |
| 2262 | if !interrupted_by_signal { |
| 2263 | match vcpu.run(&vcpu_run_handle) { |
| 2264 | Ok(VcpuExit::IoIn { port, mut size }) => { |
| 2265 | let mut data = [0; 8]; |
| 2266 | if size > data.len() { |
Dmitry Torokhov | a041068 | 2021-08-01 10:40:50 -0700 | [diff] [blame] | 2267 | error!("unsupported IoIn size of {} bytes at port {:#x}", size, port); |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2268 | size = data.len(); |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2269 | } |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2270 | io_bus.read(port as u64, &mut data[..size]); |
| 2271 | if let Err(e) = vcpu.set_data(&data[..size]) { |
Dmitry Torokhov | a041068 | 2021-08-01 10:40:50 -0700 | [diff] [blame] | 2272 | error!("failed to set return data for IoIn at port {:#x}: {}", port, e); |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2273 | } |
Keiichi Watanabe | 23f9471 | 2020-10-22 17:43:06 +0900 | [diff] [blame] | 2274 | } |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2275 | Ok(VcpuExit::IoOut { |
| 2276 | port, |
| 2277 | mut size, |
| 2278 | data, |
| 2279 | }) => { |
| 2280 | if size > data.len() { |
Dmitry Torokhov | a041068 | 2021-08-01 10:40:50 -0700 | [diff] [blame] | 2281 | error!("unsupported IoOut size of {} bytes at port {:#x}", size, port); |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2282 | size = data.len(); |
| 2283 | } |
| 2284 | io_bus.write(port as u64, &data[..size]); |
| 2285 | } |
| 2286 | Ok(VcpuExit::MmioRead { address, size }) => { |
| 2287 | let mut data = [0; 8]; |
| 2288 | mmio_bus.read(address, &mut data[..size]); |
| 2289 | // Setting data for mmio can not fail. |
| 2290 | let _ = vcpu.set_data(&data[..size]); |
| 2291 | } |
| 2292 | Ok(VcpuExit::MmioWrite { |
| 2293 | address, |
| 2294 | size, |
| 2295 | data, |
| 2296 | }) => { |
| 2297 | mmio_bus.write(address, &data[..size]); |
| 2298 | } |
| 2299 | Ok(VcpuExit::IoapicEoi { vector }) => { |
| 2300 | if let Err(e) = irq_chip.broadcast_eoi(vector) { |
| 2301 | error!( |
| 2302 | "failed to broadcast eoi {} on vcpu {}: {}", |
| 2303 | vector, cpu_id, e |
| 2304 | ); |
| 2305 | } |
| 2306 | } |
| 2307 | Ok(VcpuExit::IrqWindowOpen) => {} |
Leo Lai | 558460f | 2021-07-23 05:32:27 +0000 | [diff] [blame] | 2308 | Ok(VcpuExit::Hlt) => irq_chip.halted(cpu_id), |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2309 | Ok(VcpuExit::Shutdown) => break, |
| 2310 | Ok(VcpuExit::FailEntry { |
| 2311 | hardware_entry_failure_reason, |
| 2312 | }) => { |
| 2313 | error!("vcpu hw run failure: {:#x}", hardware_entry_failure_reason); |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2314 | break; |
| 2315 | } |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2316 | Ok(VcpuExit::SystemEvent(_, _)) => break, |
| 2317 | Ok(VcpuExit::Debug { .. }) => { |
| 2318 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 2319 | { |
| 2320 | let msg = VcpuDebugStatusMessage { |
| 2321 | cpu: cpu_id as usize, |
| 2322 | msg: VcpuDebugStatus::HitBreakPoint, |
| 2323 | }; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2324 | if let Some(ref ch) = to_gdb_tube { |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2325 | if let Err(e) = ch.send(msg) { |
| 2326 | error!("failed to notify breakpoint to GDB thread: {}", e); |
| 2327 | break; |
| 2328 | } |
| 2329 | } |
| 2330 | run_mode = VmRunMode::Breakpoint; |
| 2331 | } |
| 2332 | } |
| 2333 | Ok(r) => warn!("unexpected vcpu exit: {:?}", r), |
| 2334 | Err(e) => match e.errno() { |
| 2335 | libc::EINTR => interrupted_by_signal = true, |
| 2336 | libc::EAGAIN => {} |
| 2337 | _ => { |
| 2338 | error!("vcpu hit unknown error: {}", e); |
| 2339 | break; |
| 2340 | } |
| 2341 | }, |
| 2342 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2343 | } |
| 2344 | |
| 2345 | if interrupted_by_signal { |
| 2346 | if use_hypervisor_signals { |
| 2347 | // Try to clear the signal that we use to kick VCPU if it is pending before |
| 2348 | // attempting to handle pause requests. |
| 2349 | if let Err(e) = clear_signal(SIGRTMIN() + 0) { |
| 2350 | error!("failed to clear pending signal: {}", e); |
| 2351 | break; |
| 2352 | } |
| 2353 | } else { |
| 2354 | vcpu.set_immediate_exit(false); |
| 2355 | } |
David Tolnay | 8f3a232 | 2018-11-30 17:11:35 -0800 | [diff] [blame] | 2356 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2357 | |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2358 | if let Err(e) = irq_chip.inject_interrupts(&vcpu) { |
| 2359 | error!("failed to inject interrupts for vcpu {}: {}", cpu_id, e); |
| 2360 | } |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2361 | } |
David Tolnay | 2bac1e7 | 2018-12-12 14:33:42 -0800 | [diff] [blame] | 2362 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2363 | .context("failed to spawn VCPU thread") |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2364 | } |
| 2365 | |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2366 | fn setup_vm_components(cfg: &Config) -> Result<VmComponents> { |
David Tolnay | 2b089fc | 2019-03-04 15:33:22 -0800 | [diff] [blame] | 2367 | let initrd_image = if let Some(initrd_path) = &cfg.initrd_path { |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 2368 | Some( |
Junichi Uekawa | 7bea39f | 2021-07-16 14:05:06 +0900 | [diff] [blame] | 2369 | open_file( |
| 2370 | initrd_path, |
| 2371 | true, /*read_only*/ |
| 2372 | false, /*O_DIRECT*/ |
| 2373 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2374 | .with_context(|| format!("failed to open initrd {}", initrd_path.display()))?, |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 2375 | ) |
Daniel Verkamp | e403f5c | 2018-12-11 16:29:26 -0800 | [diff] [blame] | 2376 | } else { |
| 2377 | None |
| 2378 | }; |
| 2379 | |
Cody Schuffelen | 6d1ab50 | 2019-05-21 12:12:38 -0700 | [diff] [blame] | 2380 | let vm_image = match cfg.executable_path { |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 2381 | Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel( |
Junichi Uekawa | 7bea39f | 2021-07-16 14:05:06 +0900 | [diff] [blame] | 2382 | open_file( |
| 2383 | kernel_path, |
| 2384 | true, /*read_only*/ |
| 2385 | false, /*O_DIRECT*/ |
| 2386 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2387 | .with_context(|| format!("failed to open kernel image {}", kernel_path.display()))?, |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 2388 | ), |
| 2389 | Some(Executable::Bios(ref bios_path)) => VmImage::Bios( |
Junichi Uekawa | 7bea39f | 2021-07-16 14:05:06 +0900 | [diff] [blame] | 2390 | open_file(bios_path, true /*read_only*/, false /*O_DIRECT*/) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2391 | .with_context(|| format!("failed to open bios {}", bios_path.display()))?, |
Andrew Walbran | bc55e30 | 2021-07-13 17:35:10 +0100 | [diff] [blame] | 2392 | ), |
Cody Schuffelen | 6d1ab50 | 2019-05-21 12:12:38 -0700 | [diff] [blame] | 2393 | _ => panic!("Did not receive a bios or kernel, should be impossible."), |
| 2394 | }; |
| 2395 | |
Will Deacon | c48e783 | 2021-07-30 19:03:06 +0100 | [diff] [blame] | 2396 | let swiotlb = if let Some(size) = cfg.swiotlb { |
| 2397 | Some( |
| 2398 | size.checked_mul(1024 * 1024) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2399 | .ok_or_else(|| anyhow!("requested swiotlb size too large"))?, |
Will Deacon | c48e783 | 2021-07-30 19:03:06 +0100 | [diff] [blame] | 2400 | ) |
| 2401 | } else { |
| 2402 | match cfg.protected_vm { |
| 2403 | ProtectionType::Protected => Some(64 * 1024 * 1024), |
| 2404 | ProtectionType::Unprotected => None, |
| 2405 | } |
| 2406 | }; |
| 2407 | |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2408 | Ok(VmComponents { |
Daniel Verkamp | 6a84706 | 2019-11-26 13:16:35 -0800 | [diff] [blame] | 2409 | memory_size: cfg |
| 2410 | .memory |
| 2411 | .unwrap_or(256) |
| 2412 | .checked_mul(1024 * 1024) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2413 | .ok_or_else(|| anyhow!("requested memory size too large"))?, |
Will Deacon | c48e783 | 2021-07-30 19:03:06 +0100 | [diff] [blame] | 2414 | swiotlb, |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 2415 | vcpu_count: cfg.vcpu_count.unwrap_or(1), |
Daniel Verkamp | 107edb3 | 2019-04-05 09:58:48 -0700 | [diff] [blame] | 2416 | vcpu_affinity: cfg.vcpu_affinity.clone(), |
Daniel Verkamp | 8a72afc | 2021-03-15 17:55:52 -0700 | [diff] [blame] | 2417 | cpu_clusters: cfg.cpu_clusters.clone(), |
| 2418 | cpu_capacity: cfg.cpu_capacity.clone(), |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 2419 | no_smt: cfg.no_smt, |
Sergey Senozhatsky | 1e369c5 | 2021-04-13 20:23:51 +0900 | [diff] [blame] | 2420 | hugepages: cfg.hugepages, |
Cody Schuffelen | 6d1ab50 | 2019-05-21 12:12:38 -0700 | [diff] [blame] | 2421 | vm_image, |
Tristan Muntsinger | 4133b01 | 2018-12-21 16:01:56 -0800 | [diff] [blame] | 2422 | android_fstab: cfg |
| 2423 | .android_fstab |
| 2424 | .as_ref() |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2425 | .map(|x| { |
| 2426 | File::open(x) |
| 2427 | .with_context(|| format!("failed to open android fstab file {}", x.display())) |
| 2428 | }) |
Tristan Muntsinger | 4133b01 | 2018-12-21 16:01:56 -0800 | [diff] [blame] | 2429 | .map_or(Ok(None), |v| v.map(Some))?, |
Kansho Nishida | 282115b | 2019-12-18 13:13:14 +0900 | [diff] [blame] | 2430 | pstore: cfg.pstore.clone(), |
Daniel Verkamp | e403f5c | 2018-12-11 16:29:26 -0800 | [diff] [blame] | 2431 | initrd_image, |
Daniel Verkamp | aac2813 | 2018-10-15 14:58:48 -0700 | [diff] [blame] | 2432 | extra_kernel_params: cfg.params.clone(), |
Tomasz Jeznach | 4264464 | 2020-05-20 23:27:59 -0700 | [diff] [blame] | 2433 | acpi_sdts: cfg |
| 2434 | .acpi_tables |
| 2435 | .iter() |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2436 | .map(|path| { |
| 2437 | SDT::from_file(path) |
| 2438 | .with_context(|| format!("failed to open ACPI file {}", path.display())) |
| 2439 | }) |
Tomasz Jeznach | 4264464 | 2020-05-20 23:27:59 -0700 | [diff] [blame] | 2440 | .collect::<Result<Vec<SDT>>>()?, |
Kansho Nishida | ab205af | 2020-08-13 18:17:50 +0900 | [diff] [blame] | 2441 | rt_cpus: cfg.rt_cpus.clone(), |
Suleiman Souhlal | 63630e8 | 2021-02-18 11:53:11 +0900 | [diff] [blame] | 2442 | delay_rt: cfg.delay_rt, |
Will Deacon | 7d2b8ac | 2020-10-06 18:51:12 +0100 | [diff] [blame] | 2443 | protected_vm: cfg.protected_vm, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 2444 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2445 | gdb: None, |
Tomasz Jeznach | ccb2694 | 2021-03-30 22:44:11 -0700 | [diff] [blame] | 2446 | dmi_path: cfg.dmi_path.clone(), |
Tomasz Jeznach | d93c29f | 2021-04-12 11:00:24 -0700 | [diff] [blame] | 2447 | no_legacy: cfg.no_legacy, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2448 | host_cpu_topology: cfg.host_cpu_topology, |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2449 | }) |
| 2450 | } |
| 2451 | |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2452 | pub enum ExitState { |
| 2453 | Reset, |
| 2454 | Stop, |
| 2455 | } |
| 2456 | |
| 2457 | pub fn run_config(cfg: Config) -> Result<ExitState> { |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2458 | let components = setup_vm_components(&cfg)?; |
| 2459 | |
| 2460 | let guest_mem_layout = |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2461 | Arch::guest_memory_layout(&components).context("failed to create guest memory layout")?; |
| 2462 | let guest_mem = GuestMemory::new(&guest_mem_layout).context("failed to create guest memory")?; |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2463 | let mut mem_policy = MemoryPolicy::empty(); |
| 2464 | if components.hugepages { |
| 2465 | mem_policy |= MemoryPolicy::USE_HUGEPAGES; |
| 2466 | } |
Quentin Perret | 2620380 | 2021-12-02 09:48:43 +0000 | [diff] [blame] | 2467 | guest_mem.set_memory_policy(mem_policy); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2468 | let kvm = Kvm::new_with_path(&cfg.kvm_device_path).context("failed to create kvm")?; |
| 2469 | let vm = KvmVm::new(&kvm, guest_mem).context("failed to create vm")?; |
| 2470 | let vm_clone = vm.try_clone().context("failed to clone vm")?; |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2471 | |
| 2472 | enum KvmIrqChip { |
| 2473 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| 2474 | Split(KvmSplitIrqChip), |
| 2475 | Kernel(KvmKernelIrqChip), |
| 2476 | } |
| 2477 | |
| 2478 | impl KvmIrqChip { |
| 2479 | fn as_mut(&mut self) -> &mut dyn IrqChipArch { |
| 2480 | match self { |
| 2481 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| 2482 | KvmIrqChip::Split(i) => i, |
| 2483 | KvmIrqChip::Kernel(i) => i, |
| 2484 | } |
| 2485 | } |
| 2486 | } |
| 2487 | |
| 2488 | let ioapic_host_tube; |
| 2489 | let mut irq_chip = if cfg.split_irqchip { |
| 2490 | #[cfg(not(any(target_arch = "x86", target_arch = "x86_64")))] |
| 2491 | unimplemented!("KVM split irqchip mode only supported on x86 processors"); |
| 2492 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| 2493 | { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2494 | let (host_tube, ioapic_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2495 | ioapic_host_tube = Some(host_tube); |
| 2496 | KvmIrqChip::Split( |
| 2497 | KvmSplitIrqChip::new( |
| 2498 | vm_clone, |
| 2499 | components.vcpu_count, |
| 2500 | ioapic_device_tube, |
| 2501 | Some(120), |
| 2502 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2503 | .context("failed to create IRQ chip")?, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2504 | ) |
| 2505 | } |
| 2506 | } else { |
| 2507 | ioapic_host_tube = None; |
| 2508 | KvmIrqChip::Kernel( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2509 | KvmKernelIrqChip::new(vm_clone, components.vcpu_count) |
| 2510 | .context("failed to create IRQ chip")?, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2511 | ) |
| 2512 | }; |
| 2513 | |
| 2514 | run_vm::<KvmVcpu, KvmVm>(cfg, components, vm, irq_chip.as_mut(), ioapic_host_tube) |
| 2515 | } |
| 2516 | |
| 2517 | fn run_vm<Vcpu, V>( |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2518 | cfg: Config, |
| 2519 | #[allow(unused_mut)] mut components: VmComponents, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2520 | mut vm: V, |
| 2521 | irq_chip: &mut dyn IrqChipArch, |
| 2522 | ioapic_host_tube: Option<Tube>, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2523 | ) -> Result<ExitState> |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2524 | where |
| 2525 | Vcpu: VcpuArch + 'static, |
| 2526 | V: VmArch + 'static, |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2527 | { |
| 2528 | if cfg.sandbox { |
| 2529 | // Printing something to the syslog before entering minijail so that libc's syslogger has a |
| 2530 | // chance to open files necessary for its operation, like `/etc/localtime`. After jailing, |
| 2531 | // access to those files will not be possible. |
| 2532 | info!("crosvm entering multiprocess mode"); |
| 2533 | } |
| 2534 | |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 2535 | #[cfg(feature = "usb")] |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2536 | let (usb_control_tube, usb_provider) = |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2537 | HostBackendDeviceProvider::new().context("failed to create usb provider")?; |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 2538 | |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2539 | // Masking signals is inherently dangerous, since this can persist across clones/execs. Do this |
| 2540 | // before any jailed devices have been spawned, so that we can catch any of them that fail very |
| 2541 | // quickly. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2542 | let sigchld_fd = SignalFd::new(libc::SIGCHLD).context("failed to create signalfd")?; |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 2543 | |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2544 | let control_server_socket = match &cfg.socket_path { |
| 2545 | Some(path) => Some(UnlinkUnixSeqpacketListener( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2546 | UnixSeqpacketListener::bind(path).context("failed to create control server")?, |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2547 | )), |
| 2548 | None => None, |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 2549 | }; |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2550 | |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2551 | let mut control_tubes = Vec::new(); |
| 2552 | |
| 2553 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 2554 | if let Some(port) = cfg.gdb { |
| 2555 | // GDB needs a control socket to interrupt vcpus. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2556 | let (gdb_host_tube, gdb_control_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2557 | control_tubes.push(TaggedControlTube::Vm(gdb_host_tube)); |
| 2558 | components.gdb = Some((port, gdb_control_tube)); |
| 2559 | } |
| 2560 | |
Chirantan Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 2561 | for wl_cfg in &cfg.vhost_user_wl { |
| 2562 | let wayland_host_tube = UnixSeqpacket::connect(&wl_cfg.vm_tube) |
| 2563 | .map(Tube::new) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2564 | .context("failed to connect to wayland tube")?; |
Chirantan Ekbote | 2ee9dcd | 2021-05-26 18:21:44 +0900 | [diff] [blame] | 2565 | control_tubes.push(TaggedControlTube::VmMemory(wayland_host_tube)); |
| 2566 | } |
| 2567 | |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 2568 | let mut vhost_user_gpu_tubes = Vec::with_capacity(cfg.vhost_user_gpu.len()); |
| 2569 | for _ in 0..cfg.vhost_user_gpu.len() { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2570 | let (host_tube, device_tube) = Tube::pair().context("failed to create tube")?; |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 2571 | vhost_user_gpu_tubes.push(( |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2572 | host_tube.try_clone().context("failed to clone tube")?, |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 2573 | device_tube, |
| 2574 | )); |
| 2575 | control_tubes.push(TaggedControlTube::VmMemory(host_tube)); |
| 2576 | } |
| 2577 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2578 | let (wayland_host_tube, wayland_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2579 | control_tubes.push(TaggedControlTube::VmMemory(wayland_host_tube)); |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 2580 | // Balloon gets a special socket so balloon requests can be forwarded from the main process. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2581 | let (balloon_host_tube, balloon_device_tube) = Tube::pair().context("failed to create tube")?; |
Hikaru Nishida | af3f3bb | 2021-05-21 12:03:54 +0900 | [diff] [blame] | 2582 | // Set recv timeout to avoid deadlock on sending BalloonControlCommand before guest is ready. |
| 2583 | balloon_host_tube |
| 2584 | .set_recv_timeout(Some(Duration::from_millis(100))) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2585 | .context("failed to create tube")?; |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 2586 | |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2587 | // Create one control socket per disk. |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2588 | let mut disk_device_tubes = Vec::new(); |
| 2589 | let mut disk_host_tubes = Vec::new(); |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2590 | let disk_count = cfg.disks.len(); |
| 2591 | for _ in 0..disk_count { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2592 | let (disk_host_tub, disk_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2593 | disk_host_tubes.push(disk_host_tub); |
| 2594 | disk_device_tubes.push(disk_device_tube); |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2595 | } |
| 2596 | |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2597 | let mut pmem_device_tubes = Vec::new(); |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 2598 | let pmem_count = cfg.pmem_devices.len(); |
| 2599 | for _ in 0..pmem_count { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2600 | let (pmem_host_tube, pmem_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2601 | pmem_device_tubes.push(pmem_device_tube); |
| 2602 | control_tubes.push(TaggedControlTube::VmMsync(pmem_host_tube)); |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 2603 | } |
| 2604 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2605 | let (gpu_host_tube, gpu_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2606 | control_tubes.push(TaggedControlTube::VmMemory(gpu_host_tube)); |
Gurchetan Singh | 96beafc | 2019-05-15 09:46:52 -0700 | [diff] [blame] | 2607 | |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2608 | if let Some(ioapic_host_tube) = ioapic_host_tube { |
| 2609 | control_tubes.push(TaggedControlTube::VmIrq(ioapic_host_tube)); |
| 2610 | } |
Zhuocheng Ding | f2e90bf | 2019-12-02 15:50:20 +0800 | [diff] [blame] | 2611 | |
Chuanxiao Dong | bbb32af | 2020-04-27 16:37:10 +0800 | [diff] [blame] | 2612 | let battery = if cfg.battery_type.is_some() { |
Daniel Verkamp | cfe4946 | 2021-08-19 17:11:05 -0700 | [diff] [blame] | 2613 | #[cfg_attr(not(feature = "power-monitor-powerd"), allow(clippy::manual_map))] |
Alex Lau | f408c73 | 2020-11-10 18:24:04 +0900 | [diff] [blame] | 2614 | let jail = match simple_jail(&cfg, "battery")? { |
Daniel Verkamp | cfe4946 | 2021-08-19 17:11:05 -0700 | [diff] [blame] | 2615 | #[cfg_attr(not(feature = "power-monitor-powerd"), allow(unused_mut))] |
Alex Lau | f408c73 | 2020-11-10 18:24:04 +0900 | [diff] [blame] | 2616 | Some(mut jail) => { |
| 2617 | // Setup a bind mount to the system D-Bus socket if the powerd monitor is used. |
| 2618 | #[cfg(feature = "power-monitor-powerd")] |
| 2619 | { |
Fergus Dall | 5120051 | 2021-08-19 12:54:26 +1000 | [diff] [blame] | 2620 | add_current_user_to_jail(&mut jail)?; |
Alex Lau | f408c73 | 2020-11-10 18:24:04 +0900 | [diff] [blame] | 2621 | |
| 2622 | // Create a tmpfs in the device's root directory so that we can bind mount files. |
| 2623 | jail.mount_with_data( |
| 2624 | Path::new("none"), |
| 2625 | Path::new("/"), |
| 2626 | "tmpfs", |
| 2627 | (libc::MS_NOSUID | libc::MS_NODEV | libc::MS_NOEXEC) as usize, |
| 2628 | "size=67108864", |
| 2629 | )?; |
| 2630 | |
| 2631 | let system_bus_socket_path = Path::new("/run/dbus/system_bus_socket"); |
| 2632 | jail.mount_bind(system_bus_socket_path, system_bus_socket_path, true)?; |
| 2633 | } |
| 2634 | Some(jail) |
| 2635 | } |
| 2636 | None => None, |
| 2637 | }; |
| 2638 | (&cfg.battery_type, jail) |
Chuanxiao Dong | bbb32af | 2020-04-27 16:37:10 +0800 | [diff] [blame] | 2639 | } else { |
| 2640 | (&cfg.battery_type, None) |
| 2641 | }; |
| 2642 | |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 2643 | let map_request: Arc<Mutex<Option<ExternalMapping>>> = Arc::new(Mutex::new(None)); |
| 2644 | |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 2645 | let fs_count = cfg |
| 2646 | .shared_dirs |
| 2647 | .iter() |
| 2648 | .filter(|sd| sd.kind == SharedDirKind::FS) |
| 2649 | .count(); |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2650 | let mut fs_device_tubes = Vec::with_capacity(fs_count); |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 2651 | for _ in 0..fs_count { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2652 | let (fs_host_tube, fs_device_tube) = Tube::pair().context("failed to create tube")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2653 | control_tubes.push(TaggedControlTube::Fs(fs_host_tube)); |
| 2654 | fs_device_tubes.push(fs_device_tube); |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 2655 | } |
| 2656 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2657 | let exit_evt = Event::new().context("failed to create event")?; |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2658 | let reset_evt = Event::new().context("failed to create event")?; |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2659 | let mut sys_allocator = Arch::create_system_allocator(vm.get_memory()); |
Ryo Hashimoto | 8f9dc1d | 2021-08-18 19:07:29 +0900 | [diff] [blame] | 2660 | |
| 2661 | // Allocate the ramoops region first. AArch64::build_vm() assumes this. |
| 2662 | let ramoops_region = match &components.pstore { |
| 2663 | Some(pstore) => Some( |
Dennis Kempin | 65740a6 | 2021-10-18 16:46:57 -0700 | [diff] [blame] | 2664 | arch::pstore::create_memory_region(&mut vm, &mut sys_allocator, pstore) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2665 | .context("failed to allocate pstore region")?, |
Ryo Hashimoto | 8f9dc1d | 2021-08-18 19:07:29 +0900 | [diff] [blame] | 2666 | ), |
| 2667 | None => None, |
| 2668 | }; |
| 2669 | |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 2670 | let phys_max_addr = Arch::get_phys_max_addr(); |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 2671 | let mut devices = create_devices( |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2672 | &cfg, |
| 2673 | &mut vm, |
| 2674 | &mut sys_allocator, |
| 2675 | &exit_evt, |
Zide Chen | 71435c1 | 2021-03-03 15:02:02 -0800 | [diff] [blame] | 2676 | phys_max_addr, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2677 | &mut control_tubes, |
| 2678 | wayland_device_tube, |
| 2679 | gpu_device_tube, |
Chirantan Ekbote | 44292f5 | 2021-06-25 18:31:41 +0900 | [diff] [blame] | 2680 | vhost_user_gpu_tubes, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2681 | balloon_device_tube, |
| 2682 | &mut disk_device_tubes, |
| 2683 | &mut pmem_device_tubes, |
| 2684 | &mut fs_device_tubes, |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 2685 | #[cfg(feature = "usb")] |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2686 | usb_provider, |
| 2687 | Arc::clone(&map_request), |
| 2688 | )?; |
| 2689 | |
Peter Fang | c2bba08 | 2021-04-19 18:40:24 -0700 | [diff] [blame] | 2690 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 2691 | for device in devices |
| 2692 | .iter_mut() |
| 2693 | .filter_map(|(dev, _)| dev.as_pci_device_mut()) |
| 2694 | { |
Peter Fang | c2bba08 | 2021-04-19 18:40:24 -0700 | [diff] [blame] | 2695 | let sdts = device |
| 2696 | .generate_acpi(components.acpi_sdts) |
| 2697 | .or_else(|| { |
| 2698 | error!("ACPI table generation error"); |
| 2699 | None |
| 2700 | }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2701 | .ok_or_else(|| anyhow!("failed to generate ACPI table"))?; |
Peter Fang | c2bba08 | 2021-04-19 18:40:24 -0700 | [diff] [blame] | 2702 | components.acpi_sdts = sdts; |
| 2703 | } |
| 2704 | |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2705 | // KVM_CREATE_VCPU uses apic id for x86 and uses cpu id for others. |
| 2706 | let mut kvm_vcpu_ids = Vec::new(); |
| 2707 | |
Kuo-Hsin Yang | 6139da6 | 2021-04-14 16:55:24 +0800 | [diff] [blame] | 2708 | #[cfg_attr(not(feature = "direct"), allow(unused_mut))] |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2709 | let mut linux = Arch::build_vm::<V, Vcpu>( |
Trent Begin | 17ccaad | 2019-04-17 13:51:25 -0600 | [diff] [blame] | 2710 | components, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2711 | &exit_evt, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2712 | &reset_evt, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2713 | &mut sys_allocator, |
Trent Begin | 17ccaad | 2019-04-17 13:51:25 -0600 | [diff] [blame] | 2714 | &cfg.serial_parameters, |
Matt Delco | 45caf91 | 2019-11-13 08:11:09 -0800 | [diff] [blame] | 2715 | simple_jail(&cfg, "serial")?, |
Chuanxiao Dong | bbb32af | 2020-04-27 16:37:10 +0800 | [diff] [blame] | 2716 | battery, |
Zach Reizner | a90649a | 2021-03-31 12:56:08 -0700 | [diff] [blame] | 2717 | vm, |
Ryo Hashimoto | 8f9dc1d | 2021-08-18 19:07:29 +0900 | [diff] [blame] | 2718 | ramoops_region, |
Tomasz Nowicki | ab86d52 | 2021-09-22 05:50:46 +0000 | [diff] [blame] | 2719 | devices, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2720 | irq_chip, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2721 | &mut kvm_vcpu_ids, |
Trent Begin | 17ccaad | 2019-04-17 13:51:25 -0600 | [diff] [blame] | 2722 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2723 | .context("the architecture failed to build the vm")?; |
Lepton Wu | 6089388 | 2018-11-21 11:06:18 -0800 | [diff] [blame] | 2724 | |
Daniel Verkamp | 1286b48 | 2021-11-30 15:14:16 -0800 | [diff] [blame] | 2725 | #[cfg(any(target_arch = "x86", target_arch = "x86_64"))] |
| 2726 | { |
| 2727 | // Create Pcie Root Port |
| 2728 | let pcie_root_port = Arc::new(Mutex::new(PcieRootPort::new())); |
| 2729 | let (msi_host_tube, msi_device_tube) = Tube::pair().context("failed to create tube")?; |
| 2730 | control_tubes.push(TaggedControlTube::VmIrq(msi_host_tube)); |
| 2731 | let sec_bus = (1..255) |
| 2732 | .find(|&bus_num| sys_allocator.pci_bus_empty(bus_num)) |
| 2733 | .context("failed to find empty bus for Pci hotplug")?; |
| 2734 | let pci_bridge = Box::new(PciBridge::new( |
| 2735 | pcie_root_port.clone(), |
| 2736 | msi_device_tube, |
| 2737 | 0, |
| 2738 | sec_bus, |
| 2739 | )); |
| 2740 | Arch::register_pci_device(&mut linux, pci_bridge, None, &mut sys_allocator) |
| 2741 | .context("Failed to configure pci bridge device")?; |
| 2742 | linux.hotplug_bus.push(pcie_root_port); |
| 2743 | } |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2744 | |
Tomasz Jeznach | 3ce7476 | 2021-02-26 01:01:53 -0800 | [diff] [blame] | 2745 | #[cfg(feature = "direct")] |
| 2746 | if let Some(pmio) = &cfg.direct_pmio { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2747 | let direct_io = Arc::new( |
| 2748 | devices::DirectIo::new(&pmio.path, false).context("failed to open direct io device")?, |
| 2749 | ); |
Tomasz Jeznach | 3ce7476 | 2021-02-26 01:01:53 -0800 | [diff] [blame] | 2750 | for range in pmio.ranges.iter() { |
| 2751 | linux |
| 2752 | .io_bus |
Junichi Uekawa | b180f9c | 2021-12-07 09:21:36 +0900 | [diff] [blame] | 2753 | .insert_sync(direct_io.clone(), range.base, range.len) |
Tomasz Jeznach | 3ce7476 | 2021-02-26 01:01:53 -0800 | [diff] [blame] | 2754 | .unwrap(); |
| 2755 | } |
| 2756 | }; |
| 2757 | |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2758 | #[cfg(feature = "direct")] |
Tomasz Jeznach | 9e6c633 | 2021-05-27 21:49:14 -0700 | [diff] [blame] | 2759 | if let Some(mmio) = &cfg.direct_mmio { |
Xiong Zhang | 46471a0 | 2021-11-12 00:34:42 +0800 | [diff] [blame] | 2760 | let direct_mmio = Arc::new( |
Junichi Uekawa | b180f9c | 2021-12-07 09:21:36 +0900 | [diff] [blame] | 2761 | devices::DirectMmio::new(&mmio.path, false, &mmio.ranges) |
Xiong Zhang | 46471a0 | 2021-11-12 00:34:42 +0800 | [diff] [blame] | 2762 | .context("failed to open direct mmio device")?, |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2763 | ); |
Xiong Zhang | 46471a0 | 2021-11-12 00:34:42 +0800 | [diff] [blame] | 2764 | |
Tomasz Jeznach | 9e6c633 | 2021-05-27 21:49:14 -0700 | [diff] [blame] | 2765 | for range in mmio.ranges.iter() { |
| 2766 | linux |
| 2767 | .mmio_bus |
Junichi Uekawa | b180f9c | 2021-12-07 09:21:36 +0900 | [diff] [blame] | 2768 | .insert_sync(direct_mmio.clone(), range.base, range.len) |
Tomasz Jeznach | 9e6c633 | 2021-05-27 21:49:14 -0700 | [diff] [blame] | 2769 | .unwrap(); |
| 2770 | } |
| 2771 | }; |
| 2772 | |
| 2773 | #[cfg(feature = "direct")] |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2774 | let mut irqs = Vec::new(); |
| 2775 | |
| 2776 | #[cfg(feature = "direct")] |
| 2777 | for irq in &cfg.direct_level_irq { |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2778 | if !sys_allocator.reserve_irq(*irq) { |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2779 | warn!("irq {} already reserved.", irq); |
| 2780 | } |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2781 | let trigger = Event::new().context("failed to create event")?; |
| 2782 | let resample = Event::new().context("failed to create event")?; |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2783 | linux |
| 2784 | .irq_chip |
| 2785 | .register_irq_event(*irq, &trigger, Some(&resample)) |
| 2786 | .unwrap(); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2787 | let direct_irq = devices::DirectIrq::new(trigger, Some(resample)) |
| 2788 | .context("failed to enable interrupt forwarding")?; |
| 2789 | direct_irq |
| 2790 | .irq_enable(*irq) |
| 2791 | .context("failed to enable interrupt forwarding")?; |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2792 | irqs.push(direct_irq); |
| 2793 | } |
| 2794 | |
| 2795 | #[cfg(feature = "direct")] |
| 2796 | for irq in &cfg.direct_edge_irq { |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2797 | if !sys_allocator.reserve_irq(*irq) { |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2798 | warn!("irq {} already reserved.", irq); |
| 2799 | } |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2800 | let trigger = Event::new().context("failed to create event")?; |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2801 | linux |
| 2802 | .irq_chip |
| 2803 | .register_irq_event(*irq, &trigger, None) |
| 2804 | .unwrap(); |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2805 | let direct_irq = devices::DirectIrq::new(trigger, None) |
| 2806 | .context("failed to enable interrupt forwarding")?; |
| 2807 | direct_irq |
| 2808 | .irq_enable(*irq) |
| 2809 | .context("failed to enable interrupt forwarding")?; |
Tomasz Jeznach | 7271f75 | 2021-03-04 01:44:06 -0800 | [diff] [blame] | 2810 | irqs.push(direct_irq); |
| 2811 | } |
| 2812 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2813 | let gralloc = RutabagaGralloc::new().context("failed to create gralloc")?; |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2814 | run_control( |
| 2815 | linux, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2816 | sys_allocator, |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2817 | control_server_socket, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2818 | control_tubes, |
| 2819 | balloon_host_tube, |
| 2820 | &disk_host_tubes, |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 2821 | #[cfg(feature = "usb")] |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2822 | usb_control_tube, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2823 | exit_evt, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2824 | reset_evt, |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2825 | sigchld_fd, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2826 | cfg.sandbox, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 2827 | Arc::clone(&map_request), |
Gurchetan Singh | 293913c | 2020-12-09 10:44:13 -0800 | [diff] [blame] | 2828 | gralloc, |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 2829 | cfg.per_vm_core_scheduling, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2830 | cfg.host_cpu_topology, |
| 2831 | kvm_vcpu_ids, |
Daniel Verkamp | 92f73d7 | 2018-12-04 13:17:46 -0800 | [diff] [blame] | 2832 | ) |
Dylan Reid | 0ed91ab | 2018-05-31 15:42:18 -0700 | [diff] [blame] | 2833 | } |
| 2834 | |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2835 | fn get_hp_bus<V: VmArch, Vcpu: VcpuArch>( |
| 2836 | linux: &RunnableLinuxVm<V, Vcpu>, |
| 2837 | host_addr: PciAddress, |
| 2838 | ) -> Result<(Arc<Mutex<dyn HotPlugBus>>, u8)> { |
| 2839 | for hp_bus in linux.hotplug_bus.iter() { |
| 2840 | if let Some(number) = hp_bus.lock().is_match(host_addr) { |
| 2841 | return Ok((hp_bus.clone(), number)); |
| 2842 | } |
| 2843 | } |
| 2844 | Err(anyhow!("Failed to find a suitable hotplug bus")) |
| 2845 | } |
| 2846 | |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2847 | #[allow(dead_code)] |
| 2848 | fn add_vfio_device<V: VmArch, Vcpu: VcpuArch>( |
| 2849 | linux: &mut RunnableLinuxVm<V, Vcpu>, |
| 2850 | sys_allocator: &mut SystemAllocator, |
| 2851 | cfg: &Config, |
| 2852 | control_tubes: &mut Vec<TaggedControlTube>, |
| 2853 | vfio_path: &Path, |
| 2854 | ) -> Result<()> { |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2855 | let host_os_str = vfio_path |
| 2856 | .file_name() |
| 2857 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
| 2858 | let host_str = host_os_str |
| 2859 | .to_str() |
| 2860 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
| 2861 | let host_addr = PciAddress::from_string(host_str); |
| 2862 | |
| 2863 | let (hp_bus, bus_num) = get_hp_bus(linux, host_addr)?; |
| 2864 | |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2865 | let mut endpoints: BTreeMap<u32, Arc<Mutex<VfioContainer>>> = BTreeMap::new(); |
| 2866 | let (vfio_pci_device, jail) = create_vfio_device( |
| 2867 | cfg, |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2868 | &linux.vm, |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2869 | sys_allocator, |
| 2870 | control_tubes, |
| 2871 | vfio_path, |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2872 | Some(bus_num), |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2873 | &mut endpoints, |
| 2874 | false, |
| 2875 | )?; |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2876 | |
| 2877 | let pci_address = Arch::register_pci_device(linux, vfio_pci_device, jail, sys_allocator) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2878 | .context("Failed to configure pci hotplug device")?; |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2879 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2880 | let host_os_str = vfio_path |
| 2881 | .file_name() |
| 2882 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
| 2883 | let host_str = host_os_str |
| 2884 | .to_str() |
| 2885 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2886 | let host_addr = PciAddress::from_string(host_str); |
| 2887 | let host_key = HostHotPlugKey::Vfio { host_addr }; |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2888 | let mut hp_bus = hp_bus.lock(); |
| 2889 | hp_bus.add_hotplug_device(host_key, pci_address); |
| 2890 | hp_bus.hot_plug(pci_address); |
| 2891 | Ok(()) |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2892 | } |
| 2893 | |
| 2894 | #[allow(dead_code)] |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2895 | fn remove_vfio_device<V: VmArch, Vcpu: VcpuArch>( |
| 2896 | linux: &RunnableLinuxVm<V, Vcpu>, |
Xiong Zhang | 2d45b91 | 2021-05-13 16:22:25 +0800 | [diff] [blame] | 2897 | sys_allocator: &mut SystemAllocator, |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2898 | vfio_path: &Path, |
| 2899 | ) -> Result<()> { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2900 | let host_os_str = vfio_path |
| 2901 | .file_name() |
| 2902 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
| 2903 | let host_str = host_os_str |
| 2904 | .to_str() |
| 2905 | .ok_or_else(|| anyhow!("failed to parse or find vfio path"))?; |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2906 | let host_addr = PciAddress::from_string(host_str); |
| 2907 | let host_key = HostHotPlugKey::Vfio { host_addr }; |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2908 | for hp_bus in linux.hotplug_bus.iter() { |
| 2909 | let mut hp_bus_lock = hp_bus.lock(); |
| 2910 | if let Some(pci_addr) = hp_bus_lock.get_hotplug_device(host_key) { |
| 2911 | hp_bus_lock.hot_unplug(pci_addr); |
Xiong Zhang | 2d45b91 | 2021-05-13 16:22:25 +0800 | [diff] [blame] | 2912 | sys_allocator.release_pci(pci_addr.bus, pci_addr.dev, pci_addr.func); |
Xiong Zhang | f82f2dc | 2021-05-21 16:54:12 +0800 | [diff] [blame] | 2913 | return Ok(()); |
| 2914 | } |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2915 | } |
| 2916 | |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2917 | Err(anyhow!("HotPlugBus hasn't been implemented")) |
Xiong Zhang | 9fadc3f | 2021-06-07 14:16:45 +0800 | [diff] [blame] | 2918 | } |
Xiong Zhang | 8c9fe3e | 2021-04-12 15:07:17 +0800 | [diff] [blame] | 2919 | |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 2920 | /// Signals all running VCPUs to vmexit, sends VcpuControl message to each VCPU tube, and tells |
| 2921 | /// `irq_chip` to stop blocking halted VCPUs. The channel message is set first because both the |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2922 | /// signal and the irq_chip kick could cause the VCPU thread to continue through the VCPU run |
| 2923 | /// loop. |
| 2924 | fn kick_all_vcpus( |
| 2925 | vcpu_handles: &[(JoinHandle<()>, mpsc::Sender<vm_control::VcpuControl>)], |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2926 | irq_chip: &dyn IrqChip, |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 2927 | message: VcpuControl, |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2928 | ) { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2929 | for (handle, tube) in vcpu_handles { |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 2930 | if let Err(e) = tube.send(message.clone()) { |
| 2931 | error!("failed to send VcpuControl: {}", e); |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 2932 | } |
| 2933 | let _ = handle.kill(SIGRTMIN() + 0); |
| 2934 | } |
| 2935 | irq_chip.kick_halted_vcpus(); |
| 2936 | } |
| 2937 | |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2938 | fn run_control<V: VmArch + 'static, Vcpu: VcpuArch + 'static>( |
| 2939 | mut linux: RunnableLinuxVm<V, Vcpu>, |
| 2940 | mut sys_allocator: SystemAllocator, |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2941 | control_server_socket: Option<UnlinkUnixSeqpacketListener>, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2942 | mut control_tubes: Vec<TaggedControlTube>, |
| 2943 | balloon_host_tube: Tube, |
| 2944 | disk_host_tubes: &[Tube], |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 2945 | #[cfg(feature = "usb")] usb_control_tube: Tube, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2946 | exit_evt: Event, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2947 | reset_evt: Event, |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 2948 | sigchld_fd: SignalFd, |
Lepton Wu | 20333e4 | 2019-03-14 10:48:03 -0700 | [diff] [blame] | 2949 | sandbox: bool, |
Lingfeng Yang | d6ac1ab | 2020-01-31 13:55:35 -0800 | [diff] [blame] | 2950 | map_request: Arc<Mutex<Option<ExternalMapping>>>, |
Gurchetan Singh | 293913c | 2020-12-09 10:44:13 -0800 | [diff] [blame] | 2951 | mut gralloc: RutabagaGralloc, |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 2952 | enable_per_vm_core_scheduling: bool, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 2953 | host_cpu_topology: bool, |
| 2954 | kvm_vcpu_ids: Vec<usize>, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2955 | ) -> Result<ExitState> { |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 2956 | #[derive(PollToken)] |
| 2957 | enum Token { |
| 2958 | Exit, |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2959 | Reset, |
Chuanxiao Dong | 546f01c | 2020-02-12 21:58:47 +0800 | [diff] [blame] | 2960 | Suspend, |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 2961 | ChildSignal, |
Colin Downs-Razouk | bd53276 | 2020-09-08 15:49:35 -0700 | [diff] [blame] | 2962 | IrqFd { index: IrqEventIndex }, |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2963 | VmControlServer, |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 2964 | VmControl { index: usize }, |
| 2965 | } |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2966 | |
Zach Reizner | 19ad1f3 | 2019-12-12 18:58:50 -0800 | [diff] [blame] | 2967 | stdin() |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2968 | .set_raw_mode() |
| 2969 | .expect("failed to set terminal raw mode"); |
| 2970 | |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 2971 | let wait_ctx = WaitContext::build_with(&[ |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 2972 | (&exit_evt, Token::Exit), |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 2973 | (&reset_evt, Token::Reset), |
Chuanxiao Dong | 546f01c | 2020-02-12 21:58:47 +0800 | [diff] [blame] | 2974 | (&linux.suspend_evt, Token::Suspend), |
Zach Reizner | b2110be | 2019-07-23 15:55:03 -0700 | [diff] [blame] | 2975 | (&sigchld_fd, Token::ChildSignal), |
| 2976 | ]) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2977 | .context("failed to add descriptor to wait context")?; |
Zach Reizner | b2110be | 2019-07-23 15:55:03 -0700 | [diff] [blame] | 2978 | |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2979 | if let Some(socket_server) = &control_server_socket { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 2980 | wait_ctx |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2981 | .add(socket_server, Token::VmControlServer) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2982 | .context("failed to add descriptor to wait context")?; |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 2983 | } |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 2984 | for (index, socket) in control_tubes.iter().enumerate() { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 2985 | wait_ctx |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 2986 | .add(socket.as_ref(), Token::VmControl { index }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2987 | .context("failed to add descriptor to wait context")?; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 2988 | } |
| 2989 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2990 | let events = linux |
| 2991 | .irq_chip |
| 2992 | .irq_event_tokens() |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2993 | .context("failed to add descriptor to wait context")?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 2994 | |
Colin Downs-Razouk | bd53276 | 2020-09-08 15:49:35 -0700 | [diff] [blame] | 2995 | for (index, _gsi, evt) in events { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 2996 | wait_ctx |
Colin Downs-Razouk | bd53276 | 2020-09-08 15:49:35 -0700 | [diff] [blame] | 2997 | .add(&evt, Token::IrqFd { index }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 2998 | .context("failed to add descriptor to wait context")?; |
Zhuocheng Ding | b9f4c9b | 2019-12-02 15:50:28 +0800 | [diff] [blame] | 2999 | } |
| 3000 | |
Lepton Wu | 20333e4 | 2019-03-14 10:48:03 -0700 | [diff] [blame] | 3001 | if sandbox { |
| 3002 | // Before starting VCPUs, in case we started with some capabilities, drop them all. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3003 | drop_capabilities().context("failed to drop process capabilities")?; |
Lepton Wu | 20333e4 | 2019-03-14 10:48:03 -0700 | [diff] [blame] | 3004 | } |
Dmitry Torokhov | 7100607 | 2019-03-06 10:56:51 -0800 | [diff] [blame] | 3005 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3006 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 3007 | // Create a channel for GDB thread. |
| 3008 | let (to_gdb_channel, from_vcpu_channel) = if linux.gdb.is_some() { |
| 3009 | let (s, r) = mpsc::channel(); |
| 3010 | (Some(s), Some(r)) |
| 3011 | } else { |
| 3012 | (None, None) |
| 3013 | }; |
| 3014 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3015 | let mut vcpu_handles = Vec::with_capacity(linux.vcpu_count); |
| 3016 | let vcpu_thread_barrier = Arc::new(Barrier::new(linux.vcpu_count + 1)); |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3017 | let use_hypervisor_signals = !linux |
| 3018 | .vm |
| 3019 | .get_hypervisor() |
| 3020 | .check_capability(&HypervisorCap::ImmediateExit); |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 3021 | setup_vcpu_signal_handler::<Vcpu>(use_hypervisor_signals)?; |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3022 | |
Zach Reizner | 304e731 | 2020-09-29 16:00:24 -0700 | [diff] [blame] | 3023 | let vcpus: Vec<Option<_>> = match linux.vcpus.take() { |
Andrew Walbran | 9cfdbd9 | 2021-01-11 17:40:34 +0000 | [diff] [blame] | 3024 | Some(vec) => vec.into_iter().map(Some).collect(), |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3025 | None => iter::repeat_with(|| None).take(linux.vcpu_count).collect(), |
| 3026 | }; |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 3027 | // Enable core scheduling before creating vCPUs so that the cookie will be |
| 3028 | // shared by all vCPU threads. |
| 3029 | // TODO(b/199312402): Avoid enabling core scheduling for the crosvm process |
| 3030 | // itself for even better performance. Only vCPUs need the feature. |
| 3031 | if enable_per_vm_core_scheduling { |
| 3032 | if let Err(e) = enable_core_scheduling() { |
| 3033 | error!("Failed to enable core scheduling: {}", e); |
| 3034 | } |
| 3035 | } |
Daniel Verkamp | 94c3527 | 2019-09-12 13:31:30 -0700 | [diff] [blame] | 3036 | for (cpu_id, vcpu) in vcpus.into_iter().enumerate() { |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 3037 | let (to_vcpu_channel, from_main_channel) = mpsc::channel(); |
Daniel Verkamp | c677fb4 | 2020-09-08 13:47:49 -0700 | [diff] [blame] | 3038 | let vcpu_affinity = match linux.vcpu_affinity.clone() { |
| 3039 | Some(VcpuAffinity::Global(v)) => v, |
| 3040 | Some(VcpuAffinity::PerVcpu(mut m)) => m.remove(&cpu_id).unwrap_or_default(), |
| 3041 | None => Default::default(), |
| 3042 | }; |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 3043 | let handle = run_vcpu( |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3044 | cpu_id, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 3045 | kvm_vcpu_ids[cpu_id], |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 3046 | vcpu, |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3047 | linux.vm.try_clone().context("failed to clone vm")?, |
| 3048 | linux |
| 3049 | .irq_chip |
| 3050 | .try_box_clone() |
| 3051 | .context("failed to clone irqchip")?, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3052 | linux.vcpu_count, |
Kansho Nishida | ab205af | 2020-08-13 18:17:50 +0900 | [diff] [blame] | 3053 | linux.rt_cpus.contains(&cpu_id), |
Daniel Verkamp | c677fb4 | 2020-09-08 13:47:49 -0700 | [diff] [blame] | 3054 | vcpu_affinity, |
Suleiman Souhlal | 63630e8 | 2021-02-18 11:53:11 +0900 | [diff] [blame] | 3055 | linux.delay_rt, |
Suleiman Souhlal | 015c3c1 | 2020-10-07 14:15:41 +0900 | [diff] [blame] | 3056 | linux.no_smt, |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 3057 | vcpu_thread_barrier.clone(), |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3058 | linux.has_bios, |
Colin Downs-Razouk | 11bed5e | 2021-11-02 09:33:14 -0700 | [diff] [blame] | 3059 | (*linux.io_bus).clone(), |
| 3060 | (*linux.mmio_bus).clone(), |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3061 | exit_evt.try_clone().context("failed to clone event")?, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3062 | linux.vm.check_capability(VmCap::PvClockSuspend), |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 3063 | from_main_channel, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3064 | use_hypervisor_signals, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3065 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 3066 | to_gdb_channel.clone(), |
Yusuke Sato | 31e136a | 2021-08-18 11:51:38 -0700 | [diff] [blame] | 3067 | enable_per_vm_core_scheduling, |
ZhaoLiu | 2aaf7ad | 2021-10-10 18:22:29 +0800 | [diff] [blame] | 3068 | host_cpu_topology, |
Zach Reizner | 55a9e50 | 2018-10-03 10:22:32 -0700 | [diff] [blame] | 3069 | )?; |
Dylan Reid | b049266 | 2019-05-17 14:50:13 -0700 | [diff] [blame] | 3070 | vcpu_handles.push((handle, to_vcpu_channel)); |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 3071 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3072 | |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3073 | #[cfg(all(target_arch = "x86_64", feature = "gdb"))] |
| 3074 | // Spawn GDB thread. |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3075 | if let Some((gdb_port_num, gdb_control_tube)) = linux.gdb.take() { |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3076 | let to_vcpu_channels = vcpu_handles |
| 3077 | .iter() |
| 3078 | .map(|(_handle, channel)| channel.clone()) |
| 3079 | .collect(); |
| 3080 | let target = GdbStub::new( |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3081 | gdb_control_tube, |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3082 | to_vcpu_channels, |
| 3083 | from_vcpu_channel.unwrap(), // Must succeed to unwrap() |
| 3084 | ); |
| 3085 | thread::Builder::new() |
| 3086 | .name("gdb".to_owned()) |
| 3087 | .spawn(move || gdb_thread(target, gdb_port_num)) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3088 | .context("failed to spawn GDB thread")?; |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3089 | }; |
| 3090 | |
Dylan Reid | 059a188 | 2018-07-23 17:58:09 -0700 | [diff] [blame] | 3091 | vcpu_thread_barrier.wait(); |
| 3092 | |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 3093 | let mut exit_state = ExitState::Stop; |
Charles William Dick | 5404501 | 2021-07-27 19:11:53 +0900 | [diff] [blame] | 3094 | let mut balloon_stats_id: u64 = 0; |
| 3095 | |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3096 | 'wait: loop { |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3097 | let events = { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3098 | match wait_ctx.wait() { |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3099 | Ok(v) => v, |
| 3100 | Err(e) => { |
David Tolnay | b4bd00f | 2019-02-12 17:51:26 -0800 | [diff] [blame] | 3101 | error!("failed to poll: {}", e); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3102 | break; |
| 3103 | } |
| 3104 | } |
| 3105 | }; |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3106 | |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3107 | if let Err(e) = linux.irq_chip.process_delayed_irq_events() { |
| 3108 | warn!("can't deliver delayed irqs: {}", e); |
| 3109 | } |
Zhuocheng Ding | b9f4c9b | 2019-12-02 15:50:28 +0800 | [diff] [blame] | 3110 | |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3111 | let mut vm_control_indices_to_remove = Vec::new(); |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3112 | for event in events.iter().filter(|e| e.is_readable) { |
| 3113 | match event.token { |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3114 | Token::Exit => { |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3115 | info!("vcpu requested shutdown"); |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3116 | break 'wait; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3117 | } |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 3118 | Token::Reset => { |
| 3119 | info!("vcpu requested reset"); |
| 3120 | exit_state = ExitState::Reset; |
| 3121 | break 'wait; |
| 3122 | } |
Chuanxiao Dong | 546f01c | 2020-02-12 21:58:47 +0800 | [diff] [blame] | 3123 | Token::Suspend => { |
| 3124 | info!("VM requested suspend"); |
| 3125 | linux.suspend_evt.read().unwrap(); |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3126 | kick_all_vcpus( |
| 3127 | &vcpu_handles, |
| 3128 | linux.irq_chip.as_irq_chip(), |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 3129 | VcpuControl::RunState(VmRunMode::Suspending), |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3130 | ); |
Chuanxiao Dong | 546f01c | 2020-02-12 21:58:47 +0800 | [diff] [blame] | 3131 | } |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3132 | Token::ChildSignal => { |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3133 | // Print all available siginfo structs, then exit the loop. |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3134 | while let Some(siginfo) = |
| 3135 | sigchld_fd.read().context("failed to create signalfd")? |
| 3136 | { |
Zach Reizner | 3ba0098 | 2019-01-23 19:04:43 -0800 | [diff] [blame] | 3137 | let pid = siginfo.ssi_pid; |
| 3138 | let pid_label = match linux.pid_debug_label_map.get(&pid) { |
| 3139 | Some(label) => format!("{} (pid {})", label, pid), |
| 3140 | None => format!("pid {}", pid), |
| 3141 | }; |
David Tolnay | f503276 | 2018-12-03 10:46:45 -0800 | [diff] [blame] | 3142 | error!( |
| 3143 | "child {} died: signo {}, status {}, code {}", |
Zach Reizner | 3ba0098 | 2019-01-23 19:04:43 -0800 | [diff] [blame] | 3144 | pid_label, siginfo.ssi_signo, siginfo.ssi_status, siginfo.ssi_code |
David Tolnay | f503276 | 2018-12-03 10:46:45 -0800 | [diff] [blame] | 3145 | ); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3146 | } |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3147 | break 'wait; |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3148 | } |
Colin Downs-Razouk | bd53276 | 2020-09-08 15:49:35 -0700 | [diff] [blame] | 3149 | Token::IrqFd { index } => { |
| 3150 | if let Err(e) = linux.irq_chip.service_irq_event(index) { |
| 3151 | error!("failed to signal irq {}: {}", index, e); |
Zhuocheng Ding | b9f4c9b | 2019-12-02 15:50:28 +0800 | [diff] [blame] | 3152 | } |
| 3153 | } |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3154 | Token::VmControlServer => { |
| 3155 | if let Some(socket_server) = &control_server_socket { |
| 3156 | match socket_server.accept() { |
| 3157 | Ok(socket) => { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3158 | wait_ctx |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3159 | .add( |
| 3160 | &socket, |
| 3161 | Token::VmControl { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3162 | index: control_tubes.len(), |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3163 | }, |
| 3164 | ) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3165 | .context("failed to add descriptor to wait context")?; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3166 | control_tubes.push(TaggedControlTube::Vm(Tube::new(socket))); |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3167 | } |
| 3168 | Err(e) => error!("failed to accept socket: {}", e), |
| 3169 | } |
| 3170 | } |
| 3171 | } |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3172 | Token::VmControl { index } => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3173 | if let Some(socket) = control_tubes.get(index) { |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3174 | match socket { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3175 | TaggedControlTube::Vm(tube) => match tube.recv::<VmRequest>() { |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3176 | Ok(request) => { |
| 3177 | let mut run_mode_opt = None; |
| 3178 | let response = request.execute( |
| 3179 | &mut run_mode_opt, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3180 | &balloon_host_tube, |
Charles William Dick | 5404501 | 2021-07-27 19:11:53 +0900 | [diff] [blame] | 3181 | &mut balloon_stats_id, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3182 | disk_host_tubes, |
Daniel Verkamp | f1439d4 | 2021-05-21 13:55:10 -0700 | [diff] [blame] | 3183 | #[cfg(feature = "usb")] |
| 3184 | Some(&usb_control_tube), |
| 3185 | #[cfg(not(feature = "usb"))] |
| 3186 | None, |
Chuanxiao Dong | 256be3a | 2020-04-27 16:39:33 +0800 | [diff] [blame] | 3187 | &mut linux.bat_control, |
Suleiman Souhlal | 2ac78b9 | 2021-02-01 12:33:26 +0900 | [diff] [blame] | 3188 | &vcpu_handles, |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3189 | ); |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3190 | if let Err(e) = tube.send(&response) { |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3191 | error!("failed to send VmResponse: {}", e); |
| 3192 | } |
| 3193 | if let Some(run_mode) = run_mode_opt { |
| 3194 | info!("control socket changed run mode to {}", run_mode); |
| 3195 | match run_mode { |
| 3196 | VmRunMode::Exiting => { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3197 | break 'wait; |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3198 | } |
Keiichi Watanabe | c5262e9 | 2020-10-21 15:57:33 +0900 | [diff] [blame] | 3199 | other => { |
Chuanxiao Dong | 2bbe85c | 2020-11-12 17:18:07 +0800 | [diff] [blame] | 3200 | if other == VmRunMode::Running { |
Daniel Verkamp | da4e8a9 | 2021-07-21 13:49:02 -0700 | [diff] [blame] | 3201 | for dev in &linux.resume_notify_devices { |
| 3202 | dev.lock().resume_imminent(); |
| 3203 | } |
Chuanxiao Dong | 546f01c | 2020-02-12 21:58:47 +0800 | [diff] [blame] | 3204 | } |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 3205 | kick_all_vcpus( |
| 3206 | &vcpu_handles, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3207 | linux.irq_chip.as_irq_chip(), |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 3208 | VcpuControl::RunState(other), |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 3209 | ); |
Zach Reizner | 6a8fdd9 | 2019-01-16 14:38:41 -0800 | [diff] [blame] | 3210 | } |
| 3211 | } |
| 3212 | } |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3213 | } |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3214 | Err(e) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3215 | if let TubeError::Disconnected = e { |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3216 | vm_control_indices_to_remove.push(index); |
| 3217 | } else { |
| 3218 | error!("failed to recv VmRequest: {}", e); |
| 3219 | } |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3220 | } |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3221 | }, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3222 | TaggedControlTube::VmMemory(tube) => { |
| 3223 | match tube.recv::<VmMemoryRequest>() { |
| 3224 | Ok(request) => { |
| 3225 | let response = request.execute( |
| 3226 | &mut linux.vm, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3227 | &mut sys_allocator, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3228 | Arc::clone(&map_request), |
| 3229 | &mut gralloc, |
| 3230 | ); |
| 3231 | if let Err(e) = tube.send(&response) { |
| 3232 | error!("failed to send VmMemoryControlResponse: {}", e); |
| 3233 | } |
| 3234 | } |
| 3235 | Err(e) => { |
| 3236 | if let TubeError::Disconnected = e { |
| 3237 | vm_control_indices_to_remove.push(index); |
| 3238 | } else { |
| 3239 | error!("failed to recv VmMemoryControlRequest: {}", e); |
| 3240 | } |
Jakub Staron | d99cd0a | 2019-04-11 14:09:39 -0700 | [diff] [blame] | 3241 | } |
| 3242 | } |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3243 | } |
| 3244 | TaggedControlTube::VmIrq(tube) => match tube.recv::<VmIrqRequest>() { |
Xiong Zhang | 2515b75 | 2019-09-19 10:29:02 +0800 | [diff] [blame] | 3245 | Ok(request) => { |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3246 | let response = { |
| 3247 | let irq_chip = &mut linux.irq_chip; |
| 3248 | request.execute( |
| 3249 | |setup| match setup { |
| 3250 | IrqSetup::Event(irq, ev) => { |
Colin Downs-Razouk | bd53276 | 2020-09-08 15:49:35 -0700 | [diff] [blame] | 3251 | if let Some(event_index) = irq_chip |
| 3252 | .register_irq_event(irq, ev, None)? |
| 3253 | { |
| 3254 | match wait_ctx.add( |
| 3255 | ev, |
| 3256 | Token::IrqFd { |
| 3257 | index: event_index |
| 3258 | }, |
| 3259 | ) { |
| 3260 | Err(e) => { |
| 3261 | warn!("failed to add IrqFd to poll context: {}", e); |
| 3262 | Err(e) |
| 3263 | }, |
| 3264 | Ok(_) => { |
| 3265 | Ok(()) |
| 3266 | } |
| 3267 | } |
| 3268 | } else { |
| 3269 | Ok(()) |
| 3270 | } |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3271 | } |
| 3272 | IrqSetup::Route(route) => irq_chip.route_irq(route), |
| 3273 | }, |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3274 | &mut sys_allocator, |
Steven Richman | f32d0b4 | 2020-06-20 21:45:32 -0700 | [diff] [blame] | 3275 | ) |
| 3276 | }; |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3277 | if let Err(e) = tube.send(&response) { |
Xiong Zhang | 2515b75 | 2019-09-19 10:29:02 +0800 | [diff] [blame] | 3278 | error!("failed to send VmIrqResponse: {}", e); |
| 3279 | } |
| 3280 | } |
| 3281 | Err(e) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3282 | if let TubeError::Disconnected = e { |
Xiong Zhang | 2515b75 | 2019-09-19 10:29:02 +0800 | [diff] [blame] | 3283 | vm_control_indices_to_remove.push(index); |
| 3284 | } else { |
| 3285 | error!("failed to recv VmIrqRequest: {}", e); |
| 3286 | } |
| 3287 | } |
| 3288 | }, |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3289 | TaggedControlTube::VmMsync(tube) => { |
| 3290 | match tube.recv::<VmMsyncRequest>() { |
| 3291 | Ok(request) => { |
| 3292 | let response = request.execute(&mut linux.vm); |
| 3293 | if let Err(e) = tube.send(&response) { |
| 3294 | error!("failed to send VmMsyncResponse: {}", e); |
| 3295 | } |
| 3296 | } |
| 3297 | Err(e) => { |
| 3298 | if let TubeError::Disconnected = e { |
| 3299 | vm_control_indices_to_remove.push(index); |
| 3300 | } else { |
| 3301 | error!("failed to recv VmMsyncRequest: {}", e); |
| 3302 | } |
Daniel Verkamp | e1980a9 | 2020-02-07 11:00:55 -0800 | [diff] [blame] | 3303 | } |
| 3304 | } |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3305 | } |
| 3306 | TaggedControlTube::Fs(tube) => match tube.recv::<FsMappingRequest>() { |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 3307 | Ok(request) => { |
| 3308 | let response = |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3309 | request.execute(&mut linux.vm, &mut sys_allocator); |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3310 | if let Err(e) = tube.send(&response) { |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 3311 | error!("failed to send VmResponse: {}", e); |
| 3312 | } |
| 3313 | } |
| 3314 | Err(e) => { |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3315 | if let TubeError::Disconnected = e { |
Keiichi Watanabe | eefe7fb | 2020-11-17 17:58:35 +0900 | [diff] [blame] | 3316 | vm_control_indices_to_remove.push(index); |
| 3317 | } else { |
| 3318 | error!("failed to recv VmResponse: {}", e); |
| 3319 | } |
| 3320 | } |
| 3321 | }, |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3322 | } |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3323 | } |
| 3324 | } |
Zach Reizner | 5bed0d2 | 2018-03-28 02:31:11 -0700 | [diff] [blame] | 3325 | } |
| 3326 | } |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3327 | |
Vikram Auradkar | ede68c7 | 2021-07-01 14:33:54 -0700 | [diff] [blame] | 3328 | // It's possible more data is readable and buffered while the socket is hungup, |
| 3329 | // so don't delete the tube from the poll context until we're sure all the |
| 3330 | // data is read. |
| 3331 | // Below case covers a condition where we have received a hungup event and the tube is not |
| 3332 | // readable. |
| 3333 | // In case of readable tube, once all data is read, any attempt to read more data on hungup |
| 3334 | // tube should fail. On such failure, we get Disconnected error and index gets added to |
| 3335 | // vm_control_indices_to_remove by the time we reach here. |
| 3336 | for event in events.iter().filter(|e| e.is_hungup && !e.is_readable) { |
| 3337 | if let Token::VmControl { index } = event.token { |
| 3338 | vm_control_indices_to_remove.push(index); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3339 | } |
| 3340 | } |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3341 | |
| 3342 | // Sort in reverse so the highest indexes are removed first. This removal algorithm |
Zide Chen | 8958407 | 2019-11-14 10:33:51 -0800 | [diff] [blame] | 3343 | // preserves correct indexes as each element is removed. |
Daniel Verkamp | 8c2f000 | 2020-08-31 15:13:35 -0700 | [diff] [blame] | 3344 | vm_control_indices_to_remove.sort_unstable_by_key(|&k| Reverse(k)); |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3345 | vm_control_indices_to_remove.dedup(); |
| 3346 | for index in vm_control_indices_to_remove { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3347 | // Delete the socket from the `wait_ctx` synchronously. Otherwise, the kernel will do |
| 3348 | // this automatically when the FD inserted into the `wait_ctx` is closed after this |
Zide Chen | 8958407 | 2019-11-14 10:33:51 -0800 | [diff] [blame] | 3349 | // if-block, but this removal can be deferred unpredictably. In some instances where the |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3350 | // system is under heavy load, we can even get events returned by `wait_ctx` for an FD |
Zide Chen | 8958407 | 2019-11-14 10:33:51 -0800 | [diff] [blame] | 3351 | // that has already been closed. Because the token associated with that spurious event |
| 3352 | // now belongs to a different socket, the control loop will start to interact with |
| 3353 | // sockets that might not be ready to use. This can cause incorrect hangup detection or |
| 3354 | // blocking on a socket that will never be ready. See also: crbug.com/1019986 |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3355 | if let Some(socket) = control_tubes.get(index) { |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3356 | wait_ctx |
| 3357 | .delete(socket) |
| 3358 | .context("failed to remove descriptor from wait context")?; |
Zide Chen | 8958407 | 2019-11-14 10:33:51 -0800 | [diff] [blame] | 3359 | } |
| 3360 | |
| 3361 | // This line implicitly drops the socket at `index` when it gets returned by |
| 3362 | // `swap_remove`. After this line, the socket at `index` is not the one from |
| 3363 | // `vm_control_indices_to_remove`. Because of this socket's change in index, we need to |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3364 | // use `wait_ctx.modify` to change the associated index in its `Token::VmControl`. |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3365 | control_tubes.swap_remove(index); |
| 3366 | if let Some(tube) = control_tubes.get(index) { |
Michael Hoyle | e392c46 | 2020-10-07 03:29:24 -0700 | [diff] [blame] | 3367 | wait_ctx |
Zach Reizner | d49bcdb | 2021-01-07 08:30:28 -0800 | [diff] [blame] | 3368 | .modify(tube, EventType::Read, Token::VmControl { index }) |
Daniel Verkamp | 6b29858 | 2021-08-16 15:37:11 -0700 | [diff] [blame] | 3369 | .context("failed to add descriptor to wait context")?; |
Zach Reizner | a60744b | 2019-02-13 17:33:32 -0800 | [diff] [blame] | 3370 | } |
| 3371 | } |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3372 | } |
| 3373 | |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3374 | kick_all_vcpus( |
| 3375 | &vcpu_handles, |
| 3376 | linux.irq_chip.as_irq_chip(), |
Daniel Verkamp | 2940980 | 2021-02-24 14:46:19 -0800 | [diff] [blame] | 3377 | VcpuControl::RunState(VmRunMode::Exiting), |
Zach Reizner | dc74848 | 2021-04-14 13:59:30 -0700 | [diff] [blame] | 3378 | ); |
Steven Richman | 11dc671 | 2020-09-02 15:39:14 -0700 | [diff] [blame] | 3379 | for (handle, _) in vcpu_handles { |
| 3380 | if let Err(e) = handle.join() { |
| 3381 | error!("failed to join vcpu thread: {:?}", e); |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3382 | } |
| 3383 | } |
| 3384 | |
Daniel Verkamp | 94c3527 | 2019-09-12 13:31:30 -0700 | [diff] [blame] | 3385 | // Explicitly drop the VM structure here to allow the devices to clean up before the |
| 3386 | // control sockets are closed when this function exits. |
| 3387 | mem::drop(linux); |
| 3388 | |
Zach Reizner | 19ad1f3 | 2019-12-12 18:58:50 -0800 | [diff] [blame] | 3389 | stdin() |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3390 | .set_canon_mode() |
| 3391 | .expect("failed to restore canonical mode for terminal"); |
| 3392 | |
Dmitry Torokhov | f75699f | 2021-12-03 11:19:13 -0800 | [diff] [blame^] | 3393 | Ok(exit_state) |
Zach Reizner | 39aa26b | 2017-12-12 18:03:23 -0800 | [diff] [blame] | 3394 | } |