99f8d63491aa2723ecd63e77241b8b1ebfdf3606
[deliverable/linux.git] / drivers / vhost / net.c
1 /* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2.
5 *
6 * virtio-net server in host kernel.
7 */
8
9 #include <linux/compat.h>
10 #include <linux/eventfd.h>
11 #include <linux/vhost.h>
12 #include <linux/virtio_net.h>
13 #include <linux/miscdevice.h>
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/mutex.h>
17 #include <linux/workqueue.h>
18 #include <linux/rcupdate.h>
19 #include <linux/file.h>
20 #include <linux/slab.h>
21
22 #include <linux/net.h>
23 #include <linux/if_packet.h>
24 #include <linux/if_arp.h>
25 #include <linux/if_tun.h>
26 #include <linux/if_macvlan.h>
27 #include <linux/if_vlan.h>
28
29 #include <net/sock.h>
30
31 #include "vhost.h"
32
33 static int experimental_zcopytx = 1;
34 module_param(experimental_zcopytx, int, 0444);
35 MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
36 " 1 -Enable; 0 - Disable");
37
38 /* 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
42 /* MAX number of TX used buffers for outstanding zerocopy */
43 #define VHOST_MAX_PEND 128
44 #define VHOST_GOODCOPY_LEN 256
45
46 /*
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
61 enum {
62 VHOST_NET_FEATURES = VHOST_FEATURES |
63 (1ULL << VHOST_NET_F_VIRTIO_NET_HDR) |
64 (1ULL << VIRTIO_NET_F_MRG_RXBUF),
65 };
66
67 enum {
68 VHOST_NET_VQ_RX = 0,
69 VHOST_NET_VQ_TX = 1,
70 VHOST_NET_VQ_MAX = 2,
71 };
72
73 struct vhost_net_ubuf_ref {
74 struct kref kref;
75 wait_queue_head_t wait;
76 struct vhost_virtqueue *vq;
77 };
78
79 struct vhost_net_virtqueue {
80 struct vhost_virtqueue vq;
81 /* 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;
87 /* 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. */
96 struct vhost_net_ubuf_ref *ubufs;
97 };
98
99 struct vhost_net {
100 struct vhost_dev dev;
101 struct vhost_net_virtqueue vqs[VHOST_NET_VQ_MAX];
102 struct vhost_poll poll[VHOST_NET_VQ_MAX];
103 /* 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;
109 /* Flush in progress. Protected by tx vq lock. */
110 bool tx_flush;
111 };
112
113 static unsigned vhost_net_zcopy_mask __read_mostly;
114
115 static void vhost_net_enable_zcopy(int vq)
116 {
117 vhost_net_zcopy_mask |= 0x1 << vq;
118 }
119
120 static void vhost_net_zerocopy_done_signal(struct kref *kref)
121 {
122 struct vhost_net_ubuf_ref *ubufs;
123
124 ubufs = container_of(kref, struct vhost_net_ubuf_ref, kref);
125 wake_up(&ubufs->wait);
126 }
127
128 static struct vhost_net_ubuf_ref *
129 vhost_net_ubuf_alloc(struct vhost_virtqueue *vq, bool zcopy)
130 {
131 struct vhost_net_ubuf_ref *ubufs;
132 /* 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
144 static void vhost_net_ubuf_put(struct vhost_net_ubuf_ref *ubufs)
145 {
146 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
147 }
148
149 static void vhost_net_ubuf_put_and_wait(struct vhost_net_ubuf_ref *ubufs)
150 {
151 kref_put(&ubufs->kref, vhost_net_zerocopy_done_signal);
152 wait_event(ubufs->wait, !atomic_read(&ubufs->kref.refcount));
153 }
154
155 static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
156 {
157 vhost_net_ubuf_put_and_wait(ubufs);
158 kfree(ubufs);
159 }
160
161 static void vhost_net_clear_ubuf_info(struct vhost_net *n)
162 {
163 int i;
164
165 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
166 kfree(n->vqs[i].ubuf_info);
167 n->vqs[i].ubuf_info = NULL;
168 }
169 }
170
171 static int vhost_net_set_ubuf_info(struct vhost_net *n)
172 {
173 bool zcopy;
174 int i;
175
176 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
177 zcopy = vhost_net_zcopy_mask & (0x1 << i);
178 if (!zcopy)
179 continue;
180 n->vqs[i].ubuf_info = kmalloc(sizeof(*n->vqs[i].ubuf_info) *
181 UIO_MAXIOV, GFP_KERNEL);
182 if (!n->vqs[i].ubuf_info)
183 goto err;
184 }
185 return 0;
186
187 err:
188 vhost_net_clear_ubuf_info(n);
189 return -ENOMEM;
190 }
191
192 static void vhost_net_vq_reset(struct vhost_net *n)
193 {
194 int i;
195
196 vhost_net_clear_ubuf_info(n);
197
198 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
199 n->vqs[i].done_idx = 0;
200 n->vqs[i].upend_idx = 0;
201 n->vqs[i].ubufs = NULL;
202 n->vqs[i].vhost_hlen = 0;
203 n->vqs[i].sock_hlen = 0;
204 }
205
206 }
207
208 static void vhost_net_tx_packet(struct vhost_net *net)
209 {
210 ++net->tx_packets;
211 if (net->tx_packets < 1024)
212 return;
213 net->tx_packets = 0;
214 net->tx_zcopy_err = 0;
215 }
216
217 static void vhost_net_tx_err(struct vhost_net *net)
218 {
219 ++net->tx_zcopy_err;
220 }
221
222 static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
223 {
224 /* TX flush waits for outstanding DMAs to be done.
225 * Don't start new DMAs.
226 */
227 return !net->tx_flush &&
228 net->tx_packets / 64 >= net->tx_zcopy_err;
229 }
230
231 static bool vhost_sock_zcopy(struct socket *sock)
232 {
233 return unlikely(experimental_zcopytx) &&
234 sock_flag(sock->sk, SOCK_ZEROCOPY);
235 }
236
237 /* Pop first len bytes from iovec. Return number of segments used. */
238 static int move_iovec_hdr(struct iovec *from, struct iovec *to,
239 size_t len, int iov_count)
240 {
241 int seg = 0;
242 size_t size;
243
244 while (len && seg < iov_count) {
245 size = min(from->iov_len, len);
246 to->iov_base = from->iov_base;
247 to->iov_len = size;
248 from->iov_len -= size;
249 from->iov_base += size;
250 len -= size;
251 ++from;
252 ++to;
253 ++seg;
254 }
255 return seg;
256 }
257 /* Copy iovec entries for len bytes from iovec. */
258 static void copy_iovec_hdr(const struct iovec *from, struct iovec *to,
259 size_t len, int iovcount)
260 {
261 int seg = 0;
262 size_t size;
263
264 while (len && seg < iovcount) {
265 size = min(from->iov_len, len);
266 to->iov_base = from->iov_base;
267 to->iov_len = size;
268 len -= size;
269 ++from;
270 ++to;
271 ++seg;
272 }
273 }
274
275 /* In case of DMA done not in order in lower device driver for some reason.
276 * upend_idx is used to track end of used idx, done_idx is used to track head
277 * of used idx. Once lower device DMA done contiguously, we will signal KVM
278 * guest used idx.
279 */
280 static int vhost_zerocopy_signal_used(struct vhost_net *net,
281 struct vhost_virtqueue *vq)
282 {
283 struct vhost_net_virtqueue *nvq =
284 container_of(vq, struct vhost_net_virtqueue, vq);
285 int i;
286 int j = 0;
287
288 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
289 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
290 vhost_net_tx_err(net);
291 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
292 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
293 vhost_add_used_and_signal(vq->dev, vq,
294 vq->heads[i].id, 0);
295 ++j;
296 } else
297 break;
298 }
299 if (j)
300 nvq->done_idx = i;
301 return j;
302 }
303
304 static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
305 {
306 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
307 struct vhost_virtqueue *vq = ubufs->vq;
308 int cnt = atomic_read(&ubufs->kref.refcount);
309
310 /*
311 * Trigger polling thread if guest stopped submitting new buffers:
312 * in this case, the refcount after decrement will eventually reach 1
313 * so here it is 2.
314 * We also trigger polling periodically after each 16 packets
315 * (the value 16 here is more or less arbitrary, it's tuned to trigger
316 * less than 10% of times).
317 */
318 if (cnt <= 2 || !(cnt % 16))
319 vhost_poll_queue(&vq->poll);
320 /* set len to mark this desc buffers done DMA */
321 vq->heads[ubuf->desc].len = success ?
322 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
323 vhost_net_ubuf_put(ubufs);
324 }
325
326 /* Expects to be always run from workqueue - which acts as
327 * read-size critical section for our kind of RCU. */
328 static void handle_tx(struct vhost_net *net)
329 {
330 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
331 struct vhost_virtqueue *vq = &nvq->vq;
332 unsigned out, in, s;
333 int head;
334 struct msghdr msg = {
335 .msg_name = NULL,
336 .msg_namelen = 0,
337 .msg_control = NULL,
338 .msg_controllen = 0,
339 .msg_iov = vq->iov,
340 .msg_flags = MSG_DONTWAIT,
341 };
342 size_t len, total_len = 0;
343 int err;
344 size_t hdr_size;
345 struct socket *sock;
346 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
347 bool zcopy, zcopy_used;
348
349 mutex_lock(&vq->mutex);
350 sock = vq->private_data;
351 if (!sock)
352 goto out;
353
354 vhost_disable_notify(&net->dev, vq);
355
356 hdr_size = nvq->vhost_hlen;
357 zcopy = nvq->ubufs;
358
359 for (;;) {
360 /* Release DMAs done buffers first */
361 if (zcopy)
362 vhost_zerocopy_signal_used(net, vq);
363
364 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
365 ARRAY_SIZE(vq->iov),
366 &out, &in,
367 NULL, NULL);
368 /* On error, stop handling until the next kick. */
369 if (unlikely(head < 0))
370 break;
371 /* Nothing new? Wait for eventfd to tell us they refilled. */
372 if (head == vq->num) {
373 int num_pends;
374
375 /* If more outstanding DMAs, queue the work.
376 * Handle upend_idx wrap around
377 */
378 num_pends = likely(nvq->upend_idx >= nvq->done_idx) ?
379 (nvq->upend_idx - nvq->done_idx) :
380 (nvq->upend_idx + UIO_MAXIOV -
381 nvq->done_idx);
382 if (unlikely(num_pends > VHOST_MAX_PEND))
383 break;
384 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
385 vhost_disable_notify(&net->dev, vq);
386 continue;
387 }
388 break;
389 }
390 if (in) {
391 vq_err(vq, "Unexpected descriptor format for TX: "
392 "out %d, int %d\n", out, in);
393 break;
394 }
395 /* Skip header. TODO: support TSO. */
396 s = move_iovec_hdr(vq->iov, nvq->hdr, hdr_size, out);
397 msg.msg_iovlen = out;
398 len = iov_length(vq->iov, out);
399 /* Sanity check */
400 if (!len) {
401 vq_err(vq, "Unexpected header len for TX: "
402 "%zd expected %zd\n",
403 iov_length(nvq->hdr, s), hdr_size);
404 break;
405 }
406 zcopy_used = zcopy && (len >= VHOST_GOODCOPY_LEN ||
407 nvq->upend_idx != nvq->done_idx);
408
409 /* use msg_control to pass vhost zerocopy ubuf info to skb */
410 if (zcopy_used) {
411 vq->heads[nvq->upend_idx].id = head;
412 if (!vhost_net_tx_select_zcopy(net) ||
413 len < VHOST_GOODCOPY_LEN) {
414 /* copy don't need to wait for DMA done */
415 vq->heads[nvq->upend_idx].len =
416 VHOST_DMA_DONE_LEN;
417 msg.msg_control = NULL;
418 msg.msg_controllen = 0;
419 ubufs = NULL;
420 } else {
421 struct ubuf_info *ubuf;
422 ubuf = nvq->ubuf_info + nvq->upend_idx;
423
424 vq->heads[nvq->upend_idx].len =
425 VHOST_DMA_IN_PROGRESS;
426 ubuf->callback = vhost_zerocopy_callback;
427 ubuf->ctx = nvq->ubufs;
428 ubuf->desc = nvq->upend_idx;
429 msg.msg_control = ubuf;
430 msg.msg_controllen = sizeof(ubuf);
431 ubufs = nvq->ubufs;
432 kref_get(&ubufs->kref);
433 }
434 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
435 } else
436 msg.msg_control = NULL;
437 /* TODO: Check specific error and bomb out unless ENOBUFS? */
438 err = sock->ops->sendmsg(NULL, sock, &msg, len);
439 if (unlikely(err < 0)) {
440 if (zcopy_used) {
441 if (ubufs)
442 vhost_net_ubuf_put(ubufs);
443 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
444 % UIO_MAXIOV;
445 }
446 vhost_discard_vq_desc(vq, 1);
447 break;
448 }
449 if (err != len)
450 pr_debug("Truncated TX packet: "
451 " len %d != %zd\n", err, len);
452 if (!zcopy_used)
453 vhost_add_used_and_signal(&net->dev, vq, head, 0);
454 else
455 vhost_zerocopy_signal_used(net, vq);
456 total_len += len;
457 vhost_net_tx_packet(net);
458 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
459 vhost_poll_queue(&vq->poll);
460 break;
461 }
462 }
463 out:
464 mutex_unlock(&vq->mutex);
465 }
466
467 static int peek_head_len(struct sock *sk)
468 {
469 struct sk_buff *head;
470 int len = 0;
471 unsigned long flags;
472
473 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
474 head = skb_peek(&sk->sk_receive_queue);
475 if (likely(head)) {
476 len = head->len;
477 if (vlan_tx_tag_present(head))
478 len += VLAN_HLEN;
479 }
480
481 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
482 return len;
483 }
484
485 /* This is a multi-buffer version of vhost_get_desc, that works if
486 * vq has read descriptors only.
487 * @vq - the relevant virtqueue
488 * @datalen - data length we'll be reading
489 * @iovcount - returned count of io vectors we fill
490 * @log - vhost log
491 * @log_num - log offset
492 * @quota - headcount quota, 1 for big buffer
493 * returns number of buffer heads allocated, negative on error
494 */
495 static int get_rx_bufs(struct vhost_virtqueue *vq,
496 struct vring_used_elem *heads,
497 int datalen,
498 unsigned *iovcount,
499 struct vhost_log *log,
500 unsigned *log_num,
501 unsigned int quota)
502 {
503 unsigned int out, in;
504 int seg = 0;
505 int headcount = 0;
506 unsigned d;
507 int r, nlogs = 0;
508
509 while (datalen > 0 && headcount < quota) {
510 if (unlikely(seg >= UIO_MAXIOV)) {
511 r = -ENOBUFS;
512 goto err;
513 }
514 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
515 ARRAY_SIZE(vq->iov) - seg, &out,
516 &in, log, log_num);
517 if (d == vq->num) {
518 r = 0;
519 goto err;
520 }
521 if (unlikely(out || in <= 0)) {
522 vq_err(vq, "unexpected descriptor format for RX: "
523 "out %d, in %d\n", out, in);
524 r = -EINVAL;
525 goto err;
526 }
527 if (unlikely(log)) {
528 nlogs += *log_num;
529 log += *log_num;
530 }
531 heads[headcount].id = d;
532 heads[headcount].len = iov_length(vq->iov + seg, in);
533 datalen -= heads[headcount].len;
534 ++headcount;
535 seg += in;
536 }
537 heads[headcount - 1].len += datalen;
538 *iovcount = seg;
539 if (unlikely(log))
540 *log_num = nlogs;
541 return headcount;
542 err:
543 vhost_discard_vq_desc(vq, headcount);
544 return r;
545 }
546
547 /* Expects to be always run from workqueue - which acts as
548 * read-size critical section for our kind of RCU. */
549 static void handle_rx(struct vhost_net *net)
550 {
551 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
552 struct vhost_virtqueue *vq = &nvq->vq;
553 unsigned uninitialized_var(in), log;
554 struct vhost_log *vq_log;
555 struct msghdr msg = {
556 .msg_name = NULL,
557 .msg_namelen = 0,
558 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
559 .msg_controllen = 0,
560 .msg_iov = vq->iov,
561 .msg_flags = MSG_DONTWAIT,
562 };
563 struct virtio_net_hdr_mrg_rxbuf hdr = {
564 .hdr.flags = 0,
565 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
566 };
567 size_t total_len = 0;
568 int err, mergeable;
569 s16 headcount;
570 size_t vhost_hlen, sock_hlen;
571 size_t vhost_len, sock_len;
572 struct socket *sock;
573
574 mutex_lock(&vq->mutex);
575 sock = vq->private_data;
576 if (!sock)
577 goto out;
578 vhost_disable_notify(&net->dev, vq);
579
580 vhost_hlen = nvq->vhost_hlen;
581 sock_hlen = nvq->sock_hlen;
582
583 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
584 vq->log : NULL;
585 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
586
587 while ((sock_len = peek_head_len(sock->sk))) {
588 sock_len += sock_hlen;
589 vhost_len = sock_len + vhost_hlen;
590 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
591 &in, vq_log, &log,
592 likely(mergeable) ? UIO_MAXIOV : 1);
593 /* On error, stop handling until the next kick. */
594 if (unlikely(headcount < 0))
595 break;
596 /* OK, now we need to know about added descriptors. */
597 if (!headcount) {
598 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
599 /* They have slipped one in as we were
600 * doing that: check again. */
601 vhost_disable_notify(&net->dev, vq);
602 continue;
603 }
604 /* Nothing new? Wait for eventfd to tell us
605 * they refilled. */
606 break;
607 }
608 /* We don't need to be notified again. */
609 if (unlikely((vhost_hlen)))
610 /* Skip header. TODO: support TSO. */
611 move_iovec_hdr(vq->iov, nvq->hdr, vhost_hlen, in);
612 else
613 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
614 * needed because recvmsg can modify msg_iov. */
615 copy_iovec_hdr(vq->iov, nvq->hdr, sock_hlen, in);
616 msg.msg_iovlen = in;
617 err = sock->ops->recvmsg(NULL, sock, &msg,
618 sock_len, MSG_DONTWAIT | MSG_TRUNC);
619 /* Userspace might have consumed the packet meanwhile:
620 * it's not supposed to do this usually, but might be hard
621 * to prevent. Discard data we got (if any) and keep going. */
622 if (unlikely(err != sock_len)) {
623 pr_debug("Discarded rx packet: "
624 " len %d, expected %zd\n", err, sock_len);
625 vhost_discard_vq_desc(vq, headcount);
626 continue;
627 }
628 if (unlikely(vhost_hlen) &&
629 memcpy_toiovecend(nvq->hdr, (unsigned char *)&hdr, 0,
630 vhost_hlen)) {
631 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
632 vq->iov->iov_base);
633 break;
634 }
635 /* TODO: Should check and handle checksum. */
636 if (likely(mergeable) &&
637 memcpy_toiovecend(nvq->hdr, (unsigned char *)&headcount,
638 offsetof(typeof(hdr), num_buffers),
639 sizeof hdr.num_buffers)) {
640 vq_err(vq, "Failed num_buffers write");
641 vhost_discard_vq_desc(vq, headcount);
642 break;
643 }
644 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
645 headcount);
646 if (unlikely(vq_log))
647 vhost_log_write(vq, vq_log, log, vhost_len);
648 total_len += vhost_len;
649 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
650 vhost_poll_queue(&vq->poll);
651 break;
652 }
653 }
654 out:
655 mutex_unlock(&vq->mutex);
656 }
657
658 static void handle_tx_kick(struct vhost_work *work)
659 {
660 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
661 poll.work);
662 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
663
664 handle_tx(net);
665 }
666
667 static void handle_rx_kick(struct vhost_work *work)
668 {
669 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
670 poll.work);
671 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
672
673 handle_rx(net);
674 }
675
676 static void handle_tx_net(struct vhost_work *work)
677 {
678 struct vhost_net *net = container_of(work, struct vhost_net,
679 poll[VHOST_NET_VQ_TX].work);
680 handle_tx(net);
681 }
682
683 static void handle_rx_net(struct vhost_work *work)
684 {
685 struct vhost_net *net = container_of(work, struct vhost_net,
686 poll[VHOST_NET_VQ_RX].work);
687 handle_rx(net);
688 }
689
690 static int vhost_net_open(struct inode *inode, struct file *f)
691 {
692 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
693 struct vhost_dev *dev;
694 struct vhost_virtqueue **vqs;
695 int r, i;
696
697 if (!n)
698 return -ENOMEM;
699 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
700 if (!vqs) {
701 kfree(n);
702 return -ENOMEM;
703 }
704
705 dev = &n->dev;
706 vqs[VHOST_NET_VQ_TX] = &n->vqs[VHOST_NET_VQ_TX].vq;
707 vqs[VHOST_NET_VQ_RX] = &n->vqs[VHOST_NET_VQ_RX].vq;
708 n->vqs[VHOST_NET_VQ_TX].vq.handle_kick = handle_tx_kick;
709 n->vqs[VHOST_NET_VQ_RX].vq.handle_kick = handle_rx_kick;
710 for (i = 0; i < VHOST_NET_VQ_MAX; i++) {
711 n->vqs[i].ubufs = NULL;
712 n->vqs[i].ubuf_info = NULL;
713 n->vqs[i].upend_idx = 0;
714 n->vqs[i].done_idx = 0;
715 n->vqs[i].vhost_hlen = 0;
716 n->vqs[i].sock_hlen = 0;
717 }
718 r = vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
719 if (r < 0) {
720 kfree(n);
721 kfree(vqs);
722 return r;
723 }
724
725 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
726 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
727
728 f->private_data = n;
729
730 return 0;
731 }
732
733 static void vhost_net_disable_vq(struct vhost_net *n,
734 struct vhost_virtqueue *vq)
735 {
736 struct vhost_net_virtqueue *nvq =
737 container_of(vq, struct vhost_net_virtqueue, vq);
738 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
739 if (!vq->private_data)
740 return;
741 vhost_poll_stop(poll);
742 }
743
744 static int vhost_net_enable_vq(struct vhost_net *n,
745 struct vhost_virtqueue *vq)
746 {
747 struct vhost_net_virtqueue *nvq =
748 container_of(vq, struct vhost_net_virtqueue, vq);
749 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
750 struct socket *sock;
751
752 sock = rcu_dereference_protected(vq->private_data,
753 lockdep_is_held(&vq->mutex));
754 if (!sock)
755 return 0;
756
757 return vhost_poll_start(poll, sock->file);
758 }
759
760 static struct socket *vhost_net_stop_vq(struct vhost_net *n,
761 struct vhost_virtqueue *vq)
762 {
763 struct socket *sock;
764
765 mutex_lock(&vq->mutex);
766 sock = rcu_dereference_protected(vq->private_data,
767 lockdep_is_held(&vq->mutex));
768 vhost_net_disable_vq(n, vq);
769 rcu_assign_pointer(vq->private_data, NULL);
770 mutex_unlock(&vq->mutex);
771 return sock;
772 }
773
774 static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
775 struct socket **rx_sock)
776 {
777 *tx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_TX].vq);
778 *rx_sock = vhost_net_stop_vq(n, &n->vqs[VHOST_NET_VQ_RX].vq);
779 }
780
781 static void vhost_net_flush_vq(struct vhost_net *n, int index)
782 {
783 vhost_poll_flush(n->poll + index);
784 vhost_poll_flush(&n->vqs[index].vq.poll);
785 }
786
787 static void vhost_net_flush(struct vhost_net *n)
788 {
789 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
790 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
791 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
792 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
793 n->tx_flush = true;
794 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
795 /* Wait for all lower device DMAs done. */
796 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
797 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
798 n->tx_flush = false;
799 kref_init(&n->vqs[VHOST_NET_VQ_TX].ubufs->kref);
800 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
801 }
802 }
803
804 static int vhost_net_release(struct inode *inode, struct file *f)
805 {
806 struct vhost_net *n = f->private_data;
807 struct socket *tx_sock;
808 struct socket *rx_sock;
809
810 vhost_net_stop(n, &tx_sock, &rx_sock);
811 vhost_net_flush(n);
812 vhost_dev_stop(&n->dev);
813 vhost_dev_cleanup(&n->dev, false);
814 vhost_net_vq_reset(n);
815 if (tx_sock)
816 fput(tx_sock->file);
817 if (rx_sock)
818 fput(rx_sock->file);
819 /* We do an extra flush before freeing memory,
820 * since jobs can re-queue themselves. */
821 vhost_net_flush(n);
822 kfree(n->dev.vqs);
823 kfree(n);
824 return 0;
825 }
826
827 static struct socket *get_raw_socket(int fd)
828 {
829 struct {
830 struct sockaddr_ll sa;
831 char buf[MAX_ADDR_LEN];
832 } uaddr;
833 int uaddr_len = sizeof uaddr, r;
834 struct socket *sock = sockfd_lookup(fd, &r);
835
836 if (!sock)
837 return ERR_PTR(-ENOTSOCK);
838
839 /* Parameter checking */
840 if (sock->sk->sk_type != SOCK_RAW) {
841 r = -ESOCKTNOSUPPORT;
842 goto err;
843 }
844
845 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
846 &uaddr_len, 0);
847 if (r)
848 goto err;
849
850 if (uaddr.sa.sll_family != AF_PACKET) {
851 r = -EPFNOSUPPORT;
852 goto err;
853 }
854 return sock;
855 err:
856 fput(sock->file);
857 return ERR_PTR(r);
858 }
859
860 static struct socket *get_tap_socket(int fd)
861 {
862 struct file *file = fget(fd);
863 struct socket *sock;
864
865 if (!file)
866 return ERR_PTR(-EBADF);
867 sock = tun_get_socket(file);
868 if (!IS_ERR(sock))
869 return sock;
870 sock = macvtap_get_socket(file);
871 if (IS_ERR(sock))
872 fput(file);
873 return sock;
874 }
875
876 static struct socket *get_socket(int fd)
877 {
878 struct socket *sock;
879
880 /* special case to disable backend */
881 if (fd == -1)
882 return NULL;
883 sock = get_raw_socket(fd);
884 if (!IS_ERR(sock))
885 return sock;
886 sock = get_tap_socket(fd);
887 if (!IS_ERR(sock))
888 return sock;
889 return ERR_PTR(-ENOTSOCK);
890 }
891
892 static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
893 {
894 struct socket *sock, *oldsock;
895 struct vhost_virtqueue *vq;
896 struct vhost_net_virtqueue *nvq;
897 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
898 int r;
899
900 mutex_lock(&n->dev.mutex);
901 r = vhost_dev_check_owner(&n->dev);
902 if (r)
903 goto err;
904
905 if (index >= VHOST_NET_VQ_MAX) {
906 r = -ENOBUFS;
907 goto err;
908 }
909 vq = &n->vqs[index].vq;
910 nvq = &n->vqs[index];
911 mutex_lock(&vq->mutex);
912
913 /* Verify that ring has been setup correctly. */
914 if (!vhost_vq_access_ok(vq)) {
915 r = -EFAULT;
916 goto err_vq;
917 }
918 sock = get_socket(fd);
919 if (IS_ERR(sock)) {
920 r = PTR_ERR(sock);
921 goto err_vq;
922 }
923
924 /* start polling new socket */
925 oldsock = rcu_dereference_protected(vq->private_data,
926 lockdep_is_held(&vq->mutex));
927 if (sock != oldsock) {
928 ubufs = vhost_net_ubuf_alloc(vq,
929 sock && vhost_sock_zcopy(sock));
930 if (IS_ERR(ubufs)) {
931 r = PTR_ERR(ubufs);
932 goto err_ubufs;
933 }
934
935 vhost_net_disable_vq(n, vq);
936 rcu_assign_pointer(vq->private_data, sock);
937 r = vhost_init_used(vq);
938 if (r)
939 goto err_used;
940 r = vhost_net_enable_vq(n, vq);
941 if (r)
942 goto err_used;
943
944 oldubufs = nvq->ubufs;
945 nvq->ubufs = ubufs;
946
947 n->tx_packets = 0;
948 n->tx_zcopy_err = 0;
949 n->tx_flush = false;
950 }
951
952 mutex_unlock(&vq->mutex);
953
954 if (oldubufs) {
955 vhost_net_ubuf_put_wait_and_free(oldubufs);
956 mutex_lock(&vq->mutex);
957 vhost_zerocopy_signal_used(n, vq);
958 mutex_unlock(&vq->mutex);
959 }
960
961 if (oldsock) {
962 vhost_net_flush_vq(n, index);
963 fput(oldsock->file);
964 }
965
966 mutex_unlock(&n->dev.mutex);
967 return 0;
968
969 err_used:
970 rcu_assign_pointer(vq->private_data, oldsock);
971 vhost_net_enable_vq(n, vq);
972 if (ubufs)
973 vhost_net_ubuf_put_wait_and_free(ubufs);
974 err_ubufs:
975 fput(sock->file);
976 err_vq:
977 mutex_unlock(&vq->mutex);
978 err:
979 mutex_unlock(&n->dev.mutex);
980 return r;
981 }
982
983 static long vhost_net_reset_owner(struct vhost_net *n)
984 {
985 struct socket *tx_sock = NULL;
986 struct socket *rx_sock = NULL;
987 long err;
988 struct vhost_memory *memory;
989
990 mutex_lock(&n->dev.mutex);
991 err = vhost_dev_check_owner(&n->dev);
992 if (err)
993 goto done;
994 memory = vhost_dev_reset_owner_prepare();
995 if (!memory) {
996 err = -ENOMEM;
997 goto done;
998 }
999 vhost_net_stop(n, &tx_sock, &rx_sock);
1000 vhost_net_flush(n);
1001 vhost_dev_reset_owner(&n->dev, memory);
1002 vhost_net_vq_reset(n);
1003 done:
1004 mutex_unlock(&n->dev.mutex);
1005 if (tx_sock)
1006 fput(tx_sock->file);
1007 if (rx_sock)
1008 fput(rx_sock->file);
1009 return err;
1010 }
1011
1012 static int vhost_net_set_features(struct vhost_net *n, u64 features)
1013 {
1014 size_t vhost_hlen, sock_hlen, hdr_len;
1015 int i;
1016
1017 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
1018 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
1019 sizeof(struct virtio_net_hdr);
1020 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
1021 /* vhost provides vnet_hdr */
1022 vhost_hlen = hdr_len;
1023 sock_hlen = 0;
1024 } else {
1025 /* socket provides vnet_hdr */
1026 vhost_hlen = 0;
1027 sock_hlen = hdr_len;
1028 }
1029 mutex_lock(&n->dev.mutex);
1030 if ((features & (1 << VHOST_F_LOG_ALL)) &&
1031 !vhost_log_access_ok(&n->dev)) {
1032 mutex_unlock(&n->dev.mutex);
1033 return -EFAULT;
1034 }
1035 n->dev.acked_features = features;
1036 smp_wmb();
1037 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
1038 mutex_lock(&n->vqs[i].vq.mutex);
1039 n->vqs[i].vhost_hlen = vhost_hlen;
1040 n->vqs[i].sock_hlen = sock_hlen;
1041 mutex_unlock(&n->vqs[i].vq.mutex);
1042 }
1043 vhost_net_flush(n);
1044 mutex_unlock(&n->dev.mutex);
1045 return 0;
1046 }
1047
1048 static long vhost_net_set_owner(struct vhost_net *n)
1049 {
1050 int r;
1051
1052 mutex_lock(&n->dev.mutex);
1053 if (vhost_dev_has_owner(&n->dev)) {
1054 r = -EBUSY;
1055 goto out;
1056 }
1057 r = vhost_net_set_ubuf_info(n);
1058 if (r)
1059 goto out;
1060 r = vhost_dev_set_owner(&n->dev);
1061 if (r)
1062 vhost_net_clear_ubuf_info(n);
1063 vhost_net_flush(n);
1064 out:
1065 mutex_unlock(&n->dev.mutex);
1066 return r;
1067 }
1068
1069 static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
1070 unsigned long arg)
1071 {
1072 struct vhost_net *n = f->private_data;
1073 void __user *argp = (void __user *)arg;
1074 u64 __user *featurep = argp;
1075 struct vhost_vring_file backend;
1076 u64 features;
1077 int r;
1078
1079 switch (ioctl) {
1080 case VHOST_NET_SET_BACKEND:
1081 if (copy_from_user(&backend, argp, sizeof backend))
1082 return -EFAULT;
1083 return vhost_net_set_backend(n, backend.index, backend.fd);
1084 case VHOST_GET_FEATURES:
1085 features = VHOST_NET_FEATURES;
1086 if (copy_to_user(featurep, &features, sizeof features))
1087 return -EFAULT;
1088 return 0;
1089 case VHOST_SET_FEATURES:
1090 if (copy_from_user(&features, featurep, sizeof features))
1091 return -EFAULT;
1092 if (features & ~VHOST_NET_FEATURES)
1093 return -EOPNOTSUPP;
1094 return vhost_net_set_features(n, features);
1095 case VHOST_RESET_OWNER:
1096 return vhost_net_reset_owner(n);
1097 case VHOST_SET_OWNER:
1098 return vhost_net_set_owner(n);
1099 default:
1100 mutex_lock(&n->dev.mutex);
1101 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
1102 if (r == -ENOIOCTLCMD)
1103 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
1104 else
1105 vhost_net_flush(n);
1106 mutex_unlock(&n->dev.mutex);
1107 return r;
1108 }
1109 }
1110
1111 #ifdef CONFIG_COMPAT
1112 static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
1113 unsigned long arg)
1114 {
1115 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
1116 }
1117 #endif
1118
1119 static const struct file_operations vhost_net_fops = {
1120 .owner = THIS_MODULE,
1121 .release = vhost_net_release,
1122 .unlocked_ioctl = vhost_net_ioctl,
1123 #ifdef CONFIG_COMPAT
1124 .compat_ioctl = vhost_net_compat_ioctl,
1125 #endif
1126 .open = vhost_net_open,
1127 .llseek = noop_llseek,
1128 };
1129
1130 static struct miscdevice vhost_net_misc = {
1131 .minor = VHOST_NET_MINOR,
1132 .name = "vhost-net",
1133 .fops = &vhost_net_fops,
1134 };
1135
1136 static int vhost_net_init(void)
1137 {
1138 if (experimental_zcopytx)
1139 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
1140 return misc_register(&vhost_net_misc);
1141 }
1142 module_init(vhost_net_init);
1143
1144 static void vhost_net_exit(void)
1145 {
1146 misc_deregister(&vhost_net_misc);
1147 }
1148 module_exit(vhost_net_exit);
1149
1150 MODULE_VERSION("0.0.1");
1151 MODULE_LICENSE("GPL v2");
1152 MODULE_AUTHOR("Michael S. Tsirkin");
1153 MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
1154 MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1155 MODULE_ALIAS("devname:vhost-net");
This page took 0.096512 seconds and 4 git commands to generate.