mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
virtio-devices: Simplify interrupt handling
Previously the interrupt was created in VirtioPciDevice, moved via the Option::take() to the VirtioPciDeviceActivator and then moved to the VirtioDevice upon activation. On reset it would be moved back ready for reactivation. Since this already an Arc type remove the wrapping Option and instead refcount it such that the VirtioPciDevice can continue to hold onto it for later activations. This significantly simplifies the reset() logic as there is no need to hand back the interrupt. A few devices used whether the interrupt was Some to make triggering an interrupt a no-op. However the MSI-X interrupt routing already drops the interrupt if the driver hasn't yet configured the vector so it is safe to trigger the interrupt before device activation (e.g. balloon resize request before driver loaded). VirtioCommon still retains an Option<..> for the interrupt as the interrupt is not known until activation time (after this has been created). A helper VirtioCommon::trigger_interrupt() has been added to handle this. Signed-off-by: Rob Bradford <rbradford@meta.com>
This commit is contained in:
@@ -458,7 +458,6 @@ pub struct Balloon {
|
||||
config: VirtioBalloonConfig,
|
||||
seccomp_action: SeccompAction,
|
||||
exit_evt: EventFd,
|
||||
interrupt_cb: Option<Arc<dyn VirtioInterrupt>>,
|
||||
}
|
||||
|
||||
impl Balloon {
|
||||
@@ -523,20 +522,15 @@ impl Balloon {
|
||||
config,
|
||||
seccomp_action,
|
||||
exit_evt,
|
||||
interrupt_cb: None,
|
||||
})
|
||||
}
|
||||
|
||||
pub fn resize(&mut self, size: u64) -> Result<(), Error> {
|
||||
self.config.num_pages = (size >> VIRTIO_BALLOON_PFN_SHIFT) as u32;
|
||||
|
||||
if let Some(interrupt_cb) = &self.interrupt_cb {
|
||||
interrupt_cb
|
||||
.trigger(VirtioInterruptType::Config)
|
||||
.map_err(Error::FailedSignal)
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
self.common
|
||||
.trigger_interrupt(VirtioInterruptType::Config)
|
||||
.map_err(Error::FailedSignal)
|
||||
}
|
||||
|
||||
// Get the actual size of the virtio-balloon.
|
||||
@@ -647,8 +641,6 @@ impl VirtioDevice for Balloon {
|
||||
None
|
||||
};
|
||||
|
||||
self.interrupt_cb = Some(interrupt_cb.clone());
|
||||
|
||||
let mut handler = BalloonEpollHandler {
|
||||
mem,
|
||||
queues: virtqueues,
|
||||
@@ -688,10 +680,9 @@ impl VirtioDevice for Balloon {
|
||||
self.common.access_platform()
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1025,13 +1025,9 @@ impl Block {
|
||||
|
||||
self.common.resume().map_err(Error::ResumeVcpus)?;
|
||||
|
||||
if let Some(interrupt_cb) = self.common.interrupt_cb.as_ref() {
|
||||
interrupt_cb
|
||||
.trigger(VirtioInterruptType::Config)
|
||||
.map_err(Error::ConfigChange)
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
self.common
|
||||
.trigger_interrupt(VirtioInterruptType::Config)
|
||||
.map_err(Error::ConfigChange)
|
||||
}
|
||||
|
||||
#[cfg(fuzzing)]
|
||||
@@ -1178,11 +1174,10 @@ impl VirtioDevice for Block {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
self.set_writeback_mode(true);
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn counters(&self) -> Option<HashMap<&'static str, Wrapping<u64>>> {
|
||||
|
||||
@@ -773,10 +773,9 @@ impl VirtioDevice for Console {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn set_access_platform(&mut self, access_platform: Arc<dyn AccessPlatform>) {
|
||||
|
||||
@@ -123,11 +123,8 @@ pub trait VirtioDevice: Send {
|
||||
/// Activates this device for real usage.
|
||||
fn activate(&mut self, context: ActivationContext) -> ActivateResult;
|
||||
|
||||
/// Optionally deactivates this device and returns ownership of the guest memory map, interrupt
|
||||
/// event, and queue events.
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
None
|
||||
}
|
||||
/// Optionally deactivates this device.
|
||||
fn reset(&mut self) {}
|
||||
|
||||
/// Returns the list of shared memory regions required by the device.
|
||||
fn get_shm_regions(&self) -> Option<VirtioSharedMemoryList> {
|
||||
@@ -290,7 +287,7 @@ impl VirtioCommon {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
pub fn reset(&mut self) {
|
||||
self.queue_evts.clear();
|
||||
|
||||
// Resume the virtio thread if it was paused. Reset must always
|
||||
@@ -315,8 +312,16 @@ impl VirtioCommon {
|
||||
}
|
||||
}
|
||||
|
||||
// Return the interrupt
|
||||
Some(self.interrupt_cb.take().unwrap())
|
||||
// Drop the interrupt callback clone
|
||||
self.interrupt_cb = None;
|
||||
}
|
||||
|
||||
pub fn trigger_interrupt(&self, int_type: VirtioInterruptType) -> std::io::Result<()> {
|
||||
if let Some(interrupt_cb) = &self.interrupt_cb {
|
||||
interrupt_cb.trigger(int_type)
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
|
||||
// Wait for the worker thread to finish and return
|
||||
@@ -406,12 +411,9 @@ impl Pausable for VirtioCommon {
|
||||
}
|
||||
|
||||
// Also trigger interrupts into the guest to wake up the driver to avoid a "livelock"
|
||||
if let Some(interrupt_cb) = &self.interrupt_cb {
|
||||
for i in 0..self.queue_evts.len() {
|
||||
interrupt_cb
|
||||
.trigger(crate::VirtioInterruptType::Queue(i as u16))
|
||||
.ok();
|
||||
}
|
||||
for i in 0..self.queue_evts.len() {
|
||||
self.trigger_interrupt(crate::VirtioInterruptType::Queue(i as u16))
|
||||
.ok();
|
||||
}
|
||||
|
||||
Ok(())
|
||||
|
||||
@@ -1120,10 +1120,9 @@ impl VirtioDevice for Iommu {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -737,7 +737,6 @@ pub struct Mem {
|
||||
dma_mapping_handlers: Arc<Mutex<BTreeMap<VirtioMemMappingSource, Arc<dyn ExternalDmaMapping>>>>,
|
||||
blocks_state: Arc<Mutex<BlocksState>>,
|
||||
exit_evt: EventFd,
|
||||
interrupt_cb: Option<Arc<dyn VirtioInterrupt>>,
|
||||
}
|
||||
|
||||
impl Mem {
|
||||
@@ -830,7 +829,6 @@ impl Mem {
|
||||
dma_mapping_handlers: Arc::new(Mutex::new(BTreeMap::new())),
|
||||
blocks_state,
|
||||
exit_evt,
|
||||
interrupt_cb: None,
|
||||
})
|
||||
}
|
||||
|
||||
@@ -844,15 +842,11 @@ impl Mem {
|
||||
Error::ResizeError(anyhow!("Failed to update virtio configuration: {e:?}"))
|
||||
})?;
|
||||
|
||||
if let Some(interrupt_cb) = self.interrupt_cb.as_ref() {
|
||||
interrupt_cb
|
||||
.trigger(VirtioInterruptType::Config)
|
||||
.map_err(|e| {
|
||||
Error::ResizeError(anyhow!("Failed to signal the guest about resize: {e:?}"))
|
||||
})
|
||||
} else {
|
||||
Ok(())
|
||||
}
|
||||
self.common
|
||||
.trigger_interrupt(VirtioInterruptType::Config)
|
||||
.map_err(|e| {
|
||||
Error::ResizeError(anyhow!("Failed to signal the guest about resize: {e:?}"))
|
||||
})
|
||||
}
|
||||
|
||||
pub fn add_dma_mapping_handler(
|
||||
@@ -966,8 +960,6 @@ impl VirtioDevice for Mem {
|
||||
|
||||
let (_, queue, queue_evt) = queues.remove(0);
|
||||
|
||||
self.interrupt_cb = Some(interrupt_cb.clone());
|
||||
|
||||
let mut handler = MemEpollHandler {
|
||||
mem,
|
||||
region: self.region.clone(),
|
||||
@@ -1016,10 +1008,9 @@ impl VirtioDevice for Mem {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -868,10 +868,9 @@ impl VirtioDevice for Net {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn counters(&self) -> Option<HashMap<&'static str, Wrapping<u64>>> {
|
||||
|
||||
@@ -438,10 +438,9 @@ impl VirtioDevice for Pmem {
|
||||
Err(ActivateError::BadActivate)
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn userspace_mappings(&self) -> Vec<UserspaceMapping> {
|
||||
|
||||
@@ -311,10 +311,9 @@ impl VirtioDevice for Rng {
|
||||
Err(ActivateError::BadActivate)
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn set_access_platform(&mut self, access_platform: Arc<dyn AccessPlatform>) {
|
||||
|
||||
@@ -300,7 +300,7 @@ pub struct VirtioPciDeviceState {
|
||||
}
|
||||
|
||||
pub struct VirtioPciDeviceActivator {
|
||||
interrupt: Option<Arc<dyn VirtioInterrupt>>,
|
||||
interrupt: Arc<dyn VirtioInterrupt>,
|
||||
memory: Option<GuestMemoryAtomic<GuestMemoryMmap>>,
|
||||
device: Arc<Mutex<dyn VirtioDevice>>,
|
||||
device_activated: Arc<AtomicBool>,
|
||||
@@ -315,7 +315,7 @@ impl VirtioPciDeviceActivator {
|
||||
let mut locked_device = self.device.lock().unwrap();
|
||||
locked_device.activate(crate::device::ActivationContext {
|
||||
mem: self.memory.take().unwrap(),
|
||||
interrupt_cb: self.interrupt.take().unwrap(),
|
||||
interrupt_cb: self.interrupt,
|
||||
queues: self.queues.take().unwrap(),
|
||||
device_status: self.status,
|
||||
})?;
|
||||
@@ -822,7 +822,7 @@ impl VirtioPciDevice {
|
||||
}
|
||||
|
||||
VirtioPciDeviceActivator {
|
||||
interrupt: self.virtio_interrupt.take(),
|
||||
interrupt: self.virtio_interrupt.as_ref().unwrap().clone(),
|
||||
memory: Some(self.memory.clone()),
|
||||
device: self.device.clone(),
|
||||
queues: Some(queues),
|
||||
@@ -1250,10 +1250,7 @@ impl PciDevice for VirtioPciDevice {
|
||||
if self.is_driver_init() {
|
||||
if self.device_activated.swap(false, Ordering::SeqCst) {
|
||||
let mut device = self.device.lock().unwrap();
|
||||
if let Some(virtio_interrupt) = device.reset() {
|
||||
// Upon reset the device returns its interrupt EventFD
|
||||
self.virtio_interrupt = Some(virtio_interrupt);
|
||||
}
|
||||
device.reset();
|
||||
}
|
||||
|
||||
// Reset queue readiness and the common configuration
|
||||
|
||||
@@ -443,14 +443,13 @@ impl VirtioDevice for Vdpa {
|
||||
self.activate_vdpa(&mem.memory(), virtio_interrupt.as_ref(), &queues)
|
||||
.map_err(ActivateError::ActivateVdpa)?;
|
||||
|
||||
// Store the virtio interrupt handler as we need to return it on reset
|
||||
self.common.interrupt_cb = Some(virtio_interrupt);
|
||||
|
||||
event!("vdpa", "activated", "id", &self.id);
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
fn reset(&mut self) {
|
||||
// Backend reset failures are logged but don't skip local cleanup:
|
||||
// reset must converge to fresh state regardless of backend state.
|
||||
if let Err(e) = self.reset_vdpa() {
|
||||
@@ -459,8 +458,8 @@ impl VirtioDevice for Vdpa {
|
||||
|
||||
event!("vdpa", "reset", "id", &self.id);
|
||||
|
||||
// Return the virtio interrupt handler
|
||||
self.common.interrupt_cb.take()
|
||||
// Drop the interrupt callback clone
|
||||
self.common.interrupt_cb = None;
|
||||
}
|
||||
|
||||
fn set_access_platform(&mut self, access_platform: Arc<dyn AccessPlatform>) {
|
||||
|
||||
@@ -28,7 +28,7 @@ use super::{DEFAULT_VIRTIO_FEATURES, Error, Result};
|
||||
use crate::seccomp_filters::Thread;
|
||||
use crate::thread_helper::spawn_virtio_thread;
|
||||
use crate::vhost_user::{VhostUserCommon, VhostUserState};
|
||||
use crate::{GuestMemoryMmap, GuestRegionMmap, VIRTIO_F_ACCESS_PLATFORM, VirtioInterrupt};
|
||||
use crate::{GuestMemoryMmap, GuestRegionMmap, VIRTIO_F_ACCESS_PLATFORM};
|
||||
|
||||
const DEFAULT_QUEUE_NUMBER: usize = 1;
|
||||
|
||||
@@ -307,8 +307,8 @@ impl VirtioDevice for Blk {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
self.vu_common.reset(&self.id)
|
||||
fn reset(&mut self) {
|
||||
self.vu_common.reset(&self.id);
|
||||
}
|
||||
|
||||
fn shutdown(&mut self) {
|
||||
|
||||
@@ -25,7 +25,7 @@ use crate::thread_helper::spawn_virtio_thread;
|
||||
use crate::vhost_user::{VhostUserCommon, VhostUserState};
|
||||
use crate::{
|
||||
ActivateResult, GuestMemoryMmap, GuestRegionMmap, MmapRegion, VIRTIO_F_ACCESS_PLATFORM,
|
||||
VirtioCommon, VirtioDevice, VirtioDeviceType, VirtioInterrupt, VirtioSharedMemoryList,
|
||||
VirtioCommon, VirtioDevice, VirtioDeviceType, VirtioSharedMemoryList,
|
||||
};
|
||||
|
||||
const NUM_QUEUE_OFFSET: usize = 1;
|
||||
@@ -285,8 +285,8 @@ impl VirtioDevice for Fs {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
self.vu_common.reset(&self.id)
|
||||
fn reset(&mut self) {
|
||||
self.vu_common.reset(&self.id);
|
||||
}
|
||||
|
||||
fn shutdown(&mut self) {
|
||||
|
||||
@@ -26,7 +26,7 @@ use crate::thread_helper::spawn_virtio_thread;
|
||||
use crate::vhost_user::{VhostUserCommon, VhostUserState};
|
||||
use crate::{
|
||||
ActivateResult, GuestMemoryMmap, GuestRegionMmap, MmapRegion, VIRTIO_F_ACCESS_PLATFORM,
|
||||
VirtioCommon, VirtioDevice, VirtioInterrupt, VirtioSharedMemoryList,
|
||||
VirtioCommon, VirtioDevice, VirtioSharedMemoryList,
|
||||
};
|
||||
|
||||
pub type State = VhostUserState<()>;
|
||||
@@ -308,8 +308,8 @@ impl VirtioDevice for GenericVhostUser {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
self.vu_common.reset(&self.id)
|
||||
fn reset(&mut self) {
|
||||
self.vu_common.reset(&self.id);
|
||||
}
|
||||
|
||||
fn shutdown(&mut self) {
|
||||
|
||||
@@ -347,7 +347,6 @@ pub struct VhostUserCommon {
|
||||
pub vu_num_queues: usize,
|
||||
pub migration_started: bool,
|
||||
pub server: bool,
|
||||
pub interrupt_cb: Option<Arc<dyn VirtioInterrupt>>,
|
||||
pub vring_bases: Option<Vec<u64>>,
|
||||
pub epoll_thread: Option<thread::JoinHandle<()>>,
|
||||
}
|
||||
@@ -395,8 +394,6 @@ impl VhostUserCommon {
|
||||
)
|
||||
.map_err(ActivateError::VhostUserSetup)?;
|
||||
|
||||
self.interrupt_cb = Some(interrupt_cb.clone());
|
||||
|
||||
Ok(VhostUserEpollHandler {
|
||||
vu: vu.clone(),
|
||||
mem,
|
||||
@@ -428,7 +425,7 @@ impl VhostUserCommon {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
pub fn reset(&mut self, id: &str) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
pub fn reset(&mut self, id: &str) {
|
||||
// Resume the virtio thread if it was paused. Reset must always
|
||||
// converge to fresh state, so backend resume / reset failures are
|
||||
// logged but don't skip the rest of the teardown.
|
||||
@@ -454,8 +451,8 @@ impl VhostUserCommon {
|
||||
|
||||
event!("virtio-device", "reset", "id", id);
|
||||
|
||||
// Return the interrupt
|
||||
Some(self.virtio_common.interrupt_cb.take().unwrap())
|
||||
// Drop the interrupt callback clone
|
||||
self.virtio_common.interrupt_cb = None;
|
||||
}
|
||||
|
||||
pub fn shutdown(&mut self) {
|
||||
@@ -525,12 +522,10 @@ impl VhostUserCommon {
|
||||
MigratableError::Resume(anyhow!("Error resuming vhost-user backend: {e:?}"))
|
||||
})?;
|
||||
}
|
||||
if let Some(interrupt_cb) = &self.interrupt_cb {
|
||||
for i in 0..self.vu_num_queues {
|
||||
interrupt_cb
|
||||
.trigger(crate::VirtioInterruptType::Queue(i as u16))
|
||||
.ok();
|
||||
}
|
||||
for i in 0..self.vu_num_queues {
|
||||
self.virtio_common
|
||||
.trigger_interrupt(crate::VirtioInterruptType::Queue(i as u16))
|
||||
.ok();
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
@@ -29,7 +29,7 @@ use crate::vhost_user::vu_common_ctrl::{VhostUserConfig, VhostUserHandle};
|
||||
use crate::vhost_user::{DEFAULT_VIRTIO_FEATURES, Error, Result, VhostUserCommon, VhostUserState};
|
||||
use crate::{
|
||||
ActivateResult, GuestMemoryMmap, GuestRegionMmap, NetCtrlEpollHandler,
|
||||
VIRTIO_F_ACCESS_PLATFORM, VirtioCommon, VirtioDevice, VirtioDeviceType, VirtioInterrupt,
|
||||
VIRTIO_F_ACCESS_PLATFORM, VirtioCommon, VirtioDevice, VirtioDeviceType,
|
||||
};
|
||||
|
||||
const DEFAULT_QUEUE_NUMBER: usize = 2;
|
||||
@@ -364,8 +364,8 @@ impl VirtioDevice for Net {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
self.vu_common.reset(&self.id)
|
||||
fn reset(&mut self) {
|
||||
self.vu_common.reset(&self.id);
|
||||
}
|
||||
|
||||
fn shutdown(&mut self) {
|
||||
|
||||
@@ -488,10 +488,9 @@ where
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
|
||||
fn shutdown(&mut self) {
|
||||
|
||||
@@ -379,10 +379,9 @@ impl VirtioDevice for Watchdog {
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn reset(&mut self) -> Option<Arc<dyn VirtioInterrupt>> {
|
||||
let result = self.common.reset();
|
||||
fn reset(&mut self) {
|
||||
self.common.reset();
|
||||
event!("virtio-device", "reset", "id", &self.id);
|
||||
result
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user