blob: 2b51e2336aa20006e47cb0f1ac7ea146120413a3 [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;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000439 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000440 /* TODO: Check specific error and bomb out unless ENOBUFS? */
441 err = sock->ops->sendmsg(NULL, sock, &msg, len);
442 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200443 if (zcopy_used) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000444 if (ubufs)
Asias Hefe729a52013-05-06 16:38:24 +0800445 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800446 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
447 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000448 }
David Stevens8dd014a2010-07-27 18:52:21 +0300449 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000450 break;
451 }
452 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300453 pr_debug("Truncated TX packet: "
454 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200455 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000456 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800457 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000458 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000459 total_len += len;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000460 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000461 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
462 vhost_poll_queue(&vq->poll);
463 break;
464 }
465 }
466
467 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000468}
469
David Stevens8dd014a2010-07-27 18:52:21 +0300470static int peek_head_len(struct sock *sk)
471{
472 struct sk_buff *head;
473 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800474 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300475
Jason Wang783e3982011-01-17 16:11:17 +0800476 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300477 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000478 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300479 len = head->len;
Basil Gorc53cff5e2012-05-03 22:55:23 +0000480 if (vlan_tx_tag_present(head))
481 len += VLAN_HLEN;
482 }
483
Jason Wang783e3982011-01-17 16:11:17 +0800484 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300485 return len;
486}
487
488/* This is a multi-buffer version of vhost_get_desc, that works if
489 * vq has read descriptors only.
490 * @vq - the relevant virtqueue
491 * @datalen - data length we'll be reading
492 * @iovcount - returned count of io vectors we fill
493 * @log - vhost log
494 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800495 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300496 * returns number of buffer heads allocated, negative on error
497 */
498static int get_rx_bufs(struct vhost_virtqueue *vq,
499 struct vring_used_elem *heads,
500 int datalen,
501 unsigned *iovcount,
502 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800503 unsigned *log_num,
504 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300505{
506 unsigned int out, in;
507 int seg = 0;
508 int headcount = 0;
509 unsigned d;
510 int r, nlogs = 0;
511
Jason Wang94249362011-01-17 16:11:08 +0800512 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800513 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300514 r = -ENOBUFS;
515 goto err;
516 }
517 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
518 ARRAY_SIZE(vq->iov) - seg, &out,
519 &in, log, log_num);
520 if (d == vq->num) {
521 r = 0;
522 goto err;
523 }
524 if (unlikely(out || in <= 0)) {
525 vq_err(vq, "unexpected descriptor format for RX: "
526 "out %d, in %d\n", out, in);
527 r = -EINVAL;
528 goto err;
529 }
530 if (unlikely(log)) {
531 nlogs += *log_num;
532 log += *log_num;
533 }
534 heads[headcount].id = d;
535 heads[headcount].len = iov_length(vq->iov + seg, in);
536 datalen -= heads[headcount].len;
537 ++headcount;
538 seg += in;
539 }
540 heads[headcount - 1].len += datalen;
541 *iovcount = seg;
542 if (unlikely(log))
543 *log_num = nlogs;
544 return headcount;
545err:
546 vhost_discard_vq_desc(vq, headcount);
547 return r;
548}
549
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000550/* Expects to be always run from workqueue - which acts as
551 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800552static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000553{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300554 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
555 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300556 unsigned uninitialized_var(in), log;
557 struct vhost_log *vq_log;
558 struct msghdr msg = {
559 .msg_name = NULL,
560 .msg_namelen = 0,
561 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
562 .msg_controllen = 0,
563 .msg_iov = vq->iov,
564 .msg_flags = MSG_DONTWAIT,
565 };
David Stevens8dd014a2010-07-27 18:52:21 +0300566 struct virtio_net_hdr_mrg_rxbuf hdr = {
567 .hdr.flags = 0,
568 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
569 };
David Stevens8dd014a2010-07-27 18:52:21 +0300570 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200571 int err, mergeable;
572 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300573 size_t vhost_hlen, sock_hlen;
574 size_t vhost_len, sock_len;
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200575 /* TODO: check that we are running from vhost_worker? */
576 struct socket *sock = rcu_dereference_check(vq->private_data, 1);
Krishna Kumard47effe2011-03-01 17:06:37 +0530577
Michael S. Tsirkinde4d7682011-03-13 23:00:52 +0200578 if (!sock)
David Stevens8dd014a2010-07-27 18:52:21 +0300579 return;
580
David Stevens8dd014a2010-07-27 18:52:21 +0300581 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300582 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300583 vhost_hlen = nvq->vhost_hlen;
584 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300585
586 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
587 vq->log : NULL;
Jason Wangcfbdab92011-01-17 16:10:59 +0800588 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300589
590 while ((sock_len = peek_head_len(sock->sk))) {
591 sock_len += sock_hlen;
592 vhost_len = sock_len + vhost_hlen;
593 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800594 &in, vq_log, &log,
595 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300596 /* On error, stop handling until the next kick. */
597 if (unlikely(headcount < 0))
598 break;
599 /* OK, now we need to know about added descriptors. */
600 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300601 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300602 /* They have slipped one in as we were
603 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300604 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300605 continue;
606 }
607 /* Nothing new? Wait for eventfd to tell us
608 * they refilled. */
609 break;
610 }
611 /* We don't need to be notified again. */
612 if (unlikely((vhost_hlen)))
613 /* Skip header. TODO: support TSO. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300614 move_iovec_hdr(vq->iov, nvq->hdr, vhost_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300615 else
616 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
Jason Wanga290aec2010-11-29 13:48:40 +0800617 * needed because recvmsg can modify msg_iov. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300618 copy_iovec_hdr(vq->iov, nvq->hdr, sock_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300619 msg.msg_iovlen = in;
620 err = sock->ops->recvmsg(NULL, sock, &msg,
621 sock_len, MSG_DONTWAIT | MSG_TRUNC);
622 /* Userspace might have consumed the packet meanwhile:
623 * it's not supposed to do this usually, but might be hard
624 * to prevent. Discard data we got (if any) and keep going. */
625 if (unlikely(err != sock_len)) {
626 pr_debug("Discarded rx packet: "
627 " len %d, expected %zd\n", err, sock_len);
628 vhost_discard_vq_desc(vq, headcount);
629 continue;
630 }
631 if (unlikely(vhost_hlen) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300632 memcpy_toiovecend(nvq->hdr, (unsigned char *)&hdr, 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300633 vhost_hlen)) {
634 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
635 vq->iov->iov_base);
636 break;
637 }
638 /* TODO: Should check and handle checksum. */
Jason Wangcfbdab92011-01-17 16:10:59 +0800639 if (likely(mergeable) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300640 memcpy_toiovecend(nvq->hdr, (unsigned char *)&headcount,
David Stevens8dd014a2010-07-27 18:52:21 +0300641 offsetof(typeof(hdr), num_buffers),
642 sizeof hdr.num_buffers)) {
643 vq_err(vq, "Failed num_buffers write");
644 vhost_discard_vq_desc(vq, headcount);
645 break;
646 }
647 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
648 headcount);
649 if (unlikely(vq_log))
650 vhost_log_write(vq, vq_log, log, vhost_len);
651 total_len += vhost_len;
652 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
653 vhost_poll_queue(&vq->poll);
654 break;
655 }
656 }
657
658 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300659}
660
Tejun Heoc23f34452010-06-02 20:40:00 +0200661static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000662{
Tejun Heoc23f34452010-06-02 20:40:00 +0200663 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
664 poll.work);
665 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
666
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000667 handle_tx(net);
668}
669
Tejun Heoc23f34452010-06-02 20:40:00 +0200670static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000671{
Tejun Heoc23f34452010-06-02 20:40:00 +0200672 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
673 poll.work);
674 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
675
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000676 handle_rx(net);
677}
678
Tejun Heoc23f34452010-06-02 20:40:00 +0200679static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000680{
Tejun Heoc23f34452010-06-02 20:40:00 +0200681 struct vhost_net *net = container_of(work, struct vhost_net,
682 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000683 handle_tx(net);
684}
685
Tejun Heoc23f34452010-06-02 20:40:00 +0200686static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000687{
Tejun Heoc23f34452010-06-02 20:40:00 +0200688 struct vhost_net *net = container_of(work, struct vhost_net,
689 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000690 handle_rx(net);
691}
692
693static int vhost_net_open(struct inode *inode, struct file *f)
694{
695 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
Tejun Heoc23f34452010-06-02 20:40:00 +0200696 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800697 struct vhost_virtqueue **vqs;
Asias He28394002013-04-27 15:07:46 +0800698 int r, i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200699
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000700 if (!n)
701 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800702 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
703 if (!vqs) {
704 kfree(n);
705 return -ENOMEM;
706 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200707
708 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800709 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
710 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
711 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
712 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
Asias He28394002013-04-27 15:07:46 +0800713 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
714 n->vqs[i].ubufs = NULL;
715 n->vqs[i].ubuf_info = NULL;
716 n->vqs[i].upend_idx = 0;
717 n->vqs[i].done_idx = 0;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300718 n->vqs[i].vhost_hlen = 0;
719 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800720 }
Asias He3ab2e422013-04-27 11:16:48 +0800721 r = vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000722 if (r < 0) {
723 kfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800724 kfree(vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000725 return r;
726 }
727
Tejun Heoc23f34452010-06-02 20:40:00 +0200728 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
729 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000730
731 f->private_data = n;
732
733 return 0;
734}
735
736static void vhost_net_disable_vq(struct vhost_net *n,
737 struct vhost_virtqueue *vq)
738{
Asias He3ab2e422013-04-27 11:16:48 +0800739 struct vhost_net_virtqueue *nvq =
740 container_of(vq, struct vhost_net_virtqueue, vq);
741 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000742 if (!vq->private_data)
743 return;
Jason Wang70181d512013-04-10 20:50:48 +0000744 vhost_poll_stop(poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000745}
746
Jason Wang2b8b3282013-01-28 01:05:18 +0000747static int vhost_net_enable_vq(struct vhost_net *n,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000748 struct vhost_virtqueue *vq)
749{
Asias He3ab2e422013-04-27 11:16:48 +0800750 struct vhost_net_virtqueue *nvq =
751 container_of(vq, struct vhost_net_virtqueue, vq);
752 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100753 struct socket *sock;
754
755 sock = rcu_dereference_protected(vq->private_data,
756 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000757 if (!sock)
Jason Wang2b8b3282013-01-28 01:05:18 +0000758 return 0;
Jason Wang2b8b3282013-01-28 01:05:18 +0000759
Jason Wang70181d512013-04-10 20:50:48 +0000760 return vhost_poll_start(poll, sock->file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000761}
762
763static struct socket *vhost_net_stop_vq(struct vhost_net *n,
764 struct vhost_virtqueue *vq)
765{
766 struct socket *sock;
767
768 mutex_lock(&vq->mutex);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100769 sock = rcu_dereference_protected(vq->private_data,
770 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000771 vhost_net_disable_vq(n, vq);
772 rcu_assign_pointer(vq->private_data, NULL);
773 mutex_unlock(&vq->mutex);
774 return sock;
775}
776
777static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
778 struct socket **rx_sock)
779{
Asias He3ab2e422013-04-27 11:16:48 +0800780 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
781 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000782}
783
784static void vhost_net_flush_vq(struct vhost_net *n, int index)
785{
786 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800787 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000788}
789
790static void vhost_net_flush(struct vhost_net *n)
791{
792 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
793 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Asias He28394002013-04-27 15:07:46 +0800794 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800795 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200796 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800797 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200798 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800799 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800800 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200801 n->tx_flush = false;
Asias He28394002013-04-27 15:07:46 +0800802 kref_init(&n->vqs[VHOST_NET_VQ_TX].ubufs->kref);
Asias He3ab2e422013-04-27 11:16:48 +0800803 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200804 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000805}
806
807static int vhost_net_release(struct inode *inode, struct file *f)
808{
809 struct vhost_net *n = f->private_data;
810 struct socket *tx_sock;
811 struct socket *rx_sock;
812
813 vhost_net_stop(n, &tx_sock, &rx_sock);
814 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000815 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200816 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300817 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000818 if (tx_sock)
819 fput(tx_sock->file);
820 if (rx_sock)
821 fput(rx_sock->file);
822 /* We do an extra flush before freeing memory,
823 * since jobs can re-queue themselves. */
824 vhost_net_flush(n);
Asias He3ab2e422013-04-27 11:16:48 +0800825 kfree(n->dev.vqs);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000826 kfree(n);
827 return 0;
828}
829
830static struct socket *get_raw_socket(int fd)
831{
832 struct {
833 struct sockaddr_ll sa;
834 char buf[MAX_ADDR_LEN];
835 } uaddr;
836 int uaddr_len = sizeof uaddr, r;
837 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530838
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000839 if (!sock)
840 return ERR_PTR(-ENOTSOCK);
841
842 /* Parameter checking */
843 if (sock->sk->sk_type != SOCK_RAW) {
844 r = -ESOCKTNOSUPPORT;
845 goto err;
846 }
847
848 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
849 &uaddr_len, 0);
850 if (r)
851 goto err;
852
853 if (uaddr.sa.sll_family != AF_PACKET) {
854 r = -EPFNOSUPPORT;
855 goto err;
856 }
857 return sock;
858err:
859 fput(sock->file);
860 return ERR_PTR(r);
861}
862
Arnd Bergmann501c7742010-02-18 05:46:50 +0000863static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000864{
865 struct file *file = fget(fd);
866 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530867
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000868 if (!file)
869 return ERR_PTR(-EBADF);
870 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000871 if (!IS_ERR(sock))
872 return sock;
873 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000874 if (IS_ERR(sock))
875 fput(file);
876 return sock;
877}
878
879static struct socket *get_socket(int fd)
880{
881 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530882
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000883 /* special case to disable backend */
884 if (fd == -1)
885 return NULL;
886 sock = get_raw_socket(fd);
887 if (!IS_ERR(sock))
888 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000889 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000890 if (!IS_ERR(sock))
891 return sock;
892 return ERR_PTR(-ENOTSOCK);
893}
894
895static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
896{
897 struct socket *sock, *oldsock;
898 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +0800899 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +0800900 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000901 int r;
902
903 mutex_lock(&n->dev.mutex);
904 r = vhost_dev_check_owner(&n->dev);
905 if (r)
906 goto err;
907
908 if (index >= VHOST_NET_VQ_MAX) {
909 r = -ENOBUFS;
910 goto err;
911 }
Asias He3ab2e422013-04-27 11:16:48 +0800912 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +0800913 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000914 mutex_lock(&vq->mutex);
915
916 /* Verify that ring has been setup correctly. */
917 if (!vhost_vq_access_ok(vq)) {
918 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -0500919 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000920 }
921 sock = get_socket(fd);
922 if (IS_ERR(sock)) {
923 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500924 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000925 }
926
927 /* start polling new socket */
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100928 oldsock = rcu_dereference_protected(vq->private_data,
929 lockdep_is_held(&vq->mutex));
David S. Miller11fe8832010-07-20 18:25:24 -0700930 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +0800931 ubufs = vhost_net_ubuf_alloc(vq,
932 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000933 if (IS_ERR(ubufs)) {
934 r = PTR_ERR(ubufs);
935 goto err_ubufs;
936 }
Jason Wang692a9982013-01-28 01:05:17 +0000937
Krishna Kumard47effe2011-03-01 17:06:37 +0530938 vhost_net_disable_vq(n, vq);
939 rcu_assign_pointer(vq->private_data, sock);
Jason Wangf59281d2011-06-21 18:04:27 +0800940 r = vhost_init_used(vq);
941 if (r)
Jason Wang692a9982013-01-28 01:05:17 +0000942 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +0000943 r = vhost_net_enable_vq(n, vq);
944 if (r)
945 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +0000946
Asias He28394002013-04-27 15:07:46 +0800947 oldubufs = nvq->ubufs;
948 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +0000949
950 n->tx_packets = 0;
951 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200952 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -0500953 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000954
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300955 mutex_unlock(&vq->mutex);
956
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300957 if (oldubufs) {
Asias Hefe729a52013-05-06 16:38:24 +0800958 vhost_net_ubuf_put_and_wait(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300959 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000960 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300961 mutex_unlock(&vq->mutex);
962 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000963
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000964 if (oldsock) {
965 vhost_net_flush_vq(n, index);
966 fput(oldsock->file);
967 }
Jeff Dike1dace8c2010-03-04 16:10:14 -0500968
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300969 mutex_unlock(&n->dev.mutex);
970 return 0;
971
Jason Wang692a9982013-01-28 01:05:17 +0000972err_used:
973 rcu_assign_pointer(vq->private_data, oldsock);
974 vhost_net_enable_vq(n, vq);
975 if (ubufs)
Asias Hefe729a52013-05-06 16:38:24 +0800976 vhost_net_ubuf_put_and_wait(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000977err_ubufs:
978 fput(sock->file);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500979err_vq:
980 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000981err:
982 mutex_unlock(&n->dev.mutex);
983 return r;
984}
985
986static long vhost_net_reset_owner(struct vhost_net *n)
987{
988 struct socket *tx_sock = NULL;
989 struct socket *rx_sock = NULL;
990 long err;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300991 struct vhost_memory *memory;
Krishna Kumard47effe2011-03-01 17:06:37 +0530992
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000993 mutex_lock(&n->dev.mutex);
994 err = vhost_dev_check_owner(&n->dev);
995 if (err)
996 goto done;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300997 memory = vhost_dev_reset_owner_prepare();
998 if (!memory) {
999 err = -ENOMEM;
1000 goto done;
1001 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001002 vhost_net_stop(n, &tx_sock, &rx_sock);
1003 vhost_net_flush(n);
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001004 vhost_dev_reset_owner(&n->dev, memory);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001005 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001006done:
1007 mutex_unlock(&n->dev.mutex);
1008 if (tx_sock)
1009 fput(tx_sock->file);
1010 if (rx_sock)
1011 fput(rx_sock->file);
1012 return err;
1013}
1014
1015static int vhost_net_set_features(struct vhost_net *n, u64 features)
1016{
David Stevens8dd014a2010-07-27 18:52:21 +03001017 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001018 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001019
1020 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
1021 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1022 sizeof(struct virtio_net_hdr);
1023 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1024 /* vhost provides vnet_hdr */
1025 vhost_hlen = hdr_len;
1026 sock_hlen = 0;
1027 } else {
1028 /* socket provides vnet_hdr */
1029 vhost_hlen = 0;
1030 sock_hlen = hdr_len;
1031 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001032 mutex_lock(&n->dev.mutex);
1033 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1034 !vhost_log_access_ok(&n->dev)) {
1035 mutex_unlock(&n->dev.mutex);
1036 return -EFAULT;
1037 }
1038 n->dev.acked_features = features;
1039 smp_wmb();
1040 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias He3ab2e422013-04-27 11:16:48 +08001041 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001042 n->vqs[i].vhost_hlen = vhost_hlen;
1043 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001044 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001045 }
1046 vhost_net_flush(n);
1047 mutex_unlock(&n->dev.mutex);
1048 return 0;
1049}
1050
Asias Heb1ad8492013-05-06 11:16:00 +08001051static long vhost_net_set_owner(struct vhost_net *n)
1052{
1053 int r;
1054
1055 mutex_lock(&n->dev.mutex);
1056 r = vhost_net_set_ubuf_info(n);
1057 if (r)
1058 goto out;
1059 r = vhost_dev_set_owner(&n->dev);
1060 if (r)
1061 vhost_net_clear_ubuf_info(n);
1062 vhost_net_flush(n);
1063out:
1064 mutex_unlock(&n->dev.mutex);
1065 return r;
1066}
1067
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001068static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1069 unsigned long arg)
1070{
1071 struct vhost_net *n = f->private_data;
1072 void __user *argp = (void __user *)arg;
1073 u64 __user *featurep = argp;
1074 struct vhost_vring_file backend;
1075 u64 features;
1076 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +05301077
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001078 switch (ioctl) {
1079 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001080 if (copy_from_user(&backend, argp, sizeof backend))
1081 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001082 return vhost_net_set_backend(n, backend.index, backend.fd);
1083 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001084 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001085 if (copy_to_user(featurep, &features, sizeof features))
1086 return -EFAULT;
1087 return 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001088 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001089 if (copy_from_user(&features, featurep, sizeof features))
1090 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001091 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001092 return -EOPNOTSUPP;
1093 return vhost_net_set_features(n, features);
1094 case VHOST_RESET_OWNER:
1095 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001096 case VHOST_SET_OWNER:
1097 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001098 default:
1099 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001100 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1101 if (r == -ENOIOCTLCMD)
1102 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1103 else
1104 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001105 mutex_unlock(&n->dev.mutex);
1106 return r;
1107 }
1108}
1109
1110#ifdef CONFIG_COMPAT
1111static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1112 unsigned long arg)
1113{
1114 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1115}
1116#endif
1117
Tobias Klauser373a83a2010-05-17 15:12:49 +02001118static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001119 .owner = THIS_MODULE,
1120 .release = vhost_net_release,
1121 .unlocked_ioctl = vhost_net_ioctl,
1122#ifdef CONFIG_COMPAT
1123 .compat_ioctl = vhost_net_compat_ioctl,
1124#endif
1125 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001126 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001127};
1128
1129static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001130 .minor = VHOST_NET_MINOR,
1131 .name = "vhost-net",
1132 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001133};
1134
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001135static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001136{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001137 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001138 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001139 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001140}
1141module_init(vhost_net_init);
1142
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001143static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001144{
1145 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001146}
1147module_exit(vhost_net_exit);
1148
1149MODULE_VERSION("0.0.1");
1150MODULE_LICENSE("GPL v2");
1151MODULE_AUTHOR("Michael S. Tsirkin");
1152MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001153MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1154MODULE_ALIAS("devname:vhost-net");