2019-09-04 13:55:14 +00:00
|
|
|
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
//
|
|
|
|
// Portions Copyright 2017 The Chromium OS Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-BSD-3-Clause file.
|
|
|
|
//
|
|
|
|
// Copyright © 2019 Intel Corporation
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 AND BSD-3-Clause
|
|
|
|
//
|
|
|
|
|
2021-05-04 08:33:35 +00:00
|
|
|
use crate::config::{
|
|
|
|
ConsoleOutputMode, DeviceConfig, DiskConfig, FsConfig, NetConfig, PmemConfig, VhostMode,
|
|
|
|
VmConfig, VsockConfig,
|
|
|
|
};
|
2020-05-05 10:19:43 +00:00
|
|
|
use crate::device_tree::{DeviceNode, DeviceTree};
|
2020-07-29 12:09:52 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
use crate::interrupt::kvm::KvmMsiInterruptManager as MsiInterruptManager;
|
2020-12-05 00:39:05 +00:00
|
|
|
#[cfg(feature = "mshv")]
|
|
|
|
use crate::interrupt::mshv::MshvMsiInterruptManager as MsiInterruptManager;
|
2020-07-29 12:09:52 +00:00
|
|
|
use crate::interrupt::LegacyUserspaceInterruptManager;
|
2021-01-20 16:12:02 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
use crate::memory_manager::MEMORY_MANAGER_ACPI_SIZE;
|
2019-12-20 16:11:30 +00:00
|
|
|
use crate::memory_manager::{Error as MemoryManagerError, MemoryManager};
|
2020-09-11 14:15:29 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
use crate::vm::NumaNodes;
|
2021-06-02 19:08:04 +00:00
|
|
|
use crate::GuestRegionMmap;
|
2020-06-11 14:48:25 +00:00
|
|
|
use crate::PciDeviceInfo;
|
2020-05-05 10:19:43 +00:00
|
|
|
use crate::{device_node, DEVICE_MANAGER_SNAPSHOT_ID};
|
2019-12-06 16:14:32 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
use acpi_tables::{aml, aml::Aml};
|
2019-12-02 21:50:38 +00:00
|
|
|
use anyhow::anyhow;
|
2020-01-21 08:32:50 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
2019-12-06 16:14:32 +00:00
|
|
|
use arch::layout;
|
2020-05-12 09:49:12 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-12-31 10:49:11 +00:00
|
|
|
use arch::layout::{APIC_START, IOAPIC_SIZE, IOAPIC_START};
|
2020-05-25 08:59:09 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2021-03-26 17:58:17 +00:00
|
|
|
use arch::{DeviceType, MmioDeviceInfo};
|
2021-01-20 18:03:59 +00:00
|
|
|
use block_util::{
|
2021-01-28 08:11:25 +00:00
|
|
|
async_io::DiskFile, block_io_uring_is_supported, detect_image_type,
|
2021-01-28 15:23:03 +00:00
|
|
|
fixed_vhd_async::FixedVhdDiskAsync, fixed_vhd_sync::FixedVhdDiskSync, qcow_sync::QcowDiskSync,
|
|
|
|
raw_async::RawFileDisk, raw_sync::RawFileDiskSync, ImageType,
|
2021-01-20 18:03:59 +00:00
|
|
|
};
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2020-05-25 08:59:09 +00:00
|
|
|
use devices::gic;
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
use devices::ioapic;
|
2021-03-25 17:01:21 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
use devices::legacy::Pl011;
|
2021-03-12 05:18:52 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
use devices::legacy::Serial;
|
2020-05-25 08:27:08 +00:00
|
|
|
use devices::{
|
2021-03-12 05:18:52 +00:00
|
|
|
interrupt_controller, interrupt_controller::InterruptController, AcpiNotificationFlags,
|
2020-05-25 08:27:08 +00:00
|
|
|
};
|
2020-12-04 23:35:29 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2020-06-02 02:29:54 +00:00
|
|
|
use hypervisor::kvm_ioctls::*;
|
2020-12-05 00:39:05 +00:00
|
|
|
#[cfg(feature = "mshv")]
|
|
|
|
use hypervisor::IoEventAddress;
|
2021-01-14 03:03:53 +00:00
|
|
|
use libc::{
|
|
|
|
isatty, tcgetattr, tcsetattr, termios, ECHO, ICANON, ISIG, MAP_NORESERVE, MAP_PRIVATE,
|
|
|
|
MAP_SHARED, O_TMPFILE, PROT_READ, PROT_WRITE, TCSANOW, TIOCGWINSZ,
|
|
|
|
};
|
2021-03-17 17:26:01 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
use pci::VfioPciDevice;
|
2019-09-04 13:55:14 +00:00
|
|
|
use pci::{
|
2020-01-13 17:52:19 +00:00
|
|
|
DeviceRelocation, PciBarRegionType, PciBus, PciConfigIo, PciConfigMmio, PciDevice, PciRoot,
|
2019-09-04 13:55:14 +00:00
|
|
|
};
|
2020-08-04 02:45:53 +00:00
|
|
|
use seccomp::SeccompAction;
|
2021-03-18 12:09:52 +00:00
|
|
|
use std::collections::HashMap;
|
2021-01-14 03:03:53 +00:00
|
|
|
use std::convert::TryInto;
|
|
|
|
use std::fs::{read_link, File, OpenOptions};
|
2020-04-24 15:58:03 +00:00
|
|
|
use std::io::{self, sink, stdout, Seek, SeekFrom};
|
2021-01-14 03:03:53 +00:00
|
|
|
use std::mem::zeroed;
|
2020-03-06 10:34:24 +00:00
|
|
|
use std::num::Wrapping;
|
2019-09-04 13:55:14 +00:00
|
|
|
use std::os::unix::fs::OpenOptionsExt;
|
2021-01-14 03:03:53 +00:00
|
|
|
use std::os::unix::io::{AsRawFd, FromRawFd, RawFd};
|
|
|
|
use std::path::PathBuf;
|
2019-09-04 13:55:14 +00:00
|
|
|
use std::result;
|
2020-12-04 09:23:47 +00:00
|
|
|
use std::sync::{Arc, Barrier, Mutex};
|
2021-05-26 05:33:08 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
use uuid::Uuid;
|
2020-10-15 15:34:35 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2021-02-23 13:57:10 +00:00
|
|
|
use vfio_ioctls::{VfioContainer, VfioDevice};
|
2020-07-02 12:25:19 +00:00
|
|
|
use virtio_devices::transport::VirtioPciDevice;
|
|
|
|
use virtio_devices::transport::VirtioTransport;
|
|
|
|
use virtio_devices::vhost_user::VhostUserConfig;
|
|
|
|
use virtio_devices::{DmaRemapping, IommuMapping};
|
|
|
|
use virtio_devices::{VirtioSharedMemory, VirtioSharedMemoryList};
|
2019-09-04 13:55:14 +00:00
|
|
|
use vm_allocator::SystemAllocator;
|
2021-02-23 13:57:10 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
use vm_device::dma_mapping::vfio::VfioDmaMapping;
|
2020-02-04 11:04:10 +00:00
|
|
|
use vm_device::interrupt::{
|
|
|
|
InterruptIndex, InterruptManager, LegacyIrqGroupConfig, MsiIrqGroupConfig,
|
|
|
|
};
|
2020-09-09 14:30:31 +00:00
|
|
|
use vm_device::{Bus, BusDevice, Resource};
|
2020-01-24 14:47:15 +00:00
|
|
|
use vm_memory::guest_memory::FileOffset;
|
2021-03-17 17:26:01 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
use vm_memory::GuestMemoryRegion;
|
2021-06-02 19:08:04 +00:00
|
|
|
use vm_memory::{Address, GuestAddress, GuestUsize, MmapRegion};
|
2021-06-24 02:49:04 +00:00
|
|
|
#[cfg(all(target_arch = "x86_64", feature = "cmos"))]
|
2021-03-05 13:44:54 +00:00
|
|
|
use vm_memory::{GuestAddressSpace, GuestMemory};
|
2020-04-28 10:08:51 +00:00
|
|
|
use vm_migration::{
|
|
|
|
Migratable, MigratableError, Pausable, Snapshot, SnapshotDataSection, Snapshottable,
|
|
|
|
Transportable,
|
|
|
|
};
|
2020-07-02 12:25:19 +00:00
|
|
|
use vm_virtio::{VirtioDeviceType, VirtioIommuRemapping};
|
2019-09-04 13:55:14 +00:00
|
|
|
use vmm_sys_util::eventfd::EventFd;
|
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2019-09-11 16:25:07 +00:00
|
|
|
const MMIO_LEN: u64 = 0x1000;
|
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2020-04-29 17:40:17 +00:00
|
|
|
const VFIO_DEVICE_NAME_PREFIX: &str = "_vfio";
|
2020-03-06 10:34:24 +00:00
|
|
|
|
2020-05-12 09:49:12 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-04-29 17:40:17 +00:00
|
|
|
const IOAPIC_DEVICE_NAME: &str = "_ioapic";
|
2020-05-25 08:59:09 +00:00
|
|
|
|
2020-04-29 17:40:17 +00:00
|
|
|
const SERIAL_DEVICE_NAME_PREFIX: &str = "_serial";
|
2021-03-07 12:11:07 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
const GPIO_DEVICE_NAME_PREFIX: &str = "_gpio";
|
2020-04-28 13:22:38 +00:00
|
|
|
|
2020-04-29 17:40:17 +00:00
|
|
|
const CONSOLE_DEVICE_NAME: &str = "_console";
|
|
|
|
const DISK_DEVICE_NAME_PREFIX: &str = "_disk";
|
|
|
|
const FS_DEVICE_NAME_PREFIX: &str = "_fs";
|
2020-09-10 09:28:21 +00:00
|
|
|
const MEM_DEVICE_NAME_PREFIX: &str = "_mem";
|
2020-03-20 03:43:37 +00:00
|
|
|
const BALLOON_DEVICE_NAME: &str = "_balloon";
|
2020-04-29 17:40:17 +00:00
|
|
|
const NET_DEVICE_NAME_PREFIX: &str = "_net";
|
|
|
|
const PMEM_DEVICE_NAME_PREFIX: &str = "_pmem";
|
|
|
|
const RNG_DEVICE_NAME: &str = "_rng";
|
|
|
|
const VSOCK_DEVICE_NAME_PREFIX: &str = "_vsock";
|
2020-09-25 09:39:45 +00:00
|
|
|
const WATCHDOG_DEVICE_NAME: &str = "_watchdog";
|
2020-04-15 16:09:12 +00:00
|
|
|
|
2020-04-29 17:40:17 +00:00
|
|
|
const IOMMU_DEVICE_NAME: &str = "_iommu";
|
2020-04-27 12:44:16 +00:00
|
|
|
|
2020-04-29 17:40:17 +00:00
|
|
|
const VIRTIO_PCI_DEVICE_NAME_PREFIX: &str = "_virtio-pci";
|
2020-04-27 14:05:04 +00:00
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Errors associated with device manager
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum DeviceManagerError {
|
|
|
|
/// Cannot create EventFd.
|
|
|
|
EventFd(io::Error),
|
|
|
|
|
|
|
|
/// Cannot open disk path
|
|
|
|
Disk(io::Error),
|
|
|
|
|
|
|
|
/// Cannot create vhost-user-net device
|
2020-07-02 12:25:19 +00:00
|
|
|
CreateVhostUserNet(virtio_devices::vhost_user::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Cannot create virtio-blk device
|
|
|
|
CreateVirtioBlock(io::Error),
|
|
|
|
|
|
|
|
/// Cannot create virtio-net device
|
2020-07-02 12:25:19 +00:00
|
|
|
CreateVirtioNet(virtio_devices::net::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Cannot create virtio-console device
|
|
|
|
CreateVirtioConsole(io::Error),
|
|
|
|
|
|
|
|
/// Cannot create virtio-rng device
|
|
|
|
CreateVirtioRng(io::Error),
|
|
|
|
|
|
|
|
/// Cannot create virtio-fs device
|
2020-07-02 12:25:19 +00:00
|
|
|
CreateVirtioFs(virtio_devices::vhost_user::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-06-04 19:19:24 +00:00
|
|
|
/// Virtio-fs device was created without a socket.
|
2020-04-14 09:21:24 +00:00
|
|
|
NoVirtioFsSock,
|
|
|
|
|
2019-09-11 03:16:41 +00:00
|
|
|
/// Cannot create vhost-user-blk device
|
2020-07-02 12:25:19 +00:00
|
|
|
CreateVhostUserBlk(virtio_devices::vhost_user::Error),
|
2019-09-11 03:16:41 +00:00
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Cannot create virtio-pmem device
|
|
|
|
CreateVirtioPmem(io::Error),
|
|
|
|
|
2019-09-04 18:14:54 +00:00
|
|
|
/// Cannot create virtio-vsock device
|
|
|
|
CreateVirtioVsock(io::Error),
|
|
|
|
|
2019-09-04 21:19:16 +00:00
|
|
|
/// Failed converting Path to &str for the virtio-vsock device.
|
|
|
|
CreateVsockConvertPath,
|
|
|
|
|
|
|
|
/// Cannot create virtio-vsock backend
|
2020-07-02 12:25:19 +00:00
|
|
|
CreateVsockBackend(virtio_devices::vsock::VsockUnixError),
|
2019-09-04 21:19:16 +00:00
|
|
|
|
2019-10-02 20:57:20 +00:00
|
|
|
/// Cannot create virtio-iommu device
|
|
|
|
CreateVirtioIommu(io::Error),
|
|
|
|
|
2020-03-20 03:43:37 +00:00
|
|
|
/// Cannot create virtio-balloon device
|
|
|
|
CreateVirtioBalloon(io::Error),
|
|
|
|
|
2020-09-25 09:39:45 +00:00
|
|
|
/// Cannot create virtio-watchdog device
|
|
|
|
CreateVirtioWatchdog(io::Error),
|
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Failed parsing disk image format
|
2021-01-28 08:11:25 +00:00
|
|
|
DetectImageType(io::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Cannot open qcow disk path
|
|
|
|
QcowDeviceCreate(qcow::Error),
|
|
|
|
|
|
|
|
/// Cannot open tap interface
|
|
|
|
OpenTap(net_util::TapError),
|
|
|
|
|
|
|
|
/// Cannot allocate IRQ.
|
|
|
|
AllocateIrq,
|
|
|
|
|
|
|
|
/// Cannot configure the IRQ.
|
2020-12-04 23:35:29 +00:00
|
|
|
Irq(vmm_sys_util::errno::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Cannot allocate PCI BARs
|
|
|
|
AllocateBars(pci::PciDeviceError),
|
|
|
|
|
2020-03-11 09:05:37 +00:00
|
|
|
/// Could not free the BARs associated with a PCI device.
|
|
|
|
FreePciBars(pci::PciDeviceError),
|
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Cannot register ioevent.
|
2020-06-02 02:29:54 +00:00
|
|
|
RegisterIoevent(anyhow::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-08 14:39:50 +00:00
|
|
|
/// Cannot unregister ioevent.
|
2020-06-02 02:29:54 +00:00
|
|
|
UnRegisterIoevent(anyhow::Error),
|
2020-04-08 14:39:50 +00:00
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Cannot create virtio device
|
|
|
|
VirtioDevice(vmm_sys_util::errno::Error),
|
|
|
|
|
|
|
|
/// Cannot add PCI device
|
|
|
|
AddPciDevice(pci::PciRootError),
|
|
|
|
|
|
|
|
/// Cannot open persistent memory file
|
|
|
|
PmemFileOpen(io::Error),
|
|
|
|
|
|
|
|
/// Cannot set persistent memory file size
|
|
|
|
PmemFileSetLen(io::Error),
|
|
|
|
|
|
|
|
/// Cannot find a memory range for persistent memory
|
|
|
|
PmemRangeAllocation,
|
|
|
|
|
|
|
|
/// Cannot find a memory range for virtio-fs
|
|
|
|
FsRangeAllocation,
|
|
|
|
|
|
|
|
/// Error creating serial output file
|
|
|
|
SerialOutputFileOpen(io::Error),
|
|
|
|
|
|
|
|
/// Error creating console output file
|
|
|
|
ConsoleOutputFileOpen(io::Error),
|
|
|
|
|
2021-01-14 03:03:53 +00:00
|
|
|
/// Error creating serial pty
|
|
|
|
SerialPtyOpen(io::Error),
|
|
|
|
|
|
|
|
/// Error creating console pty
|
|
|
|
ConsolePtyOpen(io::Error),
|
|
|
|
|
|
|
|
/// Error setting pty raw mode
|
|
|
|
SetPtyRaw(vmm_sys_util::errno::Error),
|
|
|
|
|
|
|
|
/// Error getting pty peer
|
|
|
|
GetPtyPeer(vmm_sys_util::errno::Error),
|
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
/// Cannot create a VFIO device
|
2019-11-08 15:27:05 +00:00
|
|
|
VfioCreate(vfio_ioctls::VfioError),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Cannot create a VFIO PCI device
|
2019-11-08 14:50:39 +00:00
|
|
|
VfioPciCreate(pci::VfioPciError),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Failed to map VFIO MMIO region.
|
2019-11-08 14:50:39 +00:00
|
|
|
VfioMapRegion(pci::VfioPciError),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2021-02-26 10:53:02 +00:00
|
|
|
/// Failed to DMA map VFIO device.
|
|
|
|
VfioDmaMap(pci::VfioPciError),
|
|
|
|
|
|
|
|
/// Failed to DMA unmap VFIO device.
|
|
|
|
VfioDmaUnmap(pci::VfioPciError),
|
|
|
|
|
2020-07-17 15:20:47 +00:00
|
|
|
/// Failed to create the passthrough device.
|
|
|
|
CreatePassthroughDevice(anyhow::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
/// Failed to memory map.
|
|
|
|
Mmap(io::Error),
|
|
|
|
|
|
|
|
/// Cannot add legacy device to Bus.
|
2020-09-09 14:30:31 +00:00
|
|
|
BusError(vm_device::BusError),
|
2019-11-05 09:37:34 +00:00
|
|
|
|
|
|
|
/// Failed to allocate IO port
|
2021-03-25 17:01:21 +00:00
|
|
|
AllocateIoPort,
|
2019-11-27 15:28:22 +00:00
|
|
|
|
2021-01-20 15:32:10 +00:00
|
|
|
/// Failed to allocate MMIO address
|
2021-03-25 17:01:21 +00:00
|
|
|
AllocateMmioAddress,
|
2021-01-20 15:32:10 +00:00
|
|
|
|
2019-11-27 15:28:22 +00:00
|
|
|
// Failed to make hotplug notification
|
|
|
|
HotPlugNotification(io::Error),
|
2019-12-20 16:11:30 +00:00
|
|
|
|
|
|
|
// Error from a memory manager operation
|
|
|
|
MemoryManager(MemoryManagerError),
|
2020-01-20 14:07:08 +00:00
|
|
|
|
|
|
|
/// Failed to create new interrupt source group.
|
|
|
|
CreateInterruptGroup(io::Error),
|
|
|
|
|
|
|
|
/// Failed to update interrupt source group.
|
|
|
|
UpdateInterruptGroup(io::Error),
|
2020-01-22 21:55:02 +00:00
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
/// Failed creating interrupt controller.
|
|
|
|
CreateInterruptController(interrupt_controller::Error),
|
2020-01-24 14:47:15 +00:00
|
|
|
|
|
|
|
/// Failed creating a new MmapRegion instance.
|
|
|
|
NewMmapRegion(vm_memory::mmap::MmapRegionError),
|
|
|
|
|
|
|
|
/// Failed cloning a File.
|
|
|
|
CloneFile(io::Error),
|
2020-02-04 16:44:12 +00:00
|
|
|
|
|
|
|
/// Failed to create socket file
|
|
|
|
CreateSocketFile(io::Error),
|
|
|
|
|
|
|
|
/// Failed to spawn the network backend
|
|
|
|
SpawnNetBackend(io::Error),
|
2020-02-04 16:44:12 +00:00
|
|
|
|
|
|
|
/// Failed to spawn the block backend
|
|
|
|
SpawnBlockBackend(io::Error),
|
2020-02-28 11:29:43 +00:00
|
|
|
|
|
|
|
/// Missing PCI bus.
|
|
|
|
NoPciBus,
|
2020-03-06 10:34:24 +00:00
|
|
|
|
2020-04-15 16:58:49 +00:00
|
|
|
/// Could not find an available device name.
|
|
|
|
NoAvailableDeviceName,
|
2020-03-06 16:52:40 +00:00
|
|
|
|
|
|
|
/// Missing PCI device.
|
|
|
|
MissingPciDevice,
|
|
|
|
|
|
|
|
/// Failed removing a PCI device from the PCI bus.
|
|
|
|
RemoveDeviceFromPciBus(pci::PciRootError),
|
|
|
|
|
|
|
|
/// Failed removing a bus device from the IO bus.
|
2020-09-09 14:30:31 +00:00
|
|
|
RemoveDeviceFromIoBus(vm_device::BusError),
|
2020-03-06 16:52:40 +00:00
|
|
|
|
|
|
|
/// Failed removing a bus device from the MMIO bus.
|
2020-09-09 14:30:31 +00:00
|
|
|
RemoveDeviceFromMmioBus(vm_device::BusError),
|
2020-03-09 10:49:15 +00:00
|
|
|
|
2020-04-27 14:55:52 +00:00
|
|
|
/// Failed to find the device corresponding to a specific PCI b/d/f.
|
|
|
|
UnknownPciBdf(u32),
|
|
|
|
|
|
|
|
/// Not allowed to remove this type of device from the VM.
|
|
|
|
RemovalNotAllowed(vm_virtio::VirtioDeviceType),
|
|
|
|
|
|
|
|
/// Failed to find device corresponding to the given identifier.
|
|
|
|
UnknownDeviceId(String),
|
2020-03-09 15:09:11 +00:00
|
|
|
|
|
|
|
/// Failed to find an available PCI device ID.
|
|
|
|
NextPciDeviceId(pci::PciRootError),
|
2020-03-09 15:32:27 +00:00
|
|
|
|
2020-05-11 16:09:00 +00:00
|
|
|
/// Could not reserve the PCI device ID.
|
|
|
|
GetPciDeviceId(pci::PciRootError),
|
|
|
|
|
2020-03-09 15:32:27 +00:00
|
|
|
/// Could not give the PCI device ID back.
|
|
|
|
PutPciDeviceId(pci::PciRootError),
|
2020-03-11 10:23:42 +00:00
|
|
|
|
|
|
|
/// Incorrect device ID as it is already used by another device.
|
|
|
|
DeviceIdAlreadyInUse,
|
2020-03-13 10:25:17 +00:00
|
|
|
|
2020-03-23 11:10:26 +00:00
|
|
|
/// No disk path was specified when one was expected
|
2020-03-13 10:25:17 +00:00
|
|
|
NoDiskPath,
|
2020-03-23 11:10:26 +00:00
|
|
|
|
|
|
|
/// Failed updating guest memory for virtio device.
|
2020-07-02 12:25:19 +00:00
|
|
|
UpdateMemoryForVirtioDevice(virtio_devices::Error),
|
2020-03-04 02:16:27 +00:00
|
|
|
|
|
|
|
/// Cannot create virtio-mem device
|
|
|
|
CreateVirtioMem(io::Error),
|
|
|
|
|
2021-02-02 15:17:35 +00:00
|
|
|
/// Cannot generate a ResizeSender from the Resize object.
|
|
|
|
CreateResizeSender(virtio_devices::mem::Error),
|
2020-03-04 02:16:27 +00:00
|
|
|
|
|
|
|
/// Cannot find a memory range for virtio-mem memory
|
|
|
|
VirtioMemRangeAllocation,
|
2020-03-26 13:53:43 +00:00
|
|
|
|
|
|
|
/// Failed updating guest memory for VFIO PCI device.
|
2019-11-08 14:50:39 +00:00
|
|
|
UpdateMemoryForVfioPciDevice(pci::VfioPciError),
|
2020-04-24 15:58:03 +00:00
|
|
|
|
|
|
|
/// Trying to use a directory for pmem but no size specified
|
|
|
|
PmemWithDirectorySizeMissing,
|
|
|
|
|
|
|
|
/// Trying to use a size that is not multiple of 2MiB
|
|
|
|
PmemSizeNotAligned,
|
2020-04-27 17:12:00 +00:00
|
|
|
|
|
|
|
/// Could not find the node in the device tree.
|
|
|
|
MissingNode,
|
2020-04-29 10:02:54 +00:00
|
|
|
|
2020-04-29 13:18:04 +00:00
|
|
|
/// Resource was already found.
|
|
|
|
ResourceAlreadyExists,
|
|
|
|
|
2020-05-11 18:02:19 +00:00
|
|
|
/// Expected resources for virtio-pci could not be found.
|
|
|
|
MissingVirtioPciResources,
|
|
|
|
|
2020-04-29 14:16:30 +00:00
|
|
|
/// Expected resources for virtio-fs could not be found.
|
|
|
|
MissingVirtioFsResources,
|
2020-05-11 16:09:00 +00:00
|
|
|
|
|
|
|
/// Missing PCI b/d/f from the DeviceNode.
|
|
|
|
MissingDeviceNodePciBdf,
|
2020-07-17 15:28:12 +00:00
|
|
|
|
|
|
|
/// No support for device passthrough
|
|
|
|
NoDevicePassthroughSupport,
|
2020-10-14 10:04:42 +00:00
|
|
|
|
|
|
|
/// Failed to resize virtio-balloon
|
|
|
|
VirtioBalloonResize(virtio_devices::balloon::Error),
|
|
|
|
|
|
|
|
/// Missing virtio-balloon, can't proceed as expected.
|
|
|
|
MissingVirtioBalloon,
|
2021-01-13 10:04:33 +00:00
|
|
|
|
|
|
|
/// Failed to do power button notification
|
|
|
|
PowerButtonNotification(io::Error),
|
2021-01-28 08:11:25 +00:00
|
|
|
|
2021-03-07 13:39:11 +00:00
|
|
|
/// Failed to do AArch64 GPIO power button notification
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
2021-03-25 17:01:21 +00:00
|
|
|
AArch64PowerButtonNotification(devices::legacy::GpioDeviceError),
|
2021-03-07 13:39:11 +00:00
|
|
|
|
2021-01-28 08:11:25 +00:00
|
|
|
/// Failed to set O_DIRECT flag to file descriptor
|
|
|
|
SetDirectIo,
|
|
|
|
|
|
|
|
/// Failed to create FixedVhdDiskAsync
|
|
|
|
CreateFixedVhdDiskAsync(io::Error),
|
2021-01-28 15:23:03 +00:00
|
|
|
|
|
|
|
/// Failed to create FixedVhdDiskSync
|
|
|
|
CreateFixedVhdDiskSync(io::Error),
|
2021-03-03 10:59:53 +00:00
|
|
|
|
|
|
|
/// Failed adding DMA mapping handler to virtio-mem device.
|
|
|
|
AddDmaMappingHandlerVirtioMem(virtio_devices::mem::Error),
|
|
|
|
|
|
|
|
/// Failed removing DMA mapping handler from virtio-mem device.
|
|
|
|
RemoveDmaMappingHandlerVirtioMem(virtio_devices::mem::Error),
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
pub type DeviceManagerResult<T> = result::Result<T, DeviceManagerError>;
|
|
|
|
|
2020-07-02 12:25:19 +00:00
|
|
|
type VirtioDeviceArc = Arc<Mutex<dyn virtio_devices::VirtioDevice>>;
|
2019-11-18 23:10:42 +00:00
|
|
|
|
2021-01-20 16:12:02 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
const DEVICE_MANAGER_ACPI_SIZE: usize = 0x10;
|
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
pub fn get_win_size() -> (u16, u16) {
|
|
|
|
#[repr(C)]
|
2020-03-20 03:50:39 +00:00
|
|
|
#[derive(Default)]
|
2021-03-25 17:01:21 +00:00
|
|
|
struct WindowSize {
|
2019-09-04 13:55:14 +00:00
|
|
|
rows: u16,
|
|
|
|
cols: u16,
|
2020-03-20 03:50:39 +00:00
|
|
|
xpixel: u16,
|
|
|
|
ypixel: u16,
|
2021-01-27 14:03:10 +00:00
|
|
|
}
|
2021-03-25 17:01:21 +00:00
|
|
|
let ws: WindowSize = WindowSize::default();
|
2020-03-20 03:50:39 +00:00
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
unsafe {
|
|
|
|
libc::ioctl(0, TIOCGWINSZ, &ws);
|
|
|
|
}
|
|
|
|
|
|
|
|
(ws.cols, ws.rows)
|
|
|
|
}
|
|
|
|
|
2021-01-14 03:03:53 +00:00
|
|
|
const TIOCSPTLCK: libc::c_int = 0x4004_5431;
|
|
|
|
const TIOCGTPEER: libc::c_int = 0x5441;
|
|
|
|
|
|
|
|
pub fn create_pty() -> io::Result<(File, File, PathBuf)> {
|
|
|
|
// Try to use /dev/pts/ptmx first then fall back to /dev/ptmx
|
|
|
|
// This is done to try and use the devpts filesystem that
|
|
|
|
// could be available for use in the process's namespace first.
|
|
|
|
// Ideally these are all the same file though but different
|
|
|
|
// kernels could have things setup differently.
|
|
|
|
// See https://www.kernel.org/doc/Documentation/filesystems/devpts.txt
|
|
|
|
// for further details.
|
|
|
|
let main = match OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.write(true)
|
|
|
|
.custom_flags(libc::O_NOCTTY)
|
|
|
|
.open("/dev/pts/ptmx")
|
|
|
|
{
|
|
|
|
Ok(f) => f,
|
|
|
|
_ => OpenOptions::new()
|
|
|
|
.read(true)
|
|
|
|
.write(true)
|
|
|
|
.custom_flags(libc::O_NOCTTY)
|
|
|
|
.open("/dev/ptmx")?,
|
|
|
|
};
|
|
|
|
let mut unlock: libc::c_ulong = 0;
|
|
|
|
unsafe {
|
|
|
|
libc::ioctl(
|
|
|
|
main.as_raw_fd(),
|
|
|
|
TIOCSPTLCK.try_into().unwrap(),
|
|
|
|
&mut unlock,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
|
|
|
|
let sub_fd = unsafe {
|
|
|
|
libc::ioctl(
|
|
|
|
main.as_raw_fd(),
|
|
|
|
TIOCGTPEER.try_into().unwrap(),
|
|
|
|
libc::O_NOCTTY | libc::O_RDWR,
|
|
|
|
)
|
|
|
|
};
|
|
|
|
if sub_fd == -1 {
|
|
|
|
return vmm_sys_util::errno::errno_result().map_err(|e| e.into());
|
|
|
|
}
|
|
|
|
|
|
|
|
let proc_path = PathBuf::from(format!("/proc/self/fd/{}", sub_fd));
|
|
|
|
let path = read_link(proc_path)?;
|
|
|
|
|
|
|
|
Ok((main, unsafe { File::from_raw_fd(sub_fd) }, path))
|
|
|
|
}
|
|
|
|
|
2020-07-30 13:02:43 +00:00
|
|
|
enum ConsoleInput {
|
|
|
|
Serial,
|
|
|
|
VirtioConsole,
|
|
|
|
}
|
2020-01-29 15:53:12 +00:00
|
|
|
#[derive(Default)]
|
2019-09-06 15:42:41 +00:00
|
|
|
pub struct Console {
|
2021-03-12 05:18:52 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2019-09-06 15:42:41 +00:00
|
|
|
// Serial port on 0x3f8
|
2020-06-09 06:17:42 +00:00
|
|
|
serial: Option<Arc<Mutex<Serial>>>,
|
2021-03-12 05:18:52 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2021-03-25 17:01:21 +00:00
|
|
|
serial: Option<Arc<Mutex<Pl011>>>,
|
2020-07-30 12:56:46 +00:00
|
|
|
virtio_console_input: Option<Arc<virtio_devices::ConsoleInput>>,
|
2020-07-30 13:02:43 +00:00
|
|
|
input: Option<ConsoleInput>,
|
2019-09-06 15:42:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Console {
|
|
|
|
pub fn queue_input_bytes(&self, out: &[u8]) -> vmm_sys_util::errno::Result<()> {
|
2020-07-30 13:02:43 +00:00
|
|
|
match self.input {
|
|
|
|
Some(ConsoleInput::Serial) => {
|
2021-01-14 03:03:53 +00:00
|
|
|
self.queue_input_bytes_serial(out)?;
|
2020-07-30 13:02:43 +00:00
|
|
|
}
|
2019-09-06 15:42:41 +00:00
|
|
|
|
2020-07-30 13:02:43 +00:00
|
|
|
Some(ConsoleInput::VirtioConsole) => {
|
2021-01-14 03:03:53 +00:00
|
|
|
self.queue_input_bytes_console(out);
|
2020-07-30 13:02:43 +00:00
|
|
|
}
|
|
|
|
None => {}
|
2019-09-06 15:42:41 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-01-14 03:03:53 +00:00
|
|
|
pub fn queue_input_bytes_serial(&self, out: &[u8]) -> vmm_sys_util::errno::Result<()> {
|
|
|
|
if self.serial.is_some() {
|
|
|
|
self.serial
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.queue_input_bytes(out)?;
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn queue_input_bytes_console(&self, out: &[u8]) {
|
|
|
|
if self.virtio_console_input.is_some() {
|
|
|
|
self.virtio_console_input
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.queue_input_bytes(out);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-06 15:42:41 +00:00
|
|
|
pub fn update_console_size(&self, cols: u16, rows: u16) {
|
2020-07-30 12:56:46 +00:00
|
|
|
if self.virtio_console_input.is_some() {
|
|
|
|
self.virtio_console_input
|
2019-09-06 15:42:41 +00:00
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.update_console_size(cols, rows)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn input_enabled(&self) -> bool {
|
2020-07-30 13:02:43 +00:00
|
|
|
self.input.is_some()
|
2019-09-06 15:42:41 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-23 22:14:13 +00:00
|
|
|
struct AddressManager {
|
|
|
|
allocator: Arc<Mutex<SystemAllocator>>,
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-09-09 14:30:31 +00:00
|
|
|
io_bus: Arc<Bus>,
|
|
|
|
mmio_bus: Arc<Bus>,
|
2020-07-03 09:16:49 +00:00
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-05-12 15:25:30 +00:00
|
|
|
device_tree: Arc<Mutex<DeviceTree>>,
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DeviceRelocation for AddressManager {
|
|
|
|
fn move_bar(
|
|
|
|
&self,
|
|
|
|
old_base: u64,
|
|
|
|
new_base: u64,
|
|
|
|
len: u64,
|
|
|
|
pci_dev: &mut dyn PciDevice,
|
|
|
|
region_type: PciBarRegionType,
|
2019-10-29 01:15:08 +00:00
|
|
|
) -> std::result::Result<(), std::io::Error> {
|
2019-10-28 16:53:13 +00:00
|
|
|
match region_type {
|
2021-03-25 17:01:21 +00:00
|
|
|
PciBarRegionType::IoRegion => {
|
2020-06-03 08:59:35 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
{
|
|
|
|
// Update system allocator
|
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.free_io_addresses(GuestAddress(old_base), len as GuestUsize);
|
2019-10-29 01:15:08 +00:00
|
|
|
|
2020-06-03 08:59:35 +00:00
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_io_addresses(
|
|
|
|
Some(GuestAddress(new_base)),
|
|
|
|
len as GuestUsize,
|
|
|
|
None,
|
|
|
|
)
|
|
|
|
.ok_or_else(|| {
|
|
|
|
io::Error::new(io::ErrorKind::Other, "failed allocating new IO range")
|
|
|
|
})?;
|
2019-10-28 16:53:13 +00:00
|
|
|
|
2020-06-03 08:59:35 +00:00
|
|
|
// Update PIO bus
|
|
|
|
self.io_bus
|
|
|
|
.update_range(old_base, len, new_base, len)
|
|
|
|
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
|
|
|
|
}
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
error!("I/O region is not supported");
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
|
|
|
PciBarRegionType::Memory32BitRegion | PciBarRegionType::Memory64BitRegion => {
|
|
|
|
// Update system allocator
|
|
|
|
if region_type == PciBarRegionType::Memory32BitRegion {
|
2020-03-11 09:12:37 +00:00
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.free_mmio_hole_addresses(GuestAddress(old_base), len as GuestUsize);
|
|
|
|
|
2019-10-28 16:53:13 +00:00
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_hole_addresses(
|
|
|
|
Some(GuestAddress(new_base)),
|
|
|
|
len as GuestUsize,
|
|
|
|
None,
|
|
|
|
)
|
2019-10-29 01:15:08 +00:00
|
|
|
.ok_or_else(|| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
"failed allocating new 32 bits MMIO range",
|
|
|
|
)
|
|
|
|
})?;
|
2019-10-28 16:53:13 +00:00
|
|
|
} else {
|
2020-03-11 09:12:37 +00:00
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.free_mmio_addresses(GuestAddress(old_base), len as GuestUsize);
|
|
|
|
|
2019-10-28 16:53:13 +00:00
|
|
|
self.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(
|
|
|
|
Some(GuestAddress(new_base)),
|
|
|
|
len as GuestUsize,
|
|
|
|
None,
|
|
|
|
)
|
2019-10-29 01:15:08 +00:00
|
|
|
.ok_or_else(|| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
"failed allocating new 64 bits MMIO range",
|
|
|
|
)
|
|
|
|
})?;
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Update MMIO bus
|
|
|
|
self.mmio_bus
|
|
|
|
.update_range(old_base, len, new_base, len)
|
2019-10-29 01:15:08 +00:00
|
|
|
.map_err(|e| io::Error::new(io::ErrorKind::Other, e))?;
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-10-30 15:15:38 +00:00
|
|
|
let any_dev = pci_dev.as_any();
|
|
|
|
if let Some(virtio_pci_dev) = any_dev.downcast_ref::<VirtioPciDevice>() {
|
2020-05-12 15:25:30 +00:00
|
|
|
// Update the device_tree resources associated with the device
|
|
|
|
if let Some(node) = self
|
|
|
|
.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.get_mut(&virtio_pci_dev.id())
|
|
|
|
{
|
|
|
|
let mut resource_updated = false;
|
|
|
|
for resource in node.resources.iter_mut() {
|
|
|
|
if let Resource::MmioAddressRange { base, .. } = resource {
|
|
|
|
if *base == old_base {
|
|
|
|
*base = new_base;
|
|
|
|
resource_updated = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if !resource_updated {
|
|
|
|
return Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!(
|
|
|
|
"Couldn't find a resource with base 0x{:x} for device {}",
|
|
|
|
old_base,
|
|
|
|
virtio_pci_dev.id()
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
return Err(io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!(
|
|
|
|
"Couldn't find device {} from device tree",
|
|
|
|
virtio_pci_dev.id()
|
|
|
|
),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2019-10-30 16:13:29 +00:00
|
|
|
let bar_addr = virtio_pci_dev.config_bar_addr();
|
|
|
|
if bar_addr == new_base {
|
2019-10-30 18:03:02 +00:00
|
|
|
for (event, addr) in virtio_pci_dev.ioeventfds(old_base) {
|
2019-10-30 16:41:08 +00:00
|
|
|
let io_addr = IoEventAddress::Mmio(addr);
|
2020-07-03 09:16:49 +00:00
|
|
|
self.vm.unregister_ioevent(event, &io_addr).map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("failed to unregister ioevent: {:?}", e),
|
|
|
|
)
|
|
|
|
})?;
|
2019-10-30 16:41:08 +00:00
|
|
|
}
|
2019-10-30 18:03:02 +00:00
|
|
|
for (event, addr) in virtio_pci_dev.ioeventfds(new_base) {
|
2019-10-30 16:13:29 +00:00
|
|
|
let io_addr = IoEventAddress::Mmio(addr);
|
2020-07-03 09:16:49 +00:00
|
|
|
self.vm
|
2020-06-22 16:31:42 +00:00
|
|
|
.register_ioevent(event, &io_addr, None)
|
|
|
|
.map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("failed to register ioevent: {:?}", e),
|
|
|
|
)
|
|
|
|
})?;
|
2019-10-30 16:13:29 +00:00
|
|
|
}
|
2020-04-17 17:30:33 +00:00
|
|
|
} else {
|
|
|
|
let virtio_dev = virtio_pci_dev.virtio_device();
|
|
|
|
let mut virtio_dev = virtio_dev.lock().unwrap();
|
|
|
|
if let Some(mut shm_regions) = virtio_dev.get_shm_regions() {
|
|
|
|
if shm_regions.addr.raw_value() == old_base {
|
2020-07-16 10:47:02 +00:00
|
|
|
let mem_region = self.vm.make_user_memory_region(
|
2020-07-04 11:38:17 +00:00
|
|
|
shm_regions.mem_slot,
|
|
|
|
old_base,
|
2021-07-03 13:58:39 +00:00
|
|
|
shm_regions.len,
|
2020-07-04 11:38:17 +00:00
|
|
|
shm_regions.host_addr,
|
|
|
|
false,
|
2020-11-11 18:16:39 +00:00
|
|
|
false,
|
2020-07-04 11:38:17 +00:00
|
|
|
);
|
2020-04-17 17:30:33 +00:00
|
|
|
|
2021-07-03 13:58:39 +00:00
|
|
|
self.vm.remove_user_memory_region(mem_region).map_err(|e| {
|
2020-06-22 16:31:42 +00:00
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
2021-07-03 13:58:39 +00:00
|
|
|
format!("failed to remove user memory region: {:?}", e),
|
2020-06-22 16:31:42 +00:00
|
|
|
)
|
|
|
|
})?;
|
2020-04-17 17:30:33 +00:00
|
|
|
|
|
|
|
// Create new mapping by inserting new region to KVM.
|
2020-07-16 10:47:02 +00:00
|
|
|
let mem_region = self.vm.make_user_memory_region(
|
|
|
|
shm_regions.mem_slot,
|
|
|
|
new_base,
|
|
|
|
shm_regions.len,
|
|
|
|
shm_regions.host_addr,
|
|
|
|
false,
|
2020-11-11 18:16:39 +00:00
|
|
|
false,
|
2020-07-16 10:47:02 +00:00
|
|
|
);
|
2020-04-17 17:30:33 +00:00
|
|
|
|
2021-07-03 13:58:39 +00:00
|
|
|
self.vm.create_user_memory_region(mem_region).map_err(|e| {
|
2020-06-02 02:29:54 +00:00
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
2021-07-03 13:58:39 +00:00
|
|
|
format!("failed to create user memory regions: {:?}", e),
|
2020-06-02 02:29:54 +00:00
|
|
|
)
|
|
|
|
})?;
|
2020-04-17 17:30:33 +00:00
|
|
|
|
|
|
|
// Update shared memory regions to reflect the new mapping.
|
|
|
|
shm_regions.addr = GuestAddress(new_base);
|
|
|
|
virtio_dev.set_shm_regions(shm_regions).map_err(|e| {
|
|
|
|
io::Error::new(
|
|
|
|
io::ErrorKind::Other,
|
|
|
|
format!("failed to update shared memory regions: {:?}", e),
|
|
|
|
)
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
}
|
2019-10-30 15:15:38 +00:00
|
|
|
}
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
|
|
|
|
2019-10-29 01:15:08 +00:00
|
|
|
pci_dev.move_bar(old_base, new_base)
|
2019-10-28 16:53:13 +00:00
|
|
|
}
|
2019-10-23 22:14:13 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 10:08:51 +00:00
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
struct DeviceManagerState {
|
2020-04-30 17:10:31 +00:00
|
|
|
device_tree: DeviceTree,
|
2020-04-28 10:08:51 +00:00
|
|
|
device_id_cnt: Wrapping<usize>,
|
|
|
|
}
|
|
|
|
|
2021-03-04 23:34:45 +00:00
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct PtyPair {
|
|
|
|
pub main: File,
|
|
|
|
pub sub: File,
|
|
|
|
pub path: PathBuf,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl PtyPair {
|
|
|
|
fn clone(&self) -> Self {
|
|
|
|
PtyPair {
|
|
|
|
main: self.main.try_clone().unwrap(),
|
|
|
|
sub: self.sub.try_clone().unwrap(),
|
|
|
|
path: self.path.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
#[derive(Clone)]
|
|
|
|
pub enum PciDeviceHandle {
|
2021-03-17 17:26:01 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
Vfio(Arc<Mutex<VfioPciDevice>>),
|
|
|
|
Virtio(Arc<Mutex<VirtioPciDevice>>),
|
|
|
|
}
|
|
|
|
|
2019-10-23 22:14:13 +00:00
|
|
|
pub struct DeviceManager {
|
|
|
|
// Manage address space related to devices
|
|
|
|
address_manager: Arc<AddressManager>,
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-06 15:42:41 +00:00
|
|
|
// Console abstraction
|
|
|
|
console: Arc<Console>,
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2021-01-14 03:03:53 +00:00
|
|
|
// console PTY
|
2021-03-04 23:34:45 +00:00
|
|
|
console_pty: Option<Arc<Mutex<PtyPair>>>,
|
2021-01-14 03:03:53 +00:00
|
|
|
|
|
|
|
// serial PTY
|
2021-03-04 23:34:45 +00:00
|
|
|
serial_pty: Option<Arc<Mutex<PtyPair>>>,
|
2021-01-14 03:03:53 +00:00
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
// Interrupt controller
|
2020-05-25 08:59:09 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-05-25 08:27:08 +00:00
|
|
|
interrupt_controller: Option<Arc<Mutex<ioapic::Ioapic>>>,
|
2020-05-25 08:59:09 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
interrupt_controller: Option<Arc<Mutex<gic::Gic>>>,
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-11 15:22:00 +00:00
|
|
|
// Things to be added to the commandline (i.e. for virtio-mmio)
|
|
|
|
cmdline_additions: Vec<String>,
|
2019-10-02 20:57:20 +00:00
|
|
|
|
2019-11-27 15:28:22 +00:00
|
|
|
// ACPI GED notification device
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-25 17:01:21 +00:00
|
|
|
ged_notification_device: Option<Arc<Mutex<devices::AcpiGedDevice>>>,
|
2019-12-06 16:14:32 +00:00
|
|
|
|
|
|
|
// VM configuration
|
|
|
|
config: Arc<Mutex<VmConfig>>,
|
2019-11-18 23:24:31 +00:00
|
|
|
|
2019-12-20 15:25:06 +00:00
|
|
|
// Memory Manager
|
2020-01-31 11:55:30 +00:00
|
|
|
memory_manager: Arc<Mutex<MemoryManager>>,
|
2020-02-14 10:08:14 +00:00
|
|
|
|
|
|
|
// The virtio devices on the system
|
2020-04-27 12:38:24 +00:00
|
|
|
virtio_devices: Vec<(VirtioDeviceArc, bool, String)>,
|
2020-02-14 09:55:19 +00:00
|
|
|
|
2020-03-04 14:46:40 +00:00
|
|
|
// List of bus devices
|
|
|
|
// Let the DeviceManager keep strong references to the BusDevice devices.
|
|
|
|
// This allows the IO and MMIO buses to be provided with Weak references,
|
|
|
|
// which prevents cyclic dependencies.
|
|
|
|
bus_devices: Vec<Arc<Mutex<dyn BusDevice>>>,
|
|
|
|
|
2020-04-27 08:37:56 +00:00
|
|
|
// Counter to keep track of the consumed device IDs.
|
|
|
|
device_id_cnt: Wrapping<usize>,
|
|
|
|
|
2020-02-27 16:44:14 +00:00
|
|
|
// Keep a reference to the PCI bus
|
|
|
|
pci_bus: Option<Arc<Mutex<PciBus>>>,
|
2020-02-27 17:10:30 +00:00
|
|
|
|
2020-05-12 09:49:12 +00:00
|
|
|
#[cfg_attr(target_arch = "aarch64", allow(dead_code))]
|
2020-02-27 17:10:30 +00:00
|
|
|
// MSI Interrupt Manager
|
|
|
|
msi_interrupt_manager: Arc<dyn InterruptManager<GroupConfig = MsiIrqGroupConfig>>,
|
2020-02-27 17:24:47 +00:00
|
|
|
|
2021-03-29 08:23:58 +00:00
|
|
|
#[cfg_attr(feature = "mshv", allow(dead_code))]
|
2021-02-09 08:17:29 +00:00
|
|
|
// Legacy Interrupt Manager
|
|
|
|
legacy_interrupt_manager: Option<Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>>,
|
|
|
|
|
2020-07-17 15:20:47 +00:00
|
|
|
// Passthrough device handle
|
2020-07-21 09:56:00 +00:00
|
|
|
passthrough_device: Option<Arc<dyn hypervisor::Device>>,
|
2020-02-27 17:43:47 +00:00
|
|
|
|
|
|
|
// Paravirtualized IOMMU
|
2020-07-02 12:25:19 +00:00
|
|
|
iommu_device: Option<Arc<Mutex<virtio_devices::Iommu>>>,
|
2020-02-28 11:29:43 +00:00
|
|
|
|
2021-06-14 13:38:24 +00:00
|
|
|
// PCI information about devices attached to the paravirtualized IOMMU
|
|
|
|
// It contains the virtual IOMMU PCI BDF along with the list of PCI BDF
|
|
|
|
// representing the devices attached to the virtual IOMMU. This is useful
|
|
|
|
// information for filling the ACPI VIOT table.
|
|
|
|
iommu_attached_devices: Option<(u32, Vec<u32>)>,
|
|
|
|
|
2020-02-28 11:29:43 +00:00
|
|
|
// Bitmap of PCI devices to hotplug.
|
|
|
|
pci_devices_up: u32,
|
|
|
|
|
|
|
|
// Bitmap of PCI devices to hotunplug.
|
|
|
|
pci_devices_down: u32,
|
2020-03-06 10:34:24 +00:00
|
|
|
|
2021-03-17 17:45:57 +00:00
|
|
|
// List of allocated IRQs for each PCI slot.
|
|
|
|
pci_irq_slots: [u8; 32],
|
2021-02-09 09:35:18 +00:00
|
|
|
|
2020-04-27 17:12:00 +00:00
|
|
|
// Tree of devices, representing the dependencies between devices.
|
|
|
|
// Useful for introspection, snapshot and restore.
|
2020-05-12 13:53:09 +00:00
|
|
|
device_tree: Arc<Mutex<DeviceTree>>,
|
2020-04-28 17:57:28 +00:00
|
|
|
|
|
|
|
// Exit event
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
exit_evt: EventFd,
|
2020-06-09 06:17:42 +00:00
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
reset_evt: EventFd,
|
2020-06-09 06:17:42 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
2021-03-25 17:01:21 +00:00
|
|
|
id_to_dev_info: HashMap<(DeviceType, String), MmioDeviceInfo>,
|
2020-08-04 02:45:53 +00:00
|
|
|
|
|
|
|
// seccomp action
|
|
|
|
seccomp_action: SeccompAction,
|
2020-09-11 14:15:29 +00:00
|
|
|
|
|
|
|
// List of guest NUMA nodes.
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
numa_nodes: NumaNodes,
|
2020-10-14 10:04:42 +00:00
|
|
|
|
|
|
|
// Possible handle to the virtio-balloon device
|
|
|
|
balloon: Option<Arc<Mutex<virtio_devices::Balloon>>>,
|
2020-11-09 13:29:05 +00:00
|
|
|
|
|
|
|
// Virtio Device activation EventFd to allow the VMM thread to trigger device
|
|
|
|
// activation and thus start the threads from the VMM thread
|
|
|
|
activate_evt: EventFd,
|
2021-01-20 16:12:02 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
acpi_address: GuestAddress,
|
2021-03-03 10:59:53 +00:00
|
|
|
|
|
|
|
// Possible handle to the virtio-balloon device
|
|
|
|
virtio_mem_devices: Vec<Arc<Mutex<virtio_devices::Mem>>>,
|
2021-03-07 12:11:07 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
// GPIO device for AArch64
|
2021-03-25 17:01:21 +00:00
|
|
|
gpio_device: Option<Arc<Mutex<devices::legacy::Gpio>>>,
|
2021-07-20 07:59:32 +00:00
|
|
|
|
|
|
|
// Flag to force setting the iommu on virtio devices
|
|
|
|
force_iommu: bool,
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl DeviceManager {
|
2020-09-11 14:15:29 +00:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2019-09-04 13:55:14 +00:00
|
|
|
pub fn new(
|
2020-07-03 09:16:49 +00:00
|
|
|
vm: Arc<dyn hypervisor::Vm>,
|
2020-01-31 16:23:49 +00:00
|
|
|
config: Arc<Mutex<VmConfig>>,
|
2020-01-31 11:55:30 +00:00
|
|
|
memory_manager: Arc<Mutex<MemoryManager>>,
|
2019-09-16 13:25:08 +00:00
|
|
|
_exit_evt: &EventFd,
|
2020-09-25 09:39:45 +00:00
|
|
|
reset_evt: &EventFd,
|
2020-08-04 02:45:53 +00:00
|
|
|
seccomp_action: SeccompAction,
|
2020-09-11 14:15:29 +00:00
|
|
|
#[cfg(feature = "acpi")] numa_nodes: NumaNodes,
|
2020-11-09 13:29:05 +00:00
|
|
|
activate_evt: &EventFd,
|
2021-07-20 07:59:32 +00:00
|
|
|
force_iommu: bool,
|
2020-02-27 09:29:03 +00:00
|
|
|
) -> DeviceManagerResult<Arc<Mutex<Self>>> {
|
2020-05-12 15:25:30 +00:00
|
|
|
let device_tree = Arc::new(Mutex::new(DeviceTree::new()));
|
|
|
|
|
2019-10-23 22:14:13 +00:00
|
|
|
let address_manager = Arc::new(AddressManager {
|
2020-03-16 17:58:23 +00:00
|
|
|
allocator: memory_manager.lock().unwrap().allocator(),
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-09-09 14:30:31 +00:00
|
|
|
io_bus: Arc::new(Bus::new()),
|
|
|
|
mmio_bus: Arc::new(Bus::new()),
|
2020-07-03 09:16:49 +00:00
|
|
|
vm: vm.clone(),
|
2020-05-12 15:25:30 +00:00
|
|
|
device_tree: Arc::clone(&device_tree),
|
2019-10-23 22:14:13 +00:00
|
|
|
});
|
|
|
|
|
2020-02-04 09:59:53 +00:00
|
|
|
// First we create the MSI interrupt manager, the legacy one is created
|
|
|
|
// later, after the IOAPIC device creation.
|
|
|
|
// The reason we create the MSI one first is because the IOAPIC needs it,
|
|
|
|
// and then the legacy interrupt manager needs an IOAPIC. So we're
|
|
|
|
// handling a linear dependency chain:
|
|
|
|
// msi_interrupt_manager <- IOAPIC <- legacy_interrupt_manager.
|
2020-02-04 11:04:10 +00:00
|
|
|
let msi_interrupt_manager: Arc<dyn InterruptManager<GroupConfig = MsiIrqGroupConfig>> =
|
2020-07-29 12:09:52 +00:00
|
|
|
Arc::new(MsiInterruptManager::new(
|
2020-01-22 17:39:46 +00:00
|
|
|
Arc::clone(&address_manager.allocator),
|
2020-07-03 09:16:49 +00:00
|
|
|
vm,
|
2020-01-22 17:39:46 +00:00
|
|
|
));
|
|
|
|
|
2021-01-20 16:12:02 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
let acpi_address = address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(None, DEVICE_MANAGER_ACPI_SIZE as u64, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateIoPort)?;
|
2020-04-28 17:57:28 +00:00
|
|
|
let device_manager = DeviceManager {
|
2020-02-27 10:36:30 +00:00
|
|
|
address_manager: Arc::clone(&address_manager),
|
2020-01-29 15:53:12 +00:00
|
|
|
console: Arc::new(Console::default()),
|
2020-05-25 08:27:08 +00:00
|
|
|
interrupt_controller: None,
|
2020-04-28 17:57:28 +00:00
|
|
|
cmdline_additions: Vec::new(),
|
2019-11-27 15:28:22 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
2020-01-29 15:53:12 +00:00
|
|
|
ged_notification_device: None,
|
2020-01-31 16:23:49 +00:00
|
|
|
config,
|
2020-01-31 11:55:30 +00:00
|
|
|
memory_manager,
|
2020-02-14 10:08:14 +00:00
|
|
|
virtio_devices: Vec::new(),
|
2020-04-28 17:57:28 +00:00
|
|
|
bus_devices: Vec::new(),
|
2020-04-27 08:37:56 +00:00
|
|
|
device_id_cnt: Wrapping(0),
|
2020-02-27 16:44:14 +00:00
|
|
|
pci_bus: None,
|
2020-04-28 17:57:28 +00:00
|
|
|
msi_interrupt_manager,
|
2021-02-09 08:17:29 +00:00
|
|
|
legacy_interrupt_manager: None,
|
2020-07-17 15:20:47 +00:00
|
|
|
passthrough_device: None,
|
2020-02-27 17:43:47 +00:00
|
|
|
iommu_device: None,
|
2021-06-14 13:38:24 +00:00
|
|
|
iommu_attached_devices: None,
|
2020-02-28 11:29:43 +00:00
|
|
|
pci_devices_up: 0,
|
|
|
|
pci_devices_down: 0,
|
2021-03-17 17:45:57 +00:00
|
|
|
pci_irq_slots: [0; 32],
|
2020-05-12 15:25:30 +00:00
|
|
|
device_tree,
|
2020-04-28 17:57:28 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
exit_evt: _exit_evt.try_clone().map_err(DeviceManagerError::EventFd)?,
|
|
|
|
reset_evt: reset_evt.try_clone().map_err(DeviceManagerError::EventFd)?,
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
id_to_dev_info: HashMap::new(),
|
2020-08-04 02:45:53 +00:00
|
|
|
seccomp_action,
|
2020-09-11 14:15:29 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
numa_nodes,
|
2020-10-14 10:04:42 +00:00
|
|
|
balloon: None,
|
2020-11-09 13:29:05 +00:00
|
|
|
activate_evt: activate_evt
|
|
|
|
.try_clone()
|
|
|
|
.map_err(DeviceManagerError::EventFd)?,
|
2021-01-20 16:12:02 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
acpi_address,
|
2021-01-14 03:03:53 +00:00
|
|
|
serial_pty: None,
|
|
|
|
console_pty: None,
|
2021-03-03 10:59:53 +00:00
|
|
|
virtio_mem_devices: Vec::new(),
|
2021-03-07 12:11:07 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
gpio_device: None,
|
2021-07-20 07:59:32 +00:00
|
|
|
force_iommu,
|
2020-01-29 15:33:30 +00:00
|
|
|
};
|
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
let device_manager = Arc::new(Mutex::new(device_manager));
|
2019-05-12 17:38:24 +00:00
|
|
|
|
2020-01-29 15:53:12 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
2020-04-28 17:57:28 +00:00
|
|
|
address_manager
|
2021-01-20 16:12:02 +00:00
|
|
|
.mmio_bus
|
2020-04-28 17:57:28 +00:00
|
|
|
.insert(
|
|
|
|
Arc::clone(&device_manager) as Arc<Mutex<dyn BusDevice>>,
|
2021-01-20 16:12:02 +00:00
|
|
|
acpi_address.0,
|
|
|
|
DEVICE_MANAGER_ACPI_SIZE as u64,
|
2020-04-28 17:57:28 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
2020-01-29 15:53:12 +00:00
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
Ok(device_manager)
|
|
|
|
}
|
2020-01-29 15:53:12 +00:00
|
|
|
|
2021-03-04 23:34:45 +00:00
|
|
|
pub fn serial_pty(&self) -> Option<PtyPair> {
|
2021-01-14 03:03:53 +00:00
|
|
|
self.serial_pty
|
|
|
|
.as_ref()
|
2021-03-04 23:34:45 +00:00
|
|
|
.map(|pty| pty.lock().unwrap().clone())
|
2021-01-14 03:03:53 +00:00
|
|
|
}
|
|
|
|
|
2021-03-04 23:34:45 +00:00
|
|
|
pub fn console_pty(&self) -> Option<PtyPair> {
|
2021-01-14 03:03:53 +00:00
|
|
|
self.console_pty
|
|
|
|
.as_ref()
|
2021-03-04 23:34:45 +00:00
|
|
|
.map(|pty| pty.lock().unwrap().clone())
|
2021-01-14 03:03:53 +00:00
|
|
|
}
|
|
|
|
|
2021-03-04 23:34:45 +00:00
|
|
|
pub fn create_devices(
|
|
|
|
&mut self,
|
|
|
|
serial_pty: Option<PtyPair>,
|
|
|
|
console_pty: Option<PtyPair>,
|
|
|
|
) -> DeviceManagerResult<()> {
|
2020-04-28 17:57:28 +00:00
|
|
|
let mut virtio_devices: Vec<(VirtioDeviceArc, bool, String)> = Vec::new();
|
2020-01-29 15:33:30 +00:00
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
let interrupt_controller = self.add_interrupt_controller()?;
|
2020-02-14 10:08:14 +00:00
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
// Now we can create the legacy interrupt manager, which needs the freshly
|
|
|
|
// formed IOAPIC device.
|
|
|
|
let legacy_interrupt_manager: Arc<
|
|
|
|
dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>,
|
2020-06-25 14:56:49 +00:00
|
|
|
> = Arc::new(LegacyUserspaceInterruptManager::new(Arc::clone(
|
2020-05-25 08:27:08 +00:00
|
|
|
&interrupt_controller,
|
|
|
|
)));
|
2020-02-27 10:36:30 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
2021-01-20 16:12:02 +00:00
|
|
|
{
|
|
|
|
let memory_manager_acpi_address = self.memory_manager.lock().unwrap().acpi_address;
|
|
|
|
self.address_manager
|
|
|
|
.mmio_bus
|
|
|
|
.insert(
|
|
|
|
Arc::clone(&self.memory_manager) as Arc<Mutex<dyn BusDevice>>,
|
|
|
|
memory_manager_acpi_address.0,
|
|
|
|
MEMORY_MANAGER_ACPI_SIZE as u64,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
}
|
2020-02-27 10:36:30 +00:00
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-04-28 17:57:28 +00:00
|
|
|
self.add_legacy_devices(
|
|
|
|
self.reset_evt
|
|
|
|
.try_clone()
|
|
|
|
.map_err(DeviceManagerError::EventFd)?,
|
|
|
|
)?;
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
self.add_legacy_devices(&legacy_interrupt_manager)?;
|
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
{
|
|
|
|
self.ged_notification_device = self.add_acpi_devices(
|
|
|
|
&legacy_interrupt_manager,
|
|
|
|
self.reset_evt
|
|
|
|
.try_clone()
|
|
|
|
.map_err(DeviceManagerError::EventFd)?,
|
|
|
|
self.exit_evt
|
|
|
|
.try_clone()
|
|
|
|
.map_err(DeviceManagerError::EventFd)?,
|
|
|
|
)?;
|
|
|
|
}
|
|
|
|
|
2021-03-04 23:34:45 +00:00
|
|
|
self.console = self.add_console_device(
|
|
|
|
&legacy_interrupt_manager,
|
|
|
|
&mut virtio_devices,
|
|
|
|
serial_pty,
|
|
|
|
console_pty,
|
|
|
|
)?;
|
2020-04-28 17:57:28 +00:00
|
|
|
|
2021-02-09 09:35:18 +00:00
|
|
|
// Reserve some IRQs for PCI devices in case they need to support INTx.
|
|
|
|
self.reserve_legacy_interrupts_for_pci_devices()?;
|
|
|
|
|
2021-02-09 08:17:29 +00:00
|
|
|
self.legacy_interrupt_manager = Some(legacy_interrupt_manager);
|
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
virtio_devices.append(&mut self.make_virtio_devices()?);
|
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
self.add_pci_devices(virtio_devices.clone())?;
|
2020-04-28 17:57:28 +00:00
|
|
|
|
|
|
|
self.virtio_devices = virtio_devices;
|
|
|
|
|
|
|
|
Ok(())
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2021-02-09 09:35:18 +00:00
|
|
|
fn reserve_legacy_interrupts_for_pci_devices(&mut self) -> DeviceManagerResult<()> {
|
|
|
|
// Reserve 8 IRQs which will be shared across all PCI devices.
|
|
|
|
let num_irqs = 8;
|
2021-03-17 17:45:57 +00:00
|
|
|
let mut irqs: Vec<u8> = Vec::new();
|
2021-02-09 09:35:18 +00:00
|
|
|
for _ in 0..num_irqs {
|
|
|
|
irqs.push(
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_irq()
|
2021-03-17 17:45:57 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateIrq)? as u8,
|
2021-02-09 09:35:18 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
// There are 32 devices on the PCI bus, let's assign them an IRQ.
|
|
|
|
for i in 0..32 {
|
2021-03-17 17:45:57 +00:00
|
|
|
self.pci_irq_slots[i] = irqs[(i % num_irqs) as usize];
|
2021-02-09 09:35:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-04-28 10:08:51 +00:00
|
|
|
fn state(&self) -> DeviceManagerState {
|
|
|
|
DeviceManagerState {
|
2020-05-12 13:53:09 +00:00
|
|
|
device_tree: self.device_tree.lock().unwrap().clone(),
|
2020-04-28 10:08:51 +00:00
|
|
|
device_id_cnt: self.device_id_cnt,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-11 16:00:53 +00:00
|
|
|
fn set_state(&mut self, state: &DeviceManagerState) {
|
2020-05-12 13:53:09 +00:00
|
|
|
self.device_tree = Arc::new(Mutex::new(state.device_tree.clone()));
|
2020-04-28 10:08:51 +00:00
|
|
|
self.device_id_cnt = state.device_id_cnt;
|
|
|
|
}
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
/// Gets the information of the devices registered up to some point in time.
|
2021-03-25 17:01:21 +00:00
|
|
|
pub fn get_device_info(&self) -> &HashMap<(DeviceType, String), MmioDeviceInfo> {
|
2020-06-09 06:17:42 +00:00
|
|
|
&self.id_to_dev_info
|
|
|
|
}
|
|
|
|
|
2019-11-18 11:23:27 +00:00
|
|
|
#[allow(unused_variables)]
|
|
|
|
fn add_pci_devices(
|
2020-01-29 15:33:30 +00:00
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
virtio_devices: Vec<(VirtioDeviceArc, bool, String)>,
|
2019-11-18 11:23:27 +00:00
|
|
|
) -> DeviceManagerResult<()> {
|
2020-10-15 15:34:35 +00:00
|
|
|
let pci_root = PciRoot::new(None);
|
|
|
|
let mut pci_bus = PciBus::new(
|
|
|
|
pci_root,
|
|
|
|
Arc::clone(&self.address_manager) as Arc<dyn DeviceRelocation>,
|
|
|
|
);
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
let iommu_id = String::from(IOMMU_DEVICE_NAME);
|
2020-04-27 12:51:15 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
let (iommu_device, iommu_mapping) = if self.config.lock().unwrap().iommu {
|
|
|
|
let (device, mapping) =
|
|
|
|
virtio_devices::Iommu::new(iommu_id.clone(), self.seccomp_action.clone())
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioIommu)?;
|
|
|
|
let device = Arc::new(Mutex::new(device));
|
|
|
|
self.iommu_device = Some(Arc::clone(&device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(iommu_id.clone(), device_node!(iommu_id, device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
(Some(device), Some(mapping))
|
|
|
|
} else {
|
|
|
|
(None, None)
|
|
|
|
};
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
let mut iommu_attached_devices = Vec::new();
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
for (device, iommu_attached, id) in virtio_devices {
|
|
|
|
let mapping: &Option<Arc<IommuMapping>> = if iommu_attached {
|
|
|
|
&iommu_mapping
|
|
|
|
} else {
|
|
|
|
&None
|
|
|
|
};
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2021-02-09 07:36:31 +00:00
|
|
|
let dev_id = self.add_virtio_pci_device(device, &mut pci_bus, mapping, id)?;
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
if iommu_attached {
|
|
|
|
iommu_attached_devices.push(dev_id);
|
2019-11-18 11:23:27 +00:00
|
|
|
}
|
2020-10-15 15:34:35 +00:00
|
|
|
}
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2021-02-09 07:36:31 +00:00
|
|
|
let mut vfio_iommu_device_ids = self.add_vfio_devices(&mut pci_bus)?;
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
iommu_attached_devices.append(&mut vfio_iommu_device_ids);
|
2020-02-27 16:44:14 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
if let Some(iommu_device) = iommu_device {
|
2021-06-14 13:38:24 +00:00
|
|
|
let dev_id = self.add_virtio_pci_device(iommu_device, &mut pci_bus, &None, iommu_id)?;
|
|
|
|
self.iommu_attached_devices = Some((dev_id, iommu_attached_devices));
|
2019-11-18 11:23:27 +00:00
|
|
|
}
|
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
let pci_bus = Arc::new(Mutex::new(pci_bus));
|
|
|
|
let pci_config_io = Arc::new(Mutex::new(PciConfigIo::new(Arc::clone(&pci_bus))));
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&pci_config_io) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
self.address_manager
|
|
|
|
.io_bus
|
|
|
|
.insert(pci_config_io, 0xcf8, 0x8)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
let pci_config_mmio = Arc::new(Mutex::new(PciConfigMmio::new(Arc::clone(&pci_bus))));
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&pci_config_mmio) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
self.address_manager
|
|
|
|
.mmio_bus
|
|
|
|
.insert(
|
|
|
|
pci_config_mmio,
|
|
|
|
arch::layout::PCI_MMCONFIG_START.0,
|
|
|
|
arch::layout::PCI_MMCONFIG_SIZE,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
2019-11-18 11:23:27 +00:00
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
self.pci_bus = Some(pci_bus);
|
2019-11-18 11:35:05 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-05-12 09:49:12 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
2020-05-25 08:27:08 +00:00
|
|
|
fn add_interrupt_controller(
|
|
|
|
&mut self,
|
|
|
|
) -> DeviceManagerResult<Arc<Mutex<dyn InterruptController>>> {
|
2020-05-25 08:59:09 +00:00
|
|
|
let interrupt_controller: Arc<Mutex<gic::Gic>> = Arc::new(Mutex::new(
|
|
|
|
gic::Gic::new(
|
|
|
|
self.config.lock().unwrap().cpus.boot_vcpus,
|
|
|
|
Arc::clone(&self.msi_interrupt_manager),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptController)?,
|
|
|
|
));
|
|
|
|
|
|
|
|
self.interrupt_controller = Some(interrupt_controller.clone());
|
|
|
|
|
2020-09-04 03:31:48 +00:00
|
|
|
// Unlike x86_64, the "interrupt_controller" here for AArch64 is only
|
|
|
|
// a `Gic` object that implements the `InterruptController` to provide
|
|
|
|
// interrupt delivery service. This is not the real GIC device so that
|
|
|
|
// we do not need to insert it to the device tree.
|
2020-05-25 08:59:09 +00:00
|
|
|
|
|
|
|
Ok(interrupt_controller)
|
2020-05-12 09:49:12 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:03:05 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
pub fn get_interrupt_controller(&mut self) -> Option<&Arc<Mutex<gic::Gic>>> {
|
|
|
|
self.interrupt_controller.as_ref()
|
|
|
|
}
|
|
|
|
|
2020-05-12 09:49:12 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-05-25 08:27:08 +00:00
|
|
|
fn add_interrupt_controller(
|
|
|
|
&mut self,
|
|
|
|
) -> DeviceManagerResult<Arc<Mutex<dyn InterruptController>>> {
|
2020-04-28 13:26:35 +00:00
|
|
|
let id = String::from(IOAPIC_DEVICE_NAME);
|
2020-04-28 13:22:38 +00:00
|
|
|
|
2019-12-05 16:36:28 +00:00
|
|
|
// Create IOAPIC
|
2020-05-25 08:27:08 +00:00
|
|
|
let interrupt_controller = Arc::new(Mutex::new(
|
2020-04-30 18:08:04 +00:00
|
|
|
ioapic::Ioapic::new(
|
|
|
|
id.clone(),
|
|
|
|
APIC_START,
|
|
|
|
Arc::clone(&self.msi_interrupt_manager),
|
|
|
|
)
|
2020-05-25 08:27:08 +00:00
|
|
|
.map_err(DeviceManagerError::CreateInterruptController)?,
|
2020-01-22 21:55:02 +00:00
|
|
|
));
|
2019-11-18 11:02:37 +00:00
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
self.interrupt_controller = Some(interrupt_controller.clone());
|
2020-04-28 17:57:28 +00:00
|
|
|
|
|
|
|
self.address_manager
|
2019-12-05 16:36:28 +00:00
|
|
|
.mmio_bus
|
2020-05-25 08:27:08 +00:00
|
|
|
.insert(interrupt_controller.clone(), IOAPIC_START.0, IOAPIC_SIZE)
|
2019-12-05 16:36:28 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
2019-11-18 11:02:37 +00:00
|
|
|
|
2020-04-28 17:57:28 +00:00
|
|
|
self.bus_devices
|
2020-05-25 08:27:08 +00:00
|
|
|
.push(Arc::clone(&interrupt_controller) as Arc<Mutex<dyn BusDevice>>);
|
2020-04-28 17:57:28 +00:00
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-25 08:27:08 +00:00
|
|
|
.insert(id.clone(), device_node!(id, interrupt_controller));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
Ok(interrupt_controller)
|
2019-11-18 11:02:37 +00:00
|
|
|
}
|
|
|
|
|
2019-11-27 15:28:22 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
fn add_acpi_devices(
|
2020-01-29 15:53:12 +00:00
|
|
|
&mut self,
|
2020-02-04 11:04:10 +00:00
|
|
|
interrupt_manager: &Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>,
|
2019-11-18 10:55:04 +00:00
|
|
|
reset_evt: EventFd,
|
|
|
|
exit_evt: EventFd,
|
2021-03-25 17:01:21 +00:00
|
|
|
) -> DeviceManagerResult<Option<Arc<Mutex<devices::AcpiGedDevice>>>> {
|
2021-01-20 15:22:51 +00:00
|
|
|
let shutdown_device = Arc::new(Mutex::new(devices::AcpiShutdownDevice::new(
|
2019-11-27 15:28:22 +00:00
|
|
|
exit_evt, reset_evt,
|
|
|
|
)));
|
2019-11-18 10:55:04 +00:00
|
|
|
|
2020-03-04 14:46:40 +00:00
|
|
|
self.bus_devices
|
2021-01-20 15:22:51 +00:00
|
|
|
.push(Arc::clone(&shutdown_device) as Arc<Mutex<dyn BusDevice>>);
|
2020-03-04 14:46:40 +00:00
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
{
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_io_addresses(Some(GuestAddress(0x3c0)), 0x8, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateIoPort)?;
|
2019-11-27 15:25:55 +00:00
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
self.address_manager
|
|
|
|
.io_bus
|
|
|
|
.insert(shutdown_device, 0x3c0, 0x4)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
}
|
2019-11-18 10:55:04 +00:00
|
|
|
|
2020-01-29 15:53:12 +00:00
|
|
|
let ged_irq = self
|
|
|
|
.address_manager
|
2019-12-09 15:07:31 +00:00
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_irq()
|
|
|
|
.unwrap();
|
2020-01-20 15:00:18 +00:00
|
|
|
let interrupt_group = interrupt_manager
|
2020-02-04 11:04:10 +00:00
|
|
|
.create_group(LegacyIrqGroupConfig {
|
|
|
|
irq: ged_irq as InterruptIndex,
|
|
|
|
})
|
2020-01-20 15:00:18 +00:00
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?;
|
2021-01-20 15:32:10 +00:00
|
|
|
let ged_address = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(None, devices::acpi::GED_DEVICE_ACPI_SIZE as u64, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateMmioAddress)?;
|
2021-03-25 17:01:21 +00:00
|
|
|
let ged_device = Arc::new(Mutex::new(devices::AcpiGedDevice::new(
|
2020-01-20 15:00:18 +00:00
|
|
|
interrupt_group,
|
|
|
|
ged_irq,
|
2021-01-20 15:32:10 +00:00
|
|
|
ged_address,
|
2020-01-20 15:00:18 +00:00
|
|
|
)));
|
2020-01-29 15:53:12 +00:00
|
|
|
self.address_manager
|
2021-01-20 15:32:10 +00:00
|
|
|
.mmio_bus
|
|
|
|
.insert(
|
|
|
|
ged_device.clone(),
|
|
|
|
ged_address.0,
|
|
|
|
devices::acpi::GED_DEVICE_ACPI_SIZE as u64,
|
|
|
|
)
|
2020-01-24 10:36:39 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
2021-01-20 15:32:10 +00:00
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&ged_device) as Arc<Mutex<dyn BusDevice>>);
|
2020-07-23 09:17:07 +00:00
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
let pm_timer_device = Arc::new(Mutex::new(devices::AcpiPmTimerDevice::new()));
|
2020-07-23 09:17:07 +00:00
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&pm_timer_device) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
{
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_io_addresses(Some(GuestAddress(0xb008)), 0x4, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateIoPort)?;
|
2020-07-23 09:17:07 +00:00
|
|
|
|
2021-01-25 10:48:45 +00:00
|
|
|
self.address_manager
|
|
|
|
.io_bus
|
|
|
|
.insert(pm_timer_device, 0xb008, 0x4)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
}
|
2020-07-23 09:17:07 +00:00
|
|
|
|
2019-11-27 15:28:22 +00:00
|
|
|
Ok(Some(ged_device))
|
2019-11-18 10:55:04 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-01-31 11:55:30 +00:00
|
|
|
fn add_legacy_devices(&mut self, reset_evt: EventFd) -> DeviceManagerResult<()> {
|
2019-11-18 10:44:01 +00:00
|
|
|
// Add a shutdown device (i8042)
|
|
|
|
let i8042 = Arc::new(Mutex::new(devices::legacy::I8042Device::new(reset_evt)));
|
|
|
|
|
2020-03-04 14:46:40 +00:00
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&i8042) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
2020-01-29 15:53:12 +00:00
|
|
|
self.address_manager
|
2019-11-18 10:44:01 +00:00
|
|
|
.io_bus
|
vmm: device_manager: Remove redundant clones
Address updated clippy errors:
error: redundant clone
--> vmm/src/device_manager.rs:699:32
|
699 | .insert(acpi_device.clone(), 0x3c0, 0x4)
| ^^^^^^^^ help: remove this
|
= note: `-D clippy::redundant-clone` implied by `-D warnings`
note: this value is dropped without further use
--> vmm/src/device_manager.rs:699:21
|
699 | .insert(acpi_device.clone(), 0x3c0, 0x4)
| ^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
error: redundant clone
--> vmm/src/device_manager.rs:737:26
|
737 | .insert(i8042.clone(), 0x61, 0x4)
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> vmm/src/device_manager.rs:737:21
|
737 | .insert(i8042.clone(), 0x61, 0x4)
| ^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
error: redundant clone
--> vmm/src/device_manager.rs:754:29
|
754 | .insert(cmos.clone(), 0x70, 0x2)
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> vmm/src/device_manager.rs:754:25
|
754 | .insert(cmos.clone(), 0x70, 0x2)
| ^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
Signed-off-by: Rob Bradford <robert.bradford@intel.com>
2019-12-19 17:02:36 +00:00
|
|
|
.insert(i8042, 0x61, 0x4)
|
2019-11-18 10:44:01 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
#[cfg(feature = "cmos")]
|
|
|
|
{
|
|
|
|
// Add a CMOS emulated device
|
2020-01-31 11:55:30 +00:00
|
|
|
let mem_size = self
|
|
|
|
.memory_manager
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.guest_memory()
|
2020-02-11 16:22:40 +00:00
|
|
|
.memory()
|
2020-01-31 11:55:30 +00:00
|
|
|
.last_addr()
|
|
|
|
.0
|
|
|
|
+ 1;
|
2019-11-18 10:44:01 +00:00
|
|
|
let mem_below_4g = std::cmp::min(arch::layout::MEM_32BIT_RESERVED_START.0, mem_size);
|
|
|
|
let mem_above_4g = mem_size.saturating_sub(arch::layout::RAM_64BIT_START.0);
|
|
|
|
|
|
|
|
let cmos = Arc::new(Mutex::new(devices::legacy::Cmos::new(
|
|
|
|
mem_below_4g,
|
|
|
|
mem_above_4g,
|
|
|
|
)));
|
|
|
|
|
2020-03-04 14:46:40 +00:00
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&cmos) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
2020-01-29 15:53:12 +00:00
|
|
|
self.address_manager
|
2019-11-18 10:44:01 +00:00
|
|
|
.io_bus
|
vmm: device_manager: Remove redundant clones
Address updated clippy errors:
error: redundant clone
--> vmm/src/device_manager.rs:699:32
|
699 | .insert(acpi_device.clone(), 0x3c0, 0x4)
| ^^^^^^^^ help: remove this
|
= note: `-D clippy::redundant-clone` implied by `-D warnings`
note: this value is dropped without further use
--> vmm/src/device_manager.rs:699:21
|
699 | .insert(acpi_device.clone(), 0x3c0, 0x4)
| ^^^^^^^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
error: redundant clone
--> vmm/src/device_manager.rs:737:26
|
737 | .insert(i8042.clone(), 0x61, 0x4)
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> vmm/src/device_manager.rs:737:21
|
737 | .insert(i8042.clone(), 0x61, 0x4)
| ^^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
error: redundant clone
--> vmm/src/device_manager.rs:754:29
|
754 | .insert(cmos.clone(), 0x70, 0x2)
| ^^^^^^^^ help: remove this
|
note: this value is dropped without further use
--> vmm/src/device_manager.rs:754:25
|
754 | .insert(cmos.clone(), 0x70, 0x2)
| ^^^^
= help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#redundant_clone
Signed-off-by: Rob Bradford <robert.bradford@intel.com>
2019-12-19 17:02:36 +00:00
|
|
|
.insert(cmos, 0x70, 0x2)
|
2019-11-18 10:44:01 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
}
|
2020-04-17 09:39:28 +00:00
|
|
|
#[cfg(feature = "fwdebug")]
|
|
|
|
{
|
|
|
|
let fwdebug = Arc::new(Mutex::new(devices::legacy::FwDebugDevice::new()));
|
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&fwdebug) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.io_bus
|
|
|
|
.insert(fwdebug, 0x402, 0x1)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
}
|
2019-11-18 10:44:01 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
fn add_legacy_devices(
|
|
|
|
&mut self,
|
|
|
|
interrupt_manager: &Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>,
|
|
|
|
) -> DeviceManagerResult<()> {
|
|
|
|
// Add a RTC device
|
|
|
|
let rtc_irq = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_irq()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let interrupt_group = interrupt_manager
|
|
|
|
.create_group(LegacyIrqGroupConfig {
|
|
|
|
irq: rtc_irq as InterruptIndex,
|
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?;
|
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
let rtc_device = Arc::new(Mutex::new(devices::legacy::Rtc::new(interrupt_group)));
|
2020-06-09 06:17:42 +00:00
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&rtc_device) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
|
|
|
let addr = GuestAddress(arch::layout::LEGACY_RTC_MAPPED_IO_START);
|
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.mmio_bus
|
2020-08-23 07:45:44 +00:00
|
|
|
.insert(rtc_device, addr.0, MMIO_LEN)
|
2020-06-09 06:17:42 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
|
|
|
|
self.id_to_dev_info.insert(
|
2021-03-25 17:01:21 +00:00
|
|
|
(DeviceType::Rtc, "rtc".to_string()),
|
|
|
|
MmioDeviceInfo {
|
2020-06-09 06:17:42 +00:00
|
|
|
addr: addr.0,
|
|
|
|
irq: rtc_irq,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
2021-03-07 12:11:07 +00:00
|
|
|
// Add a GPIO device
|
|
|
|
let id = String::from(GPIO_DEVICE_NAME_PREFIX);
|
|
|
|
let gpio_irq = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_irq()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let interrupt_group = interrupt_manager
|
|
|
|
.create_group(LegacyIrqGroupConfig {
|
|
|
|
irq: gpio_irq as InterruptIndex,
|
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?;
|
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
let gpio_device = Arc::new(Mutex::new(devices::legacy::Gpio::new(
|
2021-03-07 12:11:07 +00:00
|
|
|
id.clone(),
|
|
|
|
interrupt_group,
|
|
|
|
)));
|
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&gpio_device) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
|
|
|
let addr = GuestAddress(arch::layout::LEGACY_GPIO_MAPPED_IO_START);
|
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.mmio_bus
|
|
|
|
.insert(gpio_device.clone(), addr.0, MMIO_LEN)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
|
|
|
|
self.gpio_device = Some(gpio_device.clone());
|
|
|
|
|
|
|
|
self.id_to_dev_info.insert(
|
2021-03-25 17:01:21 +00:00
|
|
|
(DeviceType::Gpio, "gpio".to_string()),
|
|
|
|
MmioDeviceInfo {
|
2021-03-07 12:11:07 +00:00
|
|
|
addr: addr.0,
|
|
|
|
irq: gpio_irq,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, gpio_device));
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
fn add_serial_device(
|
|
|
|
&mut self,
|
|
|
|
interrupt_manager: &Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>,
|
|
|
|
serial_writer: Option<Box<dyn io::Write + Send>>,
|
|
|
|
) -> DeviceManagerResult<Arc<Mutex<Serial>>> {
|
|
|
|
// Serial is tied to IRQ #4
|
|
|
|
let serial_irq = 4;
|
|
|
|
|
|
|
|
let id = String::from(SERIAL_DEVICE_NAME_PREFIX);
|
|
|
|
|
|
|
|
let interrupt_group = interrupt_manager
|
|
|
|
.create_group(LegacyIrqGroupConfig {
|
|
|
|
irq: serial_irq as InterruptIndex,
|
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?;
|
|
|
|
|
|
|
|
let serial = Arc::new(Mutex::new(Serial::new(
|
|
|
|
id.clone(),
|
|
|
|
interrupt_group,
|
|
|
|
serial_writer,
|
|
|
|
)));
|
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&serial) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_io_addresses(Some(GuestAddress(0x3f8)), 0x8, None)
|
2021-03-25 17:01:21 +00:00
|
|
|
.ok_or(DeviceManagerError::AllocateIoPort)?;
|
2020-06-09 06:17:42 +00:00
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.io_bus
|
|
|
|
.insert(serial.clone(), 0x3f8, 0x8)
|
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
|
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, serial));
|
|
|
|
|
|
|
|
Ok(serial)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
fn add_serial_device(
|
|
|
|
&mut self,
|
|
|
|
interrupt_manager: &Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>,
|
|
|
|
serial_writer: Option<Box<dyn io::Write + Send>>,
|
2021-03-25 17:01:21 +00:00
|
|
|
) -> DeviceManagerResult<Arc<Mutex<Pl011>>> {
|
2020-06-09 06:17:42 +00:00
|
|
|
let id = String::from(SERIAL_DEVICE_NAME_PREFIX);
|
|
|
|
|
|
|
|
let serial_irq = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_irq()
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let interrupt_group = interrupt_manager
|
|
|
|
.create_group(LegacyIrqGroupConfig {
|
|
|
|
irq: serial_irq as InterruptIndex,
|
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?;
|
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
let serial = Arc::new(Mutex::new(devices::legacy::Pl011::new(
|
2020-06-09 06:17:42 +00:00
|
|
|
id.clone(),
|
|
|
|
interrupt_group,
|
|
|
|
serial_writer,
|
|
|
|
)));
|
|
|
|
|
|
|
|
self.bus_devices
|
|
|
|
.push(Arc::clone(&serial) as Arc<Mutex<dyn BusDevice>>);
|
|
|
|
|
|
|
|
let addr = GuestAddress(arch::layout::LEGACY_SERIAL_MAPPED_IO_START);
|
|
|
|
|
|
|
|
self.address_manager
|
|
|
|
.mmio_bus
|
2021-03-12 05:18:52 +00:00
|
|
|
.insert(serial.clone(), addr.0, MMIO_LEN)
|
2020-06-09 06:17:42 +00:00
|
|
|
.map_err(DeviceManagerError::BusError)?;
|
|
|
|
|
|
|
|
self.id_to_dev_info.insert(
|
|
|
|
(DeviceType::Serial, DeviceType::Serial.to_string()),
|
2021-03-25 17:01:21 +00:00
|
|
|
MmioDeviceInfo {
|
2020-06-09 06:17:42 +00:00
|
|
|
addr: addr.0,
|
|
|
|
irq: serial_irq,
|
|
|
|
},
|
|
|
|
);
|
|
|
|
|
|
|
|
self.cmdline_additions
|
2021-03-12 05:18:52 +00:00
|
|
|
.push(format!("earlycon=pl011,mmio,0x{:08x}", addr.0));
|
2020-06-09 06:17:42 +00:00
|
|
|
|
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, serial));
|
|
|
|
|
|
|
|
Ok(serial)
|
|
|
|
}
|
|
|
|
|
2021-01-14 03:03:53 +00:00
|
|
|
fn modify_mode<F: FnOnce(&mut termios)>(
|
|
|
|
&self,
|
|
|
|
fd: RawFd,
|
|
|
|
f: F,
|
|
|
|
) -> vmm_sys_util::errno::Result<()> {
|
|
|
|
// Safe because we check the return value of isatty.
|
|
|
|
if unsafe { isatty(fd) } != 1 {
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
|
|
|
|
// The following pair are safe because termios gets totally overwritten by tcgetattr and we
|
|
|
|
// check the return result.
|
|
|
|
let mut termios: termios = unsafe { zeroed() };
|
|
|
|
let ret = unsafe { tcgetattr(fd, &mut termios as *mut _) };
|
|
|
|
if ret < 0 {
|
|
|
|
return vmm_sys_util::errno::errno_result();
|
|
|
|
}
|
|
|
|
f(&mut termios);
|
|
|
|
// Safe because the syscall will only read the extent of termios and we check the return result.
|
|
|
|
let ret = unsafe { tcsetattr(fd, TCSANOW, &termios as *const _) };
|
|
|
|
if ret < 0 {
|
|
|
|
return vmm_sys_util::errno::errno_result();
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_raw_mode(&self, f: &mut File) -> vmm_sys_util::errno::Result<()> {
|
|
|
|
self.modify_mode(f.as_raw_fd(), |t| t.c_lflag &= !(ICANON | ECHO | ISIG))
|
|
|
|
}
|
|
|
|
|
2019-11-19 16:15:29 +00:00
|
|
|
fn add_console_device(
|
2020-01-29 15:53:12 +00:00
|
|
|
&mut self,
|
2020-02-04 11:04:10 +00:00
|
|
|
interrupt_manager: &Arc<dyn InterruptManager<GroupConfig = LegacyIrqGroupConfig>>,
|
2020-04-27 12:38:24 +00:00
|
|
|
virtio_devices: &mut Vec<(VirtioDeviceArc, bool, String)>,
|
2021-03-04 23:34:45 +00:00
|
|
|
serial_pty: Option<PtyPair>,
|
|
|
|
console_pty: Option<PtyPair>,
|
2019-11-18 10:21:37 +00:00
|
|
|
) -> DeviceManagerResult<Arc<Console>> {
|
2020-01-31 11:42:48 +00:00
|
|
|
let serial_config = self.config.lock().unwrap().serial.clone();
|
2019-12-05 14:50:38 +00:00
|
|
|
let serial_writer: Option<Box<dyn io::Write + Send>> = match serial_config.mode {
|
2019-11-18 10:21:37 +00:00
|
|
|
ConsoleOutputMode::File => Some(Box::new(
|
2019-12-05 14:50:38 +00:00
|
|
|
File::create(serial_config.file.as_ref().unwrap())
|
2019-11-18 10:21:37 +00:00
|
|
|
.map_err(DeviceManagerError::SerialOutputFileOpen)?,
|
|
|
|
)),
|
2021-01-14 03:03:53 +00:00
|
|
|
ConsoleOutputMode::Pty => {
|
2021-03-04 23:34:45 +00:00
|
|
|
if let Some(pty) = serial_pty {
|
|
|
|
self.config.lock().unwrap().serial.file = Some(pty.path.clone());
|
|
|
|
let writer = pty.main.try_clone().unwrap();
|
|
|
|
self.serial_pty = Some(Arc::new(Mutex::new(pty)));
|
|
|
|
Some(Box::new(writer))
|
|
|
|
} else {
|
|
|
|
let (main, mut sub, path) =
|
|
|
|
create_pty().map_err(DeviceManagerError::SerialPtyOpen)?;
|
|
|
|
self.set_raw_mode(&mut sub)
|
|
|
|
.map_err(DeviceManagerError::SetPtyRaw)?;
|
|
|
|
self.config.lock().unwrap().serial.file = Some(path.clone());
|
|
|
|
let writer = main.try_clone().unwrap();
|
|
|
|
self.serial_pty = Some(Arc::new(Mutex::new(PtyPair { main, sub, path })));
|
|
|
|
Some(Box::new(writer))
|
|
|
|
}
|
2021-01-14 03:03:53 +00:00
|
|
|
}
|
2019-11-18 10:21:37 +00:00
|
|
|
ConsoleOutputMode::Tty => Some(Box::new(stdout())),
|
|
|
|
ConsoleOutputMode::Off | ConsoleOutputMode::Null => None,
|
|
|
|
};
|
2019-12-05 14:50:38 +00:00
|
|
|
let serial = if serial_config.mode != ConsoleOutputMode::Off {
|
2020-06-09 06:17:42 +00:00
|
|
|
Some(self.add_serial_device(interrupt_manager, serial_writer)?)
|
2019-11-18 10:21:37 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
|
|
|
// Create serial and virtio-console
|
2020-01-31 11:42:48 +00:00
|
|
|
let console_config = self.config.lock().unwrap().console.clone();
|
2019-12-05 14:50:38 +00:00
|
|
|
let console_writer: Option<Box<dyn io::Write + Send + Sync>> = match console_config.mode {
|
|
|
|
ConsoleOutputMode::File => Some(Box::new(
|
2020-01-31 11:42:48 +00:00
|
|
|
File::create(console_config.file.as_ref().unwrap())
|
|
|
|
.map_err(DeviceManagerError::ConsoleOutputFileOpen)?,
|
2019-12-05 14:50:38 +00:00
|
|
|
)),
|
2021-01-14 03:03:53 +00:00
|
|
|
ConsoleOutputMode::Pty => {
|
2021-03-04 23:34:45 +00:00
|
|
|
if let Some(pty) = console_pty {
|
|
|
|
self.config.lock().unwrap().console.file = Some(pty.path.clone());
|
|
|
|
let writer = pty.main.try_clone().unwrap();
|
|
|
|
self.console_pty = Some(Arc::new(Mutex::new(pty)));
|
|
|
|
Some(Box::new(writer))
|
|
|
|
} else {
|
|
|
|
let (main, mut sub, path) =
|
|
|
|
create_pty().map_err(DeviceManagerError::ConsolePtyOpen)?;
|
|
|
|
self.set_raw_mode(&mut sub)
|
|
|
|
.map_err(DeviceManagerError::SetPtyRaw)?;
|
|
|
|
self.config.lock().unwrap().console.file = Some(path.clone());
|
|
|
|
let writer = main.try_clone().unwrap();
|
|
|
|
self.console_pty = Some(Arc::new(Mutex::new(PtyPair { main, sub, path })));
|
|
|
|
Some(Box::new(writer))
|
|
|
|
}
|
2021-01-14 03:03:53 +00:00
|
|
|
}
|
2019-12-05 14:50:38 +00:00
|
|
|
ConsoleOutputMode::Tty => Some(Box::new(stdout())),
|
|
|
|
ConsoleOutputMode::Null => Some(Box::new(sink())),
|
|
|
|
ConsoleOutputMode::Off => None,
|
|
|
|
};
|
2019-11-18 10:21:37 +00:00
|
|
|
let (col, row) = get_win_size();
|
2020-07-30 12:56:46 +00:00
|
|
|
let virtio_console_input = if let Some(writer) = console_writer {
|
2020-04-27 12:05:29 +00:00
|
|
|
let id = String::from(CONSOLE_DEVICE_NAME);
|
2020-04-27 17:12:00 +00:00
|
|
|
|
2020-08-04 18:12:05 +00:00
|
|
|
let (virtio_console_device, virtio_console_input) = virtio_devices::Console::new(
|
|
|
|
id.clone(),
|
|
|
|
writer,
|
|
|
|
col,
|
|
|
|
row,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | console_config.iommu,
|
2020-08-04 18:12:05 +00:00
|
|
|
self.seccomp_action.clone(),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioConsole)?;
|
2020-04-28 12:53:05 +00:00
|
|
|
let virtio_console_device = Arc::new(Mutex::new(virtio_console_device));
|
2019-11-18 10:21:37 +00:00
|
|
|
virtio_devices.push((
|
2020-04-28 12:53:05 +00:00
|
|
|
Arc::clone(&virtio_console_device) as VirtioDeviceArc,
|
2020-04-29 16:14:48 +00:00
|
|
|
console_config.iommu,
|
2020-04-30 18:08:04 +00:00
|
|
|
id.clone(),
|
2019-11-18 10:21:37 +00:00
|
|
|
));
|
2020-04-28 12:53:05 +00:00
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, virtio_console_device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-07-30 12:56:46 +00:00
|
|
|
Some(virtio_console_input)
|
2019-11-18 10:21:37 +00:00
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2020-07-30 13:02:43 +00:00
|
|
|
let input = if serial_config.mode.input_enabled() {
|
|
|
|
Some(ConsoleInput::Serial)
|
|
|
|
} else if console_config.mode.input_enabled() {
|
|
|
|
Some(ConsoleInput::VirtioConsole)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2019-11-18 10:21:37 +00:00
|
|
|
Ok(Arc::new(Console {
|
|
|
|
serial,
|
2020-07-30 12:56:46 +00:00
|
|
|
virtio_console_input,
|
2020-07-30 13:02:43 +00:00
|
|
|
input,
|
2019-11-18 10:21:37 +00:00
|
|
|
}))
|
|
|
|
}
|
|
|
|
|
2020-04-27 12:38:24 +00:00
|
|
|
fn make_virtio_devices(&mut self) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
|
|
|
let mut devices: Vec<(VirtioDeviceArc, bool, String)> = Vec::new();
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
// Create "standard" virtio devices (net/block/rng)
|
2020-01-31 11:42:48 +00:00
|
|
|
devices.append(&mut self.make_virtio_block_devices()?);
|
|
|
|
devices.append(&mut self.make_virtio_net_devices()?);
|
|
|
|
devices.append(&mut self.make_virtio_rng_devices()?);
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
// Add virtio-fs if required
|
2020-01-31 11:42:48 +00:00
|
|
|
devices.append(&mut self.make_virtio_fs_devices()?);
|
2019-09-04 13:55:14 +00:00
|
|
|
|
|
|
|
// Add virtio-pmem if required
|
2020-01-31 11:42:48 +00:00
|
|
|
devices.append(&mut self.make_virtio_pmem_devices()?);
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-04 18:14:54 +00:00
|
|
|
// Add virtio-vsock if required
|
2020-04-27 08:15:30 +00:00
|
|
|
devices.append(&mut self.make_virtio_vsock_devices()?);
|
2019-09-04 18:14:54 +00:00
|
|
|
|
2020-03-04 02:16:27 +00:00
|
|
|
devices.append(&mut self.make_virtio_mem_devices()?);
|
|
|
|
|
2020-03-20 03:43:37 +00:00
|
|
|
// Add virtio-balloon if required
|
|
|
|
devices.append(&mut self.make_virtio_balloon_devices()?);
|
|
|
|
|
2020-09-25 09:39:45 +00:00
|
|
|
// Add virtio-watchdog device
|
|
|
|
devices.append(&mut self.make_virtio_watchdog_devices()?);
|
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
fn make_virtio_block_device(
|
|
|
|
&mut self,
|
2020-04-15 16:09:12 +00:00
|
|
|
disk_cfg: &mut DiskConfig,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<(VirtioDeviceArc, bool, String)> {
|
2020-04-27 09:21:15 +00:00
|
|
|
let id = if let Some(id) = &disk_cfg.id {
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(DISK_DEVICE_NAME_PREFIX)?;
|
|
|
|
disk_cfg.id = Some(id.clone());
|
|
|
|
id
|
|
|
|
};
|
2020-04-15 16:09:12 +00:00
|
|
|
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-block device: {:?}", disk_cfg);
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
if disk_cfg.vhost_user {
|
2020-11-06 10:14:24 +00:00
|
|
|
let socket = disk_cfg.vhost_socket.as_ref().unwrap().clone();
|
2020-03-13 09:38:42 +00:00
|
|
|
let vu_cfg = VhostUserConfig {
|
2020-11-06 10:14:24 +00:00
|
|
|
socket,
|
2020-03-13 09:38:42 +00:00
|
|
|
num_queues: disk_cfg.num_queues,
|
|
|
|
queue_size: disk_cfg.queue_size,
|
|
|
|
};
|
|
|
|
let vhost_user_block_device = Arc::new(Mutex::new(
|
2021-05-19 20:33:04 +00:00
|
|
|
match virtio_devices::vhost_user::Blk::new(id.clone(), vu_cfg) {
|
2020-09-18 15:22:46 +00:00
|
|
|
Ok(vub_device) => vub_device,
|
|
|
|
Err(e) => {
|
|
|
|
return Err(DeviceManagerError::CreateVhostUserBlk(e));
|
|
|
|
}
|
|
|
|
},
|
2020-03-13 09:38:42 +00:00
|
|
|
));
|
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, vhost_user_block_device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
Ok((
|
2020-04-08 13:04:03 +00:00
|
|
|
Arc::clone(&vhost_user_block_device) as VirtioDeviceArc,
|
2020-03-13 09:38:42 +00:00
|
|
|
false,
|
2020-04-27 12:38:24 +00:00
|
|
|
id,
|
2020-03-13 09:38:42 +00:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
let mut options = OpenOptions::new();
|
|
|
|
options.read(true);
|
|
|
|
options.write(!disk_cfg.readonly);
|
|
|
|
if disk_cfg.direct {
|
|
|
|
options.custom_flags(libc::O_DIRECT);
|
|
|
|
}
|
|
|
|
// Open block device path
|
2021-01-28 08:11:25 +00:00
|
|
|
let mut file: File = options
|
2020-03-13 09:38:42 +00:00
|
|
|
.open(
|
|
|
|
disk_cfg
|
|
|
|
.path
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::NoDiskPath)?
|
|
|
|
.clone(),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::Disk)?;
|
2021-01-28 08:11:25 +00:00
|
|
|
let image_type =
|
|
|
|
detect_image_type(&mut file).map_err(DeviceManagerError::DetectImageType)?;
|
2021-01-22 08:56:38 +00:00
|
|
|
|
|
|
|
let image = match image_type {
|
2021-01-28 08:11:25 +00:00
|
|
|
ImageType::FixedVhd => {
|
|
|
|
// Use asynchronous backend relying on io_uring if the
|
|
|
|
// syscalls are supported.
|
|
|
|
if block_io_uring_is_supported() && !disk_cfg.disable_io_uring {
|
|
|
|
info!("Using asynchronous fixed VHD disk file (io_uring)");
|
|
|
|
Box::new(
|
|
|
|
FixedVhdDiskAsync::new(file)
|
|
|
|
.map_err(DeviceManagerError::CreateFixedVhdDiskAsync)?,
|
|
|
|
) as Box<dyn DiskFile>
|
|
|
|
} else {
|
2021-01-28 15:23:03 +00:00
|
|
|
info!("Using synchronous fixed VHD disk file");
|
|
|
|
Box::new(
|
|
|
|
FixedVhdDiskSync::new(file)
|
|
|
|
.map_err(DeviceManagerError::CreateFixedVhdDiskSync)?,
|
|
|
|
) as Box<dyn DiskFile>
|
2021-01-28 08:11:25 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-13 09:38:42 +00:00
|
|
|
ImageType::Raw => {
|
2020-10-07 09:23:20 +00:00
|
|
|
// Use asynchronous backend relying on io_uring if the
|
|
|
|
// syscalls are supported.
|
2021-01-22 08:56:38 +00:00
|
|
|
if block_io_uring_is_supported() && !disk_cfg.disable_io_uring {
|
2021-01-22 13:19:09 +00:00
|
|
|
info!("Using asynchronous RAW disk file (io_uring)");
|
2021-01-22 08:56:38 +00:00
|
|
|
Box::new(RawFileDisk::new(file)) as Box<dyn DiskFile>
|
2020-10-07 09:23:20 +00:00
|
|
|
} else {
|
2021-01-22 13:19:09 +00:00
|
|
|
info!("Using synchronous RAW disk file");
|
2021-01-28 16:29:33 +00:00
|
|
|
Box::new(RawFileDiskSync::new(file)) as Box<dyn DiskFile>
|
2021-01-22 08:56:38 +00:00
|
|
|
}
|
2020-03-13 09:38:42 +00:00
|
|
|
}
|
|
|
|
ImageType::Qcow2 => {
|
2021-01-22 13:19:09 +00:00
|
|
|
info!("Using synchronous QCOW disk file");
|
2021-01-22 08:56:38 +00:00
|
|
|
Box::new(QcowDiskSync::new(file, disk_cfg.direct)) as Box<dyn DiskFile>
|
2020-03-13 09:38:42 +00:00
|
|
|
}
|
2020-07-30 10:44:05 +00:00
|
|
|
};
|
2021-01-22 08:56:38 +00:00
|
|
|
|
|
|
|
let dev = Arc::new(Mutex::new(
|
2021-01-22 10:15:13 +00:00
|
|
|
virtio_devices::Block::new(
|
2021-01-22 08:56:38 +00:00
|
|
|
id.clone(),
|
|
|
|
image,
|
|
|
|
disk_cfg
|
|
|
|
.path
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::NoDiskPath)?
|
|
|
|
.clone(),
|
|
|
|
disk_cfg.readonly,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | disk_cfg.iommu,
|
2021-01-22 08:56:38 +00:00
|
|
|
disk_cfg.num_queues,
|
|
|
|
disk_cfg.queue_size,
|
|
|
|
self.seccomp_action.clone(),
|
2021-02-26 20:06:10 +00:00
|
|
|
disk_cfg.rate_limiter_config,
|
2021-01-22 08:56:38 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioBlock)?,
|
|
|
|
));
|
|
|
|
|
|
|
|
let virtio_device = Arc::clone(&dev) as VirtioDeviceArc;
|
|
|
|
let migratable_device = dev as Arc<Mutex<dyn Migratable>>;
|
|
|
|
|
2020-07-30 10:44:05 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, migratable_device));
|
|
|
|
|
|
|
|
Ok((virtio_device, disk_cfg.iommu, id))
|
2020-03-13 09:38:42 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-08 13:04:03 +00:00
|
|
|
fn make_virtio_block_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2019-09-10 16:14:16 +00:00
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
2020-04-15 16:09:12 +00:00
|
|
|
let mut block_devices = self.config.lock().unwrap().disks.clone();
|
|
|
|
if let Some(disk_list_cfg) = &mut block_devices {
|
|
|
|
for disk_cfg in disk_list_cfg.iter_mut() {
|
2020-03-13 09:38:42 +00:00
|
|
|
devices.push(self.make_virtio_block_device(disk_cfg)?);
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 16:09:12 +00:00
|
|
|
self.config.lock().unwrap().disks = block_devices;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
fn make_virtio_net_device(
|
|
|
|
&mut self,
|
2020-04-15 16:09:12 +00:00
|
|
|
net_cfg: &mut NetConfig,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<(VirtioDeviceArc, bool, String)> {
|
2020-04-27 09:29:16 +00:00
|
|
|
let id = if let Some(id) = &net_cfg.id {
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(NET_DEVICE_NAME_PREFIX)?;
|
|
|
|
net_cfg.id = Some(id.clone());
|
|
|
|
id
|
|
|
|
};
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-net device: {:?}", net_cfg);
|
2020-04-15 16:09:12 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
if net_cfg.vhost_user {
|
2020-11-06 10:14:24 +00:00
|
|
|
let socket = net_cfg.vhost_socket.as_ref().unwrap().clone();
|
2020-03-13 09:38:42 +00:00
|
|
|
let vu_cfg = VhostUserConfig {
|
2020-11-06 10:14:24 +00:00
|
|
|
socket,
|
2020-03-13 09:38:42 +00:00
|
|
|
num_queues: net_cfg.num_queues,
|
|
|
|
queue_size: net_cfg.queue_size,
|
|
|
|
};
|
2021-05-04 08:33:35 +00:00
|
|
|
let server = match net_cfg.vhost_mode {
|
|
|
|
VhostMode::Client => false,
|
|
|
|
VhostMode::Server => true,
|
|
|
|
};
|
2020-03-13 09:38:42 +00:00
|
|
|
let vhost_user_net_device = Arc::new(Mutex::new(
|
2021-05-25 15:14:53 +00:00
|
|
|
match virtio_devices::vhost_user::Net::new(
|
|
|
|
id.clone(),
|
|
|
|
net_cfg.mac,
|
|
|
|
vu_cfg,
|
|
|
|
server,
|
|
|
|
self.seccomp_action.clone(),
|
|
|
|
) {
|
2020-09-18 15:22:46 +00:00
|
|
|
Ok(vun_device) => vun_device,
|
|
|
|
Err(e) => {
|
|
|
|
return Err(DeviceManagerError::CreateVhostUserNet(e));
|
|
|
|
}
|
|
|
|
},
|
2020-03-13 09:38:42 +00:00
|
|
|
));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, vhost_user_net_device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
Ok((
|
2020-04-08 13:04:03 +00:00
|
|
|
Arc::clone(&vhost_user_net_device) as VirtioDeviceArc,
|
2020-03-13 09:38:42 +00:00
|
|
|
net_cfg.iommu,
|
2020-04-27 12:38:24 +00:00
|
|
|
id,
|
2020-03-13 09:38:42 +00:00
|
|
|
))
|
|
|
|
} else {
|
|
|
|
let virtio_net_device = if let Some(ref tap_if_name) = net_cfg.tap {
|
|
|
|
Arc::new(Mutex::new(
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::Net::new(
|
2020-04-27 12:38:24 +00:00
|
|
|
id.clone(),
|
2020-03-13 09:38:42 +00:00
|
|
|
Some(tap_if_name),
|
|
|
|
None,
|
|
|
|
None,
|
|
|
|
Some(net_cfg.mac),
|
2020-06-05 11:00:34 +00:00
|
|
|
&mut net_cfg.host_mac,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | net_cfg.iommu,
|
2020-03-13 09:38:42 +00:00
|
|
|
net_cfg.num_queues,
|
|
|
|
net_cfg.queue_size,
|
2020-08-04 18:27:17 +00:00
|
|
|
self.seccomp_action.clone(),
|
2021-03-17 22:41:52 +00:00
|
|
|
net_cfg.rate_limiter_config,
|
2020-03-13 09:38:42 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioNet)?,
|
|
|
|
))
|
2021-01-27 04:52:50 +00:00
|
|
|
} else if let Some(fds) = &net_cfg.fds {
|
2020-12-16 17:31:10 +00:00
|
|
|
Arc::new(Mutex::new(
|
2021-01-27 04:52:50 +00:00
|
|
|
virtio_devices::Net::from_tap_fds(
|
2020-12-16 17:31:10 +00:00
|
|
|
id.clone(),
|
2021-01-27 04:52:50 +00:00
|
|
|
fds,
|
2020-12-16 17:31:10 +00:00
|
|
|
Some(net_cfg.mac),
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | net_cfg.iommu,
|
2020-12-16 17:31:10 +00:00
|
|
|
net_cfg.queue_size,
|
|
|
|
self.seccomp_action.clone(),
|
2021-03-17 22:41:52 +00:00
|
|
|
net_cfg.rate_limiter_config,
|
2020-12-16 17:31:10 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioNet)?,
|
|
|
|
))
|
2020-03-13 09:38:42 +00:00
|
|
|
} else {
|
|
|
|
Arc::new(Mutex::new(
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::Net::new(
|
2020-04-27 12:38:24 +00:00
|
|
|
id.clone(),
|
2020-03-13 09:38:42 +00:00
|
|
|
None,
|
|
|
|
Some(net_cfg.ip),
|
|
|
|
Some(net_cfg.mask),
|
|
|
|
Some(net_cfg.mac),
|
2020-06-05 11:00:34 +00:00
|
|
|
&mut net_cfg.host_mac,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | net_cfg.iommu,
|
2020-03-13 09:38:42 +00:00
|
|
|
net_cfg.num_queues,
|
|
|
|
net_cfg.queue_size,
|
2020-08-04 18:27:17 +00:00
|
|
|
self.seccomp_action.clone(),
|
2021-03-17 22:41:52 +00:00
|
|
|
net_cfg.rate_limiter_config,
|
2020-03-13 09:38:42 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioNet)?,
|
|
|
|
))
|
|
|
|
};
|
2020-04-30 18:08:04 +00:00
|
|
|
|
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, virtio_net_device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
Ok((
|
2020-04-08 13:04:03 +00:00
|
|
|
Arc::clone(&virtio_net_device) as VirtioDeviceArc,
|
2020-03-13 09:38:42 +00:00
|
|
|
net_cfg.iommu,
|
2020-04-27 12:38:24 +00:00
|
|
|
id,
|
2020-03-13 09:38:42 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-27 15:14:07 +00:00
|
|
|
/// Add virto-net and vhost-user-net devices
|
2020-04-08 13:04:03 +00:00
|
|
|
fn make_virtio_net_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2019-09-10 16:14:16 +00:00
|
|
|
let mut devices = Vec::new();
|
2020-04-15 16:09:12 +00:00
|
|
|
let mut net_devices = self.config.lock().unwrap().net.clone();
|
|
|
|
if let Some(net_list_cfg) = &mut net_devices {
|
|
|
|
for net_cfg in net_list_cfg.iter_mut() {
|
2020-03-13 09:38:42 +00:00
|
|
|
devices.push(self.make_virtio_net_device(net_cfg)?);
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-15 16:09:12 +00:00
|
|
|
self.config.lock().unwrap().net = net_devices;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 13:04:03 +00:00
|
|
|
fn make_virtio_rng_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2019-09-10 16:14:16 +00:00
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
2019-09-04 13:55:14 +00:00
|
|
|
// Add virtio-rng if required
|
2020-01-31 11:42:48 +00:00
|
|
|
let rng_config = self.config.lock().unwrap().rng.clone();
|
2019-12-05 14:50:38 +00:00
|
|
|
if let Some(rng_path) = rng_config.src.to_str() {
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-rng device: {:?}", rng_config);
|
2020-04-27 07:47:26 +00:00
|
|
|
let id = String::from(RNG_DEVICE_NAME);
|
|
|
|
|
2019-11-18 23:10:42 +00:00
|
|
|
let virtio_rng_device = Arc::new(Mutex::new(
|
2020-08-04 17:46:49 +00:00
|
|
|
virtio_devices::Rng::new(
|
|
|
|
id.clone(),
|
|
|
|
rng_path,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | rng_config.iommu,
|
2020-08-04 17:46:49 +00:00
|
|
|
self.seccomp_action.clone(),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioRng)?,
|
2019-11-18 23:10:42 +00:00
|
|
|
));
|
2019-10-02 20:57:20 +00:00
|
|
|
devices.push((
|
2020-04-08 13:04:03 +00:00
|
|
|
Arc::clone(&virtio_rng_device) as VirtioDeviceArc,
|
2020-04-29 15:48:23 +00:00
|
|
|
rng_config.iommu,
|
2020-04-30 18:08:04 +00:00
|
|
|
id.clone(),
|
2019-10-02 20:57:20 +00:00
|
|
|
));
|
2019-11-19 00:53:23 +00:00
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, virtio_rng_device));
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 09:21:24 +00:00
|
|
|
fn make_virtio_fs_device(
|
2020-04-08 13:04:03 +00:00
|
|
|
&mut self,
|
2020-04-27 07:55:25 +00:00
|
|
|
fs_cfg: &mut FsConfig,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<(VirtioDeviceArc, bool, String)> {
|
2020-04-27 11:53:45 +00:00
|
|
|
let id = if let Some(id) = &fs_cfg.id {
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(FS_DEVICE_NAME_PREFIX)?;
|
|
|
|
fs_cfg.id = Some(id.clone());
|
|
|
|
id
|
|
|
|
};
|
2020-04-27 07:55:25 +00:00
|
|
|
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-fs device: {:?}", fs_cfg);
|
|
|
|
|
2020-05-05 08:23:32 +00:00
|
|
|
let mut node = device_node!(id);
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-04-29 14:16:30 +00:00
|
|
|
// Look for the id in the device tree. If it can be found, that means
|
|
|
|
// the device is being restored, otherwise it's created from scratch.
|
2020-05-12 13:53:09 +00:00
|
|
|
let cache_range = if let Some(node) = self.device_tree.lock().unwrap().get(&id) {
|
2020-04-29 14:16:30 +00:00
|
|
|
debug!("Restoring virtio-fs {} resources", id);
|
|
|
|
|
|
|
|
let mut cache_range: Option<(u64, u64)> = None;
|
|
|
|
for resource in node.resources.iter() {
|
|
|
|
match resource {
|
|
|
|
Resource::MmioAddressRange { base, size } => {
|
|
|
|
if cache_range.is_some() {
|
|
|
|
return Err(DeviceManagerError::ResourceAlreadyExists);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_range = Some((*base, *size));
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
error!("Unexpected resource {:?} for {}", resource, id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if cache_range.is_none() {
|
|
|
|
return Err(DeviceManagerError::MissingVirtioFsResources);
|
|
|
|
}
|
|
|
|
|
|
|
|
cache_range
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2020-04-27 17:12:00 +00:00
|
|
|
|
2020-06-04 19:19:24 +00:00
|
|
|
if let Some(fs_socket) = fs_cfg.socket.to_str() {
|
2020-04-14 09:21:24 +00:00
|
|
|
let cache = if fs_cfg.dax {
|
2020-04-29 14:16:30 +00:00
|
|
|
let (cache_base, cache_size) = if let Some((base, size)) = cache_range {
|
|
|
|
// The memory needs to be 2MiB aligned in order to support
|
|
|
|
// hugepages.
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(
|
|
|
|
Some(GuestAddress(base)),
|
|
|
|
size as GuestUsize,
|
|
|
|
Some(0x0020_0000),
|
|
|
|
)
|
|
|
|
.ok_or(DeviceManagerError::FsRangeAllocation)?;
|
|
|
|
|
|
|
|
(base, size)
|
|
|
|
} else {
|
|
|
|
let size = fs_cfg.cache_size;
|
|
|
|
// The memory needs to be 2MiB aligned in order to support
|
|
|
|
// hugepages.
|
|
|
|
let base = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(None, size as GuestUsize, Some(0x0020_0000))
|
|
|
|
.ok_or(DeviceManagerError::FsRangeAllocation)?;
|
|
|
|
|
|
|
|
(base.raw_value(), size)
|
|
|
|
};
|
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Update the node with correct resource information.
|
|
|
|
node.resources.push(Resource::MmioAddressRange {
|
|
|
|
base: cache_base,
|
|
|
|
size: cache_size,
|
|
|
|
});
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-14 09:21:24 +00:00
|
|
|
let mmap_region = MmapRegion::build(
|
|
|
|
None,
|
2020-04-29 14:16:30 +00:00
|
|
|
cache_size as usize,
|
2020-04-14 09:21:24 +00:00
|
|
|
libc::PROT_NONE,
|
|
|
|
libc::MAP_ANONYMOUS | libc::MAP_PRIVATE,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::NewMmapRegion)?;
|
|
|
|
let host_addr: u64 = mmap_region.as_ptr() as u64;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-14 09:21:24 +00:00
|
|
|
let mem_slot = self
|
|
|
|
.memory_manager
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2021-07-22 16:43:19 +00:00
|
|
|
.create_userspace_mapping(cache_base, cache_size, host_addr, false, false)
|
2020-04-14 09:21:24 +00:00
|
|
|
.map_err(DeviceManagerError::MemoryManager)?;
|
|
|
|
|
2021-03-25 17:01:21 +00:00
|
|
|
let region_list = vec![VirtioSharedMemory {
|
2020-04-14 09:21:24 +00:00
|
|
|
offset: 0,
|
2020-04-29 14:16:30 +00:00
|
|
|
len: cache_size,
|
2021-03-25 17:01:21 +00:00
|
|
|
}];
|
2020-04-14 09:21:24 +00:00
|
|
|
|
|
|
|
Some((
|
|
|
|
VirtioSharedMemoryList {
|
|
|
|
host_addr,
|
|
|
|
mem_slot,
|
2020-04-29 14:16:30 +00:00
|
|
|
addr: GuestAddress(cache_base),
|
|
|
|
len: cache_size as GuestUsize,
|
2020-04-14 09:21:24 +00:00
|
|
|
region_list,
|
|
|
|
},
|
|
|
|
mmap_region,
|
|
|
|
))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2019-11-19 00:53:23 +00:00
|
|
|
|
2020-04-14 09:21:24 +00:00
|
|
|
let virtio_fs_device = Arc::new(Mutex::new(
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::vhost_user::Fs::new(
|
2020-04-27 12:38:24 +00:00
|
|
|
id.clone(),
|
2020-06-04 19:19:24 +00:00
|
|
|
fs_socket,
|
2020-04-14 09:21:24 +00:00
|
|
|
&fs_cfg.tag,
|
|
|
|
fs_cfg.num_queues,
|
|
|
|
fs_cfg.queue_size,
|
|
|
|
cache,
|
2020-08-18 04:30:53 +00:00
|
|
|
self.seccomp_action.clone(),
|
2020-04-14 09:21:24 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioFs)?,
|
|
|
|
));
|
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Update the device tree with the migratable device.
|
|
|
|
node.migratable = Some(Arc::clone(&virtio_fs_device) as Arc<Mutex<dyn Migratable>>);
|
2020-05-12 13:53:09 +00:00
|
|
|
self.device_tree.lock().unwrap().insert(id.clone(), node);
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-04-27 12:38:24 +00:00
|
|
|
Ok((Arc::clone(&virtio_fs_device) as VirtioDeviceArc, false, id))
|
2020-04-14 09:21:24 +00:00
|
|
|
} else {
|
|
|
|
Err(DeviceManagerError::NoVirtioFsSock)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_virtio_fs_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2020-04-14 09:21:24 +00:00
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
2020-04-27 07:55:25 +00:00
|
|
|
let mut fs_devices = self.config.lock().unwrap().fs.clone();
|
|
|
|
if let Some(fs_list_cfg) = &mut fs_devices {
|
|
|
|
for fs_cfg in fs_list_cfg.iter_mut() {
|
2020-04-14 09:21:24 +00:00
|
|
|
devices.push(self.make_virtio_fs_device(fs_cfg)?);
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-27 07:55:25 +00:00
|
|
|
self.config.lock().unwrap().fs = fs_devices;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
fn make_virtio_pmem_device(
|
|
|
|
&mut self,
|
2020-04-15 16:09:12 +00:00
|
|
|
pmem_cfg: &mut PmemConfig,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<(VirtioDeviceArc, bool, String)> {
|
2020-04-27 11:36:41 +00:00
|
|
|
let id = if let Some(id) = &pmem_cfg.id {
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(PMEM_DEVICE_NAME_PREFIX)?;
|
|
|
|
pmem_cfg.id = Some(id.clone());
|
|
|
|
id
|
|
|
|
};
|
2020-04-15 16:09:12 +00:00
|
|
|
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-pmem device: {:?}", pmem_cfg);
|
|
|
|
|
2020-05-05 08:23:32 +00:00
|
|
|
let mut node = device_node!(id);
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-04-29 14:43:03 +00:00
|
|
|
// Look for the id in the device tree. If it can be found, that means
|
|
|
|
// the device is being restored, otherwise it's created from scratch.
|
2020-05-12 13:53:09 +00:00
|
|
|
let region_range = if let Some(node) = self.device_tree.lock().unwrap().get(&id) {
|
2020-04-29 14:43:03 +00:00
|
|
|
debug!("Restoring virtio-pmem {} resources", id);
|
|
|
|
|
|
|
|
let mut region_range: Option<(u64, u64)> = None;
|
|
|
|
for resource in node.resources.iter() {
|
|
|
|
match resource {
|
|
|
|
Resource::MmioAddressRange { base, size } => {
|
|
|
|
if region_range.is_some() {
|
|
|
|
return Err(DeviceManagerError::ResourceAlreadyExists);
|
|
|
|
}
|
|
|
|
|
|
|
|
region_range = Some((*base, *size));
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
error!("Unexpected resource {:?} for {}", resource, id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if region_range.is_none() {
|
|
|
|
return Err(DeviceManagerError::MissingVirtioFsResources);
|
|
|
|
}
|
|
|
|
|
|
|
|
region_range
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
2020-04-27 17:12:00 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
let (custom_flags, set_len) = if pmem_cfg.file.is_dir() {
|
2020-04-24 15:58:03 +00:00
|
|
|
if pmem_cfg.size.is_none() {
|
|
|
|
return Err(DeviceManagerError::PmemWithDirectorySizeMissing);
|
|
|
|
}
|
2020-03-13 09:38:42 +00:00
|
|
|
(O_TMPFILE, true)
|
|
|
|
} else {
|
|
|
|
(0, false)
|
|
|
|
};
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-24 15:58:03 +00:00
|
|
|
let mut file = OpenOptions::new()
|
2020-03-13 09:38:42 +00:00
|
|
|
.read(true)
|
|
|
|
.write(!pmem_cfg.discard_writes)
|
|
|
|
.custom_flags(custom_flags)
|
|
|
|
.open(&pmem_cfg.file)
|
|
|
|
.map_err(DeviceManagerError::PmemFileOpen)?;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-24 15:58:03 +00:00
|
|
|
let size = if let Some(size) = pmem_cfg.size {
|
|
|
|
if set_len {
|
|
|
|
file.set_len(size)
|
|
|
|
.map_err(DeviceManagerError::PmemFileSetLen)?;
|
|
|
|
}
|
|
|
|
size
|
|
|
|
} else {
|
|
|
|
file.seek(SeekFrom::End(0))
|
|
|
|
.map_err(DeviceManagerError::PmemFileSetLen)?
|
|
|
|
};
|
|
|
|
|
|
|
|
if size % 0x20_0000 != 0 {
|
|
|
|
return Err(DeviceManagerError::PmemSizeNotAligned);
|
2020-03-13 09:38:42 +00:00
|
|
|
}
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-29 14:43:03 +00:00
|
|
|
let (region_base, region_size) = if let Some((base, size)) = region_range {
|
|
|
|
// The memory needs to be 2MiB aligned in order to support
|
|
|
|
// hugepages.
|
|
|
|
self.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(
|
|
|
|
Some(GuestAddress(base)),
|
|
|
|
size as GuestUsize,
|
|
|
|
Some(0x0020_0000),
|
|
|
|
)
|
|
|
|
.ok_or(DeviceManagerError::PmemRangeAllocation)?;
|
|
|
|
|
|
|
|
(base, size)
|
|
|
|
} else {
|
|
|
|
// The memory needs to be 2MiB aligned in order to support
|
|
|
|
// hugepages.
|
|
|
|
let base = self
|
|
|
|
.address_manager
|
|
|
|
.allocator
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_mmio_addresses(None, size as GuestUsize, Some(0x0020_0000))
|
|
|
|
.ok_or(DeviceManagerError::PmemRangeAllocation)?;
|
|
|
|
|
|
|
|
(base.raw_value(), size)
|
|
|
|
};
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
let cloned_file = file.try_clone().map_err(DeviceManagerError::CloneFile)?;
|
|
|
|
let mmap_region = MmapRegion::build(
|
|
|
|
Some(FileOffset::new(cloned_file, 0)),
|
2020-04-29 14:43:03 +00:00
|
|
|
region_size as usize,
|
2020-10-02 08:51:38 +00:00
|
|
|
PROT_READ | PROT_WRITE,
|
2020-03-13 09:38:42 +00:00
|
|
|
MAP_NORESERVE
|
|
|
|
| if pmem_cfg.discard_writes {
|
|
|
|
MAP_PRIVATE
|
|
|
|
} else {
|
|
|
|
MAP_SHARED
|
|
|
|
},
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::NewMmapRegion)?;
|
2020-04-20 14:30:36 +00:00
|
|
|
let host_addr: u64 = mmap_region.as_ptr() as u64;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-20 14:30:36 +00:00
|
|
|
let mem_slot = self
|
|
|
|
.memory_manager
|
2020-03-13 09:38:42 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.create_userspace_mapping(
|
2020-04-29 14:43:03 +00:00
|
|
|
region_base,
|
|
|
|
region_size,
|
2020-04-20 14:30:36 +00:00
|
|
|
host_addr,
|
2020-03-13 09:38:42 +00:00
|
|
|
pmem_cfg.mergeable,
|
2020-10-02 08:51:38 +00:00
|
|
|
false,
|
2020-03-13 09:38:42 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::MemoryManager)?;
|
2019-11-19 23:22:20 +00:00
|
|
|
|
2020-07-02 12:25:19 +00:00
|
|
|
let mapping = virtio_devices::UserspaceMapping {
|
2020-04-20 14:30:36 +00:00
|
|
|
host_addr,
|
|
|
|
mem_slot,
|
2020-04-29 14:43:03 +00:00
|
|
|
addr: GuestAddress(region_base),
|
|
|
|
len: region_size,
|
2020-04-20 14:30:36 +00:00
|
|
|
mergeable: pmem_cfg.mergeable,
|
|
|
|
};
|
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
let virtio_pmem_device = Arc::new(Mutex::new(
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::Pmem::new(
|
2020-04-27 12:38:24 +00:00
|
|
|
id.clone(),
|
2020-04-27 11:36:41 +00:00
|
|
|
file,
|
2020-04-29 14:43:03 +00:00
|
|
|
GuestAddress(region_base),
|
2020-04-27 11:36:41 +00:00
|
|
|
mapping,
|
|
|
|
mmap_region,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | pmem_cfg.iommu,
|
2020-08-04 19:25:06 +00:00
|
|
|
self.seccomp_action.clone(),
|
2020-04-27 11:36:41 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioPmem)?,
|
2020-03-13 09:38:42 +00:00
|
|
|
));
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Update the device tree with correct resource information and with
|
|
|
|
// the migratable device.
|
|
|
|
node.resources.push(Resource::MmioAddressRange {
|
|
|
|
base: region_base,
|
|
|
|
size: region_size,
|
|
|
|
});
|
|
|
|
node.migratable = Some(Arc::clone(&virtio_pmem_device) as Arc<Mutex<dyn Migratable>>);
|
2020-05-12 13:53:09 +00:00
|
|
|
self.device_tree.lock().unwrap().insert(id.clone(), node);
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-03-13 09:38:42 +00:00
|
|
|
Ok((
|
2020-04-08 13:04:03 +00:00
|
|
|
Arc::clone(&virtio_pmem_device) as VirtioDeviceArc,
|
2020-04-27 08:57:39 +00:00
|
|
|
pmem_cfg.iommu,
|
2020-04-27 12:38:24 +00:00
|
|
|
id,
|
2020-03-13 09:38:42 +00:00
|
|
|
))
|
|
|
|
}
|
2019-11-19 00:53:23 +00:00
|
|
|
|
2020-04-08 13:04:03 +00:00
|
|
|
fn make_virtio_pmem_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2020-03-13 09:38:42 +00:00
|
|
|
let mut devices = Vec::new();
|
|
|
|
// Add virtio-pmem if required
|
2020-04-15 16:09:12 +00:00
|
|
|
let mut pmem_devices = self.config.lock().unwrap().pmem.clone();
|
|
|
|
if let Some(pmem_list_cfg) = &mut pmem_devices {
|
|
|
|
for pmem_cfg in pmem_list_cfg.iter_mut() {
|
2020-03-13 09:38:42 +00:00
|
|
|
devices.push(self.make_virtio_pmem_device(pmem_cfg)?);
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-04-27 08:57:39 +00:00
|
|
|
self.config.lock().unwrap().pmem = pmem_devices;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 17:10:32 +00:00
|
|
|
fn make_virtio_vsock_device(
|
2020-04-08 13:04:03 +00:00
|
|
|
&mut self,
|
2020-04-27 08:15:30 +00:00
|
|
|
vsock_cfg: &mut VsockConfig,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<(VirtioDeviceArc, bool, String)> {
|
2020-04-27 11:49:54 +00:00
|
|
|
let id = if let Some(id) = &vsock_cfg.id {
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(VSOCK_DEVICE_NAME_PREFIX)?;
|
|
|
|
vsock_cfg.id = Some(id.clone());
|
|
|
|
id
|
|
|
|
};
|
2020-04-27 08:15:30 +00:00
|
|
|
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-vsock device: {:?}", vsock_cfg);
|
|
|
|
|
2020-04-27 08:15:30 +00:00
|
|
|
let socket_path = vsock_cfg
|
2020-06-04 19:19:24 +00:00
|
|
|
.socket
|
2020-04-27 08:15:30 +00:00
|
|
|
.to_str()
|
|
|
|
.ok_or(DeviceManagerError::CreateVsockConvertPath)?;
|
|
|
|
let backend =
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::vsock::VsockUnixBackend::new(vsock_cfg.cid, socket_path.to_string())
|
2020-04-27 08:15:30 +00:00
|
|
|
.map_err(DeviceManagerError::CreateVsockBackend)?;
|
|
|
|
|
|
|
|
let vsock_device = Arc::new(Mutex::new(
|
2020-07-02 12:25:19 +00:00
|
|
|
virtio_devices::Vsock::new(
|
2020-05-05 09:54:38 +00:00
|
|
|
id.clone(),
|
|
|
|
vsock_cfg.cid,
|
2020-06-04 19:19:24 +00:00
|
|
|
vsock_cfg.socket.clone(),
|
2020-05-05 09:54:38 +00:00
|
|
|
backend,
|
2021-07-20 07:59:32 +00:00
|
|
|
self.force_iommu | vsock_cfg.iommu,
|
2020-09-09 02:35:03 +00:00
|
|
|
self.seccomp_action.clone(),
|
2020-05-05 09:54:38 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioVsock)?,
|
2020-04-27 08:15:30 +00:00
|
|
|
));
|
|
|
|
|
2020-04-30 18:08:04 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
2020-05-05 08:23:32 +00:00
|
|
|
self.device_tree
|
2020-05-12 13:53:09 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-05-05 08:23:32 +00:00
|
|
|
.insert(id.clone(), device_node!(id, vsock_device));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-04-27 08:15:30 +00:00
|
|
|
Ok((
|
|
|
|
Arc::clone(&vsock_device) as VirtioDeviceArc,
|
2020-04-27 08:15:30 +00:00
|
|
|
vsock_cfg.iommu,
|
2020-04-27 12:38:24 +00:00
|
|
|
id,
|
2020-04-27 08:15:30 +00:00
|
|
|
))
|
|
|
|
}
|
|
|
|
|
|
|
|
fn make_virtio_vsock_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2019-09-10 16:14:16 +00:00
|
|
|
let mut devices = Vec::new();
|
2020-04-28 17:10:32 +00:00
|
|
|
|
2020-04-27 08:15:30 +00:00
|
|
|
let mut vsock = self.config.lock().unwrap().vsock.clone();
|
|
|
|
if let Some(ref mut vsock_cfg) = &mut vsock {
|
|
|
|
devices.push(self.make_virtio_vsock_device(vsock_cfg)?);
|
2019-09-04 18:14:54 +00:00
|
|
|
}
|
2020-04-27 08:15:30 +00:00
|
|
|
self.config.lock().unwrap().vsock = vsock;
|
2019-09-04 18:14:54 +00:00
|
|
|
|
2019-09-10 16:14:16 +00:00
|
|
|
Ok(devices)
|
2019-09-04 18:14:54 +00:00
|
|
|
}
|
|
|
|
|
2020-04-08 13:04:03 +00:00
|
|
|
fn make_virtio_mem_devices(
|
|
|
|
&mut self,
|
2020-04-27 12:38:24 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
2020-03-04 02:16:27 +00:00
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
2020-04-27 11:44:43 +00:00
|
|
|
let mm = self.memory_manager.clone();
|
|
|
|
let mm = mm.lock().unwrap();
|
2020-09-11 14:15:29 +00:00
|
|
|
for (_memory_zone_id, memory_zone) in mm.memory_zones().iter() {
|
2020-09-14 20:24:36 +00:00
|
|
|
if let Some(virtio_mem_zone) = memory_zone.virtio_mem_zone() {
|
2020-09-10 09:28:21 +00:00
|
|
|
let id = self.next_device_name(MEM_DEVICE_NAME_PREFIX)?;
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-mem device: id = {}", id);
|
2020-09-11 14:15:29 +00:00
|
|
|
#[cfg(not(feature = "acpi"))]
|
|
|
|
let node_id: Option<u16> = None;
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
let node_id = numa_node_id_from_memory_zone_id(&self.numa_nodes, _memory_zone_id)
|
|
|
|
.map(|i| i as u16);
|
|
|
|
|
2020-09-10 09:28:21 +00:00
|
|
|
let virtio_mem_device = Arc::new(Mutex::new(
|
|
|
|
virtio_devices::Mem::new(
|
|
|
|
id.clone(),
|
2020-09-14 20:24:36 +00:00
|
|
|
virtio_mem_zone.region(),
|
|
|
|
virtio_mem_zone
|
|
|
|
.resize_handler()
|
2021-02-02 15:17:35 +00:00
|
|
|
.new_resize_sender()
|
|
|
|
.map_err(DeviceManagerError::CreateResizeSender)?,
|
2020-09-10 09:28:21 +00:00
|
|
|
self.seccomp_action.clone(),
|
2020-09-11 14:15:29 +00:00
|
|
|
node_id,
|
2020-09-14 20:36:58 +00:00
|
|
|
virtio_mem_zone.hotplugged_size(),
|
2021-02-03 08:46:14 +00:00
|
|
|
virtio_mem_zone.hugepages(),
|
2020-09-10 09:28:21 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioMem)?,
|
|
|
|
));
|
2020-04-27 11:44:43 +00:00
|
|
|
|
2021-03-03 10:59:53 +00:00
|
|
|
self.virtio_mem_devices.push(Arc::clone(&virtio_mem_device));
|
|
|
|
|
2020-09-10 09:28:21 +00:00
|
|
|
devices.push((
|
|
|
|
Arc::clone(&virtio_mem_device) as VirtioDeviceArc,
|
|
|
|
false,
|
2020-04-27 11:44:43 +00:00
|
|
|
id.clone(),
|
2020-09-10 09:28:21 +00:00
|
|
|
));
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-09-10 09:28:21 +00:00
|
|
|
// Fill the device tree with a new node. In case of restore, we
|
|
|
|
// know there is nothing to do, so we can simply override the
|
|
|
|
// existing entry.
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, virtio_mem_device));
|
|
|
|
}
|
2020-03-04 02:16:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(devices)
|
|
|
|
}
|
|
|
|
|
2020-03-20 03:43:37 +00:00
|
|
|
fn make_virtio_balloon_devices(
|
|
|
|
&mut self,
|
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
2020-10-14 10:04:42 +00:00
|
|
|
if let Some(balloon_config) = &self.config.lock().unwrap().balloon {
|
2020-03-20 03:43:37 +00:00
|
|
|
let id = String::from(BALLOON_DEVICE_NAME);
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-balloon device: id = {}", id);
|
2020-03-20 03:43:37 +00:00
|
|
|
|
|
|
|
let virtio_balloon_device = Arc::new(Mutex::new(
|
2020-06-23 09:52:30 +00:00
|
|
|
virtio_devices::Balloon::new(
|
|
|
|
id.clone(),
|
2020-10-14 10:04:42 +00:00
|
|
|
balloon_config.size,
|
2021-01-21 11:22:29 +00:00
|
|
|
balloon_config.deflate_on_oom,
|
2020-08-18 02:58:13 +00:00
|
|
|
self.seccomp_action.clone(),
|
2020-06-23 09:52:30 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioBalloon)?,
|
2020-03-20 03:43:37 +00:00
|
|
|
));
|
|
|
|
|
2020-10-14 10:04:42 +00:00
|
|
|
self.balloon = Some(virtio_balloon_device.clone());
|
2020-03-20 03:43:37 +00:00
|
|
|
|
|
|
|
devices.push((
|
|
|
|
Arc::clone(&virtio_balloon_device) as VirtioDeviceArc,
|
|
|
|
false,
|
|
|
|
id.clone(),
|
|
|
|
));
|
|
|
|
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, virtio_balloon_device));
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(devices)
|
|
|
|
}
|
|
|
|
|
2020-09-25 09:39:45 +00:00
|
|
|
fn make_virtio_watchdog_devices(
|
|
|
|
&mut self,
|
|
|
|
) -> DeviceManagerResult<Vec<(VirtioDeviceArc, bool, String)>> {
|
|
|
|
let mut devices = Vec::new();
|
|
|
|
|
|
|
|
if !self.config.lock().unwrap().watchdog {
|
|
|
|
return Ok(devices);
|
|
|
|
}
|
|
|
|
|
|
|
|
let id = String::from(WATCHDOG_DEVICE_NAME);
|
2021-05-18 14:32:20 +00:00
|
|
|
info!("Creating virtio-watchdog device: id = {}", id);
|
2020-09-25 09:39:45 +00:00
|
|
|
|
|
|
|
let virtio_watchdog_device = Arc::new(Mutex::new(
|
|
|
|
virtio_devices::Watchdog::new(
|
|
|
|
id.clone(),
|
|
|
|
self.reset_evt.try_clone().unwrap(),
|
|
|
|
self.seccomp_action.clone(),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::CreateVirtioWatchdog)?,
|
|
|
|
));
|
|
|
|
devices.push((
|
|
|
|
Arc::clone(&virtio_watchdog_device) as VirtioDeviceArc,
|
|
|
|
false,
|
|
|
|
id.clone(),
|
|
|
|
));
|
|
|
|
|
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(id.clone(), device_node!(id, virtio_watchdog_device));
|
|
|
|
|
|
|
|
Ok(devices)
|
|
|
|
}
|
|
|
|
|
2020-04-27 08:37:56 +00:00
|
|
|
fn next_device_name(&mut self, prefix: &str) -> DeviceManagerResult<String> {
|
2020-03-06 10:34:24 +00:00
|
|
|
let start_id = self.device_id_cnt;
|
|
|
|
loop {
|
|
|
|
// Generate the temporary name.
|
|
|
|
let name = format!("{}{}", prefix, self.device_id_cnt);
|
|
|
|
// Increment the counter.
|
|
|
|
self.device_id_cnt += Wrapping(1);
|
|
|
|
// Check if the name is already in use.
|
2021-03-17 12:19:24 +00:00
|
|
|
if !self.device_tree.lock().unwrap().contains_key(&name) {
|
2020-04-27 08:37:56 +00:00
|
|
|
return Ok(name);
|
2020-03-06 10:34:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if self.device_id_cnt == start_id {
|
|
|
|
// We went through a full loop and there's nothing else we can
|
|
|
|
// do.
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-04-15 16:58:49 +00:00
|
|
|
Err(DeviceManagerError::NoAvailableDeviceName)
|
2020-03-06 10:34:24 +00:00
|
|
|
}
|
|
|
|
|
2020-07-28 17:01:48 +00:00
|
|
|
#[cfg_attr(not(feature = "kvm"), allow(unused_variables))]
|
2020-07-17 15:28:12 +00:00
|
|
|
fn add_passthrough_device(
|
|
|
|
&mut self,
|
|
|
|
pci: &mut PciBus,
|
|
|
|
device_cfg: &mut DeviceConfig,
|
|
|
|
) -> DeviceManagerResult<(u32, String)> {
|
2021-03-22 09:10:12 +00:00
|
|
|
// If the passthrough device has not been created yet, it is created
|
|
|
|
// here and stored in the DeviceManager structure for future needs.
|
|
|
|
if self.passthrough_device.is_none() {
|
|
|
|
self.passthrough_device = Some(
|
|
|
|
self.address_manager
|
|
|
|
.vm
|
|
|
|
.create_passthrough_device()
|
|
|
|
.map_err(|e| DeviceManagerError::CreatePassthroughDevice(e.into()))?,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-07-17 15:28:12 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2021-02-09 07:36:31 +00:00
|
|
|
return self.add_vfio_device(pci, device_cfg);
|
2020-07-17 15:28:12 +00:00
|
|
|
|
|
|
|
#[cfg(not(feature = "kvm"))]
|
|
|
|
Err(DeviceManagerError::NoDevicePassthroughSupport)
|
|
|
|
}
|
|
|
|
|
2020-10-15 15:34:35 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2020-02-27 16:15:25 +00:00
|
|
|
fn add_vfio_device(
|
2020-03-04 14:54:42 +00:00
|
|
|
&mut self,
|
2020-02-27 16:15:25 +00:00
|
|
|
pci: &mut PciBus,
|
2020-03-09 13:08:59 +00:00
|
|
|
device_cfg: &mut DeviceConfig,
|
2020-06-11 14:48:25 +00:00
|
|
|
) -> DeviceManagerResult<(u32, String)> {
|
2020-07-21 14:23:39 +00:00
|
|
|
let passthrough_device = self
|
|
|
|
.passthrough_device
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::NoDevicePassthroughSupport)?;
|
|
|
|
|
2020-02-27 16:15:25 +00:00
|
|
|
// We need to shift the device id since the 3 first bits
|
|
|
|
// are dedicated to the PCI function, and we know we don't
|
|
|
|
// do multifunction. Also, because we only support one PCI
|
|
|
|
// bus, the bus 0, we don't need to add anything to the
|
|
|
|
// global device ID.
|
2020-03-09 15:09:11 +00:00
|
|
|
let pci_device_bdf = pci
|
|
|
|
.next_device_id()
|
|
|
|
.map_err(DeviceManagerError::NextPciDeviceId)?
|
|
|
|
<< 3;
|
2020-02-27 16:15:25 +00:00
|
|
|
|
|
|
|
let memory = self.memory_manager.lock().unwrap().guest_memory();
|
vmm: Prevent KVM device fd from being unusable from VfioContainer
When shutting down a VM using VFIO, the following error has been
detected:
vfio-ioctls/src/vfio_device.rs:312 -- Could not delete VFIO group:
KvmSetDeviceAttr(Error(9))
After some investigation, it appears the KVM device file descriptor used
for removing a VFIO group was already closed. This is coming from the
Rust sequence of Drop, from the DeviceManager all the way down to
VfioDevice.
Because the DeviceManager owns passthrough_device, which is effectively
a KVM device file descriptor, when the DeviceManager is dropped, the
passthrough_device follows, with the effect of closing the KVM device
file descriptor. Problem is, VfioDevice has not been dropped yet and it
still needs a valid KVM device file descriptor.
That's why the simple way to fix this issue coming from Rust dropping
all resources is to make Linux accountable for it by duplicating the
file descriptor. This way, even when the passthrough_device is dropped,
the KVM file descriptor is closed, but a duplicated instance is still
valid and owned by the VfioContainer.
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
2020-10-15 11:58:13 +00:00
|
|
|
|
|
|
|
// Safe because we know the RawFd is valid.
|
|
|
|
//
|
|
|
|
// This dup() is mandatory to be able to give full ownership of the
|
|
|
|
// file descriptor to the DeviceFd::from_raw_fd() function later in
|
|
|
|
// the code.
|
|
|
|
//
|
|
|
|
// This is particularly needed so that VfioContainer will still have
|
|
|
|
// a valid file descriptor even if DeviceManager, and therefore the
|
|
|
|
// passthrough_device are dropped. In case of Drop, the file descriptor
|
|
|
|
// would be closed, but Linux would still have the duplicated file
|
|
|
|
// descriptor opened from DeviceFd, preventing from unexpected behavior
|
|
|
|
// where the VfioContainer would try to use a closed file descriptor.
|
|
|
|
let dup_device_fd = unsafe { libc::dup(passthrough_device.as_raw_fd()) };
|
|
|
|
|
2020-07-21 15:46:14 +00:00
|
|
|
// SAFETY the raw fd conversion here is safe because:
|
|
|
|
// 1. This function is only called on KVM, see the feature guard above.
|
|
|
|
// 2. When running on KVM, passthrough_device wraps around DeviceFd.
|
|
|
|
// 3. The conversion here extracts the raw fd and then turns the raw fd into a DeviceFd
|
|
|
|
// of the same (correct) type.
|
2019-11-12 14:36:07 +00:00
|
|
|
let vfio_container = Arc::new(
|
vmm: Prevent KVM device fd from being unusable from VfioContainer
When shutting down a VM using VFIO, the following error has been
detected:
vfio-ioctls/src/vfio_device.rs:312 -- Could not delete VFIO group:
KvmSetDeviceAttr(Error(9))
After some investigation, it appears the KVM device file descriptor used
for removing a VFIO group was already closed. This is coming from the
Rust sequence of Drop, from the DeviceManager all the way down to
VfioDevice.
Because the DeviceManager owns passthrough_device, which is effectively
a KVM device file descriptor, when the DeviceManager is dropped, the
passthrough_device follows, with the effect of closing the KVM device
file descriptor. Problem is, VfioDevice has not been dropped yet and it
still needs a valid KVM device file descriptor.
That's why the simple way to fix this issue coming from Rust dropping
all resources is to make Linux accountable for it by duplicating the
file descriptor. This way, even when the passthrough_device is dropped,
the KVM file descriptor is closed, but a duplicated instance is still
valid and owned by the VfioContainer.
Signed-off-by: Sebastien Boeuf <sebastien.boeuf@intel.com>
2020-10-15 11:58:13 +00:00
|
|
|
VfioContainer::new(Arc::new(unsafe { DeviceFd::from_raw_fd(dup_device_fd) }))
|
|
|
|
.map_err(DeviceManagerError::VfioCreate)?,
|
2019-11-12 14:36:07 +00:00
|
|
|
);
|
|
|
|
|
2021-02-23 14:01:31 +00:00
|
|
|
let vfio_device = VfioDevice::new(&device_cfg.path, Arc::clone(&vfio_container))
|
|
|
|
.map_err(DeviceManagerError::VfioCreate)?;
|
2020-02-27 16:15:25 +00:00
|
|
|
|
2021-03-03 10:59:53 +00:00
|
|
|
let vfio_mapping = Arc::new(VfioDmaMapping::new(
|
|
|
|
Arc::clone(&vfio_container),
|
|
|
|
Arc::new(memory),
|
|
|
|
));
|
2020-02-27 16:15:25 +00:00
|
|
|
if device_cfg.iommu {
|
|
|
|
if let Some(iommu) = &self.iommu_device {
|
|
|
|
iommu
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2020-03-06 10:34:24 +00:00
|
|
|
.add_external_mapping(pci_device_bdf, vfio_mapping);
|
2020-02-27 16:15:25 +00:00
|
|
|
}
|
2021-03-03 10:59:53 +00:00
|
|
|
} else {
|
|
|
|
for virtio_mem_device in self.virtio_mem_devices.iter() {
|
|
|
|
virtio_mem_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.add_dma_mapping_handler(pci_device_bdf, vfio_mapping.clone())
|
|
|
|
.map_err(DeviceManagerError::AddDmaMappingHandlerVirtioMem)?;
|
|
|
|
}
|
2020-02-27 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2021-03-17 17:45:57 +00:00
|
|
|
let legacy_interrupt_group = if let Some(legacy_interrupt_manager) =
|
|
|
|
&self.legacy_interrupt_manager
|
|
|
|
{
|
2021-02-09 10:51:49 +00:00
|
|
|
Some(
|
|
|
|
legacy_interrupt_manager
|
|
|
|
.create_group(LegacyIrqGroupConfig {
|
2021-03-17 17:45:57 +00:00
|
|
|
irq: self.pci_irq_slots[(pci_device_bdf >> 3) as usize] as InterruptIndex,
|
2021-02-09 10:51:49 +00:00
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::CreateInterruptGroup)?,
|
|
|
|
)
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2019-11-12 14:36:07 +00:00
|
|
|
let mut vfio_pci_device = VfioPciDevice::new(
|
2020-07-03 09:16:49 +00:00
|
|
|
&self.address_manager.vm,
|
2019-11-12 14:36:07 +00:00
|
|
|
vfio_device,
|
2021-02-23 14:01:31 +00:00
|
|
|
vfio_container,
|
2021-02-09 07:36:31 +00:00
|
|
|
&self.msi_interrupt_manager,
|
2021-02-09 10:51:49 +00:00
|
|
|
legacy_interrupt_group,
|
2021-02-23 14:01:31 +00:00
|
|
|
device_cfg.iommu,
|
2019-11-12 14:36:07 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::VfioPciCreate)?;
|
2020-02-27 16:15:25 +00:00
|
|
|
|
2020-03-11 10:23:42 +00:00
|
|
|
let vfio_name = if let Some(id) = &device_cfg.id {
|
2021-03-17 12:19:24 +00:00
|
|
|
if self.device_tree.lock().unwrap().contains_key(id) {
|
2020-03-11 10:23:42 +00:00
|
|
|
return Err(DeviceManagerError::DeviceIdAlreadyInUse);
|
|
|
|
}
|
|
|
|
|
|
|
|
id.clone()
|
|
|
|
} else {
|
|
|
|
let id = self.next_device_name(VFIO_DEVICE_NAME_PREFIX)?;
|
2020-04-27 08:37:56 +00:00
|
|
|
device_cfg.id = Some(id.clone());
|
|
|
|
id
|
2020-03-11 10:23:42 +00:00
|
|
|
};
|
2020-09-10 08:57:53 +00:00
|
|
|
|
|
|
|
vfio_pci_device
|
|
|
|
.map_mmio_regions(&self.address_manager.vm, || {
|
|
|
|
self.memory_manager.lock().unwrap().allocate_memory_slot()
|
|
|
|
})
|
|
|
|
.map_err(DeviceManagerError::VfioMapRegion)?;
|
|
|
|
|
2020-11-30 10:53:31 +00:00
|
|
|
let mut node = device_node!(vfio_name);
|
|
|
|
|
|
|
|
for region in vfio_pci_device.mmio_regions() {
|
|
|
|
node.resources.push(Resource::MmioAddressRange {
|
|
|
|
base: region.start.0,
|
|
|
|
size: region.length as u64,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-26 10:53:02 +00:00
|
|
|
// Register DMA mapping in IOMMU.
|
|
|
|
// Do not register virtio-mem regions, as they are handled directly by
|
|
|
|
// virtio-mem device itself.
|
|
|
|
for (_, zone) in self.memory_manager.lock().unwrap().memory_zones().iter() {
|
|
|
|
for region in zone.regions() {
|
|
|
|
vfio_pci_device
|
|
|
|
.dma_map(
|
|
|
|
region.start_addr().raw_value(),
|
|
|
|
region.len() as u64,
|
|
|
|
region.as_ptr() as u64,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::VfioDmaMap)?;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-05 17:13:28 +00:00
|
|
|
let vfio_pci_device = Arc::new(Mutex::new(vfio_pci_device));
|
|
|
|
|
2020-09-10 08:57:53 +00:00
|
|
|
self.add_pci_device(
|
|
|
|
pci,
|
2020-10-05 17:13:28 +00:00
|
|
|
vfio_pci_device.clone(),
|
|
|
|
vfio_pci_device.clone(),
|
2020-09-10 08:57:53 +00:00
|
|
|
pci_device_bdf,
|
|
|
|
)?;
|
2021-03-18 12:09:52 +00:00
|
|
|
|
|
|
|
node.pci_bdf = Some(pci_device_bdf);
|
|
|
|
node.pci_device_handle = Some(PciDeviceHandle::Vfio(vfio_pci_device));
|
|
|
|
|
2020-11-30 10:53:31 +00:00
|
|
|
self.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.insert(vfio_name.clone(), node);
|
2020-03-06 10:34:24 +00:00
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
Ok((pci_device_bdf, vfio_name))
|
2020-02-27 16:15:25 +00:00
|
|
|
}
|
|
|
|
|
2020-10-05 17:13:28 +00:00
|
|
|
fn add_pci_device(
|
2020-09-10 08:57:53 +00:00
|
|
|
&mut self,
|
|
|
|
pci_bus: &mut PciBus,
|
2020-10-05 17:13:28 +00:00
|
|
|
bus_device: Arc<Mutex<dyn BusDevice>>,
|
|
|
|
pci_device: Arc<Mutex<dyn PciDevice>>,
|
2020-09-10 08:57:53 +00:00
|
|
|
bdf: u32,
|
2020-10-05 17:13:28 +00:00
|
|
|
) -> DeviceManagerResult<Vec<(GuestAddress, GuestUsize, PciBarRegionType)>> {
|
|
|
|
let bars = pci_device
|
2020-09-10 08:57:53 +00:00
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.allocate_bars(&mut self.address_manager.allocator.lock().unwrap())
|
|
|
|
.map_err(DeviceManagerError::AllocateBars)?;
|
|
|
|
|
|
|
|
pci_bus
|
2020-10-05 17:13:28 +00:00
|
|
|
.add_device(bdf, pci_device)
|
2020-09-10 08:57:53 +00:00
|
|
|
.map_err(DeviceManagerError::AddPciDevice)?;
|
|
|
|
|
2020-10-05 17:13:28 +00:00
|
|
|
self.bus_devices.push(Arc::clone(&bus_device));
|
2020-09-10 08:57:53 +00:00
|
|
|
|
|
|
|
pci_bus
|
|
|
|
.register_mapping(
|
2020-10-05 17:13:28 +00:00
|
|
|
bus_device,
|
2020-09-10 08:57:53 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
self.address_manager.io_bus.as_ref(),
|
|
|
|
self.address_manager.mmio_bus.as_ref(),
|
|
|
|
bars.clone(),
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::AddPciDevice)?;
|
|
|
|
|
|
|
|
Ok(bars)
|
|
|
|
}
|
|
|
|
|
2021-02-09 07:36:31 +00:00
|
|
|
fn add_vfio_devices(&mut self, pci: &mut PciBus) -> DeviceManagerResult<Vec<u32>> {
|
2019-10-08 05:05:08 +00:00
|
|
|
let mut iommu_attached_device_ids = Vec::new();
|
2020-03-09 13:08:59 +00:00
|
|
|
let mut devices = self.config.lock().unwrap().devices.clone();
|
2019-11-28 00:45:10 +00:00
|
|
|
|
2020-03-09 13:08:59 +00:00
|
|
|
if let Some(device_list_cfg) = &mut devices {
|
|
|
|
for device_cfg in device_list_cfg.iter_mut() {
|
2021-02-09 07:36:31 +00:00
|
|
|
let (device_id, _) = self.add_passthrough_device(pci, device_cfg)?;
|
2020-03-11 17:23:11 +00:00
|
|
|
if device_cfg.iommu && self.iommu_device.is_some() {
|
2020-02-27 16:15:25 +00:00
|
|
|
iommu_attached_device_ids.push(device_id);
|
2019-10-07 17:48:44 +00:00
|
|
|
}
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-09 13:08:59 +00:00
|
|
|
|
|
|
|
// Update the list of devices
|
|
|
|
self.config.lock().unwrap().devices = devices;
|
|
|
|
|
2019-10-08 05:05:08 +00:00
|
|
|
Ok(iommu_attached_device_ids)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn add_virtio_pci_device(
|
2020-01-29 15:53:12 +00:00
|
|
|
&mut self,
|
2020-04-08 13:04:03 +00:00
|
|
|
virtio_device: VirtioDeviceArc,
|
2019-09-30 14:23:57 +00:00
|
|
|
pci: &mut PciBus,
|
2019-10-02 20:57:20 +00:00
|
|
|
iommu_mapping: &Option<Arc<IommuMapping>>,
|
2020-04-27 14:19:40 +00:00
|
|
|
virtio_device_id: String,
|
2020-03-18 17:24:35 +00:00
|
|
|
) -> DeviceManagerResult<u32> {
|
2020-04-27 14:19:40 +00:00
|
|
|
let id = format!("{}-{}", VIRTIO_PCI_DEVICE_NAME_PREFIX, virtio_device_id);
|
|
|
|
|
2020-04-27 17:12:00 +00:00
|
|
|
// Add the new virtio-pci node to the device tree.
|
2020-05-05 08:23:32 +00:00
|
|
|
let mut node = device_node!(id);
|
2020-04-30 14:39:45 +00:00
|
|
|
node.children = vec![virtio_device_id.clone()];
|
2020-04-27 17:12:00 +00:00
|
|
|
|
2020-05-11 16:09:00 +00:00
|
|
|
// Look for the id in the device tree. If it can be found, that means
|
|
|
|
// the device is being restored, otherwise it's created from scratch.
|
2020-05-12 13:53:09 +00:00
|
|
|
let (pci_device_bdf, config_bar_addr) =
|
|
|
|
if let Some(node) = self.device_tree.lock().unwrap().get(&id) {
|
|
|
|
debug!("Restoring virtio-pci {} resources", id);
|
|
|
|
let pci_device_bdf = node
|
|
|
|
.pci_bdf
|
|
|
|
.ok_or(DeviceManagerError::MissingDeviceNodePciBdf)?;
|
2020-05-11 16:09:00 +00:00
|
|
|
|
2020-05-12 13:53:09 +00:00
|
|
|
pci.get_device_id((pci_device_bdf >> 3) as usize)
|
|
|
|
.map_err(DeviceManagerError::GetPciDeviceId)?;
|
2020-05-11 16:09:00 +00:00
|
|
|
|
2020-05-12 13:53:09 +00:00
|
|
|
if node.resources.is_empty() {
|
2020-05-11 18:02:19 +00:00
|
|
|
return Err(DeviceManagerError::MissingVirtioPciResources);
|
|
|
|
}
|
|
|
|
|
2020-05-12 13:53:09 +00:00
|
|
|
// We know the configuration BAR address is stored on the first
|
|
|
|
// resource in the list.
|
|
|
|
let config_bar_addr = match node.resources[0] {
|
|
|
|
Resource::MmioAddressRange { base, .. } => Some(base),
|
|
|
|
_ => {
|
|
|
|
error!("Unexpected resource {:?} for {}", node.resources[0], id);
|
|
|
|
return Err(DeviceManagerError::MissingVirtioPciResources);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
(pci_device_bdf, config_bar_addr)
|
|
|
|
} else {
|
|
|
|
// We need to shift the device id since the 3 first bits are dedicated
|
|
|
|
// to the PCI function, and we know we don't do multifunction.
|
|
|
|
// Also, because we only support one PCI bus, the bus 0, we don't need
|
|
|
|
// to add anything to the global device ID.
|
|
|
|
let pci_device_bdf = pci
|
|
|
|
.next_device_id()
|
|
|
|
.map_err(DeviceManagerError::NextPciDeviceId)?
|
|
|
|
<< 3;
|
|
|
|
|
|
|
|
(pci_device_bdf, None)
|
|
|
|
};
|
2020-05-11 16:09:00 +00:00
|
|
|
|
2020-04-27 17:12:00 +00:00
|
|
|
// Update the existing virtio node by setting the parent.
|
2020-05-12 13:53:09 +00:00
|
|
|
if let Some(node) = self.device_tree.lock().unwrap().get_mut(&virtio_device_id) {
|
2020-04-27 17:12:00 +00:00
|
|
|
node.parent = Some(id.clone());
|
|
|
|
} else {
|
|
|
|
return Err(DeviceManagerError::MissingNode);
|
|
|
|
}
|
|
|
|
|
2019-12-05 15:42:15 +00:00
|
|
|
// Allows support for one MSI-X vector per queue. It also adds 1
|
|
|
|
// as we need to take into account the dedicated vector to notify
|
|
|
|
// about a virtio config change.
|
2019-11-18 23:10:42 +00:00
|
|
|
let msix_num = (virtio_device.lock().unwrap().queue_max_sizes().len() + 1) as u16;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2019-10-02 20:57:20 +00:00
|
|
|
// Create the callback from the implementation of the DmaRemapping
|
|
|
|
// trait. The point with the callback is to simplify the code as we
|
|
|
|
// know about the device ID from this point.
|
|
|
|
let iommu_mapping_cb: Option<Arc<VirtioIommuRemapping>> =
|
|
|
|
if let Some(mapping) = iommu_mapping {
|
|
|
|
let mapping_clone = mapping.clone();
|
|
|
|
Some(Arc::new(Box::new(move |addr: u64| {
|
2020-03-12 17:12:06 +00:00
|
|
|
mapping_clone.translate(pci_device_bdf, addr).map_err(|e| {
|
2019-10-02 20:57:20 +00:00
|
|
|
std::io::Error::new(
|
|
|
|
std::io::ErrorKind::Other,
|
|
|
|
format!(
|
|
|
|
"failed to translate addr 0x{:x} for device 00:{:02x}.0 {}",
|
2020-03-12 17:12:06 +00:00
|
|
|
addr, pci_device_bdf, e
|
2019-10-02 20:57:20 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
})
|
|
|
|
}) as VirtioIommuRemapping))
|
|
|
|
} else {
|
|
|
|
None
|
|
|
|
};
|
|
|
|
|
2020-01-31 11:55:30 +00:00
|
|
|
let memory = self.memory_manager.lock().unwrap().guest_memory();
|
2020-01-09 16:03:06 +00:00
|
|
|
let mut virtio_pci_device = VirtioPciDevice::new(
|
2020-04-30 18:08:04 +00:00
|
|
|
id.clone(),
|
2020-01-31 11:55:30 +00:00
|
|
|
memory,
|
2020-01-09 16:03:06 +00:00
|
|
|
virtio_device,
|
|
|
|
msix_num,
|
|
|
|
iommu_mapping_cb,
|
2021-02-09 07:36:31 +00:00
|
|
|
&self.msi_interrupt_manager,
|
2020-06-17 13:58:15 +00:00
|
|
|
pci_device_bdf,
|
2020-11-09 13:29:05 +00:00
|
|
|
self.activate_evt
|
|
|
|
.try_clone()
|
|
|
|
.map_err(DeviceManagerError::EventFd)?,
|
2020-01-09 16:03:06 +00:00
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::VirtioDevice)?;
|
|
|
|
|
2020-05-11 18:02:19 +00:00
|
|
|
// This is important as this will set the BAR address if it exists,
|
|
|
|
// which is mandatory on the restore path.
|
|
|
|
if let Some(addr) = config_bar_addr {
|
|
|
|
virtio_pci_device.set_config_bar_addr(addr);
|
|
|
|
}
|
|
|
|
|
2020-09-10 08:57:53 +00:00
|
|
|
let virtio_pci_device = Arc::new(Mutex::new(virtio_pci_device));
|
|
|
|
let bars = self.add_pci_device(
|
|
|
|
pci,
|
|
|
|
virtio_pci_device.clone(),
|
2020-10-05 17:13:28 +00:00
|
|
|
virtio_pci_device.clone(),
|
2020-09-10 08:57:53 +00:00
|
|
|
pci_device_bdf,
|
|
|
|
)?;
|
2019-09-04 13:55:14 +00:00
|
|
|
|
2020-09-10 08:57:53 +00:00
|
|
|
let bar_addr = virtio_pci_device.lock().unwrap().config_bar_addr();
|
|
|
|
for (event, addr) in virtio_pci_device.lock().unwrap().ioeventfds(bar_addr) {
|
2019-09-04 13:55:14 +00:00
|
|
|
let io_addr = IoEventAddress::Mmio(addr);
|
2020-01-31 16:07:08 +00:00
|
|
|
self.address_manager
|
2020-07-03 09:16:49 +00:00
|
|
|
.vm
|
2020-06-02 02:29:54 +00:00
|
|
|
.register_ioevent(event, &io_addr, None)
|
|
|
|
.map_err(|e| DeviceManagerError::RegisterIoevent(e.into()))?;
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-05-11 18:02:19 +00:00
|
|
|
// Update the device tree with correct resource information.
|
|
|
|
for pci_bar in bars.iter() {
|
|
|
|
node.resources.push(Resource::MmioAddressRange {
|
|
|
|
base: pci_bar.0.raw_value(),
|
|
|
|
size: pci_bar.1 as u64,
|
|
|
|
});
|
|
|
|
}
|
2020-04-30 18:08:04 +00:00
|
|
|
node.migratable = Some(Arc::clone(&virtio_pci_device) as Arc<Mutex<dyn Migratable>>);
|
2020-05-11 16:09:00 +00:00
|
|
|
node.pci_bdf = Some(pci_device_bdf);
|
2021-03-18 12:09:52 +00:00
|
|
|
node.pci_device_handle = Some(PciDeviceHandle::Virtio(virtio_pci_device));
|
2020-05-12 13:53:09 +00:00
|
|
|
self.device_tree.lock().unwrap().insert(id, node);
|
2020-04-30 18:08:04 +00:00
|
|
|
|
2020-03-18 17:24:35 +00:00
|
|
|
Ok(pci_device_bdf)
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-06-09 06:17:42 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2020-09-09 14:30:31 +00:00
|
|
|
pub fn io_bus(&self) -> &Arc<Bus> {
|
2020-03-04 15:24:15 +00:00
|
|
|
&self.address_manager.io_bus
|
2019-09-04 14:20:09 +00:00
|
|
|
}
|
|
|
|
|
2020-09-09 14:30:31 +00:00
|
|
|
pub fn mmio_bus(&self) -> &Arc<Bus> {
|
2019-10-23 22:14:13 +00:00
|
|
|
&self.address_manager.mmio_bus
|
2019-09-04 14:20:09 +00:00
|
|
|
}
|
|
|
|
|
2019-11-11 14:57:41 +00:00
|
|
|
pub fn allocator(&self) -> &Arc<Mutex<SystemAllocator>> {
|
|
|
|
&self.address_manager.allocator
|
|
|
|
}
|
|
|
|
|
2020-05-25 08:27:08 +00:00
|
|
|
pub fn interrupt_controller(&self) -> Option<Arc<Mutex<dyn InterruptController>>> {
|
2021-03-29 06:16:35 +00:00
|
|
|
self.interrupt_controller
|
|
|
|
.as_ref()
|
|
|
|
.map(|ic| ic.clone() as Arc<Mutex<dyn InterruptController>>)
|
2019-09-04 14:20:09 +00:00
|
|
|
}
|
2019-09-06 15:42:41 +00:00
|
|
|
|
|
|
|
pub fn console(&self) -> &Arc<Console> {
|
|
|
|
&self.console
|
|
|
|
}
|
2019-09-11 15:22:00 +00:00
|
|
|
|
|
|
|
pub fn cmdline_additions(&self) -> &[String] {
|
|
|
|
self.cmdline_additions.as_slice()
|
|
|
|
}
|
2019-10-02 20:57:20 +00:00
|
|
|
|
2021-02-26 10:53:02 +00:00
|
|
|
pub fn update_memory(&self, new_region: &Arc<GuestRegionMmap>) -> DeviceManagerResult<()> {
|
2020-04-08 13:04:03 +00:00
|
|
|
for (virtio_device, _, _) in self.virtio_devices.iter() {
|
2020-03-23 11:10:26 +00:00
|
|
|
virtio_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
2021-03-05 13:44:54 +00:00
|
|
|
.add_memory_region(new_region)
|
2020-03-23 11:10:26 +00:00
|
|
|
.map_err(DeviceManagerError::UpdateMemoryForVirtioDevice)?;
|
|
|
|
}
|
|
|
|
|
2020-03-26 13:53:43 +00:00
|
|
|
// Take care of updating the memory for VFIO PCI devices.
|
2021-03-17 17:26:01 +00:00
|
|
|
#[cfg(feature = "kvm")]
|
2021-03-18 12:09:52 +00:00
|
|
|
{
|
|
|
|
let device_tree = self.device_tree.lock().unwrap();
|
|
|
|
for pci_device_node in device_tree.pci_devices() {
|
|
|
|
if let PciDeviceHandle::Vfio(vfio_pci_device) = pci_device_node
|
|
|
|
.pci_device_handle
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?
|
|
|
|
{
|
|
|
|
vfio_pci_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.dma_map(
|
|
|
|
new_region.start_addr().raw_value(),
|
|
|
|
new_region.len() as u64,
|
|
|
|
new_region.as_ptr() as u64,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::UpdateMemoryForVfioPciDevice)?;
|
|
|
|
}
|
2020-03-26 13:53:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-23 11:10:26 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2020-11-09 13:29:05 +00:00
|
|
|
pub fn activate_virtio_devices(&self) -> DeviceManagerResult<()> {
|
|
|
|
// Find virtio pci devices and activate any pending ones
|
2021-03-18 12:09:52 +00:00
|
|
|
let device_tree = self.device_tree.lock().unwrap();
|
|
|
|
for pci_device_node in device_tree.pci_devices() {
|
2021-03-17 17:26:01 +00:00
|
|
|
#[allow(irrefutable_let_patterns)]
|
2021-03-18 12:09:52 +00:00
|
|
|
if let PciDeviceHandle::Virtio(virtio_pci_device) = &pci_device_node
|
|
|
|
.pci_device_handle
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?
|
|
|
|
{
|
2020-11-09 13:29:05 +00:00
|
|
|
virtio_pci_device.lock().unwrap().maybe_activate();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2019-11-27 15:28:22 +00:00
|
|
|
pub fn notify_hotplug(
|
|
|
|
&self,
|
2021-01-12 15:10:05 +00:00
|
|
|
_notification_type: AcpiNotificationFlags,
|
2019-11-27 15:28:22 +00:00
|
|
|
) -> DeviceManagerResult<()> {
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
return self
|
|
|
|
.ged_notification_device
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.notify(_notification_type)
|
|
|
|
.map_err(DeviceManagerError::HotPlugNotification);
|
|
|
|
#[cfg(not(feature = "acpi"))]
|
|
|
|
return Ok(());
|
|
|
|
}
|
2020-02-27 13:00:46 +00:00
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_device(
|
|
|
|
&mut self,
|
|
|
|
device_cfg: &mut DeviceConfig,
|
|
|
|
) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-03-04 14:54:42 +00:00
|
|
|
let pci = if let Some(pci_bus) = &self.pci_bus {
|
2021-06-23 20:42:17 +00:00
|
|
|
Arc::clone(pci_bus)
|
2020-02-28 11:29:43 +00:00
|
|
|
} else {
|
|
|
|
return Err(DeviceManagerError::NoPciBus);
|
|
|
|
};
|
|
|
|
|
2020-07-21 14:23:39 +00:00
|
|
|
let (device_id, device_name) =
|
2021-02-09 07:36:31 +00:00
|
|
|
self.add_passthrough_device(&mut pci.lock().unwrap(), device_cfg)?;
|
2020-02-28 11:29:43 +00:00
|
|
|
|
|
|
|
// Update the PCIU bitmap
|
|
|
|
self.pci_devices_up |= 1 << (device_id >> 3);
|
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
Ok(PciDeviceInfo {
|
|
|
|
id: device_name,
|
|
|
|
bdf: device_id,
|
|
|
|
})
|
2020-02-27 13:00:46 +00:00
|
|
|
}
|
2020-03-06 15:53:20 +00:00
|
|
|
|
2020-03-09 10:49:15 +00:00
|
|
|
pub fn remove_device(&mut self, id: String) -> DeviceManagerResult<()> {
|
2021-03-18 12:09:52 +00:00
|
|
|
// The node can be directly a PCI node in case the 'id' refers to a
|
|
|
|
// VFIO device or a virtio-pci one.
|
|
|
|
// In case the 'id' refers to a virtio device, we must find the PCI
|
|
|
|
// node by looking at the parent.
|
|
|
|
let device_tree = self.device_tree.lock().unwrap();
|
|
|
|
let node = device_tree
|
|
|
|
.get(&id)
|
|
|
|
.ok_or(DeviceManagerError::UnknownDeviceId(id))?;
|
|
|
|
|
|
|
|
let pci_device_node = if node.pci_bdf.is_some() && node.pci_device_handle.is_some() {
|
|
|
|
node
|
|
|
|
} else {
|
|
|
|
let parent = node
|
|
|
|
.parent
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::MissingNode)?;
|
|
|
|
device_tree
|
|
|
|
.get(parent)
|
|
|
|
.ok_or(DeviceManagerError::MissingNode)?
|
|
|
|
};
|
2020-04-27 17:12:00 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
let pci_device_bdf = pci_device_node
|
|
|
|
.pci_bdf
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?;
|
|
|
|
let pci_device_handle = pci_device_node
|
|
|
|
.pci_device_handle
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?;
|
|
|
|
#[allow(irrefutable_let_patterns)]
|
|
|
|
if let PciDeviceHandle::Virtio(virtio_pci_device) = pci_device_handle {
|
|
|
|
let device_type = VirtioDeviceType::from(
|
|
|
|
virtio_pci_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.virtio_device()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.device_type(),
|
|
|
|
);
|
|
|
|
match device_type {
|
2021-03-25 16:54:09 +00:00
|
|
|
VirtioDeviceType::Net
|
|
|
|
| VirtioDeviceType::Block
|
|
|
|
| VirtioDeviceType::Pmem
|
|
|
|
| VirtioDeviceType::Fs
|
|
|
|
| VirtioDeviceType::Vsock => {}
|
2021-03-18 12:09:52 +00:00
|
|
|
_ => return Err(DeviceManagerError::RemovalNotAllowed(device_type)),
|
2021-03-17 13:14:41 +00:00
|
|
|
}
|
2020-03-09 10:49:15 +00:00
|
|
|
}
|
2021-03-17 13:14:41 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Update the PCID bitmap
|
|
|
|
self.pci_devices_down |= 1 << (pci_device_bdf >> 3);
|
|
|
|
|
|
|
|
Ok(())
|
2020-03-09 10:49:15 +00:00
|
|
|
}
|
|
|
|
|
2020-03-06 16:52:40 +00:00
|
|
|
pub fn eject_device(&mut self, device_id: u8) -> DeviceManagerResult<()> {
|
|
|
|
// Retrieve the PCI bus.
|
|
|
|
let pci = if let Some(pci_bus) = &self.pci_bus {
|
2021-06-23 20:42:17 +00:00
|
|
|
Arc::clone(pci_bus)
|
2020-03-06 16:52:40 +00:00
|
|
|
} else {
|
|
|
|
return Err(DeviceManagerError::NoPciBus);
|
|
|
|
};
|
|
|
|
|
|
|
|
// Convert the device ID into the corresponding b/d/f.
|
|
|
|
let pci_device_bdf = (device_id as u32) << 3;
|
|
|
|
|
2020-03-09 15:32:27 +00:00
|
|
|
// Give the PCI device ID back to the PCI bus.
|
|
|
|
pci.lock()
|
|
|
|
.unwrap()
|
|
|
|
.put_device_id(device_id as usize)
|
|
|
|
.map_err(DeviceManagerError::PutPciDeviceId)?;
|
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Remove the device from the device tree along with its children.
|
|
|
|
let mut device_tree = self.device_tree.lock().unwrap();
|
|
|
|
let pci_device_node = device_tree
|
|
|
|
.remove_node_by_pci_bdf(pci_device_bdf)
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?;
|
|
|
|
for child in pci_device_node.children.iter() {
|
|
|
|
device_tree.remove(child);
|
|
|
|
}
|
2021-03-03 10:59:53 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
let pci_device_handle = pci_device_node
|
|
|
|
.pci_device_handle
|
|
|
|
.ok_or(DeviceManagerError::MissingPciDevice)?;
|
|
|
|
let (pci_device, bus_device, virtio_device) = match pci_device_handle {
|
|
|
|
#[cfg(feature = "kvm")]
|
|
|
|
PciDeviceHandle::Vfio(vfio_pci_device) => {
|
|
|
|
{
|
|
|
|
// Unregister DMA mapping in IOMMU.
|
|
|
|
// Do not unregister the virtio-mem region, as it is
|
|
|
|
// directly handled by the virtio-mem device.
|
|
|
|
let dev = vfio_pci_device.lock().unwrap();
|
|
|
|
for (_, zone) in self.memory_manager.lock().unwrap().memory_zones().iter() {
|
|
|
|
for region in zone.regions() {
|
|
|
|
dev.dma_unmap(region.start_addr().raw_value(), region.len() as u64)
|
|
|
|
.map_err(DeviceManagerError::VfioDmaUnmap)?;
|
2021-03-03 10:59:53 +00:00
|
|
|
}
|
|
|
|
}
|
2021-02-26 10:53:02 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Unregister the VFIO mapping handler from all virtio-mem
|
|
|
|
// devices.
|
|
|
|
if !dev.iommu_attached() {
|
|
|
|
for virtio_mem_device in self.virtio_mem_devices.iter() {
|
|
|
|
virtio_mem_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.remove_dma_mapping_handler(pci_device_bdf)
|
|
|
|
.map_err(DeviceManagerError::RemoveDmaMappingHandlerVirtioMem)?;
|
|
|
|
}
|
2021-03-17 17:26:01 +00:00
|
|
|
}
|
|
|
|
}
|
2020-03-06 16:52:40 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
(
|
|
|
|
Arc::clone(&vfio_pci_device) as Arc<Mutex<dyn PciDevice>>,
|
|
|
|
Arc::clone(&vfio_pci_device) as Arc<Mutex<dyn BusDevice>>,
|
|
|
|
None as Option<VirtioDeviceArc>,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
PciDeviceHandle::Virtio(virtio_pci_device) => {
|
|
|
|
let bar_addr = virtio_pci_device.lock().unwrap().config_bar_addr();
|
|
|
|
for (event, addr) in virtio_pci_device.lock().unwrap().ioeventfds(bar_addr) {
|
|
|
|
let io_addr = IoEventAddress::Mmio(addr);
|
|
|
|
self.address_manager
|
|
|
|
.vm
|
|
|
|
.unregister_ioevent(event, &io_addr)
|
|
|
|
.map_err(|e| DeviceManagerError::UnRegisterIoevent(e.into()))?;
|
|
|
|
}
|
2020-03-11 09:05:37 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
(
|
|
|
|
Arc::clone(&virtio_pci_device) as Arc<Mutex<dyn PciDevice>>,
|
|
|
|
Arc::clone(&virtio_pci_device) as Arc<Mutex<dyn BusDevice>>,
|
|
|
|
Some(virtio_pci_device.lock().unwrap().virtio_device()),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
};
|
2020-03-06 16:52:40 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Free the allocated BARs
|
|
|
|
pci_device
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.free_bars(&mut self.address_manager.allocator.lock().unwrap())
|
|
|
|
.map_err(DeviceManagerError::FreePciBars)?;
|
2020-03-06 16:52:40 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Remove the device from the PCI bus
|
|
|
|
pci.lock()
|
|
|
|
.unwrap()
|
|
|
|
.remove_by_device(&pci_device)
|
|
|
|
.map_err(DeviceManagerError::RemoveDeviceFromPciBus)?;
|
2020-04-20 15:40:11 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
// Remove the device from the IO bus
|
|
|
|
self.io_bus()
|
|
|
|
.remove_by_device(&bus_device)
|
|
|
|
.map_err(DeviceManagerError::RemoveDeviceFromIoBus)?;
|
|
|
|
|
|
|
|
// Remove the device from the MMIO bus
|
|
|
|
self.mmio_bus()
|
|
|
|
.remove_by_device(&bus_device)
|
|
|
|
.map_err(DeviceManagerError::RemoveDeviceFromMmioBus)?;
|
|
|
|
|
|
|
|
// Remove the device from the list of BusDevice held by the
|
|
|
|
// DeviceManager.
|
|
|
|
self.bus_devices
|
|
|
|
.retain(|dev| !Arc::ptr_eq(dev, &bus_device));
|
2020-04-20 15:40:11 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
// Shutdown and remove the underlying virtio-device if present
|
|
|
|
if let Some(virtio_device) = virtio_device {
|
|
|
|
for mapping in virtio_device.lock().unwrap().userspace_mappings() {
|
|
|
|
self.memory_manager
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.remove_userspace_mapping(
|
|
|
|
mapping.addr.raw_value(),
|
|
|
|
mapping.len,
|
|
|
|
mapping.host_addr,
|
|
|
|
mapping.mergeable,
|
|
|
|
mapping.mem_slot,
|
|
|
|
)
|
|
|
|
.map_err(DeviceManagerError::MemoryManager)?;
|
2020-04-08 14:39:50 +00:00
|
|
|
}
|
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
virtio_device.lock().unwrap().shutdown();
|
2020-03-06 16:52:40 +00:00
|
|
|
|
2021-03-18 12:09:52 +00:00
|
|
|
self.virtio_devices
|
|
|
|
.retain(|(d, _, _)| !Arc::ptr_eq(d, &virtio_device));
|
2020-03-06 16:52:40 +00:00
|
|
|
}
|
2021-03-18 12:09:52 +00:00
|
|
|
|
|
|
|
// At this point, the device has been removed from all the list and
|
|
|
|
// buses where it was stored. At the end of this function, after
|
|
|
|
// any_device, bus_device and pci_device are released, the actual
|
|
|
|
// device will be dropped.
|
|
|
|
Ok(())
|
2020-03-06 15:53:20 +00:00
|
|
|
}
|
2020-03-23 16:18:10 +00:00
|
|
|
|
|
|
|
fn hotplug_virtio_pci_device(
|
|
|
|
&mut self,
|
|
|
|
device: VirtioDeviceArc,
|
|
|
|
iommu_attached: bool,
|
2020-04-27 12:38:24 +00:00
|
|
|
id: String,
|
2020-06-11 14:48:25 +00:00
|
|
|
) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-03-23 16:18:10 +00:00
|
|
|
if iommu_attached {
|
|
|
|
warn!("Placing device behind vIOMMU is not available for hotplugged devices");
|
|
|
|
}
|
|
|
|
|
|
|
|
let pci = if let Some(pci_bus) = &self.pci_bus {
|
2021-06-23 20:42:17 +00:00
|
|
|
Arc::clone(pci_bus)
|
2020-03-23 16:18:10 +00:00
|
|
|
} else {
|
|
|
|
return Err(DeviceManagerError::NoPciBus);
|
|
|
|
};
|
|
|
|
|
2020-04-20 17:35:16 +00:00
|
|
|
// Add the virtio device to the device manager list. This is important
|
|
|
|
// as the list is used to notify virtio devices about memory updates
|
|
|
|
// for instance.
|
|
|
|
self.virtio_devices
|
|
|
|
.push((device.clone(), iommu_attached, id.clone()));
|
|
|
|
|
2021-02-09 07:36:31 +00:00
|
|
|
let device_id =
|
|
|
|
self.add_virtio_pci_device(device, &mut pci.lock().unwrap(), &None, id.clone())?;
|
2020-03-23 16:18:10 +00:00
|
|
|
|
|
|
|
// Update the PCIU bitmap
|
|
|
|
self.pci_devices_up |= 1 << (device_id >> 3);
|
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
Ok(PciDeviceInfo { id, bdf: device_id })
|
2020-03-23 16:18:10 +00:00
|
|
|
}
|
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_disk(&mut self, disk_cfg: &mut DiskConfig) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-04-08 13:04:03 +00:00
|
|
|
let (device, iommu_attached, id) = self.make_virtio_block_device(disk_cfg)?;
|
|
|
|
self.hotplug_virtio_pci_device(device, iommu_attached, id)
|
2020-03-23 16:18:10 +00:00
|
|
|
}
|
2020-03-23 16:18:10 +00:00
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_fs(&mut self, fs_cfg: &mut FsConfig) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-04-14 09:21:24 +00:00
|
|
|
let (device, iommu_attached, id) = self.make_virtio_fs_device(fs_cfg)?;
|
|
|
|
self.hotplug_virtio_pci_device(device, iommu_attached, id)
|
|
|
|
}
|
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_pmem(&mut self, pmem_cfg: &mut PmemConfig) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-04-08 13:04:03 +00:00
|
|
|
let (device, iommu_attached, id) = self.make_virtio_pmem_device(pmem_cfg)?;
|
|
|
|
self.hotplug_virtio_pci_device(device, iommu_attached, id)
|
2020-03-23 16:18:10 +00:00
|
|
|
}
|
2020-03-23 16:18:10 +00:00
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_net(&mut self, net_cfg: &mut NetConfig) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-04-08 13:04:03 +00:00
|
|
|
let (device, iommu_attached, id) = self.make_virtio_net_device(net_cfg)?;
|
|
|
|
self.hotplug_virtio_pci_device(device, iommu_attached, id)
|
2020-03-23 16:18:10 +00:00
|
|
|
}
|
2020-04-28 14:59:08 +00:00
|
|
|
|
2020-06-11 14:48:25 +00:00
|
|
|
pub fn add_vsock(&mut self, vsock_cfg: &mut VsockConfig) -> DeviceManagerResult<PciDeviceInfo> {
|
2020-04-28 14:59:08 +00:00
|
|
|
let (device, iommu_attached, id) = self.make_virtio_vsock_device(vsock_cfg)?;
|
|
|
|
self.hotplug_virtio_pci_device(device, iommu_attached, id)
|
|
|
|
}
|
2020-06-24 11:53:19 +00:00
|
|
|
|
|
|
|
pub fn counters(&self) -> HashMap<String, HashMap<&'static str, Wrapping<u64>>> {
|
|
|
|
let mut counters = HashMap::new();
|
|
|
|
|
|
|
|
for (virtio_device, _, id) in &self.virtio_devices {
|
|
|
|
let virtio_device = virtio_device.lock().unwrap();
|
|
|
|
if let Some(device_counters) = virtio_device.counters() {
|
|
|
|
counters.insert(id.clone(), device_counters.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
counters
|
|
|
|
}
|
2020-10-14 10:04:42 +00:00
|
|
|
|
|
|
|
pub fn resize_balloon(&mut self, size: u64) -> DeviceManagerResult<()> {
|
|
|
|
if let Some(balloon) = &self.balloon {
|
|
|
|
return balloon
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.resize(size)
|
|
|
|
.map_err(DeviceManagerError::VirtioBalloonResize);
|
|
|
|
}
|
|
|
|
|
|
|
|
warn!("No balloon setup: Can't resize the balloon");
|
|
|
|
Err(DeviceManagerError::MissingVirtioBalloon)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn balloon_size(&self) -> u64 {
|
|
|
|
if let Some(balloon) = &self.balloon {
|
|
|
|
return balloon.lock().unwrap().get_actual();
|
|
|
|
}
|
|
|
|
|
|
|
|
0
|
|
|
|
}
|
2020-11-30 09:06:13 +00:00
|
|
|
|
|
|
|
pub fn device_tree(&self) -> Arc<Mutex<DeviceTree>> {
|
|
|
|
self.device_tree.clone()
|
|
|
|
}
|
2021-01-13 10:04:33 +00:00
|
|
|
|
2021-06-06 08:13:59 +00:00
|
|
|
pub fn restore_devices(
|
|
|
|
&mut self,
|
|
|
|
snapshot: Snapshot,
|
|
|
|
) -> std::result::Result<(), MigratableError> {
|
|
|
|
// Finally, restore all devices associated with the DeviceManager.
|
|
|
|
// It's important to restore devices in the right order, that's why
|
|
|
|
// the device tree is the right way to ensure we restore a child before
|
|
|
|
// its parent node.
|
|
|
|
for node in self
|
|
|
|
.device_tree
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.breadth_first_traversal()
|
|
|
|
.rev()
|
|
|
|
{
|
|
|
|
// Restore the node
|
|
|
|
if let Some(migratable) = &node.migratable {
|
|
|
|
debug!("Restoring {} from DeviceManager", node.id);
|
|
|
|
if let Some(snapshot) = snapshot.snapshots.get(&node.id) {
|
|
|
|
migratable.lock().unwrap().pause()?;
|
|
|
|
migratable.lock().unwrap().restore(*snapshot.clone())?;
|
|
|
|
} else {
|
|
|
|
return Err(MigratableError::Restore(anyhow!(
|
|
|
|
"Missing device {}",
|
|
|
|
node.id
|
|
|
|
)));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2021-01-13 10:04:33 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
2021-03-07 13:39:11 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-01-13 10:04:33 +00:00
|
|
|
pub fn notify_power_button(&self) -> DeviceManagerResult<()> {
|
2021-01-30 01:02:16 +00:00
|
|
|
self.ged_notification_device
|
2021-01-13 10:04:33 +00:00
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.notify(AcpiNotificationFlags::POWER_BUTTON_CHANGED)
|
2021-01-30 01:02:16 +00:00
|
|
|
.map_err(DeviceManagerError::PowerButtonNotification)
|
2021-01-13 10:04:33 +00:00
|
|
|
}
|
2021-03-07 13:39:11 +00:00
|
|
|
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
pub fn notify_power_button(&self) -> DeviceManagerResult<()> {
|
|
|
|
self.gpio_device
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.trigger_key(3)
|
|
|
|
.map_err(DeviceManagerError::AArch64PowerButtonNotification)
|
|
|
|
}
|
2021-06-14 13:38:24 +00:00
|
|
|
|
|
|
|
pub fn iommu_attached_devices(&self) -> &Option<(u32, Vec<u32>)> {
|
|
|
|
&self.iommu_attached_devices
|
|
|
|
}
|
2019-09-04 13:55:14 +00:00
|
|
|
}
|
|
|
|
|
2020-09-11 14:15:29 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
fn numa_node_id_from_memory_zone_id(numa_nodes: &NumaNodes, memory_zone_id: &str) -> Option<u32> {
|
|
|
|
for (numa_node_id, numa_node) in numa_nodes.iter() {
|
|
|
|
if numa_node
|
|
|
|
.memory_zones()
|
|
|
|
.contains(&memory_zone_id.to_owned())
|
|
|
|
{
|
|
|
|
return Some(*numa_node_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
None
|
|
|
|
}
|
|
|
|
|
2020-02-26 12:03:29 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
struct PciDevSlot {
|
|
|
|
device_id: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
impl Aml for PciDevSlot {
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
let sun = self.device_id;
|
|
|
|
let adr: u32 = (self.device_id as u32) << 16;
|
|
|
|
aml::Device::new(
|
|
|
|
format!("S{:03}", self.device_id).as_str().into(),
|
|
|
|
vec![
|
|
|
|
&aml::Name::new("_SUN".into(), &sun),
|
|
|
|
&aml::Name::new("_ADR".into(), &adr),
|
2020-02-27 08:15:15 +00:00
|
|
|
&aml::Method::new(
|
|
|
|
"_EJ0".into(),
|
|
|
|
1,
|
|
|
|
true,
|
|
|
|
vec![&aml::MethodCall::new(
|
|
|
|
"\\_SB_.PHPR.PCEJ".into(),
|
|
|
|
vec![&aml::Path::new("_SUN")],
|
|
|
|
)],
|
|
|
|
),
|
2020-02-26 12:03:29 +00:00
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-26 15:35:15 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
struct PciDevSlotNotify {
|
|
|
|
device_id: u8,
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
impl Aml for PciDevSlotNotify {
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
let device_id_mask: u32 = 1 << self.device_id;
|
|
|
|
let object = aml::Path::new(&format!("S{:03}", self.device_id));
|
|
|
|
let mut bytes = aml::And::new(&aml::Local(0), &aml::Arg(0), &device_id_mask).to_aml_bytes();
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
&aml::If::new(
|
|
|
|
&aml::Equal::new(&aml::Local(0), &device_id_mask),
|
|
|
|
vec![&aml::Notify::new(&object, &aml::Arg(1))],
|
|
|
|
)
|
|
|
|
.to_aml_bytes(),
|
|
|
|
);
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
struct PciDevSlotMethods {}
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
impl Aml for PciDevSlotMethods {
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
let mut device_notifies = Vec::new();
|
|
|
|
for device_id in 0..32 {
|
|
|
|
device_notifies.push(PciDevSlotNotify { device_id });
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut device_notifies_refs: Vec<&dyn aml::Aml> = Vec::new();
|
|
|
|
for device_notify in device_notifies.iter() {
|
|
|
|
device_notifies_refs.push(device_notify);
|
|
|
|
}
|
|
|
|
|
2020-02-26 16:32:55 +00:00
|
|
|
let mut bytes =
|
|
|
|
aml::Method::new("DVNT".into(), 2, true, device_notifies_refs).to_aml_bytes();
|
|
|
|
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
&aml::Method::new(
|
|
|
|
"PCNT".into(),
|
|
|
|
0,
|
|
|
|
true,
|
|
|
|
vec![
|
|
|
|
&aml::MethodCall::new(
|
|
|
|
"DVNT".into(),
|
|
|
|
vec![&aml::Path::new("\\_SB_.PHPR.PCIU"), &aml::ONE],
|
|
|
|
),
|
|
|
|
&aml::MethodCall::new(
|
|
|
|
"DVNT".into(),
|
|
|
|
vec![&aml::Path::new("\\_SB_.PHPR.PCID"), &3usize],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes(),
|
|
|
|
);
|
|
|
|
bytes
|
2020-02-26 15:35:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-05-26 05:33:08 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
struct PciDsmMethod {}
|
|
|
|
|
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
impl Aml for PciDsmMethod {
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
|
|
|
// Refer to ACPI spec v6.3 Ch 9.1.1 and PCI Firmware spec v3.3 Ch 4.6.1
|
|
|
|
// _DSM (Device Specific Method), the following is the implementation in ASL.
|
|
|
|
/*
|
|
|
|
Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method
|
|
|
|
{
|
|
|
|
If ((Arg0 == ToUUID ("e5c937d0-3553-4d7a-9117-ea4d19c3434d") /* Device Labeling Interface */))
|
|
|
|
{
|
|
|
|
If ((Arg2 == Zero))
|
|
|
|
{
|
|
|
|
Return (Buffer (One) { 0x21 })
|
|
|
|
}
|
|
|
|
If ((Arg2 == 0x05))
|
|
|
|
{
|
|
|
|
Return (Zero)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Return (Buffer (One) { 0x00 })
|
|
|
|
}
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* As per ACPI v6.3 Ch 19.6.142, the UUID is required to be in mixed endian:
|
|
|
|
* Among the fields of a UUID:
|
|
|
|
* {d1 (8 digits)} - {d2 (4 digits)} - {d3 (4 digits)} - {d4 (16 digits)}
|
|
|
|
* d1 ~ d3 need to be little endian, d4 be big endian.
|
|
|
|
* See https://en.wikipedia.org/wiki/Universally_unique_identifier#Encoding .
|
|
|
|
*/
|
|
|
|
let uuid = Uuid::parse_str("E5C937D0-3553-4D7A-9117-EA4D19C3434D").unwrap();
|
|
|
|
let (uuid_d1, uuid_d2, uuid_d3, uuid_d4) = uuid.as_fields();
|
|
|
|
let mut uuid_buf = vec![];
|
|
|
|
uuid_buf.extend(&uuid_d1.to_le_bytes());
|
|
|
|
uuid_buf.extend(&uuid_d2.to_le_bytes());
|
|
|
|
uuid_buf.extend(&uuid_d3.to_le_bytes());
|
|
|
|
uuid_buf.extend(uuid_d4);
|
|
|
|
aml::Method::new(
|
|
|
|
"_DSM".into(),
|
|
|
|
4,
|
|
|
|
false,
|
|
|
|
vec![
|
|
|
|
&aml::If::new(
|
|
|
|
&aml::Equal::new(&aml::Arg(0), &aml::Buffer::new(uuid_buf)),
|
|
|
|
vec![
|
|
|
|
&aml::If::new(
|
|
|
|
&aml::Equal::new(&aml::Arg(2), &aml::ZERO),
|
|
|
|
vec![&aml::Return::new(&aml::Buffer::new(vec![0x21]))],
|
|
|
|
),
|
|
|
|
&aml::If::new(
|
|
|
|
&aml::Equal::new(&aml::Arg(2), &0x05u8),
|
|
|
|
vec![&aml::Return::new(&aml::ZERO)],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
&aml::Return::new(&aml::Buffer::new(vec![0])),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-06 16:14:32 +00:00
|
|
|
#[cfg(feature = "acpi")]
|
|
|
|
impl Aml for DeviceManager {
|
|
|
|
fn to_aml_bytes(&self) -> Vec<u8> {
|
2021-02-02 23:27:56 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
use arch::aarch64::DeviceInfoForFdt;
|
|
|
|
|
2019-12-06 16:14:32 +00:00
|
|
|
let mut bytes = Vec::new();
|
2020-02-26 16:03:15 +00:00
|
|
|
// PCI hotplug controller
|
|
|
|
bytes.extend_from_slice(
|
|
|
|
&aml::Device::new(
|
|
|
|
"_SB_.PHPR".into(),
|
|
|
|
vec![
|
2021-03-25 15:57:27 +00:00
|
|
|
&aml::Name::new("_HID".into(), &aml::EisaName::new("PNP0A06")),
|
2020-02-26 16:03:15 +00:00
|
|
|
&aml::Name::new("_STA".into(), &0x0bu8),
|
2020-08-13 21:18:17 +00:00
|
|
|
&aml::Name::new("_UID".into(), &"PCI Hotplug Controller"),
|
2020-02-26 16:03:15 +00:00
|
|
|
&aml::Mutex::new("BLCK".into(), 0),
|
|
|
|
&aml::Name::new(
|
|
|
|
"_CRS".into(),
|
2021-01-20 16:12:02 +00:00
|
|
|
&aml::ResourceTemplate::new(vec![&aml::AddressSpace::new_memory(
|
|
|
|
aml::AddressSpaceCachable::NotCacheable,
|
|
|
|
true,
|
|
|
|
self.acpi_address.0 as u64,
|
|
|
|
self.acpi_address.0 + DEVICE_MANAGER_ACPI_SIZE as u64 - 1,
|
2020-02-26 16:03:15 +00:00
|
|
|
)]),
|
|
|
|
),
|
2021-01-20 16:12:02 +00:00
|
|
|
// OpRegion and Fields map MMIO range into individual field values
|
|
|
|
&aml::OpRegion::new(
|
|
|
|
"PCST".into(),
|
|
|
|
aml::OpRegionSpace::SystemMemory,
|
|
|
|
self.acpi_address.0 as usize,
|
|
|
|
DEVICE_MANAGER_ACPI_SIZE,
|
|
|
|
),
|
2020-02-26 16:03:15 +00:00
|
|
|
&aml::Field::new(
|
|
|
|
"PCST".into(),
|
|
|
|
aml::FieldAccessType::DWord,
|
|
|
|
aml::FieldUpdateRule::WriteAsZeroes,
|
|
|
|
vec![
|
|
|
|
aml::FieldEntry::Named(*b"PCIU", 32),
|
|
|
|
aml::FieldEntry::Named(*b"PCID", 32),
|
|
|
|
aml::FieldEntry::Named(*b"B0EJ", 32),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
&aml::Method::new(
|
|
|
|
"PCEJ".into(),
|
|
|
|
1,
|
|
|
|
true,
|
|
|
|
vec![
|
|
|
|
// Take lock defined above
|
|
|
|
&aml::Acquire::new("BLCK".into(), 0xffff),
|
|
|
|
// Write PCI bus number (in first argument) to I/O port via field
|
|
|
|
&aml::ShiftLeft::new(&aml::Path::new("B0EJ"), &aml::ONE, &aml::Arg(0)),
|
|
|
|
// Release lock
|
|
|
|
&aml::Release::new("BLCK".into()),
|
|
|
|
// Return 0
|
|
|
|
&aml::Return::new(&aml::ZERO),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes(),
|
|
|
|
);
|
|
|
|
|
2020-01-31 11:55:30 +00:00
|
|
|
let start_of_device_area = self.memory_manager.lock().unwrap().start_of_device_area().0;
|
|
|
|
let end_of_device_area = self.memory_manager.lock().unwrap().end_of_device_area().0;
|
2020-02-26 12:03:29 +00:00
|
|
|
|
|
|
|
let mut pci_dsdt_inner_data: Vec<&dyn aml::Aml> = Vec::new();
|
2021-03-25 15:57:27 +00:00
|
|
|
let hid = aml::Name::new("_HID".into(), &aml::EisaName::new("PNP0A08"));
|
2020-02-26 12:03:29 +00:00
|
|
|
pci_dsdt_inner_data.push(&hid);
|
2021-03-25 15:57:27 +00:00
|
|
|
let cid = aml::Name::new("_CID".into(), &aml::EisaName::new("PNP0A03"));
|
2020-02-26 12:03:29 +00:00
|
|
|
pci_dsdt_inner_data.push(&cid);
|
|
|
|
let adr = aml::Name::new("_ADR".into(), &aml::ZERO);
|
|
|
|
pci_dsdt_inner_data.push(&adr);
|
|
|
|
let seg = aml::Name::new("_SEG".into(), &aml::ZERO);
|
|
|
|
pci_dsdt_inner_data.push(&seg);
|
|
|
|
let uid = aml::Name::new("_UID".into(), &aml::ZERO);
|
|
|
|
pci_dsdt_inner_data.push(&uid);
|
|
|
|
let supp = aml::Name::new("SUPP".into(), &aml::ZERO);
|
|
|
|
pci_dsdt_inner_data.push(&supp);
|
2021-05-26 05:33:08 +00:00
|
|
|
|
2021-06-17 09:00:55 +00:00
|
|
|
// Since Cloud Hypervisor supports only one PCI bus, it can be tied
|
|
|
|
// to the NUMA node 0. It's up to the user to organize the NUMA nodes
|
|
|
|
// so that the PCI bus relates to the expected vCPUs and guest RAM.
|
|
|
|
let proximity_domain = 0u32;
|
|
|
|
let pxm_return = aml::Return::new(&proximity_domain);
|
|
|
|
let pxm = aml::Method::new("_PXM".into(), 0, false, vec![&pxm_return]);
|
|
|
|
pci_dsdt_inner_data.push(&pxm);
|
|
|
|
|
2021-05-26 05:33:08 +00:00
|
|
|
let pci_dsm = PciDsmMethod {};
|
|
|
|
pci_dsdt_inner_data.push(&pci_dsm);
|
|
|
|
|
2020-02-26 12:03:29 +00:00
|
|
|
let crs = aml::Name::new(
|
|
|
|
"_CRS".into(),
|
|
|
|
&aml::ResourceTemplate::new(vec![
|
|
|
|
&aml::AddressSpace::new_bus_number(0x0u16, 0xffu16),
|
2021-02-02 23:27:56 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-03-25 15:57:27 +00:00
|
|
|
&aml::Io::new(0xcf8, 0xcf8, 1, 0x8),
|
2021-02-02 23:27:56 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
&aml::Memory32Fixed::new(
|
|
|
|
true,
|
|
|
|
layout::PCI_MMCONFIG_START.0 as u32,
|
|
|
|
layout::PCI_MMCONFIG_SIZE as u32,
|
|
|
|
),
|
2020-02-26 12:03:29 +00:00
|
|
|
&aml::AddressSpace::new_memory(
|
|
|
|
aml::AddressSpaceCachable::NotCacheable,
|
|
|
|
true,
|
|
|
|
layout::MEM_32BIT_DEVICES_START.0 as u32,
|
|
|
|
(layout::MEM_32BIT_DEVICES_START.0 + layout::MEM_32BIT_DEVICES_SIZE - 1) as u32,
|
2019-12-06 16:14:32 +00:00
|
|
|
),
|
2020-02-26 12:03:29 +00:00
|
|
|
&aml::AddressSpace::new_memory(
|
|
|
|
aml::AddressSpaceCachable::NotCacheable,
|
|
|
|
true,
|
|
|
|
start_of_device_area,
|
|
|
|
end_of_device_area,
|
|
|
|
),
|
2021-06-22 17:04:57 +00:00
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
&aml::AddressSpace::new_io(0u16, 0x0cf7u16),
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
&aml::AddressSpace::new_io(0x0d00u16, 0xffffu16),
|
2020-02-26 12:03:29 +00:00
|
|
|
]),
|
|
|
|
);
|
|
|
|
pci_dsdt_inner_data.push(&crs);
|
|
|
|
|
|
|
|
let mut pci_devices = Vec::new();
|
|
|
|
for device_id in 0..32 {
|
|
|
|
let pci_device = PciDevSlot { device_id };
|
|
|
|
pci_devices.push(pci_device);
|
|
|
|
}
|
|
|
|
for pci_device in pci_devices.iter() {
|
|
|
|
pci_dsdt_inner_data.push(pci_device);
|
|
|
|
}
|
|
|
|
|
2020-02-26 15:35:15 +00:00
|
|
|
let pci_device_methods = PciDevSlotMethods {};
|
|
|
|
pci_dsdt_inner_data.push(&pci_device_methods);
|
|
|
|
|
2021-02-09 10:32:40 +00:00
|
|
|
// Build PCI routing table, listing IRQs assigned to PCI devices.
|
|
|
|
let prt_package_list: Vec<(u32, u32)> = self
|
2021-03-17 17:45:57 +00:00
|
|
|
.pci_irq_slots
|
2021-02-09 10:32:40 +00:00
|
|
|
.iter()
|
2021-03-17 17:45:57 +00:00
|
|
|
.enumerate()
|
|
|
|
.map(|(i, irq)| (((((i as u32) & 0x1fu32) << 16) | 0xffffu32), *irq as u32))
|
2021-02-09 10:32:40 +00:00
|
|
|
.collect();
|
|
|
|
let prt_package_list: Vec<aml::Package> = prt_package_list
|
|
|
|
.iter()
|
|
|
|
.map(|(bdf, irq)| aml::Package::new(vec![bdf, &0u8, &0u8, irq]))
|
|
|
|
.collect();
|
|
|
|
let prt_package_list: Vec<&dyn Aml> = prt_package_list
|
|
|
|
.iter()
|
|
|
|
.map(|item| item as &dyn Aml)
|
|
|
|
.collect();
|
|
|
|
let prt = aml::Name::new("_PRT".into(), &aml::Package::new(prt_package_list));
|
|
|
|
pci_dsdt_inner_data.push(&prt);
|
|
|
|
|
2020-02-26 12:03:29 +00:00
|
|
|
let pci_dsdt_data =
|
|
|
|
aml::Device::new("_SB_.PCI0".into(), pci_dsdt_inner_data).to_aml_bytes();
|
2019-12-06 16:14:32 +00:00
|
|
|
|
|
|
|
let mbrd_dsdt_data = aml::Device::new(
|
|
|
|
"_SB_.MBRD".into(),
|
|
|
|
vec![
|
2021-03-25 15:57:27 +00:00
|
|
|
&aml::Name::new("_HID".into(), &aml::EisaName::new("PNP0C02")),
|
2019-12-06 16:14:32 +00:00
|
|
|
&aml::Name::new("_UID".into(), &aml::ZERO),
|
|
|
|
&aml::Name::new(
|
|
|
|
"_CRS".into(),
|
|
|
|
&aml::ResourceTemplate::new(vec![&aml::Memory32Fixed::new(
|
|
|
|
true,
|
|
|
|
layout::PCI_MMCONFIG_START.0 as u32,
|
|
|
|
layout::PCI_MMCONFIG_SIZE as u32,
|
|
|
|
)]),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes();
|
|
|
|
|
2021-02-02 23:27:56 +00:00
|
|
|
// Serial device
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
let serial_irq = 4;
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
let serial_irq =
|
|
|
|
if self.config.lock().unwrap().serial.clone().mode != ConsoleOutputMode::Off {
|
|
|
|
self.get_device_info()
|
|
|
|
.clone()
|
|
|
|
.get(&(DeviceType::Serial, DeviceType::Serial.to_string()))
|
|
|
|
.unwrap()
|
|
|
|
.irq()
|
|
|
|
} else {
|
|
|
|
// If serial is turned off, add a fake device with invalid irq.
|
|
|
|
31
|
|
|
|
};
|
2019-12-06 16:14:32 +00:00
|
|
|
let com1_dsdt_data = aml::Device::new(
|
|
|
|
"_SB_.COM1".into(),
|
|
|
|
vec![
|
2021-02-02 23:27:56 +00:00
|
|
|
&aml::Name::new(
|
|
|
|
"_HID".into(),
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
|
|
|
&aml::EisaName::new("PNP0501"),
|
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
&"ARMH0011",
|
|
|
|
),
|
2019-12-06 16:14:32 +00:00
|
|
|
&aml::Name::new("_UID".into(), &aml::ZERO),
|
|
|
|
&aml::Name::new(
|
|
|
|
"_CRS".into(),
|
|
|
|
&aml::ResourceTemplate::new(vec![
|
2021-02-02 23:27:56 +00:00
|
|
|
&aml::Interrupt::new(true, true, false, false, serial_irq),
|
|
|
|
#[cfg(target_arch = "x86_64")]
|
2021-03-25 15:57:27 +00:00
|
|
|
&aml::Io::new(0x3f8, 0x3f8, 0, 0x8),
|
2021-02-02 23:27:56 +00:00
|
|
|
#[cfg(target_arch = "aarch64")]
|
|
|
|
&aml::Memory32Fixed::new(
|
|
|
|
true,
|
|
|
|
arch::layout::LEGACY_SERIAL_MAPPED_IO_START as u32,
|
|
|
|
MMIO_LEN as u32,
|
|
|
|
),
|
2019-12-06 16:14:32 +00:00
|
|
|
]),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes();
|
|
|
|
|
|
|
|
let s5_sleep_data =
|
|
|
|
aml::Name::new("_S5_".into(), &aml::Package::new(vec![&5u8])).to_aml_bytes();
|
|
|
|
|
2021-01-13 10:01:35 +00:00
|
|
|
let power_button_dsdt_data = aml::Device::new(
|
|
|
|
"_SB_.PWRB".into(),
|
|
|
|
vec![
|
2021-03-25 15:57:27 +00:00
|
|
|
&aml::Name::new("_HID".into(), &aml::EisaName::new("PNP0C0C")),
|
2021-01-13 10:01:35 +00:00
|
|
|
&aml::Name::new("_UID".into(), &aml::ZERO),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
.to_aml_bytes();
|
|
|
|
|
2020-02-25 07:20:59 +00:00
|
|
|
let ged_data = self
|
|
|
|
.ged_notification_device
|
|
|
|
.as_ref()
|
|
|
|
.unwrap()
|
|
|
|
.lock()
|
|
|
|
.unwrap()
|
|
|
|
.to_aml_bytes();
|
2019-12-06 16:14:32 +00:00
|
|
|
|
|
|
|
bytes.extend_from_slice(pci_dsdt_data.as_slice());
|
|
|
|
bytes.extend_from_slice(mbrd_dsdt_data.as_slice());
|
|
|
|
if self.config.lock().unwrap().serial.mode != ConsoleOutputMode::Off {
|
|
|
|
bytes.extend_from_slice(com1_dsdt_data.as_slice());
|
|
|
|
}
|
|
|
|
bytes.extend_from_slice(s5_sleep_data.as_slice());
|
2021-01-13 10:01:35 +00:00
|
|
|
bytes.extend_from_slice(power_button_dsdt_data.as_slice());
|
2019-12-06 16:14:32 +00:00
|
|
|
bytes.extend_from_slice(ged_data.as_slice());
|
|
|
|
bytes
|
|
|
|
}
|
|
|
|
}
|
2019-11-18 23:24:31 +00:00
|
|
|
|
|
|
|
impl Pausable for DeviceManager {
|
|
|
|
fn pause(&mut self) -> result::Result<(), MigratableError> {
|
2020-05-12 13:53:09 +00:00
|
|
|
for (_, device_node) in self.device_tree.lock().unwrap().iter() {
|
2020-04-30 18:27:19 +00:00
|
|
|
if let Some(migratable) = &device_node.migratable {
|
|
|
|
migratable.lock().unwrap().pause()?;
|
|
|
|
}
|
2019-11-18 23:24:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
|
|
|
fn resume(&mut self) -> result::Result<(), MigratableError> {
|
2020-05-12 13:53:09 +00:00
|
|
|
for (_, device_node) in self.device_tree.lock().unwrap().iter() {
|
2020-04-30 18:27:19 +00:00
|
|
|
if let Some(migratable) = &device_node.migratable {
|
|
|
|
migratable.lock().unwrap().resume()?;
|
|
|
|
}
|
2019-11-18 23:24:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-02 21:50:38 +00:00
|
|
|
impl Snapshottable for DeviceManager {
|
|
|
|
fn id(&self) -> String {
|
|
|
|
DEVICE_MANAGER_SNAPSHOT_ID.to_string()
|
|
|
|
}
|
|
|
|
|
2020-08-21 12:31:58 +00:00
|
|
|
fn snapshot(&mut self) -> std::result::Result<Snapshot, MigratableError> {
|
2019-12-02 21:50:38 +00:00
|
|
|
let mut snapshot = Snapshot::new(DEVICE_MANAGER_SNAPSHOT_ID);
|
|
|
|
|
2020-04-28 10:08:51 +00:00
|
|
|
// We aggregate all devices snapshots.
|
2020-05-12 13:53:09 +00:00
|
|
|
for (_, device_node) in self.device_tree.lock().unwrap().iter() {
|
2020-04-30 18:19:02 +00:00
|
|
|
if let Some(migratable) = &device_node.migratable {
|
|
|
|
let device_snapshot = migratable.lock().unwrap().snapshot()?;
|
|
|
|
snapshot.add_snapshot(device_snapshot);
|
|
|
|
}
|
2019-12-02 21:50:38 +00:00
|
|
|
}
|
|
|
|
|
2020-04-28 10:08:51 +00:00
|
|
|
// Then we store the DeviceManager state.
|
2021-04-14 15:50:29 +00:00
|
|
|
snapshot.add_data_section(SnapshotDataSection::new_from_state(
|
|
|
|
DEVICE_MANAGER_SNAPSHOT_ID,
|
|
|
|
&self.state(),
|
|
|
|
)?);
|
2020-04-28 10:08:51 +00:00
|
|
|
|
2019-12-02 21:50:38 +00:00
|
|
|
Ok(snapshot)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn restore(&mut self, snapshot: Snapshot) -> std::result::Result<(), MigratableError> {
|
2020-04-28 10:08:51 +00:00
|
|
|
// Let's first restore the DeviceManager.
|
|
|
|
|
2021-04-14 15:50:29 +00:00
|
|
|
self.set_state(&snapshot.to_state(DEVICE_MANAGER_SNAPSHOT_ID)?);
|
2020-04-28 10:08:51 +00:00
|
|
|
|
2020-04-29 09:09:04 +00:00
|
|
|
// Now that DeviceManager is updated with the right states, it's time
|
|
|
|
// to create the devices based on the configuration.
|
2021-03-04 23:34:45 +00:00
|
|
|
self.create_devices(None, None)
|
2020-04-29 09:09:04 +00:00
|
|
|
.map_err(|e| MigratableError::Restore(anyhow!("Could not create devices {:?}", e)))?;
|
|
|
|
|
2019-12-02 21:50:38 +00:00
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-05-01 16:59:51 +00:00
|
|
|
impl Transportable for DeviceManager {}
|
2019-11-18 23:24:31 +00:00
|
|
|
impl Migratable for DeviceManager {}
|
2020-02-14 10:08:14 +00:00
|
|
|
|
2020-02-28 11:29:43 +00:00
|
|
|
const PCIU_FIELD_OFFSET: u64 = 0;
|
|
|
|
const PCID_FIELD_OFFSET: u64 = 4;
|
2020-03-06 15:53:20 +00:00
|
|
|
const B0EJ_FIELD_OFFSET: u64 = 8;
|
2020-02-28 11:29:43 +00:00
|
|
|
|
|
|
|
const PCIU_FIELD_SIZE: usize = 4;
|
|
|
|
const PCID_FIELD_SIZE: usize = 4;
|
2020-03-06 15:53:20 +00:00
|
|
|
const B0EJ_FIELD_SIZE: usize = 4;
|
2020-02-28 11:29:43 +00:00
|
|
|
|
|
|
|
impl BusDevice for DeviceManager {
|
|
|
|
fn read(&mut self, base: u64, offset: u64, data: &mut [u8]) {
|
|
|
|
match offset {
|
|
|
|
PCIU_FIELD_OFFSET => {
|
|
|
|
assert!(data.len() == PCIU_FIELD_SIZE);
|
|
|
|
data.copy_from_slice(&self.pci_devices_up.to_le_bytes());
|
|
|
|
// Clear the PCIU bitmap
|
|
|
|
self.pci_devices_up = 0;
|
|
|
|
}
|
|
|
|
PCID_FIELD_OFFSET => {
|
|
|
|
assert!(data.len() == PCID_FIELD_SIZE);
|
|
|
|
data.copy_from_slice(&self.pci_devices_down.to_le_bytes());
|
|
|
|
// Clear the PCID bitmap
|
|
|
|
self.pci_devices_down = 0;
|
|
|
|
}
|
2021-04-21 07:45:26 +00:00
|
|
|
B0EJ_FIELD_OFFSET => {
|
|
|
|
assert!(data.len() == B0EJ_FIELD_SIZE);
|
|
|
|
// Always return an empty bitmap since the eject is always
|
|
|
|
// taken care of right away during a write access.
|
|
|
|
data.copy_from_slice(&[0, 0, 0, 0]);
|
|
|
|
}
|
2020-03-06 15:53:20 +00:00
|
|
|
_ => error!(
|
|
|
|
"Accessing unknown location at base 0x{:x}, offset 0x{:x}",
|
|
|
|
base, offset
|
|
|
|
),
|
2020-02-28 11:29:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
debug!(
|
|
|
|
"PCI_HP_REG_R: base 0x{:x}, offset 0x{:x}, data {:?}",
|
|
|
|
base, offset, data
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-12-04 09:23:47 +00:00
|
|
|
fn write(&mut self, base: u64, offset: u64, data: &[u8]) -> Option<Arc<Barrier>> {
|
2020-03-06 15:53:20 +00:00
|
|
|
match offset {
|
|
|
|
B0EJ_FIELD_OFFSET => {
|
|
|
|
assert!(data.len() == B0EJ_FIELD_SIZE);
|
|
|
|
let mut data_array: [u8; 4] = [0, 0, 0, 0];
|
2021-06-23 20:42:17 +00:00
|
|
|
data_array.copy_from_slice(data);
|
2020-03-06 15:53:20 +00:00
|
|
|
let device_bitmap = u32::from_le_bytes(data_array);
|
|
|
|
|
|
|
|
for device_id in 0..32 {
|
|
|
|
let mask = 1u32 << device_id;
|
|
|
|
if (device_bitmap & mask) == mask {
|
|
|
|
if let Err(e) = self.eject_device(device_id as u8) {
|
|
|
|
error!("Failed ejecting device {}: {:?}", device_id, e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => error!(
|
|
|
|
"Accessing unknown location at base 0x{:x}, offset 0x{:x}",
|
|
|
|
base, offset
|
|
|
|
),
|
|
|
|
}
|
|
|
|
|
2020-02-28 11:29:43 +00:00
|
|
|
debug!(
|
|
|
|
"PCI_HP_REG_W: base 0x{:x}, offset 0x{:x}, data {:?}",
|
|
|
|
base, offset, data
|
2020-12-04 09:23:47 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
None
|
2020-02-28 11:29:43 +00:00
|
|
|
}
|
|
|
|
}
|
2020-02-27 10:40:05 +00:00
|
|
|
|
2020-02-14 10:08:14 +00:00
|
|
|
impl Drop for DeviceManager {
|
|
|
|
fn drop(&mut self) {
|
2020-04-08 13:04:03 +00:00
|
|
|
for (device, _, _) in self.virtio_devices.drain(..) {
|
2020-02-14 10:08:14 +00:00
|
|
|
device.lock().unwrap().shutdown();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|