blob: 0716a9cdffeea11d486323dbe61a437da4e11bfe [file] [log] [blame]
Thomas Gleixner7a338472019-06-04 10:11:15 +02001// SPDX-License-Identifier: GPL-2.0-only
Asias He433fc582016-07-28 15:36:34 +01002/*
3 * vhost transport for vsock
4 *
5 * Copyright (C) 2013-2015 Red Hat, Inc.
6 * Author: Asias He <asias@redhat.com>
7 * Stefan Hajnoczi <stefanha@redhat.com>
Asias He433fc582016-07-28 15:36:34 +01008 */
9#include <linux/miscdevice.h>
10#include <linux/atomic.h>
11#include <linux/module.h>
12#include <linux/mutex.h>
13#include <linux/vmalloc.h>
14#include <net/sock.h>
15#include <linux/virtio_vsock.h>
16#include <linux/vhost.h>
Stefan Hajnoczi834e7722018-11-05 10:35:47 +000017#include <linux/hashtable.h>
Asias He433fc582016-07-28 15:36:34 +010018
19#include <net/af_vsock.h>
20#include "vhost.h"
21
22#define VHOST_VSOCK_DEFAULT_HOST_CID 2
Jason Wange82b9b02019-05-17 00:29:49 -040023/* Max number of bytes transferred before requeueing the job.
24 * Using this limit prevents one virtqueue from starving others. */
25#define VHOST_VSOCK_WEIGHT 0x80000
26/* Max number of packets transferred before requeueing the job.
27 * Using this limit prevents one virtqueue from starving others with
28 * small pkts.
29 */
30#define VHOST_VSOCK_PKT_WEIGHT 256
Asias He433fc582016-07-28 15:36:34 +010031
32enum {
33 VHOST_VSOCK_FEATURES = VHOST_FEATURES,
34};
35
36/* Used to track all the vhost_vsock instances on the system. */
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +000037static DEFINE_MUTEX(vhost_vsock_mutex);
Stefan Hajnoczi834e7722018-11-05 10:35:47 +000038static DEFINE_READ_MOSTLY_HASHTABLE(vhost_vsock_hash, 8);
Asias He433fc582016-07-28 15:36:34 +010039
40struct vhost_vsock {
41 struct vhost_dev dev;
42 struct vhost_virtqueue vqs[2];
43
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +000044 /* Link to global vhost_vsock_hash, writes use vhost_vsock_mutex */
Stefan Hajnoczi834e7722018-11-05 10:35:47 +000045 struct hlist_node hash;
Asias He433fc582016-07-28 15:36:34 +010046
47 struct vhost_work send_pkt_work;
48 spinlock_t send_pkt_list_lock;
49 struct list_head send_pkt_list; /* host->guest pending packets */
50
51 atomic_t queued_replies;
52
53 u32 guest_cid;
54};
55
56static u32 vhost_transport_get_local_cid(void)
57{
58 return VHOST_VSOCK_DEFAULT_HOST_CID;
59}
60
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +000061/* Callers that dereference the return value must hold vhost_vsock_mutex or the
Stefan Hajnoczi834e7722018-11-05 10:35:47 +000062 * RCU read lock.
63 */
64static struct vhost_vsock *vhost_vsock_get(u32 guest_cid)
Asias He433fc582016-07-28 15:36:34 +010065{
66 struct vhost_vsock *vsock;
67
Stefan Hajnoczi834e7722018-11-05 10:35:47 +000068 hash_for_each_possible_rcu(vhost_vsock_hash, vsock, hash, guest_cid) {
Asias He433fc582016-07-28 15:36:34 +010069 u32 other_cid = vsock->guest_cid;
70
71 /* Skip instances that have no CID yet */
72 if (other_cid == 0)
73 continue;
74
Vaibhav Murkuteff3c1b12018-03-09 08:26:03 +053075 if (other_cid == guest_cid)
Asias He433fc582016-07-28 15:36:34 +010076 return vsock;
Vaibhav Murkuteff3c1b12018-03-09 08:26:03 +053077
Asias He433fc582016-07-28 15:36:34 +010078 }
Asias He433fc582016-07-28 15:36:34 +010079
80 return NULL;
81}
82
83static void
84vhost_transport_do_send_pkt(struct vhost_vsock *vsock,
85 struct vhost_virtqueue *vq)
86{
87 struct vhost_virtqueue *tx_vq = &vsock->vqs[VSOCK_VQ_TX];
Jason Wange79b4312019-05-17 00:29:51 -040088 int pkts = 0, total_len = 0;
Asias He433fc582016-07-28 15:36:34 +010089 bool added = false;
90 bool restart_tx = false;
91
92 mutex_lock(&vq->mutex);
93
Eugenio Pérez247643f2020-03-31 21:27:57 +020094 if (!vhost_vq_get_backend(vq))
Asias He433fc582016-07-28 15:36:34 +010095 goto out;
96
97 /* Avoid further vmexits, we're already processing the virtqueue */
98 vhost_disable_notify(&vsock->dev, vq);
99
Jason Wange79b4312019-05-17 00:29:51 -0400100 do {
Asias He433fc582016-07-28 15:36:34 +0100101 struct virtio_vsock_pkt *pkt;
102 struct iov_iter iov_iter;
103 unsigned out, in;
104 size_t nbytes;
Stefano Garzarella6dbd3e62019-07-30 17:43:33 +0200105 size_t iov_len, payload_len;
Asias He433fc582016-07-28 15:36:34 +0100106 int head;
107
108 spin_lock_bh(&vsock->send_pkt_list_lock);
109 if (list_empty(&vsock->send_pkt_list)) {
110 spin_unlock_bh(&vsock->send_pkt_list_lock);
111 vhost_enable_notify(&vsock->dev, vq);
112 break;
113 }
114
115 pkt = list_first_entry(&vsock->send_pkt_list,
116 struct virtio_vsock_pkt, list);
117 list_del_init(&pkt->list);
118 spin_unlock_bh(&vsock->send_pkt_list_lock);
119
120 head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
121 &out, &in, NULL, NULL);
122 if (head < 0) {
123 spin_lock_bh(&vsock->send_pkt_list_lock);
124 list_add(&pkt->list, &vsock->send_pkt_list);
125 spin_unlock_bh(&vsock->send_pkt_list_lock);
126 break;
127 }
128
129 if (head == vq->num) {
130 spin_lock_bh(&vsock->send_pkt_list_lock);
131 list_add(&pkt->list, &vsock->send_pkt_list);
132 spin_unlock_bh(&vsock->send_pkt_list_lock);
133
134 /* We cannot finish yet if more buffers snuck in while
135 * re-enabling notify.
136 */
137 if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
138 vhost_disable_notify(&vsock->dev, vq);
139 continue;
140 }
141 break;
142 }
143
144 if (out) {
145 virtio_transport_free_pkt(pkt);
146 vq_err(vq, "Expected 0 output buffers, got %u\n", out);
147 break;
148 }
149
Stefano Garzarella6dbd3e62019-07-30 17:43:33 +0200150 iov_len = iov_length(&vq->iov[out], in);
151 if (iov_len < sizeof(pkt->hdr)) {
152 virtio_transport_free_pkt(pkt);
153 vq_err(vq, "Buffer len [%zu] too small\n", iov_len);
154 break;
155 }
156
157 iov_iter_init(&iov_iter, READ, &vq->iov[out], in, iov_len);
158 payload_len = pkt->len - pkt->off;
159
160 /* If the packet is greater than the space available in the
161 * buffer, we split it using multiple buffers.
162 */
163 if (payload_len > iov_len - sizeof(pkt->hdr))
164 payload_len = iov_len - sizeof(pkt->hdr);
165
166 /* Set the correct length in the header */
167 pkt->hdr.len = cpu_to_le32(payload_len);
Asias He433fc582016-07-28 15:36:34 +0100168
169 nbytes = copy_to_iter(&pkt->hdr, sizeof(pkt->hdr), &iov_iter);
170 if (nbytes != sizeof(pkt->hdr)) {
171 virtio_transport_free_pkt(pkt);
172 vq_err(vq, "Faulted on copying pkt hdr\n");
173 break;
174 }
175
Stefano Garzarella6dbd3e62019-07-30 17:43:33 +0200176 nbytes = copy_to_iter(pkt->buf + pkt->off, payload_len,
177 &iov_iter);
178 if (nbytes != payload_len) {
Asias He433fc582016-07-28 15:36:34 +0100179 virtio_transport_free_pkt(pkt);
180 vq_err(vq, "Faulted on copying pkt buf\n");
181 break;
182 }
183
Stefano Garzarella6dbd3e62019-07-30 17:43:33 +0200184 vhost_add_used(vq, head, sizeof(pkt->hdr) + payload_len);
Asias He433fc582016-07-28 15:36:34 +0100185 added = true;
186
Gerard Garcia82dfb5402017-04-21 10:10:46 +0100187 /* Deliver to monitoring devices all correctly transmitted
188 * packets.
189 */
190 virtio_transport_deliver_tap_pkt(pkt);
191
Stefano Garzarella6dbd3e62019-07-30 17:43:33 +0200192 pkt->off += payload_len;
193 total_len += payload_len;
194
195 /* If we didn't send all the payload we can requeue the packet
196 * to send it with the next available buffer.
197 */
198 if (pkt->off < pkt->len) {
199 spin_lock_bh(&vsock->send_pkt_list_lock);
200 list_add(&pkt->list, &vsock->send_pkt_list);
201 spin_unlock_bh(&vsock->send_pkt_list_lock);
202 } else {
203 if (pkt->reply) {
204 int val;
205
206 val = atomic_dec_return(&vsock->queued_replies);
207
208 /* Do we have resources to resume tx
209 * processing?
210 */
211 if (val + 1 == tx_vq->num)
212 restart_tx = true;
213 }
214
215 virtio_transport_free_pkt(pkt);
216 }
Jason Wange79b4312019-05-17 00:29:51 -0400217 } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
Asias He433fc582016-07-28 15:36:34 +0100218 if (added)
219 vhost_signal(&vsock->dev, vq);
220
221out:
222 mutex_unlock(&vq->mutex);
223
224 if (restart_tx)
225 vhost_poll_queue(&tx_vq->poll);
226}
227
228static void vhost_transport_send_pkt_work(struct vhost_work *work)
229{
230 struct vhost_virtqueue *vq;
231 struct vhost_vsock *vsock;
232
233 vsock = container_of(work, struct vhost_vsock, send_pkt_work);
234 vq = &vsock->vqs[VSOCK_VQ_RX];
235
236 vhost_transport_do_send_pkt(vsock, vq);
237}
238
239static int
240vhost_transport_send_pkt(struct virtio_vsock_pkt *pkt)
241{
242 struct vhost_vsock *vsock;
Asias He433fc582016-07-28 15:36:34 +0100243 int len = pkt->len;
244
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000245 rcu_read_lock();
246
Asias He433fc582016-07-28 15:36:34 +0100247 /* Find the vhost_vsock according to guest context id */
248 vsock = vhost_vsock_get(le64_to_cpu(pkt->hdr.dst_cid));
249 if (!vsock) {
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000250 rcu_read_unlock();
Asias He433fc582016-07-28 15:36:34 +0100251 virtio_transport_free_pkt(pkt);
252 return -ENODEV;
253 }
254
Asias He433fc582016-07-28 15:36:34 +0100255 if (pkt->reply)
256 atomic_inc(&vsock->queued_replies);
257
258 spin_lock_bh(&vsock->send_pkt_list_lock);
259 list_add_tail(&pkt->list, &vsock->send_pkt_list);
260 spin_unlock_bh(&vsock->send_pkt_list_lock);
261
262 vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000263
264 rcu_read_unlock();
Asias He433fc582016-07-28 15:36:34 +0100265 return len;
266}
267
Peng Tao16320f32017-03-15 09:32:15 +0800268static int
269vhost_transport_cancel_pkt(struct vsock_sock *vsk)
270{
271 struct vhost_vsock *vsock;
272 struct virtio_vsock_pkt *pkt, *n;
273 int cnt = 0;
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000274 int ret = -ENODEV;
Peng Tao16320f32017-03-15 09:32:15 +0800275 LIST_HEAD(freeme);
276
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000277 rcu_read_lock();
278
Peng Tao16320f32017-03-15 09:32:15 +0800279 /* Find the vhost_vsock according to guest context id */
280 vsock = vhost_vsock_get(vsk->remote_addr.svm_cid);
281 if (!vsock)
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000282 goto out;
Peng Tao16320f32017-03-15 09:32:15 +0800283
284 spin_lock_bh(&vsock->send_pkt_list_lock);
285 list_for_each_entry_safe(pkt, n, &vsock->send_pkt_list, list) {
286 if (pkt->vsk != vsk)
287 continue;
288 list_move(&pkt->list, &freeme);
289 }
290 spin_unlock_bh(&vsock->send_pkt_list_lock);
291
292 list_for_each_entry_safe(pkt, n, &freeme, list) {
293 if (pkt->reply)
294 cnt++;
295 list_del(&pkt->list);
296 virtio_transport_free_pkt(pkt);
297 }
298
299 if (cnt) {
300 struct vhost_virtqueue *tx_vq = &vsock->vqs[VSOCK_VQ_TX];
301 int new_cnt;
302
303 new_cnt = atomic_sub_return(cnt, &vsock->queued_replies);
304 if (new_cnt + cnt >= tx_vq->num && new_cnt < tx_vq->num)
305 vhost_poll_queue(&tx_vq->poll);
306 }
307
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000308 ret = 0;
309out:
310 rcu_read_unlock();
311 return ret;
Peng Tao16320f32017-03-15 09:32:15 +0800312}
313
Asias He433fc582016-07-28 15:36:34 +0100314static struct virtio_vsock_pkt *
315vhost_vsock_alloc_pkt(struct vhost_virtqueue *vq,
316 unsigned int out, unsigned int in)
317{
318 struct virtio_vsock_pkt *pkt;
319 struct iov_iter iov_iter;
320 size_t nbytes;
321 size_t len;
322
323 if (in != 0) {
324 vq_err(vq, "Expected 0 input buffers, got %u\n", in);
325 return NULL;
326 }
327
328 pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
329 if (!pkt)
330 return NULL;
331
332 len = iov_length(vq->iov, out);
333 iov_iter_init(&iov_iter, WRITE, vq->iov, out, len);
334
335 nbytes = copy_from_iter(&pkt->hdr, sizeof(pkt->hdr), &iov_iter);
336 if (nbytes != sizeof(pkt->hdr)) {
337 vq_err(vq, "Expected %zu bytes for pkt->hdr, got %zu bytes\n",
338 sizeof(pkt->hdr), nbytes);
339 kfree(pkt);
340 return NULL;
341 }
342
343 if (le16_to_cpu(pkt->hdr.type) == VIRTIO_VSOCK_TYPE_STREAM)
344 pkt->len = le32_to_cpu(pkt->hdr.len);
345
346 /* No payload */
347 if (!pkt->len)
348 return pkt;
349
350 /* The pkt is too big */
351 if (pkt->len > VIRTIO_VSOCK_MAX_PKT_BUF_SIZE) {
352 kfree(pkt);
353 return NULL;
354 }
355
356 pkt->buf = kmalloc(pkt->len, GFP_KERNEL);
357 if (!pkt->buf) {
358 kfree(pkt);
359 return NULL;
360 }
361
Stefano Garzarella473c7392019-07-30 17:43:30 +0200362 pkt->buf_len = pkt->len;
363
Asias He433fc582016-07-28 15:36:34 +0100364 nbytes = copy_from_iter(pkt->buf, pkt->len, &iov_iter);
365 if (nbytes != pkt->len) {
366 vq_err(vq, "Expected %u byte payload, got %zu bytes\n",
367 pkt->len, nbytes);
368 virtio_transport_free_pkt(pkt);
369 return NULL;
370 }
371
372 return pkt;
373}
374
375/* Is there space left for replies to rx packets? */
376static bool vhost_vsock_more_replies(struct vhost_vsock *vsock)
377{
378 struct vhost_virtqueue *vq = &vsock->vqs[VSOCK_VQ_TX];
379 int val;
380
381 smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */
382 val = atomic_read(&vsock->queued_replies);
383
384 return val < vq->num;
385}
386
Stefano Garzarella4c7246d2019-11-14 10:57:40 +0100387static struct virtio_transport vhost_transport = {
388 .transport = {
Stefano Garzarella6a2c09622019-11-14 10:57:48 +0100389 .module = THIS_MODULE,
390
Stefano Garzarella4c7246d2019-11-14 10:57:40 +0100391 .get_local_cid = vhost_transport_get_local_cid,
392
393 .init = virtio_transport_do_socket_init,
394 .destruct = virtio_transport_destruct,
395 .release = virtio_transport_release,
396 .connect = virtio_transport_connect,
397 .shutdown = virtio_transport_shutdown,
398 .cancel_pkt = vhost_transport_cancel_pkt,
399
400 .dgram_enqueue = virtio_transport_dgram_enqueue,
401 .dgram_dequeue = virtio_transport_dgram_dequeue,
402 .dgram_bind = virtio_transport_dgram_bind,
403 .dgram_allow = virtio_transport_dgram_allow,
404
405 .stream_enqueue = virtio_transport_stream_enqueue,
406 .stream_dequeue = virtio_transport_stream_dequeue,
407 .stream_has_data = virtio_transport_stream_has_data,
408 .stream_has_space = virtio_transport_stream_has_space,
409 .stream_rcvhiwat = virtio_transport_stream_rcvhiwat,
410 .stream_is_active = virtio_transport_stream_is_active,
411 .stream_allow = virtio_transport_stream_allow,
412
413 .notify_poll_in = virtio_transport_notify_poll_in,
414 .notify_poll_out = virtio_transport_notify_poll_out,
415 .notify_recv_init = virtio_transport_notify_recv_init,
416 .notify_recv_pre_block = virtio_transport_notify_recv_pre_block,
417 .notify_recv_pre_dequeue = virtio_transport_notify_recv_pre_dequeue,
418 .notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
419 .notify_send_init = virtio_transport_notify_send_init,
420 .notify_send_pre_block = virtio_transport_notify_send_pre_block,
421 .notify_send_pre_enqueue = virtio_transport_notify_send_pre_enqueue,
422 .notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
Stefano Garzarellab9f2b0f2019-11-14 10:57:42 +0100423 .notify_buffer_size = virtio_transport_notify_buffer_size,
Stefano Garzarella4c7246d2019-11-14 10:57:40 +0100424
Stefano Garzarella4c7246d2019-11-14 10:57:40 +0100425 },
426
427 .send_pkt = vhost_transport_send_pkt,
428};
429
Asias He433fc582016-07-28 15:36:34 +0100430static void vhost_vsock_handle_tx_kick(struct vhost_work *work)
431{
432 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
433 poll.work);
434 struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
435 dev);
436 struct virtio_vsock_pkt *pkt;
Jason Wange79b4312019-05-17 00:29:51 -0400437 int head, pkts = 0, total_len = 0;
Asias He433fc582016-07-28 15:36:34 +0100438 unsigned int out, in;
439 bool added = false;
440
441 mutex_lock(&vq->mutex);
442
Eugenio Pérez247643f2020-03-31 21:27:57 +0200443 if (!vhost_vq_get_backend(vq))
Asias He433fc582016-07-28 15:36:34 +0100444 goto out;
445
446 vhost_disable_notify(&vsock->dev, vq);
Jason Wange79b4312019-05-17 00:29:51 -0400447 do {
Stefan Hajnoczi3fda5d62016-08-04 14:52:53 +0100448 u32 len;
449
Asias He433fc582016-07-28 15:36:34 +0100450 if (!vhost_vsock_more_replies(vsock)) {
451 /* Stop tx until the device processes already
452 * pending replies. Leave tx virtqueue
453 * callbacks disabled.
454 */
455 goto no_more_replies;
456 }
457
458 head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
459 &out, &in, NULL, NULL);
460 if (head < 0)
461 break;
462
463 if (head == vq->num) {
464 if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
465 vhost_disable_notify(&vsock->dev, vq);
466 continue;
467 }
468 break;
469 }
470
471 pkt = vhost_vsock_alloc_pkt(vq, out, in);
472 if (!pkt) {
473 vq_err(vq, "Faulted on pkt\n");
474 continue;
475 }
476
Stefan Hajnoczi3fda5d62016-08-04 14:52:53 +0100477 len = pkt->len;
478
Gerard Garcia82dfb5402017-04-21 10:10:46 +0100479 /* Deliver to monitoring devices all received packets */
480 virtio_transport_deliver_tap_pkt(pkt);
481
Asias He433fc582016-07-28 15:36:34 +0100482 /* Only accept correctly addressed packets */
Stefano Garzarella8a3cc292019-12-06 15:39:12 +0100483 if (le64_to_cpu(pkt->hdr.src_cid) == vsock->guest_cid &&
484 le64_to_cpu(pkt->hdr.dst_cid) ==
485 vhost_transport_get_local_cid())
Stefano Garzarella4c7246d2019-11-14 10:57:40 +0100486 virtio_transport_recv_pkt(&vhost_transport, pkt);
Asias He433fc582016-07-28 15:36:34 +0100487 else
488 virtio_transport_free_pkt(pkt);
489
Jason Wange79b4312019-05-17 00:29:51 -0400490 len += sizeof(pkt->hdr);
491 vhost_add_used(vq, head, len);
492 total_len += len;
Asias He433fc582016-07-28 15:36:34 +0100493 added = true;
Jason Wange79b4312019-05-17 00:29:51 -0400494 } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
Asias He433fc582016-07-28 15:36:34 +0100495
496no_more_replies:
497 if (added)
498 vhost_signal(&vsock->dev, vq);
499
500out:
501 mutex_unlock(&vq->mutex);
502}
503
504static void vhost_vsock_handle_rx_kick(struct vhost_work *work)
505{
506 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
507 poll.work);
508 struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
509 dev);
510
511 vhost_transport_do_send_pkt(vsock, vq);
512}
513
514static int vhost_vsock_start(struct vhost_vsock *vsock)
515{
Stefan Hajnoczi0516ffd2017-01-19 10:43:53 +0000516 struct vhost_virtqueue *vq;
Asias He433fc582016-07-28 15:36:34 +0100517 size_t i;
518 int ret;
519
520 mutex_lock(&vsock->dev.mutex);
521
522 ret = vhost_dev_check_owner(&vsock->dev);
523 if (ret)
524 goto err;
525
526 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
Stefan Hajnoczi0516ffd2017-01-19 10:43:53 +0000527 vq = &vsock->vqs[i];
Asias He433fc582016-07-28 15:36:34 +0100528
529 mutex_lock(&vq->mutex);
530
531 if (!vhost_vq_access_ok(vq)) {
532 ret = -EFAULT;
Asias He433fc582016-07-28 15:36:34 +0100533 goto err_vq;
534 }
535
Eugenio Pérez247643f2020-03-31 21:27:57 +0200536 if (!vhost_vq_get_backend(vq)) {
537 vhost_vq_set_backend(vq, vsock);
Stefan Hajnoczi0516ffd2017-01-19 10:43:53 +0000538 ret = vhost_vq_init_access(vq);
539 if (ret)
540 goto err_vq;
Asias He433fc582016-07-28 15:36:34 +0100541 }
542
543 mutex_unlock(&vq->mutex);
544 }
545
Jia He0b841032020-05-01 12:38:40 +0800546 /* Some packets may have been queued before the device was started,
547 * let's kick the send worker to send them.
548 */
549 vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
550
Asias He433fc582016-07-28 15:36:34 +0100551 mutex_unlock(&vsock->dev.mutex);
552 return 0;
553
554err_vq:
Eugenio Pérez247643f2020-03-31 21:27:57 +0200555 vhost_vq_set_backend(vq, NULL);
Stefan Hajnoczi0516ffd2017-01-19 10:43:53 +0000556 mutex_unlock(&vq->mutex);
557
Asias He433fc582016-07-28 15:36:34 +0100558 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
Stefan Hajnoczi0516ffd2017-01-19 10:43:53 +0000559 vq = &vsock->vqs[i];
Asias He433fc582016-07-28 15:36:34 +0100560
561 mutex_lock(&vq->mutex);
Eugenio Pérez247643f2020-03-31 21:27:57 +0200562 vhost_vq_set_backend(vq, NULL);
Asias He433fc582016-07-28 15:36:34 +0100563 mutex_unlock(&vq->mutex);
564 }
565err:
566 mutex_unlock(&vsock->dev.mutex);
567 return ret;
568}
569
570static int vhost_vsock_stop(struct vhost_vsock *vsock)
571{
572 size_t i;
573 int ret;
574
575 mutex_lock(&vsock->dev.mutex);
576
577 ret = vhost_dev_check_owner(&vsock->dev);
578 if (ret)
579 goto err;
580
581 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
582 struct vhost_virtqueue *vq = &vsock->vqs[i];
583
584 mutex_lock(&vq->mutex);
Eugenio Pérez247643f2020-03-31 21:27:57 +0200585 vhost_vq_set_backend(vq, NULL);
Asias He433fc582016-07-28 15:36:34 +0100586 mutex_unlock(&vq->mutex);
587 }
588
589err:
590 mutex_unlock(&vsock->dev.mutex);
591 return ret;
592}
593
594static void vhost_vsock_free(struct vhost_vsock *vsock)
595{
Wei Yongjunb226aca2016-08-02 13:50:42 +0000596 kvfree(vsock);
Asias He433fc582016-07-28 15:36:34 +0100597}
598
599static int vhost_vsock_dev_open(struct inode *inode, struct file *file)
600{
601 struct vhost_virtqueue **vqs;
602 struct vhost_vsock *vsock;
603 int ret;
604
605 /* This struct is large and allocation could fail, fall back to vmalloc
606 * if there is no other way.
607 */
Michal Hockodcda9b02017-07-12 14:36:45 -0700608 vsock = kvmalloc(sizeof(*vsock), GFP_KERNEL | __GFP_RETRY_MAYFAIL);
Michal Hocko6c5ab652017-05-08 15:57:15 -0700609 if (!vsock)
610 return -ENOMEM;
Asias He433fc582016-07-28 15:36:34 +0100611
612 vqs = kmalloc_array(ARRAY_SIZE(vsock->vqs), sizeof(*vqs), GFP_KERNEL);
613 if (!vqs) {
614 ret = -ENOMEM;
615 goto out;
616 }
617
Stefan Hajnoczia72b69d2017-11-09 13:29:10 +0000618 vsock->guest_cid = 0; /* no CID assigned yet */
619
Asias He433fc582016-07-28 15:36:34 +0100620 atomic_set(&vsock->queued_replies, 0);
621
622 vqs[VSOCK_VQ_TX] = &vsock->vqs[VSOCK_VQ_TX];
623 vqs[VSOCK_VQ_RX] = &vsock->vqs[VSOCK_VQ_RX];
624 vsock->vqs[VSOCK_VQ_TX].handle_kick = vhost_vsock_handle_tx_kick;
625 vsock->vqs[VSOCK_VQ_RX].handle_kick = vhost_vsock_handle_rx_kick;
626
Jason Wange82b9b02019-05-17 00:29:49 -0400627 vhost_dev_init(&vsock->dev, vqs, ARRAY_SIZE(vsock->vqs),
628 UIO_MAXIOV, VHOST_VSOCK_PKT_WEIGHT,
Jason Wang792a4f22020-03-26 22:01:18 +0800629 VHOST_VSOCK_WEIGHT, NULL);
Asias He433fc582016-07-28 15:36:34 +0100630
631 file->private_data = vsock;
632 spin_lock_init(&vsock->send_pkt_list_lock);
633 INIT_LIST_HEAD(&vsock->send_pkt_list);
634 vhost_work_init(&vsock->send_pkt_work, vhost_transport_send_pkt_work);
Asias He433fc582016-07-28 15:36:34 +0100635 return 0;
636
637out:
638 vhost_vsock_free(vsock);
639 return ret;
640}
641
642static void vhost_vsock_flush(struct vhost_vsock *vsock)
643{
644 int i;
645
646 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++)
647 if (vsock->vqs[i].handle_kick)
648 vhost_poll_flush(&vsock->vqs[i].poll);
649 vhost_work_flush(&vsock->dev, &vsock->send_pkt_work);
650}
651
652static void vhost_vsock_reset_orphans(struct sock *sk)
653{
654 struct vsock_sock *vsk = vsock_sk(sk);
655
656 /* vmci_transport.c doesn't take sk_lock here either. At least we're
657 * under vsock_table_lock so the sock cannot disappear while we're
658 * executing.
659 */
660
Stefan Hajnoczic38f57d2018-12-06 19:14:34 +0000661 /* If the peer is still valid, no need to reset connection */
662 if (vhost_vsock_get(vsk->remote_addr.svm_cid))
663 return;
664
665 /* If the close timeout is pending, let it expire. This avoids races
666 * with the timeout callback.
667 */
668 if (vsk->close_work_scheduled)
669 return;
670
671 sock_set_flag(sk, SOCK_DONE);
672 vsk->peer_shutdown = SHUTDOWN_MASK;
673 sk->sk_state = SS_UNCONNECTED;
674 sk->sk_err = ECONNRESET;
675 sk->sk_error_report(sk);
Asias He433fc582016-07-28 15:36:34 +0100676}
677
678static int vhost_vsock_dev_release(struct inode *inode, struct file *file)
679{
680 struct vhost_vsock *vsock = file->private_data;
681
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +0000682 mutex_lock(&vhost_vsock_mutex);
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000683 if (vsock->guest_cid)
684 hash_del_rcu(&vsock->hash);
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +0000685 mutex_unlock(&vhost_vsock_mutex);
Asias He433fc582016-07-28 15:36:34 +0100686
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000687 /* Wait for other CPUs to finish using vsock */
688 synchronize_rcu();
689
Asias He433fc582016-07-28 15:36:34 +0100690 /* Iterating over all connections for all CIDs to find orphans is
691 * inefficient. Room for improvement here. */
692 vsock_for_each_connected_socket(vhost_vsock_reset_orphans);
693
694 vhost_vsock_stop(vsock);
695 vhost_vsock_flush(vsock);
696 vhost_dev_stop(&vsock->dev);
697
698 spin_lock_bh(&vsock->send_pkt_list_lock);
699 while (!list_empty(&vsock->send_pkt_list)) {
700 struct virtio_vsock_pkt *pkt;
701
702 pkt = list_first_entry(&vsock->send_pkt_list,
703 struct virtio_vsock_pkt, list);
704 list_del_init(&pkt->list);
705 virtio_transport_free_pkt(pkt);
706 }
707 spin_unlock_bh(&vsock->send_pkt_list_lock);
708
夷则(Caspar)f6f93f72017-12-25 00:08:58 +0800709 vhost_dev_cleanup(&vsock->dev);
Asias He433fc582016-07-28 15:36:34 +0100710 kfree(vsock->dev.vqs);
711 vhost_vsock_free(vsock);
712 return 0;
713}
714
715static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
716{
717 struct vhost_vsock *other;
718
719 /* Refuse reserved CIDs */
720 if (guest_cid <= VMADDR_CID_HOST ||
721 guest_cid == U32_MAX)
722 return -EINVAL;
723
724 /* 64-bit CIDs are not yet supported */
725 if (guest_cid > U32_MAX)
726 return -EINVAL;
727
Stefano Garzarellaed8640a2019-11-14 10:57:50 +0100728 /* Refuse if CID is assigned to the guest->host transport (i.e. nested
729 * VM), to make the loopback work.
730 */
731 if (vsock_find_cid(guest_cid))
732 return -EADDRINUSE;
733
Asias He433fc582016-07-28 15:36:34 +0100734 /* Refuse if CID is already in use */
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +0000735 mutex_lock(&vhost_vsock_mutex);
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000736 other = vhost_vsock_get(guest_cid);
Gao feng6c083c22016-12-14 19:24:36 +0800737 if (other && other != vsock) {
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +0000738 mutex_unlock(&vhost_vsock_mutex);
Gao feng6c083c22016-12-14 19:24:36 +0800739 return -EADDRINUSE;
740 }
Stefan Hajnoczi834e7722018-11-05 10:35:47 +0000741
742 if (vsock->guest_cid)
743 hash_del_rcu(&vsock->hash);
744
Asias He433fc582016-07-28 15:36:34 +0100745 vsock->guest_cid = guest_cid;
Zha Bin7fbe0782019-01-08 16:07:03 +0800746 hash_add_rcu(vhost_vsock_hash, &vsock->hash, vsock->guest_cid);
Stefan Hajnoczi6db3d8d2018-11-05 17:33:22 +0000747 mutex_unlock(&vhost_vsock_mutex);
Asias He433fc582016-07-28 15:36:34 +0100748
749 return 0;
750}
751
752static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
753{
754 struct vhost_virtqueue *vq;
755 int i;
756
757 if (features & ~VHOST_VSOCK_FEATURES)
758 return -EOPNOTSUPP;
759
760 mutex_lock(&vsock->dev.mutex);
761 if ((features & (1 << VHOST_F_LOG_ALL)) &&
762 !vhost_log_access_ok(&vsock->dev)) {
763 mutex_unlock(&vsock->dev.mutex);
764 return -EFAULT;
765 }
766
767 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
768 vq = &vsock->vqs[i];
769 mutex_lock(&vq->mutex);
770 vq->acked_features = features;
771 mutex_unlock(&vq->mutex);
772 }
773 mutex_unlock(&vsock->dev.mutex);
774 return 0;
775}
776
777static long vhost_vsock_dev_ioctl(struct file *f, unsigned int ioctl,
778 unsigned long arg)
779{
780 struct vhost_vsock *vsock = f->private_data;
781 void __user *argp = (void __user *)arg;
782 u64 guest_cid;
783 u64 features;
784 int start;
785 int r;
786
787 switch (ioctl) {
788 case VHOST_VSOCK_SET_GUEST_CID:
789 if (copy_from_user(&guest_cid, argp, sizeof(guest_cid)))
790 return -EFAULT;
791 return vhost_vsock_set_cid(vsock, guest_cid);
792 case VHOST_VSOCK_SET_RUNNING:
793 if (copy_from_user(&start, argp, sizeof(start)))
794 return -EFAULT;
795 if (start)
796 return vhost_vsock_start(vsock);
797 else
798 return vhost_vsock_stop(vsock);
799 case VHOST_GET_FEATURES:
800 features = VHOST_VSOCK_FEATURES;
801 if (copy_to_user(argp, &features, sizeof(features)))
802 return -EFAULT;
803 return 0;
804 case VHOST_SET_FEATURES:
805 if (copy_from_user(&features, argp, sizeof(features)))
806 return -EFAULT;
807 return vhost_vsock_set_features(vsock, features);
808 default:
809 mutex_lock(&vsock->dev.mutex);
810 r = vhost_dev_ioctl(&vsock->dev, ioctl, argp);
811 if (r == -ENOIOCTLCMD)
812 r = vhost_vring_ioctl(&vsock->dev, ioctl, argp);
813 else
814 vhost_vsock_flush(vsock);
815 mutex_unlock(&vsock->dev.mutex);
816 return r;
817 }
818}
819
820static const struct file_operations vhost_vsock_fops = {
821 .owner = THIS_MODULE,
822 .open = vhost_vsock_dev_open,
823 .release = vhost_vsock_dev_release,
824 .llseek = noop_llseek,
825 .unlocked_ioctl = vhost_vsock_dev_ioctl,
Arnd Bergmann407e9ef2018-09-11 17:23:00 +0200826 .compat_ioctl = compat_ptr_ioctl,
Asias He433fc582016-07-28 15:36:34 +0100827};
828
829static struct miscdevice vhost_vsock_misc = {
Stefan Hajnoczif4660cc2017-05-10 10:19:18 -0400830 .minor = VHOST_VSOCK_MINOR,
Asias He433fc582016-07-28 15:36:34 +0100831 .name = "vhost-vsock",
832 .fops = &vhost_vsock_fops,
833};
834
Asias He433fc582016-07-28 15:36:34 +0100835static int __init vhost_vsock_init(void)
836{
837 int ret;
838
Stefano Garzarellac0cfa2d2019-11-14 10:57:46 +0100839 ret = vsock_core_register(&vhost_transport.transport,
840 VSOCK_TRANSPORT_F_H2G);
Asias He433fc582016-07-28 15:36:34 +0100841 if (ret < 0)
842 return ret;
843 return misc_register(&vhost_vsock_misc);
844};
845
846static void __exit vhost_vsock_exit(void)
847{
848 misc_deregister(&vhost_vsock_misc);
Stefano Garzarellac0cfa2d2019-11-14 10:57:46 +0100849 vsock_core_unregister(&vhost_transport.transport);
Asias He433fc582016-07-28 15:36:34 +0100850};
851
852module_init(vhost_vsock_init);
853module_exit(vhost_vsock_exit);
854MODULE_LICENSE("GPL v2");
855MODULE_AUTHOR("Asias He");
856MODULE_DESCRIPTION("vhost transport for vsock ");
Stefan Hajnoczif4660cc2017-05-10 10:19:18 -0400857MODULE_ALIAS_MISCDEV(VHOST_VSOCK_MINOR);
858MODULE_ALIAS("devname:vhost-vsock");