xref: /openbmc/qemu/hw/vfio/iommufd.c (revision 2f7243cb)
1 /*
2  * iommufd container backend
3  *
4  * Copyright (C) 2023 Intel Corporation.
5  * Copyright Red Hat, Inc. 2023
6  *
7  * Authors: Yi Liu <yi.l.liu@intel.com>
8  *          Eric Auger <eric.auger@redhat.com>
9  *
10  * SPDX-License-Identifier: GPL-2.0-or-later
11  */
12 
13 #include "qemu/osdep.h"
14 #include <sys/ioctl.h>
15 #include <linux/vfio.h>
16 #include <linux/iommufd.h>
17 
18 #include "hw/vfio/vfio-common.h"
19 #include "qemu/error-report.h"
20 #include "trace.h"
21 #include "qapi/error.h"
22 #include "sysemu/iommufd.h"
23 #include "hw/qdev-core.h"
24 #include "sysemu/reset.h"
25 #include "qemu/cutils.h"
26 #include "qemu/chardev_open.h"
27 #include "pci.h"
28 
29 static int iommufd_cdev_map(const VFIOContainerBase *bcontainer, hwaddr iova,
30                             ram_addr_t size, void *vaddr, bool readonly)
31 {
32     const VFIOIOMMUFDContainer *container =
33         container_of(bcontainer, VFIOIOMMUFDContainer, bcontainer);
34 
35     return iommufd_backend_map_dma(container->be,
36                                    container->ioas_id,
37                                    iova, size, vaddr, readonly);
38 }
39 
40 static int iommufd_cdev_unmap(const VFIOContainerBase *bcontainer,
41                               hwaddr iova, ram_addr_t size,
42                               IOMMUTLBEntry *iotlb)
43 {
44     const VFIOIOMMUFDContainer *container =
45         container_of(bcontainer, VFIOIOMMUFDContainer, bcontainer);
46 
47     /* TODO: Handle dma_unmap_bitmap with iotlb args (migration) */
48     return iommufd_backend_unmap_dma(container->be,
49                                      container->ioas_id, iova, size);
50 }
51 
52 static bool iommufd_cdev_kvm_device_add(VFIODevice *vbasedev, Error **errp)
53 {
54     return !vfio_kvm_device_add_fd(vbasedev->fd, errp);
55 }
56 
57 static void iommufd_cdev_kvm_device_del(VFIODevice *vbasedev)
58 {
59     Error *err = NULL;
60 
61     if (vfio_kvm_device_del_fd(vbasedev->fd, &err)) {
62         error_report_err(err);
63     }
64 }
65 
66 static bool iommufd_cdev_connect_and_bind(VFIODevice *vbasedev, Error **errp)
67 {
68     IOMMUFDBackend *iommufd = vbasedev->iommufd;
69     struct vfio_device_bind_iommufd bind = {
70         .argsz = sizeof(bind),
71         .flags = 0,
72     };
73 
74     if (!iommufd_backend_connect(iommufd, errp)) {
75         return false;
76     }
77 
78     /*
79      * Add device to kvm-vfio to be prepared for the tracking
80      * in KVM. Especially for some emulated devices, it requires
81      * to have kvm information in the device open.
82      */
83     if (!iommufd_cdev_kvm_device_add(vbasedev, errp)) {
84         goto err_kvm_device_add;
85     }
86 
87     /* Bind device to iommufd */
88     bind.iommufd = iommufd->fd;
89     if (ioctl(vbasedev->fd, VFIO_DEVICE_BIND_IOMMUFD, &bind)) {
90         error_setg_errno(errp, errno, "error bind device fd=%d to iommufd=%d",
91                          vbasedev->fd, bind.iommufd);
92         goto err_bind;
93     }
94 
95     vbasedev->devid = bind.out_devid;
96     trace_iommufd_cdev_connect_and_bind(bind.iommufd, vbasedev->name,
97                                         vbasedev->fd, vbasedev->devid);
98     return true;
99 err_bind:
100     iommufd_cdev_kvm_device_del(vbasedev);
101 err_kvm_device_add:
102     iommufd_backend_disconnect(iommufd);
103     return false;
104 }
105 
106 static void iommufd_cdev_unbind_and_disconnect(VFIODevice *vbasedev)
107 {
108     /* Unbind is automatically conducted when device fd is closed */
109     iommufd_cdev_kvm_device_del(vbasedev);
110     iommufd_backend_disconnect(vbasedev->iommufd);
111 }
112 
113 static int iommufd_cdev_getfd(const char *sysfs_path, Error **errp)
114 {
115     ERRP_GUARD();
116     long int ret = -ENOTTY;
117     g_autofree char *path = NULL;
118     g_autofree char *vfio_dev_path = NULL;
119     g_autofree char *vfio_path = NULL;
120     DIR *dir = NULL;
121     struct dirent *dent;
122     g_autofree gchar *contents = NULL;
123     gsize length;
124     int major, minor;
125     dev_t vfio_devt;
126 
127     path = g_strdup_printf("%s/vfio-dev", sysfs_path);
128     dir = opendir(path);
129     if (!dir) {
130         error_setg_errno(errp, errno, "couldn't open directory %s", path);
131         goto out;
132     }
133 
134     while ((dent = readdir(dir))) {
135         if (!strncmp(dent->d_name, "vfio", 4)) {
136             vfio_dev_path = g_strdup_printf("%s/%s/dev", path, dent->d_name);
137             break;
138         }
139     }
140 
141     if (!vfio_dev_path) {
142         error_setg(errp, "failed to find vfio-dev/vfioX/dev");
143         goto out_close_dir;
144     }
145 
146     if (!g_file_get_contents(vfio_dev_path, &contents, &length, NULL)) {
147         error_setg(errp, "failed to load \"%s\"", vfio_dev_path);
148         goto out_close_dir;
149     }
150 
151     if (sscanf(contents, "%d:%d", &major, &minor) != 2) {
152         error_setg(errp, "failed to get major:minor for \"%s\"", vfio_dev_path);
153         goto out_close_dir;
154     }
155     vfio_devt = makedev(major, minor);
156 
157     vfio_path = g_strdup_printf("/dev/vfio/devices/%s", dent->d_name);
158     ret = open_cdev(vfio_path, vfio_devt);
159     if (ret < 0) {
160         error_setg(errp, "Failed to open %s", vfio_path);
161     }
162 
163     trace_iommufd_cdev_getfd(vfio_path, ret);
164 
165 out_close_dir:
166     closedir(dir);
167 out:
168     if (*errp) {
169         error_prepend(errp, VFIO_MSG_PREFIX, path);
170     }
171 
172     return ret;
173 }
174 
175 static bool iommufd_cdev_attach_ioas_hwpt(VFIODevice *vbasedev, uint32_t id,
176                                          Error **errp)
177 {
178     int iommufd = vbasedev->iommufd->fd;
179     struct vfio_device_attach_iommufd_pt attach_data = {
180         .argsz = sizeof(attach_data),
181         .flags = 0,
182         .pt_id = id,
183     };
184 
185     /* Attach device to an IOAS or hwpt within iommufd */
186     if (ioctl(vbasedev->fd, VFIO_DEVICE_ATTACH_IOMMUFD_PT, &attach_data)) {
187         error_setg_errno(errp, errno,
188                          "[iommufd=%d] error attach %s (%d) to id=%d",
189                          iommufd, vbasedev->name, vbasedev->fd, id);
190         return false;
191     }
192 
193     trace_iommufd_cdev_attach_ioas_hwpt(iommufd, vbasedev->name,
194                                         vbasedev->fd, id);
195     return true;
196 }
197 
198 static bool iommufd_cdev_detach_ioas_hwpt(VFIODevice *vbasedev, Error **errp)
199 {
200     int iommufd = vbasedev->iommufd->fd;
201     struct vfio_device_detach_iommufd_pt detach_data = {
202         .argsz = sizeof(detach_data),
203         .flags = 0,
204     };
205 
206     if (ioctl(vbasedev->fd, VFIO_DEVICE_DETACH_IOMMUFD_PT, &detach_data)) {
207         error_setg_errno(errp, errno, "detach %s failed", vbasedev->name);
208         return false;
209     }
210 
211     trace_iommufd_cdev_detach_ioas_hwpt(iommufd, vbasedev->name);
212     return true;
213 }
214 
215 static bool iommufd_cdev_attach_container(VFIODevice *vbasedev,
216                                           VFIOIOMMUFDContainer *container,
217                                           Error **errp)
218 {
219     return iommufd_cdev_attach_ioas_hwpt(vbasedev, container->ioas_id, errp);
220 }
221 
222 static void iommufd_cdev_detach_container(VFIODevice *vbasedev,
223                                           VFIOIOMMUFDContainer *container)
224 {
225     Error *err = NULL;
226 
227     if (!iommufd_cdev_detach_ioas_hwpt(vbasedev, &err)) {
228         error_report_err(err);
229     }
230 }
231 
232 static void iommufd_cdev_container_destroy(VFIOIOMMUFDContainer *container)
233 {
234     VFIOContainerBase *bcontainer = &container->bcontainer;
235 
236     if (!QLIST_EMPTY(&bcontainer->device_list)) {
237         return;
238     }
239     memory_listener_unregister(&bcontainer->listener);
240     vfio_container_destroy(bcontainer);
241     iommufd_backend_free_id(container->be, container->ioas_id);
242     object_unref(container);
243 }
244 
245 static int iommufd_cdev_ram_block_discard_disable(bool state)
246 {
247     /*
248      * We support coordinated discarding of RAM via the RamDiscardManager.
249      */
250     return ram_block_uncoordinated_discard_disable(state);
251 }
252 
253 static bool iommufd_cdev_get_info_iova_range(VFIOIOMMUFDContainer *container,
254                                              uint32_t ioas_id, Error **errp)
255 {
256     VFIOContainerBase *bcontainer = &container->bcontainer;
257     g_autofree struct iommu_ioas_iova_ranges *info = NULL;
258     struct iommu_iova_range *iova_ranges;
259     int sz, fd = container->be->fd;
260 
261     info = g_malloc0(sizeof(*info));
262     info->size = sizeof(*info);
263     info->ioas_id = ioas_id;
264 
265     if (ioctl(fd, IOMMU_IOAS_IOVA_RANGES, info) && errno != EMSGSIZE) {
266         goto error;
267     }
268 
269     sz = info->num_iovas * sizeof(struct iommu_iova_range);
270     info = g_realloc(info, sizeof(*info) + sz);
271     info->allowed_iovas = (uintptr_t)(info + 1);
272 
273     if (ioctl(fd, IOMMU_IOAS_IOVA_RANGES, info)) {
274         goto error;
275     }
276 
277     iova_ranges = (struct iommu_iova_range *)(uintptr_t)info->allowed_iovas;
278 
279     for (int i = 0; i < info->num_iovas; i++) {
280         Range *range = g_new(Range, 1);
281 
282         range_set_bounds(range, iova_ranges[i].start, iova_ranges[i].last);
283         bcontainer->iova_ranges =
284             range_list_insert(bcontainer->iova_ranges, range);
285     }
286     bcontainer->pgsizes = info->out_iova_alignment;
287 
288     return true;
289 
290 error:
291     error_setg_errno(errp, errno, "Cannot get IOVA ranges");
292     return false;
293 }
294 
295 static bool iommufd_cdev_attach(const char *name, VFIODevice *vbasedev,
296                                 AddressSpace *as, Error **errp)
297 {
298     VFIOContainerBase *bcontainer;
299     VFIOIOMMUFDContainer *container;
300     VFIOAddressSpace *space;
301     struct vfio_device_info dev_info = { .argsz = sizeof(dev_info) };
302     int ret, devfd;
303     uint32_t ioas_id;
304     Error *err = NULL;
305     const VFIOIOMMUClass *iommufd_vioc =
306         VFIO_IOMMU_CLASS(object_class_by_name(TYPE_VFIO_IOMMU_IOMMUFD));
307 
308     if (vbasedev->fd < 0) {
309         devfd = iommufd_cdev_getfd(vbasedev->sysfsdev, errp);
310         if (devfd < 0) {
311             return false;
312         }
313         vbasedev->fd = devfd;
314     } else {
315         devfd = vbasedev->fd;
316     }
317 
318     if (!iommufd_cdev_connect_and_bind(vbasedev, errp)) {
319         goto err_connect_bind;
320     }
321 
322     space = vfio_get_address_space(as);
323 
324     /* try to attach to an existing container in this space */
325     QLIST_FOREACH(bcontainer, &space->containers, next) {
326         container = container_of(bcontainer, VFIOIOMMUFDContainer, bcontainer);
327         if (VFIO_IOMMU_GET_CLASS(bcontainer) != iommufd_vioc ||
328             vbasedev->iommufd != container->be) {
329             continue;
330         }
331         if (!iommufd_cdev_attach_container(vbasedev, container, &err)) {
332             const char *msg = error_get_pretty(err);
333 
334             trace_iommufd_cdev_fail_attach_existing_container(msg);
335             error_free(err);
336             err = NULL;
337         } else {
338             ret = iommufd_cdev_ram_block_discard_disable(true);
339             if (ret) {
340                 error_setg(errp,
341                               "Cannot set discarding of RAM broken (%d)", ret);
342                 goto err_discard_disable;
343             }
344             goto found_container;
345         }
346     }
347 
348     /* Need to allocate a new dedicated container */
349     if (!iommufd_backend_alloc_ioas(vbasedev->iommufd, &ioas_id, errp)) {
350         goto err_alloc_ioas;
351     }
352 
353     trace_iommufd_cdev_alloc_ioas(vbasedev->iommufd->fd, ioas_id);
354 
355     container = VFIO_IOMMU_IOMMUFD(object_new(TYPE_VFIO_IOMMU_IOMMUFD));
356     container->be = vbasedev->iommufd;
357     container->ioas_id = ioas_id;
358 
359     bcontainer = &container->bcontainer;
360     vfio_address_space_insert(space, bcontainer);
361 
362     if (!iommufd_cdev_attach_container(vbasedev, container, errp)) {
363         goto err_attach_container;
364     }
365 
366     ret = iommufd_cdev_ram_block_discard_disable(true);
367     if (ret) {
368         goto err_discard_disable;
369     }
370 
371     if (!iommufd_cdev_get_info_iova_range(container, ioas_id, &err)) {
372         error_append_hint(&err,
373                    "Fallback to default 64bit IOVA range and 4K page size\n");
374         warn_report_err(err);
375         err = NULL;
376         bcontainer->pgsizes = qemu_real_host_page_size();
377     }
378 
379     bcontainer->listener = vfio_memory_listener;
380     memory_listener_register(&bcontainer->listener, bcontainer->space->as);
381 
382     if (bcontainer->error) {
383         error_propagate_prepend(errp, bcontainer->error,
384                                 "memory listener initialization failed: ");
385         goto err_listener_register;
386     }
387 
388     bcontainer->initialized = true;
389 
390 found_container:
391     ret = ioctl(devfd, VFIO_DEVICE_GET_INFO, &dev_info);
392     if (ret) {
393         error_setg_errno(errp, errno, "error getting device info");
394         goto err_listener_register;
395     }
396 
397     if (!vfio_cpr_register_container(bcontainer, errp)) {
398         goto err_listener_register;
399     }
400 
401     /*
402      * TODO: examine RAM_BLOCK_DISCARD stuff, should we do group level
403      * for discarding incompatibility check as well?
404      */
405     if (vbasedev->ram_block_discard_allowed) {
406         iommufd_cdev_ram_block_discard_disable(false);
407     }
408 
409     vbasedev->group = 0;
410     vbasedev->num_irqs = dev_info.num_irqs;
411     vbasedev->num_regions = dev_info.num_regions;
412     vbasedev->flags = dev_info.flags;
413     vbasedev->reset_works = !!(dev_info.flags & VFIO_DEVICE_FLAGS_RESET);
414     vbasedev->bcontainer = bcontainer;
415     QLIST_INSERT_HEAD(&bcontainer->device_list, vbasedev, container_next);
416     QLIST_INSERT_HEAD(&vfio_device_list, vbasedev, global_next);
417 
418     trace_iommufd_cdev_device_info(vbasedev->name, devfd, vbasedev->num_irqs,
419                                    vbasedev->num_regions, vbasedev->flags);
420     return true;
421 
422 err_listener_register:
423     iommufd_cdev_ram_block_discard_disable(false);
424 err_discard_disable:
425     iommufd_cdev_detach_container(vbasedev, container);
426 err_attach_container:
427     iommufd_cdev_container_destroy(container);
428 err_alloc_ioas:
429     vfio_put_address_space(space);
430     iommufd_cdev_unbind_and_disconnect(vbasedev);
431 err_connect_bind:
432     close(vbasedev->fd);
433     return false;
434 }
435 
436 static void iommufd_cdev_detach(VFIODevice *vbasedev)
437 {
438     VFIOContainerBase *bcontainer = vbasedev->bcontainer;
439     VFIOAddressSpace *space = bcontainer->space;
440     VFIOIOMMUFDContainer *container = container_of(bcontainer,
441                                                    VFIOIOMMUFDContainer,
442                                                    bcontainer);
443     QLIST_REMOVE(vbasedev, global_next);
444     QLIST_REMOVE(vbasedev, container_next);
445     vbasedev->bcontainer = NULL;
446 
447     if (!vbasedev->ram_block_discard_allowed) {
448         iommufd_cdev_ram_block_discard_disable(false);
449     }
450 
451     vfio_cpr_unregister_container(bcontainer);
452     iommufd_cdev_detach_container(vbasedev, container);
453     iommufd_cdev_container_destroy(container);
454     vfio_put_address_space(space);
455 
456     iommufd_cdev_unbind_and_disconnect(vbasedev);
457     close(vbasedev->fd);
458 }
459 
460 static VFIODevice *iommufd_cdev_pci_find_by_devid(__u32 devid)
461 {
462     VFIODevice *vbasedev_iter;
463     const VFIOIOMMUClass *iommufd_vioc =
464         VFIO_IOMMU_CLASS(object_class_by_name(TYPE_VFIO_IOMMU_IOMMUFD));
465 
466     QLIST_FOREACH(vbasedev_iter, &vfio_device_list, global_next) {
467         if (VFIO_IOMMU_GET_CLASS(vbasedev_iter->bcontainer) != iommufd_vioc) {
468             continue;
469         }
470         if (devid == vbasedev_iter->devid) {
471             return vbasedev_iter;
472         }
473     }
474     return NULL;
475 }
476 
477 static VFIOPCIDevice *
478 iommufd_cdev_dep_get_realized_vpdev(struct vfio_pci_dependent_device *dep_dev,
479                                     VFIODevice *reset_dev)
480 {
481     VFIODevice *vbasedev_tmp;
482 
483     if (dep_dev->devid == reset_dev->devid ||
484         dep_dev->devid == VFIO_PCI_DEVID_OWNED) {
485         return NULL;
486     }
487 
488     vbasedev_tmp = iommufd_cdev_pci_find_by_devid(dep_dev->devid);
489     if (!vbasedev_tmp || !vbasedev_tmp->dev->realized ||
490         vbasedev_tmp->type != VFIO_DEVICE_TYPE_PCI) {
491         return NULL;
492     }
493 
494     return container_of(vbasedev_tmp, VFIOPCIDevice, vbasedev);
495 }
496 
497 static int iommufd_cdev_pci_hot_reset(VFIODevice *vbasedev, bool single)
498 {
499     VFIOPCIDevice *vdev = container_of(vbasedev, VFIOPCIDevice, vbasedev);
500     struct vfio_pci_hot_reset_info *info = NULL;
501     struct vfio_pci_dependent_device *devices;
502     struct vfio_pci_hot_reset *reset;
503     int ret, i;
504     bool multi = false;
505 
506     trace_vfio_pci_hot_reset(vdev->vbasedev.name, single ? "one" : "multi");
507 
508     if (!single) {
509         vfio_pci_pre_reset(vdev);
510     }
511     vdev->vbasedev.needs_reset = false;
512 
513     ret = vfio_pci_get_pci_hot_reset_info(vdev, &info);
514 
515     if (ret) {
516         goto out_single;
517     }
518 
519     assert(info->flags & VFIO_PCI_HOT_RESET_FLAG_DEV_ID);
520 
521     devices = &info->devices[0];
522 
523     if (!(info->flags & VFIO_PCI_HOT_RESET_FLAG_DEV_ID_OWNED)) {
524         if (!vdev->has_pm_reset) {
525             for (i = 0; i < info->count; i++) {
526                 if (devices[i].devid == VFIO_PCI_DEVID_NOT_OWNED) {
527                     error_report("vfio: Cannot reset device %s, "
528                                  "depends on device %04x:%02x:%02x.%x "
529                                  "which is not owned.",
530                                  vdev->vbasedev.name, devices[i].segment,
531                                  devices[i].bus, PCI_SLOT(devices[i].devfn),
532                                  PCI_FUNC(devices[i].devfn));
533                 }
534             }
535         }
536         ret = -EPERM;
537         goto out_single;
538     }
539 
540     trace_vfio_pci_hot_reset_has_dep_devices(vdev->vbasedev.name);
541 
542     for (i = 0; i < info->count; i++) {
543         VFIOPCIDevice *tmp;
544 
545         trace_iommufd_cdev_pci_hot_reset_dep_devices(devices[i].segment,
546                                                      devices[i].bus,
547                                                      PCI_SLOT(devices[i].devfn),
548                                                      PCI_FUNC(devices[i].devfn),
549                                                      devices[i].devid);
550 
551         /*
552          * If a VFIO cdev device is resettable, all the dependent devices
553          * are either bound to same iommufd or within same iommu_groups as
554          * one of the iommufd bound devices.
555          */
556         assert(devices[i].devid != VFIO_PCI_DEVID_NOT_OWNED);
557 
558         tmp = iommufd_cdev_dep_get_realized_vpdev(&devices[i], &vdev->vbasedev);
559         if (!tmp) {
560             continue;
561         }
562 
563         if (single) {
564             ret = -EINVAL;
565             goto out_single;
566         }
567         vfio_pci_pre_reset(tmp);
568         tmp->vbasedev.needs_reset = false;
569         multi = true;
570     }
571 
572     if (!single && !multi) {
573         ret = -EINVAL;
574         goto out_single;
575     }
576 
577     /* Use zero length array for hot reset with iommufd backend */
578     reset = g_malloc0(sizeof(*reset));
579     reset->argsz = sizeof(*reset);
580 
581      /* Bus reset! */
582     ret = ioctl(vdev->vbasedev.fd, VFIO_DEVICE_PCI_HOT_RESET, reset);
583     g_free(reset);
584     if (ret) {
585         ret = -errno;
586     }
587 
588     trace_vfio_pci_hot_reset_result(vdev->vbasedev.name,
589                                     ret ? strerror(errno) : "Success");
590 
591     /* Re-enable INTx on affected devices */
592     for (i = 0; i < info->count; i++) {
593         VFIOPCIDevice *tmp;
594 
595         tmp = iommufd_cdev_dep_get_realized_vpdev(&devices[i], &vdev->vbasedev);
596         if (!tmp) {
597             continue;
598         }
599         vfio_pci_post_reset(tmp);
600     }
601 out_single:
602     if (!single) {
603         vfio_pci_post_reset(vdev);
604     }
605     g_free(info);
606 
607     return ret;
608 }
609 
610 static void vfio_iommu_iommufd_class_init(ObjectClass *klass, void *data)
611 {
612     VFIOIOMMUClass *vioc = VFIO_IOMMU_CLASS(klass);
613 
614     vioc->hiod_typename = TYPE_HOST_IOMMU_DEVICE_IOMMUFD_VFIO;
615 
616     vioc->dma_map = iommufd_cdev_map;
617     vioc->dma_unmap = iommufd_cdev_unmap;
618     vioc->attach_device = iommufd_cdev_attach;
619     vioc->detach_device = iommufd_cdev_detach;
620     vioc->pci_hot_reset = iommufd_cdev_pci_hot_reset;
621 };
622 
623 static bool hiod_iommufd_vfio_realize(HostIOMMUDevice *hiod, void *opaque,
624                                       Error **errp)
625 {
626     VFIODevice *vdev = opaque;
627     HostIOMMUDeviceCaps *caps = &hiod->caps;
628     enum iommu_hw_info_type type;
629     union {
630         struct iommu_hw_info_vtd vtd;
631     } data;
632 
633     hiod->agent = opaque;
634 
635     if (!iommufd_backend_get_device_info(vdev->iommufd, vdev->devid,
636                                          &type, &data, sizeof(data), errp)) {
637         return false;
638     }
639 
640     hiod->name = g_strdup(vdev->name);
641     caps->type = type;
642     caps->aw_bits = vfio_device_get_aw_bits(vdev);
643 
644     return true;
645 }
646 
647 static GList *
648 hiod_iommufd_vfio_get_iova_ranges(HostIOMMUDevice *hiod, Error **errp)
649 {
650     VFIODevice *vdev = hiod->agent;
651     GList *l = NULL;
652 
653     g_assert(vdev);
654 
655     if (vdev->bcontainer) {
656         l = g_list_copy(vdev->bcontainer->iova_ranges);
657     }
658 
659     return l;
660 }
661 
662 static void hiod_iommufd_vfio_class_init(ObjectClass *oc, void *data)
663 {
664     HostIOMMUDeviceClass *hiodc = HOST_IOMMU_DEVICE_CLASS(oc);
665 
666     hiodc->realize = hiod_iommufd_vfio_realize;
667     hiodc->get_iova_ranges = hiod_iommufd_vfio_get_iova_ranges;
668 };
669 
670 static const TypeInfo types[] = {
671     {
672         .name = TYPE_VFIO_IOMMU_IOMMUFD,
673         .parent = TYPE_VFIO_IOMMU,
674         .instance_size = sizeof(VFIOIOMMUFDContainer),
675         .class_init = vfio_iommu_iommufd_class_init,
676     }, {
677         .name = TYPE_HOST_IOMMU_DEVICE_IOMMUFD_VFIO,
678         .parent = TYPE_HOST_IOMMU_DEVICE_IOMMUFD,
679         .class_init = hiod_iommufd_vfio_class_init,
680     }
681 };
682 
683 DEFINE_TYPES(types)
684