mirror of
https://github.com/cloud-hypervisor/cloud-hypervisor.git
synced 2026-08-05 02:19:16 +00:00
Advertise `VIRTIO_NET_F_GUEST_ANNOUNCE` on virtio-net devices, surface `VIRTIO_NET_S_ANNOUNCE` through config status, and handle `VIRTIO_NET_CTRL_ANNOUNCE_ACK` on the control queue. This adds the guest-visible state needed for post-migration or post-restore announce requests; the VMM side triggering is added in follow-up commits. The motivation is to reduce post-migration and post-restore connectivity gap. After a live migration or after restoring, it can take the guest several seconds to be reachable again over the network. With these announcements, the network path should be refreshed within a few milliseconds. On-behalf-of: SAP sebastian.eydam@sap.com Signed-off-by: Sebastian Eydam <sebastian.eydam@cyberus-technology.de>
212 lines
5.9 KiB
Rust
212 lines
5.9 KiB
Rust
// 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.
|
|
|
|
mod ctrl_queue;
|
|
mod mac;
|
|
mod open_tap;
|
|
mod queue_pair;
|
|
mod tap;
|
|
|
|
use std::io::Error as IoError;
|
|
use std::net::IpAddr;
|
|
use std::os::raw::c_uint;
|
|
use std::os::unix::io::{FromRawFd, RawFd};
|
|
use std::{io, mem, net, result};
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
use thiserror::Error;
|
|
use virtio_bindings::virtio_net::{
|
|
VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX, VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN, VIRTIO_NET_F_GUEST_CSUM,
|
|
VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
|
|
VIRTIO_NET_F_GUEST_UFO, VIRTIO_NET_F_MAC, VIRTIO_NET_F_MQ, virtio_net_hdr_v1,
|
|
};
|
|
use vm_memory::ByteValued;
|
|
use vm_memory::bitmap::AtomicBitmap;
|
|
|
|
type GuestMemoryMmap = vm_memory::GuestMemoryMmap<AtomicBitmap>;
|
|
|
|
pub use ctrl_queue::{CtrlQueue, Error as CtrlQueueError};
|
|
pub use mac::{MAC_ADDR_LEN, MacAddr};
|
|
pub use open_tap::{Error as OpenTapError, open_tap};
|
|
pub use queue_pair::{NetCounters, NetQueuePair, NetQueuePairError, RxVirtio, TxVirtio};
|
|
pub use tap::{Error as TapError, Tap};
|
|
|
|
#[derive(Error, Debug)]
|
|
pub enum Error {
|
|
#[error("Failed to create a socket")]
|
|
CreateSocket(#[source] IoError),
|
|
}
|
|
|
|
pub type Result<T> = result::Result<T, Error>;
|
|
|
|
#[repr(C, packed)]
|
|
#[derive(Copy, Clone, Debug, Default, Serialize, Deserialize)]
|
|
pub struct VirtioNetConfig {
|
|
pub mac: [u8; 6],
|
|
pub status: u16,
|
|
pub max_virtqueue_pairs: u16,
|
|
pub mtu: u16,
|
|
pub speed: u32,
|
|
pub duplex: u8,
|
|
}
|
|
|
|
// SAFETY: it only has data and has no implicit padding.
|
|
unsafe impl ByteValued for VirtioNetConfig {}
|
|
|
|
/// Create a sockaddr_in from an IPv4 address, and expose it as
|
|
/// an opaque sockaddr suitable for usage by socket ioctls.
|
|
fn create_sockaddr(ip_addr: net::Ipv4Addr) -> libc::sockaddr {
|
|
let addr_in = libc::sockaddr_in {
|
|
sin_family: libc::AF_INET as u16,
|
|
sin_port: 0,
|
|
sin_addr: libc::in_addr {
|
|
// Use network byte order (big endian).
|
|
s_addr: ip_addr.to_bits().to_be(),
|
|
},
|
|
sin_zero: [0; 8],
|
|
};
|
|
|
|
// SAFETY: addr_in can be safely transmute to sockaddr
|
|
unsafe { mem::transmute(addr_in) }
|
|
}
|
|
|
|
fn create_inet_socket(addr: IpAddr) -> Result<net::UdpSocket> {
|
|
let domain = match addr {
|
|
IpAddr::V4(_) => libc::AF_INET,
|
|
IpAddr::V6(_) => libc::AF_INET6,
|
|
};
|
|
|
|
// SAFETY: we check the return value.
|
|
let sock = unsafe { libc::socket(domain, libc::SOCK_DGRAM, 0) };
|
|
if sock < 0 {
|
|
return Err(Error::CreateSocket(IoError::last_os_error()));
|
|
}
|
|
|
|
// SAFETY: nothing else will use or hold onto the raw sock fd.
|
|
Ok(unsafe { net::UdpSocket::from_raw_fd(sock) })
|
|
}
|
|
|
|
fn create_unix_socket() -> Result<net::UdpSocket> {
|
|
// SAFETY: we check the return value.
|
|
let sock = unsafe { libc::socket(libc::AF_UNIX, libc::SOCK_DGRAM, 0) };
|
|
if sock < 0 {
|
|
return Err(Error::CreateSocket(IoError::last_os_error()));
|
|
}
|
|
|
|
// SAFETY: nothing else will use or hold onto the raw sock fd.
|
|
Ok(unsafe { net::UdpSocket::from_raw_fd(sock) })
|
|
}
|
|
|
|
pub fn vnet_hdr_len() -> usize {
|
|
size_of::<virtio_net_hdr_v1>()
|
|
}
|
|
|
|
pub fn register_listener(
|
|
epoll_fd: RawFd,
|
|
fd: RawFd,
|
|
ev_type: epoll::Events,
|
|
data: u64,
|
|
) -> io::Result<()> {
|
|
epoll::ctl(
|
|
epoll_fd,
|
|
epoll::ControlOptions::EPOLL_CTL_ADD,
|
|
fd,
|
|
epoll::Event::new(ev_type, data),
|
|
)
|
|
}
|
|
|
|
pub fn unregister_listener(
|
|
epoll_fd: RawFd,
|
|
fd: RawFd,
|
|
ev_type: epoll::Events,
|
|
data: u64,
|
|
) -> io::Result<()> {
|
|
epoll::ctl(
|
|
epoll_fd,
|
|
epoll::ControlOptions::EPOLL_CTL_DEL,
|
|
fd,
|
|
epoll::Event::new(ev_type, data),
|
|
)
|
|
}
|
|
|
|
pub fn build_net_config_space(
|
|
config: &mut VirtioNetConfig,
|
|
mac: MacAddr,
|
|
num_queues: usize,
|
|
mtu: Option<u16>,
|
|
avail_features: &mut u64,
|
|
) {
|
|
config.mac.copy_from_slice(mac.get_bytes());
|
|
*avail_features |= 1 << VIRTIO_NET_F_MAC;
|
|
|
|
build_net_config_space_with_mq(config, num_queues, mtu, avail_features);
|
|
}
|
|
|
|
pub fn build_net_config_space_with_mq(
|
|
config: &mut VirtioNetConfig,
|
|
num_queues: usize,
|
|
mtu: Option<u16>,
|
|
avail_features: &mut u64,
|
|
) {
|
|
let num_queue_pairs = (num_queues / 2) as u16;
|
|
if (num_queue_pairs >= VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN as u16)
|
|
&& (num_queue_pairs <= VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX as u16)
|
|
{
|
|
config.max_virtqueue_pairs = num_queue_pairs;
|
|
*avail_features |= 1 << VIRTIO_NET_F_MQ;
|
|
}
|
|
if let Some(mtu) = mtu {
|
|
config.mtu = mtu;
|
|
}
|
|
}
|
|
|
|
pub fn virtio_features_to_tap_offload(features: u64) -> c_uint {
|
|
let mut tap_offloads: c_uint = 0;
|
|
if features & (1 << VIRTIO_NET_F_GUEST_CSUM) != 0 {
|
|
tap_offloads |= libc::TUN_F_CSUM;
|
|
}
|
|
if features & (1 << VIRTIO_NET_F_GUEST_TSO4) != 0 {
|
|
tap_offloads |= libc::TUN_F_TSO4;
|
|
}
|
|
if features & (1 << VIRTIO_NET_F_GUEST_TSO6) != 0 {
|
|
tap_offloads |= libc::TUN_F_TSO6;
|
|
}
|
|
if features & (1 << VIRTIO_NET_F_GUEST_ECN) != 0 {
|
|
tap_offloads |= libc::TUN_F_TSO_ECN;
|
|
}
|
|
if features & (1 << VIRTIO_NET_F_GUEST_UFO) != 0 {
|
|
tap_offloads |= libc::TUN_F_UFO;
|
|
}
|
|
|
|
tap_offloads
|
|
}
|
|
|
|
#[cfg(test)]
|
|
mod unit_tests {
|
|
use super::*;
|
|
|
|
#[test]
|
|
fn test_create_sockaddr() {
|
|
let addr: net::Ipv4Addr = "10.0.0.1".parse().unwrap();
|
|
let sockaddr = create_sockaddr(addr);
|
|
|
|
assert_eq!(sockaddr.sa_family, libc::AF_INET as u16);
|
|
|
|
let data = &sockaddr.sa_data[..];
|
|
|
|
// The first two bytes should represent the port, which is 0.
|
|
assert_eq!(data[0], 0);
|
|
assert_eq!(data[1], 0);
|
|
|
|
// The next four bytes should represent the actual IPv4 address, in network order.
|
|
assert_eq!(data[2], 10);
|
|
assert_eq!(data[3], 0);
|
|
assert_eq!(data[4], 0);
|
|
assert_eq!(data[5], 1);
|
|
}
|
|
}
|