From: Charan Teja Kalla <quic_charante@quicinc.com>
To: <joro@8bytes.org>, <will@kernel.org>, <robin.murphy@arm.com>,
<jgg@ziepe.ca>
Cc: <iommu@lists.linux.dev>, <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH RFC] iommu: fix wrong DMA ops for iommu device
Date: Thu, 2 Jan 2025 16:09:46 +0530 [thread overview]
Message-ID: <91d15d11-ec53-4ca2-a385-9fa69d861f2c@quicinc.com> (raw)
In-Reply-To: <20241213150415.653821-1-quic_charante@quicinc.com>
Just a quick ask if you have any comments for the below. BTW, in
internal tests, when we revert the commit f188056352bc ("iommu: Avoid
locking/unlocking for iommu_probe_device()", it is helping.
I can share more details If the below is not sufficient.
Thanks in advance...
On 12/13/2024 8:34 PM, Charan Teja Kalla wrote:
> Race between smmu device probe and iommu device probe is resulting into
> wrong DMA ops used for the device.
>
> bus_iommu_probe(P1) of_iommu_configure(P2)
> (from iommu_device_register) (from insmod of a driver)
> -------------------------- --------------------------
> 1) probe_iommu_group()
> (Fills just dev->iommu_group
> under iommu_probe_device_lock)
> 2) iommu_probe_device():
> (acquires the iommu_probe_device_lock,
> but since dev->iommu_group is already
> set, it just returns without
> allocating the domain.)
>
> 3) of_dma_configure_id()->
> arch_setup_dma_ops() gets called for
> this device, but returns with the
> error message:
> "Failed to set up IOMMU for device;
> retaining platform DMA ops"
>
> 4) device probe is succeeded where it
> can now setup iommu mappings using
> wrong ->dma_ops
>
> 5) domain will be allocated later
> and fills iommu_group->domain.
>
> Step 3) and 4) denies iommu device from using 'iommu_dma_ops'.
>
> This issue does exists on 6.6 because of commit f188056352bc ("iommu:
> Avoid locking/unlocking for iommu_probe_device()") without which 2)
> returns only after filling the domain under group->mutex, thus no issue.
>
> With commit b5c58b2fdc42("dma-mapping: direct calls for dma-iommu"),
> ->iommu_dma_ops is removed altogether and iommu api are directly being
> called under "use_dma_iommu(): return dev->dma_iommu". Again,
> ->dma_iommu flag is set only after domain allocation. So, If
> there is a sufficient delay between steps 4) and 5), issue is still
> exists but that seems very narrow to me.
>
> I am thinking, setup of the domain before returning from step2) is the
> way to fix this issue. Can you please help if you have any suggestions?
>
> Signed-off-by: Charan Teja Kalla <quic_charante@quicinc.com>
> ---
> drivers/iommu/iommu.c | 26 +++++++++++++++++++++++++-
> 1 file changed, 25 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/iommu/iommu.c b/drivers/iommu/iommu.c
> index 3f1029c0825e..61fc8145f378 100644
> --- a/drivers/iommu/iommu.c
> +++ b/drivers/iommu/iommu.c
> @@ -561,19 +561,43 @@ static int __iommu_probe_device(struct device *dev, struct list_head *group_list
> int iommu_probe_device(struct device *dev)
> {
> const struct iommu_ops *ops;
> + struct iommu_group *group;
> int ret;
>
> mutex_lock(&iommu_probe_device_lock);
> ret = __iommu_probe_device(dev, NULL);
> mutex_unlock(&iommu_probe_device_lock);
> if (ret)
> - return ret;
> + goto err_out;
> +
> + group = iommu_group_get(dev);
> + if (!group) {
> + ret = -ENODEV;
> + goto err_release;
> + }
> +
> + mutex_lock(&group->mutex);
> + if (!group->default_domain) {
> + ret = iommu_setup_default_domain(group, 0);
> + if (ret)
> + goto err_unlock;
> + }
> + mutex_unlock(&group->mutex);
> + iommu_group_put(group);
>
> ops = dev_iommu_ops(dev);
> if (ops->probe_finalize)
> ops->probe_finalize(dev);
>
> return 0;
> +
> +err_unlock:
> + mutex_unlock(&group->mutex);
> + iommu_group_put(group);
> +err_release:
> + iommu_release_device(dev);
> +err_out:
> + return ret;
> }
>
> static void __iommu_group_free_device(struct iommu_group *group,
next prev parent reply other threads:[~2025-01-02 10:40 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-13 15:04 [PATCH RFC] iommu: fix wrong DMA ops for iommu device Charan Teja Kalla
2025-01-02 10:39 ` Charan Teja Kalla [this message]
2025-01-03 15:34 ` Will Deacon
2025-01-06 13:16 ` Charan Teja Kalla
2025-01-07 11:31 ` Will Deacon
2025-01-08 12:37 ` Robin Murphy
2025-01-10 13:29 ` Charan Teja Kalla
2025-01-13 17:25 ` Robin Murphy
2025-01-20 12:15 ` Charan Teja Kalla
2025-01-22 5:39 ` Charan Teja Kalla
2025-01-22 14:43 ` Robin Murphy
2025-01-24 0:32 ` Charan Teja Kalla
2025-01-24 14:17 ` Robin Murphy
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=91d15d11-ec53-4ca2-a385-9fa69d861f2c@quicinc.com \
--to=quic_charante@quicinc.com \
--cc=iommu@lists.linux.dev \
--cc=jgg@ziepe.ca \
--cc=joro@8bytes.org \
--cc=linux-kernel@vger.kernel.org \
--cc=robin.murphy@arm.com \
--cc=will@kernel.org \
/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