blob: 6a86deb39a7246f6dd2f7418e7fd3745f04277cd [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. Tsirkinbab632d2011-07-18 03:48:46 +000033static int experimental_zcopytx;
34module_param(experimental_zcopytx, int, 0444);
35MODULE_PARM_DESC(experimental_zcopytx, "Enable Experimental Zero Copy TX");
36
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000037/* Max number of bytes transferred before requeueing the job.
38 * Using this limit prevents one virtqueue from starving others. */
39#define VHOST_NET_WEIGHT 0x80000
40
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000041/* MAX number of TX used buffers for outstanding zerocopy */
42#define VHOST_MAX_PEND 128
43#define VHOST_GOODCOPY_LEN 256
44
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000045/*
46 * For transmit, used buffer len is unused; we override it to track buffer
47 * status internally; used for zerocopy tx only.
48 */
49/* Lower device DMA failed */
50#define VHOST_DMA_FAILED_LEN 3
51/* Lower device DMA done */
52#define VHOST_DMA_DONE_LEN 2
53/* Lower device DMA in progress */
54#define VHOST_DMA_IN_PROGRESS 1
55/* Buffer unused */
56#define VHOST_DMA_CLEAR_LEN 0
57
58#define VHOST_DMA_IS_DONE(len) ((len) >= VHOST_DMA_DONE_LEN)
59
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000060enum {
61 VHOST_NET_VQ_RX = 0,
62 VHOST_NET_VQ_TX = 1,
63 VHOST_NET_VQ_MAX = 2,
64};
65
66enum vhost_net_poll_state {
67 VHOST_NET_POLL_DISABLED = 0,
68 VHOST_NET_POLL_STARTED = 1,
69 VHOST_NET_POLL_STOPPED = 2,
70};
71
72struct vhost_net {
73 struct vhost_dev dev;
74 struct vhost_virtqueue vqs[VHOST_NET_VQ_MAX];
75 struct vhost_poll poll[VHOST_NET_VQ_MAX];
76 /* Tells us whether we are polling a socket for TX.
77 * We only do this when socket buffer fills up.
78 * Protected by tx vq lock. */
79 enum vhost_net_poll_state tx_poll_state;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000080 /* Number of TX recently submitted.
81 * Protected by tx vq lock. */
82 unsigned tx_packets;
83 /* Number of times zerocopy TX recently failed.
84 * Protected by tx vq lock. */
85 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +020086 /* Flush in progress. Protected by tx vq lock. */
87 bool tx_flush;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000088};
89
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000090static void vhost_net_tx_packet(struct vhost_net *net)
91{
92 ++net->tx_packets;
93 if (net->tx_packets < 1024)
94 return;
95 net->tx_packets = 0;
96 net->tx_zcopy_err = 0;
97}
98
99static void vhost_net_tx_err(struct vhost_net *net)
100{
101 ++net->tx_zcopy_err;
102}
103
104static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
105{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200106 /* TX flush waits for outstanding DMAs to be done.
107 * Don't start new DMAs.
108 */
109 return !net->tx_flush &&
110 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000111}
112
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000113static bool vhost_sock_zcopy(struct socket *sock)
114{
115 return unlikely(experimental_zcopytx) &&
116 sock_flag(sock->sk, SOCK_ZEROCOPY);
117}
118
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000119/* Pop first len bytes from iovec. Return number of segments used. */
120static int move_iovec_hdr(struct iovec *from, struct iovec *to,
121 size_t len, int iov_count)
122{
123 int seg = 0;
124 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530125
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000126 while (len && seg < iov_count) {
127 size = min(from->iov_len, len);
128 to->iov_base = from->iov_base;
129 to->iov_len = size;
130 from->iov_len -= size;
131 from->iov_base += size;
132 len -= size;
133 ++from;
134 ++to;
135 ++seg;
136 }
137 return seg;
138}
David Stevens8dd014a2010-07-27 18:52:21 +0300139/* Copy iovec entries for len bytes from iovec. */
140static void copy_iovec_hdr(const struct iovec *from, struct iovec *to,
141 size_t len, int iovcount)
142{
143 int seg = 0;
144 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530145
David Stevens8dd014a2010-07-27 18:52:21 +0300146 while (len && seg < iovcount) {
147 size = min(from->iov_len, len);
148 to->iov_base = from->iov_base;
149 to->iov_len = size;
150 len -= size;
151 ++from;
152 ++to;
153 ++seg;
154 }
155}
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000156
157/* Caller must have TX VQ lock */
158static void tx_poll_stop(struct vhost_net *net)
159{
160 if (likely(net->tx_poll_state != VHOST_NET_POLL_STARTED))
161 return;
162 vhost_poll_stop(net->poll + VHOST_NET_VQ_TX);
163 net->tx_poll_state = VHOST_NET_POLL_STOPPED;
164}
165
166/* Caller must have TX VQ lock */
167static void tx_poll_start(struct vhost_net *net, struct socket *sock)
168{
169 if (unlikely(net->tx_poll_state != VHOST_NET_POLL_STOPPED))
170 return;
171 vhost_poll_start(net->poll + VHOST_NET_VQ_TX, sock->file);
172 net->tx_poll_state = VHOST_NET_POLL_STARTED;
173}
174
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000175/* In case of DMA done not in order in lower device driver for some reason.
176 * upend_idx is used to track end of used idx, done_idx is used to track head
177 * of used idx. Once lower device DMA done contiguously, we will signal KVM
178 * guest used idx.
179 */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000180static int vhost_zerocopy_signal_used(struct vhost_net *net,
181 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000182{
183 int i;
184 int j = 0;
185
186 for (i = vq->done_idx; i != vq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000187 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
188 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000189 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
190 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
191 vhost_add_used_and_signal(vq->dev, vq,
192 vq->heads[i].id, 0);
193 ++j;
194 } else
195 break;
196 }
197 if (j)
198 vq->done_idx = i;
199 return j;
200}
201
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000202static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000203{
204 struct vhost_ubuf_ref *ubufs = ubuf->ctx;
205 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000206 int cnt = atomic_read(&ubufs->kref.refcount);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000207
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000208 /*
209 * Trigger polling thread if guest stopped submitting new buffers:
210 * in this case, the refcount after decrement will eventually reach 1
211 * so here it is 2.
212 * We also trigger polling periodically after each 16 packets
213 * (the value 16 here is more or less arbitrary, it's tuned to trigger
214 * less than 10% of times).
215 */
216 if (cnt <= 2 || !(cnt % 16))
217 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000218 /* set len to mark this desc buffers done DMA */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000219 vq->heads[ubuf->desc].len = success ?
220 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000221 vhost_ubuf_put(ubufs);
222}
223
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000224/* Expects to be always run from workqueue - which acts as
225 * read-size critical section for our kind of RCU. */
226static void handle_tx(struct vhost_net *net)
227{
228 struct vhost_virtqueue *vq = &net->dev.vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300229 unsigned out, in, s;
230 int head;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000231 struct msghdr msg = {
232 .msg_name = NULL,
233 .msg_namelen = 0,
234 .msg_control = NULL,
235 .msg_controllen = 0,
236 .msg_iov = vq->iov,
237 .msg_flags = MSG_DONTWAIT,
238 };
239 size_t len, total_len = 0;
240 int err, wmem;
241 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100242 struct socket *sock;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000243 struct vhost_ubuf_ref *uninitialized_var(ubufs);
244 bool zcopy;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100245
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200246 /* TODO: check that we are running from vhost_worker? */
Michael S. Tsirkin11cd1a82010-11-14 17:31:52 +0200247 sock = rcu_dereference_check(vq->private_data, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000248 if (!sock)
249 return;
250
251 wmem = atomic_read(&sock->sk->sk_wmem_alloc);
Sridhar Samudrala39286fa2010-02-28 19:39:16 +0200252 if (wmem >= sock->sk->sk_sndbuf) {
253 mutex_lock(&vq->mutex);
254 tx_poll_start(net, sock);
255 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000256 return;
Sridhar Samudrala39286fa2010-02-28 19:39:16 +0200257 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000258
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000259 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300260 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000261
Michael S. Tsirkin0e255572010-03-08 23:24:22 +0200262 if (wmem < sock->sk->sk_sndbuf / 2)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000263 tx_poll_stop(net);
David Stevens8dd014a2010-07-27 18:52:21 +0300264 hdr_size = vq->vhost_hlen;
Jason Wangc460f052012-05-02 11:42:23 +0800265 zcopy = vq->ubufs;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000266
267 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000268 /* Release DMAs done buffers first */
269 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000270 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000271
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000272 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
273 ARRAY_SIZE(vq->iov),
274 &out, &in,
275 NULL, NULL);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300276 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300277 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300278 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000279 /* Nothing new? Wait for eventfd to tell us they refilled. */
280 if (head == vq->num) {
Shirley Ma9e380822011-07-20 10:23:12 -0700281 int num_pends;
282
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000283 wmem = atomic_read(&sock->sk->sk_wmem_alloc);
284 if (wmem >= sock->sk->sk_sndbuf * 3 / 4) {
285 tx_poll_start(net, sock);
286 set_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
287 break;
288 }
Shirley Ma9e380822011-07-20 10:23:12 -0700289 /* If more outstanding DMAs, queue the work.
290 * Handle upend_idx wrap around
291 */
292 num_pends = likely(vq->upend_idx >= vq->done_idx) ?
293 (vq->upend_idx - vq->done_idx) :
294 (vq->upend_idx + UIO_MAXIOV - vq->done_idx);
295 if (unlikely(num_pends > VHOST_MAX_PEND)) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000296 tx_poll_start(net, sock);
297 set_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
298 break;
299 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300300 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
301 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000302 continue;
303 }
304 break;
305 }
306 if (in) {
307 vq_err(vq, "Unexpected descriptor format for TX: "
308 "out %d, int %d\n", out, in);
309 break;
310 }
311 /* Skip header. TODO: support TSO. */
312 s = move_iovec_hdr(vq->iov, vq->hdr, hdr_size, out);
313 msg.msg_iovlen = out;
314 len = iov_length(vq->iov, out);
315 /* Sanity check */
316 if (!len) {
317 vq_err(vq, "Unexpected header len for TX: "
318 "%zd expected %zd\n",
319 iov_length(vq->hdr, s), hdr_size);
320 break;
321 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000322 /* use msg_control to pass vhost zerocopy ubuf info to skb */
323 if (zcopy) {
324 vq->heads[vq->upend_idx].id = head;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000325 if (!vhost_net_tx_select_zcopy(net) ||
326 len < VHOST_GOODCOPY_LEN) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000327 /* copy don't need to wait for DMA done */
328 vq->heads[vq->upend_idx].len =
329 VHOST_DMA_DONE_LEN;
330 msg.msg_control = NULL;
331 msg.msg_controllen = 0;
332 ubufs = NULL;
333 } else {
334 struct ubuf_info *ubuf = &vq->ubuf_info[head];
335
Michael S. Tsirkin70e4cb92012-11-01 09:16:37 +0000336 vq->heads[vq->upend_idx].len =
337 VHOST_DMA_IN_PROGRESS;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000338 ubuf->callback = vhost_zerocopy_callback;
Michael S. Tsirkinca8f4fb2012-04-09 00:24:02 +0000339 ubuf->ctx = vq->ubufs;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000340 ubuf->desc = vq->upend_idx;
341 msg.msg_control = ubuf;
342 msg.msg_controllen = sizeof(ubuf);
343 ubufs = vq->ubufs;
344 kref_get(&ubufs->kref);
345 }
346 vq->upend_idx = (vq->upend_idx + 1) % UIO_MAXIOV;
347 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000348 /* TODO: Check specific error and bomb out unless ENOBUFS? */
349 err = sock->ops->sendmsg(NULL, sock, &msg, len);
350 if (unlikely(err < 0)) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000351 if (zcopy) {
352 if (ubufs)
353 vhost_ubuf_put(ubufs);
354 vq->upend_idx = ((unsigned)vq->upend_idx - 1) %
355 UIO_MAXIOV;
356 }
David Stevens8dd014a2010-07-27 18:52:21 +0300357 vhost_discard_vq_desc(vq, 1);
Jason Wangdbf34202012-05-02 11:42:32 +0800358 if (err == -EAGAIN || err == -ENOBUFS)
359 tx_poll_start(net, sock);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000360 break;
361 }
362 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300363 pr_debug("Truncated TX packet: "
364 " len %d != %zd\n", err, len);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000365 if (!zcopy)
366 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800367 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000368 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000369 total_len += len;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000370 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000371 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
372 vhost_poll_queue(&vq->poll);
373 break;
374 }
375 }
376
377 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000378}
379
David Stevens8dd014a2010-07-27 18:52:21 +0300380static int peek_head_len(struct sock *sk)
381{
382 struct sk_buff *head;
383 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800384 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300385
Jason Wang783e3982011-01-17 16:11:17 +0800386 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300387 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000388 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300389 len = head->len;
Basil Gorc53cff5e2012-05-03 22:55:23 +0000390 if (vlan_tx_tag_present(head))
391 len += VLAN_HLEN;
392 }
393
Jason Wang783e3982011-01-17 16:11:17 +0800394 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300395 return len;
396}
397
398/* This is a multi-buffer version of vhost_get_desc, that works if
399 * vq has read descriptors only.
400 * @vq - the relevant virtqueue
401 * @datalen - data length we'll be reading
402 * @iovcount - returned count of io vectors we fill
403 * @log - vhost log
404 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800405 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300406 * returns number of buffer heads allocated, negative on error
407 */
408static int get_rx_bufs(struct vhost_virtqueue *vq,
409 struct vring_used_elem *heads,
410 int datalen,
411 unsigned *iovcount,
412 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800413 unsigned *log_num,
414 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300415{
416 unsigned int out, in;
417 int seg = 0;
418 int headcount = 0;
419 unsigned d;
420 int r, nlogs = 0;
421
Jason Wang94249362011-01-17 16:11:08 +0800422 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800423 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300424 r = -ENOBUFS;
425 goto err;
426 }
427 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
428 ARRAY_SIZE(vq->iov) - seg, &out,
429 &in, log, log_num);
430 if (d == vq->num) {
431 r = 0;
432 goto err;
433 }
434 if (unlikely(out || in <= 0)) {
435 vq_err(vq, "unexpected descriptor format for RX: "
436 "out %d, in %d\n", out, in);
437 r = -EINVAL;
438 goto err;
439 }
440 if (unlikely(log)) {
441 nlogs += *log_num;
442 log += *log_num;
443 }
444 heads[headcount].id = d;
445 heads[headcount].len = iov_length(vq->iov + seg, in);
446 datalen -= heads[headcount].len;
447 ++headcount;
448 seg += in;
449 }
450 heads[headcount - 1].len += datalen;
451 *iovcount = seg;
452 if (unlikely(log))
453 *log_num = nlogs;
454 return headcount;
455err:
456 vhost_discard_vq_desc(vq, headcount);
457 return r;
458}
459
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000460/* Expects to be always run from workqueue - which acts as
461 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800462static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000463{
David Stevens8dd014a2010-07-27 18:52:21 +0300464 struct vhost_virtqueue *vq = &net->dev.vqs[VHOST_NET_VQ_RX];
465 unsigned uninitialized_var(in), log;
466 struct vhost_log *vq_log;
467 struct msghdr msg = {
468 .msg_name = NULL,
469 .msg_namelen = 0,
470 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
471 .msg_controllen = 0,
472 .msg_iov = vq->iov,
473 .msg_flags = MSG_DONTWAIT,
474 };
David Stevens8dd014a2010-07-27 18:52:21 +0300475 struct virtio_net_hdr_mrg_rxbuf hdr = {
476 .hdr.flags = 0,
477 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
478 };
David Stevens8dd014a2010-07-27 18:52:21 +0300479 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200480 int err, mergeable;
481 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300482 size_t vhost_hlen, sock_hlen;
483 size_t vhost_len, sock_len;
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200484 /* TODO: check that we are running from vhost_worker? */
485 struct socket *sock = rcu_dereference_check(vq->private_data, 1);
Krishna Kumard47effe2011-03-01 17:06:37 +0530486
Michael S. Tsirkinde4d7682011-03-13 23:00:52 +0200487 if (!sock)
David Stevens8dd014a2010-07-27 18:52:21 +0300488 return;
489
David Stevens8dd014a2010-07-27 18:52:21 +0300490 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300491 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300492 vhost_hlen = vq->vhost_hlen;
493 sock_hlen = vq->sock_hlen;
494
495 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
496 vq->log : NULL;
Jason Wangcfbdab92011-01-17 16:10:59 +0800497 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300498
499 while ((sock_len = peek_head_len(sock->sk))) {
500 sock_len += sock_hlen;
501 vhost_len = sock_len + vhost_hlen;
502 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800503 &in, vq_log, &log,
504 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300505 /* On error, stop handling until the next kick. */
506 if (unlikely(headcount < 0))
507 break;
508 /* OK, now we need to know about added descriptors. */
509 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300510 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300511 /* They have slipped one in as we were
512 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300513 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300514 continue;
515 }
516 /* Nothing new? Wait for eventfd to tell us
517 * they refilled. */
518 break;
519 }
520 /* We don't need to be notified again. */
521 if (unlikely((vhost_hlen)))
522 /* Skip header. TODO: support TSO. */
523 move_iovec_hdr(vq->iov, vq->hdr, vhost_hlen, in);
524 else
525 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
Jason Wanga290aec2010-11-29 13:48:40 +0800526 * needed because recvmsg can modify msg_iov. */
David Stevens8dd014a2010-07-27 18:52:21 +0300527 copy_iovec_hdr(vq->iov, vq->hdr, sock_hlen, in);
528 msg.msg_iovlen = in;
529 err = sock->ops->recvmsg(NULL, sock, &msg,
530 sock_len, MSG_DONTWAIT | MSG_TRUNC);
531 /* Userspace might have consumed the packet meanwhile:
532 * it's not supposed to do this usually, but might be hard
533 * to prevent. Discard data we got (if any) and keep going. */
534 if (unlikely(err != sock_len)) {
535 pr_debug("Discarded rx packet: "
536 " len %d, expected %zd\n", err, sock_len);
537 vhost_discard_vq_desc(vq, headcount);
538 continue;
539 }
540 if (unlikely(vhost_hlen) &&
541 memcpy_toiovecend(vq->hdr, (unsigned char *)&hdr, 0,
542 vhost_hlen)) {
543 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
544 vq->iov->iov_base);
545 break;
546 }
547 /* TODO: Should check and handle checksum. */
Jason Wangcfbdab92011-01-17 16:10:59 +0800548 if (likely(mergeable) &&
David Stevens8dd014a2010-07-27 18:52:21 +0300549 memcpy_toiovecend(vq->hdr, (unsigned char *)&headcount,
550 offsetof(typeof(hdr), num_buffers),
551 sizeof hdr.num_buffers)) {
552 vq_err(vq, "Failed num_buffers write");
553 vhost_discard_vq_desc(vq, headcount);
554 break;
555 }
556 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
557 headcount);
558 if (unlikely(vq_log))
559 vhost_log_write(vq, vq_log, log, vhost_len);
560 total_len += vhost_len;
561 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
562 vhost_poll_queue(&vq->poll);
563 break;
564 }
565 }
566
567 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300568}
569
Tejun Heoc23f34452010-06-02 20:40:00 +0200570static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000571{
Tejun Heoc23f34452010-06-02 20:40:00 +0200572 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
573 poll.work);
574 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
575
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000576 handle_tx(net);
577}
578
Tejun Heoc23f34452010-06-02 20:40:00 +0200579static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000580{
Tejun Heoc23f34452010-06-02 20:40:00 +0200581 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
582 poll.work);
583 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
584
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000585 handle_rx(net);
586}
587
Tejun Heoc23f34452010-06-02 20:40:00 +0200588static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000589{
Tejun Heoc23f34452010-06-02 20:40:00 +0200590 struct vhost_net *net = container_of(work, struct vhost_net,
591 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000592 handle_tx(net);
593}
594
Tejun Heoc23f34452010-06-02 20:40:00 +0200595static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000596{
Tejun Heoc23f34452010-06-02 20:40:00 +0200597 struct vhost_net *net = container_of(work, struct vhost_net,
598 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000599 handle_rx(net);
600}
601
602static int vhost_net_open(struct inode *inode, struct file *f)
603{
604 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
Tejun Heoc23f34452010-06-02 20:40:00 +0200605 struct vhost_dev *dev;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000606 int r;
Tejun Heoc23f34452010-06-02 20:40:00 +0200607
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000608 if (!n)
609 return -ENOMEM;
Tejun Heoc23f34452010-06-02 20:40:00 +0200610
611 dev = &n->dev;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000612 n->vqs[VHOST_NET_VQ_TX].handle_kick = handle_tx_kick;
613 n->vqs[VHOST_NET_VQ_RX].handle_kick = handle_rx_kick;
Tejun Heoc23f34452010-06-02 20:40:00 +0200614 r = vhost_dev_init(dev, n->vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000615 if (r < 0) {
616 kfree(n);
617 return r;
618 }
619
Tejun Heoc23f34452010-06-02 20:40:00 +0200620 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
621 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000622 n->tx_poll_state = VHOST_NET_POLL_DISABLED;
623
624 f->private_data = n;
625
626 return 0;
627}
628
629static void vhost_net_disable_vq(struct vhost_net *n,
630 struct vhost_virtqueue *vq)
631{
632 if (!vq->private_data)
633 return;
634 if (vq == n->vqs + VHOST_NET_VQ_TX) {
635 tx_poll_stop(n);
636 n->tx_poll_state = VHOST_NET_POLL_DISABLED;
637 } else
638 vhost_poll_stop(n->poll + VHOST_NET_VQ_RX);
639}
640
641static void vhost_net_enable_vq(struct vhost_net *n,
642 struct vhost_virtqueue *vq)
643{
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100644 struct socket *sock;
645
646 sock = rcu_dereference_protected(vq->private_data,
647 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000648 if (!sock)
649 return;
650 if (vq == n->vqs + VHOST_NET_VQ_TX) {
651 n->tx_poll_state = VHOST_NET_POLL_STOPPED;
652 tx_poll_start(n, sock);
653 } else
654 vhost_poll_start(n->poll + VHOST_NET_VQ_RX, sock->file);
655}
656
657static struct socket *vhost_net_stop_vq(struct vhost_net *n,
658 struct vhost_virtqueue *vq)
659{
660 struct socket *sock;
661
662 mutex_lock(&vq->mutex);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100663 sock = rcu_dereference_protected(vq->private_data,
664 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000665 vhost_net_disable_vq(n, vq);
666 rcu_assign_pointer(vq->private_data, NULL);
667 mutex_unlock(&vq->mutex);
668 return sock;
669}
670
671static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
672 struct socket **rx_sock)
673{
674 *tx_sock = vhost_net_stop_vq(n, n->vqs + VHOST_NET_VQ_TX);
675 *rx_sock = vhost_net_stop_vq(n, n->vqs + VHOST_NET_VQ_RX);
676}
677
678static void vhost_net_flush_vq(struct vhost_net *n, int index)
679{
680 vhost_poll_flush(n->poll + index);
681 vhost_poll_flush(&n->dev.vqs[index].poll);
682}
683
684static void vhost_net_flush(struct vhost_net *n)
685{
686 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
687 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200688 if (n->dev.vqs[VHOST_NET_VQ_TX].ubufs) {
689 mutex_lock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
690 n->tx_flush = true;
691 mutex_unlock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
692 /* Wait for all lower device DMAs done. */
693 vhost_ubuf_put_and_wait(n->dev.vqs[VHOST_NET_VQ_TX].ubufs);
694 mutex_lock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
695 n->tx_flush = false;
696 kref_init(&n->dev.vqs[VHOST_NET_VQ_TX].ubufs->kref);
697 mutex_unlock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
698 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000699}
700
701static int vhost_net_release(struct inode *inode, struct file *f)
702{
703 struct vhost_net *n = f->private_data;
704 struct socket *tx_sock;
705 struct socket *rx_sock;
706
707 vhost_net_stop(n, &tx_sock, &rx_sock);
708 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000709 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200710 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000711 if (tx_sock)
712 fput(tx_sock->file);
713 if (rx_sock)
714 fput(rx_sock->file);
715 /* We do an extra flush before freeing memory,
716 * since jobs can re-queue themselves. */
717 vhost_net_flush(n);
718 kfree(n);
719 return 0;
720}
721
722static struct socket *get_raw_socket(int fd)
723{
724 struct {
725 struct sockaddr_ll sa;
726 char buf[MAX_ADDR_LEN];
727 } uaddr;
728 int uaddr_len = sizeof uaddr, r;
729 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530730
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000731 if (!sock)
732 return ERR_PTR(-ENOTSOCK);
733
734 /* Parameter checking */
735 if (sock->sk->sk_type != SOCK_RAW) {
736 r = -ESOCKTNOSUPPORT;
737 goto err;
738 }
739
740 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
741 &uaddr_len, 0);
742 if (r)
743 goto err;
744
745 if (uaddr.sa.sll_family != AF_PACKET) {
746 r = -EPFNOSUPPORT;
747 goto err;
748 }
749 return sock;
750err:
751 fput(sock->file);
752 return ERR_PTR(r);
753}
754
Arnd Bergmann501c7742010-02-18 05:46:50 +0000755static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000756{
757 struct file *file = fget(fd);
758 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530759
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000760 if (!file)
761 return ERR_PTR(-EBADF);
762 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000763 if (!IS_ERR(sock))
764 return sock;
765 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000766 if (IS_ERR(sock))
767 fput(file);
768 return sock;
769}
770
771static struct socket *get_socket(int fd)
772{
773 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530774
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000775 /* special case to disable backend */
776 if (fd == -1)
777 return NULL;
778 sock = get_raw_socket(fd);
779 if (!IS_ERR(sock))
780 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000781 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000782 if (!IS_ERR(sock))
783 return sock;
784 return ERR_PTR(-ENOTSOCK);
785}
786
787static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
788{
789 struct socket *sock, *oldsock;
790 struct vhost_virtqueue *vq;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000791 struct vhost_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000792 int r;
793
794 mutex_lock(&n->dev.mutex);
795 r = vhost_dev_check_owner(&n->dev);
796 if (r)
797 goto err;
798
799 if (index >= VHOST_NET_VQ_MAX) {
800 r = -ENOBUFS;
801 goto err;
802 }
803 vq = n->vqs + index;
804 mutex_lock(&vq->mutex);
805
806 /* Verify that ring has been setup correctly. */
807 if (!vhost_vq_access_ok(vq)) {
808 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -0500809 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000810 }
811 sock = get_socket(fd);
812 if (IS_ERR(sock)) {
813 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500814 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000815 }
816
817 /* start polling new socket */
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100818 oldsock = rcu_dereference_protected(vq->private_data,
819 lockdep_is_held(&vq->mutex));
David S. Miller11fe8832010-07-20 18:25:24 -0700820 if (sock != oldsock) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000821 ubufs = vhost_ubuf_alloc(vq, sock && vhost_sock_zcopy(sock));
822 if (IS_ERR(ubufs)) {
823 r = PTR_ERR(ubufs);
824 goto err_ubufs;
825 }
826 oldubufs = vq->ubufs;
827 vq->ubufs = ubufs;
Krishna Kumard47effe2011-03-01 17:06:37 +0530828 vhost_net_disable_vq(n, vq);
829 rcu_assign_pointer(vq->private_data, sock);
830 vhost_net_enable_vq(n, vq);
Jason Wangf59281d2011-06-21 18:04:27 +0800831
832 r = vhost_init_used(vq);
833 if (r)
834 goto err_vq;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +0000835
836 n->tx_packets = 0;
837 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200838 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -0500839 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000840
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300841 mutex_unlock(&vq->mutex);
842
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300843 if (oldubufs) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000844 vhost_ubuf_put_and_wait(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300845 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000846 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300847 mutex_unlock(&vq->mutex);
848 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000849
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000850 if (oldsock) {
851 vhost_net_flush_vq(n, index);
852 fput(oldsock->file);
853 }
Jeff Dike1dace8c2010-03-04 16:10:14 -0500854
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300855 mutex_unlock(&n->dev.mutex);
856 return 0;
857
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000858err_ubufs:
859 fput(sock->file);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500860err_vq:
861 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000862err:
863 mutex_unlock(&n->dev.mutex);
864 return r;
865}
866
867static long vhost_net_reset_owner(struct vhost_net *n)
868{
869 struct socket *tx_sock = NULL;
870 struct socket *rx_sock = NULL;
871 long err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530872
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000873 mutex_lock(&n->dev.mutex);
874 err = vhost_dev_check_owner(&n->dev);
875 if (err)
876 goto done;
877 vhost_net_stop(n, &tx_sock, &rx_sock);
878 vhost_net_flush(n);
879 err = vhost_dev_reset_owner(&n->dev);
880done:
881 mutex_unlock(&n->dev.mutex);
882 if (tx_sock)
883 fput(tx_sock->file);
884 if (rx_sock)
885 fput(rx_sock->file);
886 return err;
887}
888
889static int vhost_net_set_features(struct vhost_net *n, u64 features)
890{
David Stevens8dd014a2010-07-27 18:52:21 +0300891 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000892 int i;
David Stevens8dd014a2010-07-27 18:52:21 +0300893
894 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
895 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
896 sizeof(struct virtio_net_hdr);
897 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
898 /* vhost provides vnet_hdr */
899 vhost_hlen = hdr_len;
900 sock_hlen = 0;
901 } else {
902 /* socket provides vnet_hdr */
903 vhost_hlen = 0;
904 sock_hlen = hdr_len;
905 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000906 mutex_lock(&n->dev.mutex);
907 if ((features & (1 << VHOST_F_LOG_ALL)) &&
908 !vhost_log_access_ok(&n->dev)) {
909 mutex_unlock(&n->dev.mutex);
910 return -EFAULT;
911 }
912 n->dev.acked_features = features;
913 smp_wmb();
914 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
915 mutex_lock(&n->vqs[i].mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300916 n->vqs[i].vhost_hlen = vhost_hlen;
917 n->vqs[i].sock_hlen = sock_hlen;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000918 mutex_unlock(&n->vqs[i].mutex);
919 }
920 vhost_net_flush(n);
921 mutex_unlock(&n->dev.mutex);
922 return 0;
923}
924
925static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
926 unsigned long arg)
927{
928 struct vhost_net *n = f->private_data;
929 void __user *argp = (void __user *)arg;
930 u64 __user *featurep = argp;
931 struct vhost_vring_file backend;
932 u64 features;
933 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +0530934
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000935 switch (ioctl) {
936 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900937 if (copy_from_user(&backend, argp, sizeof backend))
938 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000939 return vhost_net_set_backend(n, backend.index, backend.fd);
940 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +0000941 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900942 if (copy_to_user(featurep, &features, sizeof features))
943 return -EFAULT;
944 return 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000945 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900946 if (copy_from_user(&features, featurep, sizeof features))
947 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +0000948 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000949 return -EOPNOTSUPP;
950 return vhost_net_set_features(n, features);
951 case VHOST_RESET_OWNER:
952 return vhost_net_reset_owner(n);
953 default:
954 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +0200955 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
956 if (r == -ENOIOCTLCMD)
957 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
958 else
959 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000960 mutex_unlock(&n->dev.mutex);
961 return r;
962 }
963}
964
965#ifdef CONFIG_COMPAT
966static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
967 unsigned long arg)
968{
969 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
970}
971#endif
972
Tobias Klauser373a83a2010-05-17 15:12:49 +0200973static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000974 .owner = THIS_MODULE,
975 .release = vhost_net_release,
976 .unlocked_ioctl = vhost_net_ioctl,
977#ifdef CONFIG_COMPAT
978 .compat_ioctl = vhost_net_compat_ioctl,
979#endif
980 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200981 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000982};
983
984static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +0000985 .minor = VHOST_NET_MINOR,
986 .name = "vhost-net",
987 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000988};
989
Christoph Hellwiga8d37822010-04-13 14:11:25 -0400990static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000991{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000992 if (experimental_zcopytx)
993 vhost_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +0200994 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000995}
996module_init(vhost_net_init);
997
Christoph Hellwiga8d37822010-04-13 14:11:25 -0400998static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000999{
1000 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001001}
1002module_exit(vhost_net_exit);
1003
1004MODULE_VERSION("0.0.1");
1005MODULE_LICENSE("GPL v2");
1006MODULE_AUTHOR("Michael S. Tsirkin");
1007MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001008MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1009MODULE_ALIAS("devname:vhost-net");