From: Yi Liu <yi.l.liu@intel.com>
To: Zhenzhong Duan <zhenzhong.duan@intel.com>, <qemu-devel@nongnu.org>
Cc: <mst@redhat.com>, <jasowang@redhat.com>, <peterx@redhat.com>,
<clement.mathieu--drif@eviden.com>
Subject: Re: [PATCH v3 3/3] intel_iommu: Fix DMA failure when guest switches IOMMU domain
Date: Mon, 20 Oct 2025 20:46:02 +0800 [thread overview]
Message-ID: <f5342918-497f-44dd-b39a-07a56ca0826c@intel.com> (raw)
In-Reply-To: <20251017093602.525338-4-zhenzhong.duan@intel.com>
On 2025/10/17 17:36, Zhenzhong Duan wrote:
> Kernel allows user to switch IOMMU domain, e.g., switch between DMA
> and identity domain. When this happen in IOMMU scalable mode, a pasid
> cache invalidation request is sent, this request is ignored by vIOMMU
> which leads to device binding to wrong address space, then DMA fails.
>
> This issue exists in scalable mode with both first stage and second
> stage translations, both emulated and passthrough devices.
>
> Take network device for example, below sequence trigger issue:
>
> 1. start a guest with iommu=pt
> 2. echo 0000:01:00.0 > /sys/bus/pci/drivers/virtio-pci/unbind
> 3. echo DMA > /sys/kernel/iommu_groups/6/type
> 4. echo 0000:01:00.0 > /sys/bus/pci/drivers/virtio-pci/bind
> 5. Ping test
>
> Fix it by switching address space in invalidation handler.
>
> Fixes: 4a4f219e8a10 ("intel_iommu: add scalable-mode option to make scalable mode work")
> Signed-off-by: Zhenzhong Duan <zhenzhong.duan@intel.com>
> ---
> hw/i386/intel_iommu.c | 29 +++++++++++++++++++++++++++--
> 1 file changed, 27 insertions(+), 2 deletions(-)
>
> diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c
> index 07bc0a749c..c402643b56 100644
> --- a/hw/i386/intel_iommu.c
> +++ b/hw/i386/intel_iommu.c
> @@ -3087,6 +3087,11 @@ static inline int vtd_dev_get_pe_from_pasid(VTDAddressSpace *vtd_as,
> return vtd_ce_get_rid2pasid_entry(s, &ce, pe, vtd_as->pasid);
> }
>
> +static int vtd_pasid_entry_compare(VTDPASIDEntry *p1, VTDPASIDEntry *p2)
> +{
> + return memcmp(p1, p2, sizeof(*p1));
> +}
> +
> /* Update or invalidate pasid cache based on the pasid entry in guest memory. */
> static void vtd_pasid_cache_sync_locked(gpointer key, gpointer value,
> gpointer user_data)
> @@ -3095,15 +3100,28 @@ static void vtd_pasid_cache_sync_locked(gpointer key, gpointer value,
> VTDAddressSpace *vtd_as = value;
> VTDPASIDCacheEntry *pc_entry = &vtd_as->pasid_cache_entry;
> VTDPASIDEntry pe;
> + IOMMUNotifier *n;
> uint16_t did;
>
> if (vtd_dev_get_pe_from_pasid(vtd_as, &pe)) {
> + if (!pc_entry->valid) {
> + return;
> + }
> /*
> * No valid pasid entry in guest memory. e.g. pasid entry was modified
> * to be either all-zero or non-present. Either case means existing
> * pasid cache should be invalidated.
> */
> pc_entry->valid = false;
> +
> + /*
> + * When a pasid entry isn't valid any more, we should unmap all
> + * mappings in shadow pages instantly to ensure DMA security.
> + */
> + IOMMU_NOTIFIER_FOREACH(n, &vtd_as->iommu) {
> + vtd_address_space_unmap(vtd_as, n);
> + }
I just realized that if the MR is nodmar MR, the notifier is not
registered at all. is it? So the above loop and below does not
duplicate.
> + vtd_switch_address_space(vtd_as);
> return;
> }
>
> @@ -3129,8 +3147,15 @@ static void vtd_pasid_cache_sync_locked(gpointer key, gpointer value,
> }
> }
>
> - pc_entry->pasid_entry = pe;
> - pc_entry->valid = true;
> + if (!pc_entry->valid) {
> + pc_entry->pasid_entry = pe;
> + pc_entry->valid = true;
> + } else if (!vtd_pasid_entry_compare(&pe, &pc_entry->pasid_entry)) {
> + return;
> + }
> +
> + vtd_switch_address_space(vtd_as);
> + vtd_address_space_sync(vtd_as);
> }
>
> static void vtd_pasid_cache_sync(IntelIOMMUState *s, VTDPASIDCacheInfo *pc_info)
Reviewed-by: Yi Liu <yi.l.liu@intel.com>
Regards,
Yi Liu
next prev parent reply other threads:[~2025-10-20 12:40 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-17 9:35 [PATCH v3 0/3] Fix DMA failure when there is domain switch in guest Zhenzhong Duan
2025-10-17 9:36 ` [PATCH v3 1/3] intel_iommu: Handle PASID cache invalidation Zhenzhong Duan
2025-10-17 9:36 ` [PATCH v3 2/3] intel_iommu: Reset pasid cache when system level reset Zhenzhong Duan
2025-10-20 12:44 ` Yi Liu
2025-10-17 9:36 ` [PATCH v3 3/3] intel_iommu: Fix DMA failure when guest switches IOMMU domain Zhenzhong Duan
2025-10-20 12:46 ` Yi Liu [this message]
2025-10-21 3:04 ` Duan, Zhenzhong
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f5342918-497f-44dd-b39a-07a56ca0826c@intel.com \
--to=yi.l.liu@intel.com \
--cc=clement.mathieu--drif@eviden.com \
--cc=jasowang@redhat.com \
--cc=mst@redhat.com \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=zhenzhong.duan@intel.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).