vfio: skip DMA map failure if already mapped
[dpdk.git] / lib / librte_eal / linux / eal / eal_vfio.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2018 Intel Corporation
3  */
4
5 #include <inttypes.h>
6 #include <string.h>
7 #include <fcntl.h>
8 #include <unistd.h>
9 #include <sys/ioctl.h>
10
11 #include <rte_errno.h>
12 #include <rte_log.h>
13 #include <rte_memory.h>
14 #include <rte_eal_memconfig.h>
15 #include <rte_vfio.h>
16
17 #include "eal_filesystem.h"
18 #include "eal_vfio.h"
19 #include "eal_private.h"
20
21 #ifdef VFIO_PRESENT
22
23 #define VFIO_MEM_EVENT_CLB_NAME "vfio_mem_event_clb"
24
25 /* hot plug/unplug of VFIO groups may cause all DMA maps to be dropped. we can
26  * recreate the mappings for DPDK segments, but we cannot do so for memory that
27  * was registered by the user themselves, so we need to store the user mappings
28  * somewhere, to recreate them later.
29  */
30 #define VFIO_MAX_USER_MEM_MAPS 256
31 struct user_mem_map {
32         uint64_t addr;
33         uint64_t iova;
34         uint64_t len;
35 };
36
37 struct user_mem_maps {
38         rte_spinlock_recursive_t lock;
39         int n_maps;
40         struct user_mem_map maps[VFIO_MAX_USER_MEM_MAPS];
41 };
42
43 struct vfio_config {
44         int vfio_enabled;
45         int vfio_container_fd;
46         int vfio_active_groups;
47         const struct vfio_iommu_type *vfio_iommu_type;
48         struct vfio_group vfio_groups[VFIO_MAX_GROUPS];
49         struct user_mem_maps mem_maps;
50 };
51
52 /* per-process VFIO config */
53 static struct vfio_config vfio_cfgs[VFIO_MAX_CONTAINERS];
54 static struct vfio_config *default_vfio_cfg = &vfio_cfgs[0];
55
56 static int vfio_type1_dma_map(int);
57 static int vfio_type1_dma_mem_map(int, uint64_t, uint64_t, uint64_t, int);
58 static int vfio_spapr_dma_map(int);
59 static int vfio_spapr_dma_mem_map(int, uint64_t, uint64_t, uint64_t, int);
60 static int vfio_noiommu_dma_map(int);
61 static int vfio_noiommu_dma_mem_map(int, uint64_t, uint64_t, uint64_t, int);
62 static int vfio_dma_mem_map(struct vfio_config *vfio_cfg, uint64_t vaddr,
63                 uint64_t iova, uint64_t len, int do_map);
64
65 /* IOMMU types we support */
66 static const struct vfio_iommu_type iommu_types[] = {
67         /* x86 IOMMU, otherwise known as type 1 */
68         {
69                 .type_id = RTE_VFIO_TYPE1,
70                 .name = "Type 1",
71                 .dma_map_func = &vfio_type1_dma_map,
72                 .dma_user_map_func = &vfio_type1_dma_mem_map
73         },
74         /* ppc64 IOMMU, otherwise known as spapr */
75         {
76                 .type_id = RTE_VFIO_SPAPR,
77                 .name = "sPAPR",
78                 .dma_map_func = &vfio_spapr_dma_map,
79                 .dma_user_map_func = &vfio_spapr_dma_mem_map
80         },
81         /* IOMMU-less mode */
82         {
83                 .type_id = RTE_VFIO_NOIOMMU,
84                 .name = "No-IOMMU",
85                 .dma_map_func = &vfio_noiommu_dma_map,
86                 .dma_user_map_func = &vfio_noiommu_dma_mem_map
87         },
88 };
89
90 static int
91 is_null_map(const struct user_mem_map *map)
92 {
93         return map->addr == 0 && map->iova == 0 && map->len == 0;
94 }
95
96 /* we may need to merge user mem maps together in case of user mapping/unmapping
97  * chunks of memory, so we'll need a comparator function to sort segments.
98  */
99 static int
100 user_mem_map_cmp(const void *a, const void *b)
101 {
102         const struct user_mem_map *umm_a = a;
103         const struct user_mem_map *umm_b = b;
104
105         /* move null entries to end */
106         if (is_null_map(umm_a))
107                 return 1;
108         if (is_null_map(umm_b))
109                 return -1;
110
111         /* sort by iova first */
112         if (umm_a->iova < umm_b->iova)
113                 return -1;
114         if (umm_a->iova > umm_b->iova)
115                 return 1;
116
117         if (umm_a->addr < umm_b->addr)
118                 return -1;
119         if (umm_a->addr > umm_b->addr)
120                 return 1;
121
122         if (umm_a->len < umm_b->len)
123                 return -1;
124         if (umm_a->len > umm_b->len)
125                 return 1;
126
127         return 0;
128 }
129
130 /* adjust user map entry. this may result in shortening of existing map, or in
131  * splitting existing map in two pieces.
132  */
133 static void
134 adjust_map(struct user_mem_map *src, struct user_mem_map *end,
135                 uint64_t remove_va_start, uint64_t remove_len)
136 {
137         /* if va start is same as start address, we're simply moving start */
138         if (remove_va_start == src->addr) {
139                 src->addr += remove_len;
140                 src->iova += remove_len;
141                 src->len -= remove_len;
142         } else if (remove_va_start + remove_len == src->addr + src->len) {
143                 /* we're shrinking mapping from the end */
144                 src->len -= remove_len;
145         } else {
146                 /* we're blowing a hole in the middle */
147                 struct user_mem_map tmp;
148                 uint64_t total_len = src->len;
149
150                 /* adjust source segment length */
151                 src->len = remove_va_start - src->addr;
152
153                 /* create temporary segment in the middle */
154                 tmp.addr = src->addr + src->len;
155                 tmp.iova = src->iova + src->len;
156                 tmp.len = remove_len;
157
158                 /* populate end segment - this one we will be keeping */
159                 end->addr = tmp.addr + tmp.len;
160                 end->iova = tmp.iova + tmp.len;
161                 end->len = total_len - src->len - tmp.len;
162         }
163 }
164
165 /* try merging two maps into one, return 1 if succeeded */
166 static int
167 merge_map(struct user_mem_map *left, struct user_mem_map *right)
168 {
169         if (left->addr + left->len != right->addr)
170                 return 0;
171         if (left->iova + left->len != right->iova)
172                 return 0;
173
174         left->len += right->len;
175
176         memset(right, 0, sizeof(*right));
177
178         return 1;
179 }
180
181 static struct user_mem_map *
182 find_user_mem_map(struct user_mem_maps *user_mem_maps, uint64_t addr,
183                 uint64_t iova, uint64_t len)
184 {
185         uint64_t va_end = addr + len;
186         uint64_t iova_end = iova + len;
187         int i;
188
189         for (i = 0; i < user_mem_maps->n_maps; i++) {
190                 struct user_mem_map *map = &user_mem_maps->maps[i];
191                 uint64_t map_va_end = map->addr + map->len;
192                 uint64_t map_iova_end = map->iova + map->len;
193
194                 /* check start VA */
195                 if (addr < map->addr || addr >= map_va_end)
196                         continue;
197                 /* check if VA end is within boundaries */
198                 if (va_end <= map->addr || va_end > map_va_end)
199                         continue;
200
201                 /* check start IOVA */
202                 if (iova < map->iova || iova >= map_iova_end)
203                         continue;
204                 /* check if IOVA end is within boundaries */
205                 if (iova_end <= map->iova || iova_end > map_iova_end)
206                         continue;
207
208                 /* we've found our map */
209                 return map;
210         }
211         return NULL;
212 }
213
214 /* this will sort all user maps, and merge/compact any adjacent maps */
215 static void
216 compact_user_maps(struct user_mem_maps *user_mem_maps)
217 {
218         int i, n_merged, cur_idx;
219
220         qsort(user_mem_maps->maps, user_mem_maps->n_maps,
221                         sizeof(user_mem_maps->maps[0]), user_mem_map_cmp);
222
223         /* we'll go over the list backwards when merging */
224         n_merged = 0;
225         for (i = user_mem_maps->n_maps - 2; i >= 0; i--) {
226                 struct user_mem_map *l, *r;
227
228                 l = &user_mem_maps->maps[i];
229                 r = &user_mem_maps->maps[i + 1];
230
231                 if (is_null_map(l) || is_null_map(r))
232                         continue;
233
234                 if (merge_map(l, r))
235                         n_merged++;
236         }
237
238         /* the entries are still sorted, but now they have holes in them, so
239          * walk through the list and remove the holes
240          */
241         if (n_merged > 0) {
242                 cur_idx = 0;
243                 for (i = 0; i < user_mem_maps->n_maps; i++) {
244                         if (!is_null_map(&user_mem_maps->maps[i])) {
245                                 struct user_mem_map *src, *dst;
246
247                                 src = &user_mem_maps->maps[i];
248                                 dst = &user_mem_maps->maps[cur_idx++];
249
250                                 if (src != dst) {
251                                         memcpy(dst, src, sizeof(*src));
252                                         memset(src, 0, sizeof(*src));
253                                 }
254                         }
255                 }
256                 user_mem_maps->n_maps = cur_idx;
257         }
258 }
259
260 static int
261 vfio_open_group_fd(int iommu_group_num)
262 {
263         int vfio_group_fd;
264         char filename[PATH_MAX];
265         struct rte_mp_msg mp_req, *mp_rep;
266         struct rte_mp_reply mp_reply;
267         struct timespec ts = {.tv_sec = 5, .tv_nsec = 0};
268         struct vfio_mp_param *p = (struct vfio_mp_param *)mp_req.param;
269
270         /* if primary, try to open the group */
271         if (internal_config.process_type == RTE_PROC_PRIMARY) {
272                 /* try regular group format */
273                 snprintf(filename, sizeof(filename),
274                                  VFIO_GROUP_FMT, iommu_group_num);
275                 vfio_group_fd = open(filename, O_RDWR);
276                 if (vfio_group_fd < 0) {
277                         /* if file not found, it's not an error */
278                         if (errno != ENOENT) {
279                                 RTE_LOG(ERR, EAL, "Cannot open %s: %s\n", filename,
280                                                 strerror(errno));
281                                 return -1;
282                         }
283
284                         /* special case: try no-IOMMU path as well */
285                         snprintf(filename, sizeof(filename),
286                                         VFIO_NOIOMMU_GROUP_FMT,
287                                         iommu_group_num);
288                         vfio_group_fd = open(filename, O_RDWR);
289                         if (vfio_group_fd < 0) {
290                                 if (errno != ENOENT) {
291                                         RTE_LOG(ERR, EAL, "Cannot open %s: %s\n", filename,
292                                                         strerror(errno));
293                                         return -1;
294                                 }
295                                 return 0;
296                         }
297                         /* noiommu group found */
298                 }
299
300                 return vfio_group_fd;
301         }
302         /* if we're in a secondary process, request group fd from the primary
303          * process via mp channel.
304          */
305         p->req = SOCKET_REQ_GROUP;
306         p->group_num = iommu_group_num;
307         strcpy(mp_req.name, EAL_VFIO_MP);
308         mp_req.len_param = sizeof(*p);
309         mp_req.num_fds = 0;
310
311         vfio_group_fd = -1;
312         if (rte_mp_request_sync(&mp_req, &mp_reply, &ts) == 0 &&
313             mp_reply.nb_received == 1) {
314                 mp_rep = &mp_reply.msgs[0];
315                 p = (struct vfio_mp_param *)mp_rep->param;
316                 if (p->result == SOCKET_OK && mp_rep->num_fds == 1) {
317                         vfio_group_fd = mp_rep->fds[0];
318                 } else if (p->result == SOCKET_NO_FD) {
319                         RTE_LOG(ERR, EAL, "  bad VFIO group fd\n");
320                         vfio_group_fd = 0;
321                 }
322                 free(mp_reply.msgs);
323         }
324
325         if (vfio_group_fd < 0)
326                 RTE_LOG(ERR, EAL, "  cannot request group fd\n");
327         return vfio_group_fd;
328 }
329
330 static struct vfio_config *
331 get_vfio_cfg_by_group_num(int iommu_group_num)
332 {
333         struct vfio_config *vfio_cfg;
334         int i, j;
335
336         for (i = 0; i < VFIO_MAX_CONTAINERS; i++) {
337                 vfio_cfg = &vfio_cfgs[i];
338                 for (j = 0; j < VFIO_MAX_GROUPS; j++) {
339                         if (vfio_cfg->vfio_groups[j].group_num ==
340                                         iommu_group_num)
341                                 return vfio_cfg;
342                 }
343         }
344
345         return NULL;
346 }
347
348 static int
349 vfio_get_group_fd(struct vfio_config *vfio_cfg,
350                 int iommu_group_num)
351 {
352         int i;
353         int vfio_group_fd;
354         struct vfio_group *cur_grp;
355
356         /* check if we already have the group descriptor open */
357         for (i = 0; i < VFIO_MAX_GROUPS; i++)
358                 if (vfio_cfg->vfio_groups[i].group_num == iommu_group_num)
359                         return vfio_cfg->vfio_groups[i].fd;
360
361         /* Lets see first if there is room for a new group */
362         if (vfio_cfg->vfio_active_groups == VFIO_MAX_GROUPS) {
363                 RTE_LOG(ERR, EAL, "Maximum number of VFIO groups reached!\n");
364                 return -1;
365         }
366
367         /* Now lets get an index for the new group */
368         for (i = 0; i < VFIO_MAX_GROUPS; i++)
369                 if (vfio_cfg->vfio_groups[i].group_num == -1) {
370                         cur_grp = &vfio_cfg->vfio_groups[i];
371                         break;
372                 }
373
374         /* This should not happen */
375         if (i == VFIO_MAX_GROUPS) {
376                 RTE_LOG(ERR, EAL, "No VFIO group free slot found\n");
377                 return -1;
378         }
379
380         vfio_group_fd = vfio_open_group_fd(iommu_group_num);
381         if (vfio_group_fd < 0) {
382                 RTE_LOG(ERR, EAL, "Failed to open group %d\n", iommu_group_num);
383                 return -1;
384         }
385
386         cur_grp->group_num = iommu_group_num;
387         cur_grp->fd = vfio_group_fd;
388         vfio_cfg->vfio_active_groups++;
389
390         return vfio_group_fd;
391 }
392
393 static struct vfio_config *
394 get_vfio_cfg_by_group_fd(int vfio_group_fd)
395 {
396         struct vfio_config *vfio_cfg;
397         int i, j;
398
399         for (i = 0; i < VFIO_MAX_CONTAINERS; i++) {
400                 vfio_cfg = &vfio_cfgs[i];
401                 for (j = 0; j < VFIO_MAX_GROUPS; j++)
402                         if (vfio_cfg->vfio_groups[j].fd == vfio_group_fd)
403                                 return vfio_cfg;
404         }
405
406         return NULL;
407 }
408
409 static struct vfio_config *
410 get_vfio_cfg_by_container_fd(int container_fd)
411 {
412         int i;
413
414         for (i = 0; i < VFIO_MAX_CONTAINERS; i++) {
415                 if (vfio_cfgs[i].vfio_container_fd == container_fd)
416                         return &vfio_cfgs[i];
417         }
418
419         return NULL;
420 }
421
422 int
423 rte_vfio_get_group_fd(int iommu_group_num)
424 {
425         struct vfio_config *vfio_cfg;
426
427         /* get the vfio_config it belongs to */
428         vfio_cfg = get_vfio_cfg_by_group_num(iommu_group_num);
429         vfio_cfg = vfio_cfg ? vfio_cfg : default_vfio_cfg;
430
431         return vfio_get_group_fd(vfio_cfg, iommu_group_num);
432 }
433
434 static int
435 get_vfio_group_idx(int vfio_group_fd)
436 {
437         struct vfio_config *vfio_cfg;
438         int i, j;
439
440         for (i = 0; i < VFIO_MAX_CONTAINERS; i++) {
441                 vfio_cfg = &vfio_cfgs[i];
442                 for (j = 0; j < VFIO_MAX_GROUPS; j++)
443                         if (vfio_cfg->vfio_groups[j].fd == vfio_group_fd)
444                                 return j;
445         }
446
447         return -1;
448 }
449
450 static void
451 vfio_group_device_get(int vfio_group_fd)
452 {
453         struct vfio_config *vfio_cfg;
454         int i;
455
456         vfio_cfg = get_vfio_cfg_by_group_fd(vfio_group_fd);
457         if (vfio_cfg == NULL) {
458                 RTE_LOG(ERR, EAL, "  invalid group fd!\n");
459                 return;
460         }
461
462         i = get_vfio_group_idx(vfio_group_fd);
463         if (i < 0 || i > (VFIO_MAX_GROUPS - 1))
464                 RTE_LOG(ERR, EAL, "  wrong vfio_group index (%d)\n", i);
465         else
466                 vfio_cfg->vfio_groups[i].devices++;
467 }
468
469 static void
470 vfio_group_device_put(int vfio_group_fd)
471 {
472         struct vfio_config *vfio_cfg;
473         int i;
474
475         vfio_cfg = get_vfio_cfg_by_group_fd(vfio_group_fd);
476         if (vfio_cfg == NULL) {
477                 RTE_LOG(ERR, EAL, "  invalid group fd!\n");
478                 return;
479         }
480
481         i = get_vfio_group_idx(vfio_group_fd);
482         if (i < 0 || i > (VFIO_MAX_GROUPS - 1))
483                 RTE_LOG(ERR, EAL, "  wrong vfio_group index (%d)\n", i);
484         else
485                 vfio_cfg->vfio_groups[i].devices--;
486 }
487
488 static int
489 vfio_group_device_count(int vfio_group_fd)
490 {
491         struct vfio_config *vfio_cfg;
492         int i;
493
494         vfio_cfg = get_vfio_cfg_by_group_fd(vfio_group_fd);
495         if (vfio_cfg == NULL) {
496                 RTE_LOG(ERR, EAL, "  invalid group fd!\n");
497                 return -1;
498         }
499
500         i = get_vfio_group_idx(vfio_group_fd);
501         if (i < 0 || i > (VFIO_MAX_GROUPS - 1)) {
502                 RTE_LOG(ERR, EAL, "  wrong vfio_group index (%d)\n", i);
503                 return -1;
504         }
505
506         return vfio_cfg->vfio_groups[i].devices;
507 }
508
509 static void
510 vfio_mem_event_callback(enum rte_mem_event type, const void *addr, size_t len,
511                 void *arg __rte_unused)
512 {
513         struct rte_memseg_list *msl;
514         struct rte_memseg *ms;
515         size_t cur_len = 0;
516
517         msl = rte_mem_virt2memseg_list(addr);
518
519         /* for IOVA as VA mode, no need to care for IOVA addresses */
520         if (rte_eal_iova_mode() == RTE_IOVA_VA && msl->external == 0) {
521                 uint64_t vfio_va = (uint64_t)(uintptr_t)addr;
522                 if (type == RTE_MEM_EVENT_ALLOC)
523                         vfio_dma_mem_map(default_vfio_cfg, vfio_va, vfio_va,
524                                         len, 1);
525                 else
526                         vfio_dma_mem_map(default_vfio_cfg, vfio_va, vfio_va,
527                                         len, 0);
528                 return;
529         }
530
531         /* memsegs are contiguous in memory */
532         ms = rte_mem_virt2memseg(addr, msl);
533         while (cur_len < len) {
534                 /* some memory segments may have invalid IOVA */
535                 if (ms->iova == RTE_BAD_IOVA) {
536                         RTE_LOG(DEBUG, EAL, "Memory segment at %p has bad IOVA, skipping\n",
537                                         ms->addr);
538                         goto next;
539                 }
540                 if (type == RTE_MEM_EVENT_ALLOC)
541                         vfio_dma_mem_map(default_vfio_cfg, ms->addr_64,
542                                         ms->iova, ms->len, 1);
543                 else
544                         vfio_dma_mem_map(default_vfio_cfg, ms->addr_64,
545                                         ms->iova, ms->len, 0);
546 next:
547                 cur_len += ms->len;
548                 ++ms;
549         }
550 }
551
552 static int
553 vfio_sync_default_container(void)
554 {
555         struct rte_mp_msg mp_req, *mp_rep;
556         struct rte_mp_reply mp_reply;
557         struct timespec ts = {.tv_sec = 5, .tv_nsec = 0};
558         struct vfio_mp_param *p = (struct vfio_mp_param *)mp_req.param;
559         int iommu_type_id;
560         unsigned int i;
561
562         /* cannot be called from primary */
563         if (rte_eal_process_type() != RTE_PROC_SECONDARY)
564                 return -1;
565
566         /* default container fd should have been opened in rte_vfio_enable() */
567         if (!default_vfio_cfg->vfio_enabled ||
568                         default_vfio_cfg->vfio_container_fd < 0) {
569                 RTE_LOG(ERR, EAL, "VFIO support is not initialized\n");
570                 return -1;
571         }
572
573         /* find default container's IOMMU type */
574         p->req = SOCKET_REQ_IOMMU_TYPE;
575         strcpy(mp_req.name, EAL_VFIO_MP);
576         mp_req.len_param = sizeof(*p);
577         mp_req.num_fds = 0;
578
579         iommu_type_id = -1;
580         if (rte_mp_request_sync(&mp_req, &mp_reply, &ts) == 0 &&
581                         mp_reply.nb_received == 1) {
582                 mp_rep = &mp_reply.msgs[0];
583                 p = (struct vfio_mp_param *)mp_rep->param;
584                 if (p->result == SOCKET_OK)
585                         iommu_type_id = p->iommu_type_id;
586                 free(mp_reply.msgs);
587         }
588         if (iommu_type_id < 0) {
589                 RTE_LOG(ERR, EAL, "Could not get IOMMU type for default container\n");
590                 return -1;
591         }
592
593         /* we now have an fd for default container, as well as its IOMMU type.
594          * now, set up default VFIO container config to match.
595          */
596         for (i = 0; i < RTE_DIM(iommu_types); i++) {
597                 const struct vfio_iommu_type *t = &iommu_types[i];
598                 if (t->type_id != iommu_type_id)
599                         continue;
600
601                 /* we found our IOMMU type */
602                 default_vfio_cfg->vfio_iommu_type = t;
603
604                 return 0;
605         }
606         RTE_LOG(ERR, EAL, "Could not find IOMMU type id (%i)\n",
607                         iommu_type_id);
608         return -1;
609 }
610
611 int
612 rte_vfio_clear_group(int vfio_group_fd)
613 {
614         int i;
615         struct vfio_config *vfio_cfg;
616
617         vfio_cfg = get_vfio_cfg_by_group_fd(vfio_group_fd);
618         if (vfio_cfg == NULL) {
619                 RTE_LOG(ERR, EAL, "  invalid group fd!\n");
620                 return -1;
621         }
622
623         i = get_vfio_group_idx(vfio_group_fd);
624         if (i < 0)
625                 return -1;
626         vfio_cfg->vfio_groups[i].group_num = -1;
627         vfio_cfg->vfio_groups[i].fd = -1;
628         vfio_cfg->vfio_groups[i].devices = 0;
629         vfio_cfg->vfio_active_groups--;
630
631         return 0;
632 }
633
634 int
635 rte_vfio_setup_device(const char *sysfs_base, const char *dev_addr,
636                 int *vfio_dev_fd, struct vfio_device_info *device_info)
637 {
638         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
639         rte_rwlock_t *mem_lock = &mcfg->memory_hotplug_lock;
640         struct vfio_group_status group_status = {
641                         .argsz = sizeof(group_status)
642         };
643         struct vfio_config *vfio_cfg;
644         struct user_mem_maps *user_mem_maps;
645         int vfio_container_fd;
646         int vfio_group_fd;
647         int iommu_group_num;
648         int i, ret;
649
650         /* get group number */
651         ret = rte_vfio_get_group_num(sysfs_base, dev_addr, &iommu_group_num);
652         if (ret == 0) {
653                 RTE_LOG(WARNING, EAL, "  %s not managed by VFIO driver, skipping\n",
654                         dev_addr);
655                 return 1;
656         }
657
658         /* if negative, something failed */
659         if (ret < 0)
660                 return -1;
661
662         /* get the actual group fd */
663         vfio_group_fd = rte_vfio_get_group_fd(iommu_group_num);
664         if (vfio_group_fd < 0)
665                 return -1;
666
667         /* if group_fd == 0, that means the device isn't managed by VFIO */
668         if (vfio_group_fd == 0) {
669                 RTE_LOG(WARNING, EAL, " %s not managed by VFIO driver, skipping\n",
670                                 dev_addr);
671                 return 1;
672         }
673
674         /*
675          * at this point, we know that this group is viable (meaning, all devices
676          * are either bound to VFIO or not bound to anything)
677          */
678
679         /* check if the group is viable */
680         ret = ioctl(vfio_group_fd, VFIO_GROUP_GET_STATUS, &group_status);
681         if (ret) {
682                 RTE_LOG(ERR, EAL, "  %s cannot get group status, "
683                                 "error %i (%s)\n", dev_addr, errno, strerror(errno));
684                 close(vfio_group_fd);
685                 rte_vfio_clear_group(vfio_group_fd);
686                 return -1;
687         } else if (!(group_status.flags & VFIO_GROUP_FLAGS_VIABLE)) {
688                 RTE_LOG(ERR, EAL, "  %s VFIO group is not viable!\n", dev_addr);
689                 close(vfio_group_fd);
690                 rte_vfio_clear_group(vfio_group_fd);
691                 return -1;
692         }
693
694         /* get the vfio_config it belongs to */
695         vfio_cfg = get_vfio_cfg_by_group_num(iommu_group_num);
696         vfio_cfg = vfio_cfg ? vfio_cfg : default_vfio_cfg;
697         vfio_container_fd = vfio_cfg->vfio_container_fd;
698         user_mem_maps = &vfio_cfg->mem_maps;
699
700         /* check if group does not have a container yet */
701         if (!(group_status.flags & VFIO_GROUP_FLAGS_CONTAINER_SET)) {
702
703                 /* add group to a container */
704                 ret = ioctl(vfio_group_fd, VFIO_GROUP_SET_CONTAINER,
705                                 &vfio_container_fd);
706                 if (ret) {
707                         RTE_LOG(ERR, EAL, "  %s cannot add VFIO group to container, "
708                                         "error %i (%s)\n", dev_addr, errno, strerror(errno));
709                         close(vfio_group_fd);
710                         rte_vfio_clear_group(vfio_group_fd);
711                         return -1;
712                 }
713
714                 /*
715                  * pick an IOMMU type and set up DMA mappings for container
716                  *
717                  * needs to be done only once, only when first group is
718                  * assigned to a container and only in primary process.
719                  * Note this can happen several times with the hotplug
720                  * functionality.
721                  */
722                 if (internal_config.process_type == RTE_PROC_PRIMARY &&
723                                 vfio_cfg->vfio_active_groups == 1 &&
724                                 vfio_group_device_count(vfio_group_fd) == 0) {
725                         const struct vfio_iommu_type *t;
726
727                         /* select an IOMMU type which we will be using */
728                         t = vfio_set_iommu_type(vfio_container_fd);
729                         if (!t) {
730                                 RTE_LOG(ERR, EAL,
731                                         "  %s failed to select IOMMU type\n",
732                                         dev_addr);
733                                 close(vfio_group_fd);
734                                 rte_vfio_clear_group(vfio_group_fd);
735                                 return -1;
736                         }
737                         /* lock memory hotplug before mapping and release it
738                          * after registering callback, to prevent races
739                          */
740                         rte_rwlock_read_lock(mem_lock);
741                         if (vfio_cfg == default_vfio_cfg)
742                                 ret = t->dma_map_func(vfio_container_fd);
743                         else
744                                 ret = 0;
745                         if (ret) {
746                                 RTE_LOG(ERR, EAL,
747                                         "  %s DMA remapping failed, error %i (%s)\n",
748                                         dev_addr, errno, strerror(errno));
749                                 close(vfio_group_fd);
750                                 rte_vfio_clear_group(vfio_group_fd);
751                                 rte_rwlock_read_unlock(mem_lock);
752                                 return -1;
753                         }
754
755                         vfio_cfg->vfio_iommu_type = t;
756
757                         /* re-map all user-mapped segments */
758                         rte_spinlock_recursive_lock(&user_mem_maps->lock);
759
760                         /* this IOMMU type may not support DMA mapping, but
761                          * if we have mappings in the list - that means we have
762                          * previously mapped something successfully, so we can
763                          * be sure that DMA mapping is supported.
764                          */
765                         for (i = 0; i < user_mem_maps->n_maps; i++) {
766                                 struct user_mem_map *map;
767                                 map = &user_mem_maps->maps[i];
768
769                                 ret = t->dma_user_map_func(
770                                                 vfio_container_fd,
771                                                 map->addr, map->iova, map->len,
772                                                 1);
773                                 if (ret) {
774                                         RTE_LOG(ERR, EAL, "Couldn't map user memory for DMA: "
775                                                         "va: 0x%" PRIx64 " "
776                                                         "iova: 0x%" PRIx64 " "
777                                                         "len: 0x%" PRIu64 "\n",
778                                                         map->addr, map->iova,
779                                                         map->len);
780                                         rte_spinlock_recursive_unlock(
781                                                         &user_mem_maps->lock);
782                                         rte_rwlock_read_unlock(mem_lock);
783                                         return -1;
784                                 }
785                         }
786                         rte_spinlock_recursive_unlock(&user_mem_maps->lock);
787
788                         /* register callback for mem events */
789                         if (vfio_cfg == default_vfio_cfg)
790                                 ret = rte_mem_event_callback_register(
791                                         VFIO_MEM_EVENT_CLB_NAME,
792                                         vfio_mem_event_callback, NULL);
793                         else
794                                 ret = 0;
795                         /* unlock memory hotplug */
796                         rte_rwlock_read_unlock(mem_lock);
797
798                         if (ret && rte_errno != ENOTSUP) {
799                                 RTE_LOG(ERR, EAL, "Could not install memory event callback for VFIO\n");
800                                 return -1;
801                         }
802                         if (ret)
803                                 RTE_LOG(DEBUG, EAL, "Memory event callbacks not supported\n");
804                         else
805                                 RTE_LOG(DEBUG, EAL, "Installed memory event callback for VFIO\n");
806                 }
807         } else if (rte_eal_process_type() != RTE_PROC_PRIMARY &&
808                         vfio_cfg == default_vfio_cfg &&
809                         vfio_cfg->vfio_iommu_type == NULL) {
810                 /* if we're not a primary process, we do not set up the VFIO
811                  * container because it's already been set up by the primary
812                  * process. instead, we simply ask the primary about VFIO type
813                  * we are using, and set the VFIO config up appropriately.
814                  */
815                 ret = vfio_sync_default_container();
816                 if (ret < 0) {
817                         RTE_LOG(ERR, EAL, "Could not sync default VFIO container\n");
818                         close(vfio_group_fd);
819                         rte_vfio_clear_group(vfio_group_fd);
820                         return -1;
821                 }
822                 /* we have successfully initialized VFIO, notify user */
823                 const struct vfio_iommu_type *t =
824                                 default_vfio_cfg->vfio_iommu_type;
825                 RTE_LOG(NOTICE, EAL, "  using IOMMU type %d (%s)\n",
826                                 t->type_id, t->name);
827         }
828
829         /* get a file descriptor for the device */
830         *vfio_dev_fd = ioctl(vfio_group_fd, VFIO_GROUP_GET_DEVICE_FD, dev_addr);
831         if (*vfio_dev_fd < 0) {
832                 /* if we cannot get a device fd, this implies a problem with
833                  * the VFIO group or the container not having IOMMU configured.
834                  */
835
836                 RTE_LOG(WARNING, EAL, "Getting a vfio_dev_fd for %s failed\n",
837                                 dev_addr);
838                 close(vfio_group_fd);
839                 rte_vfio_clear_group(vfio_group_fd);
840                 return -1;
841         }
842
843         /* test and setup the device */
844         ret = ioctl(*vfio_dev_fd, VFIO_DEVICE_GET_INFO, device_info);
845         if (ret) {
846                 RTE_LOG(ERR, EAL, "  %s cannot get device info, "
847                                 "error %i (%s)\n", dev_addr, errno,
848                                 strerror(errno));
849                 close(*vfio_dev_fd);
850                 close(vfio_group_fd);
851                 rte_vfio_clear_group(vfio_group_fd);
852                 return -1;
853         }
854         vfio_group_device_get(vfio_group_fd);
855
856         return 0;
857 }
858
859 int
860 rte_vfio_release_device(const char *sysfs_base, const char *dev_addr,
861                     int vfio_dev_fd)
862 {
863         struct rte_mem_config *mcfg = rte_eal_get_configuration()->mem_config;
864         rte_rwlock_t *mem_lock = &mcfg->memory_hotplug_lock;
865         struct vfio_group_status group_status = {
866                         .argsz = sizeof(group_status)
867         };
868         struct vfio_config *vfio_cfg;
869         int vfio_group_fd;
870         int iommu_group_num;
871         int ret;
872
873         /* we don't want any DMA mapping messages to come while we're detaching
874          * VFIO device, because this might be the last device and we might need
875          * to unregister the callback.
876          */
877         rte_rwlock_read_lock(mem_lock);
878
879         /* get group number */
880         ret = rte_vfio_get_group_num(sysfs_base, dev_addr, &iommu_group_num);
881         if (ret <= 0) {
882                 RTE_LOG(WARNING, EAL, "  %s not managed by VFIO driver\n",
883                         dev_addr);
884                 /* This is an error at this point. */
885                 ret = -1;
886                 goto out;
887         }
888
889         /* get the actual group fd */
890         vfio_group_fd = rte_vfio_get_group_fd(iommu_group_num);
891         if (vfio_group_fd <= 0) {
892                 RTE_LOG(INFO, EAL, "rte_vfio_get_group_fd failed for %s\n",
893                                    dev_addr);
894                 ret = -1;
895                 goto out;
896         }
897
898         /* get the vfio_config it belongs to */
899         vfio_cfg = get_vfio_cfg_by_group_num(iommu_group_num);
900         vfio_cfg = vfio_cfg ? vfio_cfg : default_vfio_cfg;
901
902         /* At this point we got an active group. Closing it will make the
903          * container detachment. If this is the last active group, VFIO kernel
904          * code will unset the container and the IOMMU mappings.
905          */
906
907         /* Closing a device */
908         if (close(vfio_dev_fd) < 0) {
909                 RTE_LOG(INFO, EAL, "Error when closing vfio_dev_fd for %s\n",
910                                    dev_addr);
911                 ret = -1;
912                 goto out;
913         }
914
915         /* An VFIO group can have several devices attached. Just when there is
916          * no devices remaining should the group be closed.
917          */
918         vfio_group_device_put(vfio_group_fd);
919         if (!vfio_group_device_count(vfio_group_fd)) {
920
921                 if (close(vfio_group_fd) < 0) {
922                         RTE_LOG(INFO, EAL, "Error when closing vfio_group_fd for %s\n",
923                                 dev_addr);
924                         ret = -1;
925                         goto out;
926                 }
927
928                 if (rte_vfio_clear_group(vfio_group_fd) < 0) {
929                         RTE_LOG(INFO, EAL, "Error when clearing group for %s\n",
930                                            dev_addr);
931                         ret = -1;
932                         goto out;
933                 }
934         }
935
936         /* if there are no active device groups, unregister the callback to
937          * avoid spurious attempts to map/unmap memory from VFIO.
938          */
939         if (vfio_cfg == default_vfio_cfg && vfio_cfg->vfio_active_groups == 0 &&
940                         rte_eal_process_type() != RTE_PROC_SECONDARY)
941                 rte_mem_event_callback_unregister(VFIO_MEM_EVENT_CLB_NAME,
942                                 NULL);
943
944         /* success */
945         ret = 0;
946
947 out:
948         rte_rwlock_read_unlock(mem_lock);
949         return ret;
950 }
951
952 int
953 rte_vfio_enable(const char *modname)
954 {
955         /* initialize group list */
956         int i, j;
957         int vfio_available;
958
959         rte_spinlock_recursive_t lock = RTE_SPINLOCK_RECURSIVE_INITIALIZER;
960
961         for (i = 0; i < VFIO_MAX_CONTAINERS; i++) {
962                 vfio_cfgs[i].vfio_container_fd = -1;
963                 vfio_cfgs[i].vfio_active_groups = 0;
964                 vfio_cfgs[i].vfio_iommu_type = NULL;
965                 vfio_cfgs[i].mem_maps.lock = lock;
966
967                 for (j = 0; j < VFIO_MAX_GROUPS; j++) {
968                         vfio_cfgs[i].vfio_groups[j].fd = -1;
969                         vfio_cfgs[i].vfio_groups[j].group_num = -1;
970                         vfio_cfgs[i].vfio_groups[j].devices = 0;
971                 }
972         }
973
974         /* inform the user that we are probing for VFIO */
975         RTE_LOG(INFO, EAL, "Probing VFIO support...\n");
976
977         /* check if vfio module is loaded */
978         vfio_available = rte_eal_check_module(modname);
979
980         /* return error directly */
981         if (vfio_available == -1) {
982                 RTE_LOG(INFO, EAL, "Could not get loaded module details!\n");
983                 return -1;
984         }
985
986         /* return 0 if VFIO modules not loaded */
987         if (vfio_available == 0) {
988                 RTE_LOG(DEBUG, EAL, "VFIO modules not loaded, "
989                         "skipping VFIO support...\n");
990                 return 0;
991         }
992
993         if (internal_config.process_type == RTE_PROC_PRIMARY) {
994                 /* open a new container */
995                 default_vfio_cfg->vfio_container_fd =
996                                 rte_vfio_get_container_fd();
997         } else {
998                 /* get the default container from the primary process */
999                 default_vfio_cfg->vfio_container_fd =
1000                                 vfio_get_default_container_fd();
1001         }
1002
1003         /* check if we have VFIO driver enabled */
1004         if (default_vfio_cfg->vfio_container_fd != -1) {
1005                 RTE_LOG(NOTICE, EAL, "VFIO support initialized\n");
1006                 default_vfio_cfg->vfio_enabled = 1;
1007         } else {
1008                 RTE_LOG(NOTICE, EAL, "VFIO support could not be initialized\n");
1009         }
1010
1011         return 0;
1012 }
1013
1014 int
1015 rte_vfio_is_enabled(const char *modname)
1016 {
1017         const int mod_available = rte_eal_check_module(modname) > 0;
1018         return default_vfio_cfg->vfio_enabled && mod_available;
1019 }
1020
1021 int
1022 vfio_get_default_container_fd(void)
1023 {
1024         struct rte_mp_msg mp_req, *mp_rep;
1025         struct rte_mp_reply mp_reply;
1026         struct timespec ts = {.tv_sec = 5, .tv_nsec = 0};
1027         struct vfio_mp_param *p = (struct vfio_mp_param *)mp_req.param;
1028
1029         if (default_vfio_cfg->vfio_enabled)
1030                 return default_vfio_cfg->vfio_container_fd;
1031
1032         if (internal_config.process_type == RTE_PROC_PRIMARY) {
1033                 /* if we were secondary process we would try requesting
1034                  * container fd from the primary, but we're the primary
1035                  * process so just exit here
1036                  */
1037                 return -1;
1038         }
1039
1040         p->req = SOCKET_REQ_DEFAULT_CONTAINER;
1041         strcpy(mp_req.name, EAL_VFIO_MP);
1042         mp_req.len_param = sizeof(*p);
1043         mp_req.num_fds = 0;
1044
1045         if (rte_mp_request_sync(&mp_req, &mp_reply, &ts) == 0 &&
1046             mp_reply.nb_received == 1) {
1047                 mp_rep = &mp_reply.msgs[0];
1048                 p = (struct vfio_mp_param *)mp_rep->param;
1049                 if (p->result == SOCKET_OK && mp_rep->num_fds == 1) {
1050                         free(mp_reply.msgs);
1051                         return mp_rep->fds[0];
1052                 }
1053                 free(mp_reply.msgs);
1054         }
1055
1056         RTE_LOG(ERR, EAL, "  cannot request default container fd\n");
1057         return -1;
1058 }
1059
1060 int
1061 vfio_get_iommu_type(void)
1062 {
1063         if (default_vfio_cfg->vfio_iommu_type == NULL)
1064                 return -1;
1065
1066         return default_vfio_cfg->vfio_iommu_type->type_id;
1067 }
1068
1069 const struct vfio_iommu_type *
1070 vfio_set_iommu_type(int vfio_container_fd)
1071 {
1072         unsigned idx;
1073         for (idx = 0; idx < RTE_DIM(iommu_types); idx++) {
1074                 const struct vfio_iommu_type *t = &iommu_types[idx];
1075
1076                 int ret = ioctl(vfio_container_fd, VFIO_SET_IOMMU,
1077                                 t->type_id);
1078                 if (!ret) {
1079                         RTE_LOG(NOTICE, EAL, "  using IOMMU type %d (%s)\n",
1080                                         t->type_id, t->name);
1081                         return t;
1082                 }
1083                 /* not an error, there may be more supported IOMMU types */
1084                 RTE_LOG(DEBUG, EAL, "  set IOMMU type %d (%s) failed, "
1085                                 "error %i (%s)\n", t->type_id, t->name, errno,
1086                                 strerror(errno));
1087         }
1088         /* if we didn't find a suitable IOMMU type, fail */
1089         return NULL;
1090 }
1091
1092 int
1093 vfio_has_supported_extensions(int vfio_container_fd)
1094 {
1095         int ret;
1096         unsigned idx, n_extensions = 0;
1097         for (idx = 0; idx < RTE_DIM(iommu_types); idx++) {
1098                 const struct vfio_iommu_type *t = &iommu_types[idx];
1099
1100                 ret = ioctl(vfio_container_fd, VFIO_CHECK_EXTENSION,
1101                                 t->type_id);
1102                 if (ret < 0) {
1103                         RTE_LOG(ERR, EAL, "  could not get IOMMU type, "
1104                                 "error %i (%s)\n", errno,
1105                                 strerror(errno));
1106                         close(vfio_container_fd);
1107                         return -1;
1108                 } else if (ret == 1) {
1109                         /* we found a supported extension */
1110                         n_extensions++;
1111                 }
1112                 RTE_LOG(DEBUG, EAL, "  IOMMU type %d (%s) is %s\n",
1113                                 t->type_id, t->name,
1114                                 ret ? "supported" : "not supported");
1115         }
1116
1117         /* if we didn't find any supported IOMMU types, fail */
1118         if (!n_extensions) {
1119                 close(vfio_container_fd);
1120                 return -1;
1121         }
1122
1123         return 0;
1124 }
1125
1126 int
1127 rte_vfio_get_container_fd(void)
1128 {
1129         int ret, vfio_container_fd;
1130         struct rte_mp_msg mp_req, *mp_rep;
1131         struct rte_mp_reply mp_reply;
1132         struct timespec ts = {.tv_sec = 5, .tv_nsec = 0};
1133         struct vfio_mp_param *p = (struct vfio_mp_param *)mp_req.param;
1134
1135
1136         /* if we're in a primary process, try to open the container */
1137         if (internal_config.process_type == RTE_PROC_PRIMARY) {
1138                 vfio_container_fd = open(VFIO_CONTAINER_PATH, O_RDWR);
1139                 if (vfio_container_fd < 0) {
1140                         RTE_LOG(ERR, EAL, "  cannot open VFIO container, "
1141                                         "error %i (%s)\n", errno, strerror(errno));
1142                         return -1;
1143                 }
1144
1145                 /* check VFIO API version */
1146                 ret = ioctl(vfio_container_fd, VFIO_GET_API_VERSION);
1147                 if (ret != VFIO_API_VERSION) {
1148                         if (ret < 0)
1149                                 RTE_LOG(ERR, EAL, "  could not get VFIO API version, "
1150                                                 "error %i (%s)\n", errno, strerror(errno));
1151                         else
1152                                 RTE_LOG(ERR, EAL, "  unsupported VFIO API version!\n");
1153                         close(vfio_container_fd);
1154                         return -1;
1155                 }
1156
1157                 ret = vfio_has_supported_extensions(vfio_container_fd);
1158                 if (ret) {
1159                         RTE_LOG(ERR, EAL, "  no supported IOMMU "
1160                                         "extensions found!\n");
1161                         return -1;
1162                 }
1163
1164                 return vfio_container_fd;
1165         }
1166         /*
1167          * if we're in a secondary process, request container fd from the
1168          * primary process via mp channel
1169          */
1170         p->req = SOCKET_REQ_CONTAINER;
1171         strcpy(mp_req.name, EAL_VFIO_MP);
1172         mp_req.len_param = sizeof(*p);
1173         mp_req.num_fds = 0;
1174
1175         vfio_container_fd = -1;
1176         if (rte_mp_request_sync(&mp_req, &mp_reply, &ts) == 0 &&
1177             mp_reply.nb_received == 1) {
1178                 mp_rep = &mp_reply.msgs[0];
1179                 p = (struct vfio_mp_param *)mp_rep->param;
1180                 if (p->result == SOCKET_OK && mp_rep->num_fds == 1) {
1181                         vfio_container_fd = mp_rep->fds[0];
1182                         free(mp_reply.msgs);
1183                         return vfio_container_fd;
1184                 }
1185                 free(mp_reply.msgs);
1186         }
1187
1188         RTE_LOG(ERR, EAL, "  cannot request container fd\n");
1189         return -1;
1190 }
1191
1192 int
1193 rte_vfio_get_group_num(const char *sysfs_base,
1194                 const char *dev_addr, int *iommu_group_num)
1195 {
1196         char linkname[PATH_MAX];
1197         char filename[PATH_MAX];
1198         char *tok[16], *group_tok, *end;
1199         int ret;
1200
1201         memset(linkname, 0, sizeof(linkname));
1202         memset(filename, 0, sizeof(filename));
1203
1204         /* try to find out IOMMU group for this device */
1205         snprintf(linkname, sizeof(linkname),
1206                          "%s/%s/iommu_group", sysfs_base, dev_addr);
1207
1208         ret = readlink(linkname, filename, sizeof(filename));
1209
1210         /* if the link doesn't exist, no VFIO for us */
1211         if (ret < 0)
1212                 return 0;
1213
1214         ret = rte_strsplit(filename, sizeof(filename),
1215                         tok, RTE_DIM(tok), '/');
1216
1217         if (ret <= 0) {
1218                 RTE_LOG(ERR, EAL, "  %s cannot get IOMMU group\n", dev_addr);
1219                 return -1;
1220         }
1221
1222         /* IOMMU group is always the last token */
1223         errno = 0;
1224         group_tok = tok[ret - 1];
1225         end = group_tok;
1226         *iommu_group_num = strtol(group_tok, &end, 10);
1227         if ((end != group_tok && *end != '\0') || errno != 0) {
1228                 RTE_LOG(ERR, EAL, "  %s error parsing IOMMU number!\n", dev_addr);
1229                 return -1;
1230         }
1231
1232         return 1;
1233 }
1234
1235 static int
1236 type1_map(const struct rte_memseg_list *msl, const struct rte_memseg *ms,
1237                 void *arg)
1238 {
1239         int *vfio_container_fd = arg;
1240
1241         if (msl->external)
1242                 return 0;
1243
1244         return vfio_type1_dma_mem_map(*vfio_container_fd, ms->addr_64, ms->iova,
1245                         ms->len, 1);
1246 }
1247
1248 static int
1249 vfio_type1_dma_mem_map(int vfio_container_fd, uint64_t vaddr, uint64_t iova,
1250                 uint64_t len, int do_map)
1251 {
1252         struct vfio_iommu_type1_dma_map dma_map;
1253         struct vfio_iommu_type1_dma_unmap dma_unmap;
1254         int ret;
1255
1256         if (do_map != 0) {
1257                 memset(&dma_map, 0, sizeof(dma_map));
1258                 dma_map.argsz = sizeof(struct vfio_iommu_type1_dma_map);
1259                 dma_map.vaddr = vaddr;
1260                 dma_map.size = len;
1261                 dma_map.iova = iova;
1262                 dma_map.flags = VFIO_DMA_MAP_FLAG_READ |
1263                                 VFIO_DMA_MAP_FLAG_WRITE;
1264
1265                 ret = ioctl(vfio_container_fd, VFIO_IOMMU_MAP_DMA, &dma_map);
1266                 if (ret) {
1267                         /**
1268                          * In case the mapping was already done EEXIST will be
1269                          * returned from kernel.
1270                          */
1271                         if (errno == EEXIST) {
1272                                 RTE_LOG(DEBUG, EAL,
1273                                         " Memory segment is allready mapped,"
1274                                         " skipping");
1275                         } else {
1276                                 RTE_LOG(ERR, EAL,
1277                                         "  cannot set up DMA remapping,"
1278                                         " error %i (%s)\n",
1279                                         errno, strerror(errno));
1280                                 return -1;
1281                         }
1282                 }
1283         } else {
1284                 memset(&dma_unmap, 0, sizeof(dma_unmap));
1285                 dma_unmap.argsz = sizeof(struct vfio_iommu_type1_dma_unmap);
1286                 dma_unmap.size = len;
1287                 dma_unmap.iova = iova;
1288
1289                 ret = ioctl(vfio_container_fd, VFIO_IOMMU_UNMAP_DMA,
1290                                 &dma_unmap);
1291                 if (ret) {
1292                         RTE_LOG(ERR, EAL, "  cannot clear DMA remapping, error %i (%s)\n",
1293                                         errno, strerror(errno));
1294                         return -1;
1295                 }
1296         }
1297
1298         return 0;
1299 }
1300
1301 static int
1302 vfio_type1_dma_map(int vfio_container_fd)
1303 {
1304         return rte_memseg_walk(type1_map, &vfio_container_fd);
1305 }
1306
1307 static int
1308 vfio_spapr_dma_do_map(int vfio_container_fd, uint64_t vaddr, uint64_t iova,
1309                 uint64_t len, int do_map)
1310 {
1311         struct vfio_iommu_type1_dma_map dma_map;
1312         struct vfio_iommu_type1_dma_unmap dma_unmap;
1313         int ret;
1314         struct vfio_iommu_spapr_register_memory reg = {
1315                 .argsz = sizeof(reg),
1316                 .flags = 0
1317         };
1318         reg.vaddr = (uintptr_t) vaddr;
1319         reg.size = len;
1320
1321         if (do_map != 0) {
1322                 ret = ioctl(vfio_container_fd,
1323                                 VFIO_IOMMU_SPAPR_REGISTER_MEMORY, &reg);
1324                 if (ret) {
1325                         RTE_LOG(ERR, EAL, "  cannot register vaddr for IOMMU, "
1326                                 "error %i (%s)\n", errno, strerror(errno));
1327                         return -1;
1328                 }
1329
1330                 memset(&dma_map, 0, sizeof(dma_map));
1331                 dma_map.argsz = sizeof(struct vfio_iommu_type1_dma_map);
1332                 dma_map.vaddr = vaddr;
1333                 dma_map.size = len;
1334                 dma_map.iova = iova;
1335                 dma_map.flags = VFIO_DMA_MAP_FLAG_READ |
1336                                 VFIO_DMA_MAP_FLAG_WRITE;
1337
1338                 ret = ioctl(vfio_container_fd, VFIO_IOMMU_MAP_DMA, &dma_map);
1339                 if (ret) {
1340                         /**
1341                          * In case the mapping was already done EBUSY will be
1342                          * returned from kernel.
1343                          */
1344                         if (errno == EBUSY) {
1345                                 RTE_LOG(DEBUG, EAL,
1346                                         " Memory segment is allready mapped,"
1347                                         " skipping");
1348                         } else {
1349                                 RTE_LOG(ERR, EAL,
1350                                         "  cannot set up DMA remapping,"
1351                                         " error %i (%s)\n", errno,
1352                                         strerror(errno));
1353                                 return -1;
1354                         }
1355                 }
1356
1357         } else {
1358                 ret = ioctl(vfio_container_fd,
1359                                 VFIO_IOMMU_SPAPR_UNREGISTER_MEMORY, &reg);
1360                 if (ret) {
1361                         RTE_LOG(ERR, EAL, "  cannot unregister vaddr for IOMMU, error %i (%s)\n",
1362                                         errno, strerror(errno));
1363                         return -1;
1364                 }
1365
1366                 memset(&dma_unmap, 0, sizeof(dma_unmap));
1367                 dma_unmap.argsz = sizeof(struct vfio_iommu_type1_dma_unmap);
1368                 dma_unmap.size = len;
1369                 dma_unmap.iova = iova;
1370
1371                 ret = ioctl(vfio_container_fd, VFIO_IOMMU_UNMAP_DMA,
1372                                 &dma_unmap);
1373                 if (ret) {
1374                         RTE_LOG(ERR, EAL, "  cannot clear DMA remapping, error %i (%s)\n",
1375                                         errno, strerror(errno));
1376                         return -1;
1377                 }
1378         }
1379
1380         return 0;
1381 }
1382
1383 static int
1384 vfio_spapr_map_walk(const struct rte_memseg_list *msl,
1385                 const struct rte_memseg *ms, void *arg)
1386 {
1387         int *vfio_container_fd = arg;
1388
1389         if (msl->external)
1390                 return 0;
1391
1392         return vfio_spapr_dma_do_map(*vfio_container_fd, ms->addr_64, ms->iova,
1393                         ms->len, 1);
1394 }
1395
1396 struct spapr_walk_param {
1397         uint64_t window_size;
1398         uint64_t hugepage_sz;
1399 };
1400 static int
1401 vfio_spapr_window_size_walk(const struct rte_memseg_list *msl,
1402                 const struct rte_memseg *ms, void *arg)
1403 {
1404         struct spapr_walk_param *param = arg;
1405         uint64_t max = ms->iova + ms->len;
1406
1407         if (msl->external)
1408                 return 0;
1409
1410         if (max > param->window_size) {
1411                 param->hugepage_sz = ms->hugepage_sz;
1412                 param->window_size = max;
1413         }
1414
1415         return 0;
1416 }
1417
1418 static int
1419 vfio_spapr_create_new_dma_window(int vfio_container_fd,
1420                 struct vfio_iommu_spapr_tce_create *create) {
1421         struct vfio_iommu_spapr_tce_remove remove = {
1422                 .argsz = sizeof(remove),
1423         };
1424         struct vfio_iommu_spapr_tce_info info = {
1425                 .argsz = sizeof(info),
1426         };
1427         int ret;
1428
1429         /* query spapr iommu info */
1430         ret = ioctl(vfio_container_fd, VFIO_IOMMU_SPAPR_TCE_GET_INFO, &info);
1431         if (ret) {
1432                 RTE_LOG(ERR, EAL, "  cannot get iommu info, "
1433                                 "error %i (%s)\n", errno, strerror(errno));
1434                 return -1;
1435         }
1436
1437         /* remove default DMA of 32 bit window */
1438         remove.start_addr = info.dma32_window_start;
1439         ret = ioctl(vfio_container_fd, VFIO_IOMMU_SPAPR_TCE_REMOVE, &remove);
1440         if (ret) {
1441                 RTE_LOG(ERR, EAL, "  cannot remove default DMA window, "
1442                                 "error %i (%s)\n", errno, strerror(errno));
1443                 return -1;
1444         }
1445
1446         /* create new DMA window */
1447         ret = ioctl(vfio_container_fd, VFIO_IOMMU_SPAPR_TCE_CREATE, create);
1448         if (ret) {
1449                 RTE_LOG(ERR, EAL, "  cannot create new DMA window, "
1450                                 "error %i (%s)\n", errno, strerror(errno));
1451                 return -1;
1452         }
1453
1454         if (create->start_addr != 0) {
1455                 RTE_LOG(ERR, EAL, "  DMA window start address != 0\n");
1456                 return -1;
1457         }
1458
1459         return 0;
1460 }
1461
1462 static int
1463 vfio_spapr_dma_mem_map(int vfio_container_fd, uint64_t vaddr, uint64_t iova,
1464                 uint64_t len, int do_map)
1465 {
1466         struct spapr_walk_param param;
1467         struct vfio_iommu_spapr_tce_create create = {
1468                 .argsz = sizeof(create),
1469         };
1470         struct vfio_config *vfio_cfg;
1471         struct user_mem_maps *user_mem_maps;
1472         int i, ret = 0;
1473
1474         vfio_cfg = get_vfio_cfg_by_container_fd(vfio_container_fd);
1475         if (vfio_cfg == NULL) {
1476                 RTE_LOG(ERR, EAL, "  invalid container fd!\n");
1477                 return -1;
1478         }
1479
1480         user_mem_maps = &vfio_cfg->mem_maps;
1481         rte_spinlock_recursive_lock(&user_mem_maps->lock);
1482
1483         /* check if window size needs to be adjusted */
1484         memset(&param, 0, sizeof(param));
1485
1486         /* we're inside a callback so use thread-unsafe version */
1487         if (rte_memseg_walk_thread_unsafe(vfio_spapr_window_size_walk,
1488                                 &param) < 0) {
1489                 RTE_LOG(ERR, EAL, "Could not get window size\n");
1490                 ret = -1;
1491                 goto out;
1492         }
1493
1494         /* also check user maps */
1495         for (i = 0; i < user_mem_maps->n_maps; i++) {
1496                 uint64_t max = user_mem_maps->maps[i].iova +
1497                                 user_mem_maps->maps[i].len;
1498                 create.window_size = RTE_MAX(create.window_size, max);
1499         }
1500
1501         /* sPAPR requires window size to be a power of 2 */
1502         create.window_size = rte_align64pow2(param.window_size);
1503         create.page_shift = __builtin_ctzll(param.hugepage_sz);
1504         create.levels = 1;
1505
1506         if (do_map) {
1507                 void *addr;
1508                 /* re-create window and remap the entire memory */
1509                 if (iova > create.window_size) {
1510                         if (vfio_spapr_create_new_dma_window(vfio_container_fd,
1511                                         &create) < 0) {
1512                                 RTE_LOG(ERR, EAL, "Could not create new DMA window\n");
1513                                 ret = -1;
1514                                 goto out;
1515                         }
1516                         /* we're inside a callback, so use thread-unsafe version
1517                          */
1518                         if (rte_memseg_walk_thread_unsafe(vfio_spapr_map_walk,
1519                                         &vfio_container_fd) < 0) {
1520                                 RTE_LOG(ERR, EAL, "Could not recreate DMA maps\n");
1521                                 ret = -1;
1522                                 goto out;
1523                         }
1524                         /* remap all user maps */
1525                         for (i = 0; i < user_mem_maps->n_maps; i++) {
1526                                 struct user_mem_map *map =
1527                                                 &user_mem_maps->maps[i];
1528                                 if (vfio_spapr_dma_do_map(vfio_container_fd,
1529                                                 map->addr, map->iova, map->len,
1530                                                 1)) {
1531                                         RTE_LOG(ERR, EAL, "Could not recreate user DMA maps\n");
1532                                         ret = -1;
1533                                         goto out;
1534                                 }
1535                         }
1536                 }
1537
1538                 /* now that we've remapped all of the memory that was present
1539                  * before, map the segment that we were requested to map.
1540                  *
1541                  * however, if we were called by the callback, the memory we
1542                  * were called with was already in the memseg list, so previous
1543                  * mapping should've mapped that segment already.
1544                  *
1545                  * virt2memseg_list is a relatively cheap check, so use that. if
1546                  * memory is within any memseg list, it's a memseg, so it's
1547                  * already mapped.
1548                  */
1549                 addr = (void *)(uintptr_t)vaddr;
1550                 if (rte_mem_virt2memseg_list(addr) == NULL &&
1551                                 vfio_spapr_dma_do_map(vfio_container_fd,
1552                                         vaddr, iova, len, 1) < 0) {
1553                         RTE_LOG(ERR, EAL, "Could not map segment\n");
1554                         ret = -1;
1555                         goto out;
1556                 }
1557         } else {
1558                 /* for unmap, check if iova within DMA window */
1559                 if (iova > create.window_size) {
1560                         RTE_LOG(ERR, EAL, "iova beyond DMA window for unmap");
1561                         ret = -1;
1562                         goto out;
1563                 }
1564
1565                 vfio_spapr_dma_do_map(vfio_container_fd, vaddr, iova, len, 0);
1566         }
1567 out:
1568         rte_spinlock_recursive_unlock(&user_mem_maps->lock);
1569         return ret;
1570 }
1571
1572 static int
1573 vfio_spapr_dma_map(int vfio_container_fd)
1574 {
1575         struct vfio_iommu_spapr_tce_create create = {
1576                 .argsz = sizeof(create),
1577         };
1578         struct spapr_walk_param param;
1579
1580         memset(&param, 0, sizeof(param));
1581
1582         /* create DMA window from 0 to max(phys_addr + len) */
1583         rte_memseg_walk(vfio_spapr_window_size_walk, &param);
1584
1585         /* sPAPR requires window size to be a power of 2 */
1586         create.window_size = rte_align64pow2(param.window_size);
1587         create.page_shift = __builtin_ctzll(param.hugepage_sz);
1588         create.levels = 1;
1589
1590         if (vfio_spapr_create_new_dma_window(vfio_container_fd, &create) < 0) {
1591                 RTE_LOG(ERR, EAL, "Could not create new DMA window\n");
1592                 return -1;
1593         }
1594
1595         /* map all DPDK segments for DMA. use 1:1 PA to IOVA mapping */
1596         if (rte_memseg_walk(vfio_spapr_map_walk, &vfio_container_fd) < 0)
1597                 return -1;
1598
1599         return 0;
1600 }
1601
1602 static int
1603 vfio_noiommu_dma_map(int __rte_unused vfio_container_fd)
1604 {
1605         /* No-IOMMU mode does not need DMA mapping */
1606         return 0;
1607 }
1608
1609 static int
1610 vfio_noiommu_dma_mem_map(int __rte_unused vfio_container_fd,
1611                          uint64_t __rte_unused vaddr,
1612                          uint64_t __rte_unused iova, uint64_t __rte_unused len,
1613                          int __rte_unused do_map)
1614 {
1615         /* No-IOMMU mode does not need DMA mapping */
1616         return 0;
1617 }
1618
1619 static int
1620 vfio_dma_mem_map(struct vfio_config *vfio_cfg, uint64_t vaddr, uint64_t iova,
1621                 uint64_t len, int do_map)
1622 {
1623         const struct vfio_iommu_type *t = vfio_cfg->vfio_iommu_type;
1624
1625         if (!t) {
1626                 RTE_LOG(ERR, EAL, "  VFIO support not initialized\n");
1627                 rte_errno = ENODEV;
1628                 return -1;
1629         }
1630
1631         if (!t->dma_user_map_func) {
1632                 RTE_LOG(ERR, EAL,
1633                         "  VFIO custom DMA region maping not supported by IOMMU %s\n",
1634                         t->name);
1635                 rte_errno = ENOTSUP;
1636                 return -1;
1637         }
1638
1639         return t->dma_user_map_func(vfio_cfg->vfio_container_fd, vaddr, iova,
1640                         len, do_map);
1641 }
1642
1643 static int
1644 container_dma_map(struct vfio_config *vfio_cfg, uint64_t vaddr, uint64_t iova,
1645                 uint64_t len)
1646 {
1647         struct user_mem_map *new_map;
1648         struct user_mem_maps *user_mem_maps;
1649         int ret = 0;
1650
1651         user_mem_maps = &vfio_cfg->mem_maps;
1652         rte_spinlock_recursive_lock(&user_mem_maps->lock);
1653         if (user_mem_maps->n_maps == VFIO_MAX_USER_MEM_MAPS) {
1654                 RTE_LOG(ERR, EAL, "No more space for user mem maps\n");
1655                 rte_errno = ENOMEM;
1656                 ret = -1;
1657                 goto out;
1658         }
1659         /* map the entry */
1660         if (vfio_dma_mem_map(vfio_cfg, vaddr, iova, len, 1)) {
1661                 /* technically, this will fail if there are currently no devices
1662                  * plugged in, even if a device were added later, this mapping
1663                  * might have succeeded. however, since we cannot verify if this
1664                  * is a valid mapping without having a device attached, consider
1665                  * this to be unsupported, because we can't just store any old
1666                  * mapping and pollute list of active mappings willy-nilly.
1667                  */
1668                 RTE_LOG(ERR, EAL, "Couldn't map new region for DMA\n");
1669                 ret = -1;
1670                 goto out;
1671         }
1672         /* create new user mem map entry */
1673         new_map = &user_mem_maps->maps[user_mem_maps->n_maps++];
1674         new_map->addr = vaddr;
1675         new_map->iova = iova;
1676         new_map->len = len;
1677
1678         compact_user_maps(user_mem_maps);
1679 out:
1680         rte_spinlock_recursive_unlock(&user_mem_maps->lock);
1681         return ret;
1682 }
1683
1684 static int
1685 container_dma_unmap(struct vfio_config *vfio_cfg, uint64_t vaddr, uint64_t iova,
1686                 uint64_t len)
1687 {
1688         struct user_mem_map *map, *new_map = NULL;
1689         struct user_mem_maps *user_mem_maps;
1690         int ret = 0;
1691
1692         user_mem_maps = &vfio_cfg->mem_maps;
1693         rte_spinlock_recursive_lock(&user_mem_maps->lock);
1694
1695         /* find our mapping */
1696         map = find_user_mem_map(user_mem_maps, vaddr, iova, len);
1697         if (!map) {
1698                 RTE_LOG(ERR, EAL, "Couldn't find previously mapped region\n");
1699                 rte_errno = EINVAL;
1700                 ret = -1;
1701                 goto out;
1702         }
1703         if (map->addr != vaddr || map->iova != iova || map->len != len) {
1704                 /* we're partially unmapping a previously mapped region, so we
1705                  * need to split entry into two.
1706                  */
1707                 if (user_mem_maps->n_maps == VFIO_MAX_USER_MEM_MAPS) {
1708                         RTE_LOG(ERR, EAL, "Not enough space to store partial mapping\n");
1709                         rte_errno = ENOMEM;
1710                         ret = -1;
1711                         goto out;
1712                 }
1713                 new_map = &user_mem_maps->maps[user_mem_maps->n_maps++];
1714         }
1715
1716         /* unmap the entry */
1717         if (vfio_dma_mem_map(vfio_cfg, vaddr, iova, len, 0)) {
1718                 /* there may not be any devices plugged in, so unmapping will
1719                  * fail with ENODEV/ENOTSUP rte_errno values, but that doesn't
1720                  * stop us from removing the mapping, as the assumption is we
1721                  * won't be needing this memory any more and thus will want to
1722                  * prevent it from being remapped again on hotplug. so, only
1723                  * fail if we indeed failed to unmap (e.g. if the mapping was
1724                  * within our mapped range but had invalid alignment).
1725                  */
1726                 if (rte_errno != ENODEV && rte_errno != ENOTSUP) {
1727                         RTE_LOG(ERR, EAL, "Couldn't unmap region for DMA\n");
1728                         ret = -1;
1729                         goto out;
1730                 } else {
1731                         RTE_LOG(DEBUG, EAL, "DMA unmapping failed, but removing mappings anyway\n");
1732                 }
1733         }
1734         /* remove map from the list of active mappings */
1735         if (new_map != NULL) {
1736                 adjust_map(map, new_map, vaddr, len);
1737
1738                 /* if we've created a new map by splitting, sort everything */
1739                 if (!is_null_map(new_map)) {
1740                         compact_user_maps(user_mem_maps);
1741                 } else {
1742                         /* we've created a new mapping, but it was unused */
1743                         user_mem_maps->n_maps--;
1744                 }
1745         } else {
1746                 memset(map, 0, sizeof(*map));
1747                 compact_user_maps(user_mem_maps);
1748                 user_mem_maps->n_maps--;
1749         }
1750
1751 out:
1752         rte_spinlock_recursive_unlock(&user_mem_maps->lock);
1753         return ret;
1754 }
1755
1756 int
1757 rte_vfio_dma_map(uint64_t vaddr, uint64_t iova, uint64_t len)
1758 {
1759         if (len == 0) {
1760                 rte_errno = EINVAL;
1761                 return -1;
1762         }
1763
1764         return container_dma_map(default_vfio_cfg, vaddr, iova, len);
1765 }
1766
1767 int
1768 rte_vfio_dma_unmap(uint64_t vaddr, uint64_t iova, uint64_t len)
1769 {
1770         if (len == 0) {
1771                 rte_errno = EINVAL;
1772                 return -1;
1773         }
1774
1775         return container_dma_unmap(default_vfio_cfg, vaddr, iova, len);
1776 }
1777
1778 int
1779 rte_vfio_noiommu_is_enabled(void)
1780 {
1781         int fd;
1782         ssize_t cnt;
1783         char c;
1784
1785         fd = open(VFIO_NOIOMMU_MODE, O_RDONLY);
1786         if (fd < 0) {
1787                 if (errno != ENOENT) {
1788                         RTE_LOG(ERR, EAL, "  cannot open vfio noiommu file %i (%s)\n",
1789                                         errno, strerror(errno));
1790                         return -1;
1791                 }
1792                 /*
1793                  * else the file does not exists
1794                  * i.e. noiommu is not enabled
1795                  */
1796                 return 0;
1797         }
1798
1799         cnt = read(fd, &c, 1);
1800         close(fd);
1801         if (cnt != 1) {
1802                 RTE_LOG(ERR, EAL, "  unable to read from vfio noiommu "
1803                                 "file %i (%s)\n", errno, strerror(errno));
1804                 return -1;
1805         }
1806
1807         return c == 'Y';
1808 }
1809
1810 int
1811 rte_vfio_container_create(void)
1812 {
1813         int i;
1814
1815         /* Find an empty slot to store new vfio config */
1816         for (i = 1; i < VFIO_MAX_CONTAINERS; i++) {
1817                 if (vfio_cfgs[i].vfio_container_fd == -1)
1818                         break;
1819         }
1820
1821         if (i == VFIO_MAX_CONTAINERS) {
1822                 RTE_LOG(ERR, EAL, "exceed max vfio container limit\n");
1823                 return -1;
1824         }
1825
1826         vfio_cfgs[i].vfio_container_fd = rte_vfio_get_container_fd();
1827         if (vfio_cfgs[i].vfio_container_fd < 0) {
1828                 RTE_LOG(NOTICE, EAL, "fail to create a new container\n");
1829                 return -1;
1830         }
1831
1832         return vfio_cfgs[i].vfio_container_fd;
1833 }
1834
1835 int __rte_experimental
1836 rte_vfio_container_destroy(int container_fd)
1837 {
1838         struct vfio_config *vfio_cfg;
1839         int i;
1840
1841         vfio_cfg = get_vfio_cfg_by_container_fd(container_fd);
1842         if (vfio_cfg == NULL) {
1843                 RTE_LOG(ERR, EAL, "Invalid container fd\n");
1844                 return -1;
1845         }
1846
1847         for (i = 0; i < VFIO_MAX_GROUPS; i++)
1848                 if (vfio_cfg->vfio_groups[i].group_num != -1)
1849                         rte_vfio_container_group_unbind(container_fd,
1850                                 vfio_cfg->vfio_groups[i].group_num);
1851
1852         close(container_fd);
1853         vfio_cfg->vfio_container_fd = -1;
1854         vfio_cfg->vfio_active_groups = 0;
1855         vfio_cfg->vfio_iommu_type = NULL;
1856
1857         return 0;
1858 }
1859
1860 int
1861 rte_vfio_container_group_bind(int container_fd, int iommu_group_num)
1862 {
1863         struct vfio_config *vfio_cfg;
1864
1865         vfio_cfg = get_vfio_cfg_by_container_fd(container_fd);
1866         if (vfio_cfg == NULL) {
1867                 RTE_LOG(ERR, EAL, "Invalid container fd\n");
1868                 return -1;
1869         }
1870
1871         return vfio_get_group_fd(vfio_cfg, iommu_group_num);
1872 }
1873
1874 int
1875 rte_vfio_container_group_unbind(int container_fd, int iommu_group_num)
1876 {
1877         struct vfio_config *vfio_cfg;
1878         struct vfio_group *cur_grp = NULL;
1879         int i;
1880
1881         vfio_cfg = get_vfio_cfg_by_container_fd(container_fd);
1882         if (vfio_cfg == NULL) {
1883                 RTE_LOG(ERR, EAL, "Invalid container fd\n");
1884                 return -1;
1885         }
1886
1887         for (i = 0; i < VFIO_MAX_GROUPS; i++) {
1888                 if (vfio_cfg->vfio_groups[i].group_num == iommu_group_num) {
1889                         cur_grp = &vfio_cfg->vfio_groups[i];
1890                         break;
1891                 }
1892         }
1893
1894         /* This should not happen */
1895         if (i == VFIO_MAX_GROUPS || cur_grp == NULL) {
1896                 RTE_LOG(ERR, EAL, "Specified group number not found\n");
1897                 return -1;
1898         }
1899
1900         if (cur_grp->fd >= 0 && close(cur_grp->fd) < 0) {
1901                 RTE_LOG(ERR, EAL, "Error when closing vfio_group_fd for"
1902                         " iommu_group_num %d\n", iommu_group_num);
1903                 return -1;
1904         }
1905         cur_grp->group_num = -1;
1906         cur_grp->fd = -1;
1907         cur_grp->devices = 0;
1908         vfio_cfg->vfio_active_groups--;
1909
1910         return 0;
1911 }
1912
1913 int
1914 rte_vfio_container_dma_map(int container_fd, uint64_t vaddr, uint64_t iova,
1915                 uint64_t len)
1916 {
1917         struct vfio_config *vfio_cfg;
1918
1919         if (len == 0) {
1920                 rte_errno = EINVAL;
1921                 return -1;
1922         }
1923
1924         vfio_cfg = get_vfio_cfg_by_container_fd(container_fd);
1925         if (vfio_cfg == NULL) {
1926                 RTE_LOG(ERR, EAL, "Invalid container fd\n");
1927                 return -1;
1928         }
1929
1930         return container_dma_map(vfio_cfg, vaddr, iova, len);
1931 }
1932
1933 int
1934 rte_vfio_container_dma_unmap(int container_fd, uint64_t vaddr, uint64_t iova,
1935                 uint64_t len)
1936 {
1937         struct vfio_config *vfio_cfg;
1938
1939         if (len == 0) {
1940                 rte_errno = EINVAL;
1941                 return -1;
1942         }
1943
1944         vfio_cfg = get_vfio_cfg_by_container_fd(container_fd);
1945         if (vfio_cfg == NULL) {
1946                 RTE_LOG(ERR, EAL, "Invalid container fd\n");
1947                 return -1;
1948         }
1949
1950         return container_dma_unmap(vfio_cfg, vaddr, iova, len);
1951 }
1952
1953 #else
1954
1955 int
1956 rte_vfio_dma_map(uint64_t __rte_unused vaddr, __rte_unused uint64_t iova,
1957                   __rte_unused uint64_t len)
1958 {
1959         return -1;
1960 }
1961
1962 int
1963 rte_vfio_dma_unmap(uint64_t __rte_unused vaddr, uint64_t __rte_unused iova,
1964                     __rte_unused uint64_t len)
1965 {
1966         return -1;
1967 }
1968
1969 int
1970 rte_vfio_setup_device(__rte_unused const char *sysfs_base,
1971                 __rte_unused const char *dev_addr,
1972                 __rte_unused int *vfio_dev_fd,
1973                 __rte_unused struct vfio_device_info *device_info)
1974 {
1975         return -1;
1976 }
1977
1978 int
1979 rte_vfio_release_device(__rte_unused const char *sysfs_base,
1980                 __rte_unused const char *dev_addr, __rte_unused int fd)
1981 {
1982         return -1;
1983 }
1984
1985 int
1986 rte_vfio_enable(__rte_unused const char *modname)
1987 {
1988         return -1;
1989 }
1990
1991 int
1992 rte_vfio_is_enabled(__rte_unused const char *modname)
1993 {
1994         return -1;
1995 }
1996
1997 int
1998 rte_vfio_noiommu_is_enabled(void)
1999 {
2000         return -1;
2001 }
2002
2003 int
2004 rte_vfio_clear_group(__rte_unused int vfio_group_fd)
2005 {
2006         return -1;
2007 }
2008
2009 int
2010 rte_vfio_get_group_num(__rte_unused const char *sysfs_base,
2011                 __rte_unused const char *dev_addr,
2012                 __rte_unused int *iommu_group_num)
2013 {
2014         return -1;
2015 }
2016
2017 int
2018 rte_vfio_get_container_fd(void)
2019 {
2020         return -1;
2021 }
2022
2023 int
2024 rte_vfio_get_group_fd(__rte_unused int iommu_group_num)
2025 {
2026         return -1;
2027 }
2028
2029 int
2030 rte_vfio_container_create(void)
2031 {
2032         return -1;
2033 }
2034
2035 int
2036 rte_vfio_container_destroy(__rte_unused int container_fd)
2037 {
2038         return -1;
2039 }
2040
2041 int
2042 rte_vfio_container_group_bind(__rte_unused int container_fd,
2043                 __rte_unused int iommu_group_num)
2044 {
2045         return -1;
2046 }
2047
2048 int
2049 rte_vfio_container_group_unbind(__rte_unused int container_fd,
2050                 __rte_unused int iommu_group_num)
2051 {
2052         return -1;
2053 }
2054
2055 int
2056 rte_vfio_container_dma_map(__rte_unused int container_fd,
2057                 __rte_unused uint64_t vaddr,
2058                 __rte_unused uint64_t iova,
2059                 __rte_unused uint64_t len)
2060 {
2061         return -1;
2062 }
2063
2064 int
2065 rte_vfio_container_dma_unmap(__rte_unused int container_fd,
2066                 __rte_unused uint64_t vaddr,
2067                 __rte_unused uint64_t iova,
2068                 __rte_unused uint64_t len)
2069 {
2070         return -1;
2071 }
2072
2073 #endif /* VFIO_PRESENT */