From: Hans Verkuil <hverkuil+cisco@kernel.org>
To: Guangshuo Li <lgs201920130244@gmail.com>,
Mauro Carvalho Chehab <mchehab@kernel.org>,
Antti Palosaari <crope@iki.fi>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: stable@vger.kernel.org
Subject: Re: [PATCH] media: rtl28xxu: fix SDR platform device leak
Date: Wed, 23 Sep 2026 10:49:09 +0200 [thread overview]
Message-ID: <c03262f2-419d-45c8-9b29-f3bfe6680744@kernel.org> (raw)
In-Reply-To: <20260921081542.210151-1-lgs201920130244@gmail.com>
On 21/09/2026 10:15, Guangshuo Li wrote:
> rtl2832u_tuner_attach() registers an rtl2832_sdr platform device, but
> if registration succeeds without a bound driver, it breaks out without
> unregistering the device.
>
> dev->platform_device_sdr is assigned only after a driver is bound, so
> rtl28xxu_tuner_detach() cannot unregister the unbound device later.
> This leaves the registered platform device and its associated resources
> allocated.
>
> Split the registration failure and driver binding checks. Unregister
> the successfully registered platform device when no driver is bound
> before leaving the switch.
>
> The issue was identified by a static analysis tool I developed and
> confirmed by manual review.
>
> Fixes: a2f7f220df5e ("[media] rtl28xxu: switch SDR module to platform driver")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
> drivers/media/usb/dvb-usb-v2/rtl28xxu.c | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> index 487c6ab784ab..3603d0cf638b 100644
> --- a/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> +++ b/drivers/media/usb/dvb-usb-v2/rtl28xxu.c
> @@ -1391,8 +1391,12 @@ static int rtl2832u_tuner_attach(struct dvb_usb_adapter *adap)
> "rtl2832_sdr",
> PLATFORM_DEVID_AUTO,
> &pdata, sizeof(pdata));
> - if (IS_ERR(pdev) || pdev->dev.driver == NULL)
> + if (IS_ERR(pdev))
> break;
> + if (!pdev->dev.driver) {
> + platform_device_unregister(pdev);
> + break;
> + }
Looking at other drivers, I think this is incomplete.
drivers/media/usb/dvb-usb-v2/zd1301.c, line 142, does it correct. Note the
try_module_get() call that is missing in rtl28xxu.c.
Regards,
Hans
> dev->platform_device_sdr = pdev;
> break;
> default:
next prev parent reply other threads:[~2026-09-23 8:49 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-21 8:15 Guangshuo Li
2026-09-21 15:05 ` krzk
2026-09-21 15:08 ` krzk
2026-09-21 15:17 ` krzk
2026-09-21 21:59 ` Krzysztof Kozlowski
2026-09-23 8:49 ` Hans Verkuil [this message]
2026-09-24 13:52 ` Guangshuo Li
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=c03262f2-419d-45c8-9b29-f3bfe6680744@kernel.org \
--to=hverkuil+cisco@kernel.org \
--cc=crope@iki.fi \
--cc=lgs201920130244@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--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
all inboxes | Powered by JetHome®