Re: [RFC v2] /dev/iommu uAPI proposal
From: David Gibson <hidden>
Date: 2021-08-06 05:33:08
Also in:
linux-iommu, lkml
On Tue, Aug 03, 2021 at 03:19:26AM +0000, Tian, Kevin wrote:
quoted
From: David Gibson <redacted> Sent: Tuesday, August 3, 2021 9:51 AM On Wed, Jul 28, 2021 at 04:04:24AM +0000, Tian, Kevin wrote:quoted
Hi, David,quoted
From: David Gibson <redacted> Sent: Monday, July 26, 2021 12:51 PM On Fri, Jul 09, 2021 at 07:48:44AM +0000, Tian, Kevin wrote:quoted
/dev/iommu provides an unified interface for managing I/O page tablesforquoted
quoted
quoted
devices assigned to userspace. Device passthrough frameworks (VFIO,vDPA,quoted
etc.) are expected to use this interface instead of creating their ownlogic toquoted
quoted
quoted
isolate untrusted device DMAs initiated by userspace. This proposal describes the uAPI of /dev/iommu and also samplesequencesquoted
with VFIO as example in typical usages. The driver-facing kernel APIprovidedquoted
by the iommu layer is still TBD, which can be discussed after consensusisquoted
quoted
quoted
made on this uAPI. It's based on a lengthy discussion starting from here: https://lore.kernel.org/linux-iommu/20210330132830.GO2356281@nvidia.com/quoted
v1 can be found here: https://lore.kernel.org/linux-iommu/PH0PR12MB54811863B392C644E5365446DC3E9@PH0PR12MB5481.nquoted
quoted
amprd12.prod.outlook.com/T/quoted
This doc is also tracked on github, though it's not very useful for v1->v2 given dramatic refactoring: https://github.com/luxis1999/dev_iommu_uapiThanks for all your work on this, Kevin. Apart from the actual semantic improvements, I'm finding v2 significantly easier to read and understand than v1. [snip]quoted
1.2. Attach Device to I/O address space +++++++++++++++++++++++++++++++++++++++ Device attach/bind is initiated through passthrough framework uAPI. Device attaching is allowed only after a device is successfully bound to the IOMMU fd. User should provide a device cookie when binding the device through VFIO uAPI. This cookie is used when the user queries device capability/format, issues per-device iotlb invalidation and receives per-device I/O page fault data via IOMMU fd. Successful binding puts the device into a security context which isolates its DMA from the rest system. VFIO should not allow user to access the device before binding is completed. Similarly, VFIO should prevent the user from unbinding the device before user access is withdrawn. When a device is in an iommu group which contains multiple devices, all devices within the group must enter/exit the security context together. Please check {1.3} for more info about group isolation via this device-centric design. Successful attaching activates an I/O address space in the IOMMU, if the device is not purely software mediated. VFIO must provide device specific routing information for where to install the I/O page table in the IOMMU for this device. VFIO must also guarantee that the attached device is configured to compose DMAs with the routing informationthatquoted
quoted
quoted
is provided in the attaching call. When handling DMA requests, IOMMU identifies the target I/O address space according to the routing information carried in the request. Misconfiguration breaks DMA isolation thus could lead to severe security vulnerability. Routing information is per-device and bus specific. For PCI, it is Requester ID (RID) identifying the device plus optional Process Address Space ID (PASID). For ARM, it is Stream ID (SID) plus optional Sub-Streamquoted
quoted
quoted
ID (SSID). PASID or SSID is used when multiple I/O address spaces are enabled on a single device. For simplicity and continuity reason the following context uses RID+PASID though SID+SSID may sound a clearer naming from device p.o.v. We can decide the actual naming whencoding.quoted
quoted
quoted
Because one I/O address space can be attached by multiple devices, per-device routing information (plus device cookie) is tracked under each IOASID and is used respectively when activating the I/O address space in the IOMMU for each attached device. The device in the /dev/iommu context always refers to a physical one (pdev) which is identifiable via RID. Physically each pdev can support one default I/O address space (routed via RID) and optionally multiple non-default I/O address spaces (via RID+PASID). The device in VFIO context is a logic concept, being either a physical device (pdev) or mediated device (mdev or subdev). Each vfio device is represented by RID+cookie in IOMMU fd. User is allowed to create one default I/O address space (routed by vRID from user p.o.v) per each vfio_device. VFIO decides the routing information for this default space based on device type: 1) pdev, routed via RID; 2) mdev/subdev with IOMMU-enforced DMA isolation, routed via the parent's RID plus the PASID marking this mdev; 3) a purely sw-mediated device (sw mdev), no routing required i.e. no need to install the I/O page table in the IOMMU. sw mdev just uses the metadata to assist its internal DMA isolation logic on top of the parent's IOMMU page table; In addition, VFIO may allow user to create additional I/O addressspacesquoted
quoted
quoted
on a vfio_device based on the hardware capability. In such case theuserquoted
quoted
quoted
has its own view of the virtual routing information (vPASID) whenmarkingquoted
quoted
quoted
these non-default address spaces. How to virtualize vPASID is platform specific and device specific. Some platforms allow the user to fully manage the PASID space thus vPASIDs are directly used for routing and even hidden from the kernel. Other platforms require the user to explicitly register the vPASID information to the kernel when attaching the vfio_device. In this case VFIO must figure out whether vPASIDshouldquoted
quoted
quoted
be directly used (pdev) or converted to a kernel-allocated pPASID (mdev) for physical routing. Detail explanation about PASID virtualization can be found in {1.4}. For mdev both default and non-default I/O address spaces are routed via PASIDs. To better differentiate them we use "default PASID" (or defPASID) when talking about the default I/O address space on mdev.Whenquoted
vPASID or pPASID is referred in PASID virtualization it's all about the non-default spaces. defPASID and pPASID are always hidden fromuserspacequoted
and can only be indirectly referenced via IOASID.That said, I'm still finding the various ways a device can attach to an ioasid pretty confusing. Here are some thoughts on some extra concepts that might make it easier to handle [note, I haven't thought this all the way through so far, so there might be fatal problems with this approach].Thanks for sharing your thoughts.quoted
* DMA address type This represents the format of the actual "over the wire" DMA address. So far I only see 3 likely options for this 1) 32-bit, 2) 64-bit and 3) PASID, meaning the 84-bit PASID+address combination. * DMA identifier type This represents the format of the "over the wire" device-identifying information that the IOMMU receives. So "RID", "RID+PASID", "SID+SSID" would all be DMA identifier types. We could introduce some extra ones which might be necessary for software mdevs. So, every single DMA transaction has both DMA address and DMA identifier information attached. In some cases we get to choose how we split the availble information between identifier and address, more on that later. * DMA endpoint An endpoint would represent a DMA origin which is identifiable to the IOMMU. I'm using the new term, because while this would sometimes correspond one to one with a device, there would be some cases where it does not. a) Multiple devices could be a single DMA endpoint - this would be the case with non-ACS bridges or PCIe to PCI bridges where devices behind the bridge can't be distinguished from each other. Early versions might be able to treat all VFIO groups as single endpoints, which might simplify transition b) A single device could supply multiple DMA endpoints, this would be the case with PASID capable devices where you want to map different PASIDs to different IOASes. **Caveat: feel free to come up with a better name than "endpoint" **Caveat: I'm not immediately sure how to represent these to userspace, and how we do that could have some important implications for managing their lifetime Every endpoint would have a fixed, known DMA address type and DMA identifier type (though I'm not sure if we need/want to expose the DMA identifier type to userspace). Every IOAS would also have a DMA address type fixed at IOAS creation. An endpoint can only be attached to one IOAS at a time. It can only be attached to an IOAS whose DMA address type matches the endpoint. Most userspace managed IO page formats would imply a particular DMA address type, and also a particular DMA address type for their "parent" IOAS. I'd expect kernel managed IO page tables to be able to be able to handle most combinations. /dev/iommu would work entirely (or nearly so) in terms of endpoint handles, not device handles. Endpoints are what get bound to an IOAS, and endpoints are what get the user chosen endpoint cookie. Getting endpoint handles from devices is handled on the VFIO/device side. The simplest transitional approach is probably for a VFIO pdev groups to expose just a single endpoint. We can potentially make that more flexible as a later step, and other subsystems might have other needs.I wonder what is the real value of this endpoint concept. for SVA-capable pdev case, the entire pdev is fully managed by the guest thus only the guest driver knows DMA endpoints on this pdev. vfio-pci doesn't know the presence of an endpoint until Qemu requests to do ioasid attaching after identifying an IOAS via vIOMMU.No.. that's not true. vfio-pci knows it can generate a "RID"-type endpoint for the device, and I assume the device will have a SVA capability bit, which lets vfio know that the endpoint will generate PASID+addr addresses, rather than plain 64-bit addresses. You can't construct RID+PASID endpoints with vfio's knowledge alone, but that's ok - that style would be for mdevs or other cases where you do have more information about the specific device.if vfio-pci cannot construct endpoint alone in all cases, then I worried we are just inventing unnecessary uAPI objects of which the role can be already fulfilled by device cookie+PASID in the proposed uAPI.
I don't see that the device cookie is relevant here - AIUI that's *assigned* by the user, so it doesn't really address the original identification of the device. In my proposal you'd instead assign a cookie to an endpoint, since that's the identifiable object. The problem with "device+PASID" is that it only makes sense for some versions of "device". For mdevs that are implemented by using one-PASID of a pdev, then the PASID is included already in the "device" so adding a PASID makes no sense. For devices that aren't SVA capable, "device+PASID" is meaningful (sort of) but useless. So, you have to know details of the type of device in order to use the IOMMU APIs. You have to know what kinds of devices an IOAS can accomodate, and what kinds of binding to that IOAS it can accomodate. Can a device be bound to multiple IOASes or not? If you want to bind it to multiple IOASes, does it need a specific kind of binding? And that's before we even consider what some new bus revision might do and what new possibilities that might add. With endpoints it's simply "does this endpoint have the same address type as the IOAS".
quoted
quoted
If we want to build /dev/iommu uAPI around endpoint, probably vfio has to provide an uAPI for user to request creating an endpoint in the fly before doing the attaching call. but what goodness does it bring with additional complexity, given what we require is just the RID or RID+PASID routing info which can be already dig out by vfio driver w/o knowing any endpoint concept...It more clearly delineates who's responsible for what. The driver (VFIO, mdev, vDPA, whatever) supplies endpoints. Depending on the type of device it could be one endpoint per device, a choice of several different endpoints for a device, several simultaneous endpoints for the device, or one endpoint for several devices. But whatever it is that's all on the device side. Once you get an endpoint, it's always binding exactly one endpoint to exactly one IOAS so the point at which the device side meets the IOMMU side becomes much simpler.Sticking to iommu semantics {device, pasid} are clear enough for the user to build the connection between IOAS and device.
I don't really agree, it's certainly confusing to me. Again the problem is that "device" can cover a bunch of different meanings (PCI device, mdev, kernel device). Endpoint means, explicitly, "a thing that can be bound to a single DMA address space at a time".
This also matches the vIOMMU part which just understands vRID and vPASID, without any concept of endpoint. anyway RID+PASID (or SID+SSID) is what is defined in the bus to tag an IOAS. Forcing vIOMMU to fake an endpoint (via vfio) per PASID before doing attach just adds unnecessary confusion.
There's no faking here - the endpoint is a real thing, and you don't need to have an endpoint per PASID. As noted in one of the examples and SVA capable device can be treated as single endpoint, with address type "PASID+address". The *possibility* of single-PASID endpoints exists, so that a) single-PASID mdevs can expose themselves that way and b) because for some user spacve drivers it might be more convenient to
quoted
If we find a new device type or bus with a new way of doing DMA addressing, it's just adding some address/id types; we don't need new ways of binding these devices to the IOMMU.We just need define a better name to cover pasid, ssid, or other ids. regardless of the bus type, it's always the device cookie to identify the default I/O address space plus a what-ever id to tag other I/O address spaces targeted by the device.
Well, that's kind of what I'm doing. PCI currently has the notion of "default" address space for a RID, but there's no guarantee that other buses (or even future PCI extensions) will. The idea is that "endpoint" means exactly the (RID, PASID) or (SID, SSID) or whatever future variations are on that. It can also then accomodate both non-SVA PCI devices with simply a (RID) == (RID, DEFAULT_PASID), a case where you want to manage multiple PASIDs within a single IOMMU table, again as just (RID), but with a complex address type.
quoted
quoted
In concept I feel the purpose of DMA endpoint is equivalent to the routing info in this proposal.Maybe? I'm afraid I never quite managed to understand the role of the routing info in your proposal.the IOMMU routes incoming DMA packets to a specific I/O page table, according to RID or RID+PASID carried in the packet. RID or RID+PASID is the routing information (represented by device cookie +PASID in proposed uAPI) and what the iommu driver really cares when activating the I/O page table in the iommu.
Ok, so yes, endpoint is roughly equivalent to that. But my point is that the IOMMU layer really only cares about that (device+routing) combination, not other aspects of what the device is. So that's the concept we should give a name and put front and center in the API. -- David Gibson | I'll have my music baroque, and my code david AT gibson.dropbear.id.au | minimalist, thank you. NOT _the_ _other_ | _way_ _around_! http://www.ozlabs.org/~dgibson
Attachments
- signature.asc [application/pgp-signature] 833 bytes