2008-12-17 22:13:11 +03:00
|
|
|
/*
|
|
|
|
* Virtio Network Device
|
|
|
|
*
|
|
|
|
* Copyright IBM, Corp. 2007
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Anthony Liguori <aliguori@us.ibm.com>
|
|
|
|
*
|
|
|
|
* This work is licensed under the terms of the GNU GPL, version 2. See
|
|
|
|
* the COPYING file in the top-level directory.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/iov.h"
|
2008-12-17 22:13:11 +03:00
|
|
|
#include "virtio.h"
|
2012-10-24 10:43:34 +04:00
|
|
|
#include "net/net.h"
|
2009-10-22 20:49:03 +04:00
|
|
|
#include "net/checksum.h"
|
2009-10-22 20:49:05 +04:00
|
|
|
#include "net/tap.h"
|
2012-12-17 21:20:00 +04:00
|
|
|
#include "qemu/error-report.h"
|
|
|
|
#include "qemu/timer.h"
|
2008-12-17 22:13:11 +03:00
|
|
|
#include "virtio-net.h"
|
2010-03-17 14:08:42 +03:00
|
|
|
#include "vhost_net.h"
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-10-22 20:43:50 +04:00
|
|
|
#define VIRTIO_NET_VM_VERSION 11
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2009-06-06 00:47:23 +04:00
|
|
|
#define MAC_TABLE_ENTRIES 64
|
2009-02-06 01:36:32 +03:00
|
|
|
#define MAX_VLAN (1 << 12) /* Per 802.1Q definition */
|
2009-02-06 01:36:04 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
typedef struct VirtIONetQueue {
|
|
|
|
VirtQueue *rx_vq;
|
|
|
|
VirtQueue *tx_vq;
|
|
|
|
QEMUTimer *tx_timer;
|
|
|
|
QEMUBH *tx_bh;
|
|
|
|
int tx_waiting;
|
|
|
|
struct {
|
|
|
|
VirtQueueElement elem;
|
|
|
|
ssize_t len;
|
|
|
|
} async_tx;
|
|
|
|
struct VirtIONet *n;
|
|
|
|
} VirtIONetQueue;
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
typedef struct VirtIONet
|
|
|
|
{
|
|
|
|
VirtIODevice vdev;
|
2009-02-06 01:36:12 +03:00
|
|
|
uint8_t mac[ETH_ALEN];
|
2009-01-08 22:46:33 +03:00
|
|
|
uint16_t status;
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue vq;
|
2009-02-06 01:36:16 +03:00
|
|
|
VirtQueue *ctrl_vq;
|
2009-11-25 21:49:11 +03:00
|
|
|
NICState *nic;
|
2010-09-02 19:00:50 +04:00
|
|
|
uint32_t tx_timeout;
|
2010-09-02 19:00:57 +04:00
|
|
|
int32_t tx_burst;
|
2009-10-22 20:43:45 +04:00
|
|
|
uint32_t has_vnet_hdr;
|
2012-09-24 14:12:25 +04:00
|
|
|
size_t host_hdr_len;
|
|
|
|
size_t guest_hdr_len;
|
2009-10-22 20:43:50 +04:00
|
|
|
uint8_t has_ufo;
|
2008-12-17 22:13:11 +03:00
|
|
|
int mergeable_rx_bufs;
|
2009-06-06 00:46:57 +04:00
|
|
|
uint8_t promisc;
|
|
|
|
uint8_t allmulti;
|
2009-06-06 00:47:18 +04:00
|
|
|
uint8_t alluni;
|
|
|
|
uint8_t nomulti;
|
|
|
|
uint8_t nouni;
|
|
|
|
uint8_t nobcast;
|
2010-03-17 14:08:42 +03:00
|
|
|
uint8_t vhost_started;
|
2009-02-06 01:36:28 +03:00
|
|
|
struct {
|
|
|
|
int in_use;
|
2009-06-06 00:47:13 +04:00
|
|
|
int first_multi;
|
2009-06-06 00:47:08 +04:00
|
|
|
uint8_t multi_overflow;
|
|
|
|
uint8_t uni_overflow;
|
2009-02-06 01:36:28 +03:00
|
|
|
uint8_t *macs;
|
|
|
|
} mac_table;
|
2009-02-06 01:36:32 +03:00
|
|
|
uint32_t *vlans;
|
2010-06-25 21:09:28 +04:00
|
|
|
DeviceState *qdev;
|
2008-12-17 22:13:11 +03:00
|
|
|
} VirtIONet;
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
static VirtIONetQueue *virtio_net_get_queue(NetClientState *nc)
|
|
|
|
{
|
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
|
|
|
|
|
|
|
return &n->vq;
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
/* TODO
|
|
|
|
* - we could suppress RX interrupt if we were so inclined.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static VirtIONet *to_virtio_net(VirtIODevice *vdev)
|
|
|
|
{
|
|
|
|
return (VirtIONet *)vdev;
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:08 +03:00
|
|
|
static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
|
|
|
struct virtio_net_config netcfg;
|
|
|
|
|
2011-03-04 00:42:28 +03:00
|
|
|
stw_p(&netcfg.status, n->status);
|
2009-02-06 01:36:12 +03:00
|
|
|
memcpy(netcfg.mac, n->mac, ETH_ALEN);
|
2008-12-17 22:13:11 +03:00
|
|
|
memcpy(config, &netcfg, sizeof(netcfg));
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:08 +03:00
|
|
|
static void virtio_net_set_config(VirtIODevice *vdev, const uint8_t *config)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
|
|
|
struct virtio_net_config netcfg;
|
|
|
|
|
|
|
|
memcpy(&netcfg, config, sizeof(netcfg));
|
|
|
|
|
2013-01-22 19:44:45 +04:00
|
|
|
if (!(n->vdev.guest_features >> VIRTIO_NET_F_CTRL_MAC_ADDR & 1) &&
|
|
|
|
memcmp(netcfg.mac, n->mac, ETH_ALEN)) {
|
2009-02-06 01:36:12 +03:00
|
|
|
memcpy(n->mac, netcfg.mac, ETH_ALEN);
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
|
2009-02-06 01:36:08 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 20:52:30 +03:00
|
|
|
static bool virtio_net_started(VirtIONet *n, uint8_t status)
|
|
|
|
{
|
|
|
|
return (status & VIRTIO_CONFIG_S_DRIVER_OK) &&
|
2011-01-10 15:28:40 +03:00
|
|
|
(n->status & VIRTIO_NET_S_LINK_UP) && n->vdev.vm_running;
|
2010-11-22 20:52:30 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_net_vhost_status(VirtIONet *n, uint8_t status)
|
2010-09-27 20:41:30 +04:00
|
|
|
{
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
|
|
|
|
|
|
|
if (!nc->peer) {
|
2010-09-27 20:41:30 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
if (nc->peer->info->type != NET_CLIENT_OPTIONS_KIND_TAP) {
|
2010-09-27 20:41:30 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!tap_get_vhost_net(nc->peer)) {
|
2010-09-27 20:41:30 +04:00
|
|
|
return;
|
|
|
|
}
|
2011-02-09 19:45:09 +03:00
|
|
|
if (!!n->vhost_started == virtio_net_started(n, status) &&
|
2013-01-30 15:12:22 +04:00
|
|
|
!nc->peer->link_down) {
|
2010-09-27 20:41:30 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!n->vhost_started) {
|
2011-02-01 23:13:42 +03:00
|
|
|
int r;
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!vhost_net_query(tap_get_vhost_net(nc->peer), &n->vdev)) {
|
2011-02-01 23:13:42 +03:00
|
|
|
return;
|
|
|
|
}
|
2012-12-25 19:38:59 +04:00
|
|
|
n->vhost_started = 1;
|
2013-01-30 15:12:35 +04:00
|
|
|
r = vhost_net_start(&n->vdev, nc, 1);
|
2010-09-27 20:41:30 +04:00
|
|
|
if (r < 0) {
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("unable to start vhost net: %d: "
|
|
|
|
"falling back on userspace virtio", -r);
|
2012-12-25 19:38:59 +04:00
|
|
|
n->vhost_started = 0;
|
2013-01-30 15:12:38 +04:00
|
|
|
} else {
|
|
|
|
n->vhost_started = 1;
|
2010-09-27 20:41:30 +04:00
|
|
|
}
|
|
|
|
} else {
|
2013-01-30 15:12:35 +04:00
|
|
|
vhost_net_stop(&n->vdev, nc, 1);
|
2010-09-27 20:41:30 +04:00
|
|
|
n->vhost_started = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-11-22 20:52:30 +03:00
|
|
|
static void virtio_net_set_status(struct VirtIODevice *vdev, uint8_t status)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2010-11-22 20:52:30 +03:00
|
|
|
|
|
|
|
virtio_net_vhost_status(n, status);
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (!q->tx_waiting) {
|
2010-11-22 20:52:30 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (virtio_net_started(n, status) && !n->vhost_started) {
|
2013-01-30 15:12:38 +04:00
|
|
|
if (q->tx_timer) {
|
|
|
|
qemu_mod_timer(q->tx_timer,
|
2011-03-11 18:47:48 +03:00
|
|
|
qemu_get_clock_ns(vm_clock) + n->tx_timeout);
|
2010-11-22 20:52:30 +03:00
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_bh_schedule(q->tx_bh);
|
2010-11-22 20:52:30 +03:00
|
|
|
}
|
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
if (q->tx_timer) {
|
|
|
|
qemu_del_timer(q->tx_timer);
|
2010-11-22 20:52:30 +03:00
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_bh_cancel(q->tx_bh);
|
2010-11-22 20:52:30 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-24 19:35:13 +04:00
|
|
|
static void virtio_net_set_link_status(NetClientState *nc)
|
2009-01-08 22:46:33 +03:00
|
|
|
{
|
2013-01-30 15:12:23 +04:00
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
2009-01-08 22:46:33 +03:00
|
|
|
uint16_t old_status = n->status;
|
|
|
|
|
2009-11-25 21:49:11 +03:00
|
|
|
if (nc->link_down)
|
2009-01-08 22:46:33 +03:00
|
|
|
n->status &= ~VIRTIO_NET_S_LINK_UP;
|
|
|
|
else
|
|
|
|
n->status |= VIRTIO_NET_S_LINK_UP;
|
|
|
|
|
|
|
|
if (n->status != old_status)
|
|
|
|
virtio_notify_config(&n->vdev);
|
2010-09-27 20:41:30 +04:00
|
|
|
|
|
|
|
virtio_net_set_status(&n->vdev, n->vdev.status);
|
2009-01-08 22:46:33 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:20 +03:00
|
|
|
static void virtio_net_reset(VirtIODevice *vdev)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
|
|
|
|
|
|
|
/* Reset back to compatibility mode */
|
|
|
|
n->promisc = 1;
|
|
|
|
n->allmulti = 0;
|
2009-06-06 00:47:18 +04:00
|
|
|
n->alluni = 0;
|
|
|
|
n->nomulti = 0;
|
|
|
|
n->nouni = 0;
|
|
|
|
n->nobcast = 0;
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2009-02-06 01:36:32 +03:00
|
|
|
/* Flush any MAC and VLAN filter table state */
|
2009-02-06 01:36:28 +03:00
|
|
|
n->mac_table.in_use = 0;
|
2009-06-06 00:47:13 +04:00
|
|
|
n->mac_table.first_multi = 0;
|
2009-06-06 00:47:08 +04:00
|
|
|
n->mac_table.multi_overflow = 0;
|
|
|
|
n->mac_table.uni_overflow = 0;
|
2009-02-06 01:36:28 +03:00
|
|
|
memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
|
2013-01-16 13:37:40 +04:00
|
|
|
memcpy(&n->mac[0], &n->nic->conf->macaddr, sizeof(n->mac));
|
2009-02-06 01:36:32 +03:00
|
|
|
memset(n->vlans, 0, MAX_VLAN >> 3);
|
2009-02-06 01:36:20 +03:00
|
|
|
}
|
|
|
|
|
2012-09-24 19:04:21 +04:00
|
|
|
static void peer_test_vnet_hdr(VirtIONet *n)
|
2009-10-22 20:43:45 +04:00
|
|
|
{
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
|
|
|
if (!nc->peer) {
|
2012-09-24 19:04:21 +04:00
|
|
|
return;
|
2013-01-30 15:12:22 +04:00
|
|
|
}
|
2009-10-22 20:43:45 +04:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
if (nc->peer->info->type != NET_CLIENT_OPTIONS_KIND_TAP) {
|
2012-09-24 19:04:21 +04:00
|
|
|
return;
|
2013-01-30 15:12:22 +04:00
|
|
|
}
|
2009-10-22 20:43:45 +04:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
n->has_vnet_hdr = tap_has_vnet_hdr(nc->peer);
|
2012-09-24 19:04:21 +04:00
|
|
|
}
|
2009-10-22 20:43:45 +04:00
|
|
|
|
2012-09-24 19:04:21 +04:00
|
|
|
static int peer_has_vnet_hdr(VirtIONet *n)
|
|
|
|
{
|
2009-10-22 20:43:45 +04:00
|
|
|
return n->has_vnet_hdr;
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:43:50 +04:00
|
|
|
static int peer_has_ufo(VirtIONet *n)
|
|
|
|
{
|
|
|
|
if (!peer_has_vnet_hdr(n))
|
|
|
|
return 0;
|
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
n->has_ufo = tap_has_ufo(qemu_get_queue(n->nic)->peer);
|
2009-10-22 20:43:50 +04:00
|
|
|
|
|
|
|
return n->has_ufo;
|
|
|
|
}
|
|
|
|
|
2012-09-24 23:05:03 +04:00
|
|
|
static void virtio_net_set_mrg_rx_bufs(VirtIONet *n, int mergeable_rx_bufs)
|
|
|
|
{
|
|
|
|
n->mergeable_rx_bufs = mergeable_rx_bufs;
|
|
|
|
|
|
|
|
n->guest_hdr_len = n->mergeable_rx_bufs ?
|
|
|
|
sizeof(struct virtio_net_hdr_mrg_rxbuf) : sizeof(struct virtio_net_hdr);
|
|
|
|
|
|
|
|
if (peer_has_vnet_hdr(n) &&
|
2013-01-30 15:12:22 +04:00
|
|
|
tap_has_vnet_hdr_len(qemu_get_queue(n->nic)->peer, n->guest_hdr_len)) {
|
|
|
|
tap_set_vnet_hdr_len(qemu_get_queue(n->nic)->peer, n->guest_hdr_len);
|
2012-09-24 23:05:03 +04:00
|
|
|
n->host_hdr_len = n->guest_hdr_len;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-01-10 14:52:53 +03:00
|
|
|
static uint32_t virtio_net_get_features(VirtIODevice *vdev, uint32_t features)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
2009-10-22 20:43:45 +04:00
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2010-01-12 21:50:17 +03:00
|
|
|
features |= (1 << VIRTIO_NET_F_MAC);
|
|
|
|
|
2012-09-24 19:04:21 +04:00
|
|
|
if (!peer_has_vnet_hdr(n)) {
|
2010-01-10 14:52:53 +03:00
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_CSUM);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO4);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_HOST_TSO6);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_HOST_ECN);
|
|
|
|
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_GUEST_CSUM);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO4);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_GUEST_TSO6);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_GUEST_ECN);
|
|
|
|
}
|
2009-10-22 20:43:45 +04:00
|
|
|
|
2010-01-10 14:52:53 +03:00
|
|
|
if (!peer_has_vnet_hdr(n) || !peer_has_ufo(n)) {
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_GUEST_UFO);
|
|
|
|
features &= ~(0x1 << VIRTIO_NET_F_HOST_UFO);
|
2009-10-22 20:43:45 +04:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!nc->peer || nc->peer->info->type != NET_CLIENT_OPTIONS_KIND_TAP) {
|
2010-03-17 14:08:42 +03:00
|
|
|
return features;
|
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!tap_get_vhost_net(nc->peer)) {
|
2010-03-17 14:08:42 +03:00
|
|
|
return features;
|
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
return vhost_net_get_features(tap_get_vhost_net(nc->peer), features);
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2009-04-05 21:40:08 +04:00
|
|
|
static uint32_t virtio_net_bad_features(VirtIODevice *vdev)
|
|
|
|
{
|
|
|
|
uint32_t features = 0;
|
|
|
|
|
|
|
|
/* Linux kernel 2.6.25. It understood MAC (as everyone must),
|
|
|
|
* but also these: */
|
|
|
|
features |= (1 << VIRTIO_NET_F_MAC);
|
2009-10-29 18:34:15 +03:00
|
|
|
features |= (1 << VIRTIO_NET_F_CSUM);
|
|
|
|
features |= (1 << VIRTIO_NET_F_HOST_TSO4);
|
|
|
|
features |= (1 << VIRTIO_NET_F_HOST_TSO6);
|
|
|
|
features |= (1 << VIRTIO_NET_F_HOST_ECN);
|
2009-04-05 21:40:08 +04:00
|
|
|
|
2010-01-10 14:52:53 +03:00
|
|
|
return features;
|
2009-04-05 21:40:08 +04:00
|
|
|
}
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
static void virtio_net_set_features(VirtIODevice *vdev, uint32_t features)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2012-09-24 23:05:03 +04:00
|
|
|
virtio_net_set_mrg_rx_bufs(n, !!(features & (1 << VIRTIO_NET_F_MRG_RXBUF)));
|
2009-10-22 20:43:47 +04:00
|
|
|
|
|
|
|
if (n->has_vnet_hdr) {
|
2013-01-30 15:12:22 +04:00
|
|
|
tap_set_offload(nc->peer,
|
2009-10-22 20:43:47 +04:00
|
|
|
(features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
|
|
|
|
(features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
|
|
|
|
(features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
|
2009-10-22 20:43:49 +04:00
|
|
|
(features >> VIRTIO_NET_F_GUEST_ECN) & 1,
|
|
|
|
(features >> VIRTIO_NET_F_GUEST_UFO) & 1);
|
2009-10-22 20:43:47 +04:00
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!nc->peer || nc->peer->info->type != NET_CLIENT_OPTIONS_KIND_TAP) {
|
2010-03-31 22:20:31 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!tap_get_vhost_net(nc->peer)) {
|
2010-03-31 22:20:31 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-01-30 15:12:22 +04:00
|
|
|
vhost_net_ack_features(tap_get_vhost_net(nc->peer), features);
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:20 +03:00
|
|
|
static int virtio_net_handle_rx_mode(VirtIONet *n, uint8_t cmd,
|
2013-01-22 19:44:44 +04:00
|
|
|
struct iovec *iov, unsigned int iov_cnt)
|
2009-02-06 01:36:20 +03:00
|
|
|
{
|
|
|
|
uint8_t on;
|
2013-01-22 19:44:44 +04:00
|
|
|
size_t s;
|
2009-02-06 01:36:20 +03:00
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &on, sizeof(on));
|
|
|
|
if (s != sizeof(on)) {
|
|
|
|
return VIRTIO_NET_ERR;
|
2009-02-06 01:36:20 +03:00
|
|
|
}
|
|
|
|
|
2013-01-22 19:44:46 +04:00
|
|
|
if (cmd == VIRTIO_NET_CTRL_RX_PROMISC) {
|
2009-02-06 01:36:20 +03:00
|
|
|
n->promisc = on;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (cmd == VIRTIO_NET_CTRL_RX_ALLMULTI) {
|
2009-02-06 01:36:20 +03:00
|
|
|
n->allmulti = on;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (cmd == VIRTIO_NET_CTRL_RX_ALLUNI) {
|
2009-06-06 00:47:18 +04:00
|
|
|
n->alluni = on;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (cmd == VIRTIO_NET_CTRL_RX_NOMULTI) {
|
2009-06-06 00:47:18 +04:00
|
|
|
n->nomulti = on;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (cmd == VIRTIO_NET_CTRL_RX_NOUNI) {
|
2009-06-06 00:47:18 +04:00
|
|
|
n->nouni = on;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (cmd == VIRTIO_NET_CTRL_RX_NOBCAST) {
|
2009-06-06 00:47:18 +04:00
|
|
|
n->nobcast = on;
|
2013-01-22 19:44:44 +04:00
|
|
|
} else {
|
2009-02-06 01:36:20 +03:00
|
|
|
return VIRTIO_NET_ERR;
|
2013-01-22 19:44:44 +04:00
|
|
|
}
|
2009-02-06 01:36:20 +03:00
|
|
|
|
|
|
|
return VIRTIO_NET_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:28 +03:00
|
|
|
static int virtio_net_handle_mac(VirtIONet *n, uint8_t cmd,
|
2013-01-22 19:44:44 +04:00
|
|
|
struct iovec *iov, unsigned int iov_cnt)
|
2009-02-06 01:36:28 +03:00
|
|
|
{
|
|
|
|
struct virtio_net_ctrl_mac mac_data;
|
2013-01-22 19:44:44 +04:00
|
|
|
size_t s;
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2013-01-22 19:44:45 +04:00
|
|
|
if (cmd == VIRTIO_NET_CTRL_MAC_ADDR_SET) {
|
|
|
|
if (iov_size(iov, iov_cnt) != sizeof(n->mac)) {
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
}
|
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &n->mac, sizeof(n->mac));
|
|
|
|
assert(s == sizeof(n->mac));
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_format_nic_info_str(qemu_get_queue(n->nic), n->mac);
|
2013-01-22 19:44:45 +04:00
|
|
|
return VIRTIO_NET_OK;
|
|
|
|
}
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
if (cmd != VIRTIO_NET_CTRL_MAC_TABLE_SET) {
|
2009-02-06 01:36:28 +03:00
|
|
|
return VIRTIO_NET_ERR;
|
2013-01-22 19:44:44 +04:00
|
|
|
}
|
2009-02-06 01:36:28 +03:00
|
|
|
|
|
|
|
n->mac_table.in_use = 0;
|
2009-06-06 00:47:13 +04:00
|
|
|
n->mac_table.first_multi = 0;
|
2009-06-06 00:47:08 +04:00
|
|
|
n->mac_table.uni_overflow = 0;
|
|
|
|
n->mac_table.multi_overflow = 0;
|
2009-02-06 01:36:28 +03:00
|
|
|
memset(n->mac_table.macs, 0, MAC_TABLE_ENTRIES * ETH_ALEN);
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
|
|
|
|
sizeof(mac_data.entries));
|
|
|
|
mac_data.entries = ldl_p(&mac_data.entries);
|
|
|
|
if (s != sizeof(mac_data.entries)) {
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
}
|
|
|
|
iov_discard_front(&iov, &iov_cnt, s);
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
if (mac_data.entries * ETH_ALEN > iov_size(iov, iov_cnt)) {
|
2009-02-06 01:36:28 +03:00
|
|
|
return VIRTIO_NET_ERR;
|
2013-01-22 19:44:44 +04:00
|
|
|
}
|
2009-02-06 01:36:28 +03:00
|
|
|
|
|
|
|
if (mac_data.entries <= MAC_TABLE_ENTRIES) {
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, n->mac_table.macs,
|
|
|
|
mac_data.entries * ETH_ALEN);
|
|
|
|
if (s != mac_data.entries * ETH_ALEN) {
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
}
|
2009-02-06 01:36:28 +03:00
|
|
|
n->mac_table.in_use += mac_data.entries;
|
|
|
|
} else {
|
2009-06-06 00:47:08 +04:00
|
|
|
n->mac_table.uni_overflow = 1;
|
2009-02-06 01:36:28 +03:00
|
|
|
}
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
iov_discard_front(&iov, &iov_cnt, mac_data.entries * ETH_ALEN);
|
|
|
|
|
2009-06-06 00:47:13 +04:00
|
|
|
n->mac_table.first_multi = n->mac_table.in_use;
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &mac_data.entries,
|
|
|
|
sizeof(mac_data.entries));
|
|
|
|
mac_data.entries = ldl_p(&mac_data.entries);
|
|
|
|
if (s != sizeof(mac_data.entries)) {
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
iov_discard_front(&iov, &iov_cnt, s);
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
if (mac_data.entries * ETH_ALEN != iov_size(iov, iov_cnt)) {
|
2009-02-06 01:36:28 +03:00
|
|
|
return VIRTIO_NET_ERR;
|
2013-01-22 19:44:44 +04:00
|
|
|
}
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
if (n->mac_table.in_use + mac_data.entries <= MAC_TABLE_ENTRIES) {
|
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, n->mac_table.macs,
|
|
|
|
mac_data.entries * ETH_ALEN);
|
|
|
|
if (s != mac_data.entries * ETH_ALEN) {
|
|
|
|
return VIRTIO_NET_ERR;
|
2009-06-06 00:47:08 +04:00
|
|
|
}
|
2013-01-22 19:44:44 +04:00
|
|
|
n->mac_table.in_use += mac_data.entries;
|
|
|
|
} else {
|
|
|
|
n->mac_table.multi_overflow = 1;
|
2009-02-06 01:36:28 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
return VIRTIO_NET_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:32 +03:00
|
|
|
static int virtio_net_handle_vlan_table(VirtIONet *n, uint8_t cmd,
|
2013-01-22 19:44:44 +04:00
|
|
|
struct iovec *iov, unsigned int iov_cnt)
|
2009-02-06 01:36:32 +03:00
|
|
|
{
|
|
|
|
uint16_t vid;
|
2013-01-22 19:44:44 +04:00
|
|
|
size_t s;
|
2009-02-06 01:36:32 +03:00
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &vid, sizeof(vid));
|
|
|
|
vid = lduw_p(&vid);
|
|
|
|
if (s != sizeof(vid)) {
|
2009-02-06 01:36:32 +03:00
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (vid >= MAX_VLAN)
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
|
|
|
|
if (cmd == VIRTIO_NET_CTRL_VLAN_ADD)
|
|
|
|
n->vlans[vid >> 5] |= (1U << (vid & 0x1f));
|
|
|
|
else if (cmd == VIRTIO_NET_CTRL_VLAN_DEL)
|
|
|
|
n->vlans[vid >> 5] &= ~(1U << (vid & 0x1f));
|
|
|
|
else
|
|
|
|
return VIRTIO_NET_ERR;
|
|
|
|
|
|
|
|
return VIRTIO_NET_OK;
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:16 +03:00
|
|
|
static void virtio_net_handle_ctrl(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
2009-02-06 01:36:20 +03:00
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2009-02-06 01:36:16 +03:00
|
|
|
struct virtio_net_ctrl_hdr ctrl;
|
|
|
|
virtio_net_ctrl_ack status = VIRTIO_NET_ERR;
|
|
|
|
VirtQueueElement elem;
|
2013-01-22 19:44:44 +04:00
|
|
|
size_t s;
|
|
|
|
struct iovec *iov;
|
|
|
|
unsigned int iov_cnt;
|
2009-02-06 01:36:16 +03:00
|
|
|
|
|
|
|
while (virtqueue_pop(vq, &elem)) {
|
2013-01-22 19:44:44 +04:00
|
|
|
if (iov_size(elem.in_sg, elem.in_num) < sizeof(status) ||
|
|
|
|
iov_size(elem.out_sg, elem.out_num) < sizeof(ctrl)) {
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net ctrl missing headers");
|
2009-02-06 01:36:16 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
iov = elem.out_sg;
|
|
|
|
iov_cnt = elem.out_num;
|
|
|
|
s = iov_to_buf(iov, iov_cnt, 0, &ctrl, sizeof(ctrl));
|
|
|
|
iov_discard_front(&iov, &iov_cnt, sizeof(ctrl));
|
|
|
|
if (s != sizeof(ctrl)) {
|
|
|
|
status = VIRTIO_NET_ERR;
|
2013-01-22 19:44:46 +04:00
|
|
|
} else if (ctrl.class == VIRTIO_NET_CTRL_RX) {
|
2013-01-22 19:44:44 +04:00
|
|
|
status = virtio_net_handle_rx_mode(n, ctrl.cmd, iov, iov_cnt);
|
|
|
|
} else if (ctrl.class == VIRTIO_NET_CTRL_MAC) {
|
|
|
|
status = virtio_net_handle_mac(n, ctrl.cmd, iov, iov_cnt);
|
|
|
|
} else if (ctrl.class == VIRTIO_NET_CTRL_VLAN) {
|
|
|
|
status = virtio_net_handle_vlan_table(n, ctrl.cmd, iov, iov_cnt);
|
2009-02-06 01:36:16 +03:00
|
|
|
}
|
|
|
|
|
2013-01-22 19:44:44 +04:00
|
|
|
s = iov_from_buf(elem.in_sg, elem.in_num, 0, &status, sizeof(status));
|
|
|
|
assert(s == sizeof(status));
|
2009-02-06 01:36:16 +03:00
|
|
|
|
|
|
|
virtqueue_push(vq, &elem, sizeof(status));
|
|
|
|
virtio_notify(vdev, vq);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
/* RX */
|
|
|
|
|
|
|
|
static void virtio_net_handle_rx(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
2009-04-29 16:40:02 +04:00
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_flush_queued_packets(qemu_get_queue(n->nic));
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2012-07-24 19:35:13 +04:00
|
|
|
static int virtio_net_can_receive(NetClientState *nc)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
2013-01-30 15:12:23 +04:00
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = virtio_net_get_queue(nc);
|
|
|
|
|
2011-01-10 15:28:40 +03:00
|
|
|
if (!n->vdev.vm_running) {
|
2010-11-22 20:52:19 +03:00
|
|
|
return 0;
|
|
|
|
}
|
2009-10-27 21:16:38 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (!virtio_queue_ready(q->rx_vq) ||
|
|
|
|
!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK)) {
|
2008-12-17 22:13:11 +03:00
|
|
|
return 0;
|
2013-01-30 15:12:38 +04:00
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-10-27 21:16:38 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
static int virtio_net_has_buffers(VirtIONetQueue *q, int bufsize)
|
2009-10-27 21:16:38 +03:00
|
|
|
{
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONet *n = q->n;
|
|
|
|
if (virtio_queue_empty(q->rx_vq) ||
|
2008-12-17 22:13:11 +03:00
|
|
|
(n->mergeable_rx_bufs &&
|
2013-01-30 15:12:38 +04:00
|
|
|
!virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
|
|
|
|
virtio_queue_set_notification(q->rx_vq, 1);
|
2010-02-08 19:10:01 +03:00
|
|
|
|
|
|
|
/* To avoid a race condition where the guest has made some buffers
|
|
|
|
* available after the above check but before notification was
|
|
|
|
* enabled, check for available buffers again.
|
|
|
|
*/
|
2013-01-30 15:12:38 +04:00
|
|
|
if (virtio_queue_empty(q->rx_vq) ||
|
2010-02-08 19:10:01 +03:00
|
|
|
(n->mergeable_rx_bufs &&
|
2013-01-30 15:12:38 +04:00
|
|
|
!virtqueue_avail_bytes(q->rx_vq, bufsize, 0))) {
|
2010-02-08 19:10:01 +03:00
|
|
|
return 0;
|
2013-01-30 15:12:38 +04:00
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtio_queue_set_notification(q->rx_vq, 0);
|
2008-12-17 22:13:11 +03:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:43:48 +04:00
|
|
|
/* dhclient uses AF_PACKET but doesn't pass auxdata to the kernel so
|
|
|
|
* it never finds out that the packets don't have valid checksums. This
|
|
|
|
* causes dhclient to get upset. Fedora's carried a patch for ages to
|
|
|
|
* fix this with Xen but it hasn't appeared in an upstream release of
|
|
|
|
* dhclient yet.
|
|
|
|
*
|
|
|
|
* To avoid breaking existing guests, we catch udp packets and add
|
|
|
|
* checksums. This is terrible but it's better than hacking the guest
|
|
|
|
* kernels.
|
|
|
|
*
|
|
|
|
* N.B. if we introduce a zero-copy API, this operation is no longer free so
|
|
|
|
* we should provide a mechanism to disable it to avoid polluting the host
|
|
|
|
* cache.
|
|
|
|
*/
|
|
|
|
static void work_around_broken_dhclient(struct virtio_net_hdr *hdr,
|
2012-09-24 15:14:16 +04:00
|
|
|
uint8_t *buf, size_t size)
|
2009-10-22 20:43:48 +04:00
|
|
|
{
|
|
|
|
if ((hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) && /* missing csum */
|
|
|
|
(size > 27 && size < 1500) && /* normal sized MTU */
|
|
|
|
(buf[12] == 0x08 && buf[13] == 0x00) && /* ethertype == IPv4 */
|
|
|
|
(buf[23] == 17) && /* ip.protocol == UDP */
|
|
|
|
(buf[34] == 0 && buf[35] == 67)) { /* udp.srcport == bootps */
|
2012-09-24 15:14:16 +04:00
|
|
|
net_checksum_calculate(buf, size);
|
2009-10-22 20:43:48 +04:00
|
|
|
hdr->flags &= ~VIRTIO_NET_HDR_F_NEEDS_CSUM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-24 15:24:17 +04:00
|
|
|
static void receive_header(VirtIONet *n, const struct iovec *iov, int iov_cnt,
|
|
|
|
const void *buf, size_t size)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
2009-10-22 20:43:45 +04:00
|
|
|
if (n->has_vnet_hdr) {
|
2012-09-24 15:14:16 +04:00
|
|
|
/* FIXME this cast is evil */
|
|
|
|
void *wbuf = (void *)buf;
|
2012-09-24 15:24:17 +04:00
|
|
|
work_around_broken_dhclient(wbuf, wbuf + n->host_hdr_len,
|
|
|
|
size - n->host_hdr_len);
|
|
|
|
iov_from_buf(iov, iov_cnt, 0, buf, sizeof(struct virtio_net_hdr));
|
2012-09-24 15:14:16 +04:00
|
|
|
} else {
|
|
|
|
struct virtio_net_hdr hdr = {
|
|
|
|
.flags = 0,
|
|
|
|
.gso_type = VIRTIO_NET_HDR_GSO_NONE
|
|
|
|
};
|
|
|
|
iov_from_buf(iov, iov_cnt, 0, &hdr, sizeof hdr);
|
2009-10-22 20:43:45 +04:00
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:24 +03:00
|
|
|
static int receive_filter(VirtIONet *n, const uint8_t *buf, int size)
|
|
|
|
{
|
|
|
|
static const uint8_t bcast[] = {0xff, 0xff, 0xff, 0xff, 0xff, 0xff};
|
2009-02-06 01:36:32 +03:00
|
|
|
static const uint8_t vlan[] = {0x81, 0x00};
|
2009-02-06 01:36:24 +03:00
|
|
|
uint8_t *ptr = (uint8_t *)buf;
|
2009-02-06 01:36:28 +03:00
|
|
|
int i;
|
2009-02-06 01:36:24 +03:00
|
|
|
|
|
|
|
if (n->promisc)
|
|
|
|
return 1;
|
|
|
|
|
2012-09-24 18:27:27 +04:00
|
|
|
ptr += n->host_hdr_len;
|
2009-10-22 20:43:45 +04:00
|
|
|
|
2009-02-06 01:36:32 +03:00
|
|
|
if (!memcmp(&ptr[12], vlan, sizeof(vlan))) {
|
|
|
|
int vid = be16_to_cpup((uint16_t *)(ptr + 14)) & 0xfff;
|
|
|
|
if (!(n->vlans[vid >> 5] & (1U << (vid & 0x1f))))
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-06-06 00:47:02 +04:00
|
|
|
if (ptr[0] & 1) { // multicast
|
|
|
|
if (!memcmp(ptr, bcast, sizeof(bcast))) {
|
2009-06-06 00:47:18 +04:00
|
|
|
return !n->nobcast;
|
|
|
|
} else if (n->nomulti) {
|
|
|
|
return 0;
|
2009-06-06 00:47:08 +04:00
|
|
|
} else if (n->allmulti || n->mac_table.multi_overflow) {
|
2009-06-06 00:47:02 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2009-06-06 00:47:13 +04:00
|
|
|
|
|
|
|
for (i = n->mac_table.first_multi; i < n->mac_table.in_use; i++) {
|
|
|
|
if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2009-06-06 00:47:02 +04:00
|
|
|
} else { // unicast
|
2009-06-06 00:47:18 +04:00
|
|
|
if (n->nouni) {
|
|
|
|
return 0;
|
|
|
|
} else if (n->alluni || n->mac_table.uni_overflow) {
|
2009-06-06 00:47:08 +04:00
|
|
|
return 1;
|
|
|
|
} else if (!memcmp(ptr, n->mac, ETH_ALEN)) {
|
2009-06-06 00:47:02 +04:00
|
|
|
return 1;
|
|
|
|
}
|
2009-02-06 01:36:24 +03:00
|
|
|
|
2009-06-06 00:47:13 +04:00
|
|
|
for (i = 0; i < n->mac_table.first_multi; i++) {
|
|
|
|
if (!memcmp(ptr, &n->mac_table.macs[i * ETH_ALEN], ETH_ALEN)) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2009-02-06 01:36:28 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:24 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-24 19:35:13 +04:00
|
|
|
static ssize_t virtio_net_receive(NetClientState *nc, const uint8_t *buf, size_t size)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
2013-01-30 15:12:23 +04:00
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = virtio_net_get_queue(nc);
|
2012-09-24 15:17:13 +04:00
|
|
|
struct iovec mhdr_sg[VIRTQUEUE_MAX_SIZE];
|
|
|
|
struct virtio_net_hdr_mrg_rxbuf mhdr;
|
|
|
|
unsigned mhdr_cnt = 0;
|
2012-09-24 15:14:16 +04:00
|
|
|
size_t offset, i, guest_offset;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
if (!virtio_net_can_receive(qemu_get_queue(n->nic))) {
|
2009-10-27 21:16:38 +03:00
|
|
|
return -1;
|
2013-01-30 15:12:22 +04:00
|
|
|
}
|
2009-10-27 21:16:38 +03:00
|
|
|
|
2010-06-06 19:53:10 +04:00
|
|
|
/* hdr_len refers to the header we supply to the guest */
|
2013-01-30 15:12:38 +04:00
|
|
|
if (!virtio_net_has_buffers(q, size + n->guest_hdr_len - n->host_hdr_len)) {
|
2009-04-29 16:40:02 +04:00
|
|
|
return 0;
|
2013-01-30 15:12:38 +04:00
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-02-06 01:36:24 +03:00
|
|
|
if (!receive_filter(n, buf, size))
|
2009-05-18 16:40:55 +04:00
|
|
|
return size;
|
2009-02-06 01:36:24 +03:00
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
offset = i = 0;
|
|
|
|
|
|
|
|
while (offset < size) {
|
|
|
|
VirtQueueElement elem;
|
|
|
|
int len, total;
|
2012-09-24 15:14:16 +04:00
|
|
|
const struct iovec *sg = elem.in_sg;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2010-01-13 13:54:43 +03:00
|
|
|
total = 0;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (virtqueue_pop(q->rx_vq, &elem) == 0) {
|
2008-12-17 22:13:11 +03:00
|
|
|
if (i == 0)
|
2009-05-18 16:40:55 +04:00
|
|
|
return -1;
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net unexpected empty queue: "
|
2010-06-22 17:22:49 +04:00
|
|
|
"i %zd mergeable %d offset %zd, size %zd, "
|
2010-11-15 23:44:37 +03:00
|
|
|
"guest hdr len %zd, host hdr len %zd guest features 0x%x",
|
2010-06-22 17:22:49 +04:00
|
|
|
i, n->mergeable_rx_bufs, offset, size,
|
2012-09-24 14:12:25 +04:00
|
|
|
n->guest_hdr_len, n->host_hdr_len, n->vdev.guest_features);
|
2008-12-17 22:13:11 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (elem.in_num < 1) {
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net receive queue contains no in buffers");
|
2008-12-17 22:13:11 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (i == 0) {
|
2012-09-24 15:26:55 +04:00
|
|
|
assert(offset == 0);
|
2012-09-24 15:17:13 +04:00
|
|
|
if (n->mergeable_rx_bufs) {
|
|
|
|
mhdr_cnt = iov_copy(mhdr_sg, ARRAY_SIZE(mhdr_sg),
|
|
|
|
sg, elem.in_num,
|
|
|
|
offsetof(typeof(mhdr), num_buffers),
|
|
|
|
sizeof(mhdr.num_buffers));
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2012-09-24 15:26:55 +04:00
|
|
|
receive_header(n, sg, elem.in_num, buf, size);
|
|
|
|
offset = n->host_hdr_len;
|
2012-09-24 14:12:25 +04:00
|
|
|
total += n->guest_hdr_len;
|
2012-09-24 15:14:16 +04:00
|
|
|
guest_offset = n->guest_hdr_len;
|
|
|
|
} else {
|
|
|
|
guest_offset = 0;
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/* copy in packet. ugh */
|
2012-09-24 15:14:16 +04:00
|
|
|
len = iov_from_buf(sg, elem.in_num, guest_offset,
|
change iov_* function prototypes to be more appropriate
Reorder arguments to be more natural, readable and
consistent with other iov_* functions, and change
argument names, from:
iov_from_buf(iov, iov_cnt, buf, iov_off, size)
to
iov_from_buf(iov, iov_cnt, offset, buf, bytes)
The result becomes natural English:
copy data to this `iov' vector with `iov_cnt'
elements starting at byte offset `offset'
from memory buffer `buf', processing `bytes'
bytes max.
(Try to read the original prototype this way).
Also change iov_clear() to more general iov_memset()
(it uses memset() internally anyway).
While at it, add comments to the header file
describing what the routines actually does.
The patch only renames argumens in the header, but
keeps old names in the implementation. The next
patch will touch actual code to match.
Now, it might look wrong to pay so much attention
to so small things. But we've so many badly designed
interfaces already so the whole thing becomes rather
confusing or error prone. One example of this is
previous commit and small discussion which emerged
from it, with an outcome that the utility functions
like these aren't well-understdandable, leading to
strange usage cases. That's why I paid quite some
attention to this set of functions and a few
others in subsequent patches.
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
2012-03-11 18:05:12 +04:00
|
|
|
buf + offset, size - offset);
|
2008-12-17 22:13:11 +03:00
|
|
|
total += len;
|
2010-06-22 17:22:49 +04:00
|
|
|
offset += len;
|
|
|
|
/* If buffers can't be merged, at this point we
|
|
|
|
* must have consumed the complete packet.
|
|
|
|
* Otherwise, drop it. */
|
|
|
|
if (!n->mergeable_rx_bufs && offset < size) {
|
|
|
|
#if 0
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net truncated non-mergeable packet: "
|
|
|
|
"i %zd mergeable %d offset %zd, size %zd, "
|
|
|
|
"guest hdr len %zd, host hdr len %zd",
|
|
|
|
i, n->mergeable_rx_bufs,
|
2012-09-24 14:12:25 +04:00
|
|
|
offset, size, n->guest_hdr_len, n->host_hdr_len);
|
2010-06-22 17:22:49 +04:00
|
|
|
#endif
|
|
|
|
return size;
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
|
|
|
/* signal other side */
|
2013-01-30 15:12:38 +04:00
|
|
|
virtqueue_fill(q->rx_vq, &elem, total, i++);
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2012-09-24 15:17:13 +04:00
|
|
|
if (mhdr_cnt) {
|
|
|
|
stw_p(&mhdr.num_buffers, i);
|
|
|
|
iov_from_buf(mhdr_sg, mhdr_cnt,
|
|
|
|
0,
|
|
|
|
&mhdr.num_buffers, sizeof mhdr.num_buffers);
|
2011-01-25 13:55:14 +03:00
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtqueue_flush(q->rx_vq, i);
|
|
|
|
virtio_notify(&n->vdev, q->rx_vq);
|
2009-05-18 16:40:55 +04:00
|
|
|
|
|
|
|
return size;
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
static int32_t virtio_net_flush_tx(VirtIONetQueue *q);
|
2009-06-18 21:21:36 +04:00
|
|
|
|
2012-07-24 19:35:13 +04:00
|
|
|
static void virtio_net_tx_complete(NetClientState *nc, ssize_t len)
|
2009-06-18 21:21:36 +04:00
|
|
|
{
|
2013-01-30 15:12:23 +04:00
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = virtio_net_get_queue(nc);
|
2009-06-18 21:21:36 +04:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtqueue_push(q->tx_vq, &q->async_tx.elem, 0);
|
|
|
|
virtio_notify(&n->vdev, q->tx_vq);
|
2009-06-18 21:21:36 +04:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
q->async_tx.elem.out_num = q->async_tx.len = 0;
|
2009-06-18 21:21:36 +04:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtio_queue_set_notification(q->tx_vq, 1);
|
|
|
|
virtio_net_flush_tx(q);
|
2009-06-18 21:21:36 +04:00
|
|
|
}
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
/* TX */
|
2013-01-30 15:12:38 +04:00
|
|
|
static int32_t virtio_net_flush_tx(VirtIONetQueue *q)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONet *n = q->n;
|
2008-12-17 22:13:11 +03:00
|
|
|
VirtQueueElement elem;
|
2010-09-02 19:00:57 +04:00
|
|
|
int32_t num_packets = 0;
|
|
|
|
if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK)) {
|
|
|
|
return num_packets;
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2011-01-10 15:28:40 +03:00
|
|
|
assert(n->vdev.vm_running);
|
2010-11-22 20:52:30 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (q->async_tx.elem.out_num) {
|
|
|
|
virtio_queue_set_notification(q->tx_vq, 0);
|
2010-09-02 19:00:57 +04:00
|
|
|
return num_packets;
|
2009-06-18 21:21:36 +04:00
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
while (virtqueue_pop(q->tx_vq, &elem)) {
|
2012-09-24 16:52:28 +04:00
|
|
|
ssize_t ret, len;
|
2008-12-17 22:13:11 +03:00
|
|
|
unsigned int out_num = elem.out_num;
|
|
|
|
struct iovec *out_sg = &elem.out_sg[0];
|
2012-09-24 16:52:28 +04:00
|
|
|
struct iovec sg[VIRTQUEUE_MAX_SIZE];
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2012-09-24 16:54:44 +04:00
|
|
|
if (out_num < 1) {
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net header not in first element");
|
2008-12-17 22:13:11 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
2012-09-24 16:52:28 +04:00
|
|
|
/*
|
|
|
|
* If host wants to see the guest header as is, we can
|
|
|
|
* pass it on unchanged. Otherwise, copy just the parts
|
|
|
|
* that host is interested in.
|
|
|
|
*/
|
|
|
|
assert(n->host_hdr_len <= n->guest_hdr_len);
|
|
|
|
if (n->host_hdr_len != n->guest_hdr_len) {
|
|
|
|
unsigned sg_num = iov_copy(sg, ARRAY_SIZE(sg),
|
|
|
|
out_sg, out_num,
|
|
|
|
0, n->host_hdr_len);
|
|
|
|
sg_num += iov_copy(sg + sg_num, ARRAY_SIZE(sg) - sg_num,
|
|
|
|
out_sg, out_num,
|
|
|
|
n->guest_hdr_len, -1);
|
|
|
|
out_num = sg_num;
|
|
|
|
out_sg = sg;
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2012-09-24 16:54:44 +04:00
|
|
|
len = n->guest_hdr_len;
|
2012-09-24 16:52:28 +04:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
ret = qemu_sendv_packet_async(qemu_get_queue(n->nic), out_sg, out_num,
|
2009-06-18 21:21:36 +04:00
|
|
|
virtio_net_tx_complete);
|
|
|
|
if (ret == 0) {
|
2013-01-30 15:12:38 +04:00
|
|
|
virtio_queue_set_notification(q->tx_vq, 0);
|
|
|
|
q->async_tx.elem = elem;
|
|
|
|
q->async_tx.len = len;
|
2010-09-02 19:00:57 +04:00
|
|
|
return -EBUSY;
|
2009-06-18 21:21:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
len += ret;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtqueue_push(q->tx_vq, &elem, 0);
|
|
|
|
virtio_notify(&n->vdev, q->tx_vq);
|
2010-09-02 19:00:57 +04:00
|
|
|
|
|
|
|
if (++num_packets >= n->tx_burst) {
|
|
|
|
break;
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
2010-09-02 19:00:57 +04:00
|
|
|
return num_packets;
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2010-09-02 19:01:10 +04:00
|
|
|
static void virtio_net_handle_tx_timer(VirtIODevice *vdev, VirtQueue *vq)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2010-11-22 20:52:30 +03:00
|
|
|
/* This happens when device was stopped but VCPU wasn't. */
|
2011-01-10 15:28:40 +03:00
|
|
|
if (!n->vdev.vm_running) {
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = 1;
|
2010-11-22 20:52:30 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (q->tx_waiting) {
|
2008-12-17 22:13:11 +03:00
|
|
|
virtio_queue_set_notification(vq, 1);
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_del_timer(q->tx_timer);
|
|
|
|
q->tx_waiting = 0;
|
|
|
|
virtio_net_flush_tx(q);
|
2008-12-17 22:13:11 +03:00
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_mod_timer(q->tx_timer,
|
2011-03-11 18:47:48 +03:00
|
|
|
qemu_get_clock_ns(vm_clock) + n->tx_timeout);
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = 1;
|
2008-12-17 22:13:11 +03:00
|
|
|
virtio_queue_set_notification(vq, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-02 19:01:10 +04:00
|
|
|
static void virtio_net_handle_tx_bh(VirtIODevice *vdev, VirtQueue *vq)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2010-09-02 19:01:10 +04:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (unlikely(q->tx_waiting)) {
|
2010-09-02 19:01:10 +04:00
|
|
|
return;
|
|
|
|
}
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = 1;
|
2010-11-22 20:52:30 +03:00
|
|
|
/* This happens when device was stopped but VCPU wasn't. */
|
2011-01-10 15:28:40 +03:00
|
|
|
if (!n->vdev.vm_running) {
|
2010-11-22 20:52:30 +03:00
|
|
|
return;
|
|
|
|
}
|
2010-09-02 19:01:10 +04:00
|
|
|
virtio_queue_set_notification(vq, 0);
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_bh_schedule(q->tx_bh);
|
2010-09-02 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
static void virtio_net_tx_timer(void *opaque)
|
|
|
|
{
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = opaque;
|
|
|
|
VirtIONet *n = q->n;
|
2011-01-10 15:28:40 +03:00
|
|
|
assert(n->vdev.vm_running);
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = 0;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
|
|
|
/* Just in case the driver is not ready on more */
|
|
|
|
if (!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK))
|
|
|
|
return;
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
virtio_queue_set_notification(q->tx_vq, 1);
|
|
|
|
virtio_net_flush_tx(q);
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
2010-09-02 19:01:10 +04:00
|
|
|
static void virtio_net_tx_bh(void *opaque)
|
|
|
|
{
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = opaque;
|
|
|
|
VirtIONet *n = q->n;
|
2010-09-02 19:01:10 +04:00
|
|
|
int32_t ret;
|
|
|
|
|
2011-01-10 15:28:40 +03:00
|
|
|
assert(n->vdev.vm_running);
|
2010-11-22 20:52:30 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = 0;
|
2010-09-02 19:01:10 +04:00
|
|
|
|
|
|
|
/* Just in case the driver is not ready on more */
|
|
|
|
if (unlikely(!(n->vdev.status & VIRTIO_CONFIG_S_DRIVER_OK)))
|
|
|
|
return;
|
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
ret = virtio_net_flush_tx(q);
|
2010-09-02 19:01:10 +04:00
|
|
|
if (ret == -EBUSY) {
|
|
|
|
return; /* Notification re-enable handled by tx_complete */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If we flush a full burst of packets, assume there are
|
|
|
|
* more coming and immediately reschedule */
|
|
|
|
if (ret >= n->tx_burst) {
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_bh_schedule(q->tx_bh);
|
|
|
|
q->tx_waiting = 1;
|
2010-09-02 19:01:10 +04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If less than a full burst, re-enable notification and flush
|
|
|
|
* anything that may have come in while we weren't looking. If
|
|
|
|
* we find something, assume the guest is still active and reschedule */
|
2013-01-30 15:12:38 +04:00
|
|
|
virtio_queue_set_notification(q->tx_vq, 1);
|
|
|
|
if (virtio_net_flush_tx(q) > 0) {
|
|
|
|
virtio_queue_set_notification(q->tx_vq, 0);
|
|
|
|
qemu_bh_schedule(q->tx_bh);
|
|
|
|
q->tx_waiting = 1;
|
2010-09-02 19:01:10 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
static void virtio_net_save(QEMUFile *f, void *opaque)
|
|
|
|
{
|
|
|
|
VirtIONet *n = opaque;
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2010-09-27 20:41:30 +04:00
|
|
|
/* At this point, backend must be stopped, otherwise
|
|
|
|
* it might keep writing to memory. */
|
|
|
|
assert(!n->vhost_started);
|
2008-12-17 22:13:11 +03:00
|
|
|
virtio_save(&n->vdev, f);
|
|
|
|
|
2009-02-06 01:36:12 +03:00
|
|
|
qemu_put_buffer(f, n->mac, ETH_ALEN);
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_put_be32(f, q->tx_waiting);
|
2009-01-07 20:50:45 +03:00
|
|
|
qemu_put_be32(f, n->mergeable_rx_bufs);
|
2009-02-06 01:36:04 +03:00
|
|
|
qemu_put_be16(f, n->status);
|
2009-06-06 00:46:57 +04:00
|
|
|
qemu_put_byte(f, n->promisc);
|
|
|
|
qemu_put_byte(f, n->allmulti);
|
2009-02-06 01:36:28 +03:00
|
|
|
qemu_put_be32(f, n->mac_table.in_use);
|
|
|
|
qemu_put_buffer(f, n->mac_table.macs, n->mac_table.in_use * ETH_ALEN);
|
2009-02-06 01:36:32 +03:00
|
|
|
qemu_put_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
|
2009-10-22 20:43:45 +04:00
|
|
|
qemu_put_be32(f, n->has_vnet_hdr);
|
2009-06-06 00:47:08 +04:00
|
|
|
qemu_put_byte(f, n->mac_table.multi_overflow);
|
|
|
|
qemu_put_byte(f, n->mac_table.uni_overflow);
|
2009-06-06 00:47:18 +04:00
|
|
|
qemu_put_byte(f, n->alluni);
|
|
|
|
qemu_put_byte(f, n->nomulti);
|
|
|
|
qemu_put_byte(f, n->nouni);
|
|
|
|
qemu_put_byte(f, n->nobcast);
|
2009-10-22 20:43:50 +04:00
|
|
|
qemu_put_byte(f, n->has_ufo);
|
2008-12-17 22:13:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
static int virtio_net_load(QEMUFile *f, void *opaque, int version_id)
|
|
|
|
{
|
|
|
|
VirtIONet *n = opaque;
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2009-06-06 00:47:13 +04:00
|
|
|
int i;
|
2012-05-16 14:21:35 +04:00
|
|
|
int ret;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-02-06 01:36:04 +03:00
|
|
|
if (version_id < 2 || version_id > VIRTIO_NET_VM_VERSION)
|
2008-12-17 22:13:11 +03:00
|
|
|
return -EINVAL;
|
|
|
|
|
2012-05-16 14:21:35 +04:00
|
|
|
ret = virtio_load(&n->vdev, f);
|
|
|
|
if (ret) {
|
|
|
|
return ret;
|
|
|
|
}
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-02-06 01:36:12 +03:00
|
|
|
qemu_get_buffer(f, n->mac, ETH_ALEN);
|
2013-01-30 15:12:38 +04:00
|
|
|
q->tx_waiting = qemu_get_be32(f);
|
2012-09-24 23:05:03 +04:00
|
|
|
|
|
|
|
virtio_net_set_mrg_rx_bufs(n, qemu_get_be32(f));
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-02-06 01:36:04 +03:00
|
|
|
if (version_id >= 3)
|
|
|
|
n->status = qemu_get_be16(f);
|
|
|
|
|
2009-02-06 01:36:20 +03:00
|
|
|
if (version_id >= 4) {
|
2009-06-06 00:46:57 +04:00
|
|
|
if (version_id < 8) {
|
|
|
|
n->promisc = qemu_get_be32(f);
|
|
|
|
n->allmulti = qemu_get_be32(f);
|
|
|
|
} else {
|
|
|
|
n->promisc = qemu_get_byte(f);
|
|
|
|
n->allmulti = qemu_get_byte(f);
|
|
|
|
}
|
2009-02-06 01:36:20 +03:00
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:28 +03:00
|
|
|
if (version_id >= 5) {
|
|
|
|
n->mac_table.in_use = qemu_get_be32(f);
|
|
|
|
/* MAC_TABLE_ENTRIES may be different from the saved image */
|
|
|
|
if (n->mac_table.in_use <= MAC_TABLE_ENTRIES) {
|
|
|
|
qemu_get_buffer(f, n->mac_table.macs,
|
|
|
|
n->mac_table.in_use * ETH_ALEN);
|
|
|
|
} else if (n->mac_table.in_use) {
|
2012-08-29 21:03:09 +04:00
|
|
|
uint8_t *buf = g_malloc0(n->mac_table.in_use);
|
|
|
|
qemu_get_buffer(f, buf, n->mac_table.in_use * ETH_ALEN);
|
|
|
|
g_free(buf);
|
2009-06-06 00:47:08 +04:00
|
|
|
n->mac_table.multi_overflow = n->mac_table.uni_overflow = 1;
|
2009-02-06 01:36:28 +03:00
|
|
|
n->mac_table.in_use = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-02-06 01:36:32 +03:00
|
|
|
if (version_id >= 6)
|
|
|
|
qemu_get_buffer(f, (uint8_t *)n->vlans, MAX_VLAN >> 3);
|
|
|
|
|
2009-10-22 20:43:45 +04:00
|
|
|
if (version_id >= 7) {
|
|
|
|
if (qemu_get_be32(f) && !peer_has_vnet_hdr(n)) {
|
2010-02-18 19:25:24 +03:00
|
|
|
error_report("virtio-net: saved image requires vnet_hdr=on");
|
2009-10-22 20:43:45 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (n->has_vnet_hdr) {
|
2013-01-30 15:12:22 +04:00
|
|
|
tap_set_offload(qemu_get_queue(n->nic)->peer,
|
2010-01-10 14:52:47 +03:00
|
|
|
(n->vdev.guest_features >> VIRTIO_NET_F_GUEST_CSUM) & 1,
|
|
|
|
(n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO4) & 1,
|
|
|
|
(n->vdev.guest_features >> VIRTIO_NET_F_GUEST_TSO6) & 1,
|
|
|
|
(n->vdev.guest_features >> VIRTIO_NET_F_GUEST_ECN) & 1,
|
|
|
|
(n->vdev.guest_features >> VIRTIO_NET_F_GUEST_UFO) & 1);
|
2009-10-22 20:43:45 +04:00
|
|
|
}
|
2009-06-06 00:46:52 +04:00
|
|
|
}
|
|
|
|
|
2009-06-06 00:47:08 +04:00
|
|
|
if (version_id >= 9) {
|
|
|
|
n->mac_table.multi_overflow = qemu_get_byte(f);
|
|
|
|
n->mac_table.uni_overflow = qemu_get_byte(f);
|
|
|
|
}
|
|
|
|
|
2009-06-06 00:47:18 +04:00
|
|
|
if (version_id >= 10) {
|
|
|
|
n->alluni = qemu_get_byte(f);
|
|
|
|
n->nomulti = qemu_get_byte(f);
|
|
|
|
n->nouni = qemu_get_byte(f);
|
|
|
|
n->nobcast = qemu_get_byte(f);
|
|
|
|
}
|
|
|
|
|
2009-10-22 20:43:50 +04:00
|
|
|
if (version_id >= 11) {
|
|
|
|
if (qemu_get_byte(f) && !peer_has_ufo(n)) {
|
2010-02-18 19:25:24 +03:00
|
|
|
error_report("virtio-net: saved image requires TUN_F_UFO support");
|
2009-10-22 20:43:50 +04:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2009-06-06 00:47:13 +04:00
|
|
|
/* Find the first multicast entry in the saved MAC filter */
|
|
|
|
for (i = 0; i < n->mac_table.in_use; i++) {
|
|
|
|
if (n->mac_table.macs[i * ETH_ALEN] & 1) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
n->mac_table.first_multi = i;
|
2012-09-28 06:06:02 +04:00
|
|
|
|
|
|
|
/* nc.link_down can't be migrated, so infer link_down according
|
|
|
|
* to link status bit in n->status */
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_get_queue(n->nic)->link_down = (n->status & VIRTIO_NET_S_LINK_UP) == 0;
|
2012-09-28 06:06:02 +04:00
|
|
|
|
2008-12-17 22:13:11 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-07-24 19:35:13 +04:00
|
|
|
static void virtio_net_cleanup(NetClientState *nc)
|
2009-04-17 21:11:08 +04:00
|
|
|
{
|
2013-01-30 15:12:23 +04:00
|
|
|
VirtIONet *n = qemu_get_nic_opaque(nc);
|
2009-04-17 21:11:08 +04:00
|
|
|
|
2009-11-25 21:49:11 +03:00
|
|
|
n->nic = NULL;
|
2009-04-17 21:11:08 +04:00
|
|
|
}
|
|
|
|
|
2009-11-25 21:49:11 +03:00
|
|
|
static NetClientInfo net_virtio_info = {
|
2012-07-17 18:17:12 +04:00
|
|
|
.type = NET_CLIENT_OPTIONS_KIND_NIC,
|
2009-11-25 21:49:11 +03:00
|
|
|
.size = sizeof(NICState),
|
|
|
|
.can_receive = virtio_net_can_receive,
|
|
|
|
.receive = virtio_net_receive,
|
|
|
|
.cleanup = virtio_net_cleanup,
|
|
|
|
.link_status_changed = virtio_net_set_link_status,
|
|
|
|
};
|
|
|
|
|
2012-12-24 19:37:01 +04:00
|
|
|
static bool virtio_net_guest_notifier_pending(VirtIODevice *vdev, int idx)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
2012-12-24 19:37:01 +04:00
|
|
|
assert(n->vhost_started);
|
2013-01-30 15:12:22 +04:00
|
|
|
return vhost_net_virtqueue_pending(tap_get_vhost_net(nc->peer), idx);
|
2012-12-24 19:37:01 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void virtio_net_guest_notifier_mask(VirtIODevice *vdev, int idx,
|
|
|
|
bool mask)
|
|
|
|
{
|
|
|
|
VirtIONet *n = to_virtio_net(vdev);
|
2013-01-30 15:12:22 +04:00
|
|
|
NetClientState *nc = qemu_get_queue(n->nic);
|
2012-12-24 19:37:01 +04:00
|
|
|
assert(n->vhost_started);
|
2013-01-30 15:12:22 +04:00
|
|
|
vhost_net_virtqueue_mask(tap_get_vhost_net(nc->peer),
|
2012-12-24 19:37:01 +04:00
|
|
|
vdev, idx, mask);
|
|
|
|
}
|
|
|
|
|
2010-09-02 19:00:50 +04:00
|
|
|
VirtIODevice *virtio_net_init(DeviceState *dev, NICConf *conf,
|
|
|
|
virtio_net_conf *net)
|
2008-12-17 22:13:11 +03:00
|
|
|
{
|
|
|
|
VirtIONet *n;
|
|
|
|
|
2009-05-18 17:51:59 +04:00
|
|
|
n = (VirtIONet *)virtio_common_init("virtio-net", VIRTIO_ID_NET,
|
|
|
|
sizeof(struct virtio_net_config),
|
|
|
|
sizeof(VirtIONet));
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2009-02-06 01:36:08 +03:00
|
|
|
n->vdev.get_config = virtio_net_get_config;
|
|
|
|
n->vdev.set_config = virtio_net_set_config;
|
2008-12-17 22:13:11 +03:00
|
|
|
n->vdev.get_features = virtio_net_get_features;
|
|
|
|
n->vdev.set_features = virtio_net_set_features;
|
2009-04-05 21:40:08 +04:00
|
|
|
n->vdev.bad_features = virtio_net_bad_features;
|
2009-02-06 01:36:20 +03:00
|
|
|
n->vdev.reset = virtio_net_reset;
|
2010-03-17 14:08:42 +03:00
|
|
|
n->vdev.set_status = virtio_net_set_status;
|
2012-12-24 19:37:01 +04:00
|
|
|
n->vdev.guest_notifier_mask = virtio_net_guest_notifier_mask;
|
|
|
|
n->vdev.guest_notifier_pending = virtio_net_guest_notifier_pending;
|
2013-01-30 15:12:38 +04:00
|
|
|
n->vq.rx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_rx);
|
|
|
|
n->vq.n = n;
|
2010-09-02 19:01:10 +04:00
|
|
|
|
|
|
|
if (net->tx && strcmp(net->tx, "timer") && strcmp(net->tx, "bh")) {
|
2010-11-15 23:44:37 +03:00
|
|
|
error_report("virtio-net: "
|
|
|
|
"Unknown option tx=%s, valid options: \"timer\" \"bh\"",
|
|
|
|
net->tx);
|
|
|
|
error_report("Defaulting to \"bh\"");
|
2010-09-02 19:01:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
if (net->tx && !strcmp(net->tx, "timer")) {
|
2013-01-30 15:12:38 +04:00
|
|
|
n->vq.tx_vq = virtio_add_queue(&n->vdev, 256,
|
|
|
|
virtio_net_handle_tx_timer);
|
|
|
|
n->vq.tx_timer = qemu_new_timer_ns(vm_clock,
|
|
|
|
virtio_net_tx_timer, &n->vq);
|
2010-09-02 19:01:10 +04:00
|
|
|
n->tx_timeout = net->txtimer;
|
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
n->vq.tx_vq = virtio_add_queue(&n->vdev, 256, virtio_net_handle_tx_bh);
|
|
|
|
n->vq.tx_bh = qemu_bh_new(virtio_net_tx_bh, &n->vq);
|
2010-09-02 19:01:10 +04:00
|
|
|
}
|
2009-06-06 00:47:23 +04:00
|
|
|
n->ctrl_vq = virtio_add_queue(&n->vdev, 64, virtio_net_handle_ctrl);
|
2009-10-21 17:25:35 +04:00
|
|
|
qemu_macaddr_default_if_unset(&conf->macaddr);
|
2009-10-28 17:07:23 +03:00
|
|
|
memcpy(&n->mac[0], &conf->macaddr, sizeof(n->mac));
|
2009-01-08 22:46:33 +03:00
|
|
|
n->status = VIRTIO_NET_S_LINK_UP;
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2011-12-04 21:17:51 +04:00
|
|
|
n->nic = qemu_new_nic(&net_virtio_info, conf, object_get_typename(OBJECT(dev)), dev->id, n);
|
2012-09-24 19:04:21 +04:00
|
|
|
peer_test_vnet_hdr(n);
|
|
|
|
if (peer_has_vnet_hdr(n)) {
|
2013-01-30 15:12:22 +04:00
|
|
|
tap_using_vnet_hdr(qemu_get_queue(n->nic)->peer, true);
|
2012-09-24 19:04:21 +04:00
|
|
|
n->host_hdr_len = sizeof(struct virtio_net_hdr);
|
|
|
|
} else {
|
|
|
|
n->host_hdr_len = 0;
|
|
|
|
}
|
2009-11-25 21:49:11 +03:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_format_nic_info_str(qemu_get_queue(n->nic), conf->macaddr.a);
|
2009-01-07 20:47:15 +03:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
n->vq.tx_waiting = 0;
|
2010-09-02 19:00:57 +04:00
|
|
|
n->tx_burst = net->txburst;
|
2012-09-24 23:05:03 +04:00
|
|
|
virtio_net_set_mrg_rx_bufs(n, 0);
|
2009-02-06 01:36:20 +03:00
|
|
|
n->promisc = 1; /* for compatibility */
|
2008-12-17 22:13:11 +03:00
|
|
|
|
2011-08-21 07:09:37 +04:00
|
|
|
n->mac_table.macs = g_malloc0(MAC_TABLE_ENTRIES * ETH_ALEN);
|
2009-02-06 01:36:28 +03:00
|
|
|
|
2011-08-21 07:09:37 +04:00
|
|
|
n->vlans = g_malloc0(MAX_VLAN >> 3);
|
2009-02-06 01:36:32 +03:00
|
|
|
|
2010-06-25 21:09:28 +04:00
|
|
|
n->qdev = dev;
|
|
|
|
register_savevm(dev, "virtio-net", -1, VIRTIO_NET_VM_VERSION,
|
2008-12-17 22:13:11 +03:00
|
|
|
virtio_net_save, virtio_net_load, n);
|
2009-05-15 01:35:07 +04:00
|
|
|
|
2010-12-08 14:35:05 +03:00
|
|
|
add_boot_device_path(conf->bootindex, dev, "/ethernet-phy@0");
|
|
|
|
|
2009-05-18 17:51:59 +04:00
|
|
|
return &n->vdev;
|
2009-05-15 01:35:07 +04:00
|
|
|
}
|
2009-10-21 17:25:35 +04:00
|
|
|
|
|
|
|
void virtio_net_exit(VirtIODevice *vdev)
|
|
|
|
{
|
|
|
|
VirtIONet *n = DO_UPCAST(VirtIONet, vdev, vdev);
|
2013-01-30 15:12:38 +04:00
|
|
|
VirtIONetQueue *q = &n->vq;
|
2010-03-17 14:08:42 +03:00
|
|
|
|
2010-09-27 20:41:30 +04:00
|
|
|
/* This will stop vhost backend if appropriate. */
|
|
|
|
virtio_net_set_status(vdev, 0);
|
2009-10-21 17:25:35 +04:00
|
|
|
|
2013-01-30 15:12:22 +04:00
|
|
|
qemu_purge_queued_packets(qemu_get_queue(n->nic));
|
2009-10-21 17:25:35 +04:00
|
|
|
|
2010-06-25 21:09:28 +04:00
|
|
|
unregister_savevm(n->qdev, "virtio-net", n);
|
2009-10-21 17:25:35 +04:00
|
|
|
|
2011-08-21 07:09:37 +04:00
|
|
|
g_free(n->mac_table.macs);
|
|
|
|
g_free(n->vlans);
|
2009-10-21 17:25:35 +04:00
|
|
|
|
2013-01-30 15:12:38 +04:00
|
|
|
if (q->tx_timer) {
|
|
|
|
qemu_del_timer(q->tx_timer);
|
|
|
|
qemu_free_timer(q->tx_timer);
|
2010-09-02 19:01:10 +04:00
|
|
|
} else {
|
2013-01-30 15:12:38 +04:00
|
|
|
qemu_bh_delete(q->tx_bh);
|
2010-09-02 19:01:10 +04:00
|
|
|
}
|
2009-10-21 17:25:35 +04:00
|
|
|
|
2013-01-30 15:12:24 +04:00
|
|
|
qemu_del_nic(n->nic);
|
2011-07-27 12:30:31 +04:00
|
|
|
virtio_cleanup(&n->vdev);
|
2009-10-21 17:25:35 +04:00
|
|
|
}
|