From: Sjoerd Simons <sjoerd@collabora.com>
To: Johan Hovold <johan@kernel.org>,
Chun-Kuang Hu <chunkuang.hu@kernel.org>,
Philipp Zabel <p.zabel@pengutronix.de>
Cc: David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
Matthias Brugger <matthias.bgg@gmail.com>,
AngeloGioacchino Del Regno
<angelogioacchino.delregno@collabora.com>,
CK Hu <ck.hu@mediatek.com>, Ma Ke <make24@iscas.ac.cn>,
dri-devel@lists.freedesktop.org,
linux-mediatek@lists.infradead.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH] drm/mediatek: fix device use-after-free on unbind
Date: Sat, 11 Oct 2025 09:57:20 +0200 [thread overview]
Message-ID: <5137227fee0bb06dac3558b0d2db47972785df48.camel@collabora.com> (raw)
In-Reply-To: <20251006093937.27869-1-johan@kernel.org>
On Mon, 2025-10-06 at 11:39 +0200, Johan Hovold wrote:
> A recent change fixed device reference leaks when looking up drm
> platform device driver data during bind() but failed to remove a partial
> fix which had been added by commit 80805b62ea5b ("drm/mediatek: Fix
> kobject put for component sub-drivers").
>
> This results in a reference imbalance on component bind() failures and
> on unbind() which could lead to a user-after-free.
>
> Make sure to only drop the references after retrieving the driver data
> by effectively reverting the previous partial fix.
>
> Note that holding a reference to a device does not prevent its driver
> data from going away so there is no point in keeping the reference.
Thanks for correcting my "fix". This looks better and i can confirm it fixes the issue :)
Reviewed-By: Sjoerd Simons <sjoerd@collabora.com>
Tested-By: Sjoerd Simons <sjoerd@collabora.com>
>
> Fixes: 1f403699c40f ("drm/mediatek: Fix device/node reference count leaks in
> mtk_drm_get_all_drm_priv")
> Reported-by: Sjoerd Simons <sjoerd@collabora.com>
> Link: https://lore.kernel.org/r/20251003-mtk-drm-refcount-v1-1-3b3f2813b0db@collabora.com
> Cc: stable@vger.kernel.org
> Cc: Ma Ke <make24@iscas.ac.cn>
> Cc: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
> Signed-off-by: Johan Hovold <johan@kernel.org>
> ---
> drivers/gpu/drm/mediatek/mtk_drm_drv.c | 10 ----------
> 1 file changed, 10 deletions(-)
>
> diff --git a/drivers/gpu/drm/mediatek/mtk_drm_drv.c b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> index 384b0510272c..a94c51a83261 100644
> --- a/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> +++ b/drivers/gpu/drm/mediatek/mtk_drm_drv.c
> @@ -686,10 +686,6 @@ static int mtk_drm_bind(struct device *dev)
> for (i = 0; i < private->data->mmsys_dev_num; i++)
> private->all_drm_private[i]->drm = NULL;
> err_put_dev:
> - for (i = 0; i < private->data->mmsys_dev_num; i++) {
> - /* For device_find_child in mtk_drm_get_all_priv() */
> - put_device(private->all_drm_private[i]->dev);
> - }
> put_device(private->mutex_dev);
> return ret;
> }
> @@ -697,18 +693,12 @@ static int mtk_drm_bind(struct device *dev)
> static void mtk_drm_unbind(struct device *dev)
> {
> struct mtk_drm_private *private = dev_get_drvdata(dev);
> - int i;
>
> /* for multi mmsys dev, unregister drm dev in mmsys master */
> if (private->drm_master) {
> drm_dev_unregister(private->drm);
> mtk_drm_kms_deinit(private->drm);
> drm_dev_put(private->drm);
> -
> - for (i = 0; i < private->data->mmsys_dev_num; i++) {
> - /* For device_find_child in mtk_drm_get_all_priv() */
> - put_device(private->all_drm_private[i]->dev);
> - }
> put_device(private->mutex_dev);
> }
> private->mtk_drm_bound = false;
next prev parent reply other threads:[~2025-10-11 7:57 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-06 9:39 [PATCH] drm/mediatek: fix device use-after-free on unbind Johan Hovold
2025-10-06 10:19 ` AngeloGioacchino Del Regno
2025-10-11 7:57 ` Sjoerd Simons [this message]
2025-10-22 6:46 ` Ritesh Raj Sarraf
2025-10-27 8:41 ` Johan Hovold
2025-10-28 6:06 ` CK Hu (胡俊光)
2025-10-28 14:58 ` Chun-Kuang Hu
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=5137227fee0bb06dac3558b0d2db47972785df48.camel@collabora.com \
--to=sjoerd@collabora.com \
--cc=airlied@gmail.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=chunkuang.hu@kernel.org \
--cc=ck.hu@mediatek.com \
--cc=dri-devel@lists.freedesktop.org \
--cc=johan@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mediatek@lists.infradead.org \
--cc=make24@iscas.ac.cn \
--cc=matthias.bgg@gmail.com \
--cc=p.zabel@pengutronix.de \
--cc=simona@ffwll.ch \
--cc=stable@vger.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