Skip to content

Commit 0020885

Browse files
nicolincjgunthorpe
authored andcommitted
iommu: Add return value rules to attach_dev op and APIs
Cases like VFIO wish to attach a device to an existing domain that was not allocated specifically from the device. This raises a condition where the IOMMU driver can fail the domain attach because the domain and device are incompatible with each other. This is a soft failure that can be resolved by using a different domain. Provide a dedicated errno EINVAL from the IOMMU driver during attach that the reason why the attach failed is because of domain incompatibility. VFIO can use this to know that the attach is a soft failure and it should continue searching. Otherwise, the attach will be a hard failure and VFIO will return the code to userspace. Update kdocs to add rules of return value to the attach_dev op and APIs. Link: https://lore.kernel.org/r/bd56d93c18621104a0fa1b0de31e9b760b81b769.1666042872.git.nicolinc@nvidia.com Suggested-by: Jason Gunthorpe <[email protected]> Reviewed-by: Kevin Tian <[email protected]> Reviewed-by: Jason Gunthorpe <[email protected]> Signed-off-by: Nicolin Chen <[email protected]> Reviewed-by: Lu Baolu <[email protected]> Signed-off-by: Jason Gunthorpe <[email protected]>
1 parent 79218fd commit 0020885

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed

drivers/iommu/iommu.c

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1949,6 +1949,18 @@ static int __iommu_attach_device(struct iommu_domain *domain,
19491949
return ret;
19501950
}
19511951

1952+
/**
1953+
* iommu_attach_device - Attach an IOMMU domain to a device
1954+
* @domain: IOMMU domain to attach
1955+
* @dev: Device that will be attached
1956+
*
1957+
* Returns 0 on success and error code on failure
1958+
*
1959+
* Note that EINVAL can be treated as a soft failure, indicating
1960+
* that certain configuration of the domain is incompatible with
1961+
* the device. In this case attaching a different domain to the
1962+
* device may succeed.
1963+
*/
19521964
int iommu_attach_device(struct iommu_domain *domain, struct device *dev)
19531965
{
19541966
struct iommu_group *group;
@@ -2075,6 +2087,18 @@ static int __iommu_attach_group(struct iommu_domain *domain,
20752087
return ret;
20762088
}
20772089

2090+
/**
2091+
* iommu_attach_group - Attach an IOMMU domain to an IOMMU group
2092+
* @domain: IOMMU domain to attach
2093+
* @group: IOMMU group that will be attached
2094+
*
2095+
* Returns 0 on success and error code on failure
2096+
*
2097+
* Note that EINVAL can be treated as a soft failure, indicating
2098+
* that certain configuration of the domain is incompatible with
2099+
* the group. In this case attaching a different domain to the
2100+
* group may succeed.
2101+
*/
20782102
int iommu_attach_group(struct iommu_domain *domain, struct iommu_group *group)
20792103
{
20802104
int ret;

include/linux/iommu.h

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -266,6 +266,18 @@ struct iommu_ops {
266266
/**
267267
* struct iommu_domain_ops - domain specific operations
268268
* @attach_dev: attach an iommu domain to a device
269+
* Return:
270+
* * 0 - success
271+
* * EINVAL - can indicate that device and domain are incompatible due to
272+
* some previous configuration of the domain, in which case the
273+
* driver shouldn't log an error, since it is legitimate for a
274+
* caller to test reuse of existing domains. Otherwise, it may
275+
* still represent some other fundamental problem
276+
* * ENOMEM - out of memory
277+
* * ENOSPC - non-ENOMEM type of resource allocation failures
278+
* * EBUSY - device is attached to a domain and cannot be changed
279+
* * ENODEV - device specific errors, not able to be attached
280+
* * <others> - treated as ENODEV by the caller. Use is discouraged
269281
* @detach_dev: detach an iommu domain from a device
270282
* @map: map a physically contiguous memory region to an iommu domain
271283
* @map_pages: map a physically contiguous set of pages of the same size to

0 commit comments

Comments
 (0)