lkml.org 
[lkml]   [2021]   [Apr]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    Date
    From
    SubjectRe: [PATCH V4 05/18] iommu/ioasid: Redefine IOASID set and allocation APIs
    On Thu, Apr 22, 2021 at 11:13:37AM -0600, Alex Williamson wrote:
    > On Wed, 21 Apr 2021 20:03:01 -0300
    > Jason Gunthorpe <jgg@nvidia.com> wrote:
    >
    > > On Wed, Apr 21, 2021 at 01:33:12PM -0600, Alex Williamson wrote:
    > >
    > > > > I still expect that VFIO_GROUP_SET_CONTAINER will be used to connect
    > > > > /dev/{ioasid,vfio} to the VFIO group and all the group and device
    > > > > logic stays inside VFIO.
    > > >
    > > > But that group and device logic is also tied to the container, where
    > > > the IOMMU backend is the interchangeable thing that provides the IOMMU
    > > > manipulation for that container.
    > >
    > > I think that is an area where the discussion would need to be focused.
    > >
    > > I don't feel very prepared to have it in details, as I haven't dug
    > > into all the group and iommu micro-operation very much.
    > >
    > > But, it does seem like the security concept that VFIO is creating with
    > > the group also has to be present in the lower iommu layer too.
    > >
    > > With different subsystems joining devices to the same ioasid's we
    > > still have to enforce the security propery the vfio group is creating.
    > >
    > > > If you're using VFIO_GROUP_SET_CONTAINER to associate a group to a
    > > > /dev/ioasid, then you're really either taking that group outside of
    > > > vfio or you're re-implementing group management in /dev/ioasid.
    > >
    > > This sounds right.
    > >
    > > > > Everything can be switched to ioasid_container all down the line. If
    > > > > it wasn't for PPC this looks fairly simple.
    > > >
    > > > At what point is it no longer vfio? I'd venture to say that replacing
    > > > the container rather than invoking a different IOMMU backend is that
    > > > point.
    > >
    > > sorry, which is no longer vfio?
    >
    > I'm suggesting that if we're replacing the container/group model with
    > an ioasid then we're effectively creating a new thing that really only
    > retains the vfio device uapi.
    >
    > > > > Since getting rid of PPC looks a bit hard, we'd be stuck with
    > > > > accepting a /dev/ioasid and then immediately wrappering it in a
    > > > > vfio_container an shimming it through a vfio_iommu_ops. It is not
    > > > > ideal at all, but in my look around I don't see a major problem if
    > > > > type1 implementation is moved to live under /dev/ioasid.
    > > >
    > > > But type1 is \just\ an IOMMU backend, not "/dev/vfio". Given that
    > > > nobody flinched at removing NVLink support, maybe just deprecate SPAPR
    > > > now and see if anyone objects ;)
    > >
    > > Would simplify this project, but I wonder :)
    > >
    > > In any event, it does look like today we'd expect the SPAPR stuff
    > > would be done through the normal iommu APIs, perhaps enhanced a bit,
    > > which makes me suspect an enhanced type1 can implement SPAPR.
    >
    > David Gibson has argued for some time that SPAPR could be handled via a
    > converged type1 model. We has mapped that out at one point,
    > essentially a "type2", but neither of us had any bandwidth to pursue it.

    Right. The sPAPR TCE backend is kind of an unfortunate accident of
    history. We absolutely could do a common interface, but no-one's had
    time to work on it.

    > > I say this because the SPAPR looks quite a lot like PASID when it has
    > > APIs for allocating multiple tables and other things. I would be
    > > interested to hear someone from IBM talk about what it is doing and
    > > how it doesn't fit into today's IOMMU API.

    Hm. I don't think it's really like PASID. Just like Type1, the TCE
    backend represents a single DMA address space which all devices in the
    container will see at all times. The difference is that there can be
    multiple (well, 2) "windows" of valid IOVAs within that address space.
    Each window can have a different TCE (page table) layout. For kernel
    drivers, a smallish translated window at IOVA 0 is used for 32-bit
    devices, and a large direct mapped (no page table) window is created
    at a high IOVA for better performance with 64-bit DMA capable devices.

    With the VFIO backend we create (but don't populate) a similar
    smallish 32-bit window, userspace can create its own secondary window
    if it likes, though obvious for userspace use there will always be a
    page table. Userspace can choose the total size (but not address),
    page size and to an extent the page table format of the created
    window. Note that the TCE page table format is *not* the same as the
    POWER CPU core's page table format. Userspace can also remove the
    default small window and create its own.

    The second wrinkle is pre-registration. That lets userspace register
    certain userspace VA ranges (*not* IOVA ranges) as being the only ones
    allowed to be mapped into the IOMMU. This is a performance
    optimization, because on pre-registration we also pre-account memory
    that will be effectively locked by DMA mappings, rather than doing it
    at DMA map and unmap time.

    This came about because POWER guests always contain a vIOMMU. That
    (combined with the smallish default IOVA window) means that DMA maps
    and unmaps can become an important bottleneck, rather than being
    basically a small once-off cost when qemu maps all of guest memory
    into the IOMMU. That's optimized with a special interlink between
    KVM and VFIO that accelerates the guest-initiated maps/unmap
    operations. However, it's not feasible to do the accounting in that
    fast path, hence the need for the pre-registration.

    >
    > [Cc David, Alexey]
    >
    > > It is very old and the iommu world has advanced tremendously lately,
    > > maybe I'm too optimisitic?
    > >
    > > > > We end up with a ioasid.h that basically has the vfio_iommu_type1 code
    > > > > lightly recast into some 'struct iommu_container' and a set of
    > > > > ioasid_* function entry points that follow vfio_iommu_driver_ops_type1:
    > > > > ioasid_attach_group
    > > > > ioasid_detatch_group
    > > > > ioasid_<something about user pages>
    > > > > ioasid_read/ioasid_write
    > > >
    > > > Again, this looks like a vfio IOMMU backend. What are we accomplishing
    > > > by replacing /dev/vfio with /dev/ioasid versus some manipulation of
    > > > VFIO_SET_IOMMU accepting a /dev/ioasid fd?
    > >
    > > The point of all of this is to make the user api for the IOMMU
    > > cross-subsystem. It is not a vfio IOMMU backend, it is moving the
    > > IOMMU abstraction from VFIO into the iommu framework and giving the
    > > iommu framework a re-usable user API.

    I like the idea of a common DMA/IOMMU handling system across
    platforms. However in order to be efficiently usable for POWER it
    will need to include multiple windows, allowing the user to change
    those windows and something like pre-registration to amortize
    accounting costs for heavy vIOMMU load.

    Well... possibly we can do without the pre-reg now that 32-bit DMA
    limited devics are less common, as are POWER8 systems. With modern
    devices and modern kernels a guest is likely to use a single large
    64-bit secondary window mapping all guest RAM, so the vIOMMU
    bottleneck shouldn't be such an issue.

    > Right, but I don't see that implies it cannot work within the vfio
    > IOMMU model. Currently when an IOMMU is set, the /dev/vfio/vfio
    > container becomes a conduit for file ops from the container to be
    > forwarded to the IOMMU. But that's in part because the user doesn't
    > have another object to interact with the IOMMU. It's entirely possible
    > that with an ioasid shim, the user would continue to interact directly
    > with the /dev/ioasid fd for IOMMU manipulation and only use
    > VFIO_SET_IOMMU to associate a vfio container to that ioasid.
    >
    > > My ideal outcome would be for VFIO to use only the new iommu/ioasid
    > > API and have no iommu pluggability at all. The iommu subsystem
    > > provides everything needed to VFIO, and provides it equally to VDPA
    > > and everything else.
    >
    > As above, we don't necessarily need to have the vfio container be the
    > access mechanism for the IOMMU, it can become just an means to
    > association the container with an IOMMU. This has quite a few
    > transitional benefits.
    >
    > > drivers/vfio/ becomes primarily about 'struct vfio_device' and
    > > everything related to its IOCTL interface.
    > >
    > > drivers/iommu and ioasid.c become all about a pluggable IOMMU
    > > interface, including a uAPI for it.
    > >
    > > IMHO it makes a high level sense, though it may be a pipe dream.
    >
    > This is where we've dissolved all but the vfio device uapi, which
    > suggests the group and container model were never necessary and I'm not
    > sure exactly what that uapi looks like. We currently make use of an
    > IOMMU api that is group aware, but that awareness extends out to the
    > vfio uapi.
    >
    > > > > If we have this, and /dev/ioasid implements the legacy IOCTLs, then
    > > > > /dev/vfio == /dev/ioasid and we can compile out vfio_fops and related
    > > > > from vfio.c and tell ioasid.c to create /dev/vfio instead using the
    > > > > ops it owns.
    > > >
    > > > Why would we want /dev/ioasid to implement legacy ioctls instead of
    > > > simply implementing an interface to allow /dev/ioasid to be used as a
    > > > vfio IOMMU backend?
    > >
    > > Only to make our own migration easier. I'd imagine everyone would want
    > > to sit down and design this new clear ioasid API that can co-exist on
    > > /dev/ioasid with the legacy once.
    >
    > vfio really just wants to be able to attach groups to an address space
    > to consider them isolated, everything else about the IOMMU API could
    > happen via a new ioasid file descriptor representing that context, ie.
    > vfio handles the group ownership and device access, ioasid handles the
    > actual mappings.
    >
    > > > The pseudo code above really suggests you do want to remove
    > > > /dev/vfio/vfio, but this is only one of the IOMMU backends for vfio, so
    > > > I can't quite figure out if we're talking past each other.
    > >
    > > I'm not quite sure what you mean by "one of the IOMMU backends?" You
    > > mean type1, right?
    > >
    > > > As I expressed in another thread, type1 has a lot of shortcomings. The
    > > > mapping interface leaves userspace trying desperately to use statically
    > > > mapped buffers because the map/unmap latency is too high. We have
    > > > horrible issues with duplicate locked page accounting across
    > > > containers. It suffers pretty hard from feature creep in various
    > > > areas. A new IOMMU backend is an opportunity to redesign some of these
    > > > things.
    > >
    > > Sure, but also those kinds of transformational things go alot better
    > > if you can smoothly go from the old to the new and have technical
    > > co-existance in side the kernel. Having a shim that maps the old APIs
    > > to new APIs internally to Linux helps keep the implementation from
    > > becoming too bogged down with compatibility.
    >
    > I'm afraid /dev/ioasid providing type1 compatibility would be just that.
    >
    > > > The IOMMU group also abstracts isolation and visibility relative to
    > > > DMA. For example, in a PCIe topology a multi-function device may not
    > > > have isolation between functions, but each requester ID is visible to
    > > > the IOMMU.
    > >
    > > Okay, I'm glad I have this all right in my head, as I was pretty sure
    > > this was what the group was about.
    > >
    > > My next question is why do we have three things as a FD: group, device
    > > and container (aka IOMMU interface)?
    > >
    > > Do we have container because the /dev/vfio/vfio can hold only a single
    > > page table so we need to swap containers sometimes?
    >
    > The container represents an IOMMU address space, which can be shared by
    > multiple groups, where each group may contain one or more devices.
    > Swapping a container would require releasing all the devices (the user
    > cannot have access to a non-isolated device), then a group could be
    > moved from one container to another.
    >
    > > If we start from a clean sheet and make a sketch..
    > >
    > > /dev/ioasid is the IOMMU control interface. It can create multiple
    > > IOASIDs that have page tables and it can manipulate those page tables.
    > > Each IOASID is identified by some number.
    > >
    > > struct vfio_device/vdpa_device/etc are consumers of /dev/ioasid
    > >
    > > When a device attaches to an ioasid userspace gives VFIO/VDPA the
    > > ioasid FD and the ioasid # in the FD.
    > >
    > > The security rule for isolation is that once a device is attached to a
    > > /dev/ioasid fd then all other devices in that security group must be
    > > attached to the same ioasid FD or left unused.
    >
    > Sounds like a group... Note also that if those other devices are not
    > isolated from the user's device, the user could manipulate "unused"
    > devices via DMA. So even unused devices should be within the same
    > IOMMU context... thus attaching groups to IOMMU domains.
    >
    > > Thus /dev/ioasid also becomes the unit of security and the IOMMU
    > > subsystem level becomes aware of and enforces the group security
    > > rules. Userspace does not need to "see" the group
    >
    > What tools does userspace have to understand isolation of individual
    > devices without groups?
    >
    > > In sketch it would be like
    > > ioasid_fd = open("/dev/ioasid");
    > > vfio_device_fd = open("/dev/vfio/device0")
    > > vdpa_device_fd = open("/dev/vdpa/device0")
    > > ioctl(vifo_device_fd, JOIN_IOASID_FD, ioasifd)
    > > ioctl(vdpa_device_fd, JOIN_IOASID_FD, ioasifd)
    > >
    > > gpa_ioasid_id = ioctl(ioasid_fd, CREATE_IOASID, ..)
    > > ioctl(ioasid_fd, SET_IOASID_PAGE_TABLES, ..)
    > >
    > > ioctl(vfio_device, ATTACH_IOASID, gpa_ioasid_id)
    > > ioctl(vpda_device, ATTACH_IOASID, gpa_ioasid_id)
    > >
    > > .. both VDPA and VFIO see the guest physical map and the kernel has
    > > enough info that both could use the same IOMMU page table
    > > structure ..
    > >
    > > // Guest viommu turns off bypass mode for the vfio device
    > > ioctl(vfio_device, DETATCH_IOASID)
    > >
    > > // Guest viommu creates a new page table
    > > rid_ioasid_id = ioctl(ioasid_fd, CREATE_IOASID, ..)
    > > ioctl(ioasid_fd, SET_IOASID_PAGE_TABLES, ..)
    > >
    > > // Guest viommu links the new page table to the RID
    > > ioctl(vfio_device, ATTACH_IOASID, rid_ioasid_id)
    > >
    > > The group security concept becomes implicit and hidden from the
    > > uAPI. JOIN_IOASID_FD implicitly finds the device's group inside the
    > > kernel and requires that all members of the group be joined only to
    > > this ioasid_fd.
    > >
    > > Essentially we discover the group from the device instead of the
    > > device from the group.
    > >
    > > Where does it fall down compared to the three FD version we have
    > > today?
    >
    > The group concept is explicit today because how does userspace learn
    > about implicit dependencies between devices? For example, if the user
    > has a conventional PCI bus with a couple devices on it, how do they
    > understand that those devices cannot be assigned to separate userspace
    > drivers? The group fd fills that gap. Thanks,
    >
    > Alex
    >

    --
    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
    [unhandled content-type:application/pgp-signature]
    \
     
     \ /
      Last update: 2021-04-27 07:16    [W:4.229 / U:0.176 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site