]> Git Repo - linux.git/blame - drivers/vfio/container.c
vfio: Use IOMMU_CAP_ENFORCE_CACHE_COHERENCY for vfio_file_enforced_coherent()
[linux.git] / drivers / vfio / container.c
CommitLineData
cdc71fe4
JG
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2012 Red Hat, Inc. All rights reserved.
4 *
5 * VFIO container (/dev/vfio/vfio)
6 */
7#include <linux/file.h>
8#include <linux/slab.h>
9#include <linux/fs.h>
10#include <linux/capability.h>
11#include <linux/iommu.h>
12#include <linux/miscdevice.h>
13#include <linux/vfio.h>
14#include <uapi/linux/vfio.h>
15
16#include "vfio.h"
17
18struct vfio_container {
19 struct kref kref;
20 struct list_head group_list;
21 struct rw_semaphore group_lock;
22 struct vfio_iommu_driver *iommu_driver;
23 void *iommu_data;
24 bool noiommu;
25};
26
27static struct vfio {
28 struct list_head iommu_drivers_list;
29 struct mutex iommu_drivers_lock;
30} vfio;
31
32#ifdef CONFIG_VFIO_NOIOMMU
33bool vfio_noiommu __read_mostly;
34module_param_named(enable_unsafe_noiommu_mode,
35 vfio_noiommu, bool, S_IRUGO | S_IWUSR);
36MODULE_PARM_DESC(enable_unsafe_noiommu_mode, "Enable UNSAFE, no-IOMMU mode. This mode provides no device isolation, no DMA translation, no host kernel protection, cannot be used for device assignment to virtual machines, requires RAWIO permissions, and will taint the kernel. If you do not know what this is for, step away. (default: false)");
37#endif
38
39static void *vfio_noiommu_open(unsigned long arg)
40{
41 if (arg != VFIO_NOIOMMU_IOMMU)
42 return ERR_PTR(-EINVAL);
43 if (!capable(CAP_SYS_RAWIO))
44 return ERR_PTR(-EPERM);
45
46 return NULL;
47}
48
49static void vfio_noiommu_release(void *iommu_data)
50{
51}
52
53static long vfio_noiommu_ioctl(void *iommu_data,
54 unsigned int cmd, unsigned long arg)
55{
56 if (cmd == VFIO_CHECK_EXTENSION)
57 return vfio_noiommu && (arg == VFIO_NOIOMMU_IOMMU) ? 1 : 0;
58
59 return -ENOTTY;
60}
61
62static int vfio_noiommu_attach_group(void *iommu_data,
63 struct iommu_group *iommu_group, enum vfio_group_type type)
64{
65 return 0;
66}
67
68static void vfio_noiommu_detach_group(void *iommu_data,
69 struct iommu_group *iommu_group)
70{
71}
72
73static const struct vfio_iommu_driver_ops vfio_noiommu_ops = {
74 .name = "vfio-noiommu",
75 .owner = THIS_MODULE,
76 .open = vfio_noiommu_open,
77 .release = vfio_noiommu_release,
78 .ioctl = vfio_noiommu_ioctl,
79 .attach_group = vfio_noiommu_attach_group,
80 .detach_group = vfio_noiommu_detach_group,
81};
82
83/*
84 * Only noiommu containers can use vfio-noiommu and noiommu containers can only
85 * use vfio-noiommu.
86 */
87static bool vfio_iommu_driver_allowed(struct vfio_container *container,
88 const struct vfio_iommu_driver *driver)
89{
90 if (!IS_ENABLED(CONFIG_VFIO_NOIOMMU))
91 return true;
92 return container->noiommu == (driver->ops == &vfio_noiommu_ops);
93}
94
95/*
96 * IOMMU driver registration
97 */
98int vfio_register_iommu_driver(const struct vfio_iommu_driver_ops *ops)
99{
100 struct vfio_iommu_driver *driver, *tmp;
101
102 if (WARN_ON(!ops->register_device != !ops->unregister_device))
103 return -EINVAL;
104
105 driver = kzalloc(sizeof(*driver), GFP_KERNEL);
106 if (!driver)
107 return -ENOMEM;
108
109 driver->ops = ops;
110
111 mutex_lock(&vfio.iommu_drivers_lock);
112
113 /* Check for duplicates */
114 list_for_each_entry(tmp, &vfio.iommu_drivers_list, vfio_next) {
115 if (tmp->ops == ops) {
116 mutex_unlock(&vfio.iommu_drivers_lock);
117 kfree(driver);
118 return -EINVAL;
119 }
120 }
121
122 list_add(&driver->vfio_next, &vfio.iommu_drivers_list);
123
124 mutex_unlock(&vfio.iommu_drivers_lock);
125
126 return 0;
127}
128EXPORT_SYMBOL_GPL(vfio_register_iommu_driver);
129
130void vfio_unregister_iommu_driver(const struct vfio_iommu_driver_ops *ops)
131{
132 struct vfio_iommu_driver *driver;
133
134 mutex_lock(&vfio.iommu_drivers_lock);
135 list_for_each_entry(driver, &vfio.iommu_drivers_list, vfio_next) {
136 if (driver->ops == ops) {
137 list_del(&driver->vfio_next);
138 mutex_unlock(&vfio.iommu_drivers_lock);
139 kfree(driver);
140 return;
141 }
142 }
143 mutex_unlock(&vfio.iommu_drivers_lock);
144}
145EXPORT_SYMBOL_GPL(vfio_unregister_iommu_driver);
146
147/*
148 * Container objects - containers are created when /dev/vfio/vfio is
149 * opened, but their lifecycle extends until the last user is done, so
150 * it's freed via kref. Must support container/group/device being
151 * closed in any order.
152 */
153static void vfio_container_release(struct kref *kref)
154{
155 struct vfio_container *container;
156 container = container_of(kref, struct vfio_container, kref);
157
158 kfree(container);
159}
160
161static void vfio_container_get(struct vfio_container *container)
162{
163 kref_get(&container->kref);
164}
165
166static void vfio_container_put(struct vfio_container *container)
167{
168 kref_put(&container->kref, vfio_container_release);
169}
170
171void vfio_device_container_register(struct vfio_device *device)
172{
173 struct vfio_iommu_driver *iommu_driver =
174 device->group->container->iommu_driver;
175
176 if (iommu_driver && iommu_driver->ops->register_device)
177 iommu_driver->ops->register_device(
178 device->group->container->iommu_data, device);
179}
180
181void vfio_device_container_unregister(struct vfio_device *device)
182{
183 struct vfio_iommu_driver *iommu_driver =
184 device->group->container->iommu_driver;
185
186 if (iommu_driver && iommu_driver->ops->unregister_device)
187 iommu_driver->ops->unregister_device(
188 device->group->container->iommu_data, device);
189}
190
0d8227b6
JG
191static long
192vfio_container_ioctl_check_extension(struct vfio_container *container,
193 unsigned long arg)
cdc71fe4
JG
194{
195 struct vfio_iommu_driver *driver;
196 long ret = 0;
197
198 down_read(&container->group_lock);
199
200 driver = container->iommu_driver;
201
202 switch (arg) {
203 /* No base extensions yet */
204 default:
205 /*
206 * If no driver is set, poll all registered drivers for
207 * extensions and return the first positive result. If
208 * a driver is already set, further queries will be passed
209 * only to that driver.
210 */
211 if (!driver) {
212 mutex_lock(&vfio.iommu_drivers_lock);
213 list_for_each_entry(driver, &vfio.iommu_drivers_list,
214 vfio_next) {
215
216 if (!list_empty(&container->group_list) &&
217 !vfio_iommu_driver_allowed(container,
218 driver))
219 continue;
220 if (!try_module_get(driver->ops->owner))
221 continue;
222
223 ret = driver->ops->ioctl(NULL,
224 VFIO_CHECK_EXTENSION,
225 arg);
226 module_put(driver->ops->owner);
227 if (ret > 0)
228 break;
229 }
230 mutex_unlock(&vfio.iommu_drivers_lock);
231 } else
232 ret = driver->ops->ioctl(container->iommu_data,
233 VFIO_CHECK_EXTENSION, arg);
234 }
235
236 up_read(&container->group_lock);
237
238 return ret;
239}
240
241/* hold write lock on container->group_lock */
242static int __vfio_container_attach_groups(struct vfio_container *container,
243 struct vfio_iommu_driver *driver,
244 void *data)
245{
246 struct vfio_group *group;
247 int ret = -ENODEV;
248
249 list_for_each_entry(group, &container->group_list, container_next) {
250 ret = driver->ops->attach_group(data, group->iommu_group,
251 group->type);
252 if (ret)
253 goto unwind;
254 }
255
256 return ret;
257
258unwind:
259 list_for_each_entry_continue_reverse(group, &container->group_list,
260 container_next) {
261 driver->ops->detach_group(data, group->iommu_group);
262 }
263
264 return ret;
265}
266
267static long vfio_ioctl_set_iommu(struct vfio_container *container,
268 unsigned long arg)
269{
270 struct vfio_iommu_driver *driver;
271 long ret = -ENODEV;
272
273 down_write(&container->group_lock);
274
275 /*
276 * The container is designed to be an unprivileged interface while
277 * the group can be assigned to specific users. Therefore, only by
278 * adding a group to a container does the user get the privilege of
279 * enabling the iommu, which may allocate finite resources. There
280 * is no unset_iommu, but by removing all the groups from a container,
281 * the container is deprivileged and returns to an unset state.
282 */
283 if (list_empty(&container->group_list) || container->iommu_driver) {
284 up_write(&container->group_lock);
285 return -EINVAL;
286 }
287
288 mutex_lock(&vfio.iommu_drivers_lock);
289 list_for_each_entry(driver, &vfio.iommu_drivers_list, vfio_next) {
290 void *data;
291
292 if (!vfio_iommu_driver_allowed(container, driver))
293 continue;
294 if (!try_module_get(driver->ops->owner))
295 continue;
296
297 /*
298 * The arg magic for SET_IOMMU is the same as CHECK_EXTENSION,
299 * so test which iommu driver reported support for this
300 * extension and call open on them. We also pass them the
301 * magic, allowing a single driver to support multiple
302 * interfaces if they'd like.
303 */
304 if (driver->ops->ioctl(NULL, VFIO_CHECK_EXTENSION, arg) <= 0) {
305 module_put(driver->ops->owner);
306 continue;
307 }
308
309 data = driver->ops->open(arg);
310 if (IS_ERR(data)) {
311 ret = PTR_ERR(data);
312 module_put(driver->ops->owner);
313 continue;
314 }
315
316 ret = __vfio_container_attach_groups(container, driver, data);
317 if (ret) {
318 driver->ops->release(data);
319 module_put(driver->ops->owner);
320 continue;
321 }
322
323 container->iommu_driver = driver;
324 container->iommu_data = data;
325 break;
326 }
327
328 mutex_unlock(&vfio.iommu_drivers_lock);
329 up_write(&container->group_lock);
330
331 return ret;
332}
333
334static long vfio_fops_unl_ioctl(struct file *filep,
335 unsigned int cmd, unsigned long arg)
336{
337 struct vfio_container *container = filep->private_data;
338 struct vfio_iommu_driver *driver;
339 void *data;
340 long ret = -EINVAL;
341
342 if (!container)
343 return ret;
344
345 switch (cmd) {
346 case VFIO_GET_API_VERSION:
347 ret = VFIO_API_VERSION;
348 break;
349 case VFIO_CHECK_EXTENSION:
350 ret = vfio_container_ioctl_check_extension(container, arg);
351 break;
352 case VFIO_SET_IOMMU:
353 ret = vfio_ioctl_set_iommu(container, arg);
354 break;
355 default:
356 driver = container->iommu_driver;
357 data = container->iommu_data;
358
359 if (driver) /* passthrough all unrecognized ioctls */
360 ret = driver->ops->ioctl(data, cmd, arg);
361 }
362
363 return ret;
364}
365
366static int vfio_fops_open(struct inode *inode, struct file *filep)
367{
368 struct vfio_container *container;
369
370 container = kzalloc(sizeof(*container), GFP_KERNEL);
371 if (!container)
372 return -ENOMEM;
373
374 INIT_LIST_HEAD(&container->group_list);
375 init_rwsem(&container->group_lock);
376 kref_init(&container->kref);
377
378 filep->private_data = container;
379
380 return 0;
381}
382
383static int vfio_fops_release(struct inode *inode, struct file *filep)
384{
385 struct vfio_container *container = filep->private_data;
386 struct vfio_iommu_driver *driver = container->iommu_driver;
387
388 if (driver && driver->ops->notify)
389 driver->ops->notify(container->iommu_data,
390 VFIO_IOMMU_CONTAINER_CLOSE);
391
392 filep->private_data = NULL;
393
394 vfio_container_put(container);
395
396 return 0;
397}
398
399static const struct file_operations vfio_fops = {
400 .owner = THIS_MODULE,
401 .open = vfio_fops_open,
402 .release = vfio_fops_release,
403 .unlocked_ioctl = vfio_fops_unl_ioctl,
404 .compat_ioctl = compat_ptr_ioctl,
405};
406
407struct vfio_container *vfio_container_from_file(struct file *file)
408{
409 struct vfio_container *container;
410
411 /* Sanity check, is this really our fd? */
412 if (file->f_op != &vfio_fops)
413 return NULL;
414
415 container = file->private_data;
416 WARN_ON(!container); /* fget ensures we don't race vfio_release */
417 return container;
418}
419
420static struct miscdevice vfio_dev = {
421 .minor = VFIO_MINOR,
422 .name = "vfio",
423 .fops = &vfio_fops,
424 .nodename = "vfio/vfio",
425 .mode = S_IRUGO | S_IWUGO,
426};
427
428int vfio_container_attach_group(struct vfio_container *container,
429 struct vfio_group *group)
430{
431 struct vfio_iommu_driver *driver;
432 int ret = 0;
433
c82e81ab 434 lockdep_assert_held(&group->group_lock);
cdc71fe4
JG
435
436 if (group->type == VFIO_NO_IOMMU && !capable(CAP_SYS_RAWIO))
437 return -EPERM;
438
439 down_write(&container->group_lock);
440
441 /* Real groups and fake groups cannot mix */
442 if (!list_empty(&container->group_list) &&
443 container->noiommu != (group->type == VFIO_NO_IOMMU)) {
444 ret = -EPERM;
445 goto out_unlock_container;
446 }
447
448 if (group->type == VFIO_IOMMU) {
449 ret = iommu_group_claim_dma_owner(group->iommu_group, group);
450 if (ret)
451 goto out_unlock_container;
452 }
453
454 driver = container->iommu_driver;
455 if (driver) {
456 ret = driver->ops->attach_group(container->iommu_data,
457 group->iommu_group,
458 group->type);
459 if (ret) {
460 if (group->type == VFIO_IOMMU)
461 iommu_group_release_dma_owner(
462 group->iommu_group);
463 goto out_unlock_container;
464 }
465 }
466
467 group->container = container;
468 group->container_users = 1;
469 container->noiommu = (group->type == VFIO_NO_IOMMU);
470 list_add(&group->container_next, &container->group_list);
471
472 /* Get a reference on the container and mark a user within the group */
473 vfio_container_get(container);
474
475out_unlock_container:
476 up_write(&container->group_lock);
477 return ret;
478}
479
480void vfio_group_detach_container(struct vfio_group *group)
481{
482 struct vfio_container *container = group->container;
483 struct vfio_iommu_driver *driver;
484
c82e81ab 485 lockdep_assert_held(&group->group_lock);
cdc71fe4
JG
486 WARN_ON(group->container_users != 1);
487
488 down_write(&container->group_lock);
489
490 driver = container->iommu_driver;
491 if (driver)
492 driver->ops->detach_group(container->iommu_data,
493 group->iommu_group);
494
495 if (group->type == VFIO_IOMMU)
496 iommu_group_release_dma_owner(group->iommu_group);
497
498 group->container = NULL;
499 group->container_users = 0;
500 list_del(&group->container_next);
501
502 /* Detaching the last group deprivileges a container, remove iommu */
503 if (driver && list_empty(&container->group_list)) {
504 driver->ops->release(container->iommu_data);
505 module_put(driver->ops->owner);
506 container->iommu_driver = NULL;
507 container->iommu_data = NULL;
508 }
509
510 up_write(&container->group_lock);
511
512 vfio_container_put(container);
513}
514
04f930c3 515int vfio_group_use_container(struct vfio_group *group)
cdc71fe4 516{
c82e81ab 517 lockdep_assert_held(&group->group_lock);
cdc71fe4
JG
518
519 if (!group->container || !group->container->iommu_driver ||
520 WARN_ON(!group->container_users))
521 return -EINVAL;
522
523 if (group->type == VFIO_NO_IOMMU && !capable(CAP_SYS_RAWIO))
524 return -EPERM;
525
526 get_file(group->opened_file);
527 group->container_users++;
528 return 0;
529}
530
04f930c3 531void vfio_group_unuse_container(struct vfio_group *group)
cdc71fe4 532{
04f930c3 533 lockdep_assert_held(&group->group_lock);
bab6fabc 534
04f930c3
JG
535 WARN_ON(group->container_users <= 1);
536 group->container_users--;
537 fput(group->opened_file);
cdc71fe4
JG
538}
539
540/*
541 * Pin contiguous user pages and return their associated host pages for local
542 * domain only.
543 * @device [in] : device
544 * @iova [in] : starting IOVA of user pages to be pinned.
545 * @npage [in] : count of pages to be pinned. This count should not
546 * be greater than VFIO_PIN_PAGES_MAX_ENTRIES.
547 * @prot [in] : protection flags
548 * @pages[out] : array of host pages
549 * Return error or number of pages pinned.
550 *
551 * A driver may only call this function if the vfio_device was created
552 * by vfio_register_emulated_iommu_dev().
553 */
554int vfio_pin_pages(struct vfio_device *device, dma_addr_t iova,
555 int npage, int prot, struct page **pages)
556{
557 struct vfio_container *container;
558 struct vfio_group *group = device->group;
559 struct vfio_iommu_driver *driver;
560 int ret;
561
562 if (!pages || !npage || !vfio_assert_device_open(device))
563 return -EINVAL;
564
565 if (npage > VFIO_PIN_PAGES_MAX_ENTRIES)
566 return -E2BIG;
567
568 /* group->container cannot change while a vfio device is open */
569 container = group->container;
570 driver = container->iommu_driver;
571 if (likely(driver && driver->ops->pin_pages))
572 ret = driver->ops->pin_pages(container->iommu_data,
573 group->iommu_group, iova,
574 npage, prot, pages);
575 else
576 ret = -ENOTTY;
577
578 return ret;
579}
580EXPORT_SYMBOL(vfio_pin_pages);
581
582/*
583 * Unpin contiguous host pages for local domain only.
584 * @device [in] : device
585 * @iova [in] : starting address of user pages to be unpinned.
586 * @npage [in] : count of pages to be unpinned. This count should not
587 * be greater than VFIO_PIN_PAGES_MAX_ENTRIES.
588 */
589void vfio_unpin_pages(struct vfio_device *device, dma_addr_t iova, int npage)
590{
591 struct vfio_container *container;
592 struct vfio_iommu_driver *driver;
593
594 if (WARN_ON(npage <= 0 || npage > VFIO_PIN_PAGES_MAX_ENTRIES))
595 return;
596
597 if (WARN_ON(!vfio_assert_device_open(device)))
598 return;
599
600 /* group->container cannot change while a vfio device is open */
601 container = device->group->container;
602 driver = container->iommu_driver;
603
604 driver->ops->unpin_pages(container->iommu_data, iova, npage);
605}
606EXPORT_SYMBOL(vfio_unpin_pages);
607
608/*
609 * This interface allows the CPUs to perform some sort of virtual DMA on
610 * behalf of the device.
611 *
612 * CPUs read/write from/into a range of IOVAs pointing to user space memory
613 * into/from a kernel buffer.
614 *
615 * As the read/write of user space memory is conducted via the CPUs and is
616 * not a real device DMA, it is not necessary to pin the user space memory.
617 *
618 * @device [in] : VFIO device
619 * @iova [in] : base IOVA of a user space buffer
620 * @data [in] : pointer to kernel buffer
621 * @len [in] : kernel buffer length
622 * @write : indicate read or write
623 * Return error code on failure or 0 on success.
624 */
625int vfio_dma_rw(struct vfio_device *device, dma_addr_t iova, void *data,
626 size_t len, bool write)
627{
628 struct vfio_container *container;
629 struct vfio_iommu_driver *driver;
630 int ret = 0;
631
632 if (!data || len <= 0 || !vfio_assert_device_open(device))
633 return -EINVAL;
634
635 /* group->container cannot change while a vfio device is open */
636 container = device->group->container;
637 driver = container->iommu_driver;
638
639 if (likely(driver && driver->ops->dma_rw))
640 ret = driver->ops->dma_rw(container->iommu_data,
641 iova, data, len, write);
642 else
643 ret = -ENOTTY;
644 return ret;
645}
646EXPORT_SYMBOL(vfio_dma_rw);
647
648int __init vfio_container_init(void)
649{
650 int ret;
651
652 mutex_init(&vfio.iommu_drivers_lock);
653 INIT_LIST_HEAD(&vfio.iommu_drivers_list);
654
655 ret = misc_register(&vfio_dev);
656 if (ret) {
657 pr_err("vfio: misc device register failed\n");
658 return ret;
659 }
660
661 if (IS_ENABLED(CONFIG_VFIO_NOIOMMU)) {
662 ret = vfio_register_iommu_driver(&vfio_noiommu_ops);
663 if (ret)
664 goto err_misc;
665 }
666 return 0;
667
668err_misc:
669 misc_deregister(&vfio_dev);
670 return ret;
671}
672
673void vfio_container_cleanup(void)
674{
675 if (IS_ENABLED(CONFIG_VFIO_NOIOMMU))
676 vfio_unregister_iommu_driver(&vfio_noiommu_ops);
677 misc_deregister(&vfio_dev);
678 mutex_destroy(&vfio.iommu_drivers_lock);
679}
This page took 0.135649 seconds and 4 git commands to generate.