vsock/vmci: register vmci_transport only when VMCI guest/host are active
[linux-2.6-block.git] / drivers / vhost / vsock.c
CommitLineData
7a338472 1// SPDX-License-Identifier: GPL-2.0-only
433fc58e
AH
2/*
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>
433fc58e
AH
8 */
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>
834e772c 17#include <linux/hashtable.h>
433fc58e
AH
18
19#include <net/af_vsock.h>
20#include "vhost.h"
21
22#define VHOST_VSOCK_DEFAULT_HOST_CID 2
e82b9b07
JW
23/* 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
433fc58e
AH
31
32enum {
33 VHOST_VSOCK_FEATURES = VHOST_FEATURES,
34};
35
36/* Used to track all the vhost_vsock instances on the system. */
6db3d8dc 37static DEFINE_MUTEX(vhost_vsock_mutex);
834e772c 38static DEFINE_READ_MOSTLY_HASHTABLE(vhost_vsock_hash, 8);
433fc58e
AH
39
40struct vhost_vsock {
41 struct vhost_dev dev;
42 struct vhost_virtqueue vqs[2];
43
6db3d8dc 44 /* Link to global vhost_vsock_hash, writes use vhost_vsock_mutex */
834e772c 45 struct hlist_node hash;
433fc58e
AH
46
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
6db3d8dc 61/* Callers that dereference the return value must hold vhost_vsock_mutex or the
834e772c
SH
62 * RCU read lock.
63 */
64static struct vhost_vsock *vhost_vsock_get(u32 guest_cid)
433fc58e
AH
65{
66 struct vhost_vsock *vsock;
67
834e772c 68 hash_for_each_possible_rcu(vhost_vsock_hash, vsock, hash, guest_cid) {
433fc58e
AH
69 u32 other_cid = vsock->guest_cid;
70
71 /* Skip instances that have no CID yet */
72 if (other_cid == 0)
73 continue;
74
ff3c1b1a 75 if (other_cid == guest_cid)
433fc58e 76 return vsock;
ff3c1b1a 77
433fc58e 78 }
433fc58e
AH
79
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];
e79b431f 88 int pkts = 0, total_len = 0;
433fc58e
AH
89 bool added = false;
90 bool restart_tx = false;
91
92 mutex_lock(&vq->mutex);
93
94 if (!vq->private_data)
95 goto out;
96
97 /* Avoid further vmexits, we're already processing the virtqueue */
98 vhost_disable_notify(&vsock->dev, vq);
99
e79b431f 100 do {
433fc58e
AH
101 struct virtio_vsock_pkt *pkt;
102 struct iov_iter iov_iter;
103 unsigned out, in;
104 size_t nbytes;
6dbd3e66 105 size_t iov_len, payload_len;
433fc58e
AH
106 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
6dbd3e66
SG
150 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);
433fc58e
AH
168
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
6dbd3e66
SG
176 nbytes = copy_to_iter(pkt->buf + pkt->off, payload_len,
177 &iov_iter);
178 if (nbytes != payload_len) {
433fc58e
AH
179 virtio_transport_free_pkt(pkt);
180 vq_err(vq, "Faulted on copying pkt buf\n");
181 break;
182 }
183
6dbd3e66 184 vhost_add_used(vq, head, sizeof(pkt->hdr) + payload_len);
433fc58e
AH
185 added = true;
186
82dfb540
GG
187 /* Deliver to monitoring devices all correctly transmitted
188 * packets.
189 */
190 virtio_transport_deliver_tap_pkt(pkt);
191
6dbd3e66
SG
192 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 }
e79b431f 217 } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
433fc58e
AH
218 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;
433fc58e
AH
243 int len = pkt->len;
244
834e772c
SH
245 rcu_read_lock();
246
433fc58e
AH
247 /* Find the vhost_vsock according to guest context id */
248 vsock = vhost_vsock_get(le64_to_cpu(pkt->hdr.dst_cid));
249 if (!vsock) {
834e772c 250 rcu_read_unlock();
433fc58e
AH
251 virtio_transport_free_pkt(pkt);
252 return -ENODEV;
253 }
254
433fc58e
AH
255 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);
834e772c
SH
263
264 rcu_read_unlock();
433fc58e
AH
265 return len;
266}
267
16320f36
PT
268static 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;
834e772c 274 int ret = -ENODEV;
16320f36
PT
275 LIST_HEAD(freeme);
276
834e772c
SH
277 rcu_read_lock();
278
16320f36
PT
279 /* Find the vhost_vsock according to guest context id */
280 vsock = vhost_vsock_get(vsk->remote_addr.svm_cid);
281 if (!vsock)
834e772c 282 goto out;
16320f36
PT
283
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
834e772c
SH
308 ret = 0;
309out:
310 rcu_read_unlock();
311 return ret;
16320f36
PT
312}
313
433fc58e
AH
314static 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
473c7391
SG
362 pkt->buf_len = pkt->len;
363
433fc58e
AH
364 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
4c7246dc
SG
387static struct virtio_transport vhost_transport = {
388 .transport = {
389 .get_local_cid = vhost_transport_get_local_cid,
390
391 .init = virtio_transport_do_socket_init,
392 .destruct = virtio_transport_destruct,
393 .release = virtio_transport_release,
394 .connect = virtio_transport_connect,
395 .shutdown = virtio_transport_shutdown,
396 .cancel_pkt = vhost_transport_cancel_pkt,
397
398 .dgram_enqueue = virtio_transport_dgram_enqueue,
399 .dgram_dequeue = virtio_transport_dgram_dequeue,
400 .dgram_bind = virtio_transport_dgram_bind,
401 .dgram_allow = virtio_transport_dgram_allow,
402
403 .stream_enqueue = virtio_transport_stream_enqueue,
404 .stream_dequeue = virtio_transport_stream_dequeue,
405 .stream_has_data = virtio_transport_stream_has_data,
406 .stream_has_space = virtio_transport_stream_has_space,
407 .stream_rcvhiwat = virtio_transport_stream_rcvhiwat,
408 .stream_is_active = virtio_transport_stream_is_active,
409 .stream_allow = virtio_transport_stream_allow,
410
411 .notify_poll_in = virtio_transport_notify_poll_in,
412 .notify_poll_out = virtio_transport_notify_poll_out,
413 .notify_recv_init = virtio_transport_notify_recv_init,
414 .notify_recv_pre_block = virtio_transport_notify_recv_pre_block,
415 .notify_recv_pre_dequeue = virtio_transport_notify_recv_pre_dequeue,
416 .notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
417 .notify_send_init = virtio_transport_notify_send_init,
418 .notify_send_pre_block = virtio_transport_notify_send_pre_block,
419 .notify_send_pre_enqueue = virtio_transport_notify_send_pre_enqueue,
420 .notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
b9f2b0ff 421 .notify_buffer_size = virtio_transport_notify_buffer_size,
4c7246dc 422
4c7246dc
SG
423 },
424
425 .send_pkt = vhost_transport_send_pkt,
426};
427
433fc58e
AH
428static void vhost_vsock_handle_tx_kick(struct vhost_work *work)
429{
430 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
431 poll.work);
432 struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
433 dev);
434 struct virtio_vsock_pkt *pkt;
e79b431f 435 int head, pkts = 0, total_len = 0;
433fc58e
AH
436 unsigned int out, in;
437 bool added = false;
438
439 mutex_lock(&vq->mutex);
440
441 if (!vq->private_data)
442 goto out;
443
444 vhost_disable_notify(&vsock->dev, vq);
e79b431f 445 do {
3fda5d6e
SH
446 u32 len;
447
433fc58e
AH
448 if (!vhost_vsock_more_replies(vsock)) {
449 /* Stop tx until the device processes already
450 * pending replies. Leave tx virtqueue
451 * callbacks disabled.
452 */
453 goto no_more_replies;
454 }
455
456 head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
457 &out, &in, NULL, NULL);
458 if (head < 0)
459 break;
460
461 if (head == vq->num) {
462 if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
463 vhost_disable_notify(&vsock->dev, vq);
464 continue;
465 }
466 break;
467 }
468
469 pkt = vhost_vsock_alloc_pkt(vq, out, in);
470 if (!pkt) {
471 vq_err(vq, "Faulted on pkt\n");
472 continue;
473 }
474
3fda5d6e
SH
475 len = pkt->len;
476
82dfb540
GG
477 /* Deliver to monitoring devices all received packets */
478 virtio_transport_deliver_tap_pkt(pkt);
479
433fc58e
AH
480 /* Only accept correctly addressed packets */
481 if (le64_to_cpu(pkt->hdr.src_cid) == vsock->guest_cid)
4c7246dc 482 virtio_transport_recv_pkt(&vhost_transport, pkt);
433fc58e
AH
483 else
484 virtio_transport_free_pkt(pkt);
485
e79b431f
JW
486 len += sizeof(pkt->hdr);
487 vhost_add_used(vq, head, len);
488 total_len += len;
433fc58e 489 added = true;
e79b431f 490 } while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
433fc58e
AH
491
492no_more_replies:
493 if (added)
494 vhost_signal(&vsock->dev, vq);
495
496out:
497 mutex_unlock(&vq->mutex);
498}
499
500static void vhost_vsock_handle_rx_kick(struct vhost_work *work)
501{
502 struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
503 poll.work);
504 struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
505 dev);
506
507 vhost_transport_do_send_pkt(vsock, vq);
508}
509
510static int vhost_vsock_start(struct vhost_vsock *vsock)
511{
0516ffd8 512 struct vhost_virtqueue *vq;
433fc58e
AH
513 size_t i;
514 int ret;
515
516 mutex_lock(&vsock->dev.mutex);
517
518 ret = vhost_dev_check_owner(&vsock->dev);
519 if (ret)
520 goto err;
521
522 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
0516ffd8 523 vq = &vsock->vqs[i];
433fc58e
AH
524
525 mutex_lock(&vq->mutex);
526
527 if (!vhost_vq_access_ok(vq)) {
528 ret = -EFAULT;
433fc58e
AH
529 goto err_vq;
530 }
531
532 if (!vq->private_data) {
533 vq->private_data = vsock;
0516ffd8
SH
534 ret = vhost_vq_init_access(vq);
535 if (ret)
536 goto err_vq;
433fc58e
AH
537 }
538
539 mutex_unlock(&vq->mutex);
540 }
541
542 mutex_unlock(&vsock->dev.mutex);
543 return 0;
544
545err_vq:
0516ffd8
SH
546 vq->private_data = NULL;
547 mutex_unlock(&vq->mutex);
548
433fc58e 549 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
0516ffd8 550 vq = &vsock->vqs[i];
433fc58e
AH
551
552 mutex_lock(&vq->mutex);
553 vq->private_data = NULL;
554 mutex_unlock(&vq->mutex);
555 }
556err:
557 mutex_unlock(&vsock->dev.mutex);
558 return ret;
559}
560
561static int vhost_vsock_stop(struct vhost_vsock *vsock)
562{
563 size_t i;
564 int ret;
565
566 mutex_lock(&vsock->dev.mutex);
567
568 ret = vhost_dev_check_owner(&vsock->dev);
569 if (ret)
570 goto err;
571
572 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
573 struct vhost_virtqueue *vq = &vsock->vqs[i];
574
575 mutex_lock(&vq->mutex);
576 vq->private_data = NULL;
577 mutex_unlock(&vq->mutex);
578 }
579
580err:
581 mutex_unlock(&vsock->dev.mutex);
582 return ret;
583}
584
585static void vhost_vsock_free(struct vhost_vsock *vsock)
586{
b226acab 587 kvfree(vsock);
433fc58e
AH
588}
589
590static int vhost_vsock_dev_open(struct inode *inode, struct file *file)
591{
592 struct vhost_virtqueue **vqs;
593 struct vhost_vsock *vsock;
594 int ret;
595
596 /* This struct is large and allocation could fail, fall back to vmalloc
597 * if there is no other way.
598 */
dcda9b04 599 vsock = kvmalloc(sizeof(*vsock), GFP_KERNEL | __GFP_RETRY_MAYFAIL);
6c5ab651
MH
600 if (!vsock)
601 return -ENOMEM;
433fc58e
AH
602
603 vqs = kmalloc_array(ARRAY_SIZE(vsock->vqs), sizeof(*vqs), GFP_KERNEL);
604 if (!vqs) {
605 ret = -ENOMEM;
606 goto out;
607 }
608
a72b69dc
SH
609 vsock->guest_cid = 0; /* no CID assigned yet */
610
433fc58e
AH
611 atomic_set(&vsock->queued_replies, 0);
612
613 vqs[VSOCK_VQ_TX] = &vsock->vqs[VSOCK_VQ_TX];
614 vqs[VSOCK_VQ_RX] = &vsock->vqs[VSOCK_VQ_RX];
615 vsock->vqs[VSOCK_VQ_TX].handle_kick = vhost_vsock_handle_tx_kick;
616 vsock->vqs[VSOCK_VQ_RX].handle_kick = vhost_vsock_handle_rx_kick;
617
e82b9b07
JW
618 vhost_dev_init(&vsock->dev, vqs, ARRAY_SIZE(vsock->vqs),
619 UIO_MAXIOV, VHOST_VSOCK_PKT_WEIGHT,
620 VHOST_VSOCK_WEIGHT);
433fc58e
AH
621
622 file->private_data = vsock;
623 spin_lock_init(&vsock->send_pkt_list_lock);
624 INIT_LIST_HEAD(&vsock->send_pkt_list);
625 vhost_work_init(&vsock->send_pkt_work, vhost_transport_send_pkt_work);
433fc58e
AH
626 return 0;
627
628out:
629 vhost_vsock_free(vsock);
630 return ret;
631}
632
633static void vhost_vsock_flush(struct vhost_vsock *vsock)
634{
635 int i;
636
637 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++)
638 if (vsock->vqs[i].handle_kick)
639 vhost_poll_flush(&vsock->vqs[i].poll);
640 vhost_work_flush(&vsock->dev, &vsock->send_pkt_work);
641}
642
643static void vhost_vsock_reset_orphans(struct sock *sk)
644{
645 struct vsock_sock *vsk = vsock_sk(sk);
646
647 /* vmci_transport.c doesn't take sk_lock here either. At least we're
648 * under vsock_table_lock so the sock cannot disappear while we're
649 * executing.
650 */
651
c38f57da
SH
652 /* If the peer is still valid, no need to reset connection */
653 if (vhost_vsock_get(vsk->remote_addr.svm_cid))
654 return;
655
656 /* If the close timeout is pending, let it expire. This avoids races
657 * with the timeout callback.
658 */
659 if (vsk->close_work_scheduled)
660 return;
661
662 sock_set_flag(sk, SOCK_DONE);
663 vsk->peer_shutdown = SHUTDOWN_MASK;
664 sk->sk_state = SS_UNCONNECTED;
665 sk->sk_err = ECONNRESET;
666 sk->sk_error_report(sk);
433fc58e
AH
667}
668
669static int vhost_vsock_dev_release(struct inode *inode, struct file *file)
670{
671 struct vhost_vsock *vsock = file->private_data;
672
6db3d8dc 673 mutex_lock(&vhost_vsock_mutex);
834e772c
SH
674 if (vsock->guest_cid)
675 hash_del_rcu(&vsock->hash);
6db3d8dc 676 mutex_unlock(&vhost_vsock_mutex);
433fc58e 677
834e772c
SH
678 /* Wait for other CPUs to finish using vsock */
679 synchronize_rcu();
680
433fc58e
AH
681 /* Iterating over all connections for all CIDs to find orphans is
682 * inefficient. Room for improvement here. */
683 vsock_for_each_connected_socket(vhost_vsock_reset_orphans);
684
685 vhost_vsock_stop(vsock);
686 vhost_vsock_flush(vsock);
687 vhost_dev_stop(&vsock->dev);
688
689 spin_lock_bh(&vsock->send_pkt_list_lock);
690 while (!list_empty(&vsock->send_pkt_list)) {
691 struct virtio_vsock_pkt *pkt;
692
693 pkt = list_first_entry(&vsock->send_pkt_list,
694 struct virtio_vsock_pkt, list);
695 list_del_init(&pkt->list);
696 virtio_transport_free_pkt(pkt);
697 }
698 spin_unlock_bh(&vsock->send_pkt_list_lock);
699
f6f93f75 700 vhost_dev_cleanup(&vsock->dev);
433fc58e
AH
701 kfree(vsock->dev.vqs);
702 vhost_vsock_free(vsock);
703 return 0;
704}
705
706static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
707{
708 struct vhost_vsock *other;
709
710 /* Refuse reserved CIDs */
711 if (guest_cid <= VMADDR_CID_HOST ||
712 guest_cid == U32_MAX)
713 return -EINVAL;
714
715 /* 64-bit CIDs are not yet supported */
716 if (guest_cid > U32_MAX)
717 return -EINVAL;
718
719 /* Refuse if CID is already in use */
6db3d8dc 720 mutex_lock(&vhost_vsock_mutex);
834e772c 721 other = vhost_vsock_get(guest_cid);
6c083c2b 722 if (other && other != vsock) {
6db3d8dc 723 mutex_unlock(&vhost_vsock_mutex);
6c083c2b
G
724 return -EADDRINUSE;
725 }
834e772c
SH
726
727 if (vsock->guest_cid)
728 hash_del_rcu(&vsock->hash);
729
433fc58e 730 vsock->guest_cid = guest_cid;
7fbe078c 731 hash_add_rcu(vhost_vsock_hash, &vsock->hash, vsock->guest_cid);
6db3d8dc 732 mutex_unlock(&vhost_vsock_mutex);
433fc58e
AH
733
734 return 0;
735}
736
737static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
738{
739 struct vhost_virtqueue *vq;
740 int i;
741
742 if (features & ~VHOST_VSOCK_FEATURES)
743 return -EOPNOTSUPP;
744
745 mutex_lock(&vsock->dev.mutex);
746 if ((features & (1 << VHOST_F_LOG_ALL)) &&
747 !vhost_log_access_ok(&vsock->dev)) {
748 mutex_unlock(&vsock->dev.mutex);
749 return -EFAULT;
750 }
751
752 for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
753 vq = &vsock->vqs[i];
754 mutex_lock(&vq->mutex);
755 vq->acked_features = features;
756 mutex_unlock(&vq->mutex);
757 }
758 mutex_unlock(&vsock->dev.mutex);
759 return 0;
760}
761
762static long vhost_vsock_dev_ioctl(struct file *f, unsigned int ioctl,
763 unsigned long arg)
764{
765 struct vhost_vsock *vsock = f->private_data;
766 void __user *argp = (void __user *)arg;
767 u64 guest_cid;
768 u64 features;
769 int start;
770 int r;
771
772 switch (ioctl) {
773 case VHOST_VSOCK_SET_GUEST_CID:
774 if (copy_from_user(&guest_cid, argp, sizeof(guest_cid)))
775 return -EFAULT;
776 return vhost_vsock_set_cid(vsock, guest_cid);
777 case VHOST_VSOCK_SET_RUNNING:
778 if (copy_from_user(&start, argp, sizeof(start)))
779 return -EFAULT;
780 if (start)
781 return vhost_vsock_start(vsock);
782 else
783 return vhost_vsock_stop(vsock);
784 case VHOST_GET_FEATURES:
785 features = VHOST_VSOCK_FEATURES;
786 if (copy_to_user(argp, &features, sizeof(features)))
787 return -EFAULT;
788 return 0;
789 case VHOST_SET_FEATURES:
790 if (copy_from_user(&features, argp, sizeof(features)))
791 return -EFAULT;
792 return vhost_vsock_set_features(vsock, features);
793 default:
794 mutex_lock(&vsock->dev.mutex);
795 r = vhost_dev_ioctl(&vsock->dev, ioctl, argp);
796 if (r == -ENOIOCTLCMD)
797 r = vhost_vring_ioctl(&vsock->dev, ioctl, argp);
798 else
799 vhost_vsock_flush(vsock);
800 mutex_unlock(&vsock->dev.mutex);
801 return r;
802 }
803}
804
dc32bb67
SR
805#ifdef CONFIG_COMPAT
806static long vhost_vsock_dev_compat_ioctl(struct file *f, unsigned int ioctl,
807 unsigned long arg)
808{
809 return vhost_vsock_dev_ioctl(f, ioctl, (unsigned long)compat_ptr(arg));
810}
811#endif
812
433fc58e
AH
813static const struct file_operations vhost_vsock_fops = {
814 .owner = THIS_MODULE,
815 .open = vhost_vsock_dev_open,
816 .release = vhost_vsock_dev_release,
817 .llseek = noop_llseek,
818 .unlocked_ioctl = vhost_vsock_dev_ioctl,
dc32bb67
SR
819#ifdef CONFIG_COMPAT
820 .compat_ioctl = vhost_vsock_dev_compat_ioctl,
821#endif
433fc58e
AH
822};
823
824static struct miscdevice vhost_vsock_misc = {
f4660cc9 825 .minor = VHOST_VSOCK_MINOR,
433fc58e
AH
826 .name = "vhost-vsock",
827 .fops = &vhost_vsock_fops,
828};
829
433fc58e
AH
830static int __init vhost_vsock_init(void)
831{
832 int ret;
833
c0cfa2d8
SG
834 ret = vsock_core_register(&vhost_transport.transport,
835 VSOCK_TRANSPORT_F_H2G);
433fc58e
AH
836 if (ret < 0)
837 return ret;
838 return misc_register(&vhost_vsock_misc);
839};
840
841static void __exit vhost_vsock_exit(void)
842{
843 misc_deregister(&vhost_vsock_misc);
c0cfa2d8 844 vsock_core_unregister(&vhost_transport.transport);
433fc58e
AH
845};
846
847module_init(vhost_vsock_init);
848module_exit(vhost_vsock_exit);
849MODULE_LICENSE("GPL v2");
850MODULE_AUTHOR("Asias He");
851MODULE_DESCRIPTION("vhost transport for vsock ");
f4660cc9
SH
852MODULE_ALIAS_MISCDEV(VHOST_VSOCK_MINOR);
853MODULE_ALIAS("devname:vhost-vsock");