mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-21 13:08:42 +00:00
There was some secure coding style violations of virtio net and tmp, this patch add some NULL check to fix these violations. Tracked-On: #6690 Signed-off-by: Chenli Wei <chenli.wei@linux.intel.com>
1275 lines
30 KiB
C
1275 lines
30 KiB
C
/*-
|
|
* Copyright (c) 2011 NetApp, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY NETAPP, INC ``AS IS'' AND
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL NETAPP, INC OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
* SUCH DAMAGE.
|
|
*
|
|
* $FreeBSD$
|
|
*/
|
|
|
|
#include <sys/uio.h>
|
|
#include <net/ethernet.h>
|
|
#include <fcntl.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <unistd.h>
|
|
#include <openssl/md5.h>
|
|
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
|
#include <openssl/evp.h>
|
|
#endif
|
|
#include <pthread.h>
|
|
#include <sys/ioctl.h>
|
|
#include <sys/errno.h>
|
|
#include <net/if.h>
|
|
#include <linux/if_tun.h>
|
|
#include <sys/socket.h>
|
|
#include <linux/vhost.h>
|
|
|
|
#include "dm.h"
|
|
#include "pci_core.h"
|
|
#include "mevent.h"
|
|
#include "virtio.h"
|
|
#include "vhost.h"
|
|
#include "dm_string.h"
|
|
|
|
#define VIRTIO_NET_RINGSZ 1024
|
|
#define VIRTIO_NET_MAXSEGS 256
|
|
|
|
/*
|
|
* Host capabilities. Note that we only offer a few of these.
|
|
*/
|
|
#define VIRTIO_NET_F_CSUM (1 << 0) /* host handles partial cksum */
|
|
#define VIRTIO_NET_F_GUEST_CSUM (1 << 1) /* guest handles partial cksum */
|
|
#define VIRTIO_NET_F_MAC (1 << 5) /* host supplies MAC */
|
|
#define VIRTIO_NET_F_GSO_DEPREC (1 << 6) /* deprecated: host handles GSO */
|
|
#define VIRTIO_NET_F_GUEST_TSO4 (1 << 7) /* guest can rcv TSOv4 */
|
|
#define VIRTIO_NET_F_GUEST_TSO6 (1 << 8) /* guest can rcv TSOv6 */
|
|
#define VIRTIO_NET_F_GUEST_ECN (1 << 9) /* guest can rcv TSO with ECN */
|
|
#define VIRTIO_NET_F_GUEST_UFO (1 << 10) /* guest can rcv UFO */
|
|
#define VIRTIO_NET_F_HOST_TSO4 (1 << 11) /* host can rcv TSOv4 */
|
|
#define VIRTIO_NET_F_HOST_TSO6 (1 << 12) /* host can rcv TSOv6 */
|
|
#define VIRTIO_NET_F_HOST_ECN (1 << 13) /* host can rcv TSO with ECN */
|
|
#define VIRTIO_NET_F_HOST_UFO (1 << 14) /* host can rcv UFO */
|
|
#define VIRTIO_NET_F_MRG_RXBUF (1 << 15) /* host can merge RX buffers */
|
|
#define VIRTIO_NET_F_STATUS (1 << 16) /* config status field available */
|
|
#define VIRTIO_NET_F_CTRL_VQ (1 << 17) /* control channel available */
|
|
#define VIRTIO_NET_F_CTRL_RX (1 << 18) /* control channel RX mode support */
|
|
#define VIRTIO_NET_F_CTRL_VLAN (1 << 19) /* control channel VLAN filtering */
|
|
#define VIRTIO_NET_F_GUEST_ANNOUNCE \
|
|
(1 << 21) /* guest can send gratuitous pkts */
|
|
|
|
#define VIRTIO_NET_S_HOSTCAPS \
|
|
(VIRTIO_NET_F_MAC | VIRTIO_NET_F_MRG_RXBUF | VIRTIO_NET_F_STATUS | \
|
|
(1 << VIRTIO_F_NOTIFY_ON_EMPTY) | (1 << VIRTIO_RING_F_INDIRECT_DESC))
|
|
|
|
#define VIRTIO_NET_S_VHOSTCAPS \
|
|
((1 << VIRTIO_F_NOTIFY_ON_EMPTY) | (1 << VIRTIO_RING_F_INDIRECT_DESC) | \
|
|
(1 << VIRTIO_RING_F_EVENT_IDX) | VIRTIO_NET_F_MRG_RXBUF | \
|
|
(1UL << VIRTIO_F_VERSION_1))
|
|
|
|
/* is address mcast/bcast? */
|
|
#define ETHER_IS_MULTICAST(addr) (*(addr) & 0x01)
|
|
|
|
/*
|
|
* PCI config-space "registers"
|
|
*/
|
|
struct virtio_net_config {
|
|
uint8_t mac[6];
|
|
uint16_t status;
|
|
} __attribute__((packed));
|
|
|
|
/*
|
|
* Queue definitions.
|
|
*/
|
|
#define VIRTIO_NET_RXQ 0
|
|
#define VIRTIO_NET_TXQ 1
|
|
#define VIRTIO_NET_CTLQ 2 /* NB: not yet supported */
|
|
|
|
#define VIRTIO_NET_MAXQ 3
|
|
|
|
/*
|
|
* Fixed network header size
|
|
*/
|
|
struct virtio_net_rxhdr {
|
|
uint8_t vrh_flags;
|
|
uint8_t vrh_gso_type;
|
|
uint16_t vrh_hdr_len;
|
|
uint16_t vrh_gso_size;
|
|
uint16_t vrh_csum_start;
|
|
uint16_t vrh_csum_offset;
|
|
uint16_t vrh_bufs;
|
|
} __attribute__((packed));
|
|
|
|
/*
|
|
* Debug printf
|
|
*/
|
|
static int virtio_net_debug;
|
|
#define DPRINTF(params) do { if (virtio_net_debug) pr_dbg params; } while (0)
|
|
#define WPRINTF(params) (pr_err params)
|
|
|
|
/*
|
|
* vhost device struct
|
|
*/
|
|
struct vhost_net {
|
|
struct vhost_dev vdev;
|
|
struct vhost_vq vqs[VIRTIO_NET_MAXQ - 1];
|
|
int tapfd;
|
|
bool vhost_started;
|
|
};
|
|
|
|
/*
|
|
* Per-device struct
|
|
*/
|
|
struct virtio_net {
|
|
struct virtio_base base;
|
|
struct virtio_vq_info queues[VIRTIO_NET_MAXQ - 1];
|
|
pthread_mutex_t mtx;
|
|
struct mevent *mevp;
|
|
|
|
int tapfd;
|
|
|
|
int rx_ready;
|
|
|
|
volatile int resetting; /* set and checked outside lock */
|
|
volatile int closing; /* stop the tx i/o thread */
|
|
|
|
uint64_t features; /* negotiated features */
|
|
|
|
struct virtio_net_config config;
|
|
|
|
pthread_mutex_t rx_mtx;
|
|
int rx_in_progress;
|
|
int rx_vhdrlen;
|
|
int rx_merge; /* merged rx bufs in use */
|
|
pthread_t tx_tid;
|
|
pthread_mutex_t tx_mtx;
|
|
pthread_cond_t tx_cond;
|
|
int tx_in_progress;
|
|
|
|
void (*virtio_net_rx)(struct virtio_net *net);
|
|
void (*virtio_net_tx)(struct virtio_net *net, struct iovec *iov,
|
|
int iovcnt, int len);
|
|
|
|
struct vhost_net *vhost_net;
|
|
bool use_vhost;
|
|
};
|
|
|
|
static void virtio_net_reset(void *vdev);
|
|
static void virtio_net_tx_stop(struct virtio_net *net);
|
|
static int virtio_net_cfgread(void *vdev, int offset, int size,
|
|
uint32_t *retval);
|
|
static int virtio_net_cfgwrite(void *vdev, int offset, int size,
|
|
uint32_t value);
|
|
static void virtio_net_neg_features(void *vdev, uint64_t negotiated_features);
|
|
static void virtio_net_set_status(void *vdev, uint64_t status);
|
|
static void virtio_net_teardown(void *param);
|
|
static struct vhost_net *vhost_net_init(struct virtio_base *base, int vhostfd,
|
|
int tapfd, int vq_idx);
|
|
static int vhost_net_deinit(struct vhost_net *vhost_net);
|
|
static int vhost_net_start(struct vhost_net *vhost_net);
|
|
static int vhost_net_stop(struct vhost_net *vhost_net);
|
|
|
|
static struct virtio_ops virtio_net_ops = {
|
|
"vtnet", /* our name */
|
|
VIRTIO_NET_MAXQ - 1, /* we currently support 2 virtqueues */
|
|
sizeof(struct virtio_net_config), /* config reg size */
|
|
virtio_net_reset, /* reset */
|
|
NULL, /* device-wide qnotify -- not used */
|
|
virtio_net_cfgread, /* read PCI config */
|
|
virtio_net_cfgwrite, /* write PCI config */
|
|
virtio_net_neg_features, /* apply negotiated features */
|
|
virtio_net_set_status, /* called on guest set status */
|
|
};
|
|
|
|
static int
|
|
vhost_kernel_net_set_backend(struct vhost_dev *vdev,
|
|
struct vhost_vring_file *file)
|
|
{
|
|
return vhost_kernel_ioctl(vdev, VHOST_NET_SET_BACKEND, file);
|
|
}
|
|
|
|
int
|
|
vhost_net_set_backend(struct vhost_dev *vdev, int backend_fd)
|
|
{
|
|
struct vhost_vring_file file;
|
|
int rc, i;
|
|
|
|
file.fd = backend_fd;
|
|
for (i = 0; i < vdev->nvqs; i++) {
|
|
file.index = i;
|
|
rc = vhost_kernel_net_set_backend(vdev, &file);
|
|
if (rc < 0)
|
|
goto fail;
|
|
}
|
|
|
|
return 0;
|
|
fail:
|
|
file.fd = -1;
|
|
while (--i >= 0) {
|
|
file.index = i;
|
|
vhost_kernel_net_set_backend(vdev, &file);
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
static struct ether_addr *
|
|
ether_aton(const char *a, struct ether_addr *e)
|
|
{
|
|
unsigned int o0, o1, o2, o3, o4, o5;
|
|
char *cp;
|
|
|
|
if(!dm_strtoui(a, &cp, 16, &o0) &&
|
|
*cp == ':' &&
|
|
!dm_strtoui(cp + 1, &cp, 16, &o1) &&
|
|
*cp == ':' &&
|
|
!dm_strtoui(cp + 1, &cp, 16, &o2) &&
|
|
*cp == ':' &&
|
|
!dm_strtoui(cp + 1, &cp, 16, &o3) &&
|
|
*cp == ':' &&
|
|
!dm_strtoui(cp + 1, &cp, 16, &o4) &&
|
|
*cp == ':' &&
|
|
!dm_strtoui(cp + 1, &cp, 16, &o5)) {
|
|
e->ether_addr_octet[0] = o0;
|
|
e->ether_addr_octet[1] = o1;
|
|
e->ether_addr_octet[2] = o2;
|
|
e->ether_addr_octet[3] = o3;
|
|
e->ether_addr_octet[4] = o4;
|
|
e->ether_addr_octet[5] = o5;
|
|
}
|
|
else {
|
|
return NULL;
|
|
}
|
|
|
|
return e;
|
|
}
|
|
|
|
/*
|
|
* If the transmit thread is active then stall until it is done.
|
|
*/
|
|
static void
|
|
virtio_net_txwait(struct virtio_net *net)
|
|
{
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
while (net->tx_in_progress) {
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
usleep(10000);
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
}
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
}
|
|
|
|
/*
|
|
* If the receive thread is active then stall until it is done.
|
|
*/
|
|
static void
|
|
virtio_net_rxwait(struct virtio_net *net)
|
|
{
|
|
pthread_mutex_lock(&net->rx_mtx);
|
|
while (net->rx_in_progress) {
|
|
pthread_mutex_unlock(&net->rx_mtx);
|
|
usleep(10000);
|
|
pthread_mutex_lock(&net->rx_mtx);
|
|
}
|
|
pthread_mutex_unlock(&net->rx_mtx);
|
|
}
|
|
|
|
static void
|
|
virtio_net_reset(void *vdev)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
|
|
DPRINTF(("vtnet: device reset requested !\n"));
|
|
|
|
net->resetting = 1;
|
|
|
|
/*
|
|
* Wait for the transmit and receive threads to finish their
|
|
* processing.
|
|
*/
|
|
virtio_net_txwait(net);
|
|
virtio_net_rxwait(net);
|
|
|
|
net->rx_ready = 0;
|
|
net->rx_merge = 1;
|
|
net->rx_vhdrlen = sizeof(struct virtio_net_rxhdr);
|
|
|
|
/* now reset rings, MSI-X vectors, and negotiated capabilities */
|
|
virtio_reset_dev(&net->base);
|
|
|
|
net->resetting = 0;
|
|
net->closing = 0;
|
|
}
|
|
|
|
/*
|
|
* Send signal to tx I/O thread and wait till it exits
|
|
*/
|
|
static void
|
|
virtio_net_tx_stop(struct virtio_net *net)
|
|
{
|
|
void *jval;
|
|
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
net->closing = 1;
|
|
pthread_cond_broadcast(&net->tx_cond);
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
|
|
pthread_join(net->tx_tid, &jval);
|
|
}
|
|
|
|
/*
|
|
* Called to send a buffer chain out to the tap device
|
|
*/
|
|
static void
|
|
virtio_net_tap_tx(struct virtio_net *net, struct iovec *iov, int iovcnt,
|
|
int len)
|
|
{
|
|
static char pad[60]; /* all zero bytes */
|
|
ssize_t ret;
|
|
|
|
if (net->tapfd == -1)
|
|
return;
|
|
|
|
/*
|
|
* If the length is < 60, pad out to that and add the
|
|
* extra zero'd segment to the iov. It is guaranteed that
|
|
* there is always an extra iov available by the caller.
|
|
*/
|
|
if (len < 60) {
|
|
iov[iovcnt].iov_base = pad;
|
|
iov[iovcnt].iov_len = 60 - len;
|
|
iovcnt++;
|
|
}
|
|
ret = writev(net->tapfd, iov, iovcnt);
|
|
(void)ret; /*avoid compiler warning*/
|
|
}
|
|
|
|
/*
|
|
* Called when there is read activity on the tap file descriptor.
|
|
* Each buffer posted by the guest is assumed to be able to contain
|
|
* an entire ethernet frame + rx header.
|
|
* MP note: the dummybuf is only used for discarding frames, so there
|
|
* is no need for it to be per-vtnet or locked.
|
|
*/
|
|
static uint8_t dummybuf[2048];
|
|
|
|
static inline struct iovec *
|
|
rx_iov_trim(struct iovec *iov, int *niov, int tlen)
|
|
{
|
|
struct iovec *riov;
|
|
|
|
/* XXX short-cut: assume first segment is >= tlen */
|
|
if (iov[0].iov_len < tlen) {
|
|
WPRINTF(("vtnet: rx_iov_trim: iov_len=%lu, tlen=%d\n", iov[0].iov_len, tlen));
|
|
return NULL;
|
|
}
|
|
|
|
iov[0].iov_len -= tlen;
|
|
if (iov[0].iov_len == 0) {
|
|
if (*niov <= 1) {
|
|
WPRINTF(("vtnet: rx_iov_trim: *niov=%d\n", *niov));
|
|
return NULL;
|
|
}
|
|
*niov -= 1;
|
|
riov = &iov[1];
|
|
} else {
|
|
iov[0].iov_base = (void *)((uintptr_t)iov[0].iov_base + tlen);
|
|
riov = &iov[0];
|
|
}
|
|
|
|
return riov;
|
|
}
|
|
|
|
static void
|
|
virtio_net_tap_rx(struct virtio_net *net)
|
|
{
|
|
struct iovec iov[VIRTIO_NET_MAXSEGS], *riov;
|
|
struct virtio_vq_info *vq;
|
|
void *vrx;
|
|
int len, n;
|
|
uint16_t idx;
|
|
ssize_t ret;
|
|
|
|
/*
|
|
* Should never be called without a valid tap fd
|
|
*/
|
|
if (net->tapfd == -1) {
|
|
WPRINTF(("vtnet: tapfd == -1\n"));
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* But, will be called when the rx ring hasn't yet
|
|
* been set up or the guest is resetting the device.
|
|
*/
|
|
if (!net->rx_ready || net->resetting) {
|
|
/*
|
|
* Drop the packet and try later.
|
|
*/
|
|
ret = read(net->tapfd, dummybuf, sizeof(dummybuf));
|
|
(void)ret; /*avoid compiler warning*/
|
|
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* Check for available rx buffers
|
|
*/
|
|
vq = &net->queues[VIRTIO_NET_RXQ];
|
|
if (!vq_has_descs(vq)) {
|
|
/*
|
|
* Drop the packet and try later. Interrupt on
|
|
* empty, if that's negotiated.
|
|
*/
|
|
ret = read(net->tapfd, dummybuf, sizeof(dummybuf));
|
|
(void)ret; /*avoid compiler warning*/
|
|
|
|
vq_endchains(vq, 1);
|
|
return;
|
|
}
|
|
|
|
do {
|
|
/*
|
|
* Get descriptor chain.
|
|
*/
|
|
n = vq_getchain(vq, &idx, iov, VIRTIO_NET_MAXSEGS, NULL);
|
|
if (n < 1 || n > VIRTIO_NET_MAXSEGS) {
|
|
WPRINTF(("vtnet: virtio_net_tap_rx: vq_getchain = %d\n", n));
|
|
return;
|
|
}
|
|
/*
|
|
* Get a pointer to the rx header, and use the
|
|
* data immediately following it for the packet buffer.
|
|
*/
|
|
vrx = iov[0].iov_base;
|
|
riov = rx_iov_trim(iov, &n, net->rx_vhdrlen);
|
|
if (riov == NULL)
|
|
return;
|
|
|
|
len = readv(net->tapfd, riov, n);
|
|
|
|
if (len < 0 && errno == EWOULDBLOCK) {
|
|
/*
|
|
* No more packets, but still some avail ring
|
|
* entries. Interrupt if needed/appropriate.
|
|
*/
|
|
vq_retchain(vq);
|
|
vq_endchains(vq, 0);
|
|
return;
|
|
}
|
|
|
|
/*
|
|
* The only valid field in the rx packet header is the
|
|
* number of buffers if merged rx bufs were negotiated.
|
|
*/
|
|
memset(vrx, 0, net->rx_vhdrlen);
|
|
|
|
if (net->rx_merge) {
|
|
struct virtio_net_rxhdr *vrxh;
|
|
|
|
vrxh = vrx;
|
|
vrxh->vrh_bufs = 1;
|
|
}
|
|
|
|
/*
|
|
* Release this chain and handle more chains.
|
|
*/
|
|
vq_relchain(vq, idx, len + net->rx_vhdrlen);
|
|
} while (vq_has_descs(vq));
|
|
|
|
/* Interrupt if needed, including for NOTIFY_ON_EMPTY. */
|
|
vq_endchains(vq, 1);
|
|
}
|
|
|
|
static void
|
|
virtio_net_rx_callback(int fd, enum ev_type type, void *param)
|
|
{
|
|
struct virtio_net *net = param;
|
|
|
|
pthread_mutex_lock(&net->rx_mtx);
|
|
net->rx_in_progress = 1;
|
|
net->virtio_net_rx(net);
|
|
net->rx_in_progress = 0;
|
|
pthread_mutex_unlock(&net->rx_mtx);
|
|
|
|
}
|
|
|
|
static void
|
|
virtio_net_ping_rxq(void *vdev, struct virtio_vq_info *vq)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
|
|
/*
|
|
* A qnotify means that the rx process can now begin
|
|
*/
|
|
if (net->rx_ready == 0) {
|
|
net->rx_ready = 1;
|
|
if (vq->used != NULL) {
|
|
vq->used->flags |= VRING_USED_F_NO_NOTIFY;
|
|
}
|
|
}
|
|
}
|
|
|
|
static void
|
|
virtio_net_proctx(struct virtio_net *net, struct virtio_vq_info *vq)
|
|
{
|
|
struct iovec iov[VIRTIO_NET_MAXSEGS + 1];
|
|
int i, n;
|
|
int plen, tlen;
|
|
uint16_t idx;
|
|
|
|
/*
|
|
* Obtain chain of descriptors. The first one is
|
|
* really the header descriptor, so we need to sum
|
|
* up two lengths: packet length and transfer length.
|
|
*/
|
|
n = vq_getchain(vq, &idx, iov, VIRTIO_NET_MAXSEGS, NULL);
|
|
if (n < 1 || n > VIRTIO_NET_MAXSEGS) {
|
|
WPRINTF(("vtnet: virtio_net_proctx: vq_getchain = %d\n", n));
|
|
return;
|
|
}
|
|
plen = 0;
|
|
tlen = iov[0].iov_len;
|
|
for (i = 1; i < n; i++) {
|
|
plen += iov[i].iov_len;
|
|
tlen += iov[i].iov_len;
|
|
}
|
|
|
|
DPRINTF(("virtio: packet send, %d bytes, %d segs\n\r", plen, n));
|
|
net->virtio_net_tx(net, &iov[1], n - 1, plen);
|
|
|
|
/* chain is processed, release it and set tlen */
|
|
vq_relchain(vq, idx, tlen);
|
|
}
|
|
|
|
static void
|
|
virtio_net_ping_txq(void *vdev, struct virtio_vq_info *vq)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
|
|
/*
|
|
* Any ring entries to process?
|
|
*/
|
|
if (!vq_has_descs(vq))
|
|
return;
|
|
|
|
/* Signal the tx thread for processing */
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
vq->used->flags |= VRING_USED_F_NO_NOTIFY;
|
|
if (net->tx_in_progress == 0)
|
|
pthread_cond_signal(&net->tx_cond);
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
}
|
|
|
|
/*
|
|
* Thread which will handle processing of TX desc
|
|
*/
|
|
static void *
|
|
virtio_net_tx_thread(void *param)
|
|
{
|
|
struct virtio_net *net = param;
|
|
struct virtio_vq_info *vq = &net->queues[VIRTIO_NET_TXQ];
|
|
|
|
/*
|
|
* Let us wait till the tx queue pointers get initialised &
|
|
* first tx signaled
|
|
*/
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
|
|
while (!net->closing && !vq_ring_ready(vq))
|
|
pthread_cond_wait(&net->tx_cond, &net->tx_mtx);
|
|
|
|
if (net->closing) {
|
|
WPRINTF(("vtnet tx thread closing...\n"));
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
return NULL;
|
|
}
|
|
|
|
for (;;) {
|
|
/* note - tx mutex is locked here */
|
|
net->tx_in_progress = 0;
|
|
|
|
/*
|
|
* Checking the avail ring here serves two purposes:
|
|
* - avoid vring processing due to spurious wakeups
|
|
* - catch missing notifications before acquiring tx_mtx
|
|
*/
|
|
while (net->resetting || !vq_has_descs(vq)) {
|
|
vq_clear_used_ring_flags(&net->base, vq);
|
|
/* memory barrier */
|
|
mb();
|
|
if (!net->resetting && vq_has_descs(vq))
|
|
break;
|
|
|
|
pthread_cond_wait(&net->tx_cond, &net->tx_mtx);
|
|
|
|
if (net->closing) {
|
|
WPRINTF(("vtnet tx thread closing...\n"));
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
return NULL;
|
|
}
|
|
}
|
|
|
|
vq->used->flags |= VRING_USED_F_NO_NOTIFY;
|
|
net->tx_in_progress = 1;
|
|
pthread_mutex_unlock(&net->tx_mtx);
|
|
|
|
do {
|
|
/*
|
|
* Run through entries, placing them into
|
|
* iovecs and sending when an end-of-packet
|
|
* is found
|
|
*/
|
|
virtio_net_proctx(net, vq);
|
|
} while (vq_has_descs(vq));
|
|
|
|
/*
|
|
* Generate an interrupt if needed.
|
|
*/
|
|
vq_endchains(vq, 1);
|
|
|
|
pthread_mutex_lock(&net->tx_mtx);
|
|
}
|
|
}
|
|
|
|
#ifdef notyet
|
|
static void
|
|
virtio_net_ping_ctlq(void *vdev, struct virtio_vq_info *vq)
|
|
{
|
|
DPRINTF(("vtnet: control qnotify!\n\r"));
|
|
}
|
|
#endif
|
|
|
|
static int
|
|
virtio_net_parsemac(char *mac_str, uint8_t *mac_addr)
|
|
{
|
|
struct ether_addr ether_addr;
|
|
struct ether_addr *ea;
|
|
char *tmpstr;
|
|
char zero_addr[ETHER_ADDR_LEN] = { 0, 0, 0, 0, 0, 0 };
|
|
|
|
tmpstr = strsep(&mac_str, "=");
|
|
ea = ðer_addr;
|
|
if ((mac_str != NULL) && (!strcmp(tmpstr, "mac"))) {
|
|
ea = ether_aton(mac_str, ea);
|
|
|
|
if (ea == NULL || ETHER_IS_MULTICAST(ea->ether_addr_octet) ||
|
|
memcmp(ea->ether_addr_octet, zero_addr, ETHER_ADDR_LEN)
|
|
== 0) {
|
|
pr_err("Invalid MAC %s\n", mac_str);
|
|
return -1;
|
|
}
|
|
memcpy(mac_addr, ea->ether_addr_octet, ETHER_ADDR_LEN);
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
virtio_net_get_ifindex(char *devname)
|
|
{
|
|
struct ifreq ifr;
|
|
int fd;
|
|
int ifindex = -1;
|
|
|
|
fd = socket(AF_UNIX, SOCK_DGRAM, 0);
|
|
if (fd < 0) {
|
|
WPRINTF(("%s: Unable to open control socket", __func__));
|
|
return ifindex;
|
|
}
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
strncpy(ifr.ifr_name, devname, IFNAMSIZ);
|
|
ifr.ifr_name[IFNAMSIZ - 1] = '\0';
|
|
|
|
if (ioctl(fd, SIOCGIFINDEX, &ifr) < 0) {
|
|
WPRINTF(("%s: Unable to get interface index on this platform\n", __func__));
|
|
} else {
|
|
ifindex = ifr.ifr_ifindex;
|
|
}
|
|
|
|
close(fd);
|
|
return ifindex;
|
|
}
|
|
|
|
static bool
|
|
virtio_net_is_macvtap(char *devname, int *ifindex)
|
|
{
|
|
char tempbuf[IFNAMSIZ];
|
|
int rc;
|
|
int ifidx;
|
|
|
|
ifidx = virtio_net_get_ifindex(devname);
|
|
if (ifidx < 0)
|
|
return false;
|
|
|
|
/*check if the char device exists*/
|
|
rc = snprintf(tempbuf, IFNAMSIZ, "/dev/tap%d", ifidx);
|
|
if (rc < 0 || rc >= IFNAMSIZ) {
|
|
WPRINTF(("Failed to check interface name %s\n", tempbuf));
|
|
return false;
|
|
}
|
|
|
|
if (access(tempbuf, F_OK) != 0)
|
|
return false;
|
|
|
|
*ifindex = ifidx;
|
|
return true;
|
|
}
|
|
|
|
static int
|
|
virtio_net_tap_open(char *devname)
|
|
{
|
|
char tbuf[IFNAMSIZ];
|
|
int tunfd, rc, macvtap_index;
|
|
struct ifreq ifr;
|
|
|
|
/*Check if tun/tap or macvtap interface is used */
|
|
if (virtio_net_is_macvtap(devname, &macvtap_index)) {
|
|
rc = snprintf(tbuf, IFNAMSIZ, "/dev/tap%d", macvtap_index);
|
|
} else {
|
|
rc = snprintf(tbuf, IFNAMSIZ, "%s", "/dev/net/tun");
|
|
}
|
|
|
|
if (rc < 0 || rc >= IFNAMSIZ) {
|
|
WPRINTF(("Failed to set interface name %s\n", tbuf));
|
|
return -1;
|
|
}
|
|
|
|
tunfd = open(tbuf, O_RDWR);
|
|
if (tunfd < 0) {
|
|
WPRINTF(("Failed to open interface %s\n", tbuf));
|
|
return -1;
|
|
}
|
|
|
|
memset(&ifr, 0, sizeof(ifr));
|
|
ifr.ifr_flags = IFF_TAP | IFF_NO_PI;
|
|
|
|
if (*devname) {
|
|
strncpy(ifr.ifr_name, devname, IFNAMSIZ);
|
|
ifr.ifr_name[IFNAMSIZ - 1] = '\0';
|
|
}
|
|
|
|
rc = ioctl(tunfd, TUNSETIFF, (void *)&ifr);
|
|
if (rc < 0) {
|
|
WPRINTF(("open of tap device %s failed: %d\n",
|
|
devname, errno));
|
|
close(tunfd);
|
|
return -1;
|
|
}
|
|
|
|
strncpy(devname, ifr.ifr_name, IFNAMSIZ);
|
|
return tunfd;
|
|
}
|
|
|
|
static void
|
|
virtio_net_tap_setup(struct virtio_net *net, char *devname)
|
|
{
|
|
char tbuf[IFNAMSIZ];
|
|
int vhost_fd = -1;
|
|
int rc;
|
|
|
|
rc = snprintf(tbuf, IFNAMSIZ, "%s", devname);
|
|
if (rc < 0 || rc >= IFNAMSIZ) /* give warning if error or truncation happens */
|
|
WPRINTF(("Failed to set tap device name %s\n", tbuf));
|
|
|
|
net->virtio_net_rx = virtio_net_tap_rx;
|
|
net->virtio_net_tx = virtio_net_tap_tx;
|
|
|
|
net->tapfd = virtio_net_tap_open(tbuf);
|
|
if (net->tapfd == -1) {
|
|
WPRINTF(("open of tap device %s failed\n", tbuf));
|
|
return;
|
|
}
|
|
DPRINTF(("open of tap device %s success!\n", tbuf));
|
|
|
|
/*
|
|
* Set non-blocking and register for read
|
|
* notifications with the event loop
|
|
*/
|
|
int opt = 1;
|
|
|
|
if (ioctl(net->tapfd, FIONBIO, &opt) < 0) {
|
|
WPRINTF(("tap device O_NONBLOCK failed\n"));
|
|
close(net->tapfd);
|
|
net->tapfd = -1;
|
|
}
|
|
|
|
if (net->use_vhost) {
|
|
vhost_fd = open("/dev/vhost-net", O_RDWR);
|
|
if (vhost_fd < 0)
|
|
WPRINTF(("open of vhost-net failed\n"));
|
|
else {
|
|
net->vhost_net = vhost_net_init(&net->base, vhost_fd,
|
|
net->tapfd, 0);
|
|
if (!net->vhost_net) {
|
|
WPRINTF(("vhost_net_init failed, fallback "
|
|
"to userspace virtio\n"));
|
|
close(vhost_fd);
|
|
vhost_fd = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (vhost_fd < 0) {
|
|
net->mevp = mevent_add(net->tapfd, EVF_READ,
|
|
virtio_net_rx_callback, net,
|
|
virtio_net_teardown, net);
|
|
if (net->mevp == NULL) {
|
|
WPRINTF(("Could not register event\n"));
|
|
close(net->tapfd);
|
|
net->tapfd = -1;
|
|
}
|
|
}
|
|
}
|
|
|
|
static int
|
|
virtio_net_init(struct vmctx *ctx, struct pci_vdev *dev, char *opts)
|
|
{
|
|
|
|
unsigned char digest[16];
|
|
char nstr[80];
|
|
char tname[MAXCOMLEN + 1];
|
|
struct virtio_net *net = NULL;
|
|
char *devopts = NULL;
|
|
char *name = NULL;
|
|
char *type = NULL;
|
|
char *mac_seed = NULL;
|
|
char *tmp = NULL;
|
|
char *vtopts = NULL;
|
|
char *opt = NULL;
|
|
int mac_provided;
|
|
pthread_mutexattr_t attr;
|
|
int rc;
|
|
|
|
net = calloc(1, sizeof(struct virtio_net));
|
|
if (!net) {
|
|
WPRINTF(("virtio_net: calloc returns NULL\n"));
|
|
return -1;
|
|
}
|
|
|
|
/* init mutex attribute properly to avoid deadlock */
|
|
rc = pthread_mutexattr_init(&attr);
|
|
if (rc)
|
|
DPRINTF(("mutexattr init failed with erro %d!\n", rc));
|
|
rc = pthread_mutexattr_settype(&attr, PTHREAD_MUTEX_RECURSIVE);
|
|
if (rc)
|
|
DPRINTF(("virtio_net: mutexattr_settype failed with "
|
|
"error %d!\n", rc));
|
|
|
|
rc = pthread_mutex_init(&net->mtx, &attr);
|
|
if (rc)
|
|
DPRINTF(("virtio_net: pthread_mutex_init failed with "
|
|
"error %d!\n", rc));
|
|
|
|
/*
|
|
* Read the MAC address if specified
|
|
*/
|
|
mac_provided = 0;
|
|
net->vhost_net = NULL;
|
|
if (opts != NULL) {
|
|
int err;
|
|
|
|
devopts = vtopts = strdup(opts);
|
|
if (!devopts) {
|
|
WPRINTF(("virtio_net: strdup returns NULL\n"));
|
|
free(net);
|
|
return -1;
|
|
}
|
|
|
|
(void) strsep(&vtopts, ",");
|
|
|
|
while ((opt = strsep(&vtopts, ",")) != NULL) {
|
|
if (strcmp("vhost", opt) == 0)
|
|
net->use_vhost = true;
|
|
else if (!strncmp(opt, "mac=", 4)) {
|
|
err = virtio_net_parsemac(opt,
|
|
net->config.mac);
|
|
if (err != 0) {
|
|
free(devopts);
|
|
free(net);
|
|
return err;
|
|
}
|
|
mac_provided = 1;
|
|
}
|
|
}
|
|
}
|
|
|
|
virtio_linkup(&net->base, &virtio_net_ops, net, dev, net->queues,
|
|
net->use_vhost ? BACKEND_VHOST : BACKEND_VBSU);
|
|
net->base.mtx = &net->mtx;
|
|
net->base.device_caps = VIRTIO_NET_S_HOSTCAPS;
|
|
|
|
net->queues[VIRTIO_NET_RXQ].qsize = VIRTIO_NET_RINGSZ;
|
|
net->queues[VIRTIO_NET_RXQ].notify = virtio_net_ping_rxq;
|
|
net->queues[VIRTIO_NET_TXQ].qsize = VIRTIO_NET_RINGSZ;
|
|
net->queues[VIRTIO_NET_TXQ].notify = virtio_net_ping_txq;
|
|
#ifdef notyet
|
|
net->queues[VIRTIO_NET_CTLQ].qsize = VIRTIO_NET_RINGSZ;
|
|
net->queues[VIRTIO_NET_CTLQ].notify = virtio_net_ping_ctlq;
|
|
#endif
|
|
|
|
/*
|
|
* Attempt to open the tap device
|
|
*/
|
|
net->tapfd = -1;
|
|
|
|
if (!devopts) {
|
|
WPRINTF(("virtio_net: invalid optional argument\n"));
|
|
free(net);
|
|
return -1;
|
|
}
|
|
|
|
if (opts != NULL) {
|
|
vtopts = tmp = strdup(opts);
|
|
}
|
|
|
|
if ((tmp != NULL) && (strncmp(tmp, "tap", 3) == 0)) {
|
|
type = strsep(&tmp, "=");
|
|
name = strsep(&tmp, ",");
|
|
}
|
|
|
|
if ((tmp != NULL) && (strncmp(tmp, "mac_seed", 8) == 0)) {
|
|
strsep(&tmp, "=");
|
|
mac_seed = tmp;
|
|
}
|
|
|
|
if ((type != NULL) && (name != NULL)) {
|
|
|
|
if (strcmp(type, "tap") == 0) {
|
|
virtio_net_tap_setup(net, name);
|
|
}
|
|
}
|
|
|
|
/*
|
|
* The default MAC address is the standard NetApp OUI of 00-a0-98,
|
|
* followed by an MD5 of the PCI slot/func number and dev name
|
|
*/
|
|
if (!mac_provided) {
|
|
if (mac_seed != NULL) {
|
|
snprintf(nstr, sizeof(nstr), "%d-%d-%s", dev->slot,
|
|
dev->func, mac_seed);
|
|
} else {
|
|
snprintf(nstr, sizeof(nstr), "%d-%d", dev->slot,
|
|
dev->func);
|
|
}
|
|
#if OPENSSL_VERSION_NUMBER >= 0x30000000L
|
|
EVP_MD_CTX *mdctx = EVP_MD_CTX_new();
|
|
EVP_DigestInit_ex(mdctx, EVP_md5(), NULL);
|
|
EVP_DigestUpdate(mdctx, nstr, strnlen(nstr, sizeof(nstr)));
|
|
EVP_DigestFinal_ex(mdctx, digest, NULL);
|
|
EVP_MD_CTX_free(mdctx);
|
|
#else
|
|
MD5_CTX mdctx;
|
|
MD5_Init(&mdctx);
|
|
MD5_Update(&mdctx, nstr, strnlen(nstr, sizeof(nstr)));
|
|
MD5_Final(digest, &mdctx);
|
|
#endif
|
|
|
|
net->config.mac[0] = 0x00;
|
|
net->config.mac[1] = 0x16;
|
|
net->config.mac[2] = 0x3E;
|
|
net->config.mac[3] = digest[0];
|
|
net->config.mac[4] = digest[1];
|
|
net->config.mac[5] = digest[2];
|
|
}
|
|
|
|
free(vtopts);
|
|
free(devopts);
|
|
|
|
/* initialize config space */
|
|
pci_set_cfgdata16(dev, PCIR_DEVICE, VIRTIO_DEV_NET);
|
|
pci_set_cfgdata16(dev, PCIR_VENDOR, VIRTIO_VENDOR);
|
|
pci_set_cfgdata8(dev, PCIR_CLASS, PCIC_NETWORK);
|
|
pci_set_cfgdata16(dev, PCIR_SUBDEV_0, VIRTIO_TYPE_NET);
|
|
if (is_winvm == true)
|
|
pci_set_cfgdata16(dev, PCIR_SUBVEND_0, ORACLE_VENDOR_ID);
|
|
else
|
|
pci_set_cfgdata16(dev, PCIR_SUBVEND_0, VIRTIO_VENDOR);
|
|
|
|
/* Link is up if we managed to open tap device */
|
|
net->config.status = (opts == NULL || net->tapfd >= 0);
|
|
|
|
/* use BAR 1 to map MSI-X table and PBA, if we're using MSI-X */
|
|
if (virtio_interrupt_init(&net->base, virtio_uses_msix())) {
|
|
if (net)
|
|
free(net);
|
|
return -1;
|
|
}
|
|
|
|
/* use BAR 0 to map config regs in IO space */
|
|
virtio_set_io_bar(&net->base, 0);
|
|
|
|
net->resetting = 0;
|
|
net->closing = 0;
|
|
|
|
net->rx_merge = 1;
|
|
net->rx_vhdrlen = sizeof(struct virtio_net_rxhdr);
|
|
net->rx_in_progress = 0;
|
|
pthread_mutex_init(&net->rx_mtx, NULL);
|
|
|
|
/*
|
|
* Initialize tx semaphore & spawn TX processing thread.
|
|
* As of now, only one thread for TX desc processing is
|
|
* spawned.
|
|
*/
|
|
net->tx_in_progress = 0;
|
|
pthread_mutex_init(&net->tx_mtx, NULL);
|
|
pthread_cond_init(&net->tx_cond, NULL);
|
|
pthread_create(&net->tx_tid, NULL, virtio_net_tx_thread,
|
|
(void *)net);
|
|
snprintf(tname, sizeof(tname), "vtnet-%d:%d tx", dev->slot,
|
|
dev->func);
|
|
pthread_setname_np(net->tx_tid, tname);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
virtio_net_cfgwrite(void *vdev, int offset, int size, uint32_t value)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
void *ptr;
|
|
|
|
if (offset < 6) {
|
|
if (offset + size > 6) {
|
|
DPRINTF(("vtnet: wrong params offset=%d, size=%d, ignore write mac address\n\r", offset, size));
|
|
return -1;
|
|
}
|
|
/*
|
|
* The driver is allowed to change the MAC address
|
|
*/
|
|
ptr = &net->config.mac[offset];
|
|
memcpy(ptr, &value, size);
|
|
} else {
|
|
/* silently ignore other writes */
|
|
DPRINTF(("vtnet: write to readonly reg %d\n\r", offset));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int
|
|
virtio_net_cfgread(void *vdev, int offset, int size, uint32_t *retval)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
void *ptr;
|
|
|
|
ptr = (uint8_t *)&net->config + offset;
|
|
memcpy(retval, ptr, size);
|
|
return 0;
|
|
}
|
|
|
|
static void
|
|
virtio_net_neg_features(void *vdev, uint64_t negotiated_features)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
|
|
net->features = negotiated_features;
|
|
|
|
if (!(net->features & VIRTIO_NET_F_MRG_RXBUF)) {
|
|
net->rx_merge = 0;
|
|
/* non-merge rx header is 2 bytes shorter */
|
|
net->rx_vhdrlen -= 2;
|
|
}
|
|
}
|
|
|
|
static void
|
|
virtio_net_set_status(void *vdev, uint64_t status)
|
|
{
|
|
struct virtio_net *net = vdev;
|
|
int rc;
|
|
|
|
if (!net->vhost_net)
|
|
return;
|
|
|
|
if (!net->vhost_net->vhost_started &&
|
|
(status & VIRTIO_CONFIG_S_DRIVER_OK)) {
|
|
if (net->mevp)
|
|
mevent_disable(net->mevp);
|
|
|
|
rc = vhost_net_start(net->vhost_net);
|
|
if (rc < 0) {
|
|
WPRINTF(("vhost_net_start failed\n"));
|
|
return;
|
|
}
|
|
} else if (net->vhost_net->vhost_started &&
|
|
((status & VIRTIO_CONFIG_S_DRIVER_OK) == 0)) {
|
|
rc = vhost_net_stop(net->vhost_net);
|
|
if (rc < 0)
|
|
WPRINTF(("vhost_net_stop failed\n"));
|
|
}
|
|
}
|
|
|
|
static void
|
|
virtio_net_teardown(void *param)
|
|
{
|
|
struct virtio_net *net;
|
|
|
|
net = (struct virtio_net *)param;
|
|
if (!net)
|
|
return;
|
|
|
|
if (net->tapfd >= 0) {
|
|
close(net->tapfd);
|
|
net->tapfd = -1;
|
|
} else
|
|
pr_err("net->tapfd is -1!\n");
|
|
|
|
virtio_reset_dev(&net->base);
|
|
free(net);
|
|
}
|
|
|
|
static void
|
|
virtio_net_deinit(struct vmctx *ctx, struct pci_vdev *dev, char *opts)
|
|
{
|
|
struct virtio_net *net;
|
|
|
|
if (dev->arg) {
|
|
net = (struct virtio_net *) dev->arg;
|
|
|
|
virtio_net_tx_stop(net);
|
|
|
|
if (net->vhost_net) {
|
|
vhost_net_stop(net->vhost_net);
|
|
vhost_net_deinit(net->vhost_net);
|
|
free(net->vhost_net);
|
|
net->vhost_net = NULL;
|
|
}
|
|
|
|
if (net->mevp != NULL)
|
|
mevent_delete(net->mevp);
|
|
else
|
|
virtio_net_teardown(net);
|
|
|
|
DPRINTF(("%s: done\n", __func__));
|
|
} else
|
|
pr_err("%s: NULL!\n", __func__);
|
|
}
|
|
|
|
static struct vhost_net *
|
|
vhost_net_init(struct virtio_base *base, int vhostfd, int tapfd, int vq_idx)
|
|
{
|
|
struct vhost_net *vhost_net = NULL;
|
|
uint64_t vhost_features = VIRTIO_NET_S_VHOSTCAPS;
|
|
uint64_t vhost_ext_features = 1 << VHOST_NET_F_VIRTIO_NET_HDR;
|
|
uint32_t busyloop_timeout = 0;
|
|
int rc;
|
|
|
|
vhost_net = calloc(1, sizeof(struct vhost_net));
|
|
if (!vhost_net) {
|
|
WPRINTF(("vhost init out of memory\n"));
|
|
goto fail;
|
|
}
|
|
|
|
/* pre-init before calling vhost_dev_init */
|
|
vhost_net->vdev.nvqs = ARRAY_SIZE(vhost_net->vqs);
|
|
vhost_net->vdev.vqs = vhost_net->vqs;
|
|
vhost_net->tapfd = tapfd;
|
|
|
|
rc = vhost_dev_init(&vhost_net->vdev, base, vhostfd, vq_idx,
|
|
vhost_features, vhost_ext_features, busyloop_timeout);
|
|
if (rc < 0) {
|
|
WPRINTF(("vhost_dev_init failed\n"));
|
|
goto fail;
|
|
}
|
|
|
|
return vhost_net;
|
|
fail:
|
|
if (vhost_net)
|
|
free(vhost_net);
|
|
return NULL;
|
|
}
|
|
|
|
static int
|
|
vhost_net_deinit(struct vhost_net *vhost_net)
|
|
{
|
|
return vhost_dev_deinit(&vhost_net->vdev);
|
|
}
|
|
|
|
static int
|
|
vhost_net_start(struct vhost_net *vhost_net)
|
|
{
|
|
int rc;
|
|
|
|
if (vhost_net->vhost_started) {
|
|
WPRINTF(("vhost net already started\n"));
|
|
return 0;
|
|
}
|
|
|
|
rc = vhost_dev_start(&vhost_net->vdev);
|
|
if (rc < 0) {
|
|
WPRINTF(("vhost_dev_start failed\n"));
|
|
goto fail;
|
|
}
|
|
|
|
/* if the backend is the TAP */
|
|
if (vhost_net->tapfd > 0) {
|
|
rc = vhost_net_set_backend(&vhost_net->vdev,
|
|
vhost_net->tapfd);
|
|
if (rc < 0) {
|
|
WPRINTF(("vhost_net_set_backend failed\n"));
|
|
goto fail_set_backend;
|
|
}
|
|
}
|
|
|
|
vhost_net->vhost_started = true;
|
|
return 0;
|
|
|
|
fail_set_backend:
|
|
vhost_dev_stop(&vhost_net->vdev);
|
|
fail:
|
|
return -1;
|
|
}
|
|
|
|
static int
|
|
vhost_net_stop(struct vhost_net *vhost_net)
|
|
{
|
|
int rc;
|
|
|
|
if (!vhost_net->vhost_started) {
|
|
WPRINTF(("vhost net already stopped\n"));
|
|
return 0;
|
|
}
|
|
|
|
/* if the backend is the TAP */
|
|
if (vhost_net->tapfd > 0)
|
|
vhost_net_set_backend(&vhost_net->vdev, -1);
|
|
|
|
rc = vhost_dev_stop(&vhost_net->vdev);
|
|
if (rc < 0)
|
|
WPRINTF(("vhost_dev_stop failed\n"));
|
|
|
|
vhost_net->vhost_started = false;
|
|
return rc;
|
|
}
|
|
|
|
struct pci_vdev_ops pci_ops_virtio_net = {
|
|
.class_name = "virtio-net",
|
|
.vdev_init = virtio_net_init,
|
|
.vdev_deinit = virtio_net_deinit,
|
|
.vdev_barwrite = virtio_pci_write,
|
|
.vdev_barread = virtio_pci_read
|
|
};
|
|
DEFINE_PCI_DEVTYPE(pci_ops_virtio_net);
|