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