1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * virtio 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  * Some of the code is take from Gerd Hoffmann <kraxel@redhat.com>'s
10  * early virtio-vsock proof-of-concept bits.
11  */
12 #include <linux/spinlock.h>
13 #include <linux/module.h>
14 #include <linux/list.h>
15 #include <linux/atomic.h>
16 #include <linux/virtio.h>
17 #include <linux/virtio_ids.h>
18 #include <linux/virtio_config.h>
19 #include <linux/virtio_vsock.h>
20 #include <net/sock.h>
21 #include <linux/mutex.h>
22 #include <net/af_vsock.h>
23 
24 static struct workqueue_struct *virtio_vsock_workqueue;
25 static struct virtio_vsock __rcu *the_virtio_vsock;
26 static DEFINE_MUTEX(the_virtio_vsock_mutex); /* protects the_virtio_vsock */
27 static struct virtio_transport virtio_transport; /* forward declaration */
28 
29 struct virtio_vsock {
30 	struct virtio_device *vdev;
31 	struct virtqueue *vqs[VSOCK_VQ_MAX];
32 
33 	/* Virtqueue processing is deferred to a workqueue */
34 	struct work_struct tx_work;
35 	struct work_struct rx_work;
36 	struct work_struct event_work;
37 
38 	/* The following fields are protected by tx_lock.  vqs[VSOCK_VQ_TX]
39 	 * must be accessed with tx_lock held.
40 	 */
41 	struct mutex tx_lock;
42 	bool tx_run;
43 
44 	struct work_struct send_pkt_work;
45 	struct sk_buff_head send_pkt_queue;
46 
47 	atomic_t queued_replies;
48 
49 	/* The following fields are protected by rx_lock.  vqs[VSOCK_VQ_RX]
50 	 * must be accessed with rx_lock held.
51 	 */
52 	struct mutex rx_lock;
53 	bool rx_run;
54 	int rx_buf_nr;
55 	int rx_buf_max_nr;
56 
57 	/* The following fields are protected by event_lock.
58 	 * vqs[VSOCK_VQ_EVENT] must be accessed with event_lock held.
59 	 */
60 	struct mutex event_lock;
61 	bool event_run;
62 	struct virtio_vsock_event event_list[8];
63 
64 	u32 guest_cid;
65 	bool seqpacket_allow;
66 };
67 
virtio_transport_get_local_cid(void)68 static u32 virtio_transport_get_local_cid(void)
69 {
70 	struct virtio_vsock *vsock;
71 	u32 ret;
72 
73 	rcu_read_lock();
74 	vsock = rcu_dereference(the_virtio_vsock);
75 	if (!vsock) {
76 		ret = VMADDR_CID_ANY;
77 		goto out_rcu;
78 	}
79 
80 	ret = vsock->guest_cid;
81 out_rcu:
82 	rcu_read_unlock();
83 	return ret;
84 }
85 
86 static void
virtio_transport_send_pkt_work(struct work_struct * work)87 virtio_transport_send_pkt_work(struct work_struct *work)
88 {
89 	struct virtio_vsock *vsock =
90 		container_of(work, struct virtio_vsock, send_pkt_work);
91 	struct virtqueue *vq;
92 	bool added = false;
93 	bool restart_rx = false;
94 
95 	mutex_lock(&vsock->tx_lock);
96 
97 	if (!vsock->tx_run)
98 		goto out;
99 
100 	vq = vsock->vqs[VSOCK_VQ_TX];
101 
102 	for (;;) {
103 		struct scatterlist hdr, buf, *sgs[2];
104 		int ret, in_sg = 0, out_sg = 0;
105 		struct sk_buff *skb;
106 		bool reply;
107 
108 		skb = virtio_vsock_skb_dequeue(&vsock->send_pkt_queue);
109 		if (!skb)
110 			break;
111 
112 		virtio_transport_deliver_tap_pkt(skb);
113 		reply = virtio_vsock_skb_reply(skb);
114 
115 		sg_init_one(&hdr, virtio_vsock_hdr(skb), sizeof(*virtio_vsock_hdr(skb)));
116 		sgs[out_sg++] = &hdr;
117 		if (skb->len > 0) {
118 			sg_init_one(&buf, skb->data, skb->len);
119 			sgs[out_sg++] = &buf;
120 		}
121 
122 		ret = virtqueue_add_sgs(vq, sgs, out_sg, in_sg, skb, GFP_KERNEL);
123 		/* Usually this means that there is no more space available in
124 		 * the vq
125 		 */
126 		if (ret < 0) {
127 			virtio_vsock_skb_queue_head(&vsock->send_pkt_queue, skb);
128 			break;
129 		}
130 
131 		if (reply) {
132 			struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX];
133 			int val;
134 
135 			val = atomic_dec_return(&vsock->queued_replies);
136 
137 			/* Do we now have resources to resume rx processing? */
138 			if (val + 1 == virtqueue_get_vring_size(rx_vq))
139 				restart_rx = true;
140 		}
141 
142 		added = true;
143 	}
144 
145 	if (added)
146 		virtqueue_kick(vq);
147 
148 out:
149 	mutex_unlock(&vsock->tx_lock);
150 
151 	if (restart_rx)
152 		queue_work(virtio_vsock_workqueue, &vsock->rx_work);
153 }
154 
155 static int
virtio_transport_send_pkt(struct sk_buff * skb)156 virtio_transport_send_pkt(struct sk_buff *skb)
157 {
158 	struct virtio_vsock_hdr *hdr;
159 	struct virtio_vsock *vsock;
160 	int len = skb->len;
161 
162 	hdr = virtio_vsock_hdr(skb);
163 
164 	rcu_read_lock();
165 	vsock = rcu_dereference(the_virtio_vsock);
166 	if (!vsock) {
167 		kfree_skb(skb);
168 		len = -ENODEV;
169 		goto out_rcu;
170 	}
171 
172 	if (le64_to_cpu(hdr->dst_cid) == vsock->guest_cid) {
173 		kfree_skb(skb);
174 		len = -ENODEV;
175 		goto out_rcu;
176 	}
177 
178 	if (virtio_vsock_skb_reply(skb))
179 		atomic_inc(&vsock->queued_replies);
180 
181 	virtio_vsock_skb_queue_tail(&vsock->send_pkt_queue, skb);
182 	queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work);
183 
184 out_rcu:
185 	rcu_read_unlock();
186 	return len;
187 }
188 
189 static int
virtio_transport_cancel_pkt(struct vsock_sock * vsk)190 virtio_transport_cancel_pkt(struct vsock_sock *vsk)
191 {
192 	struct virtio_vsock *vsock;
193 	int cnt = 0, ret;
194 
195 	rcu_read_lock();
196 	vsock = rcu_dereference(the_virtio_vsock);
197 	if (!vsock) {
198 		ret = -ENODEV;
199 		goto out_rcu;
200 	}
201 
202 	cnt = virtio_transport_purge_skbs(vsk, &vsock->send_pkt_queue);
203 
204 	if (cnt) {
205 		struct virtqueue *rx_vq = vsock->vqs[VSOCK_VQ_RX];
206 		int new_cnt;
207 
208 		new_cnt = atomic_sub_return(cnt, &vsock->queued_replies);
209 		if (new_cnt + cnt >= virtqueue_get_vring_size(rx_vq) &&
210 		    new_cnt < virtqueue_get_vring_size(rx_vq))
211 			queue_work(virtio_vsock_workqueue, &vsock->rx_work);
212 	}
213 
214 	ret = 0;
215 
216 out_rcu:
217 	rcu_read_unlock();
218 	return ret;
219 }
220 
virtio_vsock_rx_fill(struct virtio_vsock * vsock)221 static void virtio_vsock_rx_fill(struct virtio_vsock *vsock)
222 {
223 	int total_len = VIRTIO_VSOCK_DEFAULT_RX_BUF_SIZE + VIRTIO_VSOCK_SKB_HEADROOM;
224 	struct scatterlist pkt, *p;
225 	struct virtqueue *vq;
226 	struct sk_buff *skb;
227 	int ret;
228 
229 	vq = vsock->vqs[VSOCK_VQ_RX];
230 
231 	do {
232 		skb = virtio_vsock_alloc_skb(total_len, GFP_KERNEL);
233 		if (!skb)
234 			break;
235 
236 		memset(skb->head, 0, VIRTIO_VSOCK_SKB_HEADROOM);
237 		sg_init_one(&pkt, virtio_vsock_hdr(skb), total_len);
238 		p = &pkt;
239 		ret = virtqueue_add_sgs(vq, &p, 0, 1, skb, GFP_KERNEL);
240 		if (ret < 0) {
241 			kfree_skb(skb);
242 			break;
243 		}
244 
245 		vsock->rx_buf_nr++;
246 	} while (vq->num_free);
247 	if (vsock->rx_buf_nr > vsock->rx_buf_max_nr)
248 		vsock->rx_buf_max_nr = vsock->rx_buf_nr;
249 	virtqueue_kick(vq);
250 }
251 
virtio_transport_tx_work(struct work_struct * work)252 static void virtio_transport_tx_work(struct work_struct *work)
253 {
254 	struct virtio_vsock *vsock =
255 		container_of(work, struct virtio_vsock, tx_work);
256 	struct virtqueue *vq;
257 	bool added = false;
258 
259 	vq = vsock->vqs[VSOCK_VQ_TX];
260 	mutex_lock(&vsock->tx_lock);
261 
262 	if (!vsock->tx_run)
263 		goto out;
264 
265 	do {
266 		struct sk_buff *skb;
267 		unsigned int len;
268 
269 		virtqueue_disable_cb(vq);
270 		while ((skb = virtqueue_get_buf(vq, &len)) != NULL) {
271 			consume_skb(skb);
272 			added = true;
273 		}
274 	} while (!virtqueue_enable_cb(vq));
275 
276 out:
277 	mutex_unlock(&vsock->tx_lock);
278 
279 	if (added)
280 		queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work);
281 }
282 
283 /* Is there space left for replies to rx packets? */
virtio_transport_more_replies(struct virtio_vsock * vsock)284 static bool virtio_transport_more_replies(struct virtio_vsock *vsock)
285 {
286 	struct virtqueue *vq = vsock->vqs[VSOCK_VQ_RX];
287 	int val;
288 
289 	smp_rmb(); /* paired with atomic_inc() and atomic_dec_return() */
290 	val = atomic_read(&vsock->queued_replies);
291 
292 	return val < virtqueue_get_vring_size(vq);
293 }
294 
295 /* event_lock must be held */
virtio_vsock_event_fill_one(struct virtio_vsock * vsock,struct virtio_vsock_event * event)296 static int virtio_vsock_event_fill_one(struct virtio_vsock *vsock,
297 				       struct virtio_vsock_event *event)
298 {
299 	struct scatterlist sg;
300 	struct virtqueue *vq;
301 
302 	vq = vsock->vqs[VSOCK_VQ_EVENT];
303 
304 	sg_init_one(&sg, event, sizeof(*event));
305 
306 	return virtqueue_add_inbuf(vq, &sg, 1, event, GFP_KERNEL);
307 }
308 
309 /* event_lock must be held */
virtio_vsock_event_fill(struct virtio_vsock * vsock)310 static void virtio_vsock_event_fill(struct virtio_vsock *vsock)
311 {
312 	size_t i;
313 
314 	for (i = 0; i < ARRAY_SIZE(vsock->event_list); i++) {
315 		struct virtio_vsock_event *event = &vsock->event_list[i];
316 
317 		virtio_vsock_event_fill_one(vsock, event);
318 	}
319 
320 	virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]);
321 }
322 
virtio_vsock_reset_sock(struct sock * sk)323 static void virtio_vsock_reset_sock(struct sock *sk)
324 {
325 	/* vmci_transport.c doesn't take sk_lock here either.  At least we're
326 	 * under vsock_table_lock so the sock cannot disappear while we're
327 	 * executing.
328 	 */
329 
330 	sk->sk_state = TCP_CLOSE;
331 	sk->sk_err = ECONNRESET;
332 	sk_error_report(sk);
333 }
334 
virtio_vsock_update_guest_cid(struct virtio_vsock * vsock)335 static void virtio_vsock_update_guest_cid(struct virtio_vsock *vsock)
336 {
337 	struct virtio_device *vdev = vsock->vdev;
338 	__le64 guest_cid;
339 
340 	vdev->config->get(vdev, offsetof(struct virtio_vsock_config, guest_cid),
341 			  &guest_cid, sizeof(guest_cid));
342 	vsock->guest_cid = le64_to_cpu(guest_cid);
343 }
344 
345 /* event_lock must be held */
virtio_vsock_event_handle(struct virtio_vsock * vsock,struct virtio_vsock_event * event)346 static void virtio_vsock_event_handle(struct virtio_vsock *vsock,
347 				      struct virtio_vsock_event *event)
348 {
349 	switch (le32_to_cpu(event->id)) {
350 	case VIRTIO_VSOCK_EVENT_TRANSPORT_RESET:
351 		virtio_vsock_update_guest_cid(vsock);
352 		vsock_for_each_connected_socket(&virtio_transport.transport,
353 						virtio_vsock_reset_sock);
354 		break;
355 	}
356 }
357 
virtio_transport_event_work(struct work_struct * work)358 static void virtio_transport_event_work(struct work_struct *work)
359 {
360 	struct virtio_vsock *vsock =
361 		container_of(work, struct virtio_vsock, event_work);
362 	struct virtqueue *vq;
363 
364 	vq = vsock->vqs[VSOCK_VQ_EVENT];
365 
366 	mutex_lock(&vsock->event_lock);
367 
368 	if (!vsock->event_run)
369 		goto out;
370 
371 	do {
372 		struct virtio_vsock_event *event;
373 		unsigned int len;
374 
375 		virtqueue_disable_cb(vq);
376 		while ((event = virtqueue_get_buf(vq, &len)) != NULL) {
377 			if (len == sizeof(*event))
378 				virtio_vsock_event_handle(vsock, event);
379 
380 			virtio_vsock_event_fill_one(vsock, event);
381 		}
382 	} while (!virtqueue_enable_cb(vq));
383 
384 	virtqueue_kick(vsock->vqs[VSOCK_VQ_EVENT]);
385 out:
386 	mutex_unlock(&vsock->event_lock);
387 }
388 
virtio_vsock_event_done(struct virtqueue * vq)389 static void virtio_vsock_event_done(struct virtqueue *vq)
390 {
391 	struct virtio_vsock *vsock = vq->vdev->priv;
392 
393 	if (!vsock)
394 		return;
395 	queue_work(virtio_vsock_workqueue, &vsock->event_work);
396 }
397 
virtio_vsock_tx_done(struct virtqueue * vq)398 static void virtio_vsock_tx_done(struct virtqueue *vq)
399 {
400 	struct virtio_vsock *vsock = vq->vdev->priv;
401 
402 	if (!vsock)
403 		return;
404 	queue_work(virtio_vsock_workqueue, &vsock->tx_work);
405 }
406 
virtio_vsock_rx_done(struct virtqueue * vq)407 static void virtio_vsock_rx_done(struct virtqueue *vq)
408 {
409 	struct virtio_vsock *vsock = vq->vdev->priv;
410 
411 	if (!vsock)
412 		return;
413 	queue_work(virtio_vsock_workqueue, &vsock->rx_work);
414 }
415 
416 static bool virtio_transport_seqpacket_allow(u32 remote_cid);
417 
418 static struct virtio_transport virtio_transport = {
419 	.transport = {
420 		.module                   = THIS_MODULE,
421 
422 		.get_local_cid            = virtio_transport_get_local_cid,
423 
424 		.init                     = virtio_transport_do_socket_init,
425 		.destruct                 = virtio_transport_destruct,
426 		.release                  = virtio_transport_release,
427 		.connect                  = virtio_transport_connect,
428 		.shutdown                 = virtio_transport_shutdown,
429 		.cancel_pkt               = virtio_transport_cancel_pkt,
430 
431 		.dgram_bind               = virtio_transport_dgram_bind,
432 		.dgram_dequeue            = virtio_transport_dgram_dequeue,
433 		.dgram_enqueue            = virtio_transport_dgram_enqueue,
434 		.dgram_allow              = virtio_transport_dgram_allow,
435 
436 		.stream_dequeue           = virtio_transport_stream_dequeue,
437 		.stream_enqueue           = virtio_transport_stream_enqueue,
438 		.stream_has_data          = virtio_transport_stream_has_data,
439 		.stream_has_space         = virtio_transport_stream_has_space,
440 		.stream_rcvhiwat          = virtio_transport_stream_rcvhiwat,
441 		.stream_is_active         = virtio_transport_stream_is_active,
442 		.stream_allow             = virtio_transport_stream_allow,
443 
444 		.seqpacket_dequeue        = virtio_transport_seqpacket_dequeue,
445 		.seqpacket_enqueue        = virtio_transport_seqpacket_enqueue,
446 		.seqpacket_allow          = virtio_transport_seqpacket_allow,
447 		.seqpacket_has_data       = virtio_transport_seqpacket_has_data,
448 
449 		.notify_poll_in           = virtio_transport_notify_poll_in,
450 		.notify_poll_out          = virtio_transport_notify_poll_out,
451 		.notify_recv_init         = virtio_transport_notify_recv_init,
452 		.notify_recv_pre_block    = virtio_transport_notify_recv_pre_block,
453 		.notify_recv_pre_dequeue  = virtio_transport_notify_recv_pre_dequeue,
454 		.notify_recv_post_dequeue = virtio_transport_notify_recv_post_dequeue,
455 		.notify_send_init         = virtio_transport_notify_send_init,
456 		.notify_send_pre_block    = virtio_transport_notify_send_pre_block,
457 		.notify_send_pre_enqueue  = virtio_transport_notify_send_pre_enqueue,
458 		.notify_send_post_enqueue = virtio_transport_notify_send_post_enqueue,
459 		.notify_buffer_size       = virtio_transport_notify_buffer_size,
460 
461 		.read_skb = virtio_transport_read_skb,
462 	},
463 
464 	.send_pkt = virtio_transport_send_pkt,
465 };
466 
virtio_transport_seqpacket_allow(u32 remote_cid)467 static bool virtio_transport_seqpacket_allow(u32 remote_cid)
468 {
469 	struct virtio_vsock *vsock;
470 	bool seqpacket_allow;
471 
472 	seqpacket_allow = false;
473 	rcu_read_lock();
474 	vsock = rcu_dereference(the_virtio_vsock);
475 	if (vsock)
476 		seqpacket_allow = vsock->seqpacket_allow;
477 	rcu_read_unlock();
478 
479 	return seqpacket_allow;
480 }
481 
virtio_transport_rx_work(struct work_struct * work)482 static void virtio_transport_rx_work(struct work_struct *work)
483 {
484 	struct virtio_vsock *vsock =
485 		container_of(work, struct virtio_vsock, rx_work);
486 	struct virtqueue *vq;
487 
488 	vq = vsock->vqs[VSOCK_VQ_RX];
489 
490 	mutex_lock(&vsock->rx_lock);
491 
492 	if (!vsock->rx_run)
493 		goto out;
494 
495 	do {
496 		virtqueue_disable_cb(vq);
497 		for (;;) {
498 			struct sk_buff *skb;
499 			unsigned int len;
500 
501 			if (!virtio_transport_more_replies(vsock)) {
502 				/* Stop rx until the device processes already
503 				 * pending replies.  Leave rx virtqueue
504 				 * callbacks disabled.
505 				 */
506 				goto out;
507 			}
508 
509 			skb = virtqueue_get_buf(vq, &len);
510 			if (!skb)
511 				break;
512 
513 			vsock->rx_buf_nr--;
514 
515 			/* Drop short/long packets */
516 			if (unlikely(len < sizeof(struct virtio_vsock_hdr) ||
517 				     len > virtio_vsock_skb_len(skb))) {
518 				kfree_skb(skb);
519 				continue;
520 			}
521 
522 			virtio_vsock_skb_rx_put(skb);
523 			virtio_transport_deliver_tap_pkt(skb);
524 			virtio_transport_recv_pkt(&virtio_transport, skb);
525 		}
526 	} while (!virtqueue_enable_cb(vq));
527 
528 out:
529 	if (vsock->rx_buf_nr < vsock->rx_buf_max_nr / 2)
530 		virtio_vsock_rx_fill(vsock);
531 	mutex_unlock(&vsock->rx_lock);
532 }
533 
virtio_vsock_vqs_init(struct virtio_vsock * vsock)534 static int virtio_vsock_vqs_init(struct virtio_vsock *vsock)
535 {
536 	struct virtio_device *vdev = vsock->vdev;
537 	static const char * const names[] = {
538 		"rx",
539 		"tx",
540 		"event",
541 	};
542 	vq_callback_t *callbacks[] = {
543 		virtio_vsock_rx_done,
544 		virtio_vsock_tx_done,
545 		virtio_vsock_event_done,
546 	};
547 	int ret;
548 
549 	ret = virtio_find_vqs(vdev, VSOCK_VQ_MAX, vsock->vqs, callbacks, names,
550 			      NULL);
551 	if (ret < 0)
552 		return ret;
553 
554 	virtio_vsock_update_guest_cid(vsock);
555 
556 	virtio_device_ready(vdev);
557 
558 	return 0;
559 }
560 
virtio_vsock_vqs_start(struct virtio_vsock * vsock)561 static void virtio_vsock_vqs_start(struct virtio_vsock *vsock)
562 {
563 	mutex_lock(&vsock->tx_lock);
564 	vsock->tx_run = true;
565 	mutex_unlock(&vsock->tx_lock);
566 
567 	mutex_lock(&vsock->rx_lock);
568 	virtio_vsock_rx_fill(vsock);
569 	vsock->rx_run = true;
570 	mutex_unlock(&vsock->rx_lock);
571 
572 	mutex_lock(&vsock->event_lock);
573 	virtio_vsock_event_fill(vsock);
574 	vsock->event_run = true;
575 	mutex_unlock(&vsock->event_lock);
576 
577 	/* virtio_transport_send_pkt() can queue packets once
578 	 * the_virtio_vsock is set, but they won't be processed until
579 	 * vsock->tx_run is set to true. We queue vsock->send_pkt_work
580 	 * when initialization finishes to send those packets queued
581 	 * earlier.
582 	 * We don't need to queue the other workers (rx, event) because
583 	 * as long as we don't fill the queues with empty buffers, the
584 	 * host can't send us any notification.
585 	 */
586 	queue_work(virtio_vsock_workqueue, &vsock->send_pkt_work);
587 }
588 
virtio_vsock_vqs_del(struct virtio_vsock * vsock)589 static void virtio_vsock_vqs_del(struct virtio_vsock *vsock)
590 {
591 	struct virtio_device *vdev = vsock->vdev;
592 	struct sk_buff *skb;
593 
594 	/* Reset all connected sockets when the VQs disappear */
595 	vsock_for_each_connected_socket(&virtio_transport.transport,
596 					virtio_vsock_reset_sock);
597 
598 	/* Stop all work handlers to make sure no one is accessing the device,
599 	 * so we can safely call virtio_reset_device().
600 	 */
601 	mutex_lock(&vsock->rx_lock);
602 	vsock->rx_run = false;
603 	mutex_unlock(&vsock->rx_lock);
604 
605 	mutex_lock(&vsock->tx_lock);
606 	vsock->tx_run = false;
607 	mutex_unlock(&vsock->tx_lock);
608 
609 	mutex_lock(&vsock->event_lock);
610 	vsock->event_run = false;
611 	mutex_unlock(&vsock->event_lock);
612 
613 	/* Flush all device writes and interrupts, device will not use any
614 	 * more buffers.
615 	 */
616 	virtio_reset_device(vdev);
617 
618 	mutex_lock(&vsock->rx_lock);
619 	while ((skb = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_RX])))
620 		kfree_skb(skb);
621 	mutex_unlock(&vsock->rx_lock);
622 
623 	mutex_lock(&vsock->tx_lock);
624 	while ((skb = virtqueue_detach_unused_buf(vsock->vqs[VSOCK_VQ_TX])))
625 		kfree_skb(skb);
626 	mutex_unlock(&vsock->tx_lock);
627 
628 	virtio_vsock_skb_queue_purge(&vsock->send_pkt_queue);
629 
630 	/* Delete virtqueues and flush outstanding callbacks if any */
631 	vdev->config->del_vqs(vdev);
632 }
633 
virtio_vsock_probe(struct virtio_device * vdev)634 static int virtio_vsock_probe(struct virtio_device *vdev)
635 {
636 	struct virtio_vsock *vsock = NULL;
637 	int ret;
638 
639 	ret = mutex_lock_interruptible(&the_virtio_vsock_mutex);
640 	if (ret)
641 		return ret;
642 
643 	/* Only one virtio-vsock device per guest is supported */
644 	if (rcu_dereference_protected(the_virtio_vsock,
645 				lockdep_is_held(&the_virtio_vsock_mutex))) {
646 		ret = -EBUSY;
647 		goto out;
648 	}
649 
650 	vsock = kzalloc(sizeof(*vsock), GFP_KERNEL);
651 	if (!vsock) {
652 		ret = -ENOMEM;
653 		goto out;
654 	}
655 
656 	vsock->vdev = vdev;
657 
658 	vsock->rx_buf_nr = 0;
659 	vsock->rx_buf_max_nr = 0;
660 	atomic_set(&vsock->queued_replies, 0);
661 
662 	mutex_init(&vsock->tx_lock);
663 	mutex_init(&vsock->rx_lock);
664 	mutex_init(&vsock->event_lock);
665 	skb_queue_head_init(&vsock->send_pkt_queue);
666 	INIT_WORK(&vsock->rx_work, virtio_transport_rx_work);
667 	INIT_WORK(&vsock->tx_work, virtio_transport_tx_work);
668 	INIT_WORK(&vsock->event_work, virtio_transport_event_work);
669 	INIT_WORK(&vsock->send_pkt_work, virtio_transport_send_pkt_work);
670 
671 	if (virtio_has_feature(vdev, VIRTIO_VSOCK_F_SEQPACKET))
672 		vsock->seqpacket_allow = true;
673 
674 	vdev->priv = vsock;
675 
676 	ret = virtio_vsock_vqs_init(vsock);
677 	if (ret < 0)
678 		goto out;
679 
680 	rcu_assign_pointer(the_virtio_vsock, vsock);
681 	virtio_vsock_vqs_start(vsock);
682 
683 	mutex_unlock(&the_virtio_vsock_mutex);
684 
685 	return 0;
686 
687 out:
688 	kfree(vsock);
689 	mutex_unlock(&the_virtio_vsock_mutex);
690 	return ret;
691 }
692 
virtio_vsock_remove(struct virtio_device * vdev)693 static void virtio_vsock_remove(struct virtio_device *vdev)
694 {
695 	struct virtio_vsock *vsock = vdev->priv;
696 
697 	mutex_lock(&the_virtio_vsock_mutex);
698 
699 	vdev->priv = NULL;
700 	rcu_assign_pointer(the_virtio_vsock, NULL);
701 	synchronize_rcu();
702 
703 	virtio_vsock_vqs_del(vsock);
704 
705 	/* Other works can be queued before 'config->del_vqs()', so we flush
706 	 * all works before to free the vsock object to avoid use after free.
707 	 */
708 	flush_work(&vsock->rx_work);
709 	flush_work(&vsock->tx_work);
710 	flush_work(&vsock->event_work);
711 	flush_work(&vsock->send_pkt_work);
712 
713 	mutex_unlock(&the_virtio_vsock_mutex);
714 
715 	kfree(vsock);
716 }
717 
718 #ifdef CONFIG_PM_SLEEP
virtio_vsock_freeze(struct virtio_device * vdev)719 static int virtio_vsock_freeze(struct virtio_device *vdev)
720 {
721 	struct virtio_vsock *vsock = vdev->priv;
722 
723 	mutex_lock(&the_virtio_vsock_mutex);
724 
725 	rcu_assign_pointer(the_virtio_vsock, NULL);
726 	synchronize_rcu();
727 
728 	virtio_vsock_vqs_del(vsock);
729 
730 	mutex_unlock(&the_virtio_vsock_mutex);
731 
732 	return 0;
733 }
734 
virtio_vsock_restore(struct virtio_device * vdev)735 static int virtio_vsock_restore(struct virtio_device *vdev)
736 {
737 	struct virtio_vsock *vsock = vdev->priv;
738 	int ret;
739 
740 	mutex_lock(&the_virtio_vsock_mutex);
741 
742 	/* Only one virtio-vsock device per guest is supported */
743 	if (rcu_dereference_protected(the_virtio_vsock,
744 				lockdep_is_held(&the_virtio_vsock_mutex))) {
745 		ret = -EBUSY;
746 		goto out;
747 	}
748 
749 	ret = virtio_vsock_vqs_init(vsock);
750 	if (ret < 0)
751 		goto out;
752 
753 	rcu_assign_pointer(the_virtio_vsock, vsock);
754 	virtio_vsock_vqs_start(vsock);
755 
756 out:
757 	mutex_unlock(&the_virtio_vsock_mutex);
758 	return ret;
759 }
760 #endif /* CONFIG_PM_SLEEP */
761 
762 static struct virtio_device_id id_table[] = {
763 	{ VIRTIO_ID_VSOCK, VIRTIO_DEV_ANY_ID },
764 	{ 0 },
765 };
766 
767 static unsigned int features[] = {
768 	VIRTIO_VSOCK_F_SEQPACKET
769 };
770 
771 static struct virtio_driver virtio_vsock_driver = {
772 	.feature_table = features,
773 	.feature_table_size = ARRAY_SIZE(features),
774 	.driver.name = KBUILD_MODNAME,
775 	.driver.owner = THIS_MODULE,
776 	.id_table = id_table,
777 	.probe = virtio_vsock_probe,
778 	.remove = virtio_vsock_remove,
779 #ifdef CONFIG_PM_SLEEP
780 	.freeze = virtio_vsock_freeze,
781 	.restore = virtio_vsock_restore,
782 #endif
783 };
784 
virtio_vsock_init(void)785 static int __init virtio_vsock_init(void)
786 {
787 	int ret;
788 
789 	virtio_vsock_workqueue = alloc_workqueue("virtio_vsock", 0, 0);
790 	if (!virtio_vsock_workqueue)
791 		return -ENOMEM;
792 
793 	ret = vsock_core_register(&virtio_transport.transport,
794 				  VSOCK_TRANSPORT_F_G2H);
795 	if (ret)
796 		goto out_wq;
797 
798 	ret = register_virtio_driver(&virtio_vsock_driver);
799 	if (ret)
800 		goto out_vci;
801 
802 	return 0;
803 
804 out_vci:
805 	vsock_core_unregister(&virtio_transport.transport);
806 out_wq:
807 	destroy_workqueue(virtio_vsock_workqueue);
808 	return ret;
809 }
810 
virtio_vsock_exit(void)811 static void __exit virtio_vsock_exit(void)
812 {
813 	unregister_virtio_driver(&virtio_vsock_driver);
814 	vsock_core_unregister(&virtio_transport.transport);
815 	destroy_workqueue(virtio_vsock_workqueue);
816 }
817 
818 module_init(virtio_vsock_init);
819 module_exit(virtio_vsock_exit);
820 MODULE_LICENSE("GPL v2");
821 MODULE_AUTHOR("Asias He");
822 MODULE_DESCRIPTION("virtio transport for vsock");
823 MODULE_DEVICE_TABLE(virtio, id_table);
824