blob: ebd08b21b23432696047487367d44f76d4fa4f02 [file] [log] [blame]
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001/* Copyright (C) 2009 Red Hat, Inc.
2 * Author: Michael S. Tsirkin <mst@redhat.com>
3 *
4 * This work is licensed under the terms of the GNU GPL, version 2.
5 *
6 * virtio-net server in host kernel.
7 */
8
9#include <linux/compat.h>
10#include <linux/eventfd.h>
11#include <linux/vhost.h>
12#include <linux/virtio_net.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000013#include <linux/miscdevice.h>
14#include <linux/module.h>
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000015#include <linux/moduleparam.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000016#include <linux/mutex.h>
17#include <linux/workqueue.h>
18#include <linux/rcupdate.h>
19#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000021
22#include <linux/net.h>
23#include <linux/if_packet.h>
24#include <linux/if_arp.h>
25#include <linux/if_tun.h>
Arnd Bergmann501c7742010-02-18 05:46:50 +000026#include <linux/if_macvlan.h>
Basil Gorc53cff5e2012-05-03 22:55:23 +000027#include <linux/if_vlan.h>
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000028
29#include <net/sock.h>
30
31#include "vhost.h"
32
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020033static int experimental_zcopytx = 1;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000034module_param(experimental_zcopytx, int, 0444);
Michael S. Tsirkinf9611c42012-12-06 14:56:00 +020035MODULE_PARM_DESC(experimental_zcopytx, "Enable Zero Copy TX;"
36 " 1 -Enable; 0 - Disable");
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000037
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000038/* Max number of bytes transferred before requeueing the job.
39 * Using this limit prevents one virtqueue from starving others. */
40#define VHOST_NET_WEIGHT 0x80000
41
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +000042/* MAX number of TX used buffers for outstanding zerocopy */
43#define VHOST_MAX_PEND 128
44#define VHOST_GOODCOPY_LEN 256
45
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000046/*
47 * For transmit, used buffer len is unused; we override it to track buffer
48 * status internally; used for zerocopy tx only.
49 */
50/* Lower device DMA failed */
51#define VHOST_DMA_FAILED_LEN 3
52/* Lower device DMA done */
53#define VHOST_DMA_DONE_LEN 2
54/* Lower device DMA in progress */
55#define VHOST_DMA_IN_PROGRESS 1
56/* Buffer unused */
57#define VHOST_DMA_CLEAR_LEN 0
58
59#define VHOST_DMA_IS_DONE(len) ((len) >= VHOST_DMA_DONE_LEN)
60
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000061enum {
62 VHOST_NET_VQ_RX = 0,
63 VHOST_NET_VQ_TX = 1,
64 VHOST_NET_VQ_MAX = 2,
65};
66
67enum vhost_net_poll_state {
68 VHOST_NET_POLL_DISABLED = 0,
69 VHOST_NET_POLL_STARTED = 1,
70 VHOST_NET_POLL_STOPPED = 2,
71};
72
73struct vhost_net {
74 struct vhost_dev dev;
75 struct vhost_virtqueue vqs[VHOST_NET_VQ_MAX];
76 struct vhost_poll poll[VHOST_NET_VQ_MAX];
77 /* Tells us whether we are polling a socket for TX.
78 * We only do this when socket buffer fills up.
79 * Protected by tx vq lock. */
80 enum vhost_net_poll_state tx_poll_state;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000081 /* Number of TX recently submitted.
82 * Protected by tx vq lock. */
83 unsigned tx_packets;
84 /* Number of times zerocopy TX recently failed.
85 * Protected by tx vq lock. */
86 unsigned tx_zcopy_err;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +020087 /* Flush in progress. Protected by tx vq lock. */
88 bool tx_flush;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +000089};
90
Michael S. Tsirkineaae8132012-11-01 09:16:51 +000091static void vhost_net_tx_packet(struct vhost_net *net)
92{
93 ++net->tx_packets;
94 if (net->tx_packets < 1024)
95 return;
96 net->tx_packets = 0;
97 net->tx_zcopy_err = 0;
98}
99
100static void vhost_net_tx_err(struct vhost_net *net)
101{
102 ++net->tx_zcopy_err;
103}
104
105static bool vhost_net_tx_select_zcopy(struct vhost_net *net)
106{
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200107 /* TX flush waits for outstanding DMAs to be done.
108 * Don't start new DMAs.
109 */
110 return !net->tx_flush &&
111 net->tx_packets / 64 >= net->tx_zcopy_err;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000112}
113
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000114static bool vhost_sock_zcopy(struct socket *sock)
115{
116 return unlikely(experimental_zcopytx) &&
117 sock_flag(sock->sk, SOCK_ZEROCOPY);
118}
119
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000120/* Pop first len bytes from iovec. Return number of segments used. */
121static int move_iovec_hdr(struct iovec *from, struct iovec *to,
122 size_t len, int iov_count)
123{
124 int seg = 0;
125 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530126
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000127 while (len && seg < iov_count) {
128 size = min(from->iov_len, len);
129 to->iov_base = from->iov_base;
130 to->iov_len = size;
131 from->iov_len -= size;
132 from->iov_base += size;
133 len -= size;
134 ++from;
135 ++to;
136 ++seg;
137 }
138 return seg;
139}
David Stevens8dd014a2010-07-27 18:52:21 +0300140/* Copy iovec entries for len bytes from iovec. */
141static void copy_iovec_hdr(const struct iovec *from, struct iovec *to,
142 size_t len, int iovcount)
143{
144 int seg = 0;
145 size_t size;
Krishna Kumard47effe2011-03-01 17:06:37 +0530146
David Stevens8dd014a2010-07-27 18:52:21 +0300147 while (len && seg < iovcount) {
148 size = min(from->iov_len, len);
149 to->iov_base = from->iov_base;
150 to->iov_len = size;
151 len -= size;
152 ++from;
153 ++to;
154 ++seg;
155 }
156}
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000157
158/* Caller must have TX VQ lock */
159static void tx_poll_stop(struct vhost_net *net)
160{
161 if (likely(net->tx_poll_state != VHOST_NET_POLL_STARTED))
162 return;
163 vhost_poll_stop(net->poll + VHOST_NET_VQ_TX);
164 net->tx_poll_state = VHOST_NET_POLL_STOPPED;
165}
166
167/* Caller must have TX VQ lock */
168static void tx_poll_start(struct vhost_net *net, struct socket *sock)
169{
170 if (unlikely(net->tx_poll_state != VHOST_NET_POLL_STOPPED))
171 return;
172 vhost_poll_start(net->poll + VHOST_NET_VQ_TX, sock->file);
173 net->tx_poll_state = VHOST_NET_POLL_STARTED;
174}
175
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000176/* In case of DMA done not in order in lower device driver for some reason.
177 * upend_idx is used to track end of used idx, done_idx is used to track head
178 * of used idx. Once lower device DMA done contiguously, we will signal KVM
179 * guest used idx.
180 */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000181static int vhost_zerocopy_signal_used(struct vhost_net *net,
182 struct vhost_virtqueue *vq)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000183{
184 int i;
185 int j = 0;
186
187 for (i = vq->done_idx; i != vq->upend_idx; i = (i + 1) % UIO_MAXIOV) {
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000188 if (vq->heads[i].len == VHOST_DMA_FAILED_LEN)
189 vhost_net_tx_err(net);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000190 if (VHOST_DMA_IS_DONE(vq->heads[i].len)) {
191 vq->heads[i].len = VHOST_DMA_CLEAR_LEN;
192 vhost_add_used_and_signal(vq->dev, vq,
193 vq->heads[i].id, 0);
194 ++j;
195 } else
196 break;
197 }
198 if (j)
199 vq->done_idx = i;
200 return j;
201}
202
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000203static void vhost_zerocopy_callback(struct ubuf_info *ubuf, bool success)
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000204{
205 struct vhost_ubuf_ref *ubufs = ubuf->ctx;
206 struct vhost_virtqueue *vq = ubufs->vq;
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000207 int cnt = atomic_read(&ubufs->kref.refcount);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000208
Michael S. Tsirkin24eb21a2012-11-01 09:16:55 +0000209 /*
210 * Trigger polling thread if guest stopped submitting new buffers:
211 * in this case, the refcount after decrement will eventually reach 1
212 * so here it is 2.
213 * We also trigger polling periodically after each 16 packets
214 * (the value 16 here is more or less arbitrary, it's tuned to trigger
215 * less than 10% of times).
216 */
217 if (cnt <= 2 || !(cnt % 16))
218 vhost_poll_queue(&vq->poll);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000219 /* set len to mark this desc buffers done DMA */
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000220 vq->heads[ubuf->desc].len = success ?
221 VHOST_DMA_DONE_LEN : VHOST_DMA_FAILED_LEN;
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000222 vhost_ubuf_put(ubufs);
223}
224
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000225/* Expects to be always run from workqueue - which acts as
226 * read-size critical section for our kind of RCU. */
227static void handle_tx(struct vhost_net *net)
228{
229 struct vhost_virtqueue *vq = &net->dev.vqs[VHOST_NET_VQ_TX];
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300230 unsigned out, in, s;
231 int head;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000232 struct msghdr msg = {
233 .msg_name = NULL,
234 .msg_namelen = 0,
235 .msg_control = NULL,
236 .msg_controllen = 0,
237 .msg_iov = vq->iov,
238 .msg_flags = MSG_DONTWAIT,
239 };
240 size_t len, total_len = 0;
241 int err, wmem;
242 size_t hdr_size;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100243 struct socket *sock;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000244 struct vhost_ubuf_ref *uninitialized_var(ubufs);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200245 bool zcopy, zcopy_used;
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100246
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200247 /* TODO: check that we are running from vhost_worker? */
Michael S. Tsirkin11cd1a82010-11-14 17:31:52 +0200248 sock = rcu_dereference_check(vq->private_data, 1);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000249 if (!sock)
250 return;
251
252 wmem = atomic_read(&sock->sk->sk_wmem_alloc);
Sridhar Samudrala39286fa2010-02-28 19:39:16 +0200253 if (wmem >= sock->sk->sk_sndbuf) {
254 mutex_lock(&vq->mutex);
255 tx_poll_start(net, sock);
256 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000257 return;
Sridhar Samudrala39286fa2010-02-28 19:39:16 +0200258 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000259
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000260 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300261 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000262
Michael S. Tsirkin0e255572010-03-08 23:24:22 +0200263 if (wmem < sock->sk->sk_sndbuf / 2)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000264 tx_poll_stop(net);
David Stevens8dd014a2010-07-27 18:52:21 +0300265 hdr_size = vq->vhost_hlen;
Jason Wangc460f052012-05-02 11:42:23 +0800266 zcopy = vq->ubufs;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000267
268 for (;;) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000269 /* Release DMAs done buffers first */
270 if (zcopy)
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000271 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000272
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000273 head = vhost_get_vq_desc(&net->dev, vq, vq->iov,
274 ARRAY_SIZE(vq->iov),
275 &out, &in,
276 NULL, NULL);
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300277 /* On error, stop handling until the next kick. */
Michael S. Tsirkin7b3384f2010-07-01 18:40:12 +0300278 if (unlikely(head < 0))
Michael S. Tsirkind5675bd2010-06-24 16:59:59 +0300279 break;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000280 /* Nothing new? Wait for eventfd to tell us they refilled. */
281 if (head == vq->num) {
Shirley Ma9e380822011-07-20 10:23:12 -0700282 int num_pends;
283
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000284 wmem = atomic_read(&sock->sk->sk_wmem_alloc);
285 if (wmem >= sock->sk->sk_sndbuf * 3 / 4) {
286 tx_poll_start(net, sock);
287 set_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
288 break;
289 }
Shirley Ma9e380822011-07-20 10:23:12 -0700290 /* If more outstanding DMAs, queue the work.
291 * Handle upend_idx wrap around
292 */
293 num_pends = likely(vq->upend_idx >= vq->done_idx) ?
294 (vq->upend_idx - vq->done_idx) :
295 (vq->upend_idx + UIO_MAXIOV - vq->done_idx);
296 if (unlikely(num_pends > VHOST_MAX_PEND)) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000297 tx_poll_start(net, sock);
298 set_bit(SOCK_ASYNC_NOSPACE, &sock->flags);
299 break;
300 }
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300301 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
302 vhost_disable_notify(&net->dev, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000303 continue;
304 }
305 break;
306 }
307 if (in) {
308 vq_err(vq, "Unexpected descriptor format for TX: "
309 "out %d, int %d\n", out, in);
310 break;
311 }
312 /* Skip header. TODO: support TSO. */
313 s = move_iovec_hdr(vq->iov, vq->hdr, hdr_size, out);
314 msg.msg_iovlen = out;
315 len = iov_length(vq->iov, out);
316 /* Sanity check */
317 if (!len) {
318 vq_err(vq, "Unexpected header len for TX: "
319 "%zd expected %zd\n",
320 iov_length(vq->hdr, s), hdr_size);
321 break;
322 }
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200323 zcopy_used = zcopy && (len >= VHOST_GOODCOPY_LEN ||
324 vq->upend_idx != vq->done_idx);
325
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000326 /* use msg_control to pass vhost zerocopy ubuf info to skb */
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200327 if (zcopy_used) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000328 vq->heads[vq->upend_idx].id = head;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000329 if (!vhost_net_tx_select_zcopy(net) ||
330 len < VHOST_GOODCOPY_LEN) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000331 /* copy don't need to wait for DMA done */
332 vq->heads[vq->upend_idx].len =
333 VHOST_DMA_DONE_LEN;
334 msg.msg_control = NULL;
335 msg.msg_controllen = 0;
336 ubufs = NULL;
337 } else {
338 struct ubuf_info *ubuf = &vq->ubuf_info[head];
339
Michael S. Tsirkin70e4cb92012-11-01 09:16:37 +0000340 vq->heads[vq->upend_idx].len =
341 VHOST_DMA_IN_PROGRESS;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000342 ubuf->callback = vhost_zerocopy_callback;
Michael S. Tsirkinca8f4fb2012-04-09 00:24:02 +0000343 ubuf->ctx = vq->ubufs;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000344 ubuf->desc = vq->upend_idx;
345 msg.msg_control = ubuf;
346 msg.msg_controllen = sizeof(ubuf);
347 ubufs = vq->ubufs;
348 kref_get(&ubufs->kref);
349 }
350 vq->upend_idx = (vq->upend_idx + 1) % UIO_MAXIOV;
351 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000352 /* TODO: Check specific error and bomb out unless ENOBUFS? */
353 err = sock->ops->sendmsg(NULL, sock, &msg, len);
354 if (unlikely(err < 0)) {
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200355 if (zcopy_used) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000356 if (ubufs)
357 vhost_ubuf_put(ubufs);
358 vq->upend_idx = ((unsigned)vq->upend_idx - 1) %
359 UIO_MAXIOV;
360 }
David Stevens8dd014a2010-07-27 18:52:21 +0300361 vhost_discard_vq_desc(vq, 1);
Jason Wangdbf34202012-05-02 11:42:32 +0800362 if (err == -EAGAIN || err == -ENOBUFS)
363 tx_poll_start(net, sock);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000364 break;
365 }
366 if (err != len)
Michael S. Tsirkin95c0ec62010-06-24 17:10:25 +0300367 pr_debug("Truncated TX packet: "
368 " len %d != %zd\n", err, len);
Michael S. Tsirkincedb9bd2012-12-06 17:00:18 +0200369 if (!zcopy_used)
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000370 vhost_add_used_and_signal(&net->dev, vq, head, 0);
Jason Wangc8fb2172012-05-02 11:42:41 +0800371 else
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000372 vhost_zerocopy_signal_used(net, vq);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000373 total_len += len;
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000374 vhost_net_tx_packet(net);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000375 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
376 vhost_poll_queue(&vq->poll);
377 break;
378 }
379 }
380
381 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000382}
383
David Stevens8dd014a2010-07-27 18:52:21 +0300384static int peek_head_len(struct sock *sk)
385{
386 struct sk_buff *head;
387 int len = 0;
Jason Wang783e3982011-01-17 16:11:17 +0800388 unsigned long flags;
David Stevens8dd014a2010-07-27 18:52:21 +0300389
Jason Wang783e3982011-01-17 16:11:17 +0800390 spin_lock_irqsave(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300391 head = skb_peek(&sk->sk_receive_queue);
Basil Gorc53cff5e2012-05-03 22:55:23 +0000392 if (likely(head)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300393 len = head->len;
Basil Gorc53cff5e2012-05-03 22:55:23 +0000394 if (vlan_tx_tag_present(head))
395 len += VLAN_HLEN;
396 }
397
Jason Wang783e3982011-01-17 16:11:17 +0800398 spin_unlock_irqrestore(&sk->sk_receive_queue.lock, flags);
David Stevens8dd014a2010-07-27 18:52:21 +0300399 return len;
400}
401
402/* This is a multi-buffer version of vhost_get_desc, that works if
403 * vq has read descriptors only.
404 * @vq - the relevant virtqueue
405 * @datalen - data length we'll be reading
406 * @iovcount - returned count of io vectors we fill
407 * @log - vhost log
408 * @log_num - log offset
Jason Wang94249362011-01-17 16:11:08 +0800409 * @quota - headcount quota, 1 for big buffer
David Stevens8dd014a2010-07-27 18:52:21 +0300410 * returns number of buffer heads allocated, negative on error
411 */
412static int get_rx_bufs(struct vhost_virtqueue *vq,
413 struct vring_used_elem *heads,
414 int datalen,
415 unsigned *iovcount,
416 struct vhost_log *log,
Jason Wang94249362011-01-17 16:11:08 +0800417 unsigned *log_num,
418 unsigned int quota)
David Stevens8dd014a2010-07-27 18:52:21 +0300419{
420 unsigned int out, in;
421 int seg = 0;
422 int headcount = 0;
423 unsigned d;
424 int r, nlogs = 0;
425
Jason Wang94249362011-01-17 16:11:08 +0800426 while (datalen > 0 && headcount < quota) {
Jason Wange0e9b402010-09-14 23:53:05 +0800427 if (unlikely(seg >= UIO_MAXIOV)) {
David Stevens8dd014a2010-07-27 18:52:21 +0300428 r = -ENOBUFS;
429 goto err;
430 }
431 d = vhost_get_vq_desc(vq->dev, vq, vq->iov + seg,
432 ARRAY_SIZE(vq->iov) - seg, &out,
433 &in, log, log_num);
434 if (d == vq->num) {
435 r = 0;
436 goto err;
437 }
438 if (unlikely(out || in <= 0)) {
439 vq_err(vq, "unexpected descriptor format for RX: "
440 "out %d, in %d\n", out, in);
441 r = -EINVAL;
442 goto err;
443 }
444 if (unlikely(log)) {
445 nlogs += *log_num;
446 log += *log_num;
447 }
448 heads[headcount].id = d;
449 heads[headcount].len = iov_length(vq->iov + seg, in);
450 datalen -= heads[headcount].len;
451 ++headcount;
452 seg += in;
453 }
454 heads[headcount - 1].len += datalen;
455 *iovcount = seg;
456 if (unlikely(log))
457 *log_num = nlogs;
458 return headcount;
459err:
460 vhost_discard_vq_desc(vq, headcount);
461 return r;
462}
463
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000464/* Expects to be always run from workqueue - which acts as
465 * read-size critical section for our kind of RCU. */
Jason Wang94249362011-01-17 16:11:08 +0800466static void handle_rx(struct vhost_net *net)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000467{
David Stevens8dd014a2010-07-27 18:52:21 +0300468 struct vhost_virtqueue *vq = &net->dev.vqs[VHOST_NET_VQ_RX];
469 unsigned uninitialized_var(in), log;
470 struct vhost_log *vq_log;
471 struct msghdr msg = {
472 .msg_name = NULL,
473 .msg_namelen = 0,
474 .msg_control = NULL, /* FIXME: get and handle RX aux data. */
475 .msg_controllen = 0,
476 .msg_iov = vq->iov,
477 .msg_flags = MSG_DONTWAIT,
478 };
David Stevens8dd014a2010-07-27 18:52:21 +0300479 struct virtio_net_hdr_mrg_rxbuf hdr = {
480 .hdr.flags = 0,
481 .hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE
482 };
David Stevens8dd014a2010-07-27 18:52:21 +0300483 size_t total_len = 0;
Michael S. Tsirkin910a5782012-10-24 20:37:51 +0200484 int err, mergeable;
485 s16 headcount;
David Stevens8dd014a2010-07-27 18:52:21 +0300486 size_t vhost_hlen, sock_hlen;
487 size_t vhost_len, sock_len;
Michael S. Tsirkin5e182472011-01-18 13:04:43 +0200488 /* TODO: check that we are running from vhost_worker? */
489 struct socket *sock = rcu_dereference_check(vq->private_data, 1);
Krishna Kumard47effe2011-03-01 17:06:37 +0530490
Michael S. Tsirkinde4d7682011-03-13 23:00:52 +0200491 if (!sock)
David Stevens8dd014a2010-07-27 18:52:21 +0300492 return;
493
David Stevens8dd014a2010-07-27 18:52:21 +0300494 mutex_lock(&vq->mutex);
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300495 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300496 vhost_hlen = vq->vhost_hlen;
497 sock_hlen = vq->sock_hlen;
498
499 vq_log = unlikely(vhost_has_feature(&net->dev, VHOST_F_LOG_ALL)) ?
500 vq->log : NULL;
Jason Wangcfbdab92011-01-17 16:10:59 +0800501 mergeable = vhost_has_feature(&net->dev, VIRTIO_NET_F_MRG_RXBUF);
David Stevens8dd014a2010-07-27 18:52:21 +0300502
503 while ((sock_len = peek_head_len(sock->sk))) {
504 sock_len += sock_hlen;
505 vhost_len = sock_len + vhost_hlen;
506 headcount = get_rx_bufs(vq, vq->heads, vhost_len,
Jason Wang94249362011-01-17 16:11:08 +0800507 &in, vq_log, &log,
508 likely(mergeable) ? UIO_MAXIOV : 1);
David Stevens8dd014a2010-07-27 18:52:21 +0300509 /* On error, stop handling until the next kick. */
510 if (unlikely(headcount < 0))
511 break;
512 /* OK, now we need to know about added descriptors. */
513 if (!headcount) {
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300514 if (unlikely(vhost_enable_notify(&net->dev, vq))) {
David Stevens8dd014a2010-07-27 18:52:21 +0300515 /* They have slipped one in as we were
516 * doing that: check again. */
Michael S. Tsirkin8ea8cf82011-05-20 02:10:54 +0300517 vhost_disable_notify(&net->dev, vq);
David Stevens8dd014a2010-07-27 18:52:21 +0300518 continue;
519 }
520 /* Nothing new? Wait for eventfd to tell us
521 * they refilled. */
522 break;
523 }
524 /* We don't need to be notified again. */
525 if (unlikely((vhost_hlen)))
526 /* Skip header. TODO: support TSO. */
527 move_iovec_hdr(vq->iov, vq->hdr, vhost_hlen, in);
528 else
529 /* Copy the header for use in VIRTIO_NET_F_MRG_RXBUF:
Jason Wanga290aec2010-11-29 13:48:40 +0800530 * needed because recvmsg can modify msg_iov. */
David Stevens8dd014a2010-07-27 18:52:21 +0300531 copy_iovec_hdr(vq->iov, vq->hdr, sock_hlen, in);
532 msg.msg_iovlen = in;
533 err = sock->ops->recvmsg(NULL, sock, &msg,
534 sock_len, MSG_DONTWAIT | MSG_TRUNC);
535 /* Userspace might have consumed the packet meanwhile:
536 * it's not supposed to do this usually, but might be hard
537 * to prevent. Discard data we got (if any) and keep going. */
538 if (unlikely(err != sock_len)) {
539 pr_debug("Discarded rx packet: "
540 " len %d, expected %zd\n", err, sock_len);
541 vhost_discard_vq_desc(vq, headcount);
542 continue;
543 }
544 if (unlikely(vhost_hlen) &&
545 memcpy_toiovecend(vq->hdr, (unsigned char *)&hdr, 0,
546 vhost_hlen)) {
547 vq_err(vq, "Unable to write vnet_hdr at addr %p\n",
548 vq->iov->iov_base);
549 break;
550 }
551 /* TODO: Should check and handle checksum. */
Jason Wangcfbdab92011-01-17 16:10:59 +0800552 if (likely(mergeable) &&
David Stevens8dd014a2010-07-27 18:52:21 +0300553 memcpy_toiovecend(vq->hdr, (unsigned char *)&headcount,
554 offsetof(typeof(hdr), num_buffers),
555 sizeof hdr.num_buffers)) {
556 vq_err(vq, "Failed num_buffers write");
557 vhost_discard_vq_desc(vq, headcount);
558 break;
559 }
560 vhost_add_used_and_signal_n(&net->dev, vq, vq->heads,
561 headcount);
562 if (unlikely(vq_log))
563 vhost_log_write(vq, vq_log, log, vhost_len);
564 total_len += vhost_len;
565 if (unlikely(total_len >= VHOST_NET_WEIGHT)) {
566 vhost_poll_queue(&vq->poll);
567 break;
568 }
569 }
570
571 mutex_unlock(&vq->mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300572}
573
Tejun Heoc23f34452010-06-02 20:40:00 +0200574static void handle_tx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000575{
Tejun Heoc23f34452010-06-02 20:40:00 +0200576 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
577 poll.work);
578 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
579
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000580 handle_tx(net);
581}
582
Tejun Heoc23f34452010-06-02 20:40:00 +0200583static void handle_rx_kick(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000584{
Tejun Heoc23f34452010-06-02 20:40:00 +0200585 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
586 poll.work);
587 struct vhost_net *net = container_of(vq->dev, struct vhost_net, dev);
588
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000589 handle_rx(net);
590}
591
Tejun Heoc23f34452010-06-02 20:40:00 +0200592static void handle_tx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000593{
Tejun Heoc23f34452010-06-02 20:40:00 +0200594 struct vhost_net *net = container_of(work, struct vhost_net,
595 poll[VHOST_NET_VQ_TX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000596 handle_tx(net);
597}
598
Tejun Heoc23f34452010-06-02 20:40:00 +0200599static void handle_rx_net(struct vhost_work *work)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000600{
Tejun Heoc23f34452010-06-02 20:40:00 +0200601 struct vhost_net *net = container_of(work, struct vhost_net,
602 poll[VHOST_NET_VQ_RX].work);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000603 handle_rx(net);
604}
605
606static int vhost_net_open(struct inode *inode, struct file *f)
607{
608 struct vhost_net *n = kmalloc(sizeof *n, GFP_KERNEL);
Tejun Heoc23f34452010-06-02 20:40:00 +0200609 struct vhost_dev *dev;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000610 int r;
Tejun Heoc23f34452010-06-02 20:40:00 +0200611
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000612 if (!n)
613 return -ENOMEM;
Tejun Heoc23f34452010-06-02 20:40:00 +0200614
615 dev = &n->dev;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000616 n->vqs[VHOST_NET_VQ_TX].handle_kick = handle_tx_kick;
617 n->vqs[VHOST_NET_VQ_RX].handle_kick = handle_rx_kick;
Tejun Heoc23f34452010-06-02 20:40:00 +0200618 r = vhost_dev_init(dev, n->vqs, VHOST_NET_VQ_MAX);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000619 if (r < 0) {
620 kfree(n);
621 return r;
622 }
623
Tejun Heoc23f34452010-06-02 20:40:00 +0200624 vhost_poll_init(n->poll + VHOST_NET_VQ_TX, handle_tx_net, POLLOUT, dev);
625 vhost_poll_init(n->poll + VHOST_NET_VQ_RX, handle_rx_net, POLLIN, dev);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000626 n->tx_poll_state = VHOST_NET_POLL_DISABLED;
627
628 f->private_data = n;
629
630 return 0;
631}
632
633static void vhost_net_disable_vq(struct vhost_net *n,
634 struct vhost_virtqueue *vq)
635{
636 if (!vq->private_data)
637 return;
638 if (vq == n->vqs + VHOST_NET_VQ_TX) {
639 tx_poll_stop(n);
640 n->tx_poll_state = VHOST_NET_POLL_DISABLED;
641 } else
642 vhost_poll_stop(n->poll + VHOST_NET_VQ_RX);
643}
644
645static void vhost_net_enable_vq(struct vhost_net *n,
646 struct vhost_virtqueue *vq)
647{
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100648 struct socket *sock;
649
650 sock = rcu_dereference_protected(vq->private_data,
651 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000652 if (!sock)
653 return;
654 if (vq == n->vqs + VHOST_NET_VQ_TX) {
655 n->tx_poll_state = VHOST_NET_POLL_STOPPED;
656 tx_poll_start(n, sock);
657 } else
658 vhost_poll_start(n->poll + VHOST_NET_VQ_RX, sock->file);
659}
660
661static struct socket *vhost_net_stop_vq(struct vhost_net *n,
662 struct vhost_virtqueue *vq)
663{
664 struct socket *sock;
665
666 mutex_lock(&vq->mutex);
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100667 sock = rcu_dereference_protected(vq->private_data,
668 lockdep_is_held(&vq->mutex));
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000669 vhost_net_disable_vq(n, vq);
670 rcu_assign_pointer(vq->private_data, NULL);
671 mutex_unlock(&vq->mutex);
672 return sock;
673}
674
675static void vhost_net_stop(struct vhost_net *n, struct socket **tx_sock,
676 struct socket **rx_sock)
677{
678 *tx_sock = vhost_net_stop_vq(n, n->vqs + VHOST_NET_VQ_TX);
679 *rx_sock = vhost_net_stop_vq(n, n->vqs + VHOST_NET_VQ_RX);
680}
681
682static void vhost_net_flush_vq(struct vhost_net *n, int index)
683{
684 vhost_poll_flush(n->poll + index);
685 vhost_poll_flush(&n->dev.vqs[index].poll);
686}
687
688static void vhost_net_flush(struct vhost_net *n)
689{
690 vhost_net_flush_vq(n, VHOST_NET_VQ_TX);
691 vhost_net_flush_vq(n, VHOST_NET_VQ_RX);
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200692 if (n->dev.vqs[VHOST_NET_VQ_TX].ubufs) {
693 mutex_lock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
694 n->tx_flush = true;
695 mutex_unlock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
696 /* Wait for all lower device DMAs done. */
697 vhost_ubuf_put_and_wait(n->dev.vqs[VHOST_NET_VQ_TX].ubufs);
698 mutex_lock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
699 n->tx_flush = false;
700 kref_init(&n->dev.vqs[VHOST_NET_VQ_TX].ubufs->kref);
701 mutex_unlock(&n->dev.vqs[VHOST_NET_VQ_TX].mutex);
702 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000703}
704
705static int vhost_net_release(struct inode *inode, struct file *f)
706{
707 struct vhost_net *n = f->private_data;
708 struct socket *tx_sock;
709 struct socket *rx_sock;
710
711 vhost_net_stop(n, &tx_sock, &rx_sock);
712 vhost_net_flush(n);
Michael S. Tsirkinb2116162012-11-01 09:16:46 +0000713 vhost_dev_stop(&n->dev);
Michael S. Tsirkinea5d4042011-11-27 19:05:58 +0200714 vhost_dev_cleanup(&n->dev, false);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000715 if (tx_sock)
716 fput(tx_sock->file);
717 if (rx_sock)
718 fput(rx_sock->file);
719 /* We do an extra flush before freeing memory,
720 * since jobs can re-queue themselves. */
721 vhost_net_flush(n);
722 kfree(n);
723 return 0;
724}
725
726static struct socket *get_raw_socket(int fd)
727{
728 struct {
729 struct sockaddr_ll sa;
730 char buf[MAX_ADDR_LEN];
731 } uaddr;
732 int uaddr_len = sizeof uaddr, r;
733 struct socket *sock = sockfd_lookup(fd, &r);
Krishna Kumard47effe2011-03-01 17:06:37 +0530734
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000735 if (!sock)
736 return ERR_PTR(-ENOTSOCK);
737
738 /* Parameter checking */
739 if (sock->sk->sk_type != SOCK_RAW) {
740 r = -ESOCKTNOSUPPORT;
741 goto err;
742 }
743
744 r = sock->ops->getname(sock, (struct sockaddr *)&uaddr.sa,
745 &uaddr_len, 0);
746 if (r)
747 goto err;
748
749 if (uaddr.sa.sll_family != AF_PACKET) {
750 r = -EPFNOSUPPORT;
751 goto err;
752 }
753 return sock;
754err:
755 fput(sock->file);
756 return ERR_PTR(r);
757}
758
Arnd Bergmann501c7742010-02-18 05:46:50 +0000759static struct socket *get_tap_socket(int fd)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000760{
761 struct file *file = fget(fd);
762 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530763
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000764 if (!file)
765 return ERR_PTR(-EBADF);
766 sock = tun_get_socket(file);
Arnd Bergmann501c7742010-02-18 05:46:50 +0000767 if (!IS_ERR(sock))
768 return sock;
769 sock = macvtap_get_socket(file);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000770 if (IS_ERR(sock))
771 fput(file);
772 return sock;
773}
774
775static struct socket *get_socket(int fd)
776{
777 struct socket *sock;
Krishna Kumard47effe2011-03-01 17:06:37 +0530778
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000779 /* special case to disable backend */
780 if (fd == -1)
781 return NULL;
782 sock = get_raw_socket(fd);
783 if (!IS_ERR(sock))
784 return sock;
Arnd Bergmann501c7742010-02-18 05:46:50 +0000785 sock = get_tap_socket(fd);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000786 if (!IS_ERR(sock))
787 return sock;
788 return ERR_PTR(-ENOTSOCK);
789}
790
791static long vhost_net_set_backend(struct vhost_net *n, unsigned index, int fd)
792{
793 struct socket *sock, *oldsock;
794 struct vhost_virtqueue *vq;
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000795 struct vhost_ubuf_ref *ubufs, *oldubufs = NULL;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000796 int r;
797
798 mutex_lock(&n->dev.mutex);
799 r = vhost_dev_check_owner(&n->dev);
800 if (r)
801 goto err;
802
803 if (index >= VHOST_NET_VQ_MAX) {
804 r = -ENOBUFS;
805 goto err;
806 }
807 vq = n->vqs + index;
808 mutex_lock(&vq->mutex);
809
810 /* Verify that ring has been setup correctly. */
811 if (!vhost_vq_access_ok(vq)) {
812 r = -EFAULT;
Jeff Dike1dace8c2010-03-04 16:10:14 -0500813 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000814 }
815 sock = get_socket(fd);
816 if (IS_ERR(sock)) {
817 r = PTR_ERR(sock);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500818 goto err_vq;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000819 }
820
821 /* start polling new socket */
Arnd Bergmann28457ee2010-03-09 19:24:45 +0100822 oldsock = rcu_dereference_protected(vq->private_data,
823 lockdep_is_held(&vq->mutex));
David S. Miller11fe8832010-07-20 18:25:24 -0700824 if (sock != oldsock) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000825 ubufs = vhost_ubuf_alloc(vq, sock && vhost_sock_zcopy(sock));
826 if (IS_ERR(ubufs)) {
827 r = PTR_ERR(ubufs);
828 goto err_ubufs;
829 }
830 oldubufs = vq->ubufs;
831 vq->ubufs = ubufs;
Krishna Kumard47effe2011-03-01 17:06:37 +0530832 vhost_net_disable_vq(n, vq);
833 rcu_assign_pointer(vq->private_data, sock);
834 vhost_net_enable_vq(n, vq);
Jason Wangf59281d2011-06-21 18:04:27 +0800835
836 r = vhost_init_used(vq);
837 if (r)
838 goto err_vq;
Michael S. Tsirkin64e9a9b2012-12-03 07:31:51 +0000839
840 n->tx_packets = 0;
841 n->tx_zcopy_err = 0;
Michael S. Tsirkin1280c272012-12-04 00:17:14 +0200842 n->tx_flush = false;
Jeff Dikedd1f4072010-03-04 16:10:14 -0500843 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000844
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300845 mutex_unlock(&vq->mutex);
846
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300847 if (oldubufs) {
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000848 vhost_ubuf_put_and_wait(oldubufs);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300849 mutex_lock(&vq->mutex);
Michael S. Tsirkineaae8132012-11-01 09:16:51 +0000850 vhost_zerocopy_signal_used(n, vq);
Michael S. Tsirkinc047e5f2011-07-20 13:41:31 +0300851 mutex_unlock(&vq->mutex);
852 }
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000853
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000854 if (oldsock) {
855 vhost_net_flush_vq(n, index);
856 fput(oldsock->file);
857 }
Jeff Dike1dace8c2010-03-04 16:10:14 -0500858
Michael S. Tsirkin1680e902010-07-15 15:19:12 +0300859 mutex_unlock(&n->dev.mutex);
860 return 0;
861
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000862err_ubufs:
863 fput(sock->file);
Jeff Dike1dace8c2010-03-04 16:10:14 -0500864err_vq:
865 mutex_unlock(&vq->mutex);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000866err:
867 mutex_unlock(&n->dev.mutex);
868 return r;
869}
870
871static long vhost_net_reset_owner(struct vhost_net *n)
872{
873 struct socket *tx_sock = NULL;
874 struct socket *rx_sock = NULL;
875 long err;
Krishna Kumard47effe2011-03-01 17:06:37 +0530876
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000877 mutex_lock(&n->dev.mutex);
878 err = vhost_dev_check_owner(&n->dev);
879 if (err)
880 goto done;
881 vhost_net_stop(n, &tx_sock, &rx_sock);
882 vhost_net_flush(n);
883 err = vhost_dev_reset_owner(&n->dev);
884done:
885 mutex_unlock(&n->dev.mutex);
886 if (tx_sock)
887 fput(tx_sock->file);
888 if (rx_sock)
889 fput(rx_sock->file);
890 return err;
891}
892
893static int vhost_net_set_features(struct vhost_net *n, u64 features)
894{
David Stevens8dd014a2010-07-27 18:52:21 +0300895 size_t vhost_hlen, sock_hlen, hdr_len;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000896 int i;
David Stevens8dd014a2010-07-27 18:52:21 +0300897
898 hdr_len = (features & (1 << VIRTIO_NET_F_MRG_RXBUF)) ?
899 sizeof(struct virtio_net_hdr_mrg_rxbuf) :
900 sizeof(struct virtio_net_hdr);
901 if (features & (1 << VHOST_NET_F_VIRTIO_NET_HDR)) {
902 /* vhost provides vnet_hdr */
903 vhost_hlen = hdr_len;
904 sock_hlen = 0;
905 } else {
906 /* socket provides vnet_hdr */
907 vhost_hlen = 0;
908 sock_hlen = hdr_len;
909 }
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000910 mutex_lock(&n->dev.mutex);
911 if ((features & (1 << VHOST_F_LOG_ALL)) &&
912 !vhost_log_access_ok(&n->dev)) {
913 mutex_unlock(&n->dev.mutex);
914 return -EFAULT;
915 }
916 n->dev.acked_features = features;
917 smp_wmb();
918 for (i = 0; i < VHOST_NET_VQ_MAX; ++i) {
919 mutex_lock(&n->vqs[i].mutex);
David Stevens8dd014a2010-07-27 18:52:21 +0300920 n->vqs[i].vhost_hlen = vhost_hlen;
921 n->vqs[i].sock_hlen = sock_hlen;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000922 mutex_unlock(&n->vqs[i].mutex);
923 }
924 vhost_net_flush(n);
925 mutex_unlock(&n->dev.mutex);
926 return 0;
927}
928
929static long vhost_net_ioctl(struct file *f, unsigned int ioctl,
930 unsigned long arg)
931{
932 struct vhost_net *n = f->private_data;
933 void __user *argp = (void __user *)arg;
934 u64 __user *featurep = argp;
935 struct vhost_vring_file backend;
936 u64 features;
937 int r;
Krishna Kumard47effe2011-03-01 17:06:37 +0530938
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000939 switch (ioctl) {
940 case VHOST_NET_SET_BACKEND:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900941 if (copy_from_user(&backend, argp, sizeof backend))
942 return -EFAULT;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000943 return vhost_net_set_backend(n, backend.index, backend.fd);
944 case VHOST_GET_FEATURES:
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +0000945 features = VHOST_NET_FEATURES;
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900946 if (copy_to_user(featurep, &features, sizeof features))
947 return -EFAULT;
948 return 0;
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000949 case VHOST_SET_FEATURES:
Takuya Yoshikawad3553a52010-05-27 19:01:58 +0900950 if (copy_from_user(&features, featurep, sizeof features))
951 return -EFAULT;
Stefan Hajnoczi0dd05a32012-07-21 06:55:36 +0000952 if (features & ~VHOST_NET_FEATURES)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000953 return -EOPNOTSUPP;
954 return vhost_net_set_features(n, features);
955 case VHOST_RESET_OWNER:
956 return vhost_net_reset_owner(n);
957 default:
958 mutex_lock(&n->dev.mutex);
Michael S. Tsirkin935cdee2012-12-06 14:03:34 +0200959 r = vhost_dev_ioctl(&n->dev, ioctl, argp);
960 if (r == -ENOIOCTLCMD)
961 r = vhost_vring_ioctl(&n->dev, ioctl, argp);
962 else
963 vhost_net_flush(n);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000964 mutex_unlock(&n->dev.mutex);
965 return r;
966 }
967}
968
969#ifdef CONFIG_COMPAT
970static long vhost_net_compat_ioctl(struct file *f, unsigned int ioctl,
971 unsigned long arg)
972{
973 return vhost_net_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
974}
975#endif
976
Tobias Klauser373a83a2010-05-17 15:12:49 +0200977static const struct file_operations vhost_net_fops = {
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000978 .owner = THIS_MODULE,
979 .release = vhost_net_release,
980 .unlocked_ioctl = vhost_net_ioctl,
981#ifdef CONFIG_COMPAT
982 .compat_ioctl = vhost_net_compat_ioctl,
983#endif
984 .open = vhost_net_open,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200985 .llseek = noop_llseek,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000986};
987
988static struct miscdevice vhost_net_misc = {
stephen hemminger7c7c7f02012-01-11 19:30:38 +0000989 .minor = VHOST_NET_MINOR,
990 .name = "vhost-net",
991 .fops = &vhost_net_fops,
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000992};
993
Christoph Hellwiga8d37822010-04-13 14:11:25 -0400994static int vhost_net_init(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000995{
Michael S. Tsirkinbab632d2011-07-18 03:48:46 +0000996 if (experimental_zcopytx)
997 vhost_enable_zcopy(VHOST_NET_VQ_TX);
Tejun Heoc23f34452010-06-02 20:40:00 +0200998 return misc_register(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +0000999}
1000module_init(vhost_net_init);
1001
Christoph Hellwiga8d37822010-04-13 14:11:25 -04001002static void vhost_net_exit(void)
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001003{
1004 misc_deregister(&vhost_net_misc);
Michael S. Tsirkin3a4d5c94e2010-01-14 06:17:27 +00001005}
1006module_exit(vhost_net_exit);
1007
1008MODULE_VERSION("0.0.1");
1009MODULE_LICENSE("GPL v2");
1010MODULE_AUTHOR("Michael S. Tsirkin");
1011MODULE_DESCRIPTION("Host kernel accelerator for virtio net");
stephen hemminger7c7c7f02012-01-11 19:30:38 +00001012MODULE_ALIAS_MISCDEV(VHOST_NET_MINOR);
1013MODULE_ALIAS("devname:vhost-net");