From: Frank Li <Frank.li@nxp.com>
To: Xiaolei Wang <xiaolei.wang@windriver.com>
Cc: laurent.pinchart@ideasonboard.com, mchehab@kernel.org,
s.hauer@pengutronix.de, kernel@pengutronix.de,
festevam@gmail.com, aisheng.dong@nxp.com, jacopo@jmondi.org,
guoniu.zhou@nxp.com, s.riedmueller@phytec.de,
linux-media@vger.kernel.org, imx@lists.linux.dev,
linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org, stable@vger.kernel.org
Subject: Re: [PATCH 1/3] media: imx8-isi: fix use-after-free on remove
Date: Mon, 4 May 2026 12:19:32 -0400 [thread overview]
Message-ID: <afjHFJV38m5g4Ifj@lizhi-Precision-Tower-5810> (raw)
In-Reply-To: <20260424231926.406079-2-xiaolei.wang@windriver.com>
On Sat, Apr 25, 2026 at 07:19:24AM +0800, Xiaolei Wang wrote:
> KASAN reports a slab-use-after-free in __media_entity_remove_link()
> during rmmod of imx8_isi:
>
> BUG: KASAN: slab-use-after-free in __media_entity_remove_link+0x608/0x650
> Read of size 2 at addr ffff0000d47cb02a by task rmmod/724
>
> Call trace:
> __media_entity_remove_link+0x608/0x650
> __media_entity_remove_links+0x78/0x144
> __media_device_unregister_entity+0x150/0x280
> media_device_unregister_entity+0x48/0x68
> v4l2_device_unregister_subdev+0x158/0x300
> v4l2_async_unbind_subdev_one+0x22c/0x358
> v4l2_async_nf_unbind_all_subdevs+0xfc/0x1c0
> v4l2_async_nf_unregister+0x5c/0x14c
> mxc_isi_remove+0x124/0x2a0 [imx8_isi]
>
> Allocated by task 249:
> __kmalloc_noprof+0x27c/0x690
> mxc_isi_crossbar_init+0x22c/0x560 [imx8_isi]
>
> Freed by task 724:
> kfree+0x1e4/0x5b0
> mxc_isi_crossbar_cleanup+0x34/0x80 [imx8_isi]
> mxc_isi_remove+0x11c/0x2a0 [imx8_isi]
>
> The problem is that mxc_isi_remove() calls mxc_isi_crossbar_cleanup()
> before mxc_isi_v4l2_cleanup(). The crossbar cleanup frees the media
> entity pads, but the subsequent v4l2 cleanup still tries to remove
> media links that reference those pads.
>
> Fix this by calling mxc_isi_v4l2_cleanup() before
> mxc_isi_crossbar_cleanup() to ensure all media entities are properly
> unregistered while the pads are still valid.
>
> Fixes: cf21f328fcaf ("media: nxp: Add i.MX8 ISI driver")
> Cc: stable@vger.kernel.org
> Signed-off-by: Xiaolei Wang <xiaolei.wang@windriver.com>
> ---
Reviewed-by: Frank Li <Frank.Li@nxp.com>
> drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> index 4bf8570e1b9e..2d639b789910 100644
> --- a/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> +++ b/drivers/media/platform/nxp/imx8-isi/imx8-isi-core.c
> @@ -556,8 +556,8 @@ static void mxc_isi_remove(struct platform_device *pdev)
> mxc_isi_pipe_cleanup(pipe);
> }
>
> - mxc_isi_crossbar_cleanup(&isi->crossbar);
> mxc_isi_v4l2_cleanup(isi);
> + mxc_isi_crossbar_cleanup(&isi->crossbar);
> }
>
> static const struct of_device_id mxc_isi_of_match[] = {
> --
> 2.43.0
>
next prev parent reply other threads:[~2026-05-04 16:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-24 23:19 [PATCH 0/3] media: imx8-isi: fix resource lifecycle bugs Xiaolei Wang
2026-04-24 23:19 ` [PATCH 1/3] media: imx8-isi: fix use-after-free on remove Xiaolei Wang
2026-05-04 16:19 ` Frank Li [this message]
2026-04-24 23:19 ` [PATCH 2/3] media: imx8-isi: add missing v4l2_subdev_cleanup() in crossbar and pipe Xiaolei Wang
2026-05-04 16:22 ` Frank Li
2026-04-24 23:19 ` [PATCH 3/3] media: imx8-isi: fix resource leaks in probe error paths and remove Xiaolei Wang
2026-05-04 16:21 ` Frank Li
2026-05-05 2:39 ` xiaolei wang
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=afjHFJV38m5g4Ifj@lizhi-Precision-Tower-5810 \
--to=frank.li@nxp.com \
--cc=aisheng.dong@nxp.com \
--cc=festevam@gmail.com \
--cc=guoniu.zhou@nxp.com \
--cc=imx@lists.linux.dev \
--cc=jacopo@jmondi.org \
--cc=kernel@pengutronix.de \
--cc=laurent.pinchart@ideasonboard.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=s.hauer@pengutronix.de \
--cc=s.riedmueller@phytec.de \
--cc=stable@vger.kernel.org \
--cc=xiaolei.wang@windriver.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