Linux Audio

Check our new training course

Loading...
v6.8
  1// SPDX-License-Identifier: GPL-2.0-only
  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>
  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>
 17#include <linux/hashtable.h>
 18
 19#include <net/af_vsock.h>
 20#include "vhost.h"
 21
 22#define VHOST_VSOCK_DEFAULT_HOST_CID	2
 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
 31
 32enum {
 33	VHOST_VSOCK_FEATURES = VHOST_FEATURES |
 34			       (1ULL << VIRTIO_F_ACCESS_PLATFORM) |
 35			       (1ULL << VIRTIO_VSOCK_F_SEQPACKET)
 36};
 37
 38enum {
 39	VHOST_VSOCK_BACKEND_FEATURES = (1ULL << VHOST_BACKEND_F_IOTLB_MSG_V2)
 40};
 41
 42/* Used to track all the vhost_vsock instances on the system. */
 43static DEFINE_MUTEX(vhost_vsock_mutex);
 44static DEFINE_READ_MOSTLY_HASHTABLE(vhost_vsock_hash, 8);
 45
 46struct vhost_vsock {
 47	struct vhost_dev dev;
 48	struct vhost_virtqueue vqs[2];
 49
 50	/* Link to global vhost_vsock_hash, writes use vhost_vsock_mutex */
 51	struct hlist_node hash;
 52
 53	struct vhost_work send_pkt_work;
 54	struct sk_buff_head send_pkt_queue; /* host->guest pending packets */
 
 55
 56	atomic_t queued_replies;
 57
 58	u32 guest_cid;
 59	bool seqpacket_allow;
 60};
 61
 62static u32 vhost_transport_get_local_cid(void)
 63{
 64	return VHOST_VSOCK_DEFAULT_HOST_CID;
 65}
 66
 67/* Callers that dereference the return value must hold vhost_vsock_mutex or the
 68 * RCU read lock.
 69 */
 70static struct vhost_vsock *vhost_vsock_get(u32 guest_cid)
 71{
 72	struct vhost_vsock *vsock;
 73
 74	hash_for_each_possible_rcu(vhost_vsock_hash, vsock, hash, guest_cid) {
 75		u32 other_cid = vsock->guest_cid;
 76
 77		/* Skip instances that have no CID yet */
 78		if (other_cid == 0)
 79			continue;
 80
 81		if (other_cid == guest_cid)
 82			return vsock;
 83
 84	}
 85
 86	return NULL;
 87}
 88
 89static void
 90vhost_transport_do_send_pkt(struct vhost_vsock *vsock,
 91			    struct vhost_virtqueue *vq)
 92{
 93	struct vhost_virtqueue *tx_vq = &vsock->vqs[VSOCK_VQ_TX];
 94	int pkts = 0, total_len = 0;
 95	bool added = false;
 96	bool restart_tx = false;
 97
 98	mutex_lock(&vq->mutex);
 99
100	if (!vhost_vq_get_backend(vq))
101		goto out;
102
103	if (!vq_meta_prefetch(vq))
104		goto out;
105
106	/* Avoid further vmexits, we're already processing the virtqueue */
107	vhost_disable_notify(&vsock->dev, vq);
108
109	do {
110		struct virtio_vsock_hdr *hdr;
111		size_t iov_len, payload_len;
112		struct iov_iter iov_iter;
113		u32 flags_to_restore = 0;
114		struct sk_buff *skb;
115		unsigned out, in;
116		size_t nbytes;
117		u32 offset;
118		int head;
119
120		skb = virtio_vsock_skb_dequeue(&vsock->send_pkt_queue);
121
122		if (!skb) {
123			vhost_enable_notify(&vsock->dev, vq);
124			break;
125		}
126
 
 
 
 
 
127		head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
128					 &out, &in, NULL, NULL);
129		if (head < 0) {
130			virtio_vsock_skb_queue_head(&vsock->send_pkt_queue, skb);
 
 
131			break;
132		}
133
134		if (head == vq->num) {
135			virtio_vsock_skb_queue_head(&vsock->send_pkt_queue, skb);
 
 
 
136			/* We cannot finish yet if more buffers snuck in while
137			 * re-enabling notify.
138			 */
139			if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
140				vhost_disable_notify(&vsock->dev, vq);
141				continue;
142			}
143			break;
144		}
145
146		if (out) {
147			kfree_skb(skb);
148			vq_err(vq, "Expected 0 output buffers, got %u\n", out);
149			break;
150		}
151
152		iov_len = iov_length(&vq->iov[out], in);
153		if (iov_len < sizeof(*hdr)) {
154			kfree_skb(skb);
155			vq_err(vq, "Buffer len [%zu] too small\n", iov_len);
156			break;
157		}
158
159		iov_iter_init(&iov_iter, ITER_DEST, &vq->iov[out], in, iov_len);
160		offset = VIRTIO_VSOCK_SKB_CB(skb)->offset;
161		payload_len = skb->len - offset;
162		hdr = virtio_vsock_hdr(skb);
163
164		/* If the packet is greater than the space available in the
165		 * buffer, we split it using multiple buffers.
166		 */
167		if (payload_len > iov_len - sizeof(*hdr)) {
168			payload_len = iov_len - sizeof(*hdr);
169
170			/* As we are copying pieces of large packet's buffer to
171			 * small rx buffers, headers of packets in rx queue are
172			 * created dynamically and are initialized with header
173			 * of current packet(except length). But in case of
174			 * SOCK_SEQPACKET, we also must clear message delimeter
175			 * bit (VIRTIO_VSOCK_SEQ_EOM) and MSG_EOR bit
176			 * (VIRTIO_VSOCK_SEQ_EOR) if set. Otherwise,
177			 * there will be sequence of packets with these
178			 * bits set. After initialized header will be copied to
179			 * rx buffer, these required bits will be restored.
180			 */
181			if (le32_to_cpu(hdr->flags) & VIRTIO_VSOCK_SEQ_EOM) {
182				hdr->flags &= ~cpu_to_le32(VIRTIO_VSOCK_SEQ_EOM);
183				flags_to_restore |= VIRTIO_VSOCK_SEQ_EOM;
184
185				if (le32_to_cpu(hdr->flags) & VIRTIO_VSOCK_SEQ_EOR) {
186					hdr->flags &= ~cpu_to_le32(VIRTIO_VSOCK_SEQ_EOR);
187					flags_to_restore |= VIRTIO_VSOCK_SEQ_EOR;
188				}
189			}
190		}
191
192		/* Set the correct length in the header */
193		hdr->len = cpu_to_le32(payload_len);
194
195		nbytes = copy_to_iter(hdr, sizeof(*hdr), &iov_iter);
196		if (nbytes != sizeof(*hdr)) {
197			kfree_skb(skb);
198			vq_err(vq, "Faulted on copying pkt hdr\n");
199			break;
200		}
201
202		if (skb_copy_datagram_iter(skb,
203					   offset,
204					   &iov_iter,
205					   payload_len)) {
206			kfree_skb(skb);
207			vq_err(vq, "Faulted on copying pkt buf\n");
208			break;
209		}
210
211		/* Deliver to monitoring devices all packets that we
212		 * will transmit.
213		 */
214		virtio_transport_deliver_tap_pkt(skb);
215
216		vhost_add_used(vq, head, sizeof(*hdr) + payload_len);
217		added = true;
218
219		VIRTIO_VSOCK_SKB_CB(skb)->offset += payload_len;
220		total_len += payload_len;
221
222		/* If we didn't send all the payload we can requeue the packet
223		 * to send it with the next available buffer.
224		 */
225		if (VIRTIO_VSOCK_SKB_CB(skb)->offset < skb->len) {
226			hdr->flags |= cpu_to_le32(flags_to_restore);
227
228			/* We are queueing the same skb to handle
229			 * the remaining bytes, and we want to deliver it
230			 * to monitoring devices in the next iteration.
231			 */
232			virtio_vsock_skb_clear_tap_delivered(skb);
233			virtio_vsock_skb_queue_head(&vsock->send_pkt_queue, skb);
 
 
 
234		} else {
235			if (virtio_vsock_skb_reply(skb)) {
236				int val;
237
238				val = atomic_dec_return(&vsock->queued_replies);
239
240				/* Do we have resources to resume tx
241				 * processing?
242				 */
243				if (val + 1 == tx_vq->num)
244					restart_tx = true;
245			}
246
247			consume_skb(skb);
248		}
249	} while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
250	if (added)
251		vhost_signal(&vsock->dev, vq);
252
253out:
254	mutex_unlock(&vq->mutex);
255
256	if (restart_tx)
257		vhost_poll_queue(&tx_vq->poll);
258}
259
260static void vhost_transport_send_pkt_work(struct vhost_work *work)
261{
262	struct vhost_virtqueue *vq;
263	struct vhost_vsock *vsock;
264
265	vsock = container_of(work, struct vhost_vsock, send_pkt_work);
266	vq = &vsock->vqs[VSOCK_VQ_RX];
267
268	vhost_transport_do_send_pkt(vsock, vq);
269}
270
271static int
272vhost_transport_send_pkt(struct sk_buff *skb)
273{
274	struct virtio_vsock_hdr *hdr = virtio_vsock_hdr(skb);
275	struct vhost_vsock *vsock;
276	int len = skb->len;
277
278	rcu_read_lock();
279
280	/* Find the vhost_vsock according to guest context id  */
281	vsock = vhost_vsock_get(le64_to_cpu(hdr->dst_cid));
282	if (!vsock) {
283		rcu_read_unlock();
284		kfree_skb(skb);
285		return -ENODEV;
286	}
287
288	if (virtio_vsock_skb_reply(skb))
289		atomic_inc(&vsock->queued_replies);
290
291	virtio_vsock_skb_queue_tail(&vsock->send_pkt_queue, skb);
292	vhost_vq_work_queue(&vsock->vqs[VSOCK_VQ_RX], &vsock->send_pkt_work);
 
 
 
293
294	rcu_read_unlock();
295	return len;
296}
297
298static int
299vhost_transport_cancel_pkt(struct vsock_sock *vsk)
300{
301	struct vhost_vsock *vsock;
 
302	int cnt = 0;
303	int ret = -ENODEV;
 
304
305	rcu_read_lock();
306
307	/* Find the vhost_vsock according to guest context id  */
308	vsock = vhost_vsock_get(vsk->remote_addr.svm_cid);
309	if (!vsock)
310		goto out;
311
312	cnt = virtio_transport_purge_skbs(vsk, &vsock->send_pkt_queue);
 
 
 
 
 
 
 
 
 
 
 
 
 
313
314	if (cnt) {
315		struct vhost_virtqueue *tx_vq = &vsock->vqs[VSOCK_VQ_TX];
316		int new_cnt;
317
318		new_cnt = atomic_sub_return(cnt, &vsock->queued_replies);
319		if (new_cnt + cnt >= tx_vq->num && new_cnt < tx_vq->num)
320			vhost_poll_queue(&tx_vq->poll);
321	}
322
323	ret = 0;
324out:
325	rcu_read_unlock();
326	return ret;
327}
328
329static struct sk_buff *
330vhost_vsock_alloc_skb(struct vhost_virtqueue *vq,
331		      unsigned int out, unsigned int in)
332{
333	struct virtio_vsock_hdr *hdr;
334	struct iov_iter iov_iter;
335	struct sk_buff *skb;
336	size_t payload_len;
337	size_t nbytes;
338	size_t len;
339
340	if (in != 0) {
341		vq_err(vq, "Expected 0 input buffers, got %u\n", in);
342		return NULL;
343	}
344
345	len = iov_length(vq->iov, out);
346
347	/* len contains both payload and hdr */
348	skb = virtio_vsock_alloc_skb(len, GFP_KERNEL);
349	if (!skb)
350		return NULL;
351
352	iov_iter_init(&iov_iter, ITER_SOURCE, vq->iov, out, len);
 
353
354	hdr = virtio_vsock_hdr(skb);
355	nbytes = copy_from_iter(hdr, sizeof(*hdr), &iov_iter);
356	if (nbytes != sizeof(*hdr)) {
357		vq_err(vq, "Expected %zu bytes for pkt->hdr, got %zu bytes\n",
358		       sizeof(*hdr), nbytes);
359		kfree_skb(skb);
360		return NULL;
361	}
362
363	payload_len = le32_to_cpu(hdr->len);
 
364
365	/* No payload */
366	if (!payload_len)
367		return skb;
 
 
 
 
 
 
368
369	/* The pkt is too big or the length in the header is invalid */
370	if (payload_len > VIRTIO_VSOCK_MAX_PKT_BUF_SIZE ||
371	    payload_len + sizeof(*hdr) > len) {
372		kfree_skb(skb);
373		return NULL;
374	}
375
376	virtio_vsock_skb_rx_put(skb);
377
378	nbytes = copy_from_iter(skb->data, payload_len, &iov_iter);
379	if (nbytes != payload_len) {
380		vq_err(vq, "Expected %zu byte payload, got %zu bytes\n",
381		       payload_len, nbytes);
382		kfree_skb(skb);
383		return NULL;
384	}
385
386	return skb;
387}
388
389/* Is there space left for replies to rx packets? */
390static bool vhost_vsock_more_replies(struct vhost_vsock *vsock)
391{
392	struct vhost_virtqueue *vq = &vsock->vqs[VSOCK_VQ_TX];
393	int val;
394
395	smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */
396	val = atomic_read(&vsock->queued_replies);
397
398	return val < vq->num;
399}
400
401static bool vhost_transport_msgzerocopy_allow(void)
402{
403	return true;
404}
405
406static bool vhost_transport_seqpacket_allow(u32 remote_cid);
407
408static struct virtio_transport vhost_transport = {
409	.transport = {
410		.module                   = THIS_MODULE,
411
412		.get_local_cid            = vhost_transport_get_local_cid,
413
414		.init                     = virtio_transport_do_socket_init,
415		.destruct                 = virtio_transport_destruct,
416		.release                  = virtio_transport_release,
417		.connect                  = virtio_transport_connect,
418		.shutdown                 = virtio_transport_shutdown,
419		.cancel_pkt               = vhost_transport_cancel_pkt,
420
421		.dgram_enqueue            = virtio_transport_dgram_enqueue,
422		.dgram_dequeue            = virtio_transport_dgram_dequeue,
423		.dgram_bind               = virtio_transport_dgram_bind,
424		.dgram_allow              = virtio_transport_dgram_allow,
425
426		.stream_enqueue           = virtio_transport_stream_enqueue,
427		.stream_dequeue           = virtio_transport_stream_dequeue,
428		.stream_has_data          = virtio_transport_stream_has_data,
429		.stream_has_space         = virtio_transport_stream_has_space,
430		.stream_rcvhiwat          = virtio_transport_stream_rcvhiwat,
431		.stream_is_active         = virtio_transport_stream_is_active,
432		.stream_allow             = virtio_transport_stream_allow,
433
434		.seqpacket_dequeue        = virtio_transport_seqpacket_dequeue,
435		.seqpacket_enqueue        = virtio_transport_seqpacket_enqueue,
436		.seqpacket_allow          = vhost_transport_seqpacket_allow,
437		.seqpacket_has_data       = virtio_transport_seqpacket_has_data,
438
439		.msgzerocopy_allow        = vhost_transport_msgzerocopy_allow,
440
441		.notify_poll_in           = virtio_transport_notify_poll_in,
442		.notify_poll_out          = virtio_transport_notify_poll_out,
443		.notify_recv_init         = virtio_transport_notify_recv_init,
444		.notify_recv_pre_block    = virtio_transport_notify_recv_pre_block,
445		.notify_recv_pre_dequeue  = virtio_transport_notify_recv_pre_dequeue,
446		.notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
447		.notify_send_init         = virtio_transport_notify_send_init,
448		.notify_send_pre_block    = virtio_transport_notify_send_pre_block,
449		.notify_send_pre_enqueue  = virtio_transport_notify_send_pre_enqueue,
450		.notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
451		.notify_buffer_size       = virtio_transport_notify_buffer_size,
452		.notify_set_rcvlowat      = virtio_transport_notify_set_rcvlowat,
453
454		.read_skb = virtio_transport_read_skb,
455	},
456
457	.send_pkt = vhost_transport_send_pkt,
458};
459
460static bool vhost_transport_seqpacket_allow(u32 remote_cid)
461{
462	struct vhost_vsock *vsock;
463	bool seqpacket_allow = false;
464
465	rcu_read_lock();
466	vsock = vhost_vsock_get(remote_cid);
467
468	if (vsock)
469		seqpacket_allow = vsock->seqpacket_allow;
470
471	rcu_read_unlock();
472
473	return seqpacket_allow;
474}
475
476static void vhost_vsock_handle_tx_kick(struct vhost_work *work)
477{
478	struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
479						  poll.work);
480	struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
481						 dev);
 
482	int head, pkts = 0, total_len = 0;
483	unsigned int out, in;
484	struct sk_buff *skb;
485	bool added = false;
486
487	mutex_lock(&vq->mutex);
488
489	if (!vhost_vq_get_backend(vq))
490		goto out;
491
492	if (!vq_meta_prefetch(vq))
493		goto out;
494
495	vhost_disable_notify(&vsock->dev, vq);
496	do {
497		struct virtio_vsock_hdr *hdr;
498
499		if (!vhost_vsock_more_replies(vsock)) {
500			/* Stop tx until the device processes already
501			 * pending replies.  Leave tx virtqueue
502			 * callbacks disabled.
503			 */
504			goto no_more_replies;
505		}
506
507		head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
508					 &out, &in, NULL, NULL);
509		if (head < 0)
510			break;
511
512		if (head == vq->num) {
513			if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
514				vhost_disable_notify(&vsock->dev, vq);
515				continue;
516			}
517			break;
518		}
519
520		skb = vhost_vsock_alloc_skb(vq, out, in);
521		if (!skb) {
522			vq_err(vq, "Faulted on pkt\n");
523			continue;
524		}
525
526		total_len += sizeof(*hdr) + skb->len;
527
528		/* Deliver to monitoring devices all received packets */
529		virtio_transport_deliver_tap_pkt(skb);
530
531		hdr = virtio_vsock_hdr(skb);
532
533		/* Only accept correctly addressed packets */
534		if (le64_to_cpu(hdr->src_cid) == vsock->guest_cid &&
535		    le64_to_cpu(hdr->dst_cid) ==
536		    vhost_transport_get_local_cid())
537			virtio_transport_recv_pkt(&vhost_transport, skb);
538		else
539			kfree_skb(skb);
540
541		vhost_add_used(vq, head, 0);
 
 
542		added = true;
543	} while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
544
545no_more_replies:
546	if (added)
547		vhost_signal(&vsock->dev, vq);
548
549out:
550	mutex_unlock(&vq->mutex);
551}
552
553static void vhost_vsock_handle_rx_kick(struct vhost_work *work)
554{
555	struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
556						poll.work);
557	struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
558						 dev);
559
560	vhost_transport_do_send_pkt(vsock, vq);
561}
562
563static int vhost_vsock_start(struct vhost_vsock *vsock)
564{
565	struct vhost_virtqueue *vq;
566	size_t i;
567	int ret;
568
569	mutex_lock(&vsock->dev.mutex);
570
571	ret = vhost_dev_check_owner(&vsock->dev);
572	if (ret)
573		goto err;
574
575	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
576		vq = &vsock->vqs[i];
577
578		mutex_lock(&vq->mutex);
579
580		if (!vhost_vq_access_ok(vq)) {
581			ret = -EFAULT;
582			goto err_vq;
583		}
584
585		if (!vhost_vq_get_backend(vq)) {
586			vhost_vq_set_backend(vq, vsock);
587			ret = vhost_vq_init_access(vq);
588			if (ret)
589				goto err_vq;
590		}
591
592		mutex_unlock(&vq->mutex);
593	}
594
595	/* Some packets may have been queued before the device was started,
596	 * let's kick the send worker to send them.
597	 */
598	vhost_vq_work_queue(&vsock->vqs[VSOCK_VQ_RX], &vsock->send_pkt_work);
599
600	mutex_unlock(&vsock->dev.mutex);
601	return 0;
602
603err_vq:
604	vhost_vq_set_backend(vq, NULL);
605	mutex_unlock(&vq->mutex);
606
607	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
608		vq = &vsock->vqs[i];
609
610		mutex_lock(&vq->mutex);
611		vhost_vq_set_backend(vq, NULL);
612		mutex_unlock(&vq->mutex);
613	}
614err:
615	mutex_unlock(&vsock->dev.mutex);
616	return ret;
617}
618
619static int vhost_vsock_stop(struct vhost_vsock *vsock, bool check_owner)
620{
621	size_t i;
622	int ret = 0;
623
624	mutex_lock(&vsock->dev.mutex);
625
626	if (check_owner) {
627		ret = vhost_dev_check_owner(&vsock->dev);
628		if (ret)
629			goto err;
630	}
631
632	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
633		struct vhost_virtqueue *vq = &vsock->vqs[i];
634
635		mutex_lock(&vq->mutex);
636		vhost_vq_set_backend(vq, NULL);
637		mutex_unlock(&vq->mutex);
638	}
639
640err:
641	mutex_unlock(&vsock->dev.mutex);
642	return ret;
643}
644
645static void vhost_vsock_free(struct vhost_vsock *vsock)
646{
647	kvfree(vsock);
648}
649
650static int vhost_vsock_dev_open(struct inode *inode, struct file *file)
651{
652	struct vhost_virtqueue **vqs;
653	struct vhost_vsock *vsock;
654	int ret;
655
656	/* This struct is large and allocation could fail, fall back to vmalloc
657	 * if there is no other way.
658	 */
659	vsock = kvmalloc(sizeof(*vsock), GFP_KERNEL | __GFP_RETRY_MAYFAIL);
660	if (!vsock)
661		return -ENOMEM;
662
663	vqs = kmalloc_array(ARRAY_SIZE(vsock->vqs), sizeof(*vqs), GFP_KERNEL);
664	if (!vqs) {
665		ret = -ENOMEM;
666		goto out;
667	}
668
669	vsock->guest_cid = 0; /* no CID assigned yet */
670
671	atomic_set(&vsock->queued_replies, 0);
672
673	vqs[VSOCK_VQ_TX] = &vsock->vqs[VSOCK_VQ_TX];
674	vqs[VSOCK_VQ_RX] = &vsock->vqs[VSOCK_VQ_RX];
675	vsock->vqs[VSOCK_VQ_TX].handle_kick = vhost_vsock_handle_tx_kick;
676	vsock->vqs[VSOCK_VQ_RX].handle_kick = vhost_vsock_handle_rx_kick;
677
678	vhost_dev_init(&vsock->dev, vqs, ARRAY_SIZE(vsock->vqs),
679		       UIO_MAXIOV, VHOST_VSOCK_PKT_WEIGHT,
680		       VHOST_VSOCK_WEIGHT, true, NULL);
681
682	file->private_data = vsock;
683	skb_queue_head_init(&vsock->send_pkt_queue);
 
684	vhost_work_init(&vsock->send_pkt_work, vhost_transport_send_pkt_work);
685	return 0;
686
687out:
688	vhost_vsock_free(vsock);
689	return ret;
690}
691
692static void vhost_vsock_flush(struct vhost_vsock *vsock)
693{
694	vhost_dev_flush(&vsock->dev);
 
 
 
 
 
695}
696
697static void vhost_vsock_reset_orphans(struct sock *sk)
698{
699	struct vsock_sock *vsk = vsock_sk(sk);
700
701	/* vmci_transport.c doesn't take sk_lock here either.  At least we're
702	 * under vsock_table_lock so the sock cannot disappear while we're
703	 * executing.
704	 */
705
706	/* If the peer is still valid, no need to reset connection */
707	if (vhost_vsock_get(vsk->remote_addr.svm_cid))
708		return;
709
710	/* If the close timeout is pending, let it expire.  This avoids races
711	 * with the timeout callback.
712	 */
713	if (vsk->close_work_scheduled)
714		return;
715
716	sock_set_flag(sk, SOCK_DONE);
717	vsk->peer_shutdown = SHUTDOWN_MASK;
718	sk->sk_state = SS_UNCONNECTED;
719	sk->sk_err = ECONNRESET;
720	sk_error_report(sk);
721}
722
723static int vhost_vsock_dev_release(struct inode *inode, struct file *file)
724{
725	struct vhost_vsock *vsock = file->private_data;
726
727	mutex_lock(&vhost_vsock_mutex);
728	if (vsock->guest_cid)
729		hash_del_rcu(&vsock->hash);
730	mutex_unlock(&vhost_vsock_mutex);
731
732	/* Wait for other CPUs to finish using vsock */
733	synchronize_rcu();
734
735	/* Iterating over all connections for all CIDs to find orphans is
736	 * inefficient.  Room for improvement here. */
737	vsock_for_each_connected_socket(&vhost_transport.transport,
738					vhost_vsock_reset_orphans);
739
740	/* Don't check the owner, because we are in the release path, so we
741	 * need to stop the vsock device in any case.
742	 * vhost_vsock_stop() can not fail in this case, so we don't need to
743	 * check the return code.
744	 */
745	vhost_vsock_stop(vsock, false);
746	vhost_vsock_flush(vsock);
747	vhost_dev_stop(&vsock->dev);
748
749	virtio_vsock_skb_queue_purge(&vsock->send_pkt_queue);
 
 
 
 
 
 
 
 
 
750
751	vhost_dev_cleanup(&vsock->dev);
752	kfree(vsock->dev.vqs);
753	vhost_vsock_free(vsock);
754	return 0;
755}
756
757static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
758{
759	struct vhost_vsock *other;
760
761	/* Refuse reserved CIDs */
762	if (guest_cid <= VMADDR_CID_HOST ||
763	    guest_cid == U32_MAX)
764		return -EINVAL;
765
766	/* 64-bit CIDs are not yet supported */
767	if (guest_cid > U32_MAX)
768		return -EINVAL;
769
770	/* Refuse if CID is assigned to the guest->host transport (i.e. nested
771	 * VM), to make the loopback work.
772	 */
773	if (vsock_find_cid(guest_cid))
774		return -EADDRINUSE;
775
776	/* Refuse if CID is already in use */
777	mutex_lock(&vhost_vsock_mutex);
778	other = vhost_vsock_get(guest_cid);
779	if (other && other != vsock) {
780		mutex_unlock(&vhost_vsock_mutex);
781		return -EADDRINUSE;
782	}
783
784	if (vsock->guest_cid)
785		hash_del_rcu(&vsock->hash);
786
787	vsock->guest_cid = guest_cid;
788	hash_add_rcu(vhost_vsock_hash, &vsock->hash, vsock->guest_cid);
789	mutex_unlock(&vhost_vsock_mutex);
790
791	return 0;
792}
793
794static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
795{
796	struct vhost_virtqueue *vq;
797	int i;
798
799	if (features & ~VHOST_VSOCK_FEATURES)
800		return -EOPNOTSUPP;
801
802	mutex_lock(&vsock->dev.mutex);
803	if ((features & (1 << VHOST_F_LOG_ALL)) &&
804	    !vhost_log_access_ok(&vsock->dev)) {
805		goto err;
806	}
807
808	if ((features & (1ULL << VIRTIO_F_ACCESS_PLATFORM))) {
809		if (vhost_init_device_iotlb(&vsock->dev))
810			goto err;
811	}
812
813	if (features & (1ULL << VIRTIO_VSOCK_F_SEQPACKET))
814		vsock->seqpacket_allow = true;
815
816	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
817		vq = &vsock->vqs[i];
818		mutex_lock(&vq->mutex);
819		vq->acked_features = features;
820		mutex_unlock(&vq->mutex);
821	}
822	mutex_unlock(&vsock->dev.mutex);
823	return 0;
824
825err:
826	mutex_unlock(&vsock->dev.mutex);
827	return -EFAULT;
828}
829
830static long vhost_vsock_dev_ioctl(struct file *f, unsigned int ioctl,
831				  unsigned long arg)
832{
833	struct vhost_vsock *vsock = f->private_data;
834	void __user *argp = (void __user *)arg;
835	u64 guest_cid;
836	u64 features;
837	int start;
838	int r;
839
840	switch (ioctl) {
841	case VHOST_VSOCK_SET_GUEST_CID:
842		if (copy_from_user(&guest_cid, argp, sizeof(guest_cid)))
843			return -EFAULT;
844		return vhost_vsock_set_cid(vsock, guest_cid);
845	case VHOST_VSOCK_SET_RUNNING:
846		if (copy_from_user(&start, argp, sizeof(start)))
847			return -EFAULT;
848		if (start)
849			return vhost_vsock_start(vsock);
850		else
851			return vhost_vsock_stop(vsock, true);
852	case VHOST_GET_FEATURES:
853		features = VHOST_VSOCK_FEATURES;
854		if (copy_to_user(argp, &features, sizeof(features)))
855			return -EFAULT;
856		return 0;
857	case VHOST_SET_FEATURES:
858		if (copy_from_user(&features, argp, sizeof(features)))
859			return -EFAULT;
860		return vhost_vsock_set_features(vsock, features);
861	case VHOST_GET_BACKEND_FEATURES:
862		features = VHOST_VSOCK_BACKEND_FEATURES;
863		if (copy_to_user(argp, &features, sizeof(features)))
864			return -EFAULT;
865		return 0;
866	case VHOST_SET_BACKEND_FEATURES:
867		if (copy_from_user(&features, argp, sizeof(features)))
868			return -EFAULT;
869		if (features & ~VHOST_VSOCK_BACKEND_FEATURES)
870			return -EOPNOTSUPP;
871		vhost_set_backend_features(&vsock->dev, features);
872		return 0;
873	default:
874		mutex_lock(&vsock->dev.mutex);
875		r = vhost_dev_ioctl(&vsock->dev, ioctl, argp);
876		if (r == -ENOIOCTLCMD)
877			r = vhost_vring_ioctl(&vsock->dev, ioctl, argp);
878		else
879			vhost_vsock_flush(vsock);
880		mutex_unlock(&vsock->dev.mutex);
881		return r;
882	}
883}
884
885static ssize_t vhost_vsock_chr_read_iter(struct kiocb *iocb, struct iov_iter *to)
886{
887	struct file *file = iocb->ki_filp;
888	struct vhost_vsock *vsock = file->private_data;
889	struct vhost_dev *dev = &vsock->dev;
890	int noblock = file->f_flags & O_NONBLOCK;
891
892	return vhost_chr_read_iter(dev, to, noblock);
893}
894
895static ssize_t vhost_vsock_chr_write_iter(struct kiocb *iocb,
896					struct iov_iter *from)
897{
898	struct file *file = iocb->ki_filp;
899	struct vhost_vsock *vsock = file->private_data;
900	struct vhost_dev *dev = &vsock->dev;
901
902	return vhost_chr_write_iter(dev, from);
903}
904
905static __poll_t vhost_vsock_chr_poll(struct file *file, poll_table *wait)
906{
907	struct vhost_vsock *vsock = file->private_data;
908	struct vhost_dev *dev = &vsock->dev;
909
910	return vhost_chr_poll(file, dev, wait);
911}
912
913static const struct file_operations vhost_vsock_fops = {
914	.owner          = THIS_MODULE,
915	.open           = vhost_vsock_dev_open,
916	.release        = vhost_vsock_dev_release,
917	.llseek		= noop_llseek,
918	.unlocked_ioctl = vhost_vsock_dev_ioctl,
919	.compat_ioctl   = compat_ptr_ioctl,
920	.read_iter      = vhost_vsock_chr_read_iter,
921	.write_iter     = vhost_vsock_chr_write_iter,
922	.poll           = vhost_vsock_chr_poll,
923};
924
925static struct miscdevice vhost_vsock_misc = {
926	.minor = VHOST_VSOCK_MINOR,
927	.name = "vhost-vsock",
928	.fops = &vhost_vsock_fops,
929};
930
931static int __init vhost_vsock_init(void)
932{
933	int ret;
934
935	ret = vsock_core_register(&vhost_transport.transport,
936				  VSOCK_TRANSPORT_F_H2G);
937	if (ret < 0)
938		return ret;
939
940	ret = misc_register(&vhost_vsock_misc);
941	if (ret) {
942		vsock_core_unregister(&vhost_transport.transport);
943		return ret;
944	}
945
946	return 0;
947};
948
949static void __exit vhost_vsock_exit(void)
950{
951	misc_deregister(&vhost_vsock_misc);
952	vsock_core_unregister(&vhost_transport.transport);
953};
954
955module_init(vhost_vsock_init);
956module_exit(vhost_vsock_exit);
957MODULE_LICENSE("GPL v2");
958MODULE_AUTHOR("Asias He");
959MODULE_DESCRIPTION("vhost transport for vsock ");
960MODULE_ALIAS_MISCDEV(VHOST_VSOCK_MINOR);
961MODULE_ALIAS("devname:vhost-vsock");
v5.9
  1// SPDX-License-Identifier: GPL-2.0-only
  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>
  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>
 17#include <linux/hashtable.h>
 18
 19#include <net/af_vsock.h>
 20#include "vhost.h"
 21
 22#define VHOST_VSOCK_DEFAULT_HOST_CID	2
 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
 31
 32enum {
 33	VHOST_VSOCK_FEATURES = VHOST_FEATURES,
 
 
 
 
 
 
 34};
 35
 36/* Used to track all the vhost_vsock instances on the system. */
 37static DEFINE_MUTEX(vhost_vsock_mutex);
 38static DEFINE_READ_MOSTLY_HASHTABLE(vhost_vsock_hash, 8);
 39
 40struct vhost_vsock {
 41	struct vhost_dev dev;
 42	struct vhost_virtqueue vqs[2];
 43
 44	/* Link to global vhost_vsock_hash, writes use vhost_vsock_mutex */
 45	struct hlist_node hash;
 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
 61/* Callers that dereference the return value must hold vhost_vsock_mutex or the
 62 * RCU read lock.
 63 */
 64static struct vhost_vsock *vhost_vsock_get(u32 guest_cid)
 65{
 66	struct vhost_vsock *vsock;
 67
 68	hash_for_each_possible_rcu(vhost_vsock_hash, vsock, hash, guest_cid) {
 69		u32 other_cid = vsock->guest_cid;
 70
 71		/* Skip instances that have no CID yet */
 72		if (other_cid == 0)
 73			continue;
 74
 75		if (other_cid == guest_cid)
 76			return vsock;
 77
 78	}
 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];
 88	int pkts = 0, total_len = 0;
 89	bool added = false;
 90	bool restart_tx = false;
 91
 92	mutex_lock(&vq->mutex);
 93
 94	if (!vhost_vq_get_backend(vq))
 95		goto out;
 96
 
 
 
 97	/* Avoid further vmexits, we're already processing the virtqueue */
 98	vhost_disable_notify(&vsock->dev, vq);
 99
100	do {
101		struct virtio_vsock_pkt *pkt;
 
102		struct iov_iter iov_iter;
 
 
103		unsigned out, in;
104		size_t nbytes;
105		size_t iov_len, payload_len;
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
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);
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
176		nbytes = copy_to_iter(pkt->buf + pkt->off, payload_len,
177				      &iov_iter);
178		if (nbytes != payload_len) {
179			virtio_transport_free_pkt(pkt);
 
180			vq_err(vq, "Faulted on copying pkt buf\n");
181			break;
182		}
183
184		/* Deliver to monitoring devices all packets that we
185		 * will transmit.
186		 */
187		virtio_transport_deliver_tap_pkt(pkt);
188
189		vhost_add_used(vq, head, sizeof(pkt->hdr) + payload_len);
190		added = true;
191
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			/* We are queueing the same virtio_vsock_pkt to handle
 
 
200			 * the remaining bytes, and we want to deliver it
201			 * to monitoring devices in the next iteration.
202			 */
203			pkt->tap_delivered = false;
204
205			spin_lock_bh(&vsock->send_pkt_list_lock);
206			list_add(&pkt->list, &vsock->send_pkt_list);
207			spin_unlock_bh(&vsock->send_pkt_list_lock);
208		} else {
209			if (pkt->reply) {
210				int val;
211
212				val = atomic_dec_return(&vsock->queued_replies);
213
214				/* Do we have resources to resume tx
215				 * processing?
216				 */
217				if (val + 1 == tx_vq->num)
218					restart_tx = true;
219			}
220
221			virtio_transport_free_pkt(pkt);
222		}
223	} while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
224	if (added)
225		vhost_signal(&vsock->dev, vq);
226
227out:
228	mutex_unlock(&vq->mutex);
229
230	if (restart_tx)
231		vhost_poll_queue(&tx_vq->poll);
232}
233
234static void vhost_transport_send_pkt_work(struct vhost_work *work)
235{
236	struct vhost_virtqueue *vq;
237	struct vhost_vsock *vsock;
238
239	vsock = container_of(work, struct vhost_vsock, send_pkt_work);
240	vq = &vsock->vqs[VSOCK_VQ_RX];
241
242	vhost_transport_do_send_pkt(vsock, vq);
243}
244
245static int
246vhost_transport_send_pkt(struct virtio_vsock_pkt *pkt)
247{
 
248	struct vhost_vsock *vsock;
249	int len = pkt->len;
250
251	rcu_read_lock();
252
253	/* Find the vhost_vsock according to guest context id  */
254	vsock = vhost_vsock_get(le64_to_cpu(pkt->hdr.dst_cid));
255	if (!vsock) {
256		rcu_read_unlock();
257		virtio_transport_free_pkt(pkt);
258		return -ENODEV;
259	}
260
261	if (pkt->reply)
262		atomic_inc(&vsock->queued_replies);
263
264	spin_lock_bh(&vsock->send_pkt_list_lock);
265	list_add_tail(&pkt->list, &vsock->send_pkt_list);
266	spin_unlock_bh(&vsock->send_pkt_list_lock);
267
268	vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
269
270	rcu_read_unlock();
271	return len;
272}
273
274static int
275vhost_transport_cancel_pkt(struct vsock_sock *vsk)
276{
277	struct vhost_vsock *vsock;
278	struct virtio_vsock_pkt *pkt, *n;
279	int cnt = 0;
280	int ret = -ENODEV;
281	LIST_HEAD(freeme);
282
283	rcu_read_lock();
284
285	/* Find the vhost_vsock according to guest context id  */
286	vsock = vhost_vsock_get(vsk->remote_addr.svm_cid);
287	if (!vsock)
288		goto out;
289
290	spin_lock_bh(&vsock->send_pkt_list_lock);
291	list_for_each_entry_safe(pkt, n, &vsock->send_pkt_list, list) {
292		if (pkt->vsk != vsk)
293			continue;
294		list_move(&pkt->list, &freeme);
295	}
296	spin_unlock_bh(&vsock->send_pkt_list_lock);
297
298	list_for_each_entry_safe(pkt, n, &freeme, list) {
299		if (pkt->reply)
300			cnt++;
301		list_del(&pkt->list);
302		virtio_transport_free_pkt(pkt);
303	}
304
305	if (cnt) {
306		struct vhost_virtqueue *tx_vq = &vsock->vqs[VSOCK_VQ_TX];
307		int new_cnt;
308
309		new_cnt = atomic_sub_return(cnt, &vsock->queued_replies);
310		if (new_cnt + cnt >= tx_vq->num && new_cnt < tx_vq->num)
311			vhost_poll_queue(&tx_vq->poll);
312	}
313
314	ret = 0;
315out:
316	rcu_read_unlock();
317	return ret;
318}
319
320static struct virtio_vsock_pkt *
321vhost_vsock_alloc_pkt(struct vhost_virtqueue *vq,
322		      unsigned int out, unsigned int in)
323{
324	struct virtio_vsock_pkt *pkt;
325	struct iov_iter iov_iter;
 
 
326	size_t nbytes;
327	size_t len;
328
329	if (in != 0) {
330		vq_err(vq, "Expected 0 input buffers, got %u\n", in);
331		return NULL;
332	}
333
334	pkt = kzalloc(sizeof(*pkt), GFP_KERNEL);
335	if (!pkt)
 
 
 
336		return NULL;
337
338	len = iov_length(vq->iov, out);
339	iov_iter_init(&iov_iter, WRITE, vq->iov, out, len);
340
341	nbytes = copy_from_iter(&pkt->hdr, sizeof(pkt->hdr), &iov_iter);
342	if (nbytes != sizeof(pkt->hdr)) {
 
343		vq_err(vq, "Expected %zu bytes for pkt->hdr, got %zu bytes\n",
344		       sizeof(pkt->hdr), nbytes);
345		kfree(pkt);
346		return NULL;
347	}
348
349	if (le16_to_cpu(pkt->hdr.type) == VIRTIO_VSOCK_TYPE_STREAM)
350		pkt->len = le32_to_cpu(pkt->hdr.len);
351
352	/* No payload */
353	if (!pkt->len)
354		return pkt;
355
356	/* The pkt is too big */
357	if (pkt->len > VIRTIO_VSOCK_MAX_PKT_BUF_SIZE) {
358		kfree(pkt);
359		return NULL;
360	}
361
362	pkt->buf = kmalloc(pkt->len, GFP_KERNEL);
363	if (!pkt->buf) {
364		kfree(pkt);
 
365		return NULL;
366	}
367
368	pkt->buf_len = pkt->len;
369
370	nbytes = copy_from_iter(pkt->buf, pkt->len, &iov_iter);
371	if (nbytes != pkt->len) {
372		vq_err(vq, "Expected %u byte payload, got %zu bytes\n",
373		       pkt->len, nbytes);
374		virtio_transport_free_pkt(pkt);
375		return NULL;
376	}
377
378	return pkt;
379}
380
381/* Is there space left for replies to rx packets? */
382static bool vhost_vsock_more_replies(struct vhost_vsock *vsock)
383{
384	struct vhost_virtqueue *vq = &vsock->vqs[VSOCK_VQ_TX];
385	int val;
386
387	smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */
388	val = atomic_read(&vsock->queued_replies);
389
390	return val < vq->num;
391}
392
 
 
 
 
 
 
 
393static struct virtio_transport vhost_transport = {
394	.transport = {
395		.module                   = THIS_MODULE,
396
397		.get_local_cid            = vhost_transport_get_local_cid,
398
399		.init                     = virtio_transport_do_socket_init,
400		.destruct                 = virtio_transport_destruct,
401		.release                  = virtio_transport_release,
402		.connect                  = virtio_transport_connect,
403		.shutdown                 = virtio_transport_shutdown,
404		.cancel_pkt               = vhost_transport_cancel_pkt,
405
406		.dgram_enqueue            = virtio_transport_dgram_enqueue,
407		.dgram_dequeue            = virtio_transport_dgram_dequeue,
408		.dgram_bind               = virtio_transport_dgram_bind,
409		.dgram_allow              = virtio_transport_dgram_allow,
410
411		.stream_enqueue           = virtio_transport_stream_enqueue,
412		.stream_dequeue           = virtio_transport_stream_dequeue,
413		.stream_has_data          = virtio_transport_stream_has_data,
414		.stream_has_space         = virtio_transport_stream_has_space,
415		.stream_rcvhiwat          = virtio_transport_stream_rcvhiwat,
416		.stream_is_active         = virtio_transport_stream_is_active,
417		.stream_allow             = virtio_transport_stream_allow,
418
 
 
 
 
 
 
 
419		.notify_poll_in           = virtio_transport_notify_poll_in,
420		.notify_poll_out          = virtio_transport_notify_poll_out,
421		.notify_recv_init         = virtio_transport_notify_recv_init,
422		.notify_recv_pre_block    = virtio_transport_notify_recv_pre_block,
423		.notify_recv_pre_dequeue  = virtio_transport_notify_recv_pre_dequeue,
424		.notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
425		.notify_send_init         = virtio_transport_notify_send_init,
426		.notify_send_pre_block    = virtio_transport_notify_send_pre_block,
427		.notify_send_pre_enqueue  = virtio_transport_notify_send_pre_enqueue,
428		.notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
429		.notify_buffer_size       = virtio_transport_notify_buffer_size,
 
430
 
431	},
432
433	.send_pkt = vhost_transport_send_pkt,
434};
435
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
436static void vhost_vsock_handle_tx_kick(struct vhost_work *work)
437{
438	struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
439						  poll.work);
440	struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
441						 dev);
442	struct virtio_vsock_pkt *pkt;
443	int head, pkts = 0, total_len = 0;
444	unsigned int out, in;
 
445	bool added = false;
446
447	mutex_lock(&vq->mutex);
448
449	if (!vhost_vq_get_backend(vq))
450		goto out;
451
 
 
 
452	vhost_disable_notify(&vsock->dev, vq);
453	do {
454		u32 len;
455
456		if (!vhost_vsock_more_replies(vsock)) {
457			/* Stop tx until the device processes already
458			 * pending replies.  Leave tx virtqueue
459			 * callbacks disabled.
460			 */
461			goto no_more_replies;
462		}
463
464		head = vhost_get_vq_desc(vq, vq->iov, ARRAY_SIZE(vq->iov),
465					 &out, &in, NULL, NULL);
466		if (head < 0)
467			break;
468
469		if (head == vq->num) {
470			if (unlikely(vhost_enable_notify(&vsock->dev, vq))) {
471				vhost_disable_notify(&vsock->dev, vq);
472				continue;
473			}
474			break;
475		}
476
477		pkt = vhost_vsock_alloc_pkt(vq, out, in);
478		if (!pkt) {
479			vq_err(vq, "Faulted on pkt\n");
480			continue;
481		}
482
483		len = pkt->len;
484
485		/* Deliver to monitoring devices all received packets */
486		virtio_transport_deliver_tap_pkt(pkt);
 
 
487
488		/* Only accept correctly addressed packets */
489		if (le64_to_cpu(pkt->hdr.src_cid) == vsock->guest_cid &&
490		    le64_to_cpu(pkt->hdr.dst_cid) ==
491		    vhost_transport_get_local_cid())
492			virtio_transport_recv_pkt(&vhost_transport, pkt);
493		else
494			virtio_transport_free_pkt(pkt);
495
496		len += sizeof(pkt->hdr);
497		vhost_add_used(vq, head, len);
498		total_len += len;
499		added = true;
500	} while(likely(!vhost_exceeds_weight(vq, ++pkts, total_len)));
501
502no_more_replies:
503	if (added)
504		vhost_signal(&vsock->dev, vq);
505
506out:
507	mutex_unlock(&vq->mutex);
508}
509
510static void vhost_vsock_handle_rx_kick(struct vhost_work *work)
511{
512	struct vhost_virtqueue *vq = container_of(work, struct vhost_virtqueue,
513						poll.work);
514	struct vhost_vsock *vsock = container_of(vq->dev, struct vhost_vsock,
515						 dev);
516
517	vhost_transport_do_send_pkt(vsock, vq);
518}
519
520static int vhost_vsock_start(struct vhost_vsock *vsock)
521{
522	struct vhost_virtqueue *vq;
523	size_t i;
524	int ret;
525
526	mutex_lock(&vsock->dev.mutex);
527
528	ret = vhost_dev_check_owner(&vsock->dev);
529	if (ret)
530		goto err;
531
532	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
533		vq = &vsock->vqs[i];
534
535		mutex_lock(&vq->mutex);
536
537		if (!vhost_vq_access_ok(vq)) {
538			ret = -EFAULT;
539			goto err_vq;
540		}
541
542		if (!vhost_vq_get_backend(vq)) {
543			vhost_vq_set_backend(vq, vsock);
544			ret = vhost_vq_init_access(vq);
545			if (ret)
546				goto err_vq;
547		}
548
549		mutex_unlock(&vq->mutex);
550	}
551
552	/* Some packets may have been queued before the device was started,
553	 * let's kick the send worker to send them.
554	 */
555	vhost_work_queue(&vsock->dev, &vsock->send_pkt_work);
556
557	mutex_unlock(&vsock->dev.mutex);
558	return 0;
559
560err_vq:
561	vhost_vq_set_backend(vq, NULL);
562	mutex_unlock(&vq->mutex);
563
564	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
565		vq = &vsock->vqs[i];
566
567		mutex_lock(&vq->mutex);
568		vhost_vq_set_backend(vq, NULL);
569		mutex_unlock(&vq->mutex);
570	}
571err:
572	mutex_unlock(&vsock->dev.mutex);
573	return ret;
574}
575
576static int vhost_vsock_stop(struct vhost_vsock *vsock)
577{
578	size_t i;
579	int ret;
580
581	mutex_lock(&vsock->dev.mutex);
582
583	ret = vhost_dev_check_owner(&vsock->dev);
584	if (ret)
585		goto err;
 
 
586
587	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
588		struct vhost_virtqueue *vq = &vsock->vqs[i];
589
590		mutex_lock(&vq->mutex);
591		vhost_vq_set_backend(vq, NULL);
592		mutex_unlock(&vq->mutex);
593	}
594
595err:
596	mutex_unlock(&vsock->dev.mutex);
597	return ret;
598}
599
600static void vhost_vsock_free(struct vhost_vsock *vsock)
601{
602	kvfree(vsock);
603}
604
605static int vhost_vsock_dev_open(struct inode *inode, struct file *file)
606{
607	struct vhost_virtqueue **vqs;
608	struct vhost_vsock *vsock;
609	int ret;
610
611	/* This struct is large and allocation could fail, fall back to vmalloc
612	 * if there is no other way.
613	 */
614	vsock = kvmalloc(sizeof(*vsock), GFP_KERNEL | __GFP_RETRY_MAYFAIL);
615	if (!vsock)
616		return -ENOMEM;
617
618	vqs = kmalloc_array(ARRAY_SIZE(vsock->vqs), sizeof(*vqs), GFP_KERNEL);
619	if (!vqs) {
620		ret = -ENOMEM;
621		goto out;
622	}
623
624	vsock->guest_cid = 0; /* no CID assigned yet */
625
626	atomic_set(&vsock->queued_replies, 0);
627
628	vqs[VSOCK_VQ_TX] = &vsock->vqs[VSOCK_VQ_TX];
629	vqs[VSOCK_VQ_RX] = &vsock->vqs[VSOCK_VQ_RX];
630	vsock->vqs[VSOCK_VQ_TX].handle_kick = vhost_vsock_handle_tx_kick;
631	vsock->vqs[VSOCK_VQ_RX].handle_kick = vhost_vsock_handle_rx_kick;
632
633	vhost_dev_init(&vsock->dev, vqs, ARRAY_SIZE(vsock->vqs),
634		       UIO_MAXIOV, VHOST_VSOCK_PKT_WEIGHT,
635		       VHOST_VSOCK_WEIGHT, true, NULL);
636
637	file->private_data = vsock;
638	spin_lock_init(&vsock->send_pkt_list_lock);
639	INIT_LIST_HEAD(&vsock->send_pkt_list);
640	vhost_work_init(&vsock->send_pkt_work, vhost_transport_send_pkt_work);
641	return 0;
642
643out:
644	vhost_vsock_free(vsock);
645	return ret;
646}
647
648static void vhost_vsock_flush(struct vhost_vsock *vsock)
649{
650	int i;
651
652	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++)
653		if (vsock->vqs[i].handle_kick)
654			vhost_poll_flush(&vsock->vqs[i].poll);
655	vhost_work_flush(&vsock->dev, &vsock->send_pkt_work);
656}
657
658static void vhost_vsock_reset_orphans(struct sock *sk)
659{
660	struct vsock_sock *vsk = vsock_sk(sk);
661
662	/* vmci_transport.c doesn't take sk_lock here either.  At least we're
663	 * under vsock_table_lock so the sock cannot disappear while we're
664	 * executing.
665	 */
666
667	/* If the peer is still valid, no need to reset connection */
668	if (vhost_vsock_get(vsk->remote_addr.svm_cid))
669		return;
670
671	/* If the close timeout is pending, let it expire.  This avoids races
672	 * with the timeout callback.
673	 */
674	if (vsk->close_work_scheduled)
675		return;
676
677	sock_set_flag(sk, SOCK_DONE);
678	vsk->peer_shutdown = SHUTDOWN_MASK;
679	sk->sk_state = SS_UNCONNECTED;
680	sk->sk_err = ECONNRESET;
681	sk->sk_error_report(sk);
682}
683
684static int vhost_vsock_dev_release(struct inode *inode, struct file *file)
685{
686	struct vhost_vsock *vsock = file->private_data;
687
688	mutex_lock(&vhost_vsock_mutex);
689	if (vsock->guest_cid)
690		hash_del_rcu(&vsock->hash);
691	mutex_unlock(&vhost_vsock_mutex);
692
693	/* Wait for other CPUs to finish using vsock */
694	synchronize_rcu();
695
696	/* Iterating over all connections for all CIDs to find orphans is
697	 * inefficient.  Room for improvement here. */
698	vsock_for_each_connected_socket(vhost_vsock_reset_orphans);
 
699
700	vhost_vsock_stop(vsock);
 
 
 
 
 
701	vhost_vsock_flush(vsock);
702	vhost_dev_stop(&vsock->dev);
703
704	spin_lock_bh(&vsock->send_pkt_list_lock);
705	while (!list_empty(&vsock->send_pkt_list)) {
706		struct virtio_vsock_pkt *pkt;
707
708		pkt = list_first_entry(&vsock->send_pkt_list,
709				struct virtio_vsock_pkt, list);
710		list_del_init(&pkt->list);
711		virtio_transport_free_pkt(pkt);
712	}
713	spin_unlock_bh(&vsock->send_pkt_list_lock);
714
715	vhost_dev_cleanup(&vsock->dev);
716	kfree(vsock->dev.vqs);
717	vhost_vsock_free(vsock);
718	return 0;
719}
720
721static int vhost_vsock_set_cid(struct vhost_vsock *vsock, u64 guest_cid)
722{
723	struct vhost_vsock *other;
724
725	/* Refuse reserved CIDs */
726	if (guest_cid <= VMADDR_CID_HOST ||
727	    guest_cid == U32_MAX)
728		return -EINVAL;
729
730	/* 64-bit CIDs are not yet supported */
731	if (guest_cid > U32_MAX)
732		return -EINVAL;
733
734	/* Refuse if CID is assigned to the guest->host transport (i.e. nested
735	 * VM), to make the loopback work.
736	 */
737	if (vsock_find_cid(guest_cid))
738		return -EADDRINUSE;
739
740	/* Refuse if CID is already in use */
741	mutex_lock(&vhost_vsock_mutex);
742	other = vhost_vsock_get(guest_cid);
743	if (other && other != vsock) {
744		mutex_unlock(&vhost_vsock_mutex);
745		return -EADDRINUSE;
746	}
747
748	if (vsock->guest_cid)
749		hash_del_rcu(&vsock->hash);
750
751	vsock->guest_cid = guest_cid;
752	hash_add_rcu(vhost_vsock_hash, &vsock->hash, vsock->guest_cid);
753	mutex_unlock(&vhost_vsock_mutex);
754
755	return 0;
756}
757
758static int vhost_vsock_set_features(struct vhost_vsock *vsock, u64 features)
759{
760	struct vhost_virtqueue *vq;
761	int i;
762
763	if (features & ~VHOST_VSOCK_FEATURES)
764		return -EOPNOTSUPP;
765
766	mutex_lock(&vsock->dev.mutex);
767	if ((features & (1 << VHOST_F_LOG_ALL)) &&
768	    !vhost_log_access_ok(&vsock->dev)) {
769		mutex_unlock(&vsock->dev.mutex);
770		return -EFAULT;
 
 
 
 
771	}
772
 
 
 
773	for (i = 0; i < ARRAY_SIZE(vsock->vqs); i++) {
774		vq = &vsock->vqs[i];
775		mutex_lock(&vq->mutex);
776		vq->acked_features = features;
777		mutex_unlock(&vq->mutex);
778	}
779	mutex_unlock(&vsock->dev.mutex);
780	return 0;
 
 
 
 
781}
782
783static long vhost_vsock_dev_ioctl(struct file *f, unsigned int ioctl,
784				  unsigned long arg)
785{
786	struct vhost_vsock *vsock = f->private_data;
787	void __user *argp = (void __user *)arg;
788	u64 guest_cid;
789	u64 features;
790	int start;
791	int r;
792
793	switch (ioctl) {
794	case VHOST_VSOCK_SET_GUEST_CID:
795		if (copy_from_user(&guest_cid, argp, sizeof(guest_cid)))
796			return -EFAULT;
797		return vhost_vsock_set_cid(vsock, guest_cid);
798	case VHOST_VSOCK_SET_RUNNING:
799		if (copy_from_user(&start, argp, sizeof(start)))
800			return -EFAULT;
801		if (start)
802			return vhost_vsock_start(vsock);
803		else
804			return vhost_vsock_stop(vsock);
805	case VHOST_GET_FEATURES:
806		features = VHOST_VSOCK_FEATURES;
807		if (copy_to_user(argp, &features, sizeof(features)))
808			return -EFAULT;
809		return 0;
810	case VHOST_SET_FEATURES:
811		if (copy_from_user(&features, argp, sizeof(features)))
812			return -EFAULT;
813		return vhost_vsock_set_features(vsock, features);
 
 
 
 
 
 
 
 
 
 
 
 
814	default:
815		mutex_lock(&vsock->dev.mutex);
816		r = vhost_dev_ioctl(&vsock->dev, ioctl, argp);
817		if (r == -ENOIOCTLCMD)
818			r = vhost_vring_ioctl(&vsock->dev, ioctl, argp);
819		else
820			vhost_vsock_flush(vsock);
821		mutex_unlock(&vsock->dev.mutex);
822		return r;
823	}
824}
825
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
826static const struct file_operations vhost_vsock_fops = {
827	.owner          = THIS_MODULE,
828	.open           = vhost_vsock_dev_open,
829	.release        = vhost_vsock_dev_release,
830	.llseek		= noop_llseek,
831	.unlocked_ioctl = vhost_vsock_dev_ioctl,
832	.compat_ioctl   = compat_ptr_ioctl,
 
 
 
833};
834
835static struct miscdevice vhost_vsock_misc = {
836	.minor = VHOST_VSOCK_MINOR,
837	.name = "vhost-vsock",
838	.fops = &vhost_vsock_fops,
839};
840
841static int __init vhost_vsock_init(void)
842{
843	int ret;
844
845	ret = vsock_core_register(&vhost_transport.transport,
846				  VSOCK_TRANSPORT_F_H2G);
847	if (ret < 0)
848		return ret;
849	return misc_register(&vhost_vsock_misc);
 
 
 
 
 
 
 
850};
851
852static void __exit vhost_vsock_exit(void)
853{
854	misc_deregister(&vhost_vsock_misc);
855	vsock_core_unregister(&vhost_transport.transport);
856};
857
858module_init(vhost_vsock_init);
859module_exit(vhost_vsock_exit);
860MODULE_LICENSE("GPL v2");
861MODULE_AUTHOR("Asias He");
862MODULE_DESCRIPTION("vhost transport for vsock ");
863MODULE_ALIAS_MISCDEV(VHOST_VSOCK_MINOR);
864MODULE_ALIAS("devname:vhost-vsock");