]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/iommu/iommu.c
r8152: limit the RX buffer size of RTL8153A for USB 2.0
[mirror_ubuntu-hirsute-kernel.git] / drivers / iommu / iommu.c
CommitLineData
45051539 1// SPDX-License-Identifier: GPL-2.0-only
fc2100eb
JR
2/*
3 * Copyright (C) 2007-2008 Advanced Micro Devices, Inc.
63ce3ae8 4 * Author: Joerg Roedel <jroedel@suse.de>
fc2100eb
JR
5 */
6
92e7066f 7#define pr_fmt(fmt) "iommu: " fmt
7d3002cc 8
905d66c1 9#include <linux/device.h>
40998188 10#include <linux/kernel.h>
fc2100eb
JR
11#include <linux/bug.h>
12#include <linux/types.h>
c1af7b40
PG
13#include <linux/init.h>
14#include <linux/export.h>
60db4027 15#include <linux/slab.h>
fc2100eb
JR
16#include <linux/errno.h>
17#include <linux/iommu.h>
d72e31c9
AW
18#include <linux/idr.h>
19#include <linux/notifier.h>
20#include <linux/err.h>
104a1c13 21#include <linux/pci.h>
f096c061 22#include <linux/bitops.h>
57f98d2f 23#include <linux/property.h>
eab03e2a 24#include <linux/fsl/mc.h>
25f003de 25#include <linux/module.h>
7f6db171 26#include <trace/events/iommu.h>
d72e31c9
AW
27
28static struct kset *iommu_group_kset;
e38d1f13 29static DEFINE_IDA(iommu_group_ida);
22bb182c
JR
30
31static unsigned int iommu_def_domain_type __read_mostly;
68a6efe8 32static bool iommu_dma_strict __read_mostly = true;
faf14989 33static u32 iommu_cmd_line __read_mostly;
d72e31c9
AW
34
35struct iommu_group {
36 struct kobject kobj;
37 struct kobject *devices_kobj;
38 struct list_head devices;
39 struct mutex mutex;
40 struct blocking_notifier_head notifier;
41 void *iommu_data;
42 void (*iommu_data_release)(void *iommu_data);
43 char *name;
44 int id;
53723dc5 45 struct iommu_domain *default_domain;
e39cb8a3 46 struct iommu_domain *domain;
41df6dcc 47 struct list_head entry;
d72e31c9
AW
48};
49
c09e22d5 50struct group_device {
d72e31c9
AW
51 struct list_head list;
52 struct device *dev;
53 char *name;
54};
55
56struct iommu_group_attribute {
57 struct attribute attr;
58 ssize_t (*show)(struct iommu_group *group, char *buf);
59 ssize_t (*store)(struct iommu_group *group,
60 const char *buf, size_t count);
61};
62
bc7d12b9 63static const char * const iommu_group_resv_type_string[] = {
adfd3738
EA
64 [IOMMU_RESV_DIRECT] = "direct",
65 [IOMMU_RESV_DIRECT_RELAXABLE] = "direct-relaxable",
66 [IOMMU_RESV_RESERVED] = "reserved",
67 [IOMMU_RESV_MSI] = "msi",
68 [IOMMU_RESV_SW_MSI] = "msi",
bc7d12b9
EA
69};
70
faf14989
JR
71#define IOMMU_CMD_LINE_DMA_API BIT(0)
72
73static void iommu_set_cmd_line_dma_api(void)
74{
75 iommu_cmd_line |= IOMMU_CMD_LINE_DMA_API;
76}
77
22bb182c 78static bool iommu_cmd_line_dma_api(void)
faf14989
JR
79{
80 return !!(iommu_cmd_line & IOMMU_CMD_LINE_DMA_API);
81}
82
79659190
JR
83static int iommu_alloc_default_domain(struct iommu_group *group,
84 struct device *dev);
6e1aa204
JR
85static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
86 unsigned type);
87static int __iommu_attach_device(struct iommu_domain *domain,
88 struct device *dev);
89static int __iommu_attach_group(struct iommu_domain *domain,
90 struct iommu_group *group);
91static void __iommu_detach_group(struct iommu_domain *domain,
92 struct iommu_group *group);
ce574c27
JR
93static int iommu_create_device_direct_mappings(struct iommu_group *group,
94 struct device *dev);
1b032ec1 95static struct iommu_group *iommu_group_get_for_dev(struct device *dev);
08a27c1c
SPP
96static ssize_t iommu_group_store_type(struct iommu_group *group,
97 const char *buf, size_t count);
6e1aa204 98
d72e31c9
AW
99#define IOMMU_GROUP_ATTR(_name, _mode, _show, _store) \
100struct iommu_group_attribute iommu_group_attr_##_name = \
101 __ATTR(_name, _mode, _show, _store)
fc2100eb 102
d72e31c9
AW
103#define to_iommu_group_attr(_attr) \
104 container_of(_attr, struct iommu_group_attribute, attr)
105#define to_iommu_group(_kobj) \
106 container_of(_kobj, struct iommu_group, kobj)
fc2100eb 107
b0119e87
JR
108static LIST_HEAD(iommu_device_list);
109static DEFINE_SPINLOCK(iommu_device_lock);
110
5fa9e7c5
JR
111/*
112 * Use a function instead of an array here because the domain-type is a
113 * bit-field, so an array would waste memory.
114 */
115static const char *iommu_domain_type_str(unsigned int t)
116{
117 switch (t) {
118 case IOMMU_DOMAIN_BLOCKED:
119 return "Blocked";
120 case IOMMU_DOMAIN_IDENTITY:
121 return "Passthrough";
122 case IOMMU_DOMAIN_UNMANAGED:
123 return "Unmanaged";
124 case IOMMU_DOMAIN_DMA:
125 return "Translated";
126 default:
127 return "Unknown";
128 }
129}
130
131static int __init iommu_subsys_init(void)
132{
22bb182c
JR
133 bool cmd_line = iommu_cmd_line_dma_api();
134
135 if (!cmd_line) {
136 if (IS_ENABLED(CONFIG_IOMMU_DEFAULT_PASSTHROUGH))
137 iommu_set_default_passthrough(false);
138 else
139 iommu_set_default_translated(false);
2cc13bb4 140
2896ba40
JR
141 if (iommu_default_passthrough() && mem_encrypt_active()) {
142 pr_info("Memory encryption detected - Disabling default IOMMU Passthrough\n");
2cc13bb4
JR
143 iommu_set_default_translated(false);
144 }
22bb182c
JR
145 }
146
147 pr_info("Default domain type: %s %s\n",
148 iommu_domain_type_str(iommu_def_domain_type),
149 cmd_line ? "(set via kernel command line)" : "");
5fa9e7c5
JR
150
151 return 0;
152}
153subsys_initcall(iommu_subsys_init);
154
b0119e87
JR
155int iommu_device_register(struct iommu_device *iommu)
156{
157 spin_lock(&iommu_device_lock);
158 list_add_tail(&iommu->list, &iommu_device_list);
159 spin_unlock(&iommu_device_lock);
b0119e87
JR
160 return 0;
161}
a7ba5c3d 162EXPORT_SYMBOL_GPL(iommu_device_register);
b0119e87
JR
163
164void iommu_device_unregister(struct iommu_device *iommu)
165{
166 spin_lock(&iommu_device_lock);
167 list_del(&iommu->list);
168 spin_unlock(&iommu_device_lock);
169}
a7ba5c3d 170EXPORT_SYMBOL_GPL(iommu_device_unregister);
b0119e87 171
045a7042 172static struct dev_iommu *dev_iommu_get(struct device *dev)
0c830e6b 173{
045a7042 174 struct dev_iommu *param = dev->iommu;
0c830e6b
JP
175
176 if (param)
177 return param;
178
179 param = kzalloc(sizeof(*param), GFP_KERNEL);
180 if (!param)
181 return NULL;
182
183 mutex_init(&param->lock);
045a7042 184 dev->iommu = param;
0c830e6b
JP
185 return param;
186}
187
045a7042 188static void dev_iommu_free(struct device *dev)
0c830e6b 189{
5375e874 190 iommu_fwspec_free(dev);
045a7042
JR
191 kfree(dev->iommu);
192 dev->iommu = NULL;
0c830e6b
JP
193}
194
41df6dcc 195static int __iommu_probe_device(struct device *dev, struct list_head *group_list)
cc5aed44
JR
196{
197 const struct iommu_ops *ops = dev->bus->iommu_ops;
a6a4c7e2
JR
198 struct iommu_device *iommu_dev;
199 struct iommu_group *group;
0c830e6b 200 int ret;
cc5aed44 201
0c830e6b 202 if (!ops)
f38338cf 203 return -ENODEV;
cc5aed44 204
045a7042 205 if (!dev_iommu_get(dev))
0c830e6b 206 return -ENOMEM;
cc5aed44 207
25f003de
WD
208 if (!try_module_get(ops->owner)) {
209 ret = -EINVAL;
4e8906f0 210 goto err_free;
25f003de
WD
211 }
212
a6a4c7e2 213 iommu_dev = ops->probe_device(dev);
4e8906f0
JR
214 if (IS_ERR(iommu_dev)) {
215 ret = PTR_ERR(iommu_dev);
216 goto out_module_put;
217 }
a6a4c7e2
JR
218
219 dev->iommu->iommu_dev = iommu_dev;
220
221 group = iommu_group_get_for_dev(dev);
deac0b3b 222 if (IS_ERR(group)) {
a6a4c7e2
JR
223 ret = PTR_ERR(group);
224 goto out_release;
225 }
226 iommu_group_put(group);
227
41df6dcc
JR
228 if (group_list && !group->default_domain && list_empty(&group->entry))
229 list_add_tail(&group->entry, group_list);
230
a6a4c7e2 231 iommu_device_link(iommu_dev, dev);
25f003de
WD
232
233 return 0;
dc9de8a2 234
a6a4c7e2
JR
235out_release:
236 ops->release_device(dev);
237
4e8906f0 238out_module_put:
25f003de 239 module_put(ops->owner);
4e8906f0
JR
240
241err_free:
045a7042 242 dev_iommu_free(dev);
4e8906f0 243
dc9de8a2 244 return ret;
cc5aed44
JR
245}
246
3eeeb45c 247int iommu_probe_device(struct device *dev)
cc5aed44
JR
248{
249 const struct iommu_ops *ops = dev->bus->iommu_ops;
cf193888
JR
250 struct iommu_group *group;
251 int ret;
cc5aed44 252
cf193888
JR
253 ret = __iommu_probe_device(dev, NULL);
254 if (ret)
255 goto err_out;
256
79659190 257 group = iommu_group_get(dev);
058236ee
YY
258 if (!group) {
259 ret = -ENODEV;
79659190 260 goto err_release;
058236ee 261 }
79659190 262
cf193888
JR
263 /*
264 * Try to allocate a default domain - needs support from the
265 * IOMMU driver. There are still some drivers which don't
266 * support default domains, so the return value is not yet
267 * checked.
268 */
79659190 269 iommu_alloc_default_domain(group, dev);
cf193888 270
77c38c8c 271 if (group->default_domain) {
cf193888 272 ret = __iommu_attach_device(group->default_domain, dev);
77c38c8c
SK
273 if (ret) {
274 iommu_group_put(group);
275 goto err_release;
276 }
277 }
cf193888 278
ce574c27
JR
279 iommu_create_device_direct_mappings(group, dev);
280
cf193888
JR
281 iommu_group_put(group);
282
cf193888
JR
283 if (ops->probe_finalize)
284 ops->probe_finalize(dev);
285
286 return 0;
287
288err_release:
289 iommu_release_device(dev);
3eeeb45c 290
cf193888
JR
291err_out:
292 return ret;
0c830e6b 293
cc5aed44
JR
294}
295
3eeeb45c 296void iommu_release_device(struct device *dev)
cc5aed44
JR
297{
298 const struct iommu_ops *ops = dev->bus->iommu_ops;
25f003de 299
3eeeb45c
JR
300 if (!dev->iommu)
301 return;
a6a4c7e2
JR
302
303 iommu_device_unlink(dev->iommu->iommu_dev, dev);
a6a4c7e2
JR
304
305 ops->release_device(dev);
0c830e6b 306
9ac85451 307 iommu_group_remove_device(dev);
a6a4c7e2
JR
308 module_put(ops->owner);
309 dev_iommu_free(dev);
cc5aed44 310}
53723dc5 311
fccb4e3b
WD
312static int __init iommu_set_def_domain_type(char *str)
313{
314 bool pt;
7f9584df 315 int ret;
fccb4e3b 316
7f9584df
AS
317 ret = kstrtobool(str, &pt);
318 if (ret)
319 return ret;
fccb4e3b 320
adab0b07
JR
321 if (pt)
322 iommu_set_default_passthrough(true);
323 else
324 iommu_set_default_translated(true);
faf14989 325
fccb4e3b
WD
326 return 0;
327}
328early_param("iommu.passthrough", iommu_set_def_domain_type);
329
68a6efe8
ZL
330static int __init iommu_dma_setup(char *str)
331{
332 return kstrtobool(str, &iommu_dma_strict);
333}
334early_param("iommu.strict", iommu_dma_setup);
335
d72e31c9
AW
336static ssize_t iommu_group_attr_show(struct kobject *kobj,
337 struct attribute *__attr, char *buf)
1460432c 338{
d72e31c9
AW
339 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
340 struct iommu_group *group = to_iommu_group(kobj);
341 ssize_t ret = -EIO;
1460432c 342
d72e31c9
AW
343 if (attr->show)
344 ret = attr->show(group, buf);
345 return ret;
346}
347
348static ssize_t iommu_group_attr_store(struct kobject *kobj,
349 struct attribute *__attr,
350 const char *buf, size_t count)
351{
352 struct iommu_group_attribute *attr = to_iommu_group_attr(__attr);
353 struct iommu_group *group = to_iommu_group(kobj);
354 ssize_t ret = -EIO;
1460432c 355
d72e31c9
AW
356 if (attr->store)
357 ret = attr->store(group, buf, count);
358 return ret;
1460432c 359}
1460432c 360
d72e31c9
AW
361static const struct sysfs_ops iommu_group_sysfs_ops = {
362 .show = iommu_group_attr_show,
363 .store = iommu_group_attr_store,
364};
1460432c 365
d72e31c9
AW
366static int iommu_group_create_file(struct iommu_group *group,
367 struct iommu_group_attribute *attr)
368{
369 return sysfs_create_file(&group->kobj, &attr->attr);
1460432c 370}
1460432c 371
d72e31c9
AW
372static void iommu_group_remove_file(struct iommu_group *group,
373 struct iommu_group_attribute *attr)
374{
375 sysfs_remove_file(&group->kobj, &attr->attr);
376}
377
378static ssize_t iommu_group_show_name(struct iommu_group *group, char *buf)
379{
380 return sprintf(buf, "%s\n", group->name);
381}
382
6c65fb31
EA
383/**
384 * iommu_insert_resv_region - Insert a new region in the
385 * list of reserved regions.
386 * @new: new region to insert
387 * @regions: list of regions
388 *
4dbd258f
EA
389 * Elements are sorted by start address and overlapping segments
390 * of the same type are merged.
6c65fb31 391 */
1b0b2a84
WY
392static int iommu_insert_resv_region(struct iommu_resv_region *new,
393 struct list_head *regions)
6c65fb31 394{
4dbd258f
EA
395 struct iommu_resv_region *iter, *tmp, *nr, *top;
396 LIST_HEAD(stack);
397
398 nr = iommu_alloc_resv_region(new->start, new->length,
399 new->prot, new->type);
400 if (!nr)
401 return -ENOMEM;
402
403 /* First add the new element based on start address sorting */
404 list_for_each_entry(iter, regions, list) {
405 if (nr->start < iter->start ||
406 (nr->start == iter->start && nr->type <= iter->type))
407 break;
408 }
409 list_add_tail(&nr->list, &iter->list);
410
411 /* Merge overlapping segments of type nr->type in @regions, if any */
412 list_for_each_entry_safe(iter, tmp, regions, list) {
413 phys_addr_t top_end, iter_end = iter->start + iter->length - 1;
414
4c80ba39
EA
415 /* no merge needed on elements of different types than @new */
416 if (iter->type != new->type) {
4dbd258f
EA
417 list_move_tail(&iter->list, &stack);
418 continue;
419 }
420
421 /* look for the last stack element of same type as @iter */
422 list_for_each_entry_reverse(top, &stack, list)
423 if (top->type == iter->type)
424 goto check_overlap;
425
426 list_move_tail(&iter->list, &stack);
427 continue;
428
429check_overlap:
430 top_end = top->start + top->length - 1;
431
432 if (iter->start > top_end + 1) {
433 list_move_tail(&iter->list, &stack);
6c65fb31 434 } else {
4dbd258f
EA
435 top->length = max(top_end, iter_end) - top->start + 1;
436 list_del(&iter->list);
437 kfree(iter);
6c65fb31
EA
438 }
439 }
4dbd258f 440 list_splice(&stack, regions);
6c65fb31
EA
441 return 0;
442}
443
444static int
445iommu_insert_device_resv_regions(struct list_head *dev_resv_regions,
446 struct list_head *group_resv_regions)
447{
448 struct iommu_resv_region *entry;
a514a6e2 449 int ret = 0;
6c65fb31
EA
450
451 list_for_each_entry(entry, dev_resv_regions, list) {
452 ret = iommu_insert_resv_region(entry, group_resv_regions);
453 if (ret)
454 break;
455 }
456 return ret;
457}
458
459int iommu_get_group_resv_regions(struct iommu_group *group,
460 struct list_head *head)
461{
8d2932dd 462 struct group_device *device;
6c65fb31
EA
463 int ret = 0;
464
465 mutex_lock(&group->mutex);
466 list_for_each_entry(device, &group->devices, list) {
467 struct list_head dev_resv_regions;
468
469 INIT_LIST_HEAD(&dev_resv_regions);
470 iommu_get_resv_regions(device->dev, &dev_resv_regions);
471 ret = iommu_insert_device_resv_regions(&dev_resv_regions, head);
472 iommu_put_resv_regions(device->dev, &dev_resv_regions);
473 if (ret)
474 break;
475 }
476 mutex_unlock(&group->mutex);
477 return ret;
478}
479EXPORT_SYMBOL_GPL(iommu_get_group_resv_regions);
480
bc7d12b9
EA
481static ssize_t iommu_group_show_resv_regions(struct iommu_group *group,
482 char *buf)
483{
484 struct iommu_resv_region *region, *next;
485 struct list_head group_resv_regions;
486 char *str = buf;
487
488 INIT_LIST_HEAD(&group_resv_regions);
489 iommu_get_group_resv_regions(group, &group_resv_regions);
490
491 list_for_each_entry_safe(region, next, &group_resv_regions, list) {
492 str += sprintf(str, "0x%016llx 0x%016llx %s\n",
493 (long long int)region->start,
494 (long long int)(region->start +
495 region->length - 1),
496 iommu_group_resv_type_string[region->type]);
497 kfree(region);
498 }
499
500 return (str - buf);
501}
502
c52c72d3
OJ
503static ssize_t iommu_group_show_type(struct iommu_group *group,
504 char *buf)
505{
506 char *type = "unknown\n";
507
0b8a96a3 508 mutex_lock(&group->mutex);
c52c72d3
OJ
509 if (group->default_domain) {
510 switch (group->default_domain->type) {
511 case IOMMU_DOMAIN_BLOCKED:
512 type = "blocked\n";
513 break;
514 case IOMMU_DOMAIN_IDENTITY:
515 type = "identity\n";
516 break;
517 case IOMMU_DOMAIN_UNMANAGED:
518 type = "unmanaged\n";
519 break;
520 case IOMMU_DOMAIN_DMA:
24f307d8 521 type = "DMA\n";
c52c72d3
OJ
522 break;
523 }
524 }
0b8a96a3 525 mutex_unlock(&group->mutex);
c52c72d3
OJ
526 strcpy(buf, type);
527
528 return strlen(type);
529}
530
d72e31c9
AW
531static IOMMU_GROUP_ATTR(name, S_IRUGO, iommu_group_show_name, NULL);
532
bc7d12b9
EA
533static IOMMU_GROUP_ATTR(reserved_regions, 0444,
534 iommu_group_show_resv_regions, NULL);
535
08a27c1c
SPP
536static IOMMU_GROUP_ATTR(type, 0644, iommu_group_show_type,
537 iommu_group_store_type);
c52c72d3 538
d72e31c9
AW
539static void iommu_group_release(struct kobject *kobj)
540{
541 struct iommu_group *group = to_iommu_group(kobj);
542
269aa808
JR
543 pr_debug("Releasing group %d\n", group->id);
544
d72e31c9
AW
545 if (group->iommu_data_release)
546 group->iommu_data_release(group->iommu_data);
547
feccf398 548 ida_simple_remove(&iommu_group_ida, group->id);
d72e31c9 549
53723dc5
JR
550 if (group->default_domain)
551 iommu_domain_free(group->default_domain);
552
d72e31c9
AW
553 kfree(group->name);
554 kfree(group);
555}
556
557static struct kobj_type iommu_group_ktype = {
558 .sysfs_ops = &iommu_group_sysfs_ops,
559 .release = iommu_group_release,
560};
561
562/**
563 * iommu_group_alloc - Allocate a new group
d72e31c9
AW
564 *
565 * This function is called by an iommu driver to allocate a new iommu
566 * group. The iommu group represents the minimum granularity of the iommu.
567 * Upon successful return, the caller holds a reference to the supplied
568 * group in order to hold the group until devices are added. Use
569 * iommu_group_put() to release this extra reference count, allowing the
570 * group to be automatically reclaimed once it has no devices or external
571 * references.
572 */
573struct iommu_group *iommu_group_alloc(void)
1460432c 574{
d72e31c9
AW
575 struct iommu_group *group;
576 int ret;
577
578 group = kzalloc(sizeof(*group), GFP_KERNEL);
579 if (!group)
580 return ERR_PTR(-ENOMEM);
581
582 group->kobj.kset = iommu_group_kset;
583 mutex_init(&group->mutex);
584 INIT_LIST_HEAD(&group->devices);
41df6dcc 585 INIT_LIST_HEAD(&group->entry);
d72e31c9
AW
586 BLOCKING_INIT_NOTIFIER_HEAD(&group->notifier);
587
feccf398
HK
588 ret = ida_simple_get(&iommu_group_ida, 0, 0, GFP_KERNEL);
589 if (ret < 0) {
d72e31c9 590 kfree(group);
feccf398 591 return ERR_PTR(ret);
d72e31c9 592 }
feccf398 593 group->id = ret;
1460432c 594
d72e31c9
AW
595 ret = kobject_init_and_add(&group->kobj, &iommu_group_ktype,
596 NULL, "%d", group->id);
597 if (ret) {
feccf398 598 ida_simple_remove(&iommu_group_ida, group->id);
7cc31613 599 kobject_put(&group->kobj);
d72e31c9
AW
600 return ERR_PTR(ret);
601 }
602
603 group->devices_kobj = kobject_create_and_add("devices", &group->kobj);
604 if (!group->devices_kobj) {
605 kobject_put(&group->kobj); /* triggers .release & free */
606 return ERR_PTR(-ENOMEM);
607 }
608
609 /*
610 * The devices_kobj holds a reference on the group kobject, so
611 * as long as that exists so will the group. We can therefore
612 * use the devices_kobj for reference counting.
613 */
614 kobject_put(&group->kobj);
615
bc7d12b9
EA
616 ret = iommu_group_create_file(group,
617 &iommu_group_attr_reserved_regions);
618 if (ret)
619 return ERR_PTR(ret);
620
c52c72d3
OJ
621 ret = iommu_group_create_file(group, &iommu_group_attr_type);
622 if (ret)
623 return ERR_PTR(ret);
624
269aa808
JR
625 pr_debug("Allocated group %d\n", group->id);
626
d72e31c9
AW
627 return group;
628}
629EXPORT_SYMBOL_GPL(iommu_group_alloc);
630
aa16bea9
AK
631struct iommu_group *iommu_group_get_by_id(int id)
632{
633 struct kobject *group_kobj;
634 struct iommu_group *group;
635 const char *name;
636
637 if (!iommu_group_kset)
638 return NULL;
639
640 name = kasprintf(GFP_KERNEL, "%d", id);
641 if (!name)
642 return NULL;
643
644 group_kobj = kset_find_obj(iommu_group_kset, name);
645 kfree(name);
646
647 if (!group_kobj)
648 return NULL;
649
650 group = container_of(group_kobj, struct iommu_group, kobj);
651 BUG_ON(group->id != id);
652
653 kobject_get(group->devices_kobj);
654 kobject_put(&group->kobj);
655
656 return group;
657}
658EXPORT_SYMBOL_GPL(iommu_group_get_by_id);
659
d72e31c9
AW
660/**
661 * iommu_group_get_iommudata - retrieve iommu_data registered for a group
662 * @group: the group
663 *
664 * iommu drivers can store data in the group for use when doing iommu
665 * operations. This function provides a way to retrieve it. Caller
666 * should hold a group reference.
667 */
668void *iommu_group_get_iommudata(struct iommu_group *group)
669{
670 return group->iommu_data;
671}
672EXPORT_SYMBOL_GPL(iommu_group_get_iommudata);
673
674/**
675 * iommu_group_set_iommudata - set iommu_data for a group
676 * @group: the group
677 * @iommu_data: new data
678 * @release: release function for iommu_data
679 *
680 * iommu drivers can store data in the group for use when doing iommu
681 * operations. This function provides a way to set the data after
682 * the group has been allocated. Caller should hold a group reference.
683 */
684void iommu_group_set_iommudata(struct iommu_group *group, void *iommu_data,
685 void (*release)(void *iommu_data))
1460432c 686{
d72e31c9
AW
687 group->iommu_data = iommu_data;
688 group->iommu_data_release = release;
689}
690EXPORT_SYMBOL_GPL(iommu_group_set_iommudata);
1460432c 691
d72e31c9
AW
692/**
693 * iommu_group_set_name - set name for a group
694 * @group: the group
695 * @name: name
696 *
697 * Allow iommu driver to set a name for a group. When set it will
698 * appear in a name attribute file under the group in sysfs.
699 */
700int iommu_group_set_name(struct iommu_group *group, const char *name)
701{
702 int ret;
703
704 if (group->name) {
705 iommu_group_remove_file(group, &iommu_group_attr_name);
706 kfree(group->name);
707 group->name = NULL;
708 if (!name)
709 return 0;
710 }
711
712 group->name = kstrdup(name, GFP_KERNEL);
713 if (!group->name)
714 return -ENOMEM;
715
716 ret = iommu_group_create_file(group, &iommu_group_attr_name);
717 if (ret) {
718 kfree(group->name);
719 group->name = NULL;
720 return ret;
721 }
1460432c
AW
722
723 return 0;
724}
d72e31c9 725EXPORT_SYMBOL_GPL(iommu_group_set_name);
1460432c 726
ce574c27
JR
727static int iommu_create_device_direct_mappings(struct iommu_group *group,
728 struct device *dev)
beed2821
JR
729{
730 struct iommu_domain *domain = group->default_domain;
e5b5234a 731 struct iommu_resv_region *entry;
beed2821
JR
732 struct list_head mappings;
733 unsigned long pg_size;
734 int ret = 0;
735
736 if (!domain || domain->type != IOMMU_DOMAIN_DMA)
737 return 0;
738
d16e0faa 739 BUG_ON(!domain->pgsize_bitmap);
beed2821 740
d16e0faa 741 pg_size = 1UL << __ffs(domain->pgsize_bitmap);
beed2821
JR
742 INIT_LIST_HEAD(&mappings);
743
e5b5234a 744 iommu_get_resv_regions(dev, &mappings);
beed2821
JR
745
746 /* We need to consider overlapping regions for different devices */
747 list_for_each_entry(entry, &mappings, list) {
748 dma_addr_t start, end, addr;
093b32a8 749 size_t map_size = 0;
beed2821 750
e5b5234a
EA
751 if (domain->ops->apply_resv_region)
752 domain->ops->apply_resv_region(dev, domain, entry);
33b21a6b 753
beed2821
JR
754 start = ALIGN(entry->start, pg_size);
755 end = ALIGN(entry->start + entry->length, pg_size);
756
adfd3738
EA
757 if (entry->type != IOMMU_RESV_DIRECT &&
758 entry->type != IOMMU_RESV_DIRECT_RELAXABLE)
544a25d9
EA
759 continue;
760
093b32a8 761 for (addr = start; addr <= end; addr += pg_size) {
beed2821
JR
762 phys_addr_t phys_addr;
763
093b32a8
YW
764 if (addr == end)
765 goto map_end;
766
beed2821 767 phys_addr = iommu_iova_to_phys(domain, addr);
093b32a8
YW
768 if (!phys_addr) {
769 map_size += pg_size;
beed2821 770 continue;
093b32a8 771 }
beed2821 772
093b32a8
YW
773map_end:
774 if (map_size) {
775 ret = iommu_map(domain, addr - map_size,
776 addr - map_size, map_size,
777 entry->prot);
778 if (ret)
779 goto out;
780 map_size = 0;
781 }
beed2821
JR
782 }
783
784 }
785
aae4c8e2 786 iommu_flush_iotlb_all(domain);
add02cfd 787
beed2821 788out:
e5b5234a 789 iommu_put_resv_regions(dev, &mappings);
beed2821
JR
790
791 return ret;
792}
793
bd421264
JR
794static bool iommu_is_attach_deferred(struct iommu_domain *domain,
795 struct device *dev)
796{
797 if (domain->ops->is_attach_deferred)
798 return domain->ops->is_attach_deferred(domain, dev);
799
800 return false;
801}
802
d72e31c9
AW
803/**
804 * iommu_group_add_device - add a device to an iommu group
805 * @group: the group into which to add the device (reference should be held)
806 * @dev: the device
807 *
808 * This function is called by an iommu driver to add a device into a
809 * group. Adding a device increments the group reference count.
810 */
811int iommu_group_add_device(struct iommu_group *group, struct device *dev)
1460432c 812{
d72e31c9 813 int ret, i = 0;
c09e22d5 814 struct group_device *device;
d72e31c9
AW
815
816 device = kzalloc(sizeof(*device), GFP_KERNEL);
817 if (!device)
818 return -ENOMEM;
819
820 device->dev = dev;
1460432c 821
d72e31c9 822 ret = sysfs_create_link(&dev->kobj, &group->kobj, "iommu_group");
797a8b4d
RM
823 if (ret)
824 goto err_free_device;
d72e31c9
AW
825
826 device->name = kasprintf(GFP_KERNEL, "%s", kobject_name(&dev->kobj));
827rename:
828 if (!device->name) {
797a8b4d
RM
829 ret = -ENOMEM;
830 goto err_remove_link;
d72e31c9 831 }
1460432c 832
d72e31c9
AW
833 ret = sysfs_create_link_nowarn(group->devices_kobj,
834 &dev->kobj, device->name);
835 if (ret) {
d72e31c9
AW
836 if (ret == -EEXIST && i >= 0) {
837 /*
838 * Account for the slim chance of collision
839 * and append an instance to the name.
840 */
797a8b4d 841 kfree(device->name);
d72e31c9
AW
842 device->name = kasprintf(GFP_KERNEL, "%s.%d",
843 kobject_name(&dev->kobj), i++);
844 goto rename;
845 }
797a8b4d 846 goto err_free_name;
d72e31c9
AW
847 }
848
849 kobject_get(group->devices_kobj);
850
851 dev->iommu_group = group;
852
853 mutex_lock(&group->mutex);
854 list_add_tail(&device->list, &group->devices);
bd421264 855 if (group->domain && !iommu_is_attach_deferred(group->domain, dev))
797a8b4d 856 ret = __iommu_attach_device(group->domain, dev);
d72e31c9 857 mutex_unlock(&group->mutex);
797a8b4d
RM
858 if (ret)
859 goto err_put_group;
d72e31c9
AW
860
861 /* Notify any listeners about change to group. */
862 blocking_notifier_call_chain(&group->notifier,
863 IOMMU_GROUP_NOTIFY_ADD_DEVICE, dev);
d1cf7e82
SK
864
865 trace_add_device_to_group(group->id, dev);
269aa808 866
780da9e4 867 dev_info(dev, "Adding to iommu group %d\n", group->id);
269aa808 868
1460432c 869 return 0;
797a8b4d
RM
870
871err_put_group:
872 mutex_lock(&group->mutex);
873 list_del(&device->list);
874 mutex_unlock(&group->mutex);
875 dev->iommu_group = NULL;
876 kobject_put(group->devices_kobj);
7d4e6ccd 877 sysfs_remove_link(group->devices_kobj, device->name);
797a8b4d
RM
878err_free_name:
879 kfree(device->name);
880err_remove_link:
881 sysfs_remove_link(&dev->kobj, "iommu_group");
882err_free_device:
883 kfree(device);
780da9e4 884 dev_err(dev, "Failed to add to iommu group %d: %d\n", group->id, ret);
797a8b4d 885 return ret;
1460432c 886}
d72e31c9 887EXPORT_SYMBOL_GPL(iommu_group_add_device);
1460432c 888
d72e31c9
AW
889/**
890 * iommu_group_remove_device - remove a device from it's current group
891 * @dev: device to be removed
892 *
893 * This function is called by an iommu driver to remove the device from
894 * it's current group. This decrements the iommu group reference count.
895 */
896void iommu_group_remove_device(struct device *dev)
897{
898 struct iommu_group *group = dev->iommu_group;
c09e22d5 899 struct group_device *tmp_device, *device = NULL;
d72e31c9 900
780da9e4 901 dev_info(dev, "Removing from iommu group %d\n", group->id);
269aa808 902
d72e31c9
AW
903 /* Pre-notify listeners that a device is being removed. */
904 blocking_notifier_call_chain(&group->notifier,
905 IOMMU_GROUP_NOTIFY_DEL_DEVICE, dev);
906
907 mutex_lock(&group->mutex);
908 list_for_each_entry(tmp_device, &group->devices, list) {
909 if (tmp_device->dev == dev) {
910 device = tmp_device;
911 list_del(&device->list);
912 break;
913 }
914 }
915 mutex_unlock(&group->mutex);
916
917 if (!device)
918 return;
919
920 sysfs_remove_link(group->devices_kobj, device->name);
921 sysfs_remove_link(&dev->kobj, "iommu_group");
922
2e757086
SK
923 trace_remove_device_from_group(group->id, dev);
924
d72e31c9
AW
925 kfree(device->name);
926 kfree(device);
927 dev->iommu_group = NULL;
928 kobject_put(group->devices_kobj);
929}
930EXPORT_SYMBOL_GPL(iommu_group_remove_device);
931
426a2738
JR
932static int iommu_group_device_count(struct iommu_group *group)
933{
c09e22d5 934 struct group_device *entry;
426a2738
JR
935 int ret = 0;
936
937 list_for_each_entry(entry, &group->devices, list)
938 ret++;
939
940 return ret;
941}
942
d72e31c9
AW
943/**
944 * iommu_group_for_each_dev - iterate over each device in the group
945 * @group: the group
946 * @data: caller opaque data to be passed to callback function
947 * @fn: caller supplied callback function
948 *
949 * This function is called by group users to iterate over group devices.
950 * Callers should hold a reference count to the group during callback.
951 * The group->mutex is held across callbacks, which will block calls to
952 * iommu_group_add/remove_device.
953 */
e39cb8a3
JR
954static int __iommu_group_for_each_dev(struct iommu_group *group, void *data,
955 int (*fn)(struct device *, void *))
d72e31c9 956{
c09e22d5 957 struct group_device *device;
d72e31c9
AW
958 int ret = 0;
959
d72e31c9
AW
960 list_for_each_entry(device, &group->devices, list) {
961 ret = fn(device->dev, data);
962 if (ret)
963 break;
964 }
e39cb8a3
JR
965 return ret;
966}
967
968
969int iommu_group_for_each_dev(struct iommu_group *group, void *data,
970 int (*fn)(struct device *, void *))
971{
972 int ret;
973
974 mutex_lock(&group->mutex);
975 ret = __iommu_group_for_each_dev(group, data, fn);
d72e31c9 976 mutex_unlock(&group->mutex);
e39cb8a3 977
d72e31c9
AW
978 return ret;
979}
980EXPORT_SYMBOL_GPL(iommu_group_for_each_dev);
981
982/**
983 * iommu_group_get - Return the group for a device and increment reference
984 * @dev: get the group that this device belongs to
985 *
986 * This function is called by iommu drivers and users to get the group
987 * for the specified device. If found, the group is returned and the group
988 * reference in incremented, else NULL.
989 */
990struct iommu_group *iommu_group_get(struct device *dev)
991{
992 struct iommu_group *group = dev->iommu_group;
993
994 if (group)
995 kobject_get(group->devices_kobj);
996
997 return group;
998}
999EXPORT_SYMBOL_GPL(iommu_group_get);
1000
13f59a78
RM
1001/**
1002 * iommu_group_ref_get - Increment reference on a group
1003 * @group: the group to use, must not be NULL
1004 *
1005 * This function is called by iommu drivers to take additional references on an
1006 * existing group. Returns the given group for convenience.
1007 */
1008struct iommu_group *iommu_group_ref_get(struct iommu_group *group)
1009{
1010 kobject_get(group->devices_kobj);
1011 return group;
1012}
a7ba5c3d 1013EXPORT_SYMBOL_GPL(iommu_group_ref_get);
13f59a78 1014
d72e31c9
AW
1015/**
1016 * iommu_group_put - Decrement group reference
1017 * @group: the group to use
1018 *
1019 * This function is called by iommu drivers and users to release the
1020 * iommu group. Once the reference count is zero, the group is released.
1021 */
1022void iommu_group_put(struct iommu_group *group)
1023{
1024 if (group)
1025 kobject_put(group->devices_kobj);
1026}
1027EXPORT_SYMBOL_GPL(iommu_group_put);
1028
1029/**
1030 * iommu_group_register_notifier - Register a notifier for group changes
1031 * @group: the group to watch
1032 * @nb: notifier block to signal
1033 *
1034 * This function allows iommu group users to track changes in a group.
1035 * See include/linux/iommu.h for actions sent via this notifier. Caller
1036 * should hold a reference to the group throughout notifier registration.
1037 */
1038int iommu_group_register_notifier(struct iommu_group *group,
1039 struct notifier_block *nb)
1040{
1041 return blocking_notifier_chain_register(&group->notifier, nb);
1042}
1043EXPORT_SYMBOL_GPL(iommu_group_register_notifier);
1044
1045/**
1046 * iommu_group_unregister_notifier - Unregister a notifier
1047 * @group: the group to watch
1048 * @nb: notifier block to signal
1049 *
1050 * Unregister a previously registered group notifier block.
1051 */
1052int iommu_group_unregister_notifier(struct iommu_group *group,
1053 struct notifier_block *nb)
1054{
1055 return blocking_notifier_chain_unregister(&group->notifier, nb);
1056}
1057EXPORT_SYMBOL_GPL(iommu_group_unregister_notifier);
1058
0c830e6b
JP
1059/**
1060 * iommu_register_device_fault_handler() - Register a device fault handler
1061 * @dev: the device
1062 * @handler: the fault handler
1063 * @data: private data passed as argument to the handler
1064 *
1065 * When an IOMMU fault event is received, this handler gets called with the
bf3255b3
JPB
1066 * fault event and data as argument. The handler should return 0 on success. If
1067 * the fault is recoverable (IOMMU_FAULT_PAGE_REQ), the consumer should also
1068 * complete the fault by calling iommu_page_response() with one of the following
1069 * response code:
1070 * - IOMMU_PAGE_RESP_SUCCESS: retry the translation
1071 * - IOMMU_PAGE_RESP_INVALID: terminate the fault
1072 * - IOMMU_PAGE_RESP_FAILURE: terminate the fault and stop reporting
1073 * page faults if possible.
0c830e6b
JP
1074 *
1075 * Return 0 if the fault handler was installed successfully, or an error.
1076 */
1077int iommu_register_device_fault_handler(struct device *dev,
1078 iommu_dev_fault_handler_t handler,
1079 void *data)
1080{
045a7042 1081 struct dev_iommu *param = dev->iommu;
0c830e6b
JP
1082 int ret = 0;
1083
1084 if (!param)
1085 return -EINVAL;
1086
1087 mutex_lock(&param->lock);
1088 /* Only allow one fault handler registered for each device */
1089 if (param->fault_param) {
1090 ret = -EBUSY;
1091 goto done_unlock;
1092 }
1093
1094 get_device(dev);
1095 param->fault_param = kzalloc(sizeof(*param->fault_param), GFP_KERNEL);
1096 if (!param->fault_param) {
1097 put_device(dev);
1098 ret = -ENOMEM;
1099 goto done_unlock;
1100 }
1101 param->fault_param->handler = handler;
1102 param->fault_param->data = data;
bf3255b3
JPB
1103 mutex_init(&param->fault_param->lock);
1104 INIT_LIST_HEAD(&param->fault_param->faults);
0c830e6b
JP
1105
1106done_unlock:
1107 mutex_unlock(&param->lock);
1108
1109 return ret;
1110}
1111EXPORT_SYMBOL_GPL(iommu_register_device_fault_handler);
1112
1113/**
1114 * iommu_unregister_device_fault_handler() - Unregister the device fault handler
1115 * @dev: the device
1116 *
1117 * Remove the device fault handler installed with
1118 * iommu_register_device_fault_handler().
1119 *
1120 * Return 0 on success, or an error.
1121 */
1122int iommu_unregister_device_fault_handler(struct device *dev)
1123{
045a7042 1124 struct dev_iommu *param = dev->iommu;
0c830e6b
JP
1125 int ret = 0;
1126
1127 if (!param)
1128 return -EINVAL;
1129
1130 mutex_lock(&param->lock);
1131
1132 if (!param->fault_param)
1133 goto unlock;
1134
bf3255b3
JPB
1135 /* we cannot unregister handler if there are pending faults */
1136 if (!list_empty(&param->fault_param->faults)) {
1137 ret = -EBUSY;
1138 goto unlock;
1139 }
1140
0c830e6b
JP
1141 kfree(param->fault_param);
1142 param->fault_param = NULL;
1143 put_device(dev);
1144unlock:
1145 mutex_unlock(&param->lock);
1146
1147 return ret;
1148}
1149EXPORT_SYMBOL_GPL(iommu_unregister_device_fault_handler);
1150
1151/**
1152 * iommu_report_device_fault() - Report fault event to device driver
1153 * @dev: the device
1154 * @evt: fault event data
1155 *
1156 * Called by IOMMU drivers when a fault is detected, typically in a threaded IRQ
bf3255b3
JPB
1157 * handler. When this function fails and the fault is recoverable, it is the
1158 * caller's responsibility to complete the fault.
0c830e6b
JP
1159 *
1160 * Return 0 on success, or an error.
1161 */
1162int iommu_report_device_fault(struct device *dev, struct iommu_fault_event *evt)
1163{
045a7042 1164 struct dev_iommu *param = dev->iommu;
bf3255b3 1165 struct iommu_fault_event *evt_pending = NULL;
0c830e6b
JP
1166 struct iommu_fault_param *fparam;
1167 int ret = 0;
1168
1169 if (!param || !evt)
1170 return -EINVAL;
1171
1172 /* we only report device fault if there is a handler registered */
1173 mutex_lock(&param->lock);
1174 fparam = param->fault_param;
1175 if (!fparam || !fparam->handler) {
1176 ret = -EINVAL;
1177 goto done_unlock;
1178 }
bf3255b3
JPB
1179
1180 if (evt->fault.type == IOMMU_FAULT_PAGE_REQ &&
1181 (evt->fault.prm.flags & IOMMU_FAULT_PAGE_REQUEST_LAST_PAGE)) {
1182 evt_pending = kmemdup(evt, sizeof(struct iommu_fault_event),
1183 GFP_KERNEL);
1184 if (!evt_pending) {
1185 ret = -ENOMEM;
1186 goto done_unlock;
1187 }
1188 mutex_lock(&fparam->lock);
1189 list_add_tail(&evt_pending->list, &fparam->faults);
1190 mutex_unlock(&fparam->lock);
1191 }
1192
0c830e6b 1193 ret = fparam->handler(&evt->fault, fparam->data);
bf3255b3
JPB
1194 if (ret && evt_pending) {
1195 mutex_lock(&fparam->lock);
1196 list_del(&evt_pending->list);
1197 mutex_unlock(&fparam->lock);
1198 kfree(evt_pending);
1199 }
0c830e6b
JP
1200done_unlock:
1201 mutex_unlock(&param->lock);
1202 return ret;
1203}
1204EXPORT_SYMBOL_GPL(iommu_report_device_fault);
1205
bf3255b3
JPB
1206int iommu_page_response(struct device *dev,
1207 struct iommu_page_response *msg)
1208{
97047191 1209 bool needs_pasid;
bf3255b3
JPB
1210 int ret = -EINVAL;
1211 struct iommu_fault_event *evt;
1212 struct iommu_fault_page_request *prm;
045a7042 1213 struct dev_iommu *param = dev->iommu;
97047191 1214 bool has_pasid = msg->flags & IOMMU_PAGE_RESP_PASID_VALID;
bf3255b3
JPB
1215 struct iommu_domain *domain = iommu_get_domain_for_dev(dev);
1216
1217 if (!domain || !domain->ops->page_response)
1218 return -ENODEV;
1219
1220 if (!param || !param->fault_param)
1221 return -EINVAL;
1222
1223 if (msg->version != IOMMU_PAGE_RESP_VERSION_1 ||
1224 msg->flags & ~IOMMU_PAGE_RESP_PASID_VALID)
1225 return -EINVAL;
1226
1227 /* Only send response if there is a fault report pending */
1228 mutex_lock(&param->fault_param->lock);
1229 if (list_empty(&param->fault_param->faults)) {
1230 dev_warn_ratelimited(dev, "no pending PRQ, drop response\n");
1231 goto done_unlock;
1232 }
1233 /*
1234 * Check if we have a matching page request pending to respond,
1235 * otherwise return -EINVAL
1236 */
1237 list_for_each_entry(evt, &param->fault_param->faults, list) {
1238 prm = &evt->fault.prm;
97047191
JPB
1239 if (prm->grpid != msg->grpid)
1240 continue;
bf3255b3 1241
97047191
JPB
1242 /*
1243 * If the PASID is required, the corresponding request is
1244 * matched using the group ID, the PASID valid bit and the PASID
1245 * value. Otherwise only the group ID matches request and
1246 * response.
1247 */
1248 needs_pasid = prm->flags & IOMMU_FAULT_PAGE_RESPONSE_NEEDS_PASID;
1249 if (needs_pasid && (!has_pasid || msg->pasid != prm->pasid))
bf3255b3
JPB
1250 continue;
1251
97047191
JPB
1252 if (!needs_pasid && has_pasid) {
1253 /* No big deal, just clear it. */
1254 msg->flags &= ~IOMMU_PAGE_RESP_PASID_VALID;
1255 msg->pasid = 0;
1256 }
bf3255b3
JPB
1257
1258 ret = domain->ops->page_response(dev, evt, msg);
1259 list_del(&evt->list);
1260 kfree(evt);
1261 break;
1262 }
1263
1264done_unlock:
1265 mutex_unlock(&param->fault_param->lock);
1266 return ret;
1267}
1268EXPORT_SYMBOL_GPL(iommu_page_response);
1269
d72e31c9
AW
1270/**
1271 * iommu_group_id - Return ID for a group
1272 * @group: the group to ID
1273 *
1274 * Return the unique ID for the group matching the sysfs group number.
1275 */
1276int iommu_group_id(struct iommu_group *group)
1277{
1278 return group->id;
1279}
1280EXPORT_SYMBOL_GPL(iommu_group_id);
1460432c 1281
f096c061
AW
1282static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
1283 unsigned long *devfns);
1284
104a1c13
AW
1285/*
1286 * To consider a PCI device isolated, we require ACS to support Source
1287 * Validation, Request Redirection, Completer Redirection, and Upstream
1288 * Forwarding. This effectively means that devices cannot spoof their
1289 * requester ID, requests and completions cannot be redirected, and all
1290 * transactions are forwarded upstream, even as it passes through a
1291 * bridge where the target device is downstream.
1292 */
1293#define REQ_ACS_FLAGS (PCI_ACS_SV | PCI_ACS_RR | PCI_ACS_CR | PCI_ACS_UF)
1294
f096c061
AW
1295/*
1296 * For multifunction devices which are not isolated from each other, find
1297 * all the other non-isolated functions and look for existing groups. For
1298 * each function, we also need to look for aliases to or from other devices
1299 * that may already have a group.
1300 */
1301static struct iommu_group *get_pci_function_alias_group(struct pci_dev *pdev,
1302 unsigned long *devfns)
1303{
1304 struct pci_dev *tmp = NULL;
1305 struct iommu_group *group;
1306
1307 if (!pdev->multifunction || pci_acs_enabled(pdev, REQ_ACS_FLAGS))
1308 return NULL;
1309
1310 for_each_pci_dev(tmp) {
1311 if (tmp == pdev || tmp->bus != pdev->bus ||
1312 PCI_SLOT(tmp->devfn) != PCI_SLOT(pdev->devfn) ||
1313 pci_acs_enabled(tmp, REQ_ACS_FLAGS))
1314 continue;
1315
1316 group = get_pci_alias_group(tmp, devfns);
1317 if (group) {
1318 pci_dev_put(tmp);
1319 return group;
1320 }
1321 }
1322
1323 return NULL;
1324}
1325
1326/*
338c3149
JL
1327 * Look for aliases to or from the given device for existing groups. DMA
1328 * aliases are only supported on the same bus, therefore the search
f096c061
AW
1329 * space is quite small (especially since we're really only looking at pcie
1330 * device, and therefore only expect multiple slots on the root complex or
1331 * downstream switch ports). It's conceivable though that a pair of
1332 * multifunction devices could have aliases between them that would cause a
1333 * loop. To prevent this, we use a bitmap to track where we've been.
1334 */
1335static struct iommu_group *get_pci_alias_group(struct pci_dev *pdev,
1336 unsigned long *devfns)
1337{
1338 struct pci_dev *tmp = NULL;
1339 struct iommu_group *group;
1340
1341 if (test_and_set_bit(pdev->devfn & 0xff, devfns))
1342 return NULL;
1343
1344 group = iommu_group_get(&pdev->dev);
1345 if (group)
1346 return group;
1347
1348 for_each_pci_dev(tmp) {
1349 if (tmp == pdev || tmp->bus != pdev->bus)
1350 continue;
1351
1352 /* We alias them or they alias us */
338c3149 1353 if (pci_devs_are_dma_aliases(pdev, tmp)) {
f096c061
AW
1354 group = get_pci_alias_group(tmp, devfns);
1355 if (group) {
1356 pci_dev_put(tmp);
1357 return group;
1358 }
1359
1360 group = get_pci_function_alias_group(tmp, devfns);
1361 if (group) {
1362 pci_dev_put(tmp);
1363 return group;
1364 }
1365 }
1366 }
1367
1368 return NULL;
1369}
1370
104a1c13
AW
1371struct group_for_pci_data {
1372 struct pci_dev *pdev;
1373 struct iommu_group *group;
1374};
1375
1376/*
1377 * DMA alias iterator callback, return the last seen device. Stop and return
1378 * the IOMMU group if we find one along the way.
1379 */
1380static int get_pci_alias_or_group(struct pci_dev *pdev, u16 alias, void *opaque)
1381{
1382 struct group_for_pci_data *data = opaque;
1383
1384 data->pdev = pdev;
1385 data->group = iommu_group_get(&pdev->dev);
1386
1387 return data->group != NULL;
1388}
1389
6eab556a
JR
1390/*
1391 * Generic device_group call-back function. It just allocates one
1392 * iommu-group per device.
1393 */
1394struct iommu_group *generic_device_group(struct device *dev)
1395{
7f7a2304 1396 return iommu_group_alloc();
6eab556a 1397}
a7ba5c3d 1398EXPORT_SYMBOL_GPL(generic_device_group);
6eab556a 1399
104a1c13
AW
1400/*
1401 * Use standard PCI bus topology, isolation features, and DMA alias quirks
1402 * to find or create an IOMMU group for a device.
1403 */
5e62292b 1404struct iommu_group *pci_device_group(struct device *dev)
104a1c13 1405{
5e62292b 1406 struct pci_dev *pdev = to_pci_dev(dev);
104a1c13
AW
1407 struct group_for_pci_data data;
1408 struct pci_bus *bus;
1409 struct iommu_group *group = NULL;
f096c061 1410 u64 devfns[4] = { 0 };
104a1c13 1411
5e62292b
JR
1412 if (WARN_ON(!dev_is_pci(dev)))
1413 return ERR_PTR(-EINVAL);
1414
104a1c13
AW
1415 /*
1416 * Find the upstream DMA alias for the device. A device must not
1417 * be aliased due to topology in order to have its own IOMMU group.
1418 * If we find an alias along the way that already belongs to a
1419 * group, use it.
1420 */
1421 if (pci_for_each_dma_alias(pdev, get_pci_alias_or_group, &data))
1422 return data.group;
1423
1424 pdev = data.pdev;
1425
1426 /*
1427 * Continue upstream from the point of minimum IOMMU granularity
1428 * due to aliases to the point where devices are protected from
1429 * peer-to-peer DMA by PCI ACS. Again, if we find an existing
1430 * group, use it.
1431 */
1432 for (bus = pdev->bus; !pci_is_root_bus(bus); bus = bus->parent) {
1433 if (!bus->self)
1434 continue;
1435
1436 if (pci_acs_path_enabled(bus->self, NULL, REQ_ACS_FLAGS))
1437 break;
1438
1439 pdev = bus->self;
1440
1441 group = iommu_group_get(&pdev->dev);
1442 if (group)
1443 return group;
1444 }
1445
1446 /*
f096c061
AW
1447 * Look for existing groups on device aliases. If we alias another
1448 * device or another device aliases us, use the same group.
104a1c13 1449 */
f096c061
AW
1450 group = get_pci_alias_group(pdev, (unsigned long *)devfns);
1451 if (group)
1452 return group;
104a1c13
AW
1453
1454 /*
f096c061
AW
1455 * Look for existing groups on non-isolated functions on the same
1456 * slot and aliases of those funcions, if any. No need to clear
1457 * the search bitmap, the tested devfns are still valid.
104a1c13 1458 */
f096c061
AW
1459 group = get_pci_function_alias_group(pdev, (unsigned long *)devfns);
1460 if (group)
1461 return group;
104a1c13
AW
1462
1463 /* No shared group found, allocate new */
7f7a2304 1464 return iommu_group_alloc();
104a1c13 1465}
a7ba5c3d 1466EXPORT_SYMBOL_GPL(pci_device_group);
104a1c13 1467
eab03e2a
NG
1468/* Get the IOMMU group for device on fsl-mc bus */
1469struct iommu_group *fsl_mc_device_group(struct device *dev)
1470{
1471 struct device *cont_dev = fsl_mc_cont_dev(dev);
1472 struct iommu_group *group;
1473
1474 group = iommu_group_get(cont_dev);
1475 if (!group)
1476 group = iommu_group_alloc();
1477 return group;
1478}
a7ba5c3d 1479EXPORT_SYMBOL_GPL(fsl_mc_device_group);
eab03e2a 1480
4cbf3851
SPP
1481static int iommu_get_def_domain_type(struct device *dev)
1482{
1483 const struct iommu_ops *ops = dev->bus->iommu_ops;
28b41e2c
LB
1484
1485 if (dev_is_pci(dev) && to_pci_dev(dev)->untrusted)
1486 return IOMMU_DOMAIN_DMA;
4cbf3851
SPP
1487
1488 if (ops->def_domain_type)
28b41e2c 1489 return ops->def_domain_type(dev);
4cbf3851 1490
28b41e2c 1491 return 0;
4cbf3851
SPP
1492}
1493
6e1aa204
JR
1494static int iommu_group_alloc_default_domain(struct bus_type *bus,
1495 struct iommu_group *group,
1496 unsigned int type)
ff2a08b3
JR
1497{
1498 struct iommu_domain *dom;
ff2a08b3 1499
6e1aa204 1500 dom = __iommu_domain_alloc(bus, type);
4cbf3851 1501 if (!dom && type != IOMMU_DOMAIN_DMA) {
6e1aa204
JR
1502 dom = __iommu_domain_alloc(bus, IOMMU_DOMAIN_DMA);
1503 if (dom)
1504 pr_warn("Failed to allocate default IOMMU domain of type %u for group %s - Falling back to IOMMU_DOMAIN_DMA",
1505 type, group->name);
ff2a08b3
JR
1506 }
1507
1508 if (!dom)
1509 return -ENOMEM;
1510
1511 group->default_domain = dom;
1512 if (!group->domain)
1513 group->domain = dom;
1514
1515 if (!iommu_dma_strict) {
1516 int attr = 1;
1517 iommu_domain_set_attr(dom,
1518 DOMAIN_ATTR_DMA_USE_FLUSH_QUEUE,
1519 &attr);
1520 }
1521
1522 return 0;
1523}
1524
79659190
JR
1525static int iommu_alloc_default_domain(struct iommu_group *group,
1526 struct device *dev)
6e1aa204 1527{
6e1aa204
JR
1528 unsigned int type;
1529
6e1aa204
JR
1530 if (group->default_domain)
1531 return 0;
1532
28b41e2c 1533 type = iommu_get_def_domain_type(dev) ? : iommu_def_domain_type;
6e1aa204
JR
1534
1535 return iommu_group_alloc_default_domain(dev->bus, group, type);
1536}
1537
104a1c13
AW
1538/**
1539 * iommu_group_get_for_dev - Find or create the IOMMU group for a device
1540 * @dev: target device
1541 *
1542 * This function is intended to be called by IOMMU drivers and extended to
1543 * support common, bus-defined algorithms when determining or creating the
1544 * IOMMU group for a device. On success, the caller will hold a reference
1545 * to the returned IOMMU group, which will already include the provided
1546 * device. The reference should be released with iommu_group_put().
1547 */
1b032ec1 1548static struct iommu_group *iommu_group_get_for_dev(struct device *dev)
104a1c13 1549{
46c6b2bc 1550 const struct iommu_ops *ops = dev->bus->iommu_ops;
c4a783b8 1551 struct iommu_group *group;
104a1c13
AW
1552 int ret;
1553
1554 group = iommu_group_get(dev);
1555 if (group)
1556 return group;
1557
05f80300
RM
1558 if (!ops)
1559 return ERR_PTR(-EINVAL);
104a1c13 1560
05f80300 1561 group = ops->device_group(dev);
72dcac63
JR
1562 if (WARN_ON_ONCE(group == NULL))
1563 return ERR_PTR(-EINVAL);
1564
104a1c13
AW
1565 if (IS_ERR(group))
1566 return group;
1567
1568 ret = iommu_group_add_device(group, dev);
6e1aa204
JR
1569 if (ret)
1570 goto out_put_group;
104a1c13
AW
1571
1572 return group;
ff2a08b3
JR
1573
1574out_put_group:
1575 iommu_group_put(group);
1576
1577 return ERR_PTR(ret);
104a1c13
AW
1578}
1579
6827ca83
JR
1580struct iommu_domain *iommu_group_default_domain(struct iommu_group *group)
1581{
1582 return group->default_domain;
1583}
1584
deac0b3b 1585static int probe_iommu_group(struct device *dev, void *data)
1460432c 1586{
deac0b3b 1587 struct list_head *group_list = data;
5012c396 1588 struct iommu_group *group;
deac0b3b 1589 int ret;
38667f18 1590
5012c396
JR
1591 /* Device is probed already if in a group */
1592 group = iommu_group_get(dev);
1593 if (group) {
1594 iommu_group_put(group);
1595 return 0;
1596 }
1597
deac0b3b 1598 ret = __iommu_probe_device(dev, group_list);
38667f18
JR
1599 if (ret == -ENODEV)
1600 ret = 0;
1601
1602 return ret;
1460432c
AW
1603}
1604
8da30142
JR
1605static int remove_iommu_group(struct device *dev, void *data)
1606{
cc5aed44 1607 iommu_release_device(dev);
1460432c
AW
1608
1609 return 0;
1610}
1611
d72e31c9
AW
1612static int iommu_bus_notifier(struct notifier_block *nb,
1613 unsigned long action, void *data)
1460432c 1614{
cc5aed44 1615 unsigned long group_action = 0;
1460432c 1616 struct device *dev = data;
d72e31c9 1617 struct iommu_group *group;
d72e31c9
AW
1618
1619 /*
1620 * ADD/DEL call into iommu driver ops if provided, which may
1621 * result in ADD/DEL notifiers to group->notifier
1622 */
1623 if (action == BUS_NOTIFY_ADD_DEVICE) {
cc5aed44 1624 int ret;
3ba8775f 1625
cc5aed44
JR
1626 ret = iommu_probe_device(dev);
1627 return (ret) ? NOTIFY_DONE : NOTIFY_OK;
843cb6dc 1628 } else if (action == BUS_NOTIFY_REMOVED_DEVICE) {
cc5aed44
JR
1629 iommu_release_device(dev);
1630 return NOTIFY_OK;
d72e31c9 1631 }
1460432c 1632
d72e31c9
AW
1633 /*
1634 * Remaining BUS_NOTIFYs get filtered and republished to the
1635 * group, if anyone is listening
1636 */
1637 group = iommu_group_get(dev);
1638 if (!group)
1639 return 0;
1460432c 1640
d72e31c9
AW
1641 switch (action) {
1642 case BUS_NOTIFY_BIND_DRIVER:
1643 group_action = IOMMU_GROUP_NOTIFY_BIND_DRIVER;
1644 break;
1645 case BUS_NOTIFY_BOUND_DRIVER:
1646 group_action = IOMMU_GROUP_NOTIFY_BOUND_DRIVER;
1647 break;
1648 case BUS_NOTIFY_UNBIND_DRIVER:
1649 group_action = IOMMU_GROUP_NOTIFY_UNBIND_DRIVER;
1650 break;
1651 case BUS_NOTIFY_UNBOUND_DRIVER:
1652 group_action = IOMMU_GROUP_NOTIFY_UNBOUND_DRIVER;
1653 break;
1654 }
1460432c 1655
d72e31c9
AW
1656 if (group_action)
1657 blocking_notifier_call_chain(&group->notifier,
1658 group_action, dev);
1460432c 1659
d72e31c9 1660 iommu_group_put(group);
1460432c
AW
1661 return 0;
1662}
1663
deac0b3b
JR
1664struct __group_domain_type {
1665 struct device *dev;
1666 unsigned int type;
1667};
1668
1669static int probe_get_default_domain_type(struct device *dev, void *data)
1670{
deac0b3b 1671 struct __group_domain_type *gtype = data;
28b41e2c 1672 unsigned int type = iommu_get_def_domain_type(dev);
deac0b3b
JR
1673
1674 if (type) {
1675 if (gtype->type && gtype->type != type) {
1676 dev_warn(dev, "Device needs domain type %s, but device %s in the same iommu group requires type %s - using default\n",
1677 iommu_domain_type_str(type),
1678 dev_name(gtype->dev),
1679 iommu_domain_type_str(gtype->type));
1680 gtype->type = 0;
1681 }
1682
1683 if (!gtype->dev) {
1684 gtype->dev = dev;
1685 gtype->type = type;
1686 }
1687 }
1688
1689 return 0;
1690}
1691
1692static void probe_alloc_default_domain(struct bus_type *bus,
1693 struct iommu_group *group)
1694{
1695 struct __group_domain_type gtype;
1696
1697 memset(&gtype, 0, sizeof(gtype));
1698
1699 /* Ask for default domain requirements of all devices in the group */
1700 __iommu_group_for_each_dev(group, &gtype,
1701 probe_get_default_domain_type);
1702
1703 if (!gtype.type)
1704 gtype.type = iommu_def_domain_type;
1705
1706 iommu_group_alloc_default_domain(bus, group, gtype.type);
ce574c27 1707
deac0b3b
JR
1708}
1709
1710static int iommu_group_do_dma_attach(struct device *dev, void *data)
1711{
1712 struct iommu_domain *domain = data;
431275af
JR
1713 int ret = 0;
1714
1715 if (!iommu_is_attach_deferred(domain, dev))
1716 ret = __iommu_attach_device(domain, dev);
deac0b3b 1717
431275af 1718 return ret;
deac0b3b
JR
1719}
1720
1721static int __iommu_group_dma_attach(struct iommu_group *group)
1722{
1723 return __iommu_group_for_each_dev(group, group->default_domain,
1724 iommu_group_do_dma_attach);
1725}
1726
70b8170e
JR
1727static int iommu_group_do_probe_finalize(struct device *dev, void *data)
1728{
1729 struct iommu_domain *domain = data;
1730
1731 if (domain->ops->probe_finalize)
1732 domain->ops->probe_finalize(dev);
1733
1734 return 0;
1735}
1736
1737static void __iommu_group_dma_finalize(struct iommu_group *group)
1738{
1739 __iommu_group_for_each_dev(group, group->default_domain,
1740 iommu_group_do_probe_finalize);
1741}
cc69fc48 1742
ce574c27
JR
1743static int iommu_do_create_direct_mappings(struct device *dev, void *data)
1744{
1745 struct iommu_group *group = data;
1746
1747 iommu_create_device_direct_mappings(group, dev);
1748
1749 return 0;
1750}
1751
1752static int iommu_group_create_direct_mappings(struct iommu_group *group)
1753{
1754 return __iommu_group_for_each_dev(group, group,
1755 iommu_do_create_direct_mappings);
1756}
1757
5012c396 1758int bus_iommu_probe(struct bus_type *bus)
deac0b3b 1759{
3eeeb45c
JR
1760 struct iommu_group *group, *next;
1761 LIST_HEAD(group_list);
deac0b3b
JR
1762 int ret;
1763
3eeeb45c
JR
1764 /*
1765 * This code-path does not allocate the default domain when
1766 * creating the iommu group, so do it after the groups are
1767 * created.
1768 */
1769 ret = bus_for_each_dev(bus, NULL, &group_list, probe_iommu_group);
1770 if (ret)
1771 return ret;
deac0b3b 1772
3eeeb45c
JR
1773 list_for_each_entry_safe(group, next, &group_list, entry) {
1774 /* Remove item from the list */
1775 list_del_init(&group->entry);
deac0b3b 1776
3eeeb45c 1777 mutex_lock(&group->mutex);
deac0b3b 1778
3eeeb45c
JR
1779 /* Try to allocate default domain */
1780 probe_alloc_default_domain(bus, group);
deac0b3b 1781
3eeeb45c
JR
1782 if (!group->default_domain) {
1783 mutex_unlock(&group->mutex);
1784 continue;
1785 }
deac0b3b 1786
3eeeb45c 1787 iommu_group_create_direct_mappings(group);
ce574c27 1788
3eeeb45c 1789 ret = __iommu_group_dma_attach(group);
deac0b3b 1790
3eeeb45c 1791 mutex_unlock(&group->mutex);
deac0b3b 1792
3eeeb45c
JR
1793 if (ret)
1794 break;
70b8170e
JR
1795
1796 __iommu_group_dma_finalize(group);
deac0b3b
JR
1797 }
1798
1799 return ret;
1800}
1801
fb3e3065 1802static int iommu_bus_init(struct bus_type *bus, const struct iommu_ops *ops)
ff21776d 1803{
fb3e3065 1804 struct notifier_block *nb;
deac0b3b 1805 int err;
b22f6434 1806
fb3e3065
MS
1807 nb = kzalloc(sizeof(struct notifier_block), GFP_KERNEL);
1808 if (!nb)
1809 return -ENOMEM;
1810
1811 nb->notifier_call = iommu_bus_notifier;
1812
1813 err = bus_register_notifier(bus, nb);
8da30142
JR
1814 if (err)
1815 goto out_free;
d7da6bdc 1816
deac0b3b 1817 err = bus_iommu_probe(bus);
8da30142
JR
1818 if (err)
1819 goto out_err;
1820
d7da6bdc
HS
1821
1822 return 0;
8da30142
JR
1823
1824out_err:
1825 /* Clean up */
8cec63e5 1826 bus_for_each_dev(bus, NULL, NULL, remove_iommu_group);
8da30142
JR
1827 bus_unregister_notifier(bus, nb);
1828
1829out_free:
1830 kfree(nb);
1831
1832 return err;
ff21776d 1833}
fc2100eb 1834
ff21776d
JR
1835/**
1836 * bus_set_iommu - set iommu-callbacks for the bus
1837 * @bus: bus.
1838 * @ops: the callbacks provided by the iommu-driver
1839 *
1840 * This function is called by an iommu driver to set the iommu methods
1841 * used for a particular bus. Drivers for devices on that bus can use
1842 * the iommu-api after these ops are registered.
1843 * This special function is needed because IOMMUs are usually devices on
1844 * the bus itself, so the iommu drivers are not initialized when the bus
1845 * is set up. With this function the iommu-driver can set the iommu-ops
1846 * afterwards.
1847 */
b22f6434 1848int bus_set_iommu(struct bus_type *bus, const struct iommu_ops *ops)
fc2100eb 1849{
d7da6bdc
HS
1850 int err;
1851
4312cf7f
WD
1852 if (ops == NULL) {
1853 bus->iommu_ops = NULL;
1854 return 0;
1855 }
1856
ff21776d
JR
1857 if (bus->iommu_ops != NULL)
1858 return -EBUSY;
fc2100eb 1859
ff21776d
JR
1860 bus->iommu_ops = ops;
1861
1862 /* Do IOMMU specific setup for this bus-type */
d7da6bdc
HS
1863 err = iommu_bus_init(bus, ops);
1864 if (err)
1865 bus->iommu_ops = NULL;
1866
1867 return err;
fc2100eb 1868}
ff21776d 1869EXPORT_SYMBOL_GPL(bus_set_iommu);
fc2100eb 1870
a1b60c1c 1871bool iommu_present(struct bus_type *bus)
fc2100eb 1872{
94441c3b 1873 return bus->iommu_ops != NULL;
fc2100eb 1874}
a1b60c1c 1875EXPORT_SYMBOL_GPL(iommu_present);
fc2100eb 1876
3c0e0ca0
JR
1877bool iommu_capable(struct bus_type *bus, enum iommu_cap cap)
1878{
1879 if (!bus->iommu_ops || !bus->iommu_ops->capable)
1880 return false;
1881
1882 return bus->iommu_ops->capable(cap);
1883}
1884EXPORT_SYMBOL_GPL(iommu_capable);
1885
4f3f8d9d
OBC
1886/**
1887 * iommu_set_fault_handler() - set a fault handler for an iommu domain
1888 * @domain: iommu domain
1889 * @handler: fault handler
77ca2332 1890 * @token: user data, will be passed back to the fault handler
0ed6d2d2
OBC
1891 *
1892 * This function should be used by IOMMU users which want to be notified
1893 * whenever an IOMMU fault happens.
1894 *
1895 * The fault handler itself should return 0 on success, and an appropriate
1896 * error code otherwise.
4f3f8d9d
OBC
1897 */
1898void iommu_set_fault_handler(struct iommu_domain *domain,
77ca2332
OBC
1899 iommu_fault_handler_t handler,
1900 void *token)
4f3f8d9d
OBC
1901{
1902 BUG_ON(!domain);
1903
1904 domain->handler = handler;
77ca2332 1905 domain->handler_token = token;
4f3f8d9d 1906}
30bd918c 1907EXPORT_SYMBOL_GPL(iommu_set_fault_handler);
4f3f8d9d 1908
53723dc5
JR
1909static struct iommu_domain *__iommu_domain_alloc(struct bus_type *bus,
1910 unsigned type)
fc2100eb
JR
1911{
1912 struct iommu_domain *domain;
fc2100eb 1913
94441c3b 1914 if (bus == NULL || bus->iommu_ops == NULL)
905d66c1
JR
1915 return NULL;
1916
53723dc5 1917 domain = bus->iommu_ops->domain_alloc(type);
fc2100eb
JR
1918 if (!domain)
1919 return NULL;
1920
8539c7c1 1921 domain->ops = bus->iommu_ops;
53723dc5 1922 domain->type = type;
d16e0faa
RM
1923 /* Assume all sizes by default; the driver may override this later */
1924 domain->pgsize_bitmap = bus->iommu_ops->pgsize_bitmap;
905d66c1 1925
fc2100eb 1926 return domain;
fc2100eb 1927}
fc2100eb 1928
53723dc5
JR
1929struct iommu_domain *iommu_domain_alloc(struct bus_type *bus)
1930{
1931 return __iommu_domain_alloc(bus, IOMMU_DOMAIN_UNMANAGED);
fc2100eb
JR
1932}
1933EXPORT_SYMBOL_GPL(iommu_domain_alloc);
1934
1935void iommu_domain_free(struct iommu_domain *domain)
1936{
89be34a1 1937 domain->ops->domain_free(domain);
fc2100eb
JR
1938}
1939EXPORT_SYMBOL_GPL(iommu_domain_free);
1940
426a2738
JR
1941static int __iommu_attach_device(struct iommu_domain *domain,
1942 struct device *dev)
fc2100eb 1943{
b54db778 1944 int ret;
e01d1913 1945
e5aa7f00
JR
1946 if (unlikely(domain->ops->attach_dev == NULL))
1947 return -ENODEV;
1948
b54db778
SK
1949 ret = domain->ops->attach_dev(domain, dev);
1950 if (!ret)
1951 trace_attach_device_to_domain(dev);
1952 return ret;
fc2100eb 1953}
426a2738
JR
1954
1955int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
1956{
1957 struct iommu_group *group;
1958 int ret;
1959
1960 group = iommu_group_get(dev);
9ae9df03
JC
1961 if (!group)
1962 return -ENODEV;
1963
426a2738 1964 /*
05f80300 1965 * Lock the group to make sure the device-count doesn't
426a2738
JR
1966 * change while we are attaching
1967 */
1968 mutex_lock(&group->mutex);
1969 ret = -EINVAL;
1970 if (iommu_group_device_count(group) != 1)
1971 goto out_unlock;
1972
e39cb8a3 1973 ret = __iommu_attach_group(domain, group);
426a2738
JR
1974
1975out_unlock:
1976 mutex_unlock(&group->mutex);
1977 iommu_group_put(group);
1978
1979 return ret;
1980}
fc2100eb
JR
1981EXPORT_SYMBOL_GPL(iommu_attach_device);
1982
d9057381
JP
1983/*
1984 * Check flags and other user provided data for valid combinations. We also
1985 * make sure no reserved fields or unused flags are set. This is to ensure
1986 * not breaking userspace in the future when these fields or flags are used.
1987 */
1988static int iommu_check_cache_invl_data(struct iommu_cache_invalidate_info *info)
1989{
1990 u32 mask;
1991 int i;
1992
1993 if (info->version != IOMMU_CACHE_INVALIDATE_INFO_VERSION_1)
1994 return -EINVAL;
1995
1996 mask = (1 << IOMMU_CACHE_INV_TYPE_NR) - 1;
1997 if (info->cache & ~mask)
1998 return -EINVAL;
1999
2000 if (info->granularity >= IOMMU_INV_GRANU_NR)
2001 return -EINVAL;
2002
2003 switch (info->granularity) {
2004 case IOMMU_INV_GRANU_ADDR:
2005 if (info->cache & IOMMU_CACHE_INV_TYPE_PASID)
2006 return -EINVAL;
2007
2008 mask = IOMMU_INV_ADDR_FLAGS_PASID |
2009 IOMMU_INV_ADDR_FLAGS_ARCHID |
2010 IOMMU_INV_ADDR_FLAGS_LEAF;
2011
2012 if (info->granu.addr_info.flags & ~mask)
2013 return -EINVAL;
2014 break;
2015 case IOMMU_INV_GRANU_PASID:
2016 mask = IOMMU_INV_PASID_FLAGS_PASID |
2017 IOMMU_INV_PASID_FLAGS_ARCHID;
2018 if (info->granu.pasid_info.flags & ~mask)
2019 return -EINVAL;
2020
2021 break;
2022 case IOMMU_INV_GRANU_DOMAIN:
2023 if (info->cache & IOMMU_CACHE_INV_TYPE_DEV_IOTLB)
2024 return -EINVAL;
2025 break;
2026 default:
2027 return -EINVAL;
2028 }
2029
2030 /* Check reserved padding fields */
2031 for (i = 0; i < sizeof(info->padding); i++) {
2032 if (info->padding[i])
2033 return -EINVAL;
2034 }
2035
2036 return 0;
2037}
2038
23cc3493 2039int iommu_uapi_cache_invalidate(struct iommu_domain *domain, struct device *dev,
d9057381 2040 void __user *uinfo)
4c7c171f 2041{
d9057381
JP
2042 struct iommu_cache_invalidate_info inv_info = { 0 };
2043 u32 minsz;
2044 int ret;
2045
4c7c171f
YL
2046 if (unlikely(!domain->ops->cache_invalidate))
2047 return -ENODEV;
2048
d9057381
JP
2049 /*
2050 * No new spaces can be added before the variable sized union, the
2051 * minimum size is the offset to the union.
2052 */
2053 minsz = offsetof(struct iommu_cache_invalidate_info, granu);
2054
2055 /* Copy minsz from user to get flags and argsz */
2056 if (copy_from_user(&inv_info, uinfo, minsz))
2057 return -EFAULT;
2058
2059 /* Fields before the variable size union are mandatory */
2060 if (inv_info.argsz < minsz)
2061 return -EINVAL;
2062
2063 /* PASID and address granu require additional info beyond minsz */
2064 if (inv_info.granularity == IOMMU_INV_GRANU_PASID &&
2065 inv_info.argsz < offsetofend(struct iommu_cache_invalidate_info, granu.pasid_info))
2066 return -EINVAL;
2067
2068 if (inv_info.granularity == IOMMU_INV_GRANU_ADDR &&
2069 inv_info.argsz < offsetofend(struct iommu_cache_invalidate_info, granu.addr_info))
2070 return -EINVAL;
2071
2072 /*
2073 * User might be using a newer UAPI header which has a larger data
2074 * size, we shall support the existing flags within the current
2075 * size. Copy the remaining user data _after_ minsz but not more
2076 * than the current kernel supported size.
2077 */
2078 if (copy_from_user((void *)&inv_info + minsz, uinfo + minsz,
2079 min_t(u32, inv_info.argsz, sizeof(inv_info)) - minsz))
2080 return -EFAULT;
2081
2082 /* Now the argsz is validated, check the content */
2083 ret = iommu_check_cache_invl_data(&inv_info);
2084 if (ret)
2085 return ret;
2086
2087 return domain->ops->cache_invalidate(domain, dev, &inv_info);
4c7c171f 2088}
23cc3493 2089EXPORT_SYMBOL_GPL(iommu_uapi_cache_invalidate);
4c7c171f 2090
d9057381 2091static int iommu_check_bind_data(struct iommu_gpasid_bind_data *data)
808be0aa 2092{
4dd6ce47 2093 u64 mask;
d9057381
JP
2094 int i;
2095
2096 if (data->version != IOMMU_GPASID_BIND_VERSION_1)
2097 return -EINVAL;
2098
2099 /* Check the range of supported formats */
2100 if (data->format >= IOMMU_PASID_FORMAT_LAST)
2101 return -EINVAL;
2102
2103 /* Check all flags */
2104 mask = IOMMU_SVA_GPASID_VAL;
2105 if (data->flags & ~mask)
2106 return -EINVAL;
2107
2108 /* Check reserved padding fields */
2109 for (i = 0; i < sizeof(data->padding); i++) {
2110 if (data->padding[i])
2111 return -EINVAL;
2112 }
2113
2114 return 0;
2115}
2116
2117static int iommu_sva_prepare_bind_data(void __user *udata,
2118 struct iommu_gpasid_bind_data *data)
2119{
2120 u32 minsz;
2121
2122 /*
2123 * No new spaces can be added before the variable sized union, the
2124 * minimum size is the offset to the union.
2125 */
2126 minsz = offsetof(struct iommu_gpasid_bind_data, vendor);
2127
2128 /* Copy minsz from user to get flags and argsz */
2129 if (copy_from_user(data, udata, minsz))
2130 return -EFAULT;
2131
2132 /* Fields before the variable size union are mandatory */
2133 if (data->argsz < minsz)
2134 return -EINVAL;
2135 /*
2136 * User might be using a newer UAPI header, we shall let IOMMU vendor
2137 * driver decide on what size it needs. Since the guest PASID bind data
2138 * can be vendor specific, larger argsz could be the result of extension
2139 * for one vendor but it should not affect another vendor.
2140 * Copy the remaining user data _after_ minsz
2141 */
2142 if (copy_from_user((void *)data + minsz, udata + minsz,
2143 min_t(u32, data->argsz, sizeof(*data)) - minsz))
2144 return -EFAULT;
2145
2146 return iommu_check_bind_data(data);
4c7c171f 2147}
4c7c171f 2148
d9057381
JP
2149int iommu_uapi_sva_bind_gpasid(struct iommu_domain *domain, struct device *dev,
2150 void __user *udata)
808be0aa 2151{
d9057381
JP
2152 struct iommu_gpasid_bind_data data = { 0 };
2153 int ret;
2154
808be0aa
JP
2155 if (unlikely(!domain->ops->sva_bind_gpasid))
2156 return -ENODEV;
2157
d9057381
JP
2158 ret = iommu_sva_prepare_bind_data(udata, &data);
2159 if (ret)
2160 return ret;
2161
2162 return domain->ops->sva_bind_gpasid(domain, dev, &data);
808be0aa 2163}
23cc3493 2164EXPORT_SYMBOL_GPL(iommu_uapi_sva_bind_gpasid);
808be0aa
JP
2165
2166int iommu_sva_unbind_gpasid(struct iommu_domain *domain, struct device *dev,
2167 ioasid_t pasid)
2168{
2169 if (unlikely(!domain->ops->sva_unbind_gpasid))
2170 return -ENODEV;
2171
2172 return domain->ops->sva_unbind_gpasid(dev, pasid);
2173}
2174EXPORT_SYMBOL_GPL(iommu_sva_unbind_gpasid);
2175
d9057381
JP
2176int iommu_uapi_sva_unbind_gpasid(struct iommu_domain *domain, struct device *dev,
2177 void __user *udata)
2178{
2179 struct iommu_gpasid_bind_data data = { 0 };
2180 int ret;
2181
2182 if (unlikely(!domain->ops->sva_bind_gpasid))
2183 return -ENODEV;
2184
2185 ret = iommu_sva_prepare_bind_data(udata, &data);
2186 if (ret)
2187 return ret;
2188
2189 return iommu_sva_unbind_gpasid(domain, dev, data.hpasid);
2190}
23cc3493 2191EXPORT_SYMBOL_GPL(iommu_uapi_sva_unbind_gpasid);
808be0aa 2192
426a2738
JR
2193static void __iommu_detach_device(struct iommu_domain *domain,
2194 struct device *dev)
fc2100eb 2195{
bd421264 2196 if (iommu_is_attach_deferred(domain, dev))
e01d1913
BH
2197 return;
2198
e5aa7f00
JR
2199 if (unlikely(domain->ops->detach_dev == NULL))
2200 return;
2201
2202 domain->ops->detach_dev(domain, dev);
69980630 2203 trace_detach_device_from_domain(dev);
fc2100eb 2204}
426a2738
JR
2205
2206void iommu_detach_device(struct iommu_domain *domain, struct device *dev)
2207{
2208 struct iommu_group *group;
2209
2210 group = iommu_group_get(dev);
9ae9df03
JC
2211 if (!group)
2212 return;
426a2738
JR
2213
2214 mutex_lock(&group->mutex);
2215 if (iommu_group_device_count(group) != 1) {
2216 WARN_ON(1);
2217 goto out_unlock;
2218 }
2219
e39cb8a3 2220 __iommu_detach_group(domain, group);
426a2738
JR
2221
2222out_unlock:
2223 mutex_unlock(&group->mutex);
2224 iommu_group_put(group);
2225}
fc2100eb
JR
2226EXPORT_SYMBOL_GPL(iommu_detach_device);
2227
2c1296d9
JR
2228struct iommu_domain *iommu_get_domain_for_dev(struct device *dev)
2229{
2230 struct iommu_domain *domain;
2231 struct iommu_group *group;
2232
2233 group = iommu_group_get(dev);
1464d0b1 2234 if (!group)
2c1296d9
JR
2235 return NULL;
2236
2237 domain = group->domain;
2238
2239 iommu_group_put(group);
2240
2241 return domain;
2242}
2243EXPORT_SYMBOL_GPL(iommu_get_domain_for_dev);
fc2100eb 2244
d72e31c9 2245/*
6af588fe
RM
2246 * For IOMMU_DOMAIN_DMA implementations which already provide their own
2247 * guarantees that the group and its default domain are valid and correct.
2248 */
2249struct iommu_domain *iommu_get_dma_domain(struct device *dev)
2250{
2251 return dev->iommu_group->default_domain;
2252}
2253
d72e31c9 2254/*
35449adc 2255 * IOMMU groups are really the natural working unit of the IOMMU, but
d72e31c9
AW
2256 * the IOMMU API works on domains and devices. Bridge that gap by
2257 * iterating over the devices in a group. Ideally we'd have a single
2258 * device which represents the requestor ID of the group, but we also
2259 * allow IOMMU drivers to create policy defined minimum sets, where
2260 * the physical hardware may be able to distiguish members, but we
2261 * wish to group them at a higher level (ex. untrusted multi-function
2262 * PCI devices). Thus we attach each device.
2263 */
2264static int iommu_group_do_attach_device(struct device *dev, void *data)
2265{
2266 struct iommu_domain *domain = data;
2267
426a2738 2268 return __iommu_attach_device(domain, dev);
d72e31c9
AW
2269}
2270
e39cb8a3
JR
2271static int __iommu_attach_group(struct iommu_domain *domain,
2272 struct iommu_group *group)
2273{
2274 int ret;
2275
2276 if (group->default_domain && group->domain != group->default_domain)
2277 return -EBUSY;
2278
2279 ret = __iommu_group_for_each_dev(group, domain,
2280 iommu_group_do_attach_device);
2281 if (ret == 0)
2282 group->domain = domain;
2283
2284 return ret;
d72e31c9
AW
2285}
2286
2287int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
2288{
e39cb8a3
JR
2289 int ret;
2290
2291 mutex_lock(&group->mutex);
2292 ret = __iommu_attach_group(domain, group);
2293 mutex_unlock(&group->mutex);
2294
2295 return ret;
d72e31c9
AW
2296}
2297EXPORT_SYMBOL_GPL(iommu_attach_group);
2298
2299static int iommu_group_do_detach_device(struct device *dev, void *data)
2300{
2301 struct iommu_domain *domain = data;
2302
426a2738 2303 __iommu_detach_device(domain, dev);
d72e31c9
AW
2304
2305 return 0;
2306}
2307
e39cb8a3
JR
2308static void __iommu_detach_group(struct iommu_domain *domain,
2309 struct iommu_group *group)
2310{
2311 int ret;
2312
2313 if (!group->default_domain) {
2314 __iommu_group_for_each_dev(group, domain,
2315 iommu_group_do_detach_device);
2316 group->domain = NULL;
2317 return;
2318 }
2319
2320 if (group->domain == group->default_domain)
2321 return;
2322
2323 /* Detach by re-attaching to the default domain */
2324 ret = __iommu_group_for_each_dev(group, group->default_domain,
2325 iommu_group_do_attach_device);
2326 if (ret != 0)
2327 WARN_ON(1);
2328 else
2329 group->domain = group->default_domain;
2330}
2331
d72e31c9
AW
2332void iommu_detach_group(struct iommu_domain *domain, struct iommu_group *group)
2333{
e39cb8a3
JR
2334 mutex_lock(&group->mutex);
2335 __iommu_detach_group(domain, group);
2336 mutex_unlock(&group->mutex);
d72e31c9
AW
2337}
2338EXPORT_SYMBOL_GPL(iommu_detach_group);
2339
bb5547ac 2340phys_addr_t iommu_iova_to_phys(struct iommu_domain *domain, dma_addr_t iova)
fc2100eb 2341{
e5aa7f00
JR
2342 if (unlikely(domain->ops->iova_to_phys == NULL))
2343 return 0;
2344
2345 return domain->ops->iova_to_phys(domain, iova);
fc2100eb
JR
2346}
2347EXPORT_SYMBOL_GPL(iommu_iova_to_phys);
dbb9fd86 2348
bd13969b
AW
2349static size_t iommu_pgsize(struct iommu_domain *domain,
2350 unsigned long addr_merge, size_t size)
2351{
2352 unsigned int pgsize_idx;
2353 size_t pgsize;
2354
2355 /* Max page size that still fits into 'size' */
2356 pgsize_idx = __fls(size);
2357
2358 /* need to consider alignment requirements ? */
2359 if (likely(addr_merge)) {
2360 /* Max page size allowed by address */
2361 unsigned int align_pgsize_idx = __ffs(addr_merge);
2362 pgsize_idx = min(pgsize_idx, align_pgsize_idx);
2363 }
2364
2365 /* build a mask of acceptable page sizes */
2366 pgsize = (1UL << (pgsize_idx + 1)) - 1;
2367
2368 /* throw away page sizes not supported by the hardware */
d16e0faa 2369 pgsize &= domain->pgsize_bitmap;
bd13969b
AW
2370
2371 /* make sure we're still sane */
2372 BUG_ON(!pgsize);
2373
2374 /* pick the biggest page */
2375 pgsize_idx = __fls(pgsize);
2376 pgsize = 1UL << pgsize_idx;
2377
2378 return pgsize;
2379}
2380
1b0b2a84
WY
2381static int __iommu_map(struct iommu_domain *domain, unsigned long iova,
2382 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
cefc53c7 2383{
1d7ae53b 2384 const struct iommu_ops *ops = domain->ops;
7d3002cc
OBC
2385 unsigned long orig_iova = iova;
2386 unsigned int min_pagesz;
2387 size_t orig_size = size;
06bfcaa9 2388 phys_addr_t orig_paddr = paddr;
7d3002cc 2389 int ret = 0;
cefc53c7 2390
1d7ae53b 2391 if (unlikely(ops->map == NULL ||
d16e0faa 2392 domain->pgsize_bitmap == 0UL))
e5aa7f00 2393 return -ENODEV;
cefc53c7 2394
a10315e5
JR
2395 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
2396 return -EINVAL;
2397
7d3002cc 2398 /* find out the minimum page size supported */
d16e0faa 2399 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
7d3002cc
OBC
2400
2401 /*
2402 * both the virtual address and the physical one, as well as
2403 * the size of the mapping, must be aligned (at least) to the
2404 * size of the smallest page supported by the hardware
2405 */
2406 if (!IS_ALIGNED(iova | paddr | size, min_pagesz)) {
abedb049 2407 pr_err("unaligned: iova 0x%lx pa %pa size 0x%zx min_pagesz 0x%x\n",
6197ca82 2408 iova, &paddr, size, min_pagesz);
7d3002cc
OBC
2409 return -EINVAL;
2410 }
2411
abedb049 2412 pr_debug("map: iova 0x%lx pa %pa size 0x%zx\n", iova, &paddr, size);
7d3002cc
OBC
2413
2414 while (size) {
bd13969b 2415 size_t pgsize = iommu_pgsize(domain, iova | paddr, size);
7d3002cc 2416
abedb049 2417 pr_debug("mapping: iova 0x%lx pa %pa pgsize 0x%zx\n",
6197ca82 2418 iova, &paddr, pgsize);
781ca2de 2419 ret = ops->map(domain, iova, paddr, pgsize, prot, gfp);
7d3002cc 2420
7d3002cc
OBC
2421 if (ret)
2422 break;
2423
2424 iova += pgsize;
2425 paddr += pgsize;
2426 size -= pgsize;
2427 }
2428
2429 /* unroll mapping in case something went wrong */
2430 if (ret)
2431 iommu_unmap(domain, orig_iova, orig_size - size);
e0be7c86 2432 else
06bfcaa9 2433 trace_map(orig_iova, orig_paddr, orig_size);
7d3002cc
OBC
2434
2435 return ret;
cefc53c7 2436}
781ca2de 2437
d40524db
YW
2438static int _iommu_map(struct iommu_domain *domain, unsigned long iova,
2439 phys_addr_t paddr, size_t size, int prot, gfp_t gfp)
2440{
2441 const struct iommu_ops *ops = domain->ops;
2442 int ret;
2443
6c1d4153 2444 ret = __iommu_map(domain, iova, paddr, size, prot, gfp);
d40524db
YW
2445 if (ret == 0 && ops->iotlb_sync_map)
2446 ops->iotlb_sync_map(domain);
2447
2448 return ret;
2449}
2450
781ca2de
TM
2451int iommu_map(struct iommu_domain *domain, unsigned long iova,
2452 phys_addr_t paddr, size_t size, int prot)
2453{
2454 might_sleep();
d40524db 2455 return _iommu_map(domain, iova, paddr, size, prot, GFP_KERNEL);
781ca2de 2456}
cefc53c7
JR
2457EXPORT_SYMBOL_GPL(iommu_map);
2458
781ca2de
TM
2459int iommu_map_atomic(struct iommu_domain *domain, unsigned long iova,
2460 phys_addr_t paddr, size_t size, int prot)
2461{
d40524db 2462 return _iommu_map(domain, iova, paddr, size, prot, GFP_ATOMIC);
781ca2de
TM
2463}
2464EXPORT_SYMBOL_GPL(iommu_map_atomic);
2465
add02cfd
JR
2466static size_t __iommu_unmap(struct iommu_domain *domain,
2467 unsigned long iova, size_t size,
a7d20dc1 2468 struct iommu_iotlb_gather *iotlb_gather)
cefc53c7 2469{
add02cfd 2470 const struct iommu_ops *ops = domain->ops;
7d3002cc 2471 size_t unmapped_page, unmapped = 0;
6fd492fd 2472 unsigned long orig_iova = iova;
add02cfd 2473 unsigned int min_pagesz;
cefc53c7 2474
add02cfd 2475 if (unlikely(ops->unmap == NULL ||
d16e0faa 2476 domain->pgsize_bitmap == 0UL))
c5611a87 2477 return 0;
e5aa7f00 2478
a10315e5 2479 if (unlikely(!(domain->type & __IOMMU_DOMAIN_PAGING)))
c5611a87 2480 return 0;
a10315e5 2481
7d3002cc 2482 /* find out the minimum page size supported */
d16e0faa 2483 min_pagesz = 1 << __ffs(domain->pgsize_bitmap);
7d3002cc
OBC
2484
2485 /*
2486 * The virtual address, as well as the size of the mapping, must be
2487 * aligned (at least) to the size of the smallest page supported
2488 * by the hardware
2489 */
2490 if (!IS_ALIGNED(iova | size, min_pagesz)) {
6197ca82
JP
2491 pr_err("unaligned: iova 0x%lx size 0x%zx min_pagesz 0x%x\n",
2492 iova, size, min_pagesz);
c5611a87 2493 return 0;
7d3002cc
OBC
2494 }
2495
6197ca82 2496 pr_debug("unmap this: iova 0x%lx size 0x%zx\n", iova, size);
7d3002cc
OBC
2497
2498 /*
2499 * Keep iterating until we either unmap 'size' bytes (or more)
2500 * or we hit an area that isn't mapped.
2501 */
2502 while (unmapped < size) {
bd13969b 2503 size_t pgsize = iommu_pgsize(domain, iova, size - unmapped);
7d3002cc 2504
56f8af5e 2505 unmapped_page = ops->unmap(domain, iova, pgsize, iotlb_gather);
7d3002cc
OBC
2506 if (!unmapped_page)
2507 break;
2508
6197ca82
JP
2509 pr_debug("unmapped: iova 0x%lx size 0x%zx\n",
2510 iova, unmapped_page);
7d3002cc
OBC
2511
2512 iova += unmapped_page;
2513 unmapped += unmapped_page;
2514 }
2515
db8614d3 2516 trace_unmap(orig_iova, size, unmapped);
7d3002cc 2517 return unmapped;
cefc53c7 2518}
add02cfd
JR
2519
2520size_t iommu_unmap(struct iommu_domain *domain,
2521 unsigned long iova, size_t size)
2522{
a7d20dc1
WD
2523 struct iommu_iotlb_gather iotlb_gather;
2524 size_t ret;
2525
2526 iommu_iotlb_gather_init(&iotlb_gather);
2527 ret = __iommu_unmap(domain, iova, size, &iotlb_gather);
aae4c8e2 2528 iommu_iotlb_sync(domain, &iotlb_gather);
a7d20dc1
WD
2529
2530 return ret;
add02cfd 2531}
cefc53c7 2532EXPORT_SYMBOL_GPL(iommu_unmap);
1460432c 2533
add02cfd 2534size_t iommu_unmap_fast(struct iommu_domain *domain,
a7d20dc1
WD
2535 unsigned long iova, size_t size,
2536 struct iommu_iotlb_gather *iotlb_gather)
add02cfd 2537{
a7d20dc1 2538 return __iommu_unmap(domain, iova, size, iotlb_gather);
add02cfd
JR
2539}
2540EXPORT_SYMBOL_GPL(iommu_unmap_fast);
2541
9930264f
BW
2542static size_t __iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
2543 struct scatterlist *sg, unsigned int nents, int prot,
2544 gfp_t gfp)
315786eb 2545{
d40524db 2546 const struct iommu_ops *ops = domain->ops;
5d95f40e
RM
2547 size_t len = 0, mapped = 0;
2548 phys_addr_t start;
2549 unsigned int i = 0;
38ec010d 2550 int ret;
315786eb 2551
5d95f40e
RM
2552 while (i <= nents) {
2553 phys_addr_t s_phys = sg_phys(sg);
18f23409 2554
5d95f40e 2555 if (len && s_phys != start + len) {
781ca2de
TM
2556 ret = __iommu_map(domain, iova + mapped, start,
2557 len, prot, gfp);
2558
5d95f40e
RM
2559 if (ret)
2560 goto out_err;
18f23409 2561
5d95f40e
RM
2562 mapped += len;
2563 len = 0;
2564 }
38ec010d 2565
5d95f40e
RM
2566 if (len) {
2567 len += sg->length;
2568 } else {
2569 len = sg->length;
2570 start = s_phys;
2571 }
38ec010d 2572
5d95f40e
RM
2573 if (++i < nents)
2574 sg = sg_next(sg);
315786eb
OH
2575 }
2576
d40524db
YW
2577 if (ops->iotlb_sync_map)
2578 ops->iotlb_sync_map(domain);
315786eb 2579 return mapped;
38ec010d
JR
2580
2581out_err:
2582 /* undo mappings already done */
2583 iommu_unmap(domain, iova, mapped);
2584
2585 return 0;
2586
315786eb 2587}
781ca2de
TM
2588
2589size_t iommu_map_sg(struct iommu_domain *domain, unsigned long iova,
2590 struct scatterlist *sg, unsigned int nents, int prot)
2591{
2592 might_sleep();
2593 return __iommu_map_sg(domain, iova, sg, nents, prot, GFP_KERNEL);
2594}
d88e61fa 2595EXPORT_SYMBOL_GPL(iommu_map_sg);
d7787d57 2596
781ca2de
TM
2597size_t iommu_map_sg_atomic(struct iommu_domain *domain, unsigned long iova,
2598 struct scatterlist *sg, unsigned int nents, int prot)
2599{
2600 return __iommu_map_sg(domain, iova, sg, nents, prot, GFP_ATOMIC);
2601}
2602EXPORT_SYMBOL_GPL(iommu_map_sg_atomic);
2603
d7787d57 2604int iommu_domain_window_enable(struct iommu_domain *domain, u32 wnd_nr,
80f97f0f 2605 phys_addr_t paddr, u64 size, int prot)
d7787d57
JR
2606{
2607 if (unlikely(domain->ops->domain_window_enable == NULL))
2608 return -ENODEV;
2609
80f97f0f
VS
2610 return domain->ops->domain_window_enable(domain, wnd_nr, paddr, size,
2611 prot);
d7787d57
JR
2612}
2613EXPORT_SYMBOL_GPL(iommu_domain_window_enable);
2614
2615void iommu_domain_window_disable(struct iommu_domain *domain, u32 wnd_nr)
2616{
2617 if (unlikely(domain->ops->domain_window_disable == NULL))
2618 return;
2619
2620 return domain->ops->domain_window_disable(domain, wnd_nr);
2621}
2622EXPORT_SYMBOL_GPL(iommu_domain_window_disable);
2623
207c6e36
JR
2624/**
2625 * report_iommu_fault() - report about an IOMMU fault to the IOMMU framework
2626 * @domain: the iommu domain where the fault has happened
2627 * @dev: the device where the fault has happened
2628 * @iova: the faulting address
2629 * @flags: mmu fault flags (e.g. IOMMU_FAULT_READ/IOMMU_FAULT_WRITE/...)
2630 *
2631 * This function should be called by the low-level IOMMU implementations
2632 * whenever IOMMU faults happen, to allow high-level users, that are
2633 * interested in such events, to know about them.
2634 *
2635 * This event may be useful for several possible use cases:
2636 * - mere logging of the event
2637 * - dynamic TLB/PTE loading
2638 * - if restarting of the faulting device is required
2639 *
2640 * Returns 0 on success and an appropriate error code otherwise (if dynamic
2641 * PTE/TLB loading will one day be supported, implementations will be able
2642 * to tell whether it succeeded or not according to this return value).
2643 *
2644 * Specifically, -ENOSYS is returned if a fault handler isn't installed
2645 * (though fault handlers can also return -ENOSYS, in case they want to
2646 * elicit the default behavior of the IOMMU drivers).
2647 */
2648int report_iommu_fault(struct iommu_domain *domain, struct device *dev,
2649 unsigned long iova, int flags)
2650{
2651 int ret = -ENOSYS;
2652
2653 /*
2654 * if upper layers showed interest and installed a fault handler,
2655 * invoke it.
2656 */
2657 if (domain->handler)
2658 ret = domain->handler(domain, dev, iova, flags,
2659 domain->handler_token);
2660
2661 trace_io_page_fault(dev, iova, flags);
2662 return ret;
2663}
2664EXPORT_SYMBOL_GPL(report_iommu_fault);
2665
d72e31c9 2666static int __init iommu_init(void)
1460432c 2667{
d72e31c9
AW
2668 iommu_group_kset = kset_create_and_add("iommu_groups",
2669 NULL, kernel_kobj);
d72e31c9
AW
2670 BUG_ON(!iommu_group_kset);
2671
bad614b2
GH
2672 iommu_debugfs_setup();
2673
d72e31c9 2674 return 0;
1460432c 2675}
d7ef9995 2676core_initcall(iommu_init);
0cd76dd1
JR
2677
2678int iommu_domain_get_attr(struct iommu_domain *domain,
2679 enum iommu_attr attr, void *data)
2680{
0ff64f80 2681 struct iommu_domain_geometry *geometry;
d2e12160 2682 bool *paging;
0ff64f80
JR
2683 int ret = 0;
2684
2685 switch (attr) {
2686 case DOMAIN_ATTR_GEOMETRY:
2687 geometry = data;
2688 *geometry = domain->geometry;
2689
d2e12160
JR
2690 break;
2691 case DOMAIN_ATTR_PAGING:
2692 paging = data;
d16e0faa 2693 *paging = (domain->pgsize_bitmap != 0UL);
0ff64f80
JR
2694 break;
2695 default:
2696 if (!domain->ops->domain_get_attr)
2697 return -EINVAL;
0cd76dd1 2698
0ff64f80
JR
2699 ret = domain->ops->domain_get_attr(domain, attr, data);
2700 }
2701
2702 return ret;
0cd76dd1
JR
2703}
2704EXPORT_SYMBOL_GPL(iommu_domain_get_attr);
2705
2706int iommu_domain_set_attr(struct iommu_domain *domain,
2707 enum iommu_attr attr, void *data)
2708{
69356712 2709 int ret = 0;
69356712
JR
2710
2711 switch (attr) {
69356712
JR
2712 default:
2713 if (domain->ops->domain_set_attr == NULL)
2714 return -EINVAL;
2715
2716 ret = domain->ops->domain_set_attr(domain, attr, data);
2717 }
2718
2719 return ret;
1460432c 2720}
0cd76dd1 2721EXPORT_SYMBOL_GPL(iommu_domain_set_attr);
a1015c2b 2722
e5b5234a 2723void iommu_get_resv_regions(struct device *dev, struct list_head *list)
a1015c2b
JR
2724{
2725 const struct iommu_ops *ops = dev->bus->iommu_ops;
2726
e5b5234a
EA
2727 if (ops && ops->get_resv_regions)
2728 ops->get_resv_regions(dev, list);
a1015c2b
JR
2729}
2730
e5b5234a 2731void iommu_put_resv_regions(struct device *dev, struct list_head *list)
a1015c2b
JR
2732{
2733 const struct iommu_ops *ops = dev->bus->iommu_ops;
2734
e5b5234a
EA
2735 if (ops && ops->put_resv_regions)
2736 ops->put_resv_regions(dev, list);
a1015c2b 2737}
d290f1e7 2738
f9f6971e
TR
2739/**
2740 * generic_iommu_put_resv_regions - Reserved region driver helper
2741 * @dev: device for which to free reserved regions
2742 * @list: reserved region list for device
2743 *
2744 * IOMMU drivers can use this to implement their .put_resv_regions() callback
2745 * for simple reservations. Memory allocated for each reserved region will be
2746 * freed. If an IOMMU driver allocates additional resources per region, it is
2747 * going to have to implement a custom callback.
2748 */
2749void generic_iommu_put_resv_regions(struct device *dev, struct list_head *list)
2750{
2751 struct iommu_resv_region *entry, *next;
2752
2753 list_for_each_entry_safe(entry, next, list, list)
2754 kfree(entry);
2755}
2756EXPORT_SYMBOL(generic_iommu_put_resv_regions);
2757
2b20cbba 2758struct iommu_resv_region *iommu_alloc_resv_region(phys_addr_t start,
9d3a4de4
RM
2759 size_t length, int prot,
2760 enum iommu_resv_type type)
2b20cbba
EA
2761{
2762 struct iommu_resv_region *region;
2763
2764 region = kzalloc(sizeof(*region), GFP_KERNEL);
2765 if (!region)
2766 return NULL;
2767
2768 INIT_LIST_HEAD(&region->list);
2769 region->start = start;
2770 region->length = length;
2771 region->prot = prot;
2772 region->type = type;
2773 return region;
a1015c2b 2774}
a7ba5c3d 2775EXPORT_SYMBOL_GPL(iommu_alloc_resv_region);
d290f1e7 2776
8a69961c
JR
2777void iommu_set_default_passthrough(bool cmd_line)
2778{
2779 if (cmd_line)
2780 iommu_set_cmd_line_dma_api();
2781
2782 iommu_def_domain_type = IOMMU_DOMAIN_IDENTITY;
2783}
2784
2785void iommu_set_default_translated(bool cmd_line)
2786{
2787 if (cmd_line)
2788 iommu_set_cmd_line_dma_api();
2789
2790 iommu_def_domain_type = IOMMU_DOMAIN_DMA;
2791}
2792
2793bool iommu_default_passthrough(void)
2794{
2795 return iommu_def_domain_type == IOMMU_DOMAIN_IDENTITY;
2796}
2797EXPORT_SYMBOL_GPL(iommu_default_passthrough);
2798
534766df 2799const struct iommu_ops *iommu_ops_from_fwnode(struct fwnode_handle *fwnode)
e4f10ffe 2800{
e4f10ffe 2801 const struct iommu_ops *ops = NULL;
d0f6f583 2802 struct iommu_device *iommu;
e4f10ffe 2803
d0f6f583
JR
2804 spin_lock(&iommu_device_lock);
2805 list_for_each_entry(iommu, &iommu_device_list, list)
2806 if (iommu->fwnode == fwnode) {
2807 ops = iommu->ops;
e4f10ffe
LP
2808 break;
2809 }
d0f6f583 2810 spin_unlock(&iommu_device_lock);
e4f10ffe
LP
2811 return ops;
2812}
2813
57f98d2f
RM
2814int iommu_fwspec_init(struct device *dev, struct fwnode_handle *iommu_fwnode,
2815 const struct iommu_ops *ops)
2816{
b4ef725e 2817 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
57f98d2f
RM
2818
2819 if (fwspec)
2820 return ops == fwspec->ops ? 0 : -EINVAL;
2821
72acd9df
JR
2822 if (!dev_iommu_get(dev))
2823 return -ENOMEM;
2824
098accf2
RM
2825 /* Preallocate for the overwhelmingly common case of 1 ID */
2826 fwspec = kzalloc(struct_size(fwspec, ids, 1), GFP_KERNEL);
57f98d2f
RM
2827 if (!fwspec)
2828 return -ENOMEM;
2829
2830 of_node_get(to_of_node(iommu_fwnode));
2831 fwspec->iommu_fwnode = iommu_fwnode;
2832 fwspec->ops = ops;
b4ef725e 2833 dev_iommu_fwspec_set(dev, fwspec);
57f98d2f
RM
2834 return 0;
2835}
2836EXPORT_SYMBOL_GPL(iommu_fwspec_init);
2837
2838void iommu_fwspec_free(struct device *dev)
2839{
b4ef725e 2840 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
57f98d2f
RM
2841
2842 if (fwspec) {
2843 fwnode_handle_put(fwspec->iommu_fwnode);
2844 kfree(fwspec);
b4ef725e 2845 dev_iommu_fwspec_set(dev, NULL);
57f98d2f
RM
2846 }
2847}
2848EXPORT_SYMBOL_GPL(iommu_fwspec_free);
2849
2850int iommu_fwspec_add_ids(struct device *dev, u32 *ids, int num_ids)
2851{
b4ef725e 2852 struct iommu_fwspec *fwspec = dev_iommu_fwspec_get(dev);
098accf2 2853 int i, new_num;
57f98d2f
RM
2854
2855 if (!fwspec)
2856 return -EINVAL;
2857
098accf2
RM
2858 new_num = fwspec->num_ids + num_ids;
2859 if (new_num > 1) {
2860 fwspec = krealloc(fwspec, struct_size(fwspec, ids, new_num),
2861 GFP_KERNEL);
57f98d2f
RM
2862 if (!fwspec)
2863 return -ENOMEM;
909111ba 2864
b4ef725e 2865 dev_iommu_fwspec_set(dev, fwspec);
57f98d2f
RM
2866 }
2867
2868 for (i = 0; i < num_ids; i++)
2869 fwspec->ids[fwspec->num_ids + i] = ids[i];
2870
098accf2 2871 fwspec->num_ids = new_num;
57f98d2f
RM
2872 return 0;
2873}
2874EXPORT_SYMBOL_GPL(iommu_fwspec_add_ids);
a3a19592
LB
2875
2876/*
2877 * Per device IOMMU features.
2878 */
2879bool iommu_dev_has_feature(struct device *dev, enum iommu_dev_features feat)
2880{
2881 const struct iommu_ops *ops = dev->bus->iommu_ops;
2882
2883 if (ops && ops->dev_has_feat)
2884 return ops->dev_has_feat(dev, feat);
2885
2886 return false;
2887}
2888EXPORT_SYMBOL_GPL(iommu_dev_has_feature);
2889
2890int iommu_dev_enable_feature(struct device *dev, enum iommu_dev_features feat)
2891{
2892 const struct iommu_ops *ops = dev->bus->iommu_ops;
2893
2894 if (ops && ops->dev_enable_feat)
2895 return ops->dev_enable_feat(dev, feat);
2896
2897 return -ENODEV;
2898}
2899EXPORT_SYMBOL_GPL(iommu_dev_enable_feature);
2900
2901/*
2902 * The device drivers should do the necessary cleanups before calling this.
2903 * For example, before disabling the aux-domain feature, the device driver
2904 * should detach all aux-domains. Otherwise, this will return -EBUSY.
2905 */
2906int iommu_dev_disable_feature(struct device *dev, enum iommu_dev_features feat)
2907{
2908 const struct iommu_ops *ops = dev->bus->iommu_ops;
2909
2910 if (ops && ops->dev_disable_feat)
2911 return ops->dev_disable_feat(dev, feat);
2912
2913 return -EBUSY;
2914}
2915EXPORT_SYMBOL_GPL(iommu_dev_disable_feature);
2916
2917bool iommu_dev_feature_enabled(struct device *dev, enum iommu_dev_features feat)
2918{
2919 const struct iommu_ops *ops = dev->bus->iommu_ops;
2920
2921 if (ops && ops->dev_feat_enabled)
2922 return ops->dev_feat_enabled(dev, feat);
2923
2924 return false;
2925}
2926EXPORT_SYMBOL_GPL(iommu_dev_feature_enabled);
2927
2928/*
2929 * Aux-domain specific attach/detach.
2930 *
2931 * Only works if iommu_dev_feature_enabled(dev, IOMMU_DEV_FEAT_AUX) returns
2932 * true. Also, as long as domains are attached to a device through this
2933 * interface, any tries to call iommu_attach_device() should fail
2934 * (iommu_detach_device() can't fail, so we fail when trying to re-attach).
2935 * This should make us safe against a device being attached to a guest as a
2936 * whole while there are still pasid users on it (aux and sva).
2937 */
2938int iommu_aux_attach_device(struct iommu_domain *domain, struct device *dev)
2939{
2940 int ret = -ENODEV;
2941
2942 if (domain->ops->aux_attach_dev)
2943 ret = domain->ops->aux_attach_dev(domain, dev);
2944
2945 if (!ret)
2946 trace_attach_device_to_domain(dev);
2947
2948 return ret;
2949}
2950EXPORT_SYMBOL_GPL(iommu_aux_attach_device);
2951
2952void iommu_aux_detach_device(struct iommu_domain *domain, struct device *dev)
2953{
2954 if (domain->ops->aux_detach_dev) {
2955 domain->ops->aux_detach_dev(domain, dev);
2956 trace_detach_device_from_domain(dev);
2957 }
2958}
2959EXPORT_SYMBOL_GPL(iommu_aux_detach_device);
2960
2961int iommu_aux_get_pasid(struct iommu_domain *domain, struct device *dev)
2962{
2963 int ret = -ENODEV;
2964
2965 if (domain->ops->aux_get_pasid)
2966 ret = domain->ops->aux_get_pasid(domain, dev);
2967
2968 return ret;
2969}
2970EXPORT_SYMBOL_GPL(iommu_aux_get_pasid);
26b25a2b
JPB
2971
2972/**
2973 * iommu_sva_bind_device() - Bind a process address space to a device
2974 * @dev: the device
2975 * @mm: the mm to bind, caller must hold a reference to it
2976 *
2977 * Create a bond between device and address space, allowing the device to access
2978 * the mm using the returned PASID. If a bond already exists between @device and
2979 * @mm, it is returned and an additional reference is taken. Caller must call
2980 * iommu_sva_unbind_device() to release each reference.
2981 *
2982 * iommu_dev_enable_feature(dev, IOMMU_DEV_FEAT_SVA) must be called first, to
2983 * initialize the required SVA features.
2984 *
2985 * On error, returns an ERR_PTR value.
2986 */
2987struct iommu_sva *
2988iommu_sva_bind_device(struct device *dev, struct mm_struct *mm, void *drvdata)
2989{
2990 struct iommu_group *group;
2991 struct iommu_sva *handle = ERR_PTR(-EINVAL);
2992 const struct iommu_ops *ops = dev->bus->iommu_ops;
2993
2994 if (!ops || !ops->sva_bind)
2995 return ERR_PTR(-ENODEV);
2996
2997 group = iommu_group_get(dev);
2998 if (!group)
2999 return ERR_PTR(-ENODEV);
3000
3001 /* Ensure device count and domain don't change while we're binding */
3002 mutex_lock(&group->mutex);
3003
3004 /*
3005 * To keep things simple, SVA currently doesn't support IOMMU groups
3006 * with more than one device. Existing SVA-capable systems are not
3007 * affected by the problems that required IOMMU groups (lack of ACS
3008 * isolation, device ID aliasing and other hardware issues).
3009 */
3010 if (iommu_group_device_count(group) != 1)
3011 goto out_unlock;
3012
3013 handle = ops->sva_bind(dev, mm, drvdata);
3014
3015out_unlock:
3016 mutex_unlock(&group->mutex);
3017 iommu_group_put(group);
3018
3019 return handle;
3020}
3021EXPORT_SYMBOL_GPL(iommu_sva_bind_device);
3022
3023/**
3024 * iommu_sva_unbind_device() - Remove a bond created with iommu_sva_bind_device
3025 * @handle: the handle returned by iommu_sva_bind_device()
3026 *
3027 * Put reference to a bond between device and address space. The device should
3028 * not be issuing any more transaction for this PASID. All outstanding page
3029 * requests for this PASID must have been flushed to the IOMMU.
26b25a2b
JPB
3030 */
3031void iommu_sva_unbind_device(struct iommu_sva *handle)
3032{
3033 struct iommu_group *group;
3034 struct device *dev = handle->dev;
3035 const struct iommu_ops *ops = dev->bus->iommu_ops;
3036
3037 if (!ops || !ops->sva_unbind)
3038 return;
3039
3040 group = iommu_group_get(dev);
3041 if (!group)
3042 return;
3043
3044 mutex_lock(&group->mutex);
3045 ops->sva_unbind(handle);
3046 mutex_unlock(&group->mutex);
3047
3048 iommu_group_put(group);
3049}
3050EXPORT_SYMBOL_GPL(iommu_sva_unbind_device);
3051
c7b6bac9 3052u32 iommu_sva_get_pasid(struct iommu_sva *handle)
26b25a2b
JPB
3053{
3054 const struct iommu_ops *ops = handle->dev->bus->iommu_ops;
3055
3056 if (!ops || !ops->sva_get_pasid)
3057 return IOMMU_PASID_INVALID;
3058
3059 return ops->sva_get_pasid(handle);
3060}
3061EXPORT_SYMBOL_GPL(iommu_sva_get_pasid);
08a27c1c
SPP
3062
3063/*
3064 * Changes the default domain of an iommu group that has *only* one device
3065 *
3066 * @group: The group for which the default domain should be changed
3067 * @prev_dev: The device in the group (this is used to make sure that the device
3068 * hasn't changed after the caller has called this function)
3069 * @type: The type of the new default domain that gets associated with the group
3070 *
3071 * Returns 0 on success and error code on failure
3072 *
3073 * Note:
3074 * 1. Presently, this function is called only when user requests to change the
3075 * group's default domain type through /sys/kernel/iommu_groups/<grp_id>/type
3076 * Please take a closer look if intended to use for other purposes.
3077 */
3078static int iommu_change_dev_def_domain(struct iommu_group *group,
3079 struct device *prev_dev, int type)
3080{
3081 struct iommu_domain *prev_dom;
3082 struct group_device *grp_dev;
3083 int ret, dev_def_dom;
3084 struct device *dev;
3085
3086 if (!group)
3087 return -EINVAL;
3088
3089 mutex_lock(&group->mutex);
3090
3091 if (group->default_domain != group->domain) {
3092 dev_err_ratelimited(prev_dev, "Group not assigned to default domain\n");
3093 ret = -EBUSY;
3094 goto out;
3095 }
3096
3097 /*
3098 * iommu group wasn't locked while acquiring device lock in
3099 * iommu_group_store_type(). So, make sure that the device count hasn't
3100 * changed while acquiring device lock.
3101 *
3102 * Changing default domain of an iommu group with two or more devices
3103 * isn't supported because there could be a potential deadlock. Consider
3104 * the following scenario. T1 is trying to acquire device locks of all
3105 * the devices in the group and before it could acquire all of them,
3106 * there could be another thread T2 (from different sub-system and use
3107 * case) that has already acquired some of the device locks and might be
3108 * waiting for T1 to release other device locks.
3109 */
3110 if (iommu_group_device_count(group) != 1) {
3111 dev_err_ratelimited(prev_dev, "Cannot change default domain: Group has more than one device\n");
3112 ret = -EINVAL;
3113 goto out;
3114 }
3115
3116 /* Since group has only one device */
3117 grp_dev = list_first_entry(&group->devices, struct group_device, list);
3118 dev = grp_dev->dev;
3119
3120 if (prev_dev != dev) {
3121 dev_err_ratelimited(prev_dev, "Cannot change default domain: Device has been changed\n");
3122 ret = -EBUSY;
3123 goto out;
3124 }
3125
3126 prev_dom = group->default_domain;
3127 if (!prev_dom) {
3128 ret = -EINVAL;
3129 goto out;
3130 }
3131
3132 dev_def_dom = iommu_get_def_domain_type(dev);
3133 if (!type) {
3134 /*
3135 * If the user hasn't requested any specific type of domain and
3136 * if the device supports both the domains, then default to the
3137 * domain the device was booted with
3138 */
3139 type = dev_def_dom ? : iommu_def_domain_type;
3140 } else if (dev_def_dom && type != dev_def_dom) {
3141 dev_err_ratelimited(prev_dev, "Device cannot be in %s domain\n",
3142 iommu_domain_type_str(type));
3143 ret = -EINVAL;
3144 goto out;
3145 }
3146
3147 /*
3148 * Switch to a new domain only if the requested domain type is different
3149 * from the existing default domain type
3150 */
3151 if (prev_dom->type == type) {
3152 ret = 0;
3153 goto out;
3154 }
3155
3156 /* Sets group->default_domain to the newly allocated domain */
3157 ret = iommu_group_alloc_default_domain(dev->bus, group, type);
3158 if (ret)
3159 goto out;
3160
3161 ret = iommu_create_device_direct_mappings(group, dev);
3162 if (ret)
3163 goto free_new_domain;
3164
3165 ret = __iommu_attach_device(group->default_domain, dev);
3166 if (ret)
3167 goto free_new_domain;
3168
3169 group->domain = group->default_domain;
3170
3171 /*
3172 * Release the mutex here because ops->probe_finalize() call-back of
3173 * some vendor IOMMU drivers calls arm_iommu_attach_device() which
3174 * in-turn might call back into IOMMU core code, where it tries to take
3175 * group->mutex, resulting in a deadlock.
3176 */
3177 mutex_unlock(&group->mutex);
3178
3179 /* Make sure dma_ops is appropriatley set */
3180 iommu_group_do_probe_finalize(dev, group->default_domain);
3181 iommu_domain_free(prev_dom);
3182 return 0;
3183
3184free_new_domain:
3185 iommu_domain_free(group->default_domain);
3186 group->default_domain = prev_dom;
3187 group->domain = prev_dom;
3188
3189out:
3190 mutex_unlock(&group->mutex);
3191
3192 return ret;
3193}
3194
3195/*
3196 * Changing the default domain through sysfs requires the users to ubind the
3197 * drivers from the devices in the iommu group. Return failure if this doesn't
3198 * meet.
3199 *
3200 * We need to consider the race between this and the device release path.
3201 * device_lock(dev) is used here to guarantee that the device release path
3202 * will not be entered at the same time.
3203 */
3204static ssize_t iommu_group_store_type(struct iommu_group *group,
3205 const char *buf, size_t count)
3206{
3207 struct group_device *grp_dev;
3208 struct device *dev;
3209 int ret, req_type;
3210
3211 if (!capable(CAP_SYS_ADMIN) || !capable(CAP_SYS_RAWIO))
3212 return -EACCES;
3213
3214 if (WARN_ON(!group))
3215 return -EINVAL;
3216
3217 if (sysfs_streq(buf, "identity"))
3218 req_type = IOMMU_DOMAIN_IDENTITY;
3219 else if (sysfs_streq(buf, "DMA"))
3220 req_type = IOMMU_DOMAIN_DMA;
3221 else if (sysfs_streq(buf, "auto"))
3222 req_type = 0;
3223 else
3224 return -EINVAL;
3225
3226 /*
3227 * Lock/Unlock the group mutex here before device lock to
3228 * 1. Make sure that the iommu group has only one device (this is a
3229 * prerequisite for step 2)
3230 * 2. Get struct *dev which is needed to lock device
3231 */
3232 mutex_lock(&group->mutex);
3233 if (iommu_group_device_count(group) != 1) {
3234 mutex_unlock(&group->mutex);
3235 pr_err_ratelimited("Cannot change default domain: Group has more than one device\n");
3236 return -EINVAL;
3237 }
3238
3239 /* Since group has only one device */
3240 grp_dev = list_first_entry(&group->devices, struct group_device, list);
3241 dev = grp_dev->dev;
3242 get_device(dev);
3243
3244 /*
3245 * Don't hold the group mutex because taking group mutex first and then
3246 * the device lock could potentially cause a deadlock as below. Assume
3247 * two threads T1 and T2. T1 is trying to change default domain of an
3248 * iommu group and T2 is trying to hot unplug a device or release [1] VF
3249 * of a PCIe device which is in the same iommu group. T1 takes group
3250 * mutex and before it could take device lock assume T2 has taken device
3251 * lock and is yet to take group mutex. Now, both the threads will be
3252 * waiting for the other thread to release lock. Below, lock order was
3253 * suggested.
3254 * device_lock(dev);
3255 * mutex_lock(&group->mutex);
3256 * iommu_change_dev_def_domain();
3257 * mutex_unlock(&group->mutex);
3258 * device_unlock(dev);
3259 *
3260 * [1] Typical device release path
3261 * device_lock() from device/driver core code
3262 * -> bus_notifier()
3263 * -> iommu_bus_notifier()
3264 * -> iommu_release_device()
3265 * -> ops->release_device() vendor driver calls back iommu core code
3266 * -> mutex_lock() from iommu core code
3267 */
3268 mutex_unlock(&group->mutex);
3269
3270 /* Check if the device in the group still has a driver bound to it */
3271 device_lock(dev);
3272 if (device_is_bound(dev)) {
3273 pr_err_ratelimited("Device is still bound to driver\n");
3274 ret = -EBUSY;
3275 goto out;
3276 }
3277
3278 ret = iommu_change_dev_def_domain(group, dev, req_type);
3279 ret = ret ?: count;
3280
3281out:
3282 device_unlock(dev);
3283 put_device(dev);
3284
3285 return ret;
3286}