blob: 99f8d63491aa2723ecd63e77241b8b1ebfdf3606 [file] [log] [blame]
Michael S. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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. Tsirkin3a4d5c92010-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));
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300153}
154
155static void vhost_net_ubuf_put_wait_and_free(struct vhost_net_ubuf_ref *ubufs)
156{
157 vhost_net_ubuf_put_and_wait(ubufs);
Asias He28394002013-04-27 15:07:46 +0800158 kfree(ubufs);
159}
160
Asias Heb1ad8492013-05-06 11:16:00 +0800161static void vhost_net_clear_ubuf_info(struct vhost_net *n)
162{
Asias Heb1ad8492013-05-06 11:16:00 +0800163 int i;
164
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300165 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
166 kfree(n->vqs[i].ubuf_info);
167 n->vqs[i].ubuf_info = NULL;
Asias Heb1ad8492013-05-06 11:16:00 +0800168 }
169}
170
Asias He0a1febf2013-06-05 21:17:38 +0800171static int vhost_net_set_ubuf_info(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800172{
173 bool zcopy;
174 int i;
175
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300176 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
Asias Hefe729a52013-05-06 16:38:24 +0800177 zcopy = vhost_net_zcopy_mask & (0x1 << i);
Asias He28394002013-04-27 15:07:46 +0800178 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
187err:
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300188 vhost_net_clear_ubuf_info(n);
Asias He28394002013-04-27 15:07:46 +0800189 return -ENOMEM;
190}
191
Asias He0a1febf2013-06-05 21:17:38 +0800192static void vhost_net_vq_reset(struct vhost_net *n)
Asias He28394002013-04-27 15:07:46 +0800193{
194 int i;
195
Michael S. Tsirkin288cfe72013-06-06 15:20:46 +0300196 vhost_net_clear_ubuf_info(n);
197
Asias He28394002013-04-27 15:07:46 +0800198 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;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300202 n->vqs[i].vhost_hlen = 0;
203 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800204 }
205
206}
207
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000208static 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
217static void vhost_net_tx_err(struct vhost_net *net)
218{
219 ++net->tx_zcopy_err;
220}
221
222static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
223{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200224 /* 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;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000229}
230
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000231static bool vhost_sock_zcopy(struct socket *sock)
232{
233 return unlikely(experimental_zcopytx) &&
234 sock_flag(sock->sk, SOCK_ZEROCOPY);
235}
236
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000237/* Pop first len bytes from iovec. Return number of segments used. */
238static 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;
Krishna Kumard47effe2011-03-01 17:06:37 +0530243
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000244 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}
David Stevens8dd014a2010-07-27 18:52:21 +0300257/* Copy iovec entries for len bytes from iovec. */
258static 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;
Krishna Kumard47effe2011-03-01 17:06:37 +0530263
David Stevens8dd014a2010-07-27 18:52:21 +0300264 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}
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000274
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000275/* 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 */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000280static int vhost_zerocopy_signal_used(struct vhost_net *net,
281 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000282{
Asias He28394002013-04-27 15:07:46 +0800283 struct vhost_net_virtqueue *nvq =
284 container_of(vq, struct vhost_net_virtqueue, vq);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000285 int i;
286 int j = 0;
287
Asias He28394002013-04-27 15:07:46 +0800288 for (i = nvq->done_idx; i != nvq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000289 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
290 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000291 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)
Asias He28394002013-04-27 15:07:46 +0800300 nvq->done_idx = i;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000301 return j;
302}
303
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000304static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000305{
Asias Hefe729a52013-05-06 16:38:24 +0800306 struct vhost_net_ubuf_ref *ubufs = ubuf->ctx;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000307 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000308 int cnt = atomic_read(&ubufs->kref.refcount);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000309
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000310 /*
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);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000320 /* set len to mark this desc buffers done DMA */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000321 vq->heads[ubuf->desc].len = success ?
322 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Asias Hefe729a52013-05-06 16:38:24 +0800323 vhost_net_ubuf_put(ubufs);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000324}
325
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000326/* Expects to be always run from workqueue - which acts as
327 * read-size critical section for our kind of RCU. */
328static void handle_tx(struct vhost_net *net)
329{
Asias He28394002013-04-27 15:07:46 +0800330 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300331 struct vhost_virtqueue *vq = &nvq->vq;
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300332 unsigned out, in, s;
333 int head;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000334 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;
Jason Wang70181d512013-04-10 20:50:48 +0000343 int err;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000344 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100345 struct socket *sock;
Asias Hefe729a52013-05-06 16:38:24 +0800346 struct vhost_net_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200347 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100348
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000349 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800350 sock = vq->private_data;
351 if (!sock)
352 goto out;
353
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300354 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000355
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300356 hdr_size = nvq->vhost_hlen;
Asias He28394002013-04-27 15:07:46 +0800357 zcopy = nvq->ubufs;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000358
359 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000360 /* Release DMAs done buffers first */
361 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000362 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000363
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000364 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
365 ARRAY_SIZE(vq->iov),
366 &out, &in,
367 NULL, NULL);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300368 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300369 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300370 break;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000371 /* Nothing new? Wait for eventfd to tell us they refilled. */
372 if (head == vq->num) {
Shirley Ma9e380822011-07-20 10:23:12 -0700373 int num_pends;
374
Shirley Ma9e380822011-07-20 10:23:12 -0700375 /* If more outstanding DMAs, queue the work.
376 * Handle upend_idx wrap around
377 */
Asias He28394002013-04-27 15:07:46 +0800378 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);
Jason Wang70181d512013-04-10 20:50:48 +0000382 if (unlikely(num_pends > VHOST_MAX_PEND))
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000383 break;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300384 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
385 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000386 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. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300396 s = move_iovec_hdr(vq->iov, nvq->hdr, hdr_size, out);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000397 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",
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300403 iov_length(nvq->hdr, s), hdr_size);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000404 break;
405 }
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200406 zcopy_used = zcopy && (len >= VHOST_GOODCOPY_LEN ||
Asias He28394002013-04-27 15:07:46 +0800407 nvq->upend_idx != nvq->done_idx);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200408
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000409 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200410 if (zcopy_used) {
Asias He28394002013-04-27 15:07:46 +0800411 vq->heads[nvq->upend_idx].id = head;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000412 if (!vhost_net_tx_select_zcopy(net) ||
413 len < VHOST_GOODCOPY_LEN) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000414 /* copy don't need to wait for DMA done */
Asias He28394002013-04-27 15:07:46 +0800415 vq->heads[nvq->upend_idx].len =
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000416 VHOST_DMA_DONE_LEN;
417 msg.msg_control = NULL;
418 msg.msg_controllen = 0;
419 ubufs = NULL;
420 } else {
Michael S. Tsirkin46aa92d2013-03-17 02:46:09 +0000421 struct ubuf_info *ubuf;
Asias He28394002013-04-27 15:07:46 +0800422 ubuf = nvq->ubuf_info + nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000423
Asias He28394002013-04-27 15:07:46 +0800424 vq->heads[nvq->upend_idx].len =
Michael S. Tsirkin70e4cb92012-11-01 09:16:37 +0000425 VHOST_DMA_IN_PROGRESS;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000426 ubuf->callback = vhost_zerocopy_callback;
Asias He28394002013-04-27 15:07:46 +0800427 ubuf->ctx = nvq->ubufs;
428 ubuf->desc = nvq->upend_idx;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000429 msg.msg_control = ubuf;
430 msg.msg_controllen = sizeof(ubuf);
Asias He28394002013-04-27 15:07:46 +0800431 ubufs = nvq->ubufs;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000432 kref_get(&ubufs->kref);
433 }
Asias He28394002013-04-27 15:07:46 +0800434 nvq->upend_idx = (nvq->upend_idx + 1) % UIO_MAXIOV;
Jason Wang4364d5f2013-06-05 15:40:46 +0800435 } else
436 msg.msg_control = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000437 /* TODO: Check specific error and bomb out unless ENOBUFS? */
438 err = sock->ops->sendmsg(NULL, sock, &msg, len);
439 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200440 if (zcopy_used) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000441 if (ubufs)
Asias Hefe729a52013-05-06 16:38:24 +0800442 vhost_net_ubuf_put(ubufs);
Asias He28394002013-04-27 15:07:46 +0800443 nvq->upend_idx = ((unsigned)nvq->upend_idx - 1)
444 % UIO_MAXIOV;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000445 }
David Stevens8dd014a2010-07-27 18:52:21 +0300446 vhost_discard_vq_desc(vq, 1);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000447 break;
448 }
449 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300450 pr_debug("Truncated TX packet: "
451 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200452 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000453 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800454 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000455 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000456 total_len += len;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000457 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000458 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
459 vhost_poll_queue(&vq->poll);
460 break;
461 }
462 }
Asias He2e26af72013-05-07 14:54:33 +0800463out:
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000464 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000465}
466
David Stevens8dd014a2010-07-27 18:52:21 +0300467static int peek_head_len(struct sock *sk)
468{
469 struct sk_buff *head;
470 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800471 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300472
Jason Wang783e3982011-01-17 16:11:17 +0800473 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300474 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000475 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300476 len = head->len;
Basil Gorc53cff5e2012-05-03 22:55:23 +0000477 if (vlan_tx_tag_present(head))
478 len += VLAN_HLEN;
479 }
480
Jason Wang783e3982011-01-17 16:11:17 +0800481 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300482 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
Jason Wang94249362011-01-17 16:11:08 +0800492 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300493 * returns number of buffer heads allocated, negative on error
494 */
495static 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,
Jason Wang94249362011-01-17 16:11:08 +0800500 unsigned *log_num,
501 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300502{
503 unsigned int out, in;
504 int seg = 0;
505 int headcount = 0;
506 unsigned d;
507 int r, nlogs = 0;
508
Jason Wang94249362011-01-17 16:11:08 +0800509 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800510 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300511 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;
542err:
543 vhost_discard_vq_desc(vq, headcount);
544 return r;
545}
546
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000547/* Expects to be always run from workqueue - which acts as
548 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800549static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000550{
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300551 struct vhost_net_virtqueue *nvq = &net->vqs[VHOST_NET_VQ_RX];
552 struct vhost_virtqueue *vq = &nvq->vq;
David Stevens8dd014a2010-07-27 18:52:21 +0300553 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 };
David Stevens8dd014a2010-07-27 18:52:21 +0300563 struct virtio_net_hdr_mrg_rxbuf hdr = {
564 .hdr.flags = 0,
565 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
566 };
David Stevens8dd014a2010-07-27 18:52:21 +0300567 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200568 int err, mergeable;
569 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300570 size_t vhost_hlen, sock_hlen;
571 size_t vhost_len, sock_len;
Asias He2e26af72013-05-07 14:54:33 +0800572 struct socket *sock;
David Stevens8dd014a2010-07-27 18:52:21 +0300573
David Stevens8dd014a2010-07-27 18:52:21 +0300574 mutex_lock(&vq->mutex);
Asias He2e26af72013-05-07 14:54:33 +0800575 sock = vq->private_data;
576 if (!sock)
577 goto out;
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300578 vhost_disable_notify(&net->dev, vq);
Asias He2e26af72013-05-07 14:54:33 +0800579
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300580 vhost_hlen = nvq->vhost_hlen;
581 sock_hlen = nvq->sock_hlen;
David Stevens8dd014a2010-07-27 18:52:21 +0300582
583 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
584 vq->log : NULL;
Jason Wangcfbdab92011-01-17 16:10:59 +0800585 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300586
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,
Jason Wang94249362011-01-17 16:11:08 +0800591 &in, vq_log, &log,
592 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300593 /* 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) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300598 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300599 /* They have slipped one in as we were
600 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300601 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300602 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. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300611 move_iovec_hdr(vq->iov, nvq->hdr, vhost_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300612 else
613 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
Jason Wanga290aec2010-11-29 13:48:40 +0800614 * needed because recvmsg can modify msg_iov. */
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300615 copy_iovec_hdr(vq->iov, nvq->hdr, sock_hlen, in);
David Stevens8dd014a2010-07-27 18:52:21 +0300616 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) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300629 memcpy_toiovecend(nvq->hdr, (unsigned char *)&hdr, 0,
David Stevens8dd014a2010-07-27 18:52:21 +0300630 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. */
Jason Wangcfbdab92011-01-17 16:10:59 +0800636 if (likely(mergeable) &&
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300637 memcpy_toiovecend(nvq->hdr, (unsigned char *)&headcount,
David Stevens8dd014a2010-07-27 18:52:21 +0300638 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 }
Asias He2e26af72013-05-07 14:54:33 +0800654out:
David Stevens8dd014a2010-07-27 18:52:21 +0300655 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300656}
657
Tejun Heoc23f34452010-06-02 20:40:00 +0200658static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000659{
Tejun Heoc23f34452010-06-02 20:40:00 +0200660 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
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000664 handle_tx(net);
665}
666
Tejun Heoc23f34452010-06-02 20:40:00 +0200667static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000668{
Tejun Heoc23f34452010-06-02 20:40:00 +0200669 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
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000673 handle_rx(net);
674}
675
Tejun Heoc23f34452010-06-02 20:40:00 +0200676static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000677{
Tejun Heoc23f34452010-06-02 20:40:00 +0200678 struct vhost_net *net = container_of(work, struct vhost_net,
679 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000680 handle_tx(net);
681}
682
Tejun Heoc23f34452010-06-02 20:40:00 +0200683static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000684{
Tejun Heoc23f34452010-06-02 20:40:00 +0200685 struct vhost_net *net = container_of(work, struct vhost_net,
686 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000687 handle_rx(net);
688}
689
690static int vhost_net_open(struct inode *inode, struct file *f)
691{
692 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
Tejun Heoc23f34452010-06-02 20:40:00 +0200693 struct vhost_dev *dev;
Asias He3ab2e422013-04-27 11:16:48 +0800694 struct vhost_virtqueue **vqs;
Asias He28394002013-04-27 15:07:46 +0800695 int r, i;
Tejun Heoc23f34452010-06-02 20:40:00 +0200696
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000697 if (!n)
698 return -ENOMEM;
Asias He3ab2e422013-04-27 11:16:48 +0800699 vqs = kmalloc(VHOST_NET_VQ_MAX * sizeof(*vqs), GFP_KERNEL);
700 if (!vqs) {
701 kfree(n);
702 return -ENOMEM;
703 }
Tejun Heoc23f34452010-06-02 20:40:00 +0200704
705 dev = &n->dev;
Asias He3ab2e422013-04-27 11:16:48 +0800706 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;
Asias He28394002013-04-27 15:07:46 +0800710 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;
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300715 n->vqs[i].vhost_hlen = 0;
716 n->vqs[i].sock_hlen = 0;
Asias He28394002013-04-27 15:07:46 +0800717 }
Asias He3ab2e422013-04-27 11:16:48 +0800718 r = vhost_dev_init(dev, vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000719 if (r < 0) {
720 kfree(n);
Asias He3ab2e422013-04-27 11:16:48 +0800721 kfree(vqs);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000722 return r;
723 }
724
Tejun Heoc23f34452010-06-02 20:40:00 +0200725 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);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000727
728 f->private_data = n;
729
730 return 0;
731}
732
733static void vhost_net_disable_vq(struct vhost_net *n,
734 struct vhost_virtqueue *vq)
735{
Asias He3ab2e422013-04-27 11:16:48 +0800736 struct vhost_net_virtqueue *nvq =
737 container_of(vq, struct vhost_net_virtqueue, vq);
738 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000739 if (!vq->private_data)
740 return;
Jason Wang70181d512013-04-10 20:50:48 +0000741 vhost_poll_stop(poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000742}
743
Jason Wang2b8b3282013-01-28 01:05:18 +0000744static int vhost_net_enable_vq(struct vhost_net *n,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000745 struct vhost_virtqueue *vq)
746{
Asias He3ab2e422013-04-27 11:16:48 +0800747 struct vhost_net_virtqueue *nvq =
748 container_of(vq, struct vhost_net_virtqueue, vq);
749 struct vhost_poll *poll = n->poll + (nvq - n->vqs);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100750 struct socket *sock;
751
752 sock = rcu_dereference_protected(vq->private_data,
753 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000754 if (!sock)
Jason Wang2b8b3282013-01-28 01:05:18 +0000755 return 0;
Jason Wang2b8b3282013-01-28 01:05:18 +0000756
Jason Wang70181d512013-04-10 20:50:48 +0000757 return vhost_poll_start(poll, sock->file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000758}
759
760static 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);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100766 sock = rcu_dereference_protected(vq->private_data,
767 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000768 vhost_net_disable_vq(n, vq);
769 rcu_assign_pointer(vq->private_data, NULL);
770 mutex_unlock(&vq->mutex);
771 return sock;
772}
773
774static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
775 struct socket **rx_sock)
776{
Asias He3ab2e422013-04-27 11:16:48 +0800777 *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);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000779}
780
781static void vhost_net_flush_vq(struct vhost_net *n, int index)
782{
783 vhost_poll_flush(n->poll + index);
Asias He3ab2e422013-04-27 11:16:48 +0800784 vhost_poll_flush(&n->vqs[index].vq.poll);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000785}
786
787static 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);
Asias He28394002013-04-27 15:07:46 +0800791 if (n->vqs[VHOST_NET_VQ_TX].ubufs) {
Asias He3ab2e422013-04-27 11:16:48 +0800792 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200793 n->tx_flush = true;
Asias He3ab2e422013-04-27 11:16:48 +0800794 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200795 /* Wait for all lower device DMAs done. */
Asias Hefe729a52013-05-06 16:38:24 +0800796 vhost_net_ubuf_put_and_wait(n->vqs[VHOST_NET_VQ_TX].ubufs);
Asias He3ab2e422013-04-27 11:16:48 +0800797 mutex_lock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200798 n->tx_flush = false;
Asias He28394002013-04-27 15:07:46 +0800799 kref_init(&n->vqs[VHOST_NET_VQ_TX].ubufs->kref);
Asias He3ab2e422013-04-27 11:16:48 +0800800 mutex_unlock(&n->vqs[VHOST_NET_VQ_TX].vq.mutex);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200801 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000802}
803
804static 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);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000812 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200813 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +0300814 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000815 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);
Asias He3ab2e422013-04-27 11:16:48 +0800822 kfree(n->dev.vqs);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000823 kfree(n);
824 return 0;
825}
826
827static 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);
Krishna Kumard47effe2011-03-01 17:06:37 +0530835
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000836 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;
855err:
856 fput(sock->file);
857 return ERR_PTR(r);
858}
859
Arnd Bergmann501c7742010-02-18 05:46:50 +0000860static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000861{
862 struct file *file = fget(fd);
863 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530864
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000865 if (!file)
866 return ERR_PTR(-EBADF);
867 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000868 if (!IS_ERR(sock))
869 return sock;
870 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000871 if (IS_ERR(sock))
872 fput(file);
873 return sock;
874}
875
876static struct socket *get_socket(int fd)
877{
878 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530879
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000880 /* 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;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000886 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000887 if (!IS_ERR(sock))
888 return sock;
889 return ERR_PTR(-ENOTSOCK);
890}
891
892static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
893{
894 struct socket *sock, *oldsock;
895 struct vhost_virtqueue *vq;
Asias He28394002013-04-27 15:07:46 +0800896 struct vhost_net_virtqueue *nvq;
Asias Hefe729a52013-05-06 16:38:24 +0800897 struct vhost_net_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000898 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 }
Asias He3ab2e422013-04-27 11:16:48 +0800909 vq = &n->vqs[index].vq;
Asias He28394002013-04-27 15:07:46 +0800910 nvq = &n->vqs[index];
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000911 mutex_lock(&vq->mutex);
912
913 /* Verify that ring has been setup correctly. */
914 if (!vhost_vq_access_ok(vq)) {
915 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -0500916 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000917 }
918 sock = get_socket(fd);
919 if (IS_ERR(sock)) {
920 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500921 goto err_vq;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000922 }
923
924 /* start polling new socket */
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100925 oldsock = rcu_dereference_protected(vq->private_data,
926 lockdep_is_held(&vq->mutex));
David S. Miller11fe8832010-07-20 18:25:24 -0700927 if (sock != oldsock) {
Asias Hefe729a52013-05-06 16:38:24 +0800928 ubufs = vhost_net_ubuf_alloc(vq,
929 sock && vhost_sock_zcopy(sock));
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000930 if (IS_ERR(ubufs)) {
931 r = PTR_ERR(ubufs);
932 goto err_ubufs;
933 }
Jason Wang692a9982013-01-28 01:05:17 +0000934
Krishna Kumard47effe2011-03-01 17:06:37 +0530935 vhost_net_disable_vq(n, vq);
936 rcu_assign_pointer(vq->private_data, sock);
Jason Wangf59281d2011-06-21 18:04:27 +0800937 r = vhost_init_used(vq);
938 if (r)
Jason Wang692a9982013-01-28 01:05:17 +0000939 goto err_used;
Jason Wang2b8b3282013-01-28 01:05:18 +0000940 r = vhost_net_enable_vq(n, vq);
941 if (r)
942 goto err_used;
Jason Wang692a9982013-01-28 01:05:17 +0000943
Asias He28394002013-04-27 15:07:46 +0800944 oldubufs = nvq->ubufs;
945 nvq->ubufs = ubufs;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +0000946
947 n->tx_packets = 0;
948 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200949 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -0500950 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000951
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300952 mutex_unlock(&vq->mutex);
953
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300954 if (oldubufs) {
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300955 vhost_net_ubuf_put_wait_and_free(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300956 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000957 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300958 mutex_unlock(&vq->mutex);
959 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000960
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000961 if (oldsock) {
962 vhost_net_flush_vq(n, index);
963 fput(oldsock->file);
964 }
Jeff Dike1dace8c2010-03-04 16:10:14 -0500965
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300966 mutex_unlock(&n->dev.mutex);
967 return 0;
968
Jason Wang692a9982013-01-28 01:05:17 +0000969err_used:
970 rcu_assign_pointer(vq->private_data, oldsock);
971 vhost_net_enable_vq(n, vq);
972 if (ubufs)
Michael S. Tsirkinc38e39c2013-06-25 17:29:46 +0300973 vhost_net_ubuf_put_wait_and_free(ubufs);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000974err_ubufs:
975 fput(sock->file);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500976err_vq:
977 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000978err:
979 mutex_unlock(&n->dev.mutex);
980 return r;
981}
982
983static 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;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300988 struct vhost_memory *memory;
Krishna Kumard47effe2011-03-01 17:06:37 +0530989
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000990 mutex_lock(&n->dev.mutex);
991 err = vhost_dev_check_owner(&n->dev);
992 if (err)
993 goto done;
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +0300994 memory = vhost_dev_reset_owner_prepare();
995 if (!memory) {
996 err = -ENOMEM;
997 goto done;
998 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +0000999 vhost_net_stop(n, &tx_sock, &rx_sock);
1000 vhost_net_flush(n);
Michael S. Tsirkin150b9e52013-04-28 17:12:08 +03001001 vhost_dev_reset_owner(&n->dev, memory);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001002 vhost_net_vq_reset(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001003done:
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
1012static int vhost_net_set_features(struct vhost_net *n, u64 features)
1013{
David Stevens8dd014a2010-07-27 18:52:21 +03001014 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001015 int i;
David Stevens8dd014a2010-07-27 18:52:21 +03001016
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 }
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001029 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) {
Asias He3ab2e422013-04-27 11:16:48 +08001038 mutex_lock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin81f95a52013-04-28 15:51:40 +03001039 n->vqs[i].vhost_hlen = vhost_hlen;
1040 n->vqs[i].sock_hlen = sock_hlen;
Asias He3ab2e422013-04-27 11:16:48 +08001041 mutex_unlock(&n->vqs[i].vq.mutex);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001042 }
1043 vhost_net_flush(n);
1044 mutex_unlock(&n->dev.mutex);
1045 return 0;
1046}
1047
Asias Heb1ad8492013-05-06 11:16:00 +08001048static long vhost_net_set_owner(struct vhost_net *n)
1049{
1050 int r;
1051
1052 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin05c05352013-06-06 15:20:39 +03001053 if (vhost_dev_has_owner(&n->dev)) {
1054 r = -EBUSY;
1055 goto out;
1056 }
Asias Heb1ad8492013-05-06 11:16:00 +08001057 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);
1064out:
1065 mutex_unlock(&n->dev.mutex);
1066 return r;
1067}
1068
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001069static 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;
Krishna Kumard47effe2011-03-01 17:06:37 +05301078
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001079 switch (ioctl) {
1080 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001081 if (copy_from_user(&backend, argp, sizeof backend))
1082 return -EFAULT;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001083 return vhost_net_set_backend(n, backend.index, backend.fd);
1084 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001085 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001086 if (copy_to_user(featurep, &features, sizeof features))
1087 return -EFAULT;
1088 return 0;
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001089 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +09001090 if (copy_from_user(&features, featurep, sizeof features))
1091 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +00001092 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001093 return -EOPNOTSUPP;
1094 return vhost_net_set_features(n, features);
1095 case VHOST_RESET_OWNER:
1096 return vhost_net_reset_owner(n);
Asias Heb1ad8492013-05-06 11:16:00 +08001097 case VHOST_SET_OWNER:
1098 return vhost_net_set_owner(n);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001099 default:
1100 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +02001101 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);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001106 mutex_unlock(&n->dev.mutex);
1107 return r;
1108 }
1109}
1110
1111#ifdef CONFIG_COMPAT
1112static 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
Tobias Klauser373a83a2010-05-17 15:12:49 +02001119static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001120 .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,
Arnd Bergmann6038f372010-08-15 18:52:59 +02001127 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001128};
1129
1130static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001131 .minor = VHOST_NET_MINOR,
1132 .name = "vhost-net",
1133 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001134};
1135
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001136static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001137{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +00001138 if (experimental_zcopytx)
Asias Hefe729a52013-05-06 16:38:24 +08001139 vhost_net_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +02001140 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001141}
1142module_init(vhost_net_init);
1143
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001144static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001145{
1146 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c92010-01-14 06:17:27 +00001147}
1148module_exit(vhost_net_exit);
1149
1150MODULE_VERSION("0.0.1");
1151MODULE_LICENSE("GPL v2");
1152MODULE_AUTHOR("Michael S. Tsirkin");
1153MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001154MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1155MODULE_ALIAS("devname:vhost-net");