]> Git Repo - linux.git/blame - drivers/vfio/container.c
vfio: Wrap vfio group module init/clean code into helpers
[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 518
2a3dab19
JG
519 /*
520 * The container fd has been assigned with VFIO_GROUP_SET_CONTAINER but
521 * VFIO_SET_IOMMU hasn't been done yet.
522 */
523 if (!group->container->iommu_driver)
cdc71fe4
JG
524 return -EINVAL;
525
526 if (group->type == VFIO_NO_IOMMU && !capable(CAP_SYS_RAWIO))
527 return -EPERM;
528
529 get_file(group->opened_file);
530 group->container_users++;
531 return 0;
532}
533
04f930c3 534void vfio_group_unuse_container(struct vfio_group *group)
cdc71fe4 535{
04f930c3 536 lockdep_assert_held(&group->group_lock);
bab6fabc 537
04f930c3
JG
538 WARN_ON(group->container_users <= 1);
539 group->container_users--;
540 fput(group->opened_file);
cdc71fe4
JG
541}
542
4741f2e9
JG
543int vfio_container_pin_pages(struct vfio_container *container,
544 struct iommu_group *iommu_group, dma_addr_t iova,
545 int npage, int prot, struct page **pages)
cdc71fe4 546{
4741f2e9 547 struct vfio_iommu_driver *driver = container->iommu_driver;
cdc71fe4
JG
548
549 if (npage > VFIO_PIN_PAGES_MAX_ENTRIES)
550 return -E2BIG;
551
4741f2e9
JG
552 if (unlikely(!driver || !driver->ops->pin_pages))
553 return -ENOTTY;
554 return driver->ops->pin_pages(container->iommu_data, iommu_group, iova,
555 npage, prot, pages);
cdc71fe4 556}
cdc71fe4 557
4741f2e9
JG
558void vfio_container_unpin_pages(struct vfio_container *container,
559 dma_addr_t iova, int npage)
cdc71fe4 560{
cdc71fe4
JG
561 if (WARN_ON(npage <= 0 || npage > VFIO_PIN_PAGES_MAX_ENTRIES))
562 return;
563
4741f2e9
JG
564 container->iommu_driver->ops->unpin_pages(container->iommu_data, iova,
565 npage);
cdc71fe4 566}
cdc71fe4 567
4741f2e9
JG
568int vfio_container_dma_rw(struct vfio_container *container, dma_addr_t iova,
569 void *data, size_t len, bool write)
cdc71fe4 570{
4741f2e9 571 struct vfio_iommu_driver *driver = container->iommu_driver;
cdc71fe4 572
4741f2e9
JG
573 if (unlikely(!driver || !driver->ops->dma_rw))
574 return -ENOTTY;
575 return driver->ops->dma_rw(container->iommu_data, iova, data, len,
576 write);
cdc71fe4 577}
cdc71fe4
JG
578
579int __init vfio_container_init(void)
580{
581 int ret;
582
583 mutex_init(&vfio.iommu_drivers_lock);
584 INIT_LIST_HEAD(&vfio.iommu_drivers_list);
585
586 ret = misc_register(&vfio_dev);
587 if (ret) {
588 pr_err("vfio: misc device register failed\n");
589 return ret;
590 }
591
592 if (IS_ENABLED(CONFIG_VFIO_NOIOMMU)) {
593 ret = vfio_register_iommu_driver(&vfio_noiommu_ops);
594 if (ret)
595 goto err_misc;
596 }
597 return 0;
598
599err_misc:
600 misc_deregister(&vfio_dev);
601 return ret;
602}
603
604void vfio_container_cleanup(void)
605{
606 if (IS_ENABLED(CONFIG_VFIO_NOIOMMU))
607 vfio_unregister_iommu_driver(&vfio_noiommu_ops);
608 misc_deregister(&vfio_dev);
609 mutex_destroy(&vfio.iommu_drivers_lock);
610}
81ab9890
JG
611
612MODULE_ALIAS_MISCDEV(VFIO_MINOR);
613MODULE_ALIAS("devname:vfio/vfio");
This page took 0.116123 seconds and 4 git commands to generate.