blob: 8cf5aece8c84d0a4ec68243f5fdfe2bc08c1ab45 [file] [log] [blame]
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001/* 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. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000013#include <linux/miscdevice.h>
14#include <linux/module.h>
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000015#include <linux/moduleparam.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000016#include <linux/mutex.h>
17#include <linux/workqueue.h>
18#include <linux/rcupdate.h>
19#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000021
22#include <linux/net.h>
23#include <linux/if_packet.h>
24#include <linux/if_arp.h>
25#include <linux/if_tun.h>
Arnd Bergmann501c7742010-02-18 05:46:50 +000026#include <linux/if_macvlan.h>
Basil Gorc53cff5e2012-05-03 22:55:23 +000027#include <linux/if_vlan.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000028
29#include <net/sock.h>
30
31#include "vhost.h"
32
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020033static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000034module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020035MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
36 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000037
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000038/* Max number of bytes transferred before requeueing the job.
39 * Using this limit prevents one virtqueue from starving others. */
40#define VHOST_NET_WEIGHT 0x80000
41
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000042/* MAX number of TX used buffers for outstanding zerocopy */
43#define VHOST_MAX_PEND 128
44#define VHOST_GOODCOPY_LEN 256
45
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000046/*
47 * For transmit, used buffer len is unused; we override it to track buffer
48 * status internally; used for zerocopy tx only.
49 */
50/* Lower device DMA failed */
51#define VHOST_DMA_FAILED_LEN 3
52/* Lower device DMA done */
53#define VHOST_DMA_DONE_LEN 2
54/* Lower device DMA in progress */
55#define VHOST_DMA_IN_PROGRESS 1
56/* Buffer unused */
57#define VHOST_DMA_CLEAR_LEN 0
58
59#define VHOST_DMA_IS_DONE(len) ((len) >= VHOST_DMA_DONE_LEN)
60
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000061enum {
Asias He8570a6e2013-05-06 16:38:20 +080062 VHOST_NET_FEATURES = VHOST_FEATURES |
63 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
64 (1ULL << VIRTIO_NET_F_MRG_RXBUF),
65};
66
67enum {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000068 VHOST_NET_VQ_RX = 0,
69 VHOST_NET_VQ_TX = 1,
70 VHOST_NET_VQ_MAX = 2,
71};
72
Asias Hefe729a52013-05-06 16:38:24 +080073struct vhost_net_ubuf_ref {
Asias He28394002013-04-27 15:07:46 +080074 struct kref kref;
75 wait_queue_head_t wait;
76 struct vhost_virtqueue *vq;
77};
78
Asias He3ab2e422013-04-27 11:16:48 +080079struct vhost_net_virtqueue {
80 struct vhost_virtqueue vq;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +030081 /* hdr is used to store the virtio header.
82 * Since each iovec has >= 1 byte length, we never need more than
83 * header length entries to store the header. */
84 struct iovec hdr[sizeof(struct virtio_net_hdr_mrg_rxbuf)];
85 size_t vhost_hlen;
86 size_t sock_hlen;
Asias He28394002013-04-27 15:07:46 +080087 /* vhost zerocopy support fields below: */
88 /* last used idx for outstanding DMA zerocopy buffers */
89 int upend_idx;
90 /* first used idx for DMA done zerocopy buffers */
91 int done_idx;
92 /* an array of userspace buffers info */
93 struct ubuf_info *ubuf_info;
94 /* Reference counting for outstanding ubufs.
95 * Protected by vq mutex. Writers must also take device mutex. */
Asias Hefe729a52013-05-06 16:38:24 +080096 struct vhost_net_ubuf_ref *ubufs;
Asias He3ab2e422013-04-27 11:16:48 +080097};
98
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000099struct vhost_net {
100 struct vhost_dev dev;
Asias He3ab2e422013-04-27 11:16:48 +0800101 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000102 struct vhost_poll poll[VHOST_NET_VQ_MAX];
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000103 /* Number of TX recently submitted.
104 * Protected by tx vq lock. */
105 unsigned tx_packets;
106 /* Number of times zerocopy TX recently failed.
107 * Protected by tx vq lock. */
108 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200109 /* Flush in progress. Protected by tx vq lock. */
110 bool tx_flush;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000111};
112
Asias Hefe729a52013-05-06 16:38:24 +0800113static unsigned vhost_net_zcopy_mask __read_mostly;
Asias He28394002013-04-27 15:07:46 +0800114
Asias Hefe729a52013-05-06 16:38:24 +0800115static void vhost_net_enable_zcopy(int vq)
Asias He28394002013-04-27 15:07:46 +0800116{
Asias Hefe729a52013-05-06 16:38:24 +0800117 vhost_net_zcopy_mask |= 0x1 << vq;
Asias He28394002013-04-27 15:07:46 +0800118}
119
Asias Hefe729a52013-05-06 16:38:24 +0800120static void vhost_net_zerocopy_done_signal(struct kref *kref)
Asias He28394002013-04-27 15:07:46 +0800121{
Asias Hefe729a52013-05-06 16:38:24 +0800122 struct vhost_net_ubuf_ref *ubufs;
123
124 ubufs = container_of(kref, struct vhost_net_ubuf_ref, kref);
Asias He28394002013-04-27 15:07:46 +0800125 wake_up(&ubufs->wait);
126}
127
Asias Hefe729a52013-05-06 16:38:24 +0800128static struct vhost_net_ubuf_ref *
129vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
Asias He28394002013-04-27 15:07:46 +0800130{
Asias Hefe729a52013-05-06 16:38:24 +0800131 struct vhost_net_ubuf_ref *ubufs;
Asias He28394002013-04-27 15:07:46 +0800132 /* No zero copy backend? Nothing to count. */
133 if (!zcopy)
134 return NULL;
135 ubufs = kmalloc(sizeof(*ubufs), GFP_KERNEL);
136 if (!ubufs)
137 return ERR_PTR(-ENOMEM);
138 kref_init(&ubufs->kref);
139 init_waitqueue_head(&ubufs->wait);
140 ubufs->vq = vq;
141 return ubufs;
142}
143
Asias Hefe729a52013-05-06 16:38:24 +0800144static void vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800145{
Asias Hefe729a52013-05-06 16:38:24 +0800146 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
Asias He28394002013-04-27 15:07:46 +0800147}
148
Asias Hefe729a52013-05-06 16:38:24 +0800149static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
Asias He28394002013-04-27 15:07:46 +0800150{
Asias Hefe729a52013-05-06 16:38:24 +0800151 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
Asias He28394002013-04-27 15:07:46 +0800152 wait_event(ubufs->wait, !atomic_read(&ubufs->kref.refcount));
153 kfree(ubufs);
154}
155
Asias Heb1ad8492013-05-06 11:16:00 +0800156static void vhost_net_clear_ubuf_info(struct vhost_net *n)
157{
158
159 bool zcopy;
160 int i;
161
162 for (i = 0; i < n->dev.nvqs; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800163 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias Heb1ad8492013-05-06 11:16:00 +0800164 if (zcopy)
165 kfree(n->vqs[i].ubuf_info);
166 }
167}
168
Asias He28394002013-04-27 15:07:46 +0800169int vhost_net_set_ubuf_info(struct vhost_net *n)
170{
171 bool zcopy;
172 int i;
173
174 for (i = 0; i < n->dev.nvqs; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800175 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800176 if (!zcopy)
177 continue;
178 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
179 UIO_MAXIOV, GFP_KERNEL);
180 if (!n->vqs[i].ubuf_info)
181 goto err;
182 }
183 return 0;
184
185err:
186 while (i--) {
Asias Hefe729a52013-05-06 16:38:24 +0800187 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800188 if (!zcopy)
189 continue;
190 kfree(n->vqs[i].ubuf_info);
191 }
192 return -ENOMEM;
193}
194
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300195void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800196{
197 int i;
198
199 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
200 n->vqs[i].done_idx = 0;
201 n->vqs[i].upend_idx = 0;
202 n->vqs[i].ubufs = NULL;
203 kfree(n->vqs[i].ubuf_info);
204 n->vqs[i].ubuf_info = NULL;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300205 n->vqs[i].vhost_hlen = 0;
206 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800207 }
208
209}
210
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000211static void vhost_net_tx_packet(struct vhost_net *net)
212{
213 ++net->tx_packets;
214 if (net->tx_packets < 1024)
215 return;
216 net->tx_packets = 0;
217 net->tx_zcopy_err = 0;
218}
219
220static void vhost_net_tx_err(struct vhost_net *net)
221{
222 ++net->tx_zcopy_err;
223}
224
225static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
226{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200227 /* TX flush waits for outstanding DMAs to be done.
228 * Don't start new DMAs.
229 */
230 return !net->tx_flush &&
231 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000232}
233
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000234static bool vhost_sock_zcopy(struct socket *sock)
235{
236 return unlikely(experimental_zcopytx) &&
237 sock_flag(sock->sk, SOCK_ZEROCOPY);
238}
239
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000240/* Pop first len bytes from iovec. Return number of segments used. */
241static int move_iovec_hdr(struct iovec *from, struct iovec *to,
242 size_t len, int iov_count)
243{
244 int seg = 0;
245 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530246
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000247 while (len && seg < iov_count) {
248 size = min(from->iov_len, len);
249 to->iov_base = from->iov_base;
250 to->iov_len = size;
251 from->iov_len -= size;
252 from->iov_base += size;
253 len -= size;
254 ++from;
255 ++to;
256 ++seg;
257 }
258 return seg;
259}
David Stevens8dd014a2010-07-27 18:52:21 +0300260/* Copy iovec entries for len bytes from iovec. */
261static void copy_iovec_hdr(const struct iovec *from, struct iovec *to,
262 size_t len, int iovcount)
263{
264 int seg = 0;
265 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530266
David Stevens8dd014a2010-07-27 18:52:21 +0300267 while (len && seg < iovcount) {
268 size = min(from->iov_len, len);
269 to->iov_base = from->iov_base;
270 to->iov_len = size;
271 len -= size;
272 ++from;
273 ++to;
274 ++seg;
275 }
276}
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000277
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000278/* In case of DMA done not in order in lower device driver for some reason.
279 * upend_idx is used to track end of used idx, done_idx is used to track head
280 * of used idx. Once lower device DMA done contiguously, we will signal KVM
281 * guest used idx.
282 */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000283static int vhost_zerocopy_signal_used(struct vhost_net *net,
284 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000285{
Asias He28394002013-04-27 15:07:46 +0800286 struct vhost_net_virtqueue *nvq =
287 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000288 int i;
289 int j = 0;
290
Asias He28394002013-04-27 15:07:46 +0800291 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000292 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
293 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000294 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
295 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
296 vhost_add_used_and_signal(vq->dev, vq,
297 vq->heads[i].id, 0);
298 ++j;
299 } else
300 break;
301 }
302 if (j)
Asias He28394002013-04-27 15:07:46 +0800303 nvq->done_idx = i;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000304 return j;
305}
306
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000307static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000308{
Asias Hefe729a52013-05-06 16:38:24 +0800309 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000310 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000311 int cnt = atomic_read(&ubufs->kref.refcount);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000312
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000313 /*
314 * Trigger polling thread if guest stopped submitting new buffers:
315 * in this case, the refcount after decrement will eventually reach 1
316 * so here it is 2.
317 * We also trigger polling periodically after each 16 packets
318 * (the value 16 here is more or less arbitrary, it's tuned to trigger
319 * less than 10% of times).
320 */
321 if (cnt <= 2 || !(cnt % 16))
322 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000323 /* set len to mark this desc buffers done DMA */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000324 vq->heads[ubuf->desc].len = success ?
325 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Asias Hefe729a52013-05-06 16:38:24 +0800326 vhost_net_ubuf_put(ubufs);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000327}
328
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000329/* Expects to be always run from workqueue - which acts as
330 * read-size critical section for our kind of RCU. */
331static void handle_tx(struct vhost_net *net)
332{
Asias He28394002013-04-27 15:07:46 +0800333 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300334 struct vhost_virtqueue *vq = &nvq->vq;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300335 unsigned out, in, s;
336 int head;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000337 struct msghdr msg = {
338 .msg_name = NULL,
339 .msg_namelen = 0,
340 .msg_control = NULL,
341 .msg_controllen = 0,
342 .msg_iov = vq->iov,
343 .msg_flags = MSG_DONTWAIT,
344 };
345 size_t len, total_len = 0;
Jason Wang70181d512013-04-10 20:50:48 +0000346 int err;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000347 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100348 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800349 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200350 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100351
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200352 /* TODO: check that we are running from vhost_worker? */
Michael S. Tsirkin11cd1a82010-11-14 17:31:52 +0200353 sock = rcu_dereference_check(vq->private_data, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000354 if (!sock)
355 return;
356
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000357 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300358 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000359
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300360 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800361 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000362
363 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000364 /* Release DMAs done buffers first */
365 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000366 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000367
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000368 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
369 ARRAY_SIZE(vq->iov),
370 &out, &in,
371 NULL, NULL);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300372 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300373 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300374 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000375 /* Nothing new? Wait for eventfd to tell us they refilled. */
376 if (head == vq->num) {
Shirley Ma9e380822011-07-20 10:23:12 -0700377 int num_pends;
378
Shirley Ma9e380822011-07-20 10:23:12 -0700379 /* If more outstanding DMAs, queue the work.
380 * Handle upend_idx wrap around
381 */
Asias He28394002013-04-27 15:07:46 +0800382 num_pends = likely(nvq->upend_idx >= nvq->done_idx) ?
383 (nvq->upend_idx - nvq->done_idx) :
384 (nvq->upend_idx + UIO_MAXIOV -
385 nvq->done_idx);
Jason Wang70181d512013-04-10 20:50:48 +0000386 if (unlikely(num_pends > VHOST_MAX_PEND))
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000387 break;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300388 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
389 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000390 continue;
391 }
392 break;
393 }
394 if (in) {
395 vq_err(vq, "Unexpected descriptor format for TX: "
396 "out %d, int %d\n", out, in);
397 break;
398 }
399 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300400 s = move_iovec_hdr(vq->iov, nvq->hdr, hdr_size, out);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000401 msg.msg_iovlen = out;
402 len = iov_length(vq->iov, out);
403 /* Sanity check */
404 if (!len) {
405 vq_err(vq, "Unexpected header len for TX: "
406 "%zd expected %zd\n",
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300407 iov_length(nvq->hdr, s), hdr_size);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000408 break;
409 }
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200410 zcopy_used = zcopy && (len >= VHOST_GOODCOPY_LEN ||
Asias He28394002013-04-27 15:07:46 +0800411 nvq->upend_idx != nvq->done_idx);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200412
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000413 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200414 if (zcopy_used) {
Asias He28394002013-04-27 15:07:46 +0800415 vq->heads[nvq->upend_idx].id = head;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000416 if (!vhost_net_tx_select_zcopy(net) ||
417 len < VHOST_GOODCOPY_LEN) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000418 /* copy don't need to wait for DMA done */
Asias He28394002013-04-27 15:07:46 +0800419 vq->heads[nvq->upend_idx].len =
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000420 VHOST_DMA_DONE_LEN;
421 msg.msg_control = NULL;
422 msg.msg_controllen = 0;
423 ubufs = NULL;
424 } else {
Michael S. Tsirkin46aa92d2013-03-17 02:46:09 +0000425 struct ubuf_info *ubuf;
Asias He28394002013-04-27 15:07:46 +0800426 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000427
Asias He28394002013-04-27 15:07:46 +0800428 vq->heads[nvq->upend_idx].len =
Michael S. Tsirkin70e4cb92012-11-01 09:16:37 +0000429 VHOST_DMA_IN_PROGRESS;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000430 ubuf->callback = vhost_zerocopy_callback;
Asias He28394002013-04-27 15:07:46 +0800431 ubuf->ctx = nvq->ubufs;
432 ubuf->desc = nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000433 msg.msg_control = ubuf;
434 msg.msg_controllen = sizeof(ubuf);
Asias He28394002013-04-27 15:07:46 +0800435 ubufs = nvq->ubufs;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000436 kref_get(&ubufs->kref);
437 }
Asias He28394002013-04-27 15:07:46 +0800438 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wang4364d5f2013-06-05 15:40:46 +0800439 } else
440 msg.msg_control = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000441 /* TODO: Check specific error and bomb out unless ENOBUFS? */
442 err = sock->ops->sendmsg(NULL, sock, &msg, len);
443 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200444 if (zcopy_used) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000445 if (ubufs)
Asias Hefe729a52013-05-06 16:38:24 +0800446 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800447 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
448 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000449 }
David Stevens8dd014a2010-07-27 18:52:21 +0300450 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000451 break;
452 }
453 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300454 pr_debug("Truncated TX packet: "
455 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200456 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000457 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800458 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000459 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000460 total_len += len;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000461 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000462 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
463 vhost_poll_queue(&vq->poll);
464 break;
465 }
466 }
467
468 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000469}
470
David Stevens8dd014a2010-07-27 18:52:21 +0300471static int peek_head_len(struct sock *sk)
472{
473 struct sk_buff *head;
474 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800475 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300476
Jason Wang783e3982011-01-17 16:11:17 +0800477 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300478 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000479 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300480 len = head->len;
Basil Gorc53cff5e2012-05-03 22:55:23 +0000481 if (vlan_tx_tag_present(head))
482 len += VLAN_HLEN;
483 }
484
Jason Wang783e3982011-01-17 16:11:17 +0800485 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300486 return len;
487}
488
489/* This is a multi-buffer version of vhost_get_desc, that works if
490 * vq has read descriptors only.
491 * @vq - the relevant virtqueue
492 * @datalen - data length we'll be reading
493 * @iovcount - returned count of io vectors we fill
494 * @log - vhost log
495 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800496 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300497 * returns number of buffer heads allocated, negative on error
498 */
499static int get_rx_bufs(struct vhost_virtqueue *vq,
500 struct vring_used_elem *heads,
501 int datalen,
502 unsigned *iovcount,
503 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800504 unsigned *log_num,
505 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300506{
507 unsigned int out, in;
508 int seg = 0;
509 int headcount = 0;
510 unsigned d;
511 int r, nlogs = 0;
512
Jason Wang94249362011-01-17 16:11:08 +0800513 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800514 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300515 r = -ENOBUFS;
516 goto err;
517 }
518 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
519 ARRAY_SIZE(vq->iov) - seg, &out,
520 &in, log, log_num);
521 if (d == vq->num) {
522 r = 0;
523 goto err;
524 }
525 if (unlikely(out || in <= 0)) {
526 vq_err(vq, "unexpected descriptor format for RX: "
527 "out %d, in %d\n", out, in);
528 r = -EINVAL;
529 goto err;
530 }
531 if (unlikely(log)) {
532 nlogs += *log_num;
533 log += *log_num;
534 }
535 heads[headcount].id = d;
536 heads[headcount].len = iov_length(vq->iov + seg, in);
537 datalen -= heads[headcount].len;
538 ++headcount;
539 seg += in;
540 }
541 heads[headcount - 1].len += datalen;
542 *iovcount = seg;
543 if (unlikely(log))
544 *log_num = nlogs;
545 return headcount;
546err:
547 vhost_discard_vq_desc(vq, headcount);
548 return r;
549}
550
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000551/* Expects to be always run from workqueue - which acts as
552 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800553static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000554{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300555 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
556 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300557 unsigned uninitialized_var(in), log;
558 struct vhost_log *vq_log;
559 struct msghdr msg = {
560 .msg_name = NULL,
561 .msg_namelen = 0,
562 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
563 .msg_controllen = 0,
564 .msg_iov = vq->iov,
565 .msg_flags = MSG_DONTWAIT,
566 };
David Stevens8dd014a2010-07-27 18:52:21 +0300567 struct virtio_net_hdr_mrg_rxbuf hdr = {
568 .hdr.flags = 0,
569 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
570 };
David Stevens8dd014a2010-07-27 18:52:21 +0300571 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200572 int err, mergeable;
573 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300574 size_t vhost_hlen, sock_hlen;
575 size_t vhost_len, sock_len;
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200576 /* TODO: check that we are running from vhost_worker? */
577 struct socket *sock = rcu_dereference_check(vq->private_data, 1);
Krishna Kumard47effe2011-03-01 17:06:37 +0530578
Michael S. Tsirkinde4d7682011-03-13 23:00:52 +0200579 if (!sock)
David Stevens8dd014a2010-07-27 18:52:21 +0300580 return;
581
David Stevens8dd014a2010-07-27 18:52:21 +0300582 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300583 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300584 vhost_hlen = nvq->vhost_hlen;
585 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300586
587 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
588 vq->log : NULL;
Jason Wangcfbdab92011-01-17 16:10:59 +0800589 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300590
591 while ((sock_len = peek_head_len(sock->sk))) {
592 sock_len += sock_hlen;
593 vhost_len = sock_len + vhost_hlen;
594 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800595 &in, vq_log, &log,
596 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300597 /* On error, stop handling until the next kick. */
598 if (unlikely(headcount < 0))
599 break;
600 /* OK, now we need to know about added descriptors. */
601 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300602 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300603 /* They have slipped one in as we were
604 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300605 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300606 continue;
607 }
608 /* Nothing new? Wait for eventfd to tell us
609 * they refilled. */
610 break;
611 }
612 /* We don't need to be notified again. */
613 if (unlikely((vhost_hlen)))
614 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300615 move_iovec_hdr(vq->iov, nvq->hdr, vhost_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300616 else
617 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
Jason Wanga290aec2010-11-29 13:48:40 +0800618 * needed because recvmsg can modify msg_iov. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300619 copy_iovec_hdr(vq->iov, nvq->hdr, sock_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300620 msg.msg_iovlen = in;
621 err = sock->ops->recvmsg(NULL, sock, &msg,
622 sock_len, MSG_DONTWAIT | MSG_TRUNC);
623 /* Userspace might have consumed the packet meanwhile:
624 * it's not supposed to do this usually, but might be hard
625 * to prevent. Discard data we got (if any) and keep going. */
626 if (unlikely(err != sock_len)) {
627 pr_debug("Discarded rx packet: "
628 " len %d, expected %zd\n", err, sock_len);
629 vhost_discard_vq_desc(vq, headcount);
630 continue;
631 }
632 if (unlikely(vhost_hlen) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300633 memcpy_toiovecend(nvq->hdr, (unsigned char *)&hdr, 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300634 vhost_hlen)) {
635 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
636 vq->iov->iov_base);
637 break;
638 }
639 /* TODO: Should check and handle checksum. */
Jason Wangcfbdab92011-01-17 16:10:59 +0800640 if (likely(mergeable) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300641 memcpy_toiovecend(nvq->hdr, (unsigned char *)&headcount,
David Stevens8dd014a2010-07-27 18:52:21 +0300642 offsetof(typeof(hdr), num_buffers),
643 sizeof hdr.num_buffers)) {
644 vq_err(vq, "Failed num_buffers write");
645 vhost_discard_vq_desc(vq, headcount);
646 break;
647 }
648 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
649 headcount);
650 if (unlikely(vq_log))
651 vhost_log_write(vq, vq_log, log, vhost_len);
652 total_len += vhost_len;
653 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
654 vhost_poll_queue(&vq->poll);
655 break;
656 }
657 }
658
659 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300660}
661
Tejun Heoc23f34452010-06-02 20:40:00 +0200662static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000663{
Tejun Heoc23f34452010-06-02 20:40:00 +0200664 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
665 poll.work);
666 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
667
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000668 handle_tx(net);
669}
670
Tejun Heoc23f34452010-06-02 20:40:00 +0200671static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000672{
Tejun Heoc23f34452010-06-02 20:40:00 +0200673 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
674 poll.work);
675 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
676
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000677 handle_rx(net);
678}
679
Tejun Heoc23f34452010-06-02 20:40:00 +0200680static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000681{
Tejun Heoc23f34452010-06-02 20:40:00 +0200682 struct vhost_net *net = container_of(work, struct vhost_net,
683 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000684 handle_tx(net);
685}
686
Tejun Heoc23f34452010-06-02 20:40:00 +0200687static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000688{
Tejun Heoc23f34452010-06-02 20:40:00 +0200689 struct vhost_net *net = container_of(work, struct vhost_net,
690 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000691 handle_rx(net);
692}
693
694static int vhost_net_open(struct inode *inode, struct file *f)
695{
696 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
Tejun Heoc23f34452010-06-02 20:40:00 +0200697 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800698 struct vhost_virtqueue **vqs;
Asias He28394002013-04-27 15:07:46 +0800699 int r, i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200700
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000701 if (!n)
702 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800703 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
704 if (!vqs) {
705 kfree(n);
706 return -ENOMEM;
707 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200708
709 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800710 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
711 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
712 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
713 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800714 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
715 n->vqs[i].ubufs = NULL;
716 n->vqs[i].ubuf_info = NULL;
717 n->vqs[i].upend_idx = 0;
718 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300719 n->vqs[i].vhost_hlen = 0;
720 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800721 }
Asias He3ab2e422013-04-27 11:16:48 +0800722 r = vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000723 if (r < 0) {
724 kfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800725 kfree(vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000726 return r;
727 }
728
Tejun Heoc23f34452010-06-02 20:40:00 +0200729 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
730 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000731
732 f->private_data = n;
733
734 return 0;
735}
736
737static void vhost_net_disable_vq(struct vhost_net *n,
738 struct vhost_virtqueue *vq)
739{
Asias He3ab2e422013-04-27 11:16:48 +0800740 struct vhost_net_virtqueue *nvq =
741 container_of(vq, struct vhost_net_virtqueue, vq);
742 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000743 if (!vq->private_data)
744 return;
Jason Wang70181d512013-04-10 20:50:48 +0000745 vhost_poll_stop(poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000746}
747
Jason Wang2b8b3282013-01-28 01:05:18 +0000748static int vhost_net_enable_vq(struct vhost_net *n,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000749 struct vhost_virtqueue *vq)
750{
Asias He3ab2e422013-04-27 11:16:48 +0800751 struct vhost_net_virtqueue *nvq =
752 container_of(vq, struct vhost_net_virtqueue, vq);
753 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100754 struct socket *sock;
755
756 sock = rcu_dereference_protected(vq->private_data,
757 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000758 if (!sock)
Jason Wang2b8b3282013-01-28 01:05:18 +0000759 return 0;
Jason Wang2b8b3282013-01-28 01:05:18 +0000760
Jason Wang70181d512013-04-10 20:50:48 +0000761 return vhost_poll_start(poll, sock->file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000762}
763
764static struct socket *vhost_net_stop_vq(struct vhost_net *n,
765 struct vhost_virtqueue *vq)
766{
767 struct socket *sock;
768
769 mutex_lock(&vq->mutex);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100770 sock = rcu_dereference_protected(vq->private_data,
771 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000772 vhost_net_disable_vq(n, vq);
773 rcu_assign_pointer(vq->private_data, NULL);
774 mutex_unlock(&vq->mutex);
775 return sock;
776}
777
778static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
779 struct socket **rx_sock)
780{
Asias He3ab2e422013-04-27 11:16:48 +0800781 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
782 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000783}
784
785static void vhost_net_flush_vq(struct vhost_net *n, int index)
786{
787 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800788 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000789}
790
791static void vhost_net_flush(struct vhost_net *n)
792{
793 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
794 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800795 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800796 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200797 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800798 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200799 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800800 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800801 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200802 n->tx_flush = false;
Asias He28394002013-04-27 15:07:46 +0800803 kref_init(&n->vqs[VHOST_NET_VQ_TX].ubufs->kref);
Asias He3ab2e422013-04-27 11:16:48 +0800804 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200805 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000806}
807
808static int vhost_net_release(struct inode *inode, struct file *f)
809{
810 struct vhost_net *n = f->private_data;
811 struct socket *tx_sock;
812 struct socket *rx_sock;
813
814 vhost_net_stop(n, &tx_sock, &rx_sock);
815 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000816 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200817 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300818 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000819 if (tx_sock)
820 fput(tx_sock->file);
821 if (rx_sock)
822 fput(rx_sock->file);
823 /* We do an extra flush before freeing memory,
824 * since jobs can re-queue themselves. */
825 vhost_net_flush(n);
Asias He3ab2e422013-04-27 11:16:48 +0800826 kfree(n->dev.vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000827 kfree(n);
828 return 0;
829}
830
831static struct socket *get_raw_socket(int fd)
832{
833 struct {
834 struct sockaddr_ll sa;
835 char buf[MAX_ADDR_LEN];
836 } uaddr;
837 int uaddr_len = sizeof uaddr, r;
838 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530839
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000840 if (!sock)
841 return ERR_PTR(-ENOTSOCK);
842
843 /* Parameter checking */
844 if (sock->sk->sk_type != SOCK_RAW) {
845 r = -ESOCKTNOSUPPORT;
846 goto err;
847 }
848
849 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
850 &uaddr_len, 0);
851 if (r)
852 goto err;
853
854 if (uaddr.sa.sll_family != AF_PACKET) {
855 r = -EPFNOSUPPORT;
856 goto err;
857 }
858 return sock;
859err:
860 fput(sock->file);
861 return ERR_PTR(r);
862}
863
Arnd Bergmann501c7742010-02-18 05:46:50 +0000864static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000865{
866 struct file *file = fget(fd);
867 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530868
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000869 if (!file)
870 return ERR_PTR(-EBADF);
871 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000872 if (!IS_ERR(sock))
873 return sock;
874 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000875 if (IS_ERR(sock))
876 fput(file);
877 return sock;
878}
879
880static struct socket *get_socket(int fd)
881{
882 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530883
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000884 /* special case to disable backend */
885 if (fd == -1)
886 return NULL;
887 sock = get_raw_socket(fd);
888 if (!IS_ERR(sock))
889 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000890 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000891 if (!IS_ERR(sock))
892 return sock;
893 return ERR_PTR(-ENOTSOCK);
894}
895
896static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
897{
898 struct socket *sock, *oldsock;
899 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +0800900 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +0800901 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000902 int r;
903
904 mutex_lock(&n->dev.mutex);
905 r = vhost_dev_check_owner(&n->dev);
906 if (r)
907 goto err;
908
909 if (index >= VHOST_NET_VQ_MAX) {
910 r = -ENOBUFS;
911 goto err;
912 }
Asias He3ab2e422013-04-27 11:16:48 +0800913 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +0800914 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000915 mutex_lock(&vq->mutex);
916
917 /* Verify that ring has been setup correctly. */
918 if (!vhost_vq_access_ok(vq)) {
919 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -0500920 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000921 }
922 sock = get_socket(fd);
923 if (IS_ERR(sock)) {
924 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500925 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000926 }
927
928 /* start polling new socket */
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100929 oldsock = rcu_dereference_protected(vq->private_data,
930 lockdep_is_held(&vq->mutex));
David S. Miller11fe8832010-07-20 18:25:24 -0700931 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +0800932 ubufs = vhost_net_ubuf_alloc(vq,
933 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000934 if (IS_ERR(ubufs)) {
935 r = PTR_ERR(ubufs);
936 goto err_ubufs;
937 }
Jason Wang692a9982013-01-28 01:05:17 +0000938
Krishna Kumard47effe2011-03-01 17:06:37 +0530939 vhost_net_disable_vq(n, vq);
940 rcu_assign_pointer(vq->private_data, sock);
Jason Wangf59281d2011-06-21 18:04:27 +0800941 r = vhost_init_used(vq);
942 if (r)
Jason Wang692a9982013-01-28 01:05:17 +0000943 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +0000944 r = vhost_net_enable_vq(n, vq);
945 if (r)
946 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +0000947
Asias He28394002013-04-27 15:07:46 +0800948 oldubufs = nvq->ubufs;
949 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +0000950
951 n->tx_packets = 0;
952 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200953 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -0500954 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000955
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300956 mutex_unlock(&vq->mutex);
957
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300958 if (oldubufs) {
Asias Hefe729a52013-05-06 16:38:24 +0800959 vhost_net_ubuf_put_and_wait(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300960 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000961 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300962 mutex_unlock(&vq->mutex);
963 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000964
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000965 if (oldsock) {
966 vhost_net_flush_vq(n, index);
967 fput(oldsock->file);
968 }
Jeff Dike1dace8c2010-03-04 16:10:14 -0500969
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300970 mutex_unlock(&n->dev.mutex);
971 return 0;
972
Jason Wang692a9982013-01-28 01:05:17 +0000973err_used:
974 rcu_assign_pointer(vq->private_data, oldsock);
975 vhost_net_enable_vq(n, vq);
976 if (ubufs)
Asias Hefe729a52013-05-06 16:38:24 +0800977 vhost_net_ubuf_put_and_wait(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000978err_ubufs:
979 fput(sock->file);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500980err_vq:
981 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000982err:
983 mutex_unlock(&n->dev.mutex);
984 return r;
985}
986
987static long vhost_net_reset_owner(struct vhost_net *n)
988{
989 struct socket *tx_sock = NULL;
990 struct socket *rx_sock = NULL;
991 long err;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300992 struct vhost_memory *memory;
Krishna Kumard47effe2011-03-01 17:06:37 +0530993
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000994 mutex_lock(&n->dev.mutex);
995 err = vhost_dev_check_owner(&n->dev);
996 if (err)
997 goto done;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300998 memory = vhost_dev_reset_owner_prepare();
999 if (!memory) {
1000 err = -ENOMEM;
1001 goto done;
1002 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001003 vhost_net_stop(n, &tx_sock, &rx_sock);
1004 vhost_net_flush(n);
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001005 vhost_dev_reset_owner(&n->dev, memory);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001006 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001007done:
1008 mutex_unlock(&n->dev.mutex);
1009 if (tx_sock)
1010 fput(tx_sock->file);
1011 if (rx_sock)
1012 fput(rx_sock->file);
1013 return err;
1014}
1015
1016static int vhost_net_set_features(struct vhost_net *n, u64 features)
1017{
David Stevens8dd014a2010-07-27 18:52:21 +03001018 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001019 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001020
1021 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
1022 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1023 sizeof(struct virtio_net_hdr);
1024 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1025 /* vhost provides vnet_hdr */
1026 vhost_hlen = hdr_len;
1027 sock_hlen = 0;
1028 } else {
1029 /* socket provides vnet_hdr */
1030 vhost_hlen = 0;
1031 sock_hlen = hdr_len;
1032 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001033 mutex_lock(&n->dev.mutex);
1034 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1035 !vhost_log_access_ok(&n->dev)) {
1036 mutex_unlock(&n->dev.mutex);
1037 return -EFAULT;
1038 }
1039 n->dev.acked_features = features;
1040 smp_wmb();
1041 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001042 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001043 n->vqs[i].vhost_hlen = vhost_hlen;
1044 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001045 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001046 }
1047 vhost_net_flush(n);
1048 mutex_unlock(&n->dev.mutex);
1049 return 0;
1050}
1051
Asias Heb1ad8492013-05-06 11:16:00 +08001052static long vhost_net_set_owner(struct vhost_net *n)
1053{
1054 int r;
1055
1056 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001057 if (vhost_dev_has_owner(&n->dev)) {
1058 r = -EBUSY;
1059 goto out;
1060 }
Asias Heb1ad8492013-05-06 11:16:00 +08001061 r = vhost_net_set_ubuf_info(n);
1062 if (r)
1063 goto out;
1064 r = vhost_dev_set_owner(&n->dev);
1065 if (r)
1066 vhost_net_clear_ubuf_info(n);
1067 vhost_net_flush(n);
1068out:
1069 mutex_unlock(&n->dev.mutex);
1070 return r;
1071}
1072
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001073static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1074 unsigned long arg)
1075{
1076 struct vhost_net *n = f->private_data;
1077 void __user *argp = (void __user *)arg;
1078 u64 __user *featurep = argp;
1079 struct vhost_vring_file backend;
1080 u64 features;
1081 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301082
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001083 switch (ioctl) {
1084 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001085 if (copy_from_user(&backend, argp, sizeof backend))
1086 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001087 return vhost_net_set_backend(n, backend.index, backend.fd);
1088 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001089 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001090 if (copy_to_user(featurep, &features, sizeof features))
1091 return -EFAULT;
1092 return 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001093 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001094 if (copy_from_user(&features, featurep, sizeof features))
1095 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001096 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001097 return -EOPNOTSUPP;
1098 return vhost_net_set_features(n, features);
1099 case VHOST_RESET_OWNER:
1100 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001101 case VHOST_SET_OWNER:
1102 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001103 default:
1104 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001105 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1106 if (r == -ENOIOCTLCMD)
1107 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1108 else
1109 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001110 mutex_unlock(&n->dev.mutex);
1111 return r;
1112 }
1113}
1114
1115#ifdef CONFIG_COMPAT
1116static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1117 unsigned long arg)
1118{
1119 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1120}
1121#endif
1122
Tobias Klauser373a83a2010-05-17 15:12:49 +02001123static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001124 .owner = THIS_MODULE,
1125 .release = vhost_net_release,
1126 .unlocked_ioctl = vhost_net_ioctl,
1127#ifdef CONFIG_COMPAT
1128 .compat_ioctl = vhost_net_compat_ioctl,
1129#endif
1130 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001131 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001132};
1133
1134static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001135 .minor = VHOST_NET_MINOR,
1136 .name = "vhost-net",
1137 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001138};
1139
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001140static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001141{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001142 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001143 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001144 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001145}
1146module_init(vhost_net_init);
1147
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001148static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001149{
1150 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001151}
1152module_exit(vhost_net_exit);
1153
1154MODULE_VERSION("0.0.1");
1155MODULE_LICENSE("GPL v2");
1156MODULE_AUTHOR("Michael S. Tsirkin");
1157MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001158MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1159MODULE_ALIAS("devname:vhost-net");