Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1 | /* Copyright (C) 2009 Red Hat, Inc. |
| 2 | * Author: Michael S. Tsirkin <mst@redhat.com> |
| 3 | * |
| 4 | * This work is licensed under the terms of the GNU GPL, version 2. |
| 5 | * |
| 6 | * virtio-net server in host kernel. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/compat.h> |
| 10 | #include <linux/eventfd.h> |
| 11 | #include <linux/vhost.h> |
| 12 | #include <linux/virtio_net.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 13 | #include <linux/miscdevice.h> |
| 14 | #include <linux/module.h> |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 15 | #include <linux/moduleparam.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 16 | #include <linux/mutex.h> |
| 17 | #include <linux/workqueue.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 18 | #include <linux/file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Ingo Molnar | e601757 | 2017-02-01 16:36:40 +0100 | [diff] [blame] | 20 | #include <linux/sched/clock.h> |
Ingo Molnar | 174cd4b | 2017-02-02 19:15:33 +0100 | [diff] [blame] | 21 | #include <linux/sched/signal.h> |
Michael S. Tsirkin | 23cc5a9 | 2013-01-23 21:46:47 +0100 | [diff] [blame] | 22 | #include <linux/vmalloc.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 23 | |
| 24 | #include <linux/net.h> |
| 25 | #include <linux/if_packet.h> |
| 26 | #include <linux/if_arp.h> |
| 27 | #include <linux/if_tun.h> |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 28 | #include <linux/if_macvlan.h> |
Sainath Grandhi | 635b8c8 | 2017-02-10 16:03:47 -0800 | [diff] [blame] | 29 | #include <linux/if_tap.h> |
Basil Gor | c53cff5e | 2012-05-03 22:55:23 +0000 | [diff] [blame] | 30 | #include <linux/if_vlan.h> |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 31 | #include <linux/skb_array.h> |
| 32 | #include <linux/skbuff.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 33 | |
| 34 | #include <net/sock.h> |
Jesper Dangaard Brouer | 1ffcbc8 | 2018-04-17 16:45:47 +0200 | [diff] [blame] | 35 | #include <net/xdp.h> |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 36 | |
| 37 | #include "vhost.h" |
| 38 | |
Michael S. Tsirkin | f9611c4 | 2012-12-06 14:56:00 +0200 | [diff] [blame] | 39 | static int experimental_zcopytx = 1; |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 40 | module_param(experimental_zcopytx, int, 0444); |
Michael S. Tsirkin | f9611c4 | 2012-12-06 14:56:00 +0200 | [diff] [blame] | 41 | MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;" |
| 42 | " 1 -Enable; 0 - Disable"); |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 43 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 44 | /* Max number of bytes transferred before requeueing the job. |
| 45 | * Using this limit prevents one virtqueue from starving others. */ |
| 46 | #define VHOST_NET_WEIGHT 0x80000 |
| 47 | |
haibinzhang(张海斌) | a2ac999 | 2018-04-09 07:22:17 +0000 | [diff] [blame] | 48 | /* Max number of packets transferred before requeueing the job. |
Paolo Abeni | db688c2 | 2018-04-24 10:34:36 +0200 | [diff] [blame] | 49 | * Using this limit prevents one virtqueue from starving others with small |
| 50 | * pkts. |
| 51 | */ |
| 52 | #define VHOST_NET_PKT_WEIGHT 256 |
haibinzhang(张海斌) | a2ac999 | 2018-04-09 07:22:17 +0000 | [diff] [blame] | 53 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 54 | /* MAX number of TX used buffers for outstanding zerocopy */ |
| 55 | #define VHOST_MAX_PEND 128 |
| 56 | #define VHOST_GOODCOPY_LEN 256 |
| 57 | |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 58 | /* |
| 59 | * For transmit, used buffer len is unused; we override it to track buffer |
| 60 | * status internally; used for zerocopy tx only. |
| 61 | */ |
| 62 | /* Lower device DMA failed */ |
Michael S. Tsirkin | bf99573 | 2014-10-24 11:49:27 +0300 | [diff] [blame] | 63 | #define VHOST_DMA_FAILED_LEN ((__force __virtio32)3) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 64 | /* Lower device DMA done */ |
Michael S. Tsirkin | bf99573 | 2014-10-24 11:49:27 +0300 | [diff] [blame] | 65 | #define VHOST_DMA_DONE_LEN ((__force __virtio32)2) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 66 | /* Lower device DMA in progress */ |
Michael S. Tsirkin | bf99573 | 2014-10-24 11:49:27 +0300 | [diff] [blame] | 67 | #define VHOST_DMA_IN_PROGRESS ((__force __virtio32)1) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 68 | /* Buffer unused */ |
Michael S. Tsirkin | bf99573 | 2014-10-24 11:49:27 +0300 | [diff] [blame] | 69 | #define VHOST_DMA_CLEAR_LEN ((__force __virtio32)0) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 70 | |
Michael S. Tsirkin | bf99573 | 2014-10-24 11:49:27 +0300 | [diff] [blame] | 71 | #define VHOST_DMA_IS_DONE(len) ((__force u32)(len) >= (__force u32)VHOST_DMA_DONE_LEN) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 72 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 73 | enum { |
Asias He | 8570a6e | 2013-05-06 16:38:20 +0800 | [diff] [blame] | 74 | VHOST_NET_FEATURES = VHOST_FEATURES | |
| 75 | (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) | |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 76 | (1ULL << VIRTIO_NET_F_MRG_RXBUF) | |
| 77 | (1ULL << VIRTIO_F_IOMMU_PLATFORM) |
Asias He | 8570a6e | 2013-05-06 16:38:20 +0800 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | enum { |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 81 | VHOST_NET_VQ_RX = 0, |
| 82 | VHOST_NET_VQ_TX = 1, |
| 83 | VHOST_NET_VQ_MAX = 2, |
| 84 | }; |
| 85 | |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 86 | struct vhost_net_ubuf_ref { |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 87 | /* refcount follows semantics similar to kref: |
| 88 | * 0: object is released |
| 89 | * 1: no outstanding ubufs |
| 90 | * >1: outstanding ubufs |
| 91 | */ |
| 92 | atomic_t refcount; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 93 | wait_queue_head_t wait; |
| 94 | struct vhost_virtqueue *vq; |
| 95 | }; |
| 96 | |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 97 | #define VHOST_RX_BATCH 64 |
| 98 | struct vhost_net_buf { |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 99 | void **queue; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 100 | int tail; |
| 101 | int head; |
| 102 | }; |
| 103 | |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 104 | struct vhost_net_virtqueue { |
| 105 | struct vhost_virtqueue vq; |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 106 | size_t vhost_hlen; |
| 107 | size_t sock_hlen; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 108 | /* vhost zerocopy support fields below: */ |
| 109 | /* last used idx for outstanding DMA zerocopy buffers */ |
| 110 | int upend_idx; |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 111 | /* For TX, first used idx for DMA done zerocopy buffers |
| 112 | * For RX, number of batched heads |
| 113 | */ |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 114 | int done_idx; |
| 115 | /* an array of userspace buffers info */ |
| 116 | struct ubuf_info *ubuf_info; |
| 117 | /* Reference counting for outstanding ubufs. |
| 118 | * Protected by vq mutex. Writers must also take device mutex. */ |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 119 | struct vhost_net_ubuf_ref *ubufs; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 120 | struct ptr_ring *rx_ring; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 121 | struct vhost_net_buf rxq; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 122 | }; |
| 123 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 124 | struct vhost_net { |
| 125 | struct vhost_dev dev; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 126 | struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX]; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 127 | struct vhost_poll poll[VHOST_NET_VQ_MAX]; |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 128 | /* Number of TX recently submitted. |
| 129 | * Protected by tx vq lock. */ |
| 130 | unsigned tx_packets; |
| 131 | /* Number of times zerocopy TX recently failed. |
| 132 | * Protected by tx vq lock. */ |
| 133 | unsigned tx_zcopy_err; |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 134 | /* Flush in progress. Protected by tx vq lock. */ |
| 135 | bool tx_flush; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 136 | }; |
| 137 | |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 138 | static unsigned vhost_net_zcopy_mask __read_mostly; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 139 | |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 140 | static void *vhost_net_buf_get_ptr(struct vhost_net_buf *rxq) |
| 141 | { |
| 142 | if (rxq->tail != rxq->head) |
| 143 | return rxq->queue[rxq->head]; |
| 144 | else |
| 145 | return NULL; |
| 146 | } |
| 147 | |
| 148 | static int vhost_net_buf_get_size(struct vhost_net_buf *rxq) |
| 149 | { |
| 150 | return rxq->tail - rxq->head; |
| 151 | } |
| 152 | |
| 153 | static int vhost_net_buf_is_empty(struct vhost_net_buf *rxq) |
| 154 | { |
| 155 | return rxq->tail == rxq->head; |
| 156 | } |
| 157 | |
| 158 | static void *vhost_net_buf_consume(struct vhost_net_buf *rxq) |
| 159 | { |
| 160 | void *ret = vhost_net_buf_get_ptr(rxq); |
| 161 | ++rxq->head; |
| 162 | return ret; |
| 163 | } |
| 164 | |
| 165 | static int vhost_net_buf_produce(struct vhost_net_virtqueue *nvq) |
| 166 | { |
| 167 | struct vhost_net_buf *rxq = &nvq->rxq; |
| 168 | |
| 169 | rxq->head = 0; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 170 | rxq->tail = ptr_ring_consume_batched(nvq->rx_ring, rxq->queue, |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 171 | VHOST_RX_BATCH); |
| 172 | return rxq->tail; |
| 173 | } |
| 174 | |
| 175 | static void vhost_net_buf_unproduce(struct vhost_net_virtqueue *nvq) |
| 176 | { |
| 177 | struct vhost_net_buf *rxq = &nvq->rxq; |
| 178 | |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 179 | if (nvq->rx_ring && !vhost_net_buf_is_empty(rxq)) { |
| 180 | ptr_ring_unconsume(nvq->rx_ring, rxq->queue + rxq->head, |
| 181 | vhost_net_buf_get_size(rxq), |
Jason Wang | 3a40307 | 2018-03-09 14:50:34 +0800 | [diff] [blame] | 182 | tun_ptr_free); |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 183 | rxq->head = rxq->tail = 0; |
| 184 | } |
| 185 | } |
| 186 | |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 187 | static int vhost_net_buf_peek_len(void *ptr) |
| 188 | { |
Jesper Dangaard Brouer | 1ffcbc8 | 2018-04-17 16:45:47 +0200 | [diff] [blame] | 189 | if (tun_is_xdp_frame(ptr)) { |
| 190 | struct xdp_frame *xdpf = tun_ptr_to_xdp(ptr); |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 191 | |
Jesper Dangaard Brouer | 1ffcbc8 | 2018-04-17 16:45:47 +0200 | [diff] [blame] | 192 | return xdpf->len; |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 193 | } |
| 194 | |
| 195 | return __skb_array_len_with_tag(ptr); |
| 196 | } |
| 197 | |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 198 | static int vhost_net_buf_peek(struct vhost_net_virtqueue *nvq) |
| 199 | { |
| 200 | struct vhost_net_buf *rxq = &nvq->rxq; |
| 201 | |
| 202 | if (!vhost_net_buf_is_empty(rxq)) |
| 203 | goto out; |
| 204 | |
| 205 | if (!vhost_net_buf_produce(nvq)) |
| 206 | return 0; |
| 207 | |
| 208 | out: |
Jason Wang | fc72d1d | 2018-01-04 11:14:28 +0800 | [diff] [blame] | 209 | return vhost_net_buf_peek_len(vhost_net_buf_get_ptr(rxq)); |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | static void vhost_net_buf_init(struct vhost_net_buf *rxq) |
| 213 | { |
| 214 | rxq->head = rxq->tail = 0; |
| 215 | } |
| 216 | |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 217 | static void vhost_net_enable_zcopy(int vq) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 218 | { |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 219 | vhost_net_zcopy_mask |= 0x1 << vq; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 220 | } |
| 221 | |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 222 | static struct vhost_net_ubuf_ref * |
| 223 | vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 224 | { |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 225 | struct vhost_net_ubuf_ref *ubufs; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 226 | /* No zero copy backend? Nothing to count. */ |
| 227 | if (!zcopy) |
| 228 | return NULL; |
| 229 | ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL); |
| 230 | if (!ubufs) |
| 231 | return ERR_PTR(-ENOMEM); |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 232 | atomic_set(&ubufs->refcount, 1); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 233 | init_waitqueue_head(&ubufs->wait); |
| 234 | ubufs->vq = vq; |
| 235 | return ubufs; |
| 236 | } |
| 237 | |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 238 | static int vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 239 | { |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 240 | int r = atomic_sub_return(1, &ubufs->refcount); |
| 241 | if (unlikely(!r)) |
| 242 | wake_up(&ubufs->wait); |
| 243 | return r; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 244 | } |
| 245 | |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 246 | static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 247 | { |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 248 | vhost_net_ubuf_put(ubufs); |
| 249 | wait_event(ubufs->wait, !atomic_read(&ubufs->refcount)); |
Michael S. Tsirkin | c38e39c | 2013-06-25 17:29:46 +0300 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs) |
| 253 | { |
| 254 | vhost_net_ubuf_put_and_wait(ubufs); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 255 | kfree(ubufs); |
| 256 | } |
| 257 | |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 258 | static void vhost_net_clear_ubuf_info(struct vhost_net *n) |
| 259 | { |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 260 | int i; |
| 261 | |
Michael S. Tsirkin | 288cfe7 | 2013-06-06 15:20:46 +0300 | [diff] [blame] | 262 | for (i = 0; i < VHOST_NET_VQ_MAX; ++i) { |
| 263 | kfree(n->vqs[i].ubuf_info); |
| 264 | n->vqs[i].ubuf_info = NULL; |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 265 | } |
| 266 | } |
| 267 | |
Asias He | 0a1febf | 2013-06-05 21:17:38 +0800 | [diff] [blame] | 268 | static int vhost_net_set_ubuf_info(struct vhost_net *n) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 269 | { |
| 270 | bool zcopy; |
| 271 | int i; |
| 272 | |
Michael S. Tsirkin | 288cfe7 | 2013-06-06 15:20:46 +0300 | [diff] [blame] | 273 | for (i = 0; i < VHOST_NET_VQ_MAX; ++i) { |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 274 | zcopy = vhost_net_zcopy_mask & (0x1 << i); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 275 | if (!zcopy) |
| 276 | continue; |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 277 | n->vqs[i].ubuf_info = |
| 278 | kmalloc_array(UIO_MAXIOV, |
| 279 | sizeof(*n->vqs[i].ubuf_info), |
| 280 | GFP_KERNEL); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 281 | if (!n->vqs[i].ubuf_info) |
| 282 | goto err; |
| 283 | } |
| 284 | return 0; |
| 285 | |
| 286 | err: |
Michael S. Tsirkin | 288cfe7 | 2013-06-06 15:20:46 +0300 | [diff] [blame] | 287 | vhost_net_clear_ubuf_info(n); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 288 | return -ENOMEM; |
| 289 | } |
| 290 | |
Asias He | 0a1febf | 2013-06-05 21:17:38 +0800 | [diff] [blame] | 291 | static void vhost_net_vq_reset(struct vhost_net *n) |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 292 | { |
| 293 | int i; |
| 294 | |
Michael S. Tsirkin | 288cfe7 | 2013-06-06 15:20:46 +0300 | [diff] [blame] | 295 | vhost_net_clear_ubuf_info(n); |
| 296 | |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 297 | for (i = 0; i < VHOST_NET_VQ_MAX; i++) { |
| 298 | n->vqs[i].done_idx = 0; |
| 299 | n->vqs[i].upend_idx = 0; |
| 300 | n->vqs[i].ubufs = NULL; |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 301 | n->vqs[i].vhost_hlen = 0; |
| 302 | n->vqs[i].sock_hlen = 0; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 303 | vhost_net_buf_init(&n->vqs[i].rxq); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 304 | } |
| 305 | |
| 306 | } |
| 307 | |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 308 | static void vhost_net_tx_packet(struct vhost_net *net) |
| 309 | { |
| 310 | ++net->tx_packets; |
| 311 | if (net->tx_packets < 1024) |
| 312 | return; |
| 313 | net->tx_packets = 0; |
| 314 | net->tx_zcopy_err = 0; |
| 315 | } |
| 316 | |
| 317 | static void vhost_net_tx_err(struct vhost_net *net) |
| 318 | { |
| 319 | ++net->tx_zcopy_err; |
| 320 | } |
| 321 | |
| 322 | static bool vhost_net_tx_select_zcopy(struct vhost_net *net) |
| 323 | { |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 324 | /* TX flush waits for outstanding DMAs to be done. |
| 325 | * Don't start new DMAs. |
| 326 | */ |
| 327 | return !net->tx_flush && |
| 328 | net->tx_packets / 64 >= net->tx_zcopy_err; |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 329 | } |
| 330 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 331 | static bool vhost_sock_zcopy(struct socket *sock) |
| 332 | { |
| 333 | return unlikely(experimental_zcopytx) && |
| 334 | sock_flag(sock->sk, SOCK_ZEROCOPY); |
| 335 | } |
| 336 | |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 337 | /* In case of DMA done not in order in lower device driver for some reason. |
| 338 | * upend_idx is used to track end of used idx, done_idx is used to track head |
| 339 | * of used idx. Once lower device DMA done contiguously, we will signal KVM |
| 340 | * guest used idx. |
| 341 | */ |
Jason Wang | 094afe7 | 2013-09-02 16:40:56 +0800 | [diff] [blame] | 342 | static void vhost_zerocopy_signal_used(struct vhost_net *net, |
| 343 | struct vhost_virtqueue *vq) |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 344 | { |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 345 | struct vhost_net_virtqueue *nvq = |
| 346 | container_of(vq, struct vhost_net_virtqueue, vq); |
Jason Wang | c92112a | 2013-09-02 16:40:57 +0800 | [diff] [blame] | 347 | int i, add; |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 348 | int j = 0; |
| 349 | |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 350 | for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) { |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 351 | if (vq->heads[i].len == VHOST_DMA_FAILED_LEN) |
| 352 | vhost_net_tx_err(net); |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 353 | if (VHOST_DMA_IS_DONE(vq->heads[i].len)) { |
| 354 | vq->heads[i].len = VHOST_DMA_CLEAR_LEN; |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 355 | ++j; |
| 356 | } else |
| 357 | break; |
| 358 | } |
Jason Wang | c92112a | 2013-09-02 16:40:57 +0800 | [diff] [blame] | 359 | while (j) { |
| 360 | add = min(UIO_MAXIOV - nvq->done_idx, j); |
| 361 | vhost_add_used_and_signal_n(vq->dev, vq, |
| 362 | &vq->heads[nvq->done_idx], add); |
| 363 | nvq->done_idx = (nvq->done_idx + add) % UIO_MAXIOV; |
| 364 | j -= add; |
| 365 | } |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 366 | } |
| 367 | |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 368 | static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success) |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 369 | { |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 370 | struct vhost_net_ubuf_ref *ubufs = ubuf->ctx; |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 371 | struct vhost_virtqueue *vq = ubufs->vq; |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 372 | int cnt; |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 373 | |
Michael S. Tsirkin | b0c057c | 2014-02-13 11:45:11 +0200 | [diff] [blame] | 374 | rcu_read_lock_bh(); |
| 375 | |
Jason Wang | 19c73b3 | 2013-09-02 16:41:00 +0800 | [diff] [blame] | 376 | /* set len to mark this desc buffers done DMA */ |
| 377 | vq->heads[ubuf->desc].len = success ? |
| 378 | VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN; |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 379 | cnt = vhost_net_ubuf_put(ubufs); |
Jason Wang | 19c73b3 | 2013-09-02 16:41:00 +0800 | [diff] [blame] | 380 | |
Michael S. Tsirkin | 24eb21a | 2012-11-01 09:16:55 +0000 | [diff] [blame] | 381 | /* |
| 382 | * Trigger polling thread if guest stopped submitting new buffers: |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 383 | * in this case, the refcount after decrement will eventually reach 1. |
Michael S. Tsirkin | 24eb21a | 2012-11-01 09:16:55 +0000 | [diff] [blame] | 384 | * We also trigger polling periodically after each 16 packets |
| 385 | * (the value 16 here is more or less arbitrary, it's tuned to trigger |
| 386 | * less than 10% of times). |
| 387 | */ |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 388 | if (cnt <= 1 || !(cnt % 16)) |
Michael S. Tsirkin | 24eb21a | 2012-11-01 09:16:55 +0000 | [diff] [blame] | 389 | vhost_poll_queue(&vq->poll); |
Michael S. Tsirkin | b0c057c | 2014-02-13 11:45:11 +0200 | [diff] [blame] | 390 | |
| 391 | rcu_read_unlock_bh(); |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 392 | } |
| 393 | |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 394 | static inline unsigned long busy_clock(void) |
| 395 | { |
| 396 | return local_clock() >> 10; |
| 397 | } |
| 398 | |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 399 | static bool vhost_can_busy_poll(unsigned long endtime) |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 400 | { |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 401 | return likely(!need_resched() && !time_after(busy_clock(), endtime) && |
| 402 | !signal_pending(current)); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 403 | } |
| 404 | |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 405 | static void vhost_net_disable_vq(struct vhost_net *n, |
| 406 | struct vhost_virtqueue *vq) |
| 407 | { |
| 408 | struct vhost_net_virtqueue *nvq = |
| 409 | container_of(vq, struct vhost_net_virtqueue, vq); |
| 410 | struct vhost_poll *poll = n->poll + (nvq - n->vqs); |
| 411 | if (!vq->private_data) |
| 412 | return; |
| 413 | vhost_poll_stop(poll); |
| 414 | } |
| 415 | |
| 416 | static int vhost_net_enable_vq(struct vhost_net *n, |
| 417 | struct vhost_virtqueue *vq) |
| 418 | { |
| 419 | struct vhost_net_virtqueue *nvq = |
| 420 | container_of(vq, struct vhost_net_virtqueue, vq); |
| 421 | struct vhost_poll *poll = n->poll + (nvq - n->vqs); |
| 422 | struct socket *sock; |
| 423 | |
| 424 | sock = vq->private_data; |
| 425 | if (!sock) |
| 426 | return 0; |
| 427 | |
| 428 | return vhost_poll_start(poll, sock->file); |
| 429 | } |
| 430 | |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 431 | static int vhost_net_tx_get_vq_desc(struct vhost_net *net, |
| 432 | struct vhost_virtqueue *vq, |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 433 | unsigned int *out_num, unsigned int *in_num, |
| 434 | bool *busyloop_intr) |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 435 | { |
| 436 | unsigned long uninitialized_var(endtime); |
| 437 | int r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov), |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 438 | out_num, in_num, NULL, NULL); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 439 | |
| 440 | if (r == vq->num && vq->busyloop_timeout) { |
| 441 | preempt_disable(); |
| 442 | endtime = busy_clock() + vq->busyloop_timeout; |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 443 | while (vhost_can_busy_poll(endtime)) { |
| 444 | if (vhost_has_work(vq->dev)) { |
| 445 | *busyloop_intr = true; |
| 446 | break; |
| 447 | } |
| 448 | if (!vhost_vq_avail_empty(vq->dev, vq)) |
| 449 | break; |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 450 | cpu_relax(); |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 451 | } |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 452 | preempt_enable(); |
| 453 | r = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov), |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 454 | out_num, in_num, NULL, NULL); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 455 | } |
| 456 | |
| 457 | return r; |
| 458 | } |
| 459 | |
Jason Wang | 0ed005c | 2017-01-18 15:02:02 +0800 | [diff] [blame] | 460 | static bool vhost_exceeds_maxpend(struct vhost_net *net) |
| 461 | { |
| 462 | struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX]; |
| 463 | struct vhost_virtqueue *vq = &nvq->vq; |
| 464 | |
Willem de Bruijn | 1e6f745 | 2017-10-06 13:22:31 -0400 | [diff] [blame] | 465 | return (nvq->upend_idx + UIO_MAXIOV - nvq->done_idx) % UIO_MAXIOV > |
| 466 | min_t(unsigned int, VHOST_MAX_PEND, vq->num >> 2); |
Jason Wang | 0ed005c | 2017-01-18 15:02:02 +0800 | [diff] [blame] | 467 | } |
| 468 | |
Jason Wang | b0d0ea5 | 2018-07-20 08:15:14 +0800 | [diff] [blame] | 469 | static size_t init_iov_iter(struct vhost_virtqueue *vq, struct iov_iter *iter, |
| 470 | size_t hdr_size, int out) |
| 471 | { |
| 472 | /* Skip header. TODO: support TSO. */ |
| 473 | size_t len = iov_length(vq->iov, out); |
| 474 | |
| 475 | iov_iter_init(iter, WRITE, vq->iov, out, len); |
| 476 | iov_iter_advance(iter, hdr_size); |
| 477 | |
| 478 | return iov_iter_count(iter); |
| 479 | } |
| 480 | |
Jason Wang | 272f35c | 2018-07-20 08:15:15 +0800 | [diff] [blame] | 481 | static bool vhost_exceeds_weight(int pkts, int total_len) |
| 482 | { |
| 483 | return total_len >= VHOST_NET_WEIGHT || |
| 484 | pkts >= VHOST_NET_PKT_WEIGHT; |
| 485 | } |
| 486 | |
Jason Wang | a2a91a1 | 2018-07-20 08:15:16 +0800 | [diff] [blame^] | 487 | static int get_tx_bufs(struct vhost_net *net, |
| 488 | struct vhost_net_virtqueue *nvq, |
| 489 | struct msghdr *msg, |
| 490 | unsigned int *out, unsigned int *in, |
| 491 | size_t *len, bool *busyloop_intr) |
| 492 | { |
| 493 | struct vhost_virtqueue *vq = &nvq->vq; |
| 494 | int ret; |
| 495 | |
| 496 | ret = vhost_net_tx_get_vq_desc(net, vq, out, in, busyloop_intr); |
| 497 | if (ret < 0 || ret == vq->num) |
| 498 | return ret; |
| 499 | |
| 500 | if (*in) { |
| 501 | vq_err(vq, "Unexpected descriptor format for TX: out %d, int %d\n", |
| 502 | *out, *in); |
| 503 | return -EFAULT; |
| 504 | } |
| 505 | |
| 506 | /* Sanity check */ |
| 507 | *len = init_iov_iter(vq, &msg->msg_iter, nvq->vhost_hlen, *out); |
| 508 | if (*len == 0) { |
| 509 | vq_err(vq, "Unexpected header len for TX: %zd expected %zd\n", |
| 510 | *len, nvq->vhost_hlen); |
| 511 | return -EFAULT; |
| 512 | } |
| 513 | |
| 514 | return ret; |
| 515 | } |
| 516 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 517 | /* Expects to be always run from workqueue - which acts as |
| 518 | * read-size critical section for our kind of RCU. */ |
| 519 | static void handle_tx(struct vhost_net *net) |
| 520 | { |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 521 | struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX]; |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 522 | struct vhost_virtqueue *vq = &nvq->vq; |
Al Viro | 98a527a | 2014-12-10 15:00:58 -0500 | [diff] [blame] | 523 | unsigned out, in; |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 524 | int head; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 525 | struct msghdr msg = { |
| 526 | .msg_name = NULL, |
| 527 | .msg_namelen = 0, |
| 528 | .msg_control = NULL, |
| 529 | .msg_controllen = 0, |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 530 | .msg_flags = MSG_DONTWAIT, |
| 531 | }; |
| 532 | size_t len, total_len = 0; |
Jason Wang | 70181d51 | 2013-04-10 20:50:48 +0000 | [diff] [blame] | 533 | int err; |
Arnd Bergmann | 28457ee | 2010-03-09 19:24:45 +0100 | [diff] [blame] | 534 | struct socket *sock; |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 535 | struct vhost_net_ubuf_ref *uninitialized_var(ubufs); |
Michael S. Tsirkin | cedb9bd | 2012-12-06 17:00:18 +0200 | [diff] [blame] | 536 | bool zcopy, zcopy_used; |
haibinzhang(张海斌) | a2ac999 | 2018-04-09 07:22:17 +0000 | [diff] [blame] | 537 | int sent_pkts = 0; |
Arnd Bergmann | 28457ee | 2010-03-09 19:24:45 +0100 | [diff] [blame] | 538 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 539 | mutex_lock(&vq->mutex); |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 540 | sock = vq->private_data; |
| 541 | if (!sock) |
| 542 | goto out; |
| 543 | |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 544 | if (!vq_iotlb_prefetch(vq)) |
| 545 | goto out; |
| 546 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 547 | vhost_disable_notify(&net->dev, vq); |
Jason Wang | feb8892 | 2017-11-13 11:45:34 +0800 | [diff] [blame] | 548 | vhost_net_disable_vq(net, vq); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 549 | |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 550 | zcopy = nvq->ubufs; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 551 | |
| 552 | for (;;) { |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 553 | bool busyloop_intr; |
| 554 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 555 | /* Release DMAs done buffers first */ |
| 556 | if (zcopy) |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 557 | vhost_zerocopy_signal_used(net, vq); |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 558 | |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 559 | busyloop_intr = false; |
Jason Wang | a2a91a1 | 2018-07-20 08:15:16 +0800 | [diff] [blame^] | 560 | head = get_tx_bufs(net, nvq, &msg, &out, &in, &len, |
| 561 | &busyloop_intr); |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 562 | /* On error, stop handling until the next kick. */ |
Michael S. Tsirkin | 7b3384f | 2010-07-01 18:40:12 +0300 | [diff] [blame] | 563 | if (unlikely(head < 0)) |
Michael S. Tsirkin | d5675bd | 2010-06-24 16:59:59 +0300 | [diff] [blame] | 564 | break; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 565 | /* Nothing new? Wait for eventfd to tell us they refilled. */ |
| 566 | if (head == vq->num) { |
Toshiaki Makita | 027b176 | 2018-07-03 16:31:32 +0900 | [diff] [blame] | 567 | if (unlikely(busyloop_intr)) { |
| 568 | vhost_poll_queue(&vq->poll); |
| 569 | } else if (unlikely(vhost_enable_notify(&net->dev, vq))) { |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 570 | vhost_disable_notify(&net->dev, vq); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 571 | continue; |
| 572 | } |
| 573 | break; |
| 574 | } |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 575 | |
| 576 | zcopy_used = zcopy && len >= VHOST_GOODCOPY_LEN |
Willem de Bruijn | 1e6f745 | 2017-10-06 13:22:31 -0400 | [diff] [blame] | 577 | && !vhost_exceeds_maxpend(net) |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 578 | && vhost_net_tx_select_zcopy(net); |
Michael S. Tsirkin | cedb9bd | 2012-12-06 17:00:18 +0200 | [diff] [blame] | 579 | |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 580 | /* use msg_control to pass vhost zerocopy ubuf info to skb */ |
Michael S. Tsirkin | cedb9bd | 2012-12-06 17:00:18 +0200 | [diff] [blame] | 581 | if (zcopy_used) { |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 582 | struct ubuf_info *ubuf; |
| 583 | ubuf = nvq->ubuf_info + nvq->upend_idx; |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 584 | |
Michael S. Tsirkin | 8b38694 | 2014-10-24 14:19:48 +0300 | [diff] [blame] | 585 | vq->heads[nvq->upend_idx].id = cpu_to_vhost32(vq, head); |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 586 | vq->heads[nvq->upend_idx].len = VHOST_DMA_IN_PROGRESS; |
| 587 | ubuf->callback = vhost_zerocopy_callback; |
| 588 | ubuf->ctx = nvq->ubufs; |
| 589 | ubuf->desc = nvq->upend_idx; |
Eric Dumazet | c1d1b43 | 2017-08-31 16:48:22 -0700 | [diff] [blame] | 590 | refcount_set(&ubuf->refcnt, 1); |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 591 | msg.msg_control = ubuf; |
| 592 | msg.msg_controllen = sizeof(ubuf); |
| 593 | ubufs = nvq->ubufs; |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 594 | atomic_inc(&ubufs->refcount); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 595 | nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV; |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 596 | } else { |
Jason Wang | 4364d5f | 2013-06-05 15:40:46 +0800 | [diff] [blame] | 597 | msg.msg_control = NULL; |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 598 | ubufs = NULL; |
| 599 | } |
Jason Wang | 0ed005c | 2017-01-18 15:02:02 +0800 | [diff] [blame] | 600 | total_len += len; |
| 601 | if (total_len < VHOST_NET_WEIGHT && |
| 602 | !vhost_vq_avail_empty(&net->dev, vq) && |
| 603 | likely(!vhost_exceeds_maxpend(net))) { |
| 604 | msg.msg_flags |= MSG_MORE; |
| 605 | } else { |
| 606 | msg.msg_flags &= ~MSG_MORE; |
| 607 | } |
| 608 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 609 | /* TODO: Check specific error and bomb out unless ENOBUFS? */ |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 610 | err = sock->ops->sendmsg(sock, &msg, len); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 611 | if (unlikely(err < 0)) { |
Michael S. Tsirkin | cedb9bd | 2012-12-06 17:00:18 +0200 | [diff] [blame] | 612 | if (zcopy_used) { |
Jason Wang | ce21a02 | 2013-09-02 16:40:59 +0800 | [diff] [blame] | 613 | vhost_net_ubuf_put(ubufs); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 614 | nvq->upend_idx = ((unsigned)nvq->upend_idx - 1) |
| 615 | % UIO_MAXIOV; |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 616 | } |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 617 | vhost_discard_vq_desc(vq, 1); |
Jason Wang | feb8892 | 2017-11-13 11:45:34 +0800 | [diff] [blame] | 618 | vhost_net_enable_vq(net, vq); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 619 | break; |
| 620 | } |
| 621 | if (err != len) |
Michael S. Tsirkin | 95c0ec6 | 2010-06-24 17:10:25 +0300 | [diff] [blame] | 622 | pr_debug("Truncated TX packet: " |
| 623 | " len %d != %zd\n", err, len); |
Michael S. Tsirkin | cedb9bd | 2012-12-06 17:00:18 +0200 | [diff] [blame] | 624 | if (!zcopy_used) |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 625 | vhost_add_used_and_signal(&net->dev, vq, head, 0); |
Jason Wang | c8fb217 | 2012-05-02 11:42:41 +0800 | [diff] [blame] | 626 | else |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 627 | vhost_zerocopy_signal_used(net, vq); |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 628 | vhost_net_tx_packet(net); |
Jason Wang | 272f35c | 2018-07-20 08:15:15 +0800 | [diff] [blame] | 629 | if (unlikely(vhost_exceeds_weight(++sent_pkts, total_len))) { |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 630 | vhost_poll_queue(&vq->poll); |
| 631 | break; |
| 632 | } |
| 633 | } |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 634 | out: |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 635 | mutex_unlock(&vq->mutex); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 636 | } |
| 637 | |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 638 | static int peek_head_len(struct vhost_net_virtqueue *rvq, struct sock *sk) |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 639 | { |
| 640 | struct sk_buff *head; |
| 641 | int len = 0; |
Jason Wang | 783e398 | 2011-01-17 16:11:17 +0800 | [diff] [blame] | 642 | unsigned long flags; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 643 | |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 644 | if (rvq->rx_ring) |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 645 | return vhost_net_buf_peek(rvq); |
Jason Wang | 1576d98 | 2016-06-30 14:45:36 +0800 | [diff] [blame] | 646 | |
Jason Wang | 783e398 | 2011-01-17 16:11:17 +0800 | [diff] [blame] | 647 | spin_lock_irqsave(&sk->sk_receive_queue.lock, flags); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 648 | head = skb_peek(&sk->sk_receive_queue); |
Basil Gor | c53cff5e | 2012-05-03 22:55:23 +0000 | [diff] [blame] | 649 | if (likely(head)) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 650 | len = head->len; |
Jiri Pirko | df8a39d | 2015-01-13 17:13:44 +0100 | [diff] [blame] | 651 | if (skb_vlan_tag_present(head)) |
Basil Gor | c53cff5e | 2012-05-03 22:55:23 +0000 | [diff] [blame] | 652 | len += VLAN_HLEN; |
| 653 | } |
| 654 | |
Jason Wang | 783e398 | 2011-01-17 16:11:17 +0800 | [diff] [blame] | 655 | spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 656 | return len; |
| 657 | } |
| 658 | |
Jason Wang | 1576d98 | 2016-06-30 14:45:36 +0800 | [diff] [blame] | 659 | static int sk_has_rx_data(struct sock *sk) |
| 660 | { |
| 661 | struct socket *sock = sk->sk_socket; |
| 662 | |
| 663 | if (sock->ops->peek_len) |
| 664 | return sock->ops->peek_len(sock); |
| 665 | |
| 666 | return skb_queue_empty(&sk->sk_receive_queue); |
| 667 | } |
| 668 | |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 669 | static void vhost_rx_signal_used(struct vhost_net_virtqueue *nvq) |
| 670 | { |
| 671 | struct vhost_virtqueue *vq = &nvq->vq; |
| 672 | struct vhost_dev *dev = vq->dev; |
| 673 | |
| 674 | if (!nvq->done_idx) |
| 675 | return; |
| 676 | |
| 677 | vhost_add_used_and_signal_n(dev, vq, vq->heads, nvq->done_idx); |
| 678 | nvq->done_idx = 0; |
| 679 | } |
| 680 | |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 681 | static int vhost_net_rx_peek_head_len(struct vhost_net *net, struct sock *sk, |
| 682 | bool *busyloop_intr) |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 683 | { |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 684 | struct vhost_net_virtqueue *rnvq = &net->vqs[VHOST_NET_VQ_RX]; |
| 685 | struct vhost_net_virtqueue *tnvq = &net->vqs[VHOST_NET_VQ_TX]; |
Toshiaki Makita | 6369fec | 2018-07-03 16:31:34 +0900 | [diff] [blame] | 686 | struct vhost_virtqueue *rvq = &rnvq->vq; |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 687 | struct vhost_virtqueue *tvq = &tnvq->vq; |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 688 | unsigned long uninitialized_var(endtime); |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 689 | int len = peek_head_len(rnvq, sk); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 690 | |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 691 | if (!len && tvq->busyloop_timeout) { |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 692 | /* Flush batched heads first */ |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 693 | vhost_rx_signal_used(rnvq); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 694 | /* Both tx vq and rx socket were polled here */ |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 695 | mutex_lock_nested(&tvq->mutex, 1); |
| 696 | vhost_disable_notify(&net->dev, tvq); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 697 | |
| 698 | preempt_disable(); |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 699 | endtime = busy_clock() + tvq->busyloop_timeout; |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 700 | |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 701 | while (vhost_can_busy_poll(endtime)) { |
| 702 | if (vhost_has_work(&net->dev)) { |
| 703 | *busyloop_intr = true; |
| 704 | break; |
| 705 | } |
Toshiaki Makita | 6369fec | 2018-07-03 16:31:34 +0900 | [diff] [blame] | 706 | if ((sk_has_rx_data(sk) && |
| 707 | !vhost_vq_avail_empty(&net->dev, rvq)) || |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 708 | !vhost_vq_avail_empty(&net->dev, tvq)) |
| 709 | break; |
Christian Borntraeger | f2f09a4 | 2016-10-25 11:03:14 +0200 | [diff] [blame] | 710 | cpu_relax(); |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 711 | } |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 712 | |
| 713 | preempt_enable(); |
| 714 | |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 715 | if (!vhost_vq_avail_empty(&net->dev, tvq)) { |
| 716 | vhost_poll_queue(&tvq->poll); |
| 717 | } else if (unlikely(vhost_enable_notify(&net->dev, tvq))) { |
| 718 | vhost_disable_notify(&net->dev, tvq); |
| 719 | vhost_poll_queue(&tvq->poll); |
Jason Wang | 8b949be | 2017-09-05 09:22:05 +0800 | [diff] [blame] | 720 | } |
| 721 | |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 722 | mutex_unlock(&tvq->mutex); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 723 | |
Toshiaki Makita | 28b9b33 | 2018-07-03 16:31:31 +0900 | [diff] [blame] | 724 | len = peek_head_len(rnvq, sk); |
Jason Wang | 0308813 | 2016-03-04 06:24:53 -0500 | [diff] [blame] | 725 | } |
| 726 | |
| 727 | return len; |
| 728 | } |
| 729 | |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 730 | /* This is a multi-buffer version of vhost_get_desc, that works if |
| 731 | * vq has read descriptors only. |
| 732 | * @vq - the relevant virtqueue |
| 733 | * @datalen - data length we'll be reading |
| 734 | * @iovcount - returned count of io vectors we fill |
| 735 | * @log - vhost log |
| 736 | * @log_num - log offset |
Jason Wang | 9424936 | 2011-01-17 16:11:08 +0800 | [diff] [blame] | 737 | * @quota - headcount quota, 1 for big buffer |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 738 | * returns number of buffer heads allocated, negative on error |
| 739 | */ |
| 740 | static int get_rx_bufs(struct vhost_virtqueue *vq, |
| 741 | struct vring_used_elem *heads, |
| 742 | int datalen, |
| 743 | unsigned *iovcount, |
| 744 | struct vhost_log *log, |
Jason Wang | 9424936 | 2011-01-17 16:11:08 +0800 | [diff] [blame] | 745 | unsigned *log_num, |
| 746 | unsigned int quota) |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 747 | { |
| 748 | unsigned int out, in; |
| 749 | int seg = 0; |
| 750 | int headcount = 0; |
| 751 | unsigned d; |
| 752 | int r, nlogs = 0; |
Michael S. Tsirkin | 8b38694 | 2014-10-24 14:19:48 +0300 | [diff] [blame] | 753 | /* len is always initialized before use since we are always called with |
| 754 | * datalen > 0. |
| 755 | */ |
| 756 | u32 uninitialized_var(len); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 757 | |
Jason Wang | 9424936 | 2011-01-17 16:11:08 +0800 | [diff] [blame] | 758 | while (datalen > 0 && headcount < quota) { |
Jason Wang | e0e9b40 | 2010-09-14 23:53:05 +0800 | [diff] [blame] | 759 | if (unlikely(seg >= UIO_MAXIOV)) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 760 | r = -ENOBUFS; |
| 761 | goto err; |
| 762 | } |
Michael S. Tsirkin | 47283be | 2014-06-05 15:20:27 +0300 | [diff] [blame] | 763 | r = vhost_get_vq_desc(vq, vq->iov + seg, |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 764 | ARRAY_SIZE(vq->iov) - seg, &out, |
| 765 | &in, log, log_num); |
Michael S. Tsirkin | a39ee44 | 2014-03-27 12:53:37 +0200 | [diff] [blame] | 766 | if (unlikely(r < 0)) |
| 767 | goto err; |
| 768 | |
| 769 | d = r; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 770 | if (d == vq->num) { |
| 771 | r = 0; |
| 772 | goto err; |
| 773 | } |
| 774 | if (unlikely(out || in <= 0)) { |
| 775 | vq_err(vq, "unexpected descriptor format for RX: " |
| 776 | "out %d, in %d\n", out, in); |
| 777 | r = -EINVAL; |
| 778 | goto err; |
| 779 | } |
| 780 | if (unlikely(log)) { |
| 781 | nlogs += *log_num; |
| 782 | log += *log_num; |
| 783 | } |
Michael S. Tsirkin | 8b38694 | 2014-10-24 14:19:48 +0300 | [diff] [blame] | 784 | heads[headcount].id = cpu_to_vhost32(vq, d); |
| 785 | len = iov_length(vq->iov + seg, in); |
| 786 | heads[headcount].len = cpu_to_vhost32(vq, len); |
| 787 | datalen -= len; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 788 | ++headcount; |
| 789 | seg += in; |
| 790 | } |
Michael S. Tsirkin | 99975cc | 2015-01-07 10:51:00 +0200 | [diff] [blame] | 791 | heads[headcount - 1].len = cpu_to_vhost32(vq, len + datalen); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 792 | *iovcount = seg; |
| 793 | if (unlikely(log)) |
| 794 | *log_num = nlogs; |
Michael S. Tsirkin | d8316f3 | 2014-03-27 12:00:26 +0200 | [diff] [blame] | 795 | |
| 796 | /* Detect overrun */ |
| 797 | if (unlikely(datalen > 0)) { |
| 798 | r = UIO_MAXIOV + 1; |
| 799 | goto err; |
| 800 | } |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 801 | return headcount; |
| 802 | err: |
| 803 | vhost_discard_vq_desc(vq, headcount); |
| 804 | return r; |
| 805 | } |
| 806 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 807 | /* Expects to be always run from workqueue - which acts as |
| 808 | * read-size critical section for our kind of RCU. */ |
Jason Wang | 9424936 | 2011-01-17 16:11:08 +0800 | [diff] [blame] | 809 | static void handle_rx(struct vhost_net *net) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 810 | { |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 811 | struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX]; |
| 812 | struct vhost_virtqueue *vq = &nvq->vq; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 813 | unsigned uninitialized_var(in), log; |
| 814 | struct vhost_log *vq_log; |
| 815 | struct msghdr msg = { |
| 816 | .msg_name = NULL, |
| 817 | .msg_namelen = 0, |
| 818 | .msg_control = NULL, /* FIXME: get and handle RX aux data. */ |
| 819 | .msg_controllen = 0, |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 820 | .msg_flags = MSG_DONTWAIT, |
| 821 | }; |
Jason Wang | 0960b64 | 2015-02-15 16:35:17 +0800 | [diff] [blame] | 822 | struct virtio_net_hdr hdr = { |
| 823 | .flags = 0, |
| 824 | .gso_type = VIRTIO_NET_HDR_GSO_NONE |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 825 | }; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 826 | size_t total_len = 0; |
Michael S. Tsirkin | 910a578 | 2012-10-24 20:37:51 +0200 | [diff] [blame] | 827 | int err, mergeable; |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 828 | s16 headcount; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 829 | size_t vhost_hlen, sock_hlen; |
| 830 | size_t vhost_len, sock_len; |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 831 | bool busyloop_intr = false; |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 832 | struct socket *sock; |
Al Viro | ba7438ae | 2014-12-10 15:51:28 -0500 | [diff] [blame] | 833 | struct iov_iter fixup; |
Jason Wang | 0960b64 | 2015-02-15 16:35:17 +0800 | [diff] [blame] | 834 | __virtio16 num_buffers; |
Paolo Abeni | db688c2 | 2018-04-24 10:34:36 +0200 | [diff] [blame] | 835 | int recv_pkts = 0; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 836 | |
Jason Wang | aaa3149 | 2018-03-26 16:10:23 +0800 | [diff] [blame] | 837 | mutex_lock_nested(&vq->mutex, 0); |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 838 | sock = vq->private_data; |
| 839 | if (!sock) |
| 840 | goto out; |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 841 | |
| 842 | if (!vq_iotlb_prefetch(vq)) |
| 843 | goto out; |
| 844 | |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 845 | vhost_disable_notify(&net->dev, vq); |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 846 | vhost_net_disable_vq(net, vq); |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 847 | |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 848 | vhost_hlen = nvq->vhost_hlen; |
| 849 | sock_hlen = nvq->sock_hlen; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 850 | |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 851 | vq_log = unlikely(vhost_has_feature(vq, VHOST_F_LOG_ALL)) ? |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 852 | vq->log : NULL; |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 853 | mergeable = vhost_has_feature(vq, VIRTIO_NET_F_MRG_RXBUF); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 854 | |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 855 | while ((sock_len = vhost_net_rx_peek_head_len(net, sock->sk, |
| 856 | &busyloop_intr))) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 857 | sock_len += sock_hlen; |
| 858 | vhost_len = sock_len + vhost_hlen; |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 859 | headcount = get_rx_bufs(vq, vq->heads + nvq->done_idx, |
| 860 | vhost_len, &in, vq_log, &log, |
Jason Wang | 9424936 | 2011-01-17 16:11:08 +0800 | [diff] [blame] | 861 | likely(mergeable) ? UIO_MAXIOV : 1); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 862 | /* On error, stop handling until the next kick. */ |
| 863 | if (unlikely(headcount < 0)) |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 864 | goto out; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 865 | /* OK, now we need to know about added descriptors. */ |
| 866 | if (!headcount) { |
Toshiaki Makita | 6369fec | 2018-07-03 16:31:34 +0900 | [diff] [blame] | 867 | if (unlikely(busyloop_intr)) { |
| 868 | vhost_poll_queue(&vq->poll); |
| 869 | } else if (unlikely(vhost_enable_notify(&net->dev, vq))) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 870 | /* They have slipped one in as we were |
| 871 | * doing that: check again. */ |
Michael S. Tsirkin | 8ea8cf8 | 2011-05-20 02:10:54 +0300 | [diff] [blame] | 872 | vhost_disable_notify(&net->dev, vq); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 873 | continue; |
| 874 | } |
| 875 | /* Nothing new? Wait for eventfd to tell us |
| 876 | * they refilled. */ |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 877 | goto out; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 878 | } |
Toshiaki Makita | 6369fec | 2018-07-03 16:31:34 +0900 | [diff] [blame] | 879 | busyloop_intr = false; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 880 | if (nvq->rx_ring) |
Wei Xu | 6e47408 | 2017-12-01 05:10:36 -0500 | [diff] [blame] | 881 | msg.msg_control = vhost_net_buf_consume(&nvq->rxq); |
| 882 | /* On overrun, truncate and discard */ |
| 883 | if (unlikely(headcount > UIO_MAXIOV)) { |
| 884 | iov_iter_init(&msg.msg_iter, READ, vq->iov, 1, 1); |
| 885 | err = sock->ops->recvmsg(sock, &msg, |
| 886 | 1, MSG_DONTWAIT | MSG_TRUNC); |
| 887 | pr_debug("Discarded rx packet: len %zd\n", sock_len); |
| 888 | continue; |
| 889 | } |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 890 | /* We don't need to be notified again. */ |
Al Viro | ba7438ae | 2014-12-10 15:51:28 -0500 | [diff] [blame] | 891 | iov_iter_init(&msg.msg_iter, READ, vq->iov, in, vhost_len); |
| 892 | fixup = msg.msg_iter; |
| 893 | if (unlikely((vhost_hlen))) { |
| 894 | /* We will supply the header ourselves |
| 895 | * TODO: support TSO. |
| 896 | */ |
| 897 | iov_iter_advance(&msg.msg_iter, vhost_hlen); |
Al Viro | ba7438ae | 2014-12-10 15:51:28 -0500 | [diff] [blame] | 898 | } |
Ying Xue | 1b78414 | 2015-03-02 15:37:48 +0800 | [diff] [blame] | 899 | err = sock->ops->recvmsg(sock, &msg, |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 900 | sock_len, MSG_DONTWAIT | MSG_TRUNC); |
| 901 | /* Userspace might have consumed the packet meanwhile: |
| 902 | * it's not supposed to do this usually, but might be hard |
| 903 | * to prevent. Discard data we got (if any) and keep going. */ |
| 904 | if (unlikely(err != sock_len)) { |
| 905 | pr_debug("Discarded rx packet: " |
| 906 | " len %d, expected %zd\n", err, sock_len); |
| 907 | vhost_discard_vq_desc(vq, headcount); |
| 908 | continue; |
| 909 | } |
Al Viro | ba7438ae | 2014-12-10 15:51:28 -0500 | [diff] [blame] | 910 | /* Supply virtio_net_hdr if VHOST_NET_F_VIRTIO_NET_HDR */ |
Michael S. Tsirkin | 4c5a844 | 2015-02-25 15:19:28 +0100 | [diff] [blame] | 911 | if (unlikely(vhost_hlen)) { |
| 912 | if (copy_to_iter(&hdr, sizeof(hdr), |
| 913 | &fixup) != sizeof(hdr)) { |
| 914 | vq_err(vq, "Unable to write vnet_hdr " |
| 915 | "at addr %p\n", vq->iov->iov_base); |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 916 | goto out; |
Michael S. Tsirkin | 4c5a844 | 2015-02-25 15:19:28 +0100 | [diff] [blame] | 917 | } |
| 918 | } else { |
| 919 | /* Header came from socket; we'll need to patch |
| 920 | * ->num_buffers over if VIRTIO_NET_F_MRG_RXBUF |
| 921 | */ |
| 922 | iov_iter_advance(&fixup, sizeof(hdr)); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 923 | } |
| 924 | /* TODO: Should check and handle checksum. */ |
Michael S. Tsirkin | 5201aa4 | 2015-02-03 11:07:06 +0200 | [diff] [blame] | 925 | |
Jason Wang | 0960b64 | 2015-02-15 16:35:17 +0800 | [diff] [blame] | 926 | num_buffers = cpu_to_vhost16(vq, headcount); |
Jason Wang | cfbdab9 | 2011-01-17 16:10:59 +0800 | [diff] [blame] | 927 | if (likely(mergeable) && |
Michael S. Tsirkin | 0d79a49 | 2015-02-25 15:20:01 +0100 | [diff] [blame] | 928 | copy_to_iter(&num_buffers, sizeof num_buffers, |
| 929 | &fixup) != sizeof num_buffers) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 930 | vq_err(vq, "Failed num_buffers write"); |
| 931 | vhost_discard_vq_desc(vq, headcount); |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 932 | goto out; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 933 | } |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 934 | nvq->done_idx += headcount; |
| 935 | if (nvq->done_idx > VHOST_RX_BATCH) |
| 936 | vhost_rx_signal_used(nvq); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 937 | if (unlikely(vq_log)) |
| 938 | vhost_log_write(vq, vq_log, log, vhost_len); |
| 939 | total_len += vhost_len; |
Jason Wang | 272f35c | 2018-07-20 08:15:15 +0800 | [diff] [blame] | 940 | if (unlikely(vhost_exceeds_weight(++recv_pkts, total_len))) { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 941 | vhost_poll_queue(&vq->poll); |
Jason Wang | 8241a1e | 2016-06-01 01:56:33 -0400 | [diff] [blame] | 942 | goto out; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 943 | } |
| 944 | } |
Toshiaki Makita | be294a5 | 2018-07-03 16:31:33 +0900 | [diff] [blame] | 945 | if (unlikely(busyloop_intr)) |
| 946 | vhost_poll_queue(&vq->poll); |
| 947 | else |
| 948 | vhost_net_enable_vq(net, vq); |
Asias He | 2e26af7 | 2013-05-07 14:54:33 +0800 | [diff] [blame] | 949 | out: |
Jason Wang | f5a4941 | 2018-05-29 14:18:19 +0800 | [diff] [blame] | 950 | vhost_rx_signal_used(nvq); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 951 | mutex_unlock(&vq->mutex); |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 952 | } |
| 953 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 954 | static void handle_tx_kick(struct vhost_work *work) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 955 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 956 | struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, |
| 957 | poll.work); |
| 958 | struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev); |
| 959 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 960 | handle_tx(net); |
| 961 | } |
| 962 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 963 | static void handle_rx_kick(struct vhost_work *work) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 964 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 965 | struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue, |
| 966 | poll.work); |
| 967 | struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev); |
| 968 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 969 | handle_rx(net); |
| 970 | } |
| 971 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 972 | static void handle_tx_net(struct vhost_work *work) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 973 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 974 | struct vhost_net *net = container_of(work, struct vhost_net, |
| 975 | poll[VHOST_NET_VQ_TX].work); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 976 | handle_tx(net); |
| 977 | } |
| 978 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 979 | static void handle_rx_net(struct vhost_work *work) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 980 | { |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 981 | struct vhost_net *net = container_of(work, struct vhost_net, |
| 982 | poll[VHOST_NET_VQ_RX].work); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 983 | handle_rx(net); |
| 984 | } |
| 985 | |
| 986 | static int vhost_net_open(struct inode *inode, struct file *f) |
| 987 | { |
Michael S. Tsirkin | 23cc5a9 | 2013-01-23 21:46:47 +0100 | [diff] [blame] | 988 | struct vhost_net *n; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 989 | struct vhost_dev *dev; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 990 | struct vhost_virtqueue **vqs; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 991 | void **queue; |
Zhi Yong Wu | 59566b6e | 2013-12-07 04:13:03 +0800 | [diff] [blame] | 992 | int i; |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 993 | |
Michal Hocko | dcda9b0 | 2017-07-12 14:36:45 -0700 | [diff] [blame] | 994 | n = kvmalloc(sizeof *n, GFP_KERNEL | __GFP_RETRY_MAYFAIL); |
Michal Hocko | 6c5ab65 | 2017-05-08 15:57:15 -0700 | [diff] [blame] | 995 | if (!n) |
| 996 | return -ENOMEM; |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 997 | vqs = kmalloc_array(VHOST_NET_VQ_MAX, sizeof(*vqs), GFP_KERNEL); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 998 | if (!vqs) { |
Romain Francoise | d04257b | 2014-06-12 10:42:34 +0200 | [diff] [blame] | 999 | kvfree(n); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1000 | return -ENOMEM; |
| 1001 | } |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 1002 | |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1003 | queue = kmalloc_array(VHOST_RX_BATCH, sizeof(void *), |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1004 | GFP_KERNEL); |
| 1005 | if (!queue) { |
| 1006 | kfree(vqs); |
| 1007 | kvfree(n); |
| 1008 | return -ENOMEM; |
| 1009 | } |
| 1010 | n->vqs[VHOST_NET_VQ_RX].rxq.queue = queue; |
| 1011 | |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 1012 | dev = &n->dev; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1013 | vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq; |
| 1014 | vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq; |
| 1015 | n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick; |
| 1016 | n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1017 | for (i = 0; i < VHOST_NET_VQ_MAX; i++) { |
| 1018 | n->vqs[i].ubufs = NULL; |
| 1019 | n->vqs[i].ubuf_info = NULL; |
| 1020 | n->vqs[i].upend_idx = 0; |
| 1021 | n->vqs[i].done_idx = 0; |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 1022 | n->vqs[i].vhost_hlen = 0; |
| 1023 | n->vqs[i].sock_hlen = 0; |
Alexander Potapenko | ab7e34b | 2018-03-09 14:50:32 +0800 | [diff] [blame] | 1024 | n->vqs[i].rx_ring = NULL; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1025 | vhost_net_buf_init(&n->vqs[i].rxq); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1026 | } |
Zhi Yong Wu | 59566b6e | 2013-12-07 04:13:03 +0800 | [diff] [blame] | 1027 | vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1028 | |
Linus Torvalds | a9a0884 | 2018-02-11 14:34:03 -0800 | [diff] [blame] | 1029 | vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, EPOLLOUT, dev); |
| 1030 | vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, EPOLLIN, dev); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1031 | |
| 1032 | f->private_data = n; |
| 1033 | |
| 1034 | return 0; |
| 1035 | } |
| 1036 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1037 | static struct socket *vhost_net_stop_vq(struct vhost_net *n, |
| 1038 | struct vhost_virtqueue *vq) |
| 1039 | { |
| 1040 | struct socket *sock; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1041 | struct vhost_net_virtqueue *nvq = |
| 1042 | container_of(vq, struct vhost_net_virtqueue, vq); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1043 | |
| 1044 | mutex_lock(&vq->mutex); |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 1045 | sock = vq->private_data; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1046 | vhost_net_disable_vq(n, vq); |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 1047 | vq->private_data = NULL; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1048 | vhost_net_buf_unproduce(nvq); |
Jason Wang | 303fd71b | 2018-03-09 14:50:33 +0800 | [diff] [blame] | 1049 | nvq->rx_ring = NULL; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1050 | mutex_unlock(&vq->mutex); |
| 1051 | return sock; |
| 1052 | } |
| 1053 | |
| 1054 | static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock, |
| 1055 | struct socket **rx_sock) |
| 1056 | { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1057 | *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq); |
| 1058 | *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1059 | } |
| 1060 | |
| 1061 | static void vhost_net_flush_vq(struct vhost_net *n, int index) |
| 1062 | { |
| 1063 | vhost_poll_flush(n->poll + index); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1064 | vhost_poll_flush(&n->vqs[index].vq.poll); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1065 | } |
| 1066 | |
| 1067 | static void vhost_net_flush(struct vhost_net *n) |
| 1068 | { |
| 1069 | vhost_net_flush_vq(n, VHOST_NET_VQ_TX); |
| 1070 | vhost_net_flush_vq(n, VHOST_NET_VQ_RX); |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1071 | if (n->vqs[VHOST_NET_VQ_TX].ubufs) { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1072 | mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex); |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 1073 | n->tx_flush = true; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1074 | mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex); |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 1075 | /* Wait for all lower device DMAs done. */ |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 1076 | vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1077 | mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex); |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 1078 | n->tx_flush = false; |
Michael S. Tsirkin | 0ad8b48 | 2014-02-13 11:42:05 +0200 | [diff] [blame] | 1079 | atomic_set(&n->vqs[VHOST_NET_VQ_TX].ubufs->refcount, 1); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1080 | mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex); |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 1081 | } |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1082 | } |
| 1083 | |
| 1084 | static int vhost_net_release(struct inode *inode, struct file *f) |
| 1085 | { |
| 1086 | struct vhost_net *n = f->private_data; |
| 1087 | struct socket *tx_sock; |
| 1088 | struct socket *rx_sock; |
| 1089 | |
| 1090 | vhost_net_stop(n, &tx_sock, &rx_sock); |
| 1091 | vhost_net_flush(n); |
Michael S. Tsirkin | b211616 | 2012-11-01 09:16:46 +0000 | [diff] [blame] | 1092 | vhost_dev_stop(&n->dev); |
夷则(Caspar) | f6f93f7 | 2017-12-25 00:08:58 +0800 | [diff] [blame] | 1093 | vhost_dev_cleanup(&n->dev); |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 1094 | vhost_net_vq_reset(n); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1095 | if (tx_sock) |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1096 | sockfd_put(tx_sock); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1097 | if (rx_sock) |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1098 | sockfd_put(rx_sock); |
Michael S. Tsirkin | b0c057c | 2014-02-13 11:45:11 +0200 | [diff] [blame] | 1099 | /* Make sure no callbacks are outstanding */ |
| 1100 | synchronize_rcu_bh(); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1101 | /* We do an extra flush before freeing memory, |
| 1102 | * since jobs can re-queue themselves. */ |
| 1103 | vhost_net_flush(n); |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1104 | kfree(n->vqs[VHOST_NET_VQ_RX].rxq.queue); |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1105 | kfree(n->dev.vqs); |
Romain Francoise | d04257b | 2014-06-12 10:42:34 +0200 | [diff] [blame] | 1106 | kvfree(n); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1107 | return 0; |
| 1108 | } |
| 1109 | |
| 1110 | static struct socket *get_raw_socket(int fd) |
| 1111 | { |
| 1112 | struct { |
| 1113 | struct sockaddr_ll sa; |
| 1114 | char buf[MAX_ADDR_LEN]; |
| 1115 | } uaddr; |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1116 | int r; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1117 | struct socket *sock = sockfd_lookup(fd, &r); |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1118 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1119 | if (!sock) |
| 1120 | return ERR_PTR(-ENOTSOCK); |
| 1121 | |
| 1122 | /* Parameter checking */ |
| 1123 | if (sock->sk->sk_type != SOCK_RAW) { |
| 1124 | r = -ESOCKTNOSUPPORT; |
| 1125 | goto err; |
| 1126 | } |
| 1127 | |
Denys Vlasenko | 9b2c45d | 2018-02-12 20:00:20 +0100 | [diff] [blame] | 1128 | r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa, 0); |
| 1129 | if (r < 0) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1130 | goto err; |
| 1131 | |
| 1132 | if (uaddr.sa.sll_family != AF_PACKET) { |
| 1133 | r = -EPFNOSUPPORT; |
| 1134 | goto err; |
| 1135 | } |
| 1136 | return sock; |
| 1137 | err: |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1138 | sockfd_put(sock); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1139 | return ERR_PTR(r); |
| 1140 | } |
| 1141 | |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1142 | static struct ptr_ring *get_tap_ptr_ring(int fd) |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1143 | { |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1144 | struct ptr_ring *ring; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1145 | struct file *file = fget(fd); |
| 1146 | |
| 1147 | if (!file) |
| 1148 | return NULL; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1149 | ring = tun_get_tx_ring(file); |
| 1150 | if (!IS_ERR(ring)) |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1151 | goto out; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1152 | ring = tap_get_ptr_ring(file); |
| 1153 | if (!IS_ERR(ring)) |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1154 | goto out; |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1155 | ring = NULL; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1156 | out: |
| 1157 | fput(file); |
Jason Wang | 5990a30 | 2018-01-04 11:14:27 +0800 | [diff] [blame] | 1158 | return ring; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1159 | } |
| 1160 | |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 1161 | static struct socket *get_tap_socket(int fd) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1162 | { |
| 1163 | struct file *file = fget(fd); |
| 1164 | struct socket *sock; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1165 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1166 | if (!file) |
| 1167 | return ERR_PTR(-EBADF); |
| 1168 | sock = tun_get_socket(file); |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 1169 | if (!IS_ERR(sock)) |
| 1170 | return sock; |
Sainath Grandhi | 635b8c8 | 2017-02-10 16:03:47 -0800 | [diff] [blame] | 1171 | sock = tap_get_socket(file); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1172 | if (IS_ERR(sock)) |
| 1173 | fput(file); |
| 1174 | return sock; |
| 1175 | } |
| 1176 | |
| 1177 | static struct socket *get_socket(int fd) |
| 1178 | { |
| 1179 | struct socket *sock; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1180 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1181 | /* special case to disable backend */ |
| 1182 | if (fd == -1) |
| 1183 | return NULL; |
| 1184 | sock = get_raw_socket(fd); |
| 1185 | if (!IS_ERR(sock)) |
| 1186 | return sock; |
Arnd Bergmann | 501c774 | 2010-02-18 05:46:50 +0000 | [diff] [blame] | 1187 | sock = get_tap_socket(fd); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1188 | if (!IS_ERR(sock)) |
| 1189 | return sock; |
| 1190 | return ERR_PTR(-ENOTSOCK); |
| 1191 | } |
| 1192 | |
| 1193 | static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd) |
| 1194 | { |
| 1195 | struct socket *sock, *oldsock; |
| 1196 | struct vhost_virtqueue *vq; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1197 | struct vhost_net_virtqueue *nvq; |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 1198 | struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1199 | int r; |
| 1200 | |
| 1201 | mutex_lock(&n->dev.mutex); |
| 1202 | r = vhost_dev_check_owner(&n->dev); |
| 1203 | if (r) |
| 1204 | goto err; |
| 1205 | |
| 1206 | if (index >= VHOST_NET_VQ_MAX) { |
| 1207 | r = -ENOBUFS; |
| 1208 | goto err; |
| 1209 | } |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1210 | vq = &n->vqs[index].vq; |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1211 | nvq = &n->vqs[index]; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1212 | mutex_lock(&vq->mutex); |
| 1213 | |
| 1214 | /* Verify that ring has been setup correctly. */ |
| 1215 | if (!vhost_vq_access_ok(vq)) { |
| 1216 | r = -EFAULT; |
Jeff Dike | 1dace8c | 2010-03-04 16:10:14 -0500 | [diff] [blame] | 1217 | goto err_vq; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1218 | } |
| 1219 | sock = get_socket(fd); |
| 1220 | if (IS_ERR(sock)) { |
| 1221 | r = PTR_ERR(sock); |
Jeff Dike | 1dace8c | 2010-03-04 16:10:14 -0500 | [diff] [blame] | 1222 | goto err_vq; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1223 | } |
| 1224 | |
| 1225 | /* start polling new socket */ |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 1226 | oldsock = vq->private_data; |
David S. Miller | 11fe883 | 2010-07-20 18:25:24 -0700 | [diff] [blame] | 1227 | if (sock != oldsock) { |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 1228 | ubufs = vhost_net_ubuf_alloc(vq, |
| 1229 | sock && vhost_sock_zcopy(sock)); |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 1230 | if (IS_ERR(ubufs)) { |
| 1231 | r = PTR_ERR(ubufs); |
| 1232 | goto err_ubufs; |
| 1233 | } |
Jason Wang | 692a998 | 2013-01-28 01:05:17 +0000 | [diff] [blame] | 1234 | |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1235 | vhost_net_disable_vq(n, vq); |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 1236 | vq->private_data = sock; |
Jason Wang | c67df11 | 2017-05-17 12:14:45 +0800 | [diff] [blame] | 1237 | vhost_net_buf_unproduce(nvq); |
Greg Kurz | 80f7d03 | 2016-02-16 15:59:44 +0100 | [diff] [blame] | 1238 | r = vhost_vq_init_access(vq); |
Jason Wang | f59281d | 2011-06-21 18:04:27 +0800 | [diff] [blame] | 1239 | if (r) |
Jason Wang | 692a998 | 2013-01-28 01:05:17 +0000 | [diff] [blame] | 1240 | goto err_used; |
Jason Wang | 2b8b328 | 2013-01-28 01:05:18 +0000 | [diff] [blame] | 1241 | r = vhost_net_enable_vq(n, vq); |
| 1242 | if (r) |
| 1243 | goto err_used; |
Jason Wang | 303fd71b | 2018-03-09 14:50:33 +0800 | [diff] [blame] | 1244 | if (index == VHOST_NET_VQ_RX) |
| 1245 | nvq->rx_ring = get_tap_ptr_ring(fd); |
Jason Wang | 692a998 | 2013-01-28 01:05:17 +0000 | [diff] [blame] | 1246 | |
Asias He | 2839400 | 2013-04-27 15:07:46 +0800 | [diff] [blame] | 1247 | oldubufs = nvq->ubufs; |
| 1248 | nvq->ubufs = ubufs; |
Michael S. Tsirkin | 64e9a9b | 2012-12-03 07:31:51 +0000 | [diff] [blame] | 1249 | |
| 1250 | n->tx_packets = 0; |
| 1251 | n->tx_zcopy_err = 0; |
Michael S. Tsirkin | 1280c27 | 2012-12-04 00:17:14 +0200 | [diff] [blame] | 1252 | n->tx_flush = false; |
Jeff Dike | dd1f407 | 2010-03-04 16:10:14 -0500 | [diff] [blame] | 1253 | } |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1254 | |
Michael S. Tsirkin | 1680e90 | 2010-07-15 15:19:12 +0300 | [diff] [blame] | 1255 | mutex_unlock(&vq->mutex); |
| 1256 | |
Michael S. Tsirkin | c047e5f | 2011-07-20 13:41:31 +0300 | [diff] [blame] | 1257 | if (oldubufs) { |
Michael S. Tsirkin | c38e39c | 2013-06-25 17:29:46 +0300 | [diff] [blame] | 1258 | vhost_net_ubuf_put_wait_and_free(oldubufs); |
Michael S. Tsirkin | c047e5f | 2011-07-20 13:41:31 +0300 | [diff] [blame] | 1259 | mutex_lock(&vq->mutex); |
Michael S. Tsirkin | eaae813 | 2012-11-01 09:16:51 +0000 | [diff] [blame] | 1260 | vhost_zerocopy_signal_used(n, vq); |
Michael S. Tsirkin | c047e5f | 2011-07-20 13:41:31 +0300 | [diff] [blame] | 1261 | mutex_unlock(&vq->mutex); |
| 1262 | } |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 1263 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1264 | if (oldsock) { |
| 1265 | vhost_net_flush_vq(n, index); |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1266 | sockfd_put(oldsock); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1267 | } |
Jeff Dike | 1dace8c | 2010-03-04 16:10:14 -0500 | [diff] [blame] | 1268 | |
Michael S. Tsirkin | 1680e90 | 2010-07-15 15:19:12 +0300 | [diff] [blame] | 1269 | mutex_unlock(&n->dev.mutex); |
| 1270 | return 0; |
| 1271 | |
Jason Wang | 692a998 | 2013-01-28 01:05:17 +0000 | [diff] [blame] | 1272 | err_used: |
Asias He | 22fa90c | 2013-05-07 14:54:36 +0800 | [diff] [blame] | 1273 | vq->private_data = oldsock; |
Jason Wang | 692a998 | 2013-01-28 01:05:17 +0000 | [diff] [blame] | 1274 | vhost_net_enable_vq(n, vq); |
| 1275 | if (ubufs) |
Michael S. Tsirkin | c38e39c | 2013-06-25 17:29:46 +0300 | [diff] [blame] | 1276 | vhost_net_ubuf_put_wait_and_free(ubufs); |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 1277 | err_ubufs: |
Jason Wang | b8f1f65 | 2018-06-21 13:11:31 +0800 | [diff] [blame] | 1278 | if (sock) |
| 1279 | sockfd_put(sock); |
Jeff Dike | 1dace8c | 2010-03-04 16:10:14 -0500 | [diff] [blame] | 1280 | err_vq: |
| 1281 | mutex_unlock(&vq->mutex); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1282 | err: |
| 1283 | mutex_unlock(&n->dev.mutex); |
| 1284 | return r; |
| 1285 | } |
| 1286 | |
| 1287 | static long vhost_net_reset_owner(struct vhost_net *n) |
| 1288 | { |
| 1289 | struct socket *tx_sock = NULL; |
| 1290 | struct socket *rx_sock = NULL; |
| 1291 | long err; |
Jason Wang | a9709d6 | 2016-06-23 02:04:31 -0400 | [diff] [blame] | 1292 | struct vhost_umem *umem; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1293 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1294 | mutex_lock(&n->dev.mutex); |
| 1295 | err = vhost_dev_check_owner(&n->dev); |
| 1296 | if (err) |
| 1297 | goto done; |
Jason Wang | a9709d6 | 2016-06-23 02:04:31 -0400 | [diff] [blame] | 1298 | umem = vhost_dev_reset_owner_prepare(); |
| 1299 | if (!umem) { |
Michael S. Tsirkin | 150b9e5 | 2013-04-28 17:12:08 +0300 | [diff] [blame] | 1300 | err = -ENOMEM; |
| 1301 | goto done; |
| 1302 | } |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1303 | vhost_net_stop(n, &tx_sock, &rx_sock); |
| 1304 | vhost_net_flush(n); |
Jason Wang | 4cd8795 | 2018-01-25 22:03:52 +0800 | [diff] [blame] | 1305 | vhost_dev_stop(&n->dev); |
Jason Wang | a9709d6 | 2016-06-23 02:04:31 -0400 | [diff] [blame] | 1306 | vhost_dev_reset_owner(&n->dev, umem); |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 1307 | vhost_net_vq_reset(n); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1308 | done: |
| 1309 | mutex_unlock(&n->dev.mutex); |
| 1310 | if (tx_sock) |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1311 | sockfd_put(tx_sock); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1312 | if (rx_sock) |
Al Viro | 09aaacf | 2014-03-05 20:39:00 -0500 | [diff] [blame] | 1313 | sockfd_put(rx_sock); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1314 | return err; |
| 1315 | } |
| 1316 | |
| 1317 | static int vhost_net_set_features(struct vhost_net *n, u64 features) |
| 1318 | { |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1319 | size_t vhost_hlen, sock_hlen, hdr_len; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1320 | int i; |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1321 | |
Michael S. Tsirkin | e4fca7d | 2014-10-24 14:23:52 +0300 | [diff] [blame] | 1322 | hdr_len = (features & ((1ULL << VIRTIO_NET_F_MRG_RXBUF) | |
| 1323 | (1ULL << VIRTIO_F_VERSION_1))) ? |
David Stevens | 8dd014a | 2010-07-27 18:52:21 +0300 | [diff] [blame] | 1324 | sizeof(struct virtio_net_hdr_mrg_rxbuf) : |
| 1325 | sizeof(struct virtio_net_hdr); |
| 1326 | if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) { |
| 1327 | /* vhost provides vnet_hdr */ |
| 1328 | vhost_hlen = hdr_len; |
| 1329 | sock_hlen = 0; |
| 1330 | } else { |
| 1331 | /* socket provides vnet_hdr */ |
| 1332 | vhost_hlen = 0; |
| 1333 | sock_hlen = hdr_len; |
| 1334 | } |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1335 | mutex_lock(&n->dev.mutex); |
| 1336 | if ((features & (1 << VHOST_F_LOG_ALL)) && |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1337 | !vhost_log_access_ok(&n->dev)) |
| 1338 | goto out_unlock; |
| 1339 | |
| 1340 | if ((features & (1ULL << VIRTIO_F_IOMMU_PLATFORM))) { |
| 1341 | if (vhost_init_device_iotlb(&n->dev, true)) |
| 1342 | goto out_unlock; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1343 | } |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1344 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1345 | for (i = 0; i < VHOST_NET_VQ_MAX; ++i) { |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1346 | mutex_lock(&n->vqs[i].vq.mutex); |
Michael S. Tsirkin | ea16c51 | 2014-06-05 15:20:23 +0300 | [diff] [blame] | 1347 | n->vqs[i].vq.acked_features = features; |
Michael S. Tsirkin | 81f95a5 | 2013-04-28 15:51:40 +0300 | [diff] [blame] | 1348 | n->vqs[i].vhost_hlen = vhost_hlen; |
| 1349 | n->vqs[i].sock_hlen = sock_hlen; |
Asias He | 3ab2e42 | 2013-04-27 11:16:48 +0800 | [diff] [blame] | 1350 | mutex_unlock(&n->vqs[i].vq.mutex); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1351 | } |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1352 | mutex_unlock(&n->dev.mutex); |
| 1353 | return 0; |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1354 | |
| 1355 | out_unlock: |
| 1356 | mutex_unlock(&n->dev.mutex); |
| 1357 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1358 | } |
| 1359 | |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 1360 | static long vhost_net_set_owner(struct vhost_net *n) |
| 1361 | { |
| 1362 | int r; |
| 1363 | |
| 1364 | mutex_lock(&n->dev.mutex); |
Michael S. Tsirkin | 05c0535 | 2013-06-06 15:20:39 +0300 | [diff] [blame] | 1365 | if (vhost_dev_has_owner(&n->dev)) { |
| 1366 | r = -EBUSY; |
| 1367 | goto out; |
| 1368 | } |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 1369 | r = vhost_net_set_ubuf_info(n); |
| 1370 | if (r) |
| 1371 | goto out; |
| 1372 | r = vhost_dev_set_owner(&n->dev); |
| 1373 | if (r) |
| 1374 | vhost_net_clear_ubuf_info(n); |
| 1375 | vhost_net_flush(n); |
| 1376 | out: |
| 1377 | mutex_unlock(&n->dev.mutex); |
| 1378 | return r; |
| 1379 | } |
| 1380 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1381 | static long vhost_net_ioctl(struct file *f, unsigned int ioctl, |
| 1382 | unsigned long arg) |
| 1383 | { |
| 1384 | struct vhost_net *n = f->private_data; |
| 1385 | void __user *argp = (void __user *)arg; |
| 1386 | u64 __user *featurep = argp; |
| 1387 | struct vhost_vring_file backend; |
| 1388 | u64 features; |
| 1389 | int r; |
Krishna Kumar | d47effe | 2011-03-01 17:06:37 +0530 | [diff] [blame] | 1390 | |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1391 | switch (ioctl) { |
| 1392 | case VHOST_NET_SET_BACKEND: |
Takuya Yoshikawa | d3553a5 | 2010-05-27 19:01:58 +0900 | [diff] [blame] | 1393 | if (copy_from_user(&backend, argp, sizeof backend)) |
| 1394 | return -EFAULT; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1395 | return vhost_net_set_backend(n, backend.index, backend.fd); |
| 1396 | case VHOST_GET_FEATURES: |
Stefan Hajnoczi | 0dd05a3 | 2012-07-21 06:55:36 +0000 | [diff] [blame] | 1397 | features = VHOST_NET_FEATURES; |
Takuya Yoshikawa | d3553a5 | 2010-05-27 19:01:58 +0900 | [diff] [blame] | 1398 | if (copy_to_user(featurep, &features, sizeof features)) |
| 1399 | return -EFAULT; |
| 1400 | return 0; |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1401 | case VHOST_SET_FEATURES: |
Takuya Yoshikawa | d3553a5 | 2010-05-27 19:01:58 +0900 | [diff] [blame] | 1402 | if (copy_from_user(&features, featurep, sizeof features)) |
| 1403 | return -EFAULT; |
Stefan Hajnoczi | 0dd05a3 | 2012-07-21 06:55:36 +0000 | [diff] [blame] | 1404 | if (features & ~VHOST_NET_FEATURES) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1405 | return -EOPNOTSUPP; |
| 1406 | return vhost_net_set_features(n, features); |
| 1407 | case VHOST_RESET_OWNER: |
| 1408 | return vhost_net_reset_owner(n); |
Asias He | b1ad849 | 2013-05-06 11:16:00 +0800 | [diff] [blame] | 1409 | case VHOST_SET_OWNER: |
| 1410 | return vhost_net_set_owner(n); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1411 | default: |
| 1412 | mutex_lock(&n->dev.mutex); |
Michael S. Tsirkin | 935cdee | 2012-12-06 14:03:34 +0200 | [diff] [blame] | 1413 | r = vhost_dev_ioctl(&n->dev, ioctl, argp); |
| 1414 | if (r == -ENOIOCTLCMD) |
| 1415 | r = vhost_vring_ioctl(&n->dev, ioctl, argp); |
| 1416 | else |
| 1417 | vhost_net_flush(n); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1418 | mutex_unlock(&n->dev.mutex); |
| 1419 | return r; |
| 1420 | } |
| 1421 | } |
| 1422 | |
| 1423 | #ifdef CONFIG_COMPAT |
| 1424 | static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl, |
| 1425 | unsigned long arg) |
| 1426 | { |
| 1427 | return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg)); |
| 1428 | } |
| 1429 | #endif |
| 1430 | |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1431 | static ssize_t vhost_net_chr_read_iter(struct kiocb *iocb, struct iov_iter *to) |
| 1432 | { |
| 1433 | struct file *file = iocb->ki_filp; |
| 1434 | struct vhost_net *n = file->private_data; |
| 1435 | struct vhost_dev *dev = &n->dev; |
| 1436 | int noblock = file->f_flags & O_NONBLOCK; |
| 1437 | |
| 1438 | return vhost_chr_read_iter(dev, to, noblock); |
| 1439 | } |
| 1440 | |
| 1441 | static ssize_t vhost_net_chr_write_iter(struct kiocb *iocb, |
| 1442 | struct iov_iter *from) |
| 1443 | { |
| 1444 | struct file *file = iocb->ki_filp; |
| 1445 | struct vhost_net *n = file->private_data; |
| 1446 | struct vhost_dev *dev = &n->dev; |
| 1447 | |
| 1448 | return vhost_chr_write_iter(dev, from); |
| 1449 | } |
| 1450 | |
Al Viro | afc9a42 | 2017-07-03 06:39:46 -0400 | [diff] [blame] | 1451 | static __poll_t vhost_net_chr_poll(struct file *file, poll_table *wait) |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1452 | { |
| 1453 | struct vhost_net *n = file->private_data; |
| 1454 | struct vhost_dev *dev = &n->dev; |
| 1455 | |
| 1456 | return vhost_chr_poll(file, dev, wait); |
| 1457 | } |
| 1458 | |
Tobias Klauser | 373a83a | 2010-05-17 15:12:49 +0200 | [diff] [blame] | 1459 | static const struct file_operations vhost_net_fops = { |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1460 | .owner = THIS_MODULE, |
| 1461 | .release = vhost_net_release, |
Jason Wang | 6b1e6cc | 2016-06-23 02:04:32 -0400 | [diff] [blame] | 1462 | .read_iter = vhost_net_chr_read_iter, |
| 1463 | .write_iter = vhost_net_chr_write_iter, |
| 1464 | .poll = vhost_net_chr_poll, |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1465 | .unlocked_ioctl = vhost_net_ioctl, |
| 1466 | #ifdef CONFIG_COMPAT |
| 1467 | .compat_ioctl = vhost_net_compat_ioctl, |
| 1468 | #endif |
| 1469 | .open = vhost_net_open, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 1470 | .llseek = noop_llseek, |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1471 | }; |
| 1472 | |
| 1473 | static struct miscdevice vhost_net_misc = { |
stephen hemminger | 7c7c7f0 | 2012-01-11 19:30:38 +0000 | [diff] [blame] | 1474 | .minor = VHOST_NET_MINOR, |
| 1475 | .name = "vhost-net", |
| 1476 | .fops = &vhost_net_fops, |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1477 | }; |
| 1478 | |
Christoph Hellwig | a8d3782 | 2010-04-13 14:11:25 -0400 | [diff] [blame] | 1479 | static int vhost_net_init(void) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1480 | { |
Michael S. Tsirkin | bab632d | 2011-07-18 03:48:46 +0000 | [diff] [blame] | 1481 | if (experimental_zcopytx) |
Asias He | fe729a5 | 2013-05-06 16:38:24 +0800 | [diff] [blame] | 1482 | vhost_net_enable_zcopy(VHOST_NET_VQ_TX); |
Tejun Heo | c23f3445 | 2010-06-02 20:40:00 +0200 | [diff] [blame] | 1483 | return misc_register(&vhost_net_misc); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1484 | } |
| 1485 | module_init(vhost_net_init); |
| 1486 | |
Christoph Hellwig | a8d3782 | 2010-04-13 14:11:25 -0400 | [diff] [blame] | 1487 | static void vhost_net_exit(void) |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1488 | { |
| 1489 | misc_deregister(&vhost_net_misc); |
Michael S. Tsirkin | 3a4d5c9 | 2010-01-14 06:17:27 +0000 | [diff] [blame] | 1490 | } |
| 1491 | module_exit(vhost_net_exit); |
| 1492 | |
| 1493 | MODULE_VERSION("0.0.1"); |
| 1494 | MODULE_LICENSE("GPL v2"); |
| 1495 | MODULE_AUTHOR("Michael S. Tsirkin"); |
| 1496 | MODULE_DESCRIPTION("Host kernel accelerator for virtio net"); |
stephen hemminger | 7c7c7f0 | 2012-01-11 19:30:38 +0000 | [diff] [blame] | 1497 | MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR); |
| 1498 | MODULE_ALIAS("devname:vhost-net"); |