#include "kvm/virtio-pci-dev.h" #include "kvm/virtio-net.h" #include "kvm/virtio.h" #include "kvm/types.h" #include "kvm/mutex.h" #include "kvm/util.h" #include "kvm/kvm.h" #include "kvm/irq.h" #include "kvm/uip.h" #include "kvm/guest_compat.h" #include #include #include #include #include #include #include #include #include #include #include #include #include #define VIRTIO_NET_QUEUE_SIZE 256 #define VIRTIO_NET_NUM_QUEUES 2 #define VIRTIO_NET_RX_QUEUE 0 #define VIRTIO_NET_TX_QUEUE 1 struct net_dev; extern struct kvm *kvm; struct net_dev_operations { int (*rx)(struct iovec *iov, u16 in, struct net_dev *ndev); int (*tx)(struct iovec *iov, u16 in, struct net_dev *ndev); }; struct net_dev { pthread_mutex_t mutex; struct virtio_device vdev; struct list_head list; struct virt_queue vqs[VIRTIO_NET_NUM_QUEUES]; struct virtio_net_config config; u32 features; pthread_t io_rx_thread; pthread_mutex_t io_rx_lock; pthread_cond_t io_rx_cond; pthread_t io_tx_thread; pthread_mutex_t io_tx_lock; pthread_cond_t io_tx_cond; int vhost_fd; int tap_fd; char tap_name[IFNAMSIZ]; int mode; struct uip_info info; struct net_dev_operations *ops; struct kvm *kvm; }; static LIST_HEAD(ndevs); static int compat_id = -1; static void *virtio_net_rx_thread(void *p) { struct iovec iov[VIRTIO_NET_QUEUE_SIZE]; struct virt_queue *vq; struct kvm *kvm; struct net_dev *ndev = p; u16 out, in; u16 head; int len; kvm = ndev->kvm; vq = &ndev->vqs[VIRTIO_NET_RX_QUEUE]; while (1) { mutex_lock(&ndev->io_rx_lock); if (!virt_queue__available(vq)) pthread_cond_wait(&ndev->io_rx_cond, &ndev->io_rx_lock); mutex_unlock(&ndev->io_rx_lock); while (virt_queue__available(vq)) { head = virt_queue__get_iov(vq, iov, &out, &in, kvm); len = ndev->ops->rx(iov, in, ndev); virt_queue__set_used_elem(vq, head, len); /* We should interrupt guest right now, otherwise latency is huge. */ if (virtio_queue__should_signal(&ndev->vqs[VIRTIO_NET_RX_QUEUE])) ndev->vdev.ops->signal_vq(kvm, &ndev->vdev, VIRTIO_NET_RX_QUEUE); } } pthread_exit(NULL); return NULL; } static void *virtio_net_tx_thread(void *p) { struct iovec iov[VIRTIO_NET_QUEUE_SIZE]; struct virt_queue *vq; struct kvm *kvm; struct net_dev *ndev = p; u16 out, in; u16 head; int len; kvm = ndev->kvm; vq = &ndev->vqs[VIRTIO_NET_TX_QUEUE]; while (1) { mutex_lock(&ndev->io_tx_lock); if (!virt_queue__available(vq)) pthread_cond_wait(&ndev->io_tx_cond, &ndev->io_tx_lock); mutex_unlock(&ndev->io_tx_lock); while (virt_queue__available(vq)) { head = virt_queue__get_iov(vq, iov, &out, &in, kvm); len = ndev->ops->tx(iov, out, ndev); virt_queue__set_used_elem(vq, head, len); } if (virtio_queue__should_signal(&ndev->vqs[VIRTIO_NET_TX_QUEUE])) ndev->vdev.ops->signal_vq(kvm, &ndev->vdev, VIRTIO_NET_TX_QUEUE); } pthread_exit(NULL); return NULL; } static void virtio_net_handle_callback(struct kvm *kvm, struct net_dev *ndev, int queue) { switch (queue) { case VIRTIO_NET_TX_QUEUE: mutex_lock(&ndev->io_tx_lock); pthread_cond_signal(&ndev->io_tx_cond); mutex_unlock(&ndev->io_tx_lock); break; case VIRTIO_NET_RX_QUEUE: mutex_lock(&ndev->io_rx_lock); pthread_cond_signal(&ndev->io_rx_cond); mutex_unlock(&ndev->io_rx_lock); break; default: pr_warning("Unknown queue index %u", queue); } } static bool virtio_net__tap_init(const struct virtio_net_params *params, struct net_dev *ndev) { int sock = socket(AF_INET, SOCK_STREAM, 0); int pid, status, offload, hdr_len; struct sockaddr_in sin = {0}; struct ifreq ifr; /* Did the user already gave us the FD? */ if (params->fd) { ndev->tap_fd = params->fd; return 1; } ndev->tap_fd = open("/dev/net/tun", O_RDWR); if (ndev->tap_fd < 0) { pr_warning("Unable to open /dev/net/tun"); goto fail; } memset(&ifr, 0, sizeof(ifr)); ifr.ifr_flags = IFF_TAP | IFF_NO_PI | IFF_VNET_HDR; if (ioctl(ndev->tap_fd, TUNSETIFF, &ifr) < 0) { pr_warning("Config tap device error. Are you root?"); goto fail; } strncpy(ndev->tap_name, ifr.ifr_name, sizeof(ndev->tap_name)); if (ioctl(ndev->tap_fd, TUNSETNOCSUM, 1) < 0) { pr_warning("Config tap device TUNSETNOCSUM error"); goto fail; } hdr_len = sizeof(struct virtio_net_hdr); if (ioctl(ndev->tap_fd, TUNSETVNETHDRSZ, &hdr_len) < 0) pr_warning("Config tap device TUNSETVNETHDRSZ error"); offload = TUN_F_CSUM | TUN_F_TSO4 | TUN_F_TSO6 | TUN_F_UFO; if (ioctl(ndev->tap_fd, TUNSETOFFLOAD, offload) < 0) { pr_warning("Config tap device TUNSETOFFLOAD error"); goto fail; } if (strcmp(params->script, "none")) { pid = fork(); if (pid == 0) { execl(params->script, params->script, ndev->tap_name, NULL); _exit(1); } else { waitpid(pid, &status, 0); if (WIFEXITED(status) && WEXITSTATUS(status) != 0) { pr_warning("Fail to setup tap by %s", params->script); goto fail; } } } else { memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, ndev->tap_name, sizeof(ndev->tap_name)); sin.sin_addr.s_addr = inet_addr(params->host_ip); memcpy(&(ifr.ifr_addr), &sin, sizeof(ifr.ifr_addr)); ifr.ifr_addr.sa_family = AF_INET; if (ioctl(sock, SIOCSIFADDR, &ifr) < 0) { pr_warning("Could not set ip address on tap device"); goto fail; } } memset(&ifr, 0, sizeof(ifr)); strncpy(ifr.ifr_name, ndev->tap_name, sizeof(ndev->tap_name)); ioctl(sock, SIOCGIFFLAGS, &ifr); ifr.ifr_flags |= IFF_UP | IFF_RUNNING; if (ioctl(sock, SIOCSIFFLAGS, &ifr) < 0) pr_warning("Could not bring tap device up"); close(sock); return 1; fail: if (sock >= 0) close(sock); if (ndev->tap_fd >= 0) close(ndev->tap_fd); return 0; } static void virtio_net__io_thread_init(struct kvm *kvm, struct net_dev *ndev) { pthread_mutex_init(&ndev->io_tx_lock, NULL); pthread_mutex_init(&ndev->io_rx_lock, NULL); pthread_cond_init(&ndev->io_tx_cond, NULL); pthread_cond_init(&ndev->io_rx_cond, NULL); pthread_create(&ndev->io_tx_thread, NULL, virtio_net_tx_thread, ndev); pthread_create(&ndev->io_rx_thread, NULL, virtio_net_rx_thread, ndev); } static inline int tap_ops_tx(struct iovec *iov, u16 out, struct net_dev *ndev) { return writev(ndev->tap_fd, iov, out); } static inline int tap_ops_rx(struct iovec *iov, u16 in, struct net_dev *ndev) { return readv(ndev->tap_fd, iov, in); } static inline int uip_ops_tx(struct iovec *iov, u16 out, struct net_dev *ndev) { return uip_tx(iov, out, &ndev->info); } static inline int uip_ops_rx(struct iovec *iov, u16 in, struct net_dev *ndev) { return uip_rx(iov, in, &ndev->info); } static struct net_dev_operations tap_ops = { .rx = tap_ops_rx, .tx = tap_ops_tx, }; static struct net_dev_operations uip_ops = { .rx = uip_ops_rx, .tx = uip_ops_tx, }; static void set_config(struct kvm *kvm, void *dev, u8 data, u32 offset) { struct net_dev *ndev = dev; ((u8 *)(&ndev->config))[offset] = data; } static u8 get_config(struct kvm *kvm, void *dev, u32 offset) { struct net_dev *ndev = dev; return ((u8 *)(&ndev->config))[offset]; } static u32 get_host_features(struct kvm *kvm, void *dev) { return 1UL << VIRTIO_NET_F_MAC | 1UL << VIRTIO_NET_F_CSUM | 1UL << VIRTIO_NET_F_HOST_UFO | 1UL << VIRTIO_NET_F_HOST_TSO4 | 1UL << VIRTIO_NET_F_HOST_TSO6 | 1UL << VIRTIO_NET_F_GUEST_UFO | 1UL << VIRTIO_NET_F_GUEST_TSO4 | 1UL << VIRTIO_NET_F_GUEST_TSO6 | 1UL << VIRTIO_RING_F_EVENT_IDX | 1UL << VIRTIO_RING_F_INDIRECT_DESC; } static void set_guest_features(struct kvm *kvm, void *dev, u32 features) { struct net_dev *ndev = dev; ndev->features = features; } static int init_vq(struct kvm *kvm, void *dev, u32 vq, u32 pfn) { struct vhost_vring_state state = { .index = vq }; struct vhost_vring_addr addr; struct net_dev *ndev = dev; struct virt_queue *queue; void *p; int r; compat__remove_message(compat_id); queue = &ndev->vqs[vq]; queue->pfn = pfn; p = guest_pfn_to_host(kvm, queue->pfn); vring_init(&queue->vring, VIRTIO_NET_QUEUE_SIZE, p, VIRTIO_PCI_VRING_ALIGN); if (ndev->vhost_fd == 0) return 0; state.num = queue->vring.num; r = ioctl(ndev->vhost_fd, VHOST_SET_VRING_NUM, &state); if (r < 0) die_perror("VHOST_SET_VRING_NUM failed"); state.num = 0; r = ioctl(ndev->vhost_fd, VHOST_SET_VRING_BASE, &state); if (r < 0) die_perror("VHOST_SET_VRING_BASE failed"); addr = (struct vhost_vring_addr) { .index = vq, .desc_user_addr = (u64)(unsigned long)queue->vring.desc, .avail_user_addr = (u64)(unsigned long)queue->vring.avail, .used_user_addr = (u64)(unsigned long)queue->vring.used, }; r = ioctl(ndev->vhost_fd, VHOST_SET_VRING_ADDR, &addr); if (r < 0) die_perror("VHOST_SET_VRING_ADDR failed"); return 0; } static void notify_vq_gsi(struct kvm *kvm, void *dev, u32 vq, u32 gsi) { struct net_dev *ndev = dev; struct kvm_irqfd irq; struct vhost_vring_file file; int r; if (ndev->vhost_fd == 0) return; irq = (struct kvm_irqfd) { .gsi = gsi, .fd = eventfd(0, 0), }; file = (struct vhost_vring_file) { .index = vq, .fd = irq.fd, }; r = ioctl(kvm->vm_fd, KVM_IRQFD, &irq); if (r < 0) die_perror("KVM_IRQFD failed"); r = ioctl(ndev->vhost_fd, VHOST_SET_VRING_CALL, &file); if (r < 0) die_perror("VHOST_SET_VRING_CALL failed"); file.fd = ndev->tap_fd; r = ioctl(ndev->vhost_fd, VHOST_NET_SET_BACKEND, &file); if (r != 0) die("VHOST_NET_SET_BACKEND failed %d", errno); } static void notify_vq_eventfd(struct kvm *kvm, void *dev, u32 vq, u32 efd) { struct net_dev *ndev = dev; struct vhost_vring_file file = { .index = vq, .fd = efd, }; int r; if (ndev->vhost_fd == 0) return; r = ioctl(ndev->vhost_fd, VHOST_SET_VRING_KICK, &file); if (r < 0) die_perror("VHOST_SET_VRING_KICK failed"); } static int notify_vq(struct kvm *kvm, void *dev, u32 vq) { struct net_dev *ndev = dev; virtio_net_handle_callback(kvm, ndev, vq); return 0; } static int get_pfn_vq(struct kvm *kvm, void *dev, u32 vq) { struct net_dev *ndev = dev; return ndev->vqs[vq].pfn; } static int get_size_vq(struct kvm *kvm, void *dev, u32 vq) { return VIRTIO_NET_QUEUE_SIZE; } static struct virtio_ops net_dev_virtio_ops = (struct virtio_ops) { .set_config = set_config, .get_config = get_config, .get_host_features = get_host_features, .set_guest_features = set_guest_features, .init_vq = init_vq, .notify_vq = notify_vq, .get_pfn_vq = get_pfn_vq, .get_size_vq = get_size_vq, .notify_vq_gsi = notify_vq_gsi, .notify_vq_eventfd = notify_vq_eventfd, }; static void virtio_net__vhost_init(struct kvm *kvm, struct net_dev *ndev) { u64 features = 1UL << VIRTIO_RING_F_EVENT_IDX; struct vhost_memory *mem; int r; ndev->vhost_fd = open("/dev/vhost-net", O_RDWR); if (ndev->vhost_fd < 0) die_perror("Failed openning vhost-net device"); mem = malloc(sizeof(*mem) + sizeof(struct vhost_memory_region)); if (mem == NULL) die("Failed allocating memory for vhost memory map"); mem->nregions = 1; mem->regions[0] = (struct vhost_memory_region) { .guest_phys_addr = 0, .memory_size = kvm->ram_size, .userspace_addr = (unsigned long)kvm->ram_start, }; r = ioctl(ndev->vhost_fd, VHOST_SET_OWNER); if (r != 0) die_perror("VHOST_SET_OWNER failed"); r = ioctl(ndev->vhost_fd, VHOST_SET_FEATURES, &features); if (r != 0) die_perror("VHOST_SET_FEATURES failed"); r = ioctl(ndev->vhost_fd, VHOST_SET_MEM_TABLE, mem); if (r != 0) die_perror("VHOST_SET_MEM_TABLE failed"); free(mem); } void virtio_net__init(const struct virtio_net_params *params) { int i; struct net_dev *ndev; if (!params) return; ndev = calloc(1, sizeof(struct net_dev)); if (ndev == NULL) die("Failed allocating ndev"); list_add_tail(&ndev->list, &ndevs); ndev->kvm = params->kvm; mutex_init(&ndev->mutex); ndev->config.status = VIRTIO_NET_S_LINK_UP; for (i = 0 ; i < 6 ; i++) { ndev->config.mac[i] = params->guest_mac[i]; ndev->info.guest_mac.addr[i] = params->guest_mac[i]; ndev->info.host_mac.addr[i] = params->host_mac[i]; } ndev->mode = params->mode; if (ndev->mode == NET_MODE_TAP) { if (!virtio_net__tap_init(params, ndev)) die_perror("You have requested a TAP device, but creation of one has" "failed because:"); ndev->ops = &tap_ops; } else { ndev->info.host_ip = ntohl(inet_addr(params->host_ip)); ndev->info.guest_ip = ntohl(inet_addr(params->guest_ip)); ndev->info.guest_netmask = ntohl(inet_addr("255.255.255.0")); ndev->info.buf_nr = 20, uip_init(&ndev->info); ndev->ops = &uip_ops; } if (params->trans && strcmp(params->trans, "mmio") == 0) virtio_init(kvm, ndev, &ndev->vdev, &net_dev_virtio_ops, VIRTIO_MMIO, PCI_DEVICE_ID_VIRTIO_NET, VIRTIO_ID_NET, PCI_CLASS_NET); else virtio_init(kvm, ndev, &ndev->vdev, &net_dev_virtio_ops, VIRTIO_PCI, PCI_DEVICE_ID_VIRTIO_NET, VIRTIO_ID_NET, PCI_CLASS_NET); if (params->vhost) virtio_net__vhost_init(params->kvm, ndev); else virtio_net__io_thread_init(params->kvm, ndev); if (compat_id != -1) compat_id = compat__add_message("virtio-net device was not detected", "While you have requested a virtio-net device, " "the guest kernel did not initialize it.\n" "Please make sure that the guest kernel was " "compiled with CONFIG_VIRTIO_NET=y enabled " "in its .config"); }