2019-05-08 00:26:37 +00:00
|
|
|
// Copyright 2018 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
//
|
|
|
|
// 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 THIRD-PARTY file.
|
|
|
|
|
2020-01-09 11:56:21 +00:00
|
|
|
use super::net_util::{
|
2020-01-09 17:29:00 +00:00
|
|
|
build_net_config_space, build_net_config_space_with_mq, open_tap, register_listener,
|
2020-01-27 16:37:14 +00:00
|
|
|
unregister_listener, CtrlVirtio, NetCtrlEpollHandler, RxVirtio, TxVirtio, VirtioNetConfig,
|
|
|
|
KILL_EVENT, NET_EVENTS_COUNT, PAUSE_EVENT, RX_QUEUE_EVENT, RX_TAP_EVENT, TX_QUEUE_EVENT,
|
2020-01-09 11:56:21 +00:00
|
|
|
};
|
2019-12-31 10:49:11 +00:00
|
|
|
use super::Error as DeviceError;
|
|
|
|
use super::{
|
2020-01-09 11:56:21 +00:00
|
|
|
ActivateError, ActivateResult, Queue, VirtioDevice, VirtioDeviceType, VirtioInterruptType,
|
2019-12-31 10:49:11 +00:00
|
|
|
};
|
|
|
|
use crate::VirtioInterrupt;
|
2020-04-21 15:28:59 +00:00
|
|
|
use anyhow::anyhow;
|
2019-05-08 00:26:37 +00:00
|
|
|
use libc::EAGAIN;
|
|
|
|
use libc::EFD_NONBLOCK;
|
2020-01-09 11:56:21 +00:00
|
|
|
use net_util::{MacAddr, Tap};
|
2019-05-08 00:26:37 +00:00
|
|
|
use std::cmp;
|
2020-05-15 02:25:54 +00:00
|
|
|
use std::fs::File;
|
2019-05-08 00:26:37 +00:00
|
|
|
use std::io::Read;
|
|
|
|
use std::io::{self, Write};
|
|
|
|
use std::net::Ipv4Addr;
|
2020-06-23 15:28:41 +00:00
|
|
|
use std::num::Wrapping;
|
2020-05-15 02:25:54 +00:00
|
|
|
use std::os::unix::io::{AsRawFd, FromRawFd, RawFd};
|
2019-05-08 00:26:37 +00:00
|
|
|
use std::result;
|
2020-06-23 15:28:41 +00:00
|
|
|
use std::sync::atomic::{AtomicBool, AtomicU64, Ordering};
|
2019-12-31 10:49:11 +00:00
|
|
|
use std::sync::Arc;
|
2019-05-08 00:26:37 +00:00
|
|
|
use std::thread;
|
|
|
|
use std::vec::Vec;
|
2019-09-19 13:42:29 +00:00
|
|
|
use virtio_bindings::bindings::virtio_net::*;
|
2020-06-01 12:08:53 +00:00
|
|
|
use virtio_bindings::bindings::virtio_ring::VIRTIO_RING_F_EVENT_IDX;
|
2020-02-11 16:22:40 +00:00
|
|
|
use vm_memory::{ByteValued, GuestAddressSpace, GuestMemoryAtomic, GuestMemoryMmap};
|
2020-04-21 15:28:59 +00:00
|
|
|
use vm_migration::{
|
|
|
|
Migratable, MigratableError, Pausable, Snapshot, SnapshotDataSection, Snapshottable,
|
|
|
|
Transportable,
|
|
|
|
};
|
2019-08-02 14:23:52 +00:00
|
|
|
use vmm_sys_util::eventfd::EventFd;
|
2019-05-08 00:26:37 +00:00
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub enum Error {
|
2020-01-09 11:56:21 +00:00
|
|
|
/// Failed to open taps.
|
|
|
|
OpenTap(super::net_util::Error),
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
pub type Result<T> = result::Result<T, Error>;
|
|
|
|
|
2020-05-29 14:13:31 +00:00
|
|
|
pub struct NetQueuePair {
|
|
|
|
pub mem: Option<GuestMemoryAtomic<GuestMemoryMmap>>,
|
|
|
|
pub tap: Tap,
|
|
|
|
pub rx: RxVirtio,
|
|
|
|
pub tx: TxVirtio,
|
|
|
|
pub epoll_fd: Option<RawFd>,
|
|
|
|
pub rx_tap_listening: bool,
|
2020-06-23 15:28:41 +00:00
|
|
|
pub counters: NetCounters,
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 13:50:11 +00:00
|
|
|
impl NetQueuePair {
|
2019-05-08 00:26:37 +00:00
|
|
|
// Copies a single frame from `self.rx.frame_buf` into the guest. Returns true
|
|
|
|
// if a buffer was used, and false if the frame must be deferred until a buffer
|
|
|
|
// is made available by the driver.
|
2020-05-29 13:31:35 +00:00
|
|
|
fn rx_single_frame(&mut self, mut queue: &mut Queue) -> result::Result<bool, DeviceError> {
|
2020-05-29 14:13:31 +00:00
|
|
|
let mem = self
|
|
|
|
.mem
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceError::NoMemoryConfigured)
|
|
|
|
.map(|m| m.memory())?;
|
2020-01-09 11:56:21 +00:00
|
|
|
let next_desc = queue.iter(&mem).next();
|
2019-05-08 00:26:37 +00:00
|
|
|
|
|
|
|
if next_desc.is_none() {
|
2019-08-21 12:44:49 +00:00
|
|
|
// Queue has no available descriptors
|
|
|
|
if self.rx_tap_listening {
|
2020-01-09 11:56:21 +00:00
|
|
|
unregister_listener(
|
2020-05-29 14:13:31 +00:00
|
|
|
self.epoll_fd.unwrap(),
|
2020-01-09 11:56:21 +00:00
|
|
|
self.tap.as_raw_fd(),
|
|
|
|
epoll::Events::EPOLLIN,
|
|
|
|
u64::from(RX_TAP_EVENT),
|
|
|
|
)
|
2020-05-29 13:30:04 +00:00
|
|
|
.map_err(DeviceError::UnregisterListener)?;
|
2019-08-21 15:54:12 +00:00
|
|
|
self.rx_tap_listening = false;
|
2020-06-02 15:59:22 +00:00
|
|
|
info!("Listener unregistered");
|
2019-08-21 12:44:49 +00:00
|
|
|
}
|
2020-05-29 13:31:35 +00:00
|
|
|
return Ok(false);
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 13:31:35 +00:00
|
|
|
Ok(self.rx.process_desc_chain(&mem, next_desc, &mut queue))
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 12:33:59 +00:00
|
|
|
fn process_rx(&mut self, queue: &mut Queue) -> result::Result<bool, DeviceError> {
|
2019-05-08 00:26:37 +00:00
|
|
|
// Read as many frames as possible.
|
|
|
|
loop {
|
|
|
|
match self.read_tap() {
|
|
|
|
Ok(count) => {
|
|
|
|
self.rx.bytes_read = count;
|
2020-05-29 13:31:35 +00:00
|
|
|
if !self.rx_single_frame(queue)? {
|
2019-05-08 00:26:37 +00:00
|
|
|
self.rx.deferred_frame = true;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Err(e) => {
|
|
|
|
// The tap device is non-blocking, so any error aside from EAGAIN is
|
|
|
|
// unexpected.
|
|
|
|
match e.raw_os_error() {
|
|
|
|
Some(err) if err == EAGAIN => (),
|
|
|
|
_ => {
|
|
|
|
error!("Failed to read tap: {:?}", e);
|
|
|
|
return Err(DeviceError::FailedReadTap);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-06-23 15:28:41 +00:00
|
|
|
|
|
|
|
// Consume the counters from the Rx/Tx queues and accumulate into
|
|
|
|
// the counters for the device as whole. This consumption is needed
|
|
|
|
// to handle MQ.
|
|
|
|
self.counters
|
|
|
|
.rx_bytes
|
|
|
|
.fetch_add(self.rx.counter_bytes.0, Ordering::AcqRel);
|
|
|
|
self.counters
|
|
|
|
.rx_frames
|
|
|
|
.fetch_add(self.rx.counter_frames.0, Ordering::AcqRel);
|
|
|
|
self.rx.counter_bytes = Wrapping(0);
|
|
|
|
self.rx.counter_frames = Wrapping(0);
|
|
|
|
|
2019-05-08 00:26:37 +00:00
|
|
|
if self.rx.deferred_irqs {
|
|
|
|
self.rx.deferred_irqs = false;
|
2020-06-01 12:08:53 +00:00
|
|
|
let mem = self
|
|
|
|
.mem
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceError::NoMemoryConfigured)
|
|
|
|
.map(|m| m.memory())?;
|
|
|
|
Ok(queue.needs_notification(&mem, queue.next_used))
|
2019-05-08 00:26:37 +00:00
|
|
|
} else {
|
2020-05-29 12:33:59 +00:00
|
|
|
Ok(false)
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 14:13:31 +00:00
|
|
|
pub fn resume_rx(&mut self, queue: &mut Queue) -> result::Result<bool, DeviceError> {
|
2020-05-29 12:33:59 +00:00
|
|
|
if !self.rx_tap_listening {
|
|
|
|
register_listener(
|
2020-05-29 14:13:31 +00:00
|
|
|
self.epoll_fd.unwrap(),
|
2020-05-29 12:33:59 +00:00
|
|
|
self.tap.as_raw_fd(),
|
|
|
|
epoll::Events::EPOLLIN,
|
|
|
|
u64::from(RX_TAP_EVENT),
|
|
|
|
)
|
2020-05-29 13:30:04 +00:00
|
|
|
.map_err(DeviceError::RegisterListener)?;
|
2020-05-29 12:33:59 +00:00
|
|
|
self.rx_tap_listening = true;
|
2020-06-02 15:59:22 +00:00
|
|
|
info!("Listener registered");
|
2020-05-29 12:33:59 +00:00
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
if self.rx.deferred_frame {
|
2020-05-29 13:31:35 +00:00
|
|
|
if self.rx_single_frame(queue)? {
|
2019-05-08 00:26:37 +00:00
|
|
|
self.rx.deferred_frame = false;
|
|
|
|
// process_rx() was interrupted possibly before consuming all
|
|
|
|
// packets in the tap; try continuing now.
|
2020-01-09 11:56:21 +00:00
|
|
|
self.process_rx(queue)
|
2019-05-08 00:26:37 +00:00
|
|
|
} else if self.rx.deferred_irqs {
|
|
|
|
self.rx.deferred_irqs = false;
|
2020-06-01 12:08:53 +00:00
|
|
|
let mem = self
|
|
|
|
.mem
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceError::NoMemoryConfigured)
|
|
|
|
.map(|m| m.memory())?;
|
|
|
|
Ok(queue.needs_notification(&mem, queue.next_used))
|
2019-05-08 00:26:37 +00:00
|
|
|
} else {
|
2020-05-29 12:33:59 +00:00
|
|
|
Ok(false)
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
} else {
|
2020-05-29 12:33:59 +00:00
|
|
|
Ok(false)
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-29 14:13:31 +00:00
|
|
|
pub fn process_tx(&mut self, mut queue: &mut Queue) -> result::Result<bool, DeviceError> {
|
|
|
|
let mem = self
|
|
|
|
.mem
|
|
|
|
.as_ref()
|
|
|
|
.ok_or(DeviceError::NoMemoryConfigured)
|
|
|
|
.map(|m| m.memory())?;
|
2020-01-09 11:56:21 +00:00
|
|
|
self.tx.process_desc_chain(&mem, &mut self.tap, &mut queue);
|
2020-06-23 15:28:41 +00:00
|
|
|
|
|
|
|
self.counters
|
|
|
|
.tx_bytes
|
|
|
|
.fetch_add(self.tx.counter_bytes.0, Ordering::AcqRel);
|
|
|
|
self.counters
|
|
|
|
.tx_frames
|
|
|
|
.fetch_add(self.tx.counter_frames.0, Ordering::AcqRel);
|
|
|
|
self.tx.counter_bytes = Wrapping(0);
|
|
|
|
self.tx.counter_frames = Wrapping(0);
|
|
|
|
|
2020-06-01 12:08:53 +00:00
|
|
|
Ok(queue.needs_notification(&mem, queue.next_used))
|
2020-05-29 12:33:59 +00:00
|
|
|
}
|
2020-05-29 13:50:11 +00:00
|
|
|
|
2020-05-29 14:13:31 +00:00
|
|
|
pub fn process_rx_tap(&mut self, mut queue: &mut Queue) -> result::Result<bool, DeviceError> {
|
2020-05-29 12:33:59 +00:00
|
|
|
if self.rx.deferred_frame
|
|
|
|
// Process a deferred frame first if available. Don't read from tap again
|
|
|
|
// until we manage to receive this deferred frame.
|
|
|
|
{
|
2020-05-29 13:31:35 +00:00
|
|
|
if self.rx_single_frame(&mut queue)? {
|
2020-05-29 12:33:59 +00:00
|
|
|
self.rx.deferred_frame = false;
|
|
|
|
self.process_rx(&mut queue)
|
|
|
|
} else if self.rx.deferred_irqs {
|
|
|
|
self.rx.deferred_irqs = false;
|
|
|
|
Ok(true)
|
|
|
|
} else {
|
|
|
|
Ok(false)
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.process_rx(&mut queue)
|
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn read_tap(&mut self) -> io::Result<usize> {
|
|
|
|
self.tap.read(&mut self.rx.frame_buf)
|
|
|
|
}
|
2020-05-29 13:50:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
struct NetEpollHandler {
|
|
|
|
net: NetQueuePair,
|
|
|
|
interrupt_cb: Arc<dyn VirtioInterrupt>,
|
|
|
|
kill_evt: EventFd,
|
|
|
|
pause_evt: EventFd,
|
2020-06-02 16:00:31 +00:00
|
|
|
|
|
|
|
// Always generate interrupts until the driver has signalled to the device.
|
|
|
|
// This mitigates a problem with interrupts from tap events being "lost" upon
|
|
|
|
// a restore as the vCPU thread isn't ready to handle the interrupt. This causes
|
|
|
|
// issues when combined with VIRTIO_RING_F_EVENT_IDX interrupt suppression.
|
|
|
|
driver_awake: bool,
|
2020-05-29 13:50:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl NetEpollHandler {
|
|
|
|
fn signal_used_queue(&self, queue: &Queue) -> result::Result<(), DeviceError> {
|
|
|
|
self.interrupt_cb
|
|
|
|
.trigger(&VirtioInterruptType::Queue, Some(queue))
|
|
|
|
.map_err(|e| {
|
|
|
|
error!("Failed to signal used queue: {:?}", e);
|
|
|
|
DeviceError::FailedSignalingUsedQueue(e)
|
|
|
|
})
|
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
|
2020-05-29 12:33:59 +00:00
|
|
|
fn handle_rx_event(
|
|
|
|
&mut self,
|
|
|
|
mut queue: &mut Queue,
|
|
|
|
queue_evt: &EventFd,
|
|
|
|
) -> result::Result<(), DeviceError> {
|
2020-01-09 11:56:21 +00:00
|
|
|
if let Err(e) = queue_evt.read() {
|
|
|
|
error!("Failed to get rx queue event: {:?}", e);
|
|
|
|
}
|
|
|
|
|
2020-06-02 16:00:31 +00:00
|
|
|
if self.net.resume_rx(&mut queue)? || !self.driver_awake {
|
2020-06-02 15:59:22 +00:00
|
|
|
self.signal_used_queue(queue)?;
|
|
|
|
info!("Signalling RX queue");
|
|
|
|
} else {
|
|
|
|
info!("Not signalling RX queue");
|
2020-01-09 11:56:21 +00:00
|
|
|
}
|
2020-05-29 12:33:59 +00:00
|
|
|
|
|
|
|
Ok(())
|
2019-08-21 12:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 12:33:59 +00:00
|
|
|
fn handle_tx_event(
|
|
|
|
&mut self,
|
|
|
|
mut queue: &mut Queue,
|
|
|
|
queue_evt: &EventFd,
|
|
|
|
) -> result::Result<(), DeviceError> {
|
2020-01-09 11:56:21 +00:00
|
|
|
if let Err(e) = queue_evt.read() {
|
|
|
|
error!("Failed to get tx queue event: {:?}", e);
|
|
|
|
}
|
2020-06-02 16:00:31 +00:00
|
|
|
if self.net.process_tx(&mut queue)? || !self.driver_awake {
|
2020-06-02 15:59:22 +00:00
|
|
|
self.signal_used_queue(queue)?;
|
|
|
|
info!("Signalling TX queue");
|
|
|
|
} else {
|
|
|
|
info!("Not signalling TX queue");
|
2020-05-29 12:33:59 +00:00
|
|
|
}
|
2020-05-29 13:50:11 +00:00
|
|
|
Ok(())
|
2020-01-09 11:56:21 +00:00
|
|
|
}
|
|
|
|
|
2020-05-29 12:33:59 +00:00
|
|
|
fn handle_rx_tap_event(&mut self, queue: &mut Queue) -> result::Result<(), DeviceError> {
|
2020-06-02 15:59:22 +00:00
|
|
|
if self.net.process_rx_tap(queue)? || !self.driver_awake {
|
|
|
|
self.signal_used_queue(queue)?;
|
|
|
|
info!("Signalling RX queue");
|
|
|
|
} else {
|
|
|
|
info!("Not signalling RX queue");
|
2020-01-09 11:56:21 +00:00
|
|
|
}
|
2020-05-29 12:33:59 +00:00
|
|
|
Ok(())
|
2019-08-21 12:44:49 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 11:56:21 +00:00
|
|
|
fn run(
|
|
|
|
&mut self,
|
|
|
|
paused: Arc<AtomicBool>,
|
|
|
|
mut queues: Vec<Queue>,
|
|
|
|
queue_evts: Vec<EventFd>,
|
|
|
|
) -> result::Result<(), DeviceError> {
|
2019-05-08 00:26:37 +00:00
|
|
|
// Create the epoll file descriptor
|
2020-05-29 14:13:31 +00:00
|
|
|
let epoll_fd = epoll::create(true).map_err(DeviceError::EpollCreateFd)?;
|
2020-05-15 02:25:54 +00:00
|
|
|
// Use 'File' to enforce closing on 'epoll_fd'
|
2020-05-29 14:13:31 +00:00
|
|
|
let epoll_file = unsafe { File::from_raw_fd(epoll_fd) };
|
|
|
|
self.net.epoll_fd = Some(epoll_fd);
|
2020-05-15 02:25:54 +00:00
|
|
|
|
2020-01-09 11:56:21 +00:00
|
|
|
// Add events
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::ctl(
|
2020-05-15 02:25:54 +00:00
|
|
|
epoll_file.as_raw_fd(),
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
2020-01-09 11:56:21 +00:00
|
|
|
queue_evts[0].as_raw_fd(),
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::Event::new(epoll::Events::EPOLLIN, u64::from(RX_QUEUE_EVENT)),
|
|
|
|
)
|
|
|
|
.map_err(DeviceError::EpollCtl)?;
|
|
|
|
epoll::ctl(
|
2020-05-15 02:25:54 +00:00
|
|
|
epoll_file.as_raw_fd(),
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
2020-01-09 11:56:21 +00:00
|
|
|
queue_evts[1].as_raw_fd(),
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::Event::new(epoll::Events::EPOLLIN, u64::from(TX_QUEUE_EVENT)),
|
|
|
|
)
|
|
|
|
.map_err(DeviceError::EpollCtl)?;
|
|
|
|
epoll::ctl(
|
2020-05-15 02:25:54 +00:00
|
|
|
epoll_file.as_raw_fd(),
|
2019-05-08 00:26:37 +00:00
|
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
|
|
|
self.kill_evt.as_raw_fd(),
|
|
|
|
epoll::Event::new(epoll::Events::EPOLLIN, u64::from(KILL_EVENT)),
|
|
|
|
)
|
|
|
|
.map_err(DeviceError::EpollCtl)?;
|
2019-11-19 00:42:31 +00:00
|
|
|
epoll::ctl(
|
2020-05-15 02:25:54 +00:00
|
|
|
epoll_file.as_raw_fd(),
|
2019-11-19 00:42:31 +00:00
|
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
|
|
|
self.pause_evt.as_raw_fd(),
|
|
|
|
epoll::Event::new(epoll::Events::EPOLLIN, u64::from(PAUSE_EVENT)),
|
|
|
|
)
|
|
|
|
.map_err(DeviceError::EpollCtl)?;
|
2019-05-08 00:26:37 +00:00
|
|
|
|
2020-04-21 15:28:59 +00:00
|
|
|
// If there are some already available descriptors on the RX queue,
|
|
|
|
// then we can start the thread while listening onto the TAP.
|
2020-05-29 13:50:11 +00:00
|
|
|
if queues[0]
|
2020-05-29 14:13:31 +00:00
|
|
|
.available_descriptors(&self.net.mem.as_ref().unwrap().memory())
|
2020-05-29 13:50:11 +00:00
|
|
|
.unwrap()
|
|
|
|
{
|
2020-04-21 15:28:59 +00:00
|
|
|
epoll::ctl(
|
2020-05-15 02:25:54 +00:00
|
|
|
epoll_file.as_raw_fd(),
|
2020-04-21 15:28:59 +00:00
|
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
2020-05-29 13:50:11 +00:00
|
|
|
self.net.tap.as_raw_fd(),
|
2020-04-21 15:28:59 +00:00
|
|
|
epoll::Event::new(epoll::Events::EPOLLIN, u64::from(RX_TAP_EVENT)),
|
|
|
|
)
|
|
|
|
.map_err(DeviceError::EpollCtl)?;
|
2020-05-29 13:50:11 +00:00
|
|
|
self.net.rx_tap_listening = true;
|
2020-06-02 15:59:22 +00:00
|
|
|
error!("Listener registered at start");
|
2020-04-21 15:28:59 +00:00
|
|
|
}
|
|
|
|
|
2020-01-09 11:56:21 +00:00
|
|
|
let mut events = vec![epoll::Event::new(epoll::Events::empty(), 0); NET_EVENTS_COUNT];
|
2019-05-08 00:26:37 +00:00
|
|
|
|
2020-06-22 14:00:02 +00:00
|
|
|
// Before jumping into the epoll loop, check if the device is expected
|
|
|
|
// to be in a paused state. This is helpful for the restore code path
|
|
|
|
// as the device thread should not start processing anything before the
|
|
|
|
// device has been resumed.
|
|
|
|
while paused.load(Ordering::SeqCst) {
|
|
|
|
thread::park();
|
|
|
|
}
|
|
|
|
|
2019-05-08 00:26:37 +00:00
|
|
|
'epoll: loop {
|
2020-05-15 02:25:54 +00:00
|
|
|
let num_events = match epoll::wait(epoll_file.as_raw_fd(), -1, &mut events[..]) {
|
2019-08-01 20:08:47 +00:00
|
|
|
Ok(res) => res,
|
|
|
|
Err(e) => {
|
|
|
|
if e.kind() == io::ErrorKind::Interrupted {
|
|
|
|
// It's well defined from the epoll_wait() syscall
|
|
|
|
// documentation that the epoll loop can be interrupted
|
|
|
|
// before any of the requested events occurred or the
|
|
|
|
// timeout expired. In both those cases, epoll_wait()
|
|
|
|
// returns an error of type EINTR, but this should not
|
|
|
|
// be considered as a regular error. Instead it is more
|
|
|
|
// appropriate to retry, by calling into epoll_wait().
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
return Err(DeviceError::EpollWait(e));
|
|
|
|
}
|
|
|
|
};
|
2019-05-08 00:26:37 +00:00
|
|
|
|
|
|
|
for event in events.iter().take(num_events) {
|
|
|
|
let ev_type = event.data as u16;
|
|
|
|
|
|
|
|
match ev_type {
|
|
|
|
RX_QUEUE_EVENT => {
|
2020-06-02 16:00:31 +00:00
|
|
|
self.driver_awake = true;
|
2020-05-29 12:33:59 +00:00
|
|
|
self.handle_rx_event(&mut queues[0], &queue_evts[0])?;
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
TX_QUEUE_EVENT => {
|
2020-06-02 16:00:31 +00:00
|
|
|
self.driver_awake = true;
|
2020-05-29 12:33:59 +00:00
|
|
|
self.handle_tx_event(&mut queues[1], &queue_evts[1])?;
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
RX_TAP_EVENT => {
|
2020-05-29 12:33:59 +00:00
|
|
|
self.handle_rx_tap_event(&mut queues[0])?;
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
KILL_EVENT => {
|
|
|
|
debug!("KILL_EVENT received, stopping epoll loop");
|
|
|
|
break 'epoll;
|
|
|
|
}
|
2019-11-19 00:42:31 +00:00
|
|
|
PAUSE_EVENT => {
|
2020-03-09 16:45:45 +00:00
|
|
|
// Drain pause event
|
|
|
|
let _ = self.pause_evt.read();
|
2019-11-19 00:42:31 +00:00
|
|
|
debug!("PAUSE_EVENT received, pausing virtio-net epoll loop");
|
2020-04-21 15:28:59 +00:00
|
|
|
|
2019-11-19 00:42:31 +00:00
|
|
|
// We loop here to handle spurious park() returns.
|
|
|
|
// Until we have not resumed, the paused boolean will
|
|
|
|
// be true.
|
|
|
|
while paused.load(Ordering::SeqCst) {
|
|
|
|
thread::park();
|
|
|
|
}
|
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
_ => {
|
|
|
|
error!("Unknown event for virtio-net");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-23 15:28:41 +00:00
|
|
|
#[derive(Default, Clone)]
|
|
|
|
pub struct NetCounters {
|
|
|
|
tx_bytes: Arc<AtomicU64>,
|
|
|
|
tx_frames: Arc<AtomicU64>,
|
|
|
|
rx_bytes: Arc<AtomicU64>,
|
|
|
|
rx_frames: Arc<AtomicU64>,
|
|
|
|
}
|
|
|
|
|
2019-05-08 00:26:37 +00:00
|
|
|
pub struct Net {
|
2020-04-27 09:29:16 +00:00
|
|
|
id: String,
|
2019-05-08 00:26:37 +00:00
|
|
|
kill_evt: Option<EventFd>,
|
2019-11-19 00:42:31 +00:00
|
|
|
pause_evt: Option<EventFd>,
|
2020-01-09 17:29:00 +00:00
|
|
|
taps: Option<Vec<Tap>>,
|
2019-05-08 00:26:37 +00:00
|
|
|
avail_features: u64,
|
|
|
|
acked_features: u64,
|
2020-01-27 16:37:14 +00:00
|
|
|
config: VirtioNetConfig,
|
2019-10-02 18:21:34 +00:00
|
|
|
queue_evts: Option<Vec<EventFd>>,
|
2020-01-13 17:52:19 +00:00
|
|
|
interrupt_cb: Option<Arc<dyn VirtioInterrupt>>,
|
2020-01-27 13:14:56 +00:00
|
|
|
epoll_threads: Option<Vec<thread::JoinHandle<result::Result<(), DeviceError>>>>,
|
2020-01-15 09:32:05 +00:00
|
|
|
ctrl_queue_epoll_thread: Option<thread::JoinHandle<result::Result<(), DeviceError>>>,
|
2019-11-19 00:42:31 +00:00
|
|
|
paused: Arc<AtomicBool>,
|
2020-01-09 17:29:00 +00:00
|
|
|
queue_size: Vec<u16>,
|
2020-06-23 15:28:41 +00:00
|
|
|
counters: NetCounters,
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-04-21 15:28:59 +00:00
|
|
|
#[derive(Serialize, Deserialize)]
|
|
|
|
pub struct NetState {
|
|
|
|
pub avail_features: u64,
|
|
|
|
pub acked_features: u64,
|
|
|
|
pub config: VirtioNetConfig,
|
|
|
|
pub queue_size: Vec<u16>,
|
|
|
|
}
|
|
|
|
|
2019-05-08 00:26:37 +00:00
|
|
|
impl Net {
|
|
|
|
/// Create a new virtio network device with the given TAP interface.
|
2020-01-09 17:29:00 +00:00
|
|
|
pub fn new_with_tap(
|
2020-04-27 09:29:16 +00:00
|
|
|
id: String,
|
2020-01-09 17:29:00 +00:00
|
|
|
taps: Vec<Tap>,
|
|
|
|
guest_mac: Option<MacAddr>,
|
|
|
|
iommu: bool,
|
|
|
|
num_queues: usize,
|
|
|
|
queue_size: u16,
|
|
|
|
) -> Result<Self> {
|
2019-05-08 00:26:37 +00:00
|
|
|
let mut avail_features = 1 << VIRTIO_NET_F_GUEST_CSUM
|
|
|
|
| 1 << VIRTIO_NET_F_CSUM
|
|
|
|
| 1 << VIRTIO_NET_F_GUEST_TSO4
|
|
|
|
| 1 << VIRTIO_NET_F_GUEST_UFO
|
|
|
|
| 1 << VIRTIO_NET_F_HOST_TSO4
|
|
|
|
| 1 << VIRTIO_NET_F_HOST_UFO
|
2020-06-01 12:08:53 +00:00
|
|
|
| 1 << VIRTIO_RING_F_EVENT_IDX
|
2019-05-08 00:26:37 +00:00
|
|
|
| 1 << VIRTIO_F_VERSION_1;
|
|
|
|
|
2019-10-02 21:26:02 +00:00
|
|
|
if iommu {
|
|
|
|
avail_features |= 1u64 << VIRTIO_F_IOMMU_PLATFORM;
|
|
|
|
}
|
|
|
|
|
2020-01-15 09:32:05 +00:00
|
|
|
avail_features |= 1 << VIRTIO_NET_F_CTRL_VQ;
|
2020-01-09 17:29:00 +00:00
|
|
|
let queue_num = num_queues + 1;
|
2020-01-15 09:32:05 +00:00
|
|
|
|
2020-01-27 16:37:14 +00:00
|
|
|
let mut config = VirtioNetConfig::default();
|
2019-05-08 00:26:37 +00:00
|
|
|
if let Some(mac) = guest_mac {
|
2020-01-27 16:37:14 +00:00
|
|
|
build_net_config_space(&mut config, mac, num_queues, &mut avail_features);
|
2019-05-08 00:26:37 +00:00
|
|
|
} else {
|
2020-01-27 16:37:14 +00:00
|
|
|
build_net_config_space_with_mq(&mut config, num_queues, &mut avail_features);
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Ok(Net {
|
2020-04-27 09:29:16 +00:00
|
|
|
id,
|
2019-05-08 00:26:37 +00:00
|
|
|
kill_evt: None,
|
2019-11-19 00:42:31 +00:00
|
|
|
pause_evt: None,
|
2020-01-09 17:29:00 +00:00
|
|
|
taps: Some(taps),
|
2019-05-08 00:26:37 +00:00
|
|
|
avail_features,
|
|
|
|
acked_features: 0u64,
|
2020-01-27 16:37:14 +00:00
|
|
|
config,
|
2019-10-02 18:21:34 +00:00
|
|
|
queue_evts: None,
|
|
|
|
interrupt_cb: None,
|
2020-01-27 13:14:56 +00:00
|
|
|
epoll_threads: None,
|
2020-01-15 09:32:05 +00:00
|
|
|
ctrl_queue_epoll_thread: None,
|
2019-11-19 00:42:31 +00:00
|
|
|
paused: Arc::new(AtomicBool::new(false)),
|
2020-01-09 17:29:00 +00:00
|
|
|
queue_size: vec![queue_size; queue_num],
|
2020-06-23 15:28:41 +00:00
|
|
|
counters: NetCounters::default(),
|
2019-05-08 00:26:37 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Create a new virtio network device with the given IP address and
|
|
|
|
/// netmask.
|
2020-04-27 09:29:16 +00:00
|
|
|
#[allow(clippy::too_many_arguments)]
|
2019-10-02 21:26:02 +00:00
|
|
|
pub fn new(
|
2020-04-27 09:29:16 +00:00
|
|
|
id: String,
|
2020-01-09 17:29:00 +00:00
|
|
|
if_name: Option<&str>,
|
|
|
|
ip_addr: Option<Ipv4Addr>,
|
|
|
|
netmask: Option<Ipv4Addr>,
|
2020-01-09 11:56:21 +00:00
|
|
|
guest_mac: Option<MacAddr>,
|
2020-06-05 11:00:34 +00:00
|
|
|
host_mac: &mut Option<MacAddr>,
|
2019-10-02 21:26:02 +00:00
|
|
|
iommu: bool,
|
2020-01-09 17:29:00 +00:00
|
|
|
num_queues: usize,
|
|
|
|
queue_size: u16,
|
2019-10-02 21:26:02 +00:00
|
|
|
) -> Result<Self> {
|
2020-05-15 09:00:38 +00:00
|
|
|
let taps = open_tap(if_name, ip_addr, netmask, host_mac, num_queues / 2)
|
|
|
|
.map_err(Error::OpenTap)?;
|
2019-05-08 00:26:37 +00:00
|
|
|
|
2020-04-27 09:29:16 +00:00
|
|
|
Self::new_with_tap(id, taps, guest_mac, iommu, num_queues, queue_size)
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
2020-04-21 15:28:59 +00:00
|
|
|
|
|
|
|
fn state(&self) -> NetState {
|
|
|
|
NetState {
|
|
|
|
avail_features: self.avail_features,
|
|
|
|
acked_features: self.acked_features,
|
|
|
|
config: self.config,
|
|
|
|
queue_size: self.queue_size.clone(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn set_state(&mut self, state: &NetState) -> Result<()> {
|
|
|
|
self.avail_features = state.avail_features;
|
|
|
|
self.acked_features = state.acked_features;
|
|
|
|
self.config = state.config;
|
|
|
|
self.queue_size = state.queue_size.clone();
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Net {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
if let Some(kill_evt) = self.kill_evt.take() {
|
|
|
|
// Ignore the result because there is nothing we can do about it.
|
|
|
|
let _ = kill_evt.write(1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VirtioDevice for Net {
|
|
|
|
fn device_type(&self) -> u32 {
|
|
|
|
VirtioDeviceType::TYPE_NET as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
fn queue_max_sizes(&self) -> &[u16] {
|
2020-01-09 17:29:00 +00:00
|
|
|
&self.queue_size.as_slice()
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 10:14:38 +00:00
|
|
|
fn features(&self) -> u64 {
|
|
|
|
self.avail_features
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
|
|
|
|
2020-01-23 10:14:38 +00:00
|
|
|
fn ack_features(&mut self, value: u64) {
|
|
|
|
let mut v = value;
|
2019-05-08 00:26:37 +00:00
|
|
|
// Check if the guest is ACK'ing a feature that we didn't claim to have.
|
|
|
|
let unrequested_features = v & !self.avail_features;
|
|
|
|
if unrequested_features != 0 {
|
|
|
|
warn!("Received acknowledge request for unknown feature: {:x}", v);
|
|
|
|
// Don't count these features as acked.
|
|
|
|
v &= !unrequested_features;
|
|
|
|
}
|
|
|
|
self.acked_features |= v;
|
|
|
|
}
|
|
|
|
|
|
|
|
fn read_config(&self, offset: u64, mut data: &mut [u8]) {
|
2020-01-27 16:37:14 +00:00
|
|
|
let config_slice = self.config.as_slice();
|
|
|
|
let config_len = config_slice.len() as u64;
|
2019-05-08 00:26:37 +00:00
|
|
|
if offset >= config_len {
|
|
|
|
error!("Failed to read config space");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if let Some(end) = offset.checked_add(data.len() as u64) {
|
|
|
|
// This write can't fail, offset and end are checked against config_len.
|
2020-01-27 16:37:14 +00:00
|
|
|
data.write_all(&config_slice[offset as usize..cmp::min(end, config_len) as usize])
|
2019-05-08 00:26:37 +00:00
|
|
|
.unwrap();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn write_config(&mut self, offset: u64, data: &[u8]) {
|
2020-01-27 16:37:14 +00:00
|
|
|
let config_slice = self.config.as_mut_slice();
|
2019-05-08 00:26:37 +00:00
|
|
|
let data_len = data.len() as u64;
|
2020-01-27 16:37:14 +00:00
|
|
|
let config_len = config_slice.len() as u64;
|
2019-05-08 00:26:37 +00:00
|
|
|
if offset + data_len > config_len {
|
|
|
|
error!("Failed to write config space");
|
|
|
|
return;
|
|
|
|
}
|
2020-01-27 16:37:14 +00:00
|
|
|
let (_, right) = config_slice.split_at_mut(offset as usize);
|
2019-05-08 00:26:37 +00:00
|
|
|
right.copy_from_slice(&data[..]);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn activate(
|
|
|
|
&mut self,
|
2020-02-11 16:22:40 +00:00
|
|
|
mem: GuestMemoryAtomic<GuestMemoryMmap>,
|
2020-01-13 17:52:19 +00:00
|
|
|
interrupt_cb: Arc<dyn VirtioInterrupt>,
|
2019-05-08 00:26:37 +00:00
|
|
|
mut queues: Vec<Queue>,
|
|
|
|
mut queue_evts: Vec<EventFd>,
|
|
|
|
) -> ActivateResult {
|
2020-01-09 17:29:00 +00:00
|
|
|
if queues.len() != self.queue_size.len() || queue_evts.len() != self.queue_size.len() {
|
2019-05-08 00:26:37 +00:00
|
|
|
error!(
|
|
|
|
"Cannot perform activate. Expected {} queue(s), got {}",
|
2020-01-09 17:29:00 +00:00
|
|
|
self.queue_size.len(),
|
2019-05-08 00:26:37 +00:00
|
|
|
queues.len()
|
|
|
|
);
|
|
|
|
return Err(ActivateError::BadActivate);
|
|
|
|
}
|
|
|
|
|
2019-11-19 00:42:31 +00:00
|
|
|
let (self_kill_evt, kill_evt) = EventFd::new(EFD_NONBLOCK)
|
|
|
|
.and_then(|e| Ok((e.try_clone()?, e)))
|
|
|
|
.map_err(|e| {
|
|
|
|
error!("failed creating kill EventFd pair: {}", e);
|
|
|
|
ActivateError::BadActivate
|
|
|
|
})?;
|
2019-05-08 00:26:37 +00:00
|
|
|
self.kill_evt = Some(self_kill_evt);
|
|
|
|
|
2019-11-19 00:42:31 +00:00
|
|
|
let (self_pause_evt, pause_evt) = EventFd::new(EFD_NONBLOCK)
|
|
|
|
.and_then(|e| Ok((e.try_clone()?, e)))
|
|
|
|
.map_err(|e| {
|
|
|
|
error!("failed creating pause EventFd pair: {}", e);
|
|
|
|
ActivateError::BadActivate
|
|
|
|
})?;
|
|
|
|
self.pause_evt = Some(self_pause_evt);
|
|
|
|
|
2020-01-09 17:29:00 +00:00
|
|
|
if let Some(mut taps) = self.taps.clone() {
|
2019-10-02 18:21:34 +00:00
|
|
|
// Save the interrupt EventFD as we need to return it on reset
|
|
|
|
// but clone it to pass into the thread.
|
|
|
|
self.interrupt_cb = Some(interrupt_cb.clone());
|
|
|
|
|
|
|
|
let mut tmp_queue_evts: Vec<EventFd> = Vec::new();
|
|
|
|
for queue_evt in queue_evts.iter() {
|
|
|
|
// Save the queue EventFD as we need to return it on reset
|
|
|
|
// but clone it to pass into the thread.
|
|
|
|
tmp_queue_evts.push(queue_evt.try_clone().map_err(|e| {
|
|
|
|
error!("failed to clone queue EventFd: {}", e);
|
|
|
|
ActivateError::BadActivate
|
|
|
|
})?);
|
|
|
|
}
|
|
|
|
self.queue_evts = Some(tmp_queue_evts);
|
|
|
|
|
2020-01-15 09:32:05 +00:00
|
|
|
let queue_num = queues.len();
|
|
|
|
if (self.acked_features & 1 << VIRTIO_NET_F_CTRL_VQ) != 0 && queue_num % 2 != 0 {
|
|
|
|
let cvq_queue = queues.remove(queue_num - 1);
|
|
|
|
let cvq_queue_evt = queue_evts.remove(queue_num - 1);
|
|
|
|
|
|
|
|
let mut ctrl_handler = NetCtrlEpollHandler {
|
|
|
|
mem: mem.clone(),
|
|
|
|
kill_evt: kill_evt.try_clone().unwrap(),
|
|
|
|
pause_evt: pause_evt.try_clone().unwrap(),
|
|
|
|
ctrl_q: CtrlVirtio::new(cvq_queue, cvq_queue_evt),
|
|
|
|
epoll_fd: 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
let paused = self.paused.clone();
|
|
|
|
thread::Builder::new()
|
|
|
|
.name("virtio_net".to_string())
|
|
|
|
.spawn(move || ctrl_handler.run_ctrl(paused))
|
|
|
|
.map(|thread| self.ctrl_queue_epoll_thread = Some(thread))
|
|
|
|
.map_err(|e| {
|
|
|
|
error!("failed to clone queue EventFd: {}", e);
|
|
|
|
ActivateError::BadActivate
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
|
2020-06-01 12:08:53 +00:00
|
|
|
let event_idx = self.acked_features & 1 << VIRTIO_RING_F_EVENT_IDX != 0;
|
|
|
|
|
2020-01-27 13:14:56 +00:00
|
|
|
let mut epoll_threads = Vec::new();
|
2020-01-09 17:29:00 +00:00
|
|
|
for _ in 0..taps.len() {
|
|
|
|
let rx = RxVirtio::new();
|
|
|
|
let tx = TxVirtio::new();
|
|
|
|
let rx_tap_listening = false;
|
2019-05-08 00:26:37 +00:00
|
|
|
|
2020-01-09 17:29:00 +00:00
|
|
|
let mut queue_pair = Vec::new();
|
|
|
|
queue_pair.push(queues.remove(0));
|
|
|
|
queue_pair.push(queues.remove(0));
|
2020-06-01 12:08:53 +00:00
|
|
|
queue_pair[0].set_event_idx(event_idx);
|
|
|
|
queue_pair[1].set_event_idx(event_idx);
|
2020-01-09 17:29:00 +00:00
|
|
|
|
|
|
|
let mut queue_evt_pair = Vec::new();
|
|
|
|
queue_evt_pair.push(queue_evts.remove(0));
|
|
|
|
queue_evt_pair.push(queue_evts.remove(0));
|
|
|
|
|
|
|
|
let mut handler = NetEpollHandler {
|
2020-05-29 13:50:11 +00:00
|
|
|
net: NetQueuePair {
|
2020-05-29 14:13:31 +00:00
|
|
|
mem: Some(mem.clone()),
|
2020-05-29 13:50:11 +00:00
|
|
|
tap: taps.remove(0),
|
|
|
|
rx,
|
|
|
|
tx,
|
2020-05-29 14:13:31 +00:00
|
|
|
epoll_fd: None,
|
2020-05-29 13:50:11 +00:00
|
|
|
rx_tap_listening,
|
2020-06-23 15:28:41 +00:00
|
|
|
counters: self.counters.clone(),
|
2020-05-29 13:50:11 +00:00
|
|
|
},
|
2020-01-09 17:29:00 +00:00
|
|
|
interrupt_cb: interrupt_cb.clone(),
|
|
|
|
kill_evt: kill_evt.try_clone().unwrap(),
|
|
|
|
pause_evt: pause_evt.try_clone().unwrap(),
|
2020-06-02 16:00:31 +00:00
|
|
|
driver_awake: false,
|
2020-01-09 17:29:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let paused = self.paused.clone();
|
|
|
|
thread::Builder::new()
|
|
|
|
.name("virtio_net".to_string())
|
|
|
|
.spawn(move || handler.run(paused, queue_pair, queue_evt_pair))
|
2020-01-27 13:14:56 +00:00
|
|
|
.map(|thread| epoll_threads.push(thread))
|
2020-01-09 17:29:00 +00:00
|
|
|
.map_err(|e| {
|
|
|
|
error!("failed to clone queue EventFd: {}", e);
|
|
|
|
ActivateError::BadActivate
|
|
|
|
})?;
|
|
|
|
}
|
|
|
|
|
2020-01-27 13:14:56 +00:00
|
|
|
self.epoll_threads = Some(epoll_threads);
|
2019-05-08 00:26:37 +00:00
|
|
|
|
|
|
|
return Ok(());
|
|
|
|
}
|
|
|
|
Err(ActivateError::BadActivate)
|
|
|
|
}
|
2019-10-02 18:21:34 +00:00
|
|
|
|
2020-01-13 17:52:19 +00:00
|
|
|
fn reset(&mut self) -> Option<(Arc<dyn VirtioInterrupt>, Vec<EventFd>)> {
|
2019-11-19 00:42:31 +00:00
|
|
|
// We first must resume the virtio thread if it was paused.
|
|
|
|
if self.pause_evt.take().is_some() {
|
|
|
|
self.resume().ok()?;
|
|
|
|
}
|
|
|
|
|
2019-10-02 18:21:34 +00:00
|
|
|
if let Some(kill_evt) = self.kill_evt.take() {
|
|
|
|
// Ignore the result because there is nothing we can do about it.
|
|
|
|
let _ = kill_evt.write(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Return the interrupt and queue EventFDs
|
|
|
|
Some((
|
|
|
|
self.interrupt_cb.take().unwrap(),
|
|
|
|
self.queue_evts.take().unwrap(),
|
|
|
|
))
|
|
|
|
}
|
2019-05-08 00:26:37 +00:00
|
|
|
}
|
2019-11-19 00:42:31 +00:00
|
|
|
|
2020-01-27 18:38:27 +00:00
|
|
|
virtio_ctrl_q_pausable!(Net);
|
2020-04-21 15:28:59 +00:00
|
|
|
impl Snapshottable for Net {
|
|
|
|
fn id(&self) -> String {
|
2020-04-27 09:29:16 +00:00
|
|
|
self.id.clone()
|
2020-04-21 15:28:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
fn snapshot(&self) -> std::result::Result<Snapshot, MigratableError> {
|
|
|
|
let snapshot =
|
|
|
|
serde_json::to_vec(&self.state()).map_err(|e| MigratableError::Snapshot(e.into()))?;
|
|
|
|
|
2020-04-27 09:29:16 +00:00
|
|
|
let mut net_snapshot = Snapshot::new(self.id.as_str());
|
2020-04-21 15:28:59 +00:00
|
|
|
net_snapshot.add_data_section(SnapshotDataSection {
|
2020-04-27 09:29:16 +00:00
|
|
|
id: format!("{}-section", self.id),
|
2020-04-21 15:28:59 +00:00
|
|
|
snapshot,
|
|
|
|
});
|
|
|
|
|
|
|
|
Ok(net_snapshot)
|
|
|
|
}
|
|
|
|
|
|
|
|
fn restore(&mut self, snapshot: Snapshot) -> std::result::Result<(), MigratableError> {
|
2020-04-27 09:29:16 +00:00
|
|
|
if let Some(net_section) = snapshot.snapshot_data.get(&format!("{}-section", self.id)) {
|
2020-04-21 15:28:59 +00:00
|
|
|
let net_state = match serde_json::from_slice(&net_section.snapshot) {
|
|
|
|
Ok(state) => state,
|
|
|
|
Err(error) => {
|
|
|
|
return Err(MigratableError::Restore(anyhow!(
|
|
|
|
"Could not deserialize NET {}",
|
|
|
|
error
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
return self.set_state(&net_state).map_err(|e| {
|
|
|
|
MigratableError::Restore(anyhow!("Could not restore NET state {:?}", e))
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Err(MigratableError::Restore(anyhow!(
|
|
|
|
"Could not find NET snapshot section"
|
|
|
|
)))
|
|
|
|
}
|
|
|
|
}
|
2019-05-01 16:59:51 +00:00
|
|
|
impl Transportable for Net {}
|
2019-11-19 00:42:31 +00:00
|
|
|
impl Migratable for Net {}
|