vhost: postpone device creation until rings are mapped
[dpdk.git] / lib / librte_vhost / vhost.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <linux/vhost.h>
35 #include <linux/virtio_net.h>
36 #include <stddef.h>
37 #include <stdint.h>
38 #include <stdlib.h>
39 #ifdef RTE_LIBRTE_VHOST_NUMA
40 #include <numaif.h>
41 #endif
42
43 #include <rte_errno.h>
44 #include <rte_ethdev.h>
45 #include <rte_log.h>
46 #include <rte_string_fns.h>
47 #include <rte_memory.h>
48 #include <rte_malloc.h>
49 #include <rte_vhost.h>
50 #include <rte_rwlock.h>
51
52 #include "iotlb.h"
53 #include "vhost.h"
54 #include "vhost_user.h"
55
56 struct virtio_net *vhost_devices[MAX_VHOST_DEVICE];
57
58 uint64_t
59 __vhost_iova_to_vva(struct virtio_net *dev, struct vhost_virtqueue *vq,
60                     uint64_t iova, uint64_t size, uint8_t perm)
61 {
62         uint64_t vva, tmp_size;
63
64         if (unlikely(!size))
65                 return 0;
66
67         tmp_size = size;
68
69         vva = vhost_user_iotlb_cache_find(vq, iova, &tmp_size, perm);
70         if (tmp_size == size)
71                 return vva;
72
73         if (!vhost_user_iotlb_pending_miss(vq, iova + tmp_size, perm)) {
74                 vhost_user_iotlb_pending_insert(vq, iova + tmp_size, perm);
75                 vhost_user_iotlb_miss(dev, iova + tmp_size, perm);
76         }
77
78         return 0;
79 }
80
81 struct virtio_net *
82 get_device(int vid)
83 {
84         struct virtio_net *dev = vhost_devices[vid];
85
86         if (unlikely(!dev)) {
87                 RTE_LOG(ERR, VHOST_CONFIG,
88                         "(%d) device not found.\n", vid);
89         }
90
91         return dev;
92 }
93
94 static void
95 cleanup_vq(struct vhost_virtqueue *vq, int destroy)
96 {
97         if ((vq->callfd >= 0) && (destroy != 0))
98                 close(vq->callfd);
99         if (vq->kickfd >= 0)
100                 close(vq->kickfd);
101 }
102
103 /*
104  * Unmap any memory, close any file descriptors and
105  * free any memory owned by a device.
106  */
107 void
108 cleanup_device(struct virtio_net *dev, int destroy)
109 {
110         uint32_t i;
111
112         vhost_backend_cleanup(dev);
113
114         for (i = 0; i < dev->nr_vring; i++)
115                 cleanup_vq(dev->virtqueue[i], destroy);
116 }
117
118 /*
119  * Release virtqueues and device memory.
120  */
121 static void
122 free_device(struct virtio_net *dev)
123 {
124         uint32_t i;
125         struct vhost_virtqueue *vq;
126
127         for (i = 0; i < dev->nr_vring; i++) {
128                 vq = dev->virtqueue[i];
129
130                 rte_free(vq->shadow_used_ring);
131                 rte_free(vq->batch_copy_elems);
132                 rte_mempool_free(vq->iotlb_pool);
133                 rte_free(vq);
134         }
135
136         rte_free(dev);
137 }
138
139 int
140 vring_translate(struct virtio_net *dev, struct vhost_virtqueue *vq)
141 {
142         uint64_t size;
143
144         if (!(dev->features & (1ULL << VIRTIO_F_IOMMU_PLATFORM)))
145                 goto out;
146
147         size = sizeof(struct vring_desc) * vq->size;
148         vq->desc = (struct vring_desc *)(uintptr_t)vhost_iova_to_vva(dev, vq,
149                                                 vq->ring_addrs.desc_user_addr,
150                                                 size, VHOST_ACCESS_RW);
151         if (!vq->desc)
152                 return -1;
153
154         size = sizeof(struct vring_avail);
155         size += sizeof(uint16_t) * vq->size;
156         vq->avail = (struct vring_avail *)(uintptr_t)vhost_iova_to_vva(dev, vq,
157                                                 vq->ring_addrs.avail_user_addr,
158                                                 size, VHOST_ACCESS_RW);
159         if (!vq->avail)
160                 return -1;
161
162         size = sizeof(struct vring_used);
163         size += sizeof(struct vring_used_elem) * vq->size;
164         vq->used = (struct vring_used *)(uintptr_t)vhost_iova_to_vva(dev, vq,
165                                                 vq->ring_addrs.used_user_addr,
166                                                 size, VHOST_ACCESS_RW);
167         if (!vq->used)
168                 return -1;
169
170 out:
171         vq->access_ok = 1;
172
173         return 0;
174 }
175
176 static void
177 init_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
178 {
179         struct vhost_virtqueue *vq;
180
181         if (vring_idx >= VHOST_MAX_VRING) {
182                 RTE_LOG(ERR, VHOST_CONFIG,
183                                 "Failed not init vring, out of bound (%d)\n",
184                                 vring_idx);
185                 return;
186         }
187
188         vq = dev->virtqueue[vring_idx];
189
190         memset(vq, 0, sizeof(struct vhost_virtqueue));
191
192         vq->kickfd = VIRTIO_UNINITIALIZED_EVENTFD;
193         vq->callfd = VIRTIO_UNINITIALIZED_EVENTFD;
194
195         vhost_user_iotlb_init(dev, vring_idx);
196         /* Backends are set to -1 indicating an inactive device. */
197         vq->backend = -1;
198
199         TAILQ_INIT(&vq->zmbuf_list);
200 }
201
202 static void
203 reset_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
204 {
205         struct vhost_virtqueue *vq;
206         int callfd;
207
208         if (vring_idx >= VHOST_MAX_VRING) {
209                 RTE_LOG(ERR, VHOST_CONFIG,
210                                 "Failed not init vring, out of bound (%d)\n",
211                                 vring_idx);
212                 return;
213         }
214
215         vq = dev->virtqueue[vring_idx];
216         callfd = vq->callfd;
217         init_vring_queue(dev, vring_idx);
218         vq->callfd = callfd;
219 }
220
221 int
222 alloc_vring_queue(struct virtio_net *dev, uint32_t vring_idx)
223 {
224         struct vhost_virtqueue *vq;
225
226         vq = rte_malloc(NULL, sizeof(struct vhost_virtqueue), 0);
227         if (vq == NULL) {
228                 RTE_LOG(ERR, VHOST_CONFIG,
229                         "Failed to allocate memory for vring:%u.\n", vring_idx);
230                 return -1;
231         }
232
233         dev->virtqueue[vring_idx] = vq;
234         init_vring_queue(dev, vring_idx);
235
236         dev->nr_vring += 1;
237
238         return 0;
239 }
240
241 /*
242  * Reset some variables in device structure, while keeping few
243  * others untouched, such as vid, ifname, nr_vring: they
244  * should be same unless the device is removed.
245  */
246 void
247 reset_device(struct virtio_net *dev)
248 {
249         uint32_t i;
250
251         dev->features = 0;
252         dev->protocol_features = 0;
253         dev->flags = 0;
254
255         for (i = 0; i < dev->nr_vring; i++)
256                 reset_vring_queue(dev, i);
257 }
258
259 /*
260  * Invoked when there is a new vhost-user connection established (when
261  * there is a new virtio device being attached).
262  */
263 int
264 vhost_new_device(void)
265 {
266         struct virtio_net *dev;
267         int i;
268
269         dev = rte_zmalloc(NULL, sizeof(struct virtio_net), 0);
270         if (dev == NULL) {
271                 RTE_LOG(ERR, VHOST_CONFIG,
272                         "Failed to allocate memory for new dev.\n");
273                 return -1;
274         }
275
276         for (i = 0; i < MAX_VHOST_DEVICE; i++) {
277                 if (vhost_devices[i] == NULL)
278                         break;
279         }
280         if (i == MAX_VHOST_DEVICE) {
281                 RTE_LOG(ERR, VHOST_CONFIG,
282                         "Failed to find a free slot for new device.\n");
283                 rte_free(dev);
284                 return -1;
285         }
286
287         vhost_devices[i] = dev;
288         dev->vid = i;
289         dev->slave_req_fd = -1;
290
291         return i;
292 }
293
294 /*
295  * Invoked when there is the vhost-user connection is broken (when
296  * the virtio device is being detached).
297  */
298 void
299 vhost_destroy_device(int vid)
300 {
301         struct virtio_net *dev = get_device(vid);
302
303         if (dev == NULL)
304                 return;
305
306         if (dev->flags & VIRTIO_DEV_RUNNING) {
307                 dev->flags &= ~VIRTIO_DEV_RUNNING;
308                 dev->notify_ops->destroy_device(vid);
309         }
310
311         cleanup_device(dev, 1);
312         free_device(dev);
313
314         vhost_devices[vid] = NULL;
315 }
316
317 void
318 vhost_set_ifname(int vid, const char *if_name, unsigned int if_len)
319 {
320         struct virtio_net *dev;
321         unsigned int len;
322
323         dev = get_device(vid);
324         if (dev == NULL)
325                 return;
326
327         len = if_len > sizeof(dev->ifname) ?
328                 sizeof(dev->ifname) : if_len;
329
330         strncpy(dev->ifname, if_name, len);
331         dev->ifname[sizeof(dev->ifname) - 1] = '\0';
332 }
333
334 void
335 vhost_enable_dequeue_zero_copy(int vid)
336 {
337         struct virtio_net *dev = get_device(vid);
338
339         if (dev == NULL)
340                 return;
341
342         dev->dequeue_zero_copy = 1;
343 }
344
345 int
346 rte_vhost_get_mtu(int vid, uint16_t *mtu)
347 {
348         struct virtio_net *dev = get_device(vid);
349
350         if (!dev)
351                 return -ENODEV;
352
353         if (!(dev->flags & VIRTIO_DEV_READY))
354                 return -EAGAIN;
355
356         if (!(dev->features & (1ULL << VIRTIO_NET_F_MTU)))
357                 return -ENOTSUP;
358
359         *mtu = dev->mtu;
360
361         return 0;
362 }
363
364 int
365 rte_vhost_get_numa_node(int vid)
366 {
367 #ifdef RTE_LIBRTE_VHOST_NUMA
368         struct virtio_net *dev = get_device(vid);
369         int numa_node;
370         int ret;
371
372         if (dev == NULL)
373                 return -1;
374
375         ret = get_mempolicy(&numa_node, NULL, 0, dev,
376                             MPOL_F_NODE | MPOL_F_ADDR);
377         if (ret < 0) {
378                 RTE_LOG(ERR, VHOST_CONFIG,
379                         "(%d) failed to query numa node: %s\n",
380                         vid, rte_strerror(errno));
381                 return -1;
382         }
383
384         return numa_node;
385 #else
386         RTE_SET_USED(vid);
387         return -1;
388 #endif
389 }
390
391 uint32_t
392 rte_vhost_get_queue_num(int vid)
393 {
394         struct virtio_net *dev = get_device(vid);
395
396         if (dev == NULL)
397                 return 0;
398
399         return dev->nr_vring / 2;
400 }
401
402 uint16_t
403 rte_vhost_get_vring_num(int vid)
404 {
405         struct virtio_net *dev = get_device(vid);
406
407         if (dev == NULL)
408                 return 0;
409
410         return dev->nr_vring;
411 }
412
413 int
414 rte_vhost_get_ifname(int vid, char *buf, size_t len)
415 {
416         struct virtio_net *dev = get_device(vid);
417
418         if (dev == NULL)
419                 return -1;
420
421         len = RTE_MIN(len, sizeof(dev->ifname));
422
423         strncpy(buf, dev->ifname, len);
424         buf[len - 1] = '\0';
425
426         return 0;
427 }
428
429 int
430 rte_vhost_get_negotiated_features(int vid, uint64_t *features)
431 {
432         struct virtio_net *dev;
433
434         dev = get_device(vid);
435         if (!dev)
436                 return -1;
437
438         *features = dev->features;
439         return 0;
440 }
441
442 int
443 rte_vhost_get_mem_table(int vid, struct rte_vhost_memory **mem)
444 {
445         struct virtio_net *dev;
446         struct rte_vhost_memory *m;
447         size_t size;
448
449         dev = get_device(vid);
450         if (!dev)
451                 return -1;
452
453         size = dev->mem->nregions * sizeof(struct rte_vhost_mem_region);
454         m = malloc(sizeof(struct rte_vhost_memory) + size);
455         if (!m)
456                 return -1;
457
458         m->nregions = dev->mem->nregions;
459         memcpy(m->regions, dev->mem->regions, size);
460         *mem = m;
461
462         return 0;
463 }
464
465 int
466 rte_vhost_get_vhost_vring(int vid, uint16_t vring_idx,
467                           struct rte_vhost_vring *vring)
468 {
469         struct virtio_net *dev;
470         struct vhost_virtqueue *vq;
471
472         dev = get_device(vid);
473         if (!dev)
474                 return -1;
475
476         if (vring_idx >= VHOST_MAX_VRING)
477                 return -1;
478
479         vq = dev->virtqueue[vring_idx];
480         if (!vq)
481                 return -1;
482
483         vring->desc  = vq->desc;
484         vring->avail = vq->avail;
485         vring->used  = vq->used;
486         vring->log_guest_addr  = vq->log_guest_addr;
487
488         vring->callfd  = vq->callfd;
489         vring->kickfd  = vq->kickfd;
490         vring->size    = vq->size;
491
492         return 0;
493 }
494
495 uint16_t
496 rte_vhost_avail_entries(int vid, uint16_t queue_id)
497 {
498         struct virtio_net *dev;
499         struct vhost_virtqueue *vq;
500
501         dev = get_device(vid);
502         if (!dev)
503                 return 0;
504
505         vq = dev->virtqueue[queue_id];
506         if (!vq->enabled)
507                 return 0;
508
509         return *(volatile uint16_t *)&vq->avail->idx - vq->last_used_idx;
510 }
511
512 int
513 rte_vhost_enable_guest_notification(int vid, uint16_t queue_id, int enable)
514 {
515         struct virtio_net *dev = get_device(vid);
516
517         if (dev == NULL)
518                 return -1;
519
520         if (enable) {
521                 RTE_LOG(ERR, VHOST_CONFIG,
522                         "guest notification isn't supported.\n");
523                 return -1;
524         }
525
526         dev->virtqueue[queue_id]->used->flags = VRING_USED_F_NO_NOTIFY;
527         return 0;
528 }
529
530 void
531 rte_vhost_log_write(int vid, uint64_t addr, uint64_t len)
532 {
533         struct virtio_net *dev = get_device(vid);
534
535         if (dev == NULL)
536                 return;
537
538         vhost_log_write(dev, addr, len);
539 }
540
541 void
542 rte_vhost_log_used_vring(int vid, uint16_t vring_idx,
543                          uint64_t offset, uint64_t len)
544 {
545         struct virtio_net *dev;
546         struct vhost_virtqueue *vq;
547
548         dev = get_device(vid);
549         if (dev == NULL)
550                 return;
551
552         if (vring_idx >= VHOST_MAX_VRING)
553                 return;
554         vq = dev->virtqueue[vring_idx];
555         if (!vq)
556                 return;
557
558         vhost_log_used_vring(dev, vq, offset, len);
559 }
560
561 uint32_t
562 rte_vhost_rx_queue_count(int vid, uint16_t qid)
563 {
564         struct virtio_net *dev;
565         struct vhost_virtqueue *vq;
566
567         dev = get_device(vid);
568         if (dev == NULL)
569                 return 0;
570
571         if (unlikely(qid >= dev->nr_vring || (qid & 1) == 0)) {
572                 RTE_LOG(ERR, VHOST_DATA, "(%d) %s: invalid virtqueue idx %d.\n",
573                         dev->vid, __func__, qid);
574                 return 0;
575         }
576
577         vq = dev->virtqueue[qid];
578         if (vq == NULL)
579                 return 0;
580
581         if (unlikely(vq->enabled == 0 || vq->avail == NULL))
582                 return 0;
583
584         return *((volatile uint16_t *)&vq->avail->idx) - vq->last_avail_idx;
585 }