Re: [PATCH 1/2] x86/amd-iommu: enable iommu before attachingdevices

From: Chris Wright
Date: Fri Apr 02 2010 - 19:58:27 EST


* Eric W. Biederman (ebiederm@xxxxxxxxxxxx) wrote:
> Chris Wright <chrisw@xxxxxxxxxxxx> writes:
>
> > * Vivek Goyal (vgoyal@xxxxxxxxxx) wrote:
> >> Following is just for my education purposes. Trying to understand better
> >> the impact of in-flight DMAs. So IIUC, in kudmp context following seems to be
> >> sequence of events.
> >>
> >> 1. kernel crashes, we leave IOMMU enabled.
> >
> > No, we actually disable the IOMMU
> >
> > panic()
> > crash_exec()
> > machine_crash_shutdown()
> > native_machine_crash_shutdown()
> > x86_platform.iommu_shutdown() == amd_iommu_init.c::disable_iommus()
>
> That call exists but is there any good reason for it?

It was originally added it for this very case, although I don't think it
should be there. I too am a proponent of removing it, because I think
all work should be done in the newly kexec'd kernel.

> Nothing should be on that can be reasonably done anywhere else.
> This round of bug fixing and testing would be a good time to remove
> that extraneous call.
>
> >> 2. boot into capture kernel and we call enable_iommus(). This function
> >> first disables iommu, sets up new device table and enables iommus
> >> again.
> >> a. So during this small window when iommu is disabled and we enable
> >> it back, any inflight DMA will passthrough possibly to an
> >> unintended physical address as translation is disabled and it
> >> can corrupt the kdump kenrel.
> >
> > Yes, should be possible.
> >
> >> b. Even after enabling the iommu, I guess we will continue to
> >> use cached DTE, and translation information to handle any
> >> in-flight DMA. The difference is that now iommus are enabled
> >> so any in-flight DMA should go to the address as intended in
> >> first kenrel and should not corrupt anything.
> >
> > Cached DTE only gets you domainID and pt root, so results depend upon
> > other caches too.
> >
> >> 3. Once iommus are enabled again, we allocated and initilize protection
> >> domains. We attach devices to domains. In the process we flush the
> >> DTE, PDE and IO TLBs.
> >
> > Yes, but this is immediately after 2b above. We can't send the invalidate
> > commands until the iommu is enabled.
> >
> >> c. Looks like do_attach->set_dte_entry(), by default gives write
> >> permission (IW) to all the devices. I am assuming that at
> >> this point of time translation is enabled and possibly unity
> >> mapped.
> >
> > Unlikely to have full unity map, it's typically just for a range,
> > and this is also typically for devices that have interaction w/ BIOS
> > (typical examples are usb/SMM for keyboard and integrated graphics).
> > And the mapping is to reserved memory areas (BIOS regions). On my test
> > box, for example, there are none of the BIOS specified ranges.
> >
> >> If that's the case, any in-flight DMA will not be
> >> allowed to happen at unity mapped address and this can possibly
> >> corrupt the kernel?
> >
> > I don't understand what you mean there.
> >
> >> I understand this patch should fix the case when in second kernel a
> >> device is not doing DMA because of possibly cached DTE, and translation
> >> information. But looks like in-flight DMA issues will still need a closer
> >> look. But that is a separate issue and needs to be addressed in separate
> >> set of patches.
> >
> > All of the in-flight DMA corrupts kdump kernel memory issues can exist
> > w/out an IOMMU. On the one hand, the IOMMU actually reduces the window
> > of opportunity, but on the other it adds possible translation issue.
>
> ?
> If disabling the IOMMU changes the destination in RAM of in-flight DMA
> the issues are not at all the same.
>
> > About the only thing we can do here is modify the crashing kernel to
> > update the DTE to disable dma, invalidate, and leave IOMMU enabled.
> > This is all in the context of crashing, so any further errors here mean
> > we probably won't get to kdump kernel.
>
> Why even touch the IOMMU?

I agree, and was trying to show that it's risky to do that while crashing.

Removing the IOMMU disable may still allow some DMA to succeed.
To actually close that off, you have to force all DMA transactions
to fail. Personally, I'm skeptical that the tradeoff is worth it.

thanks,
-chris
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/