public inbox for linuxppc-dev@ozlabs.org
 help / color / mirror / Atom feed
* [PATCH] macintosh: adb: fix reference leak on failed platform device registration
@ 2026-04-15 14:37 Guangshuo Li
  2026-04-24  8:11 ` Guangshuo Li
  0 siblings, 1 reply; 2+ messages in thread
From: Guangshuo Li @ 2026-04-15 14:37 UTC (permalink / raw)
  To: Guangshuo Li, Kees Cook, Johannes Berg, Paul Mackerras,
	linuxppc-dev, linux-kernel
  Cc: stable

When platform_device_register() fails in adbdev_init(), the embedded
struct device in adb_pfdev has already been initialized by
device_initialize(), but the failure path does not drop the device
reference for the current platform device:

  adbdev_init()
    platform_device_register(&adb_pfdev)
      device_initialize(&adb_pfdev.dev)
      setup_pdev_dma_masks(&adb_pfdev)
      return platform_device_add(&adb_pfdev)

As documented in platform_device_register(), the caller must use
platform_device_put() to give up the reference initialized in this
function when registration fails.

This leads to a reference leak when platform_device_register() fails.
Fix this by checking the return value and calling platform_device_put().

The issue was identified by a static analysis tool I developed and
confirmed by manual review.

Fixes: c9f6d3d5c6d4f ("[POWERPC] adb: Replace sleep notifier with platform driver suspend/resume hooks")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
 drivers/macintosh/adb.c | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/drivers/macintosh/adb.c b/drivers/macintosh/adb.c
index fe150125e099..eff06f78aa80 100644
--- a/drivers/macintosh/adb.c
+++ b/drivers/macintosh/adb.c
@@ -883,6 +883,8 @@ adb_dummy_probe(struct platform_device *dev)
 static void __init
 adbdev_init(void)
 {
+	int err;
+
 	if (register_chrdev(ADB_MAJOR, "adb", &adb_fops)) {
 		pr_err("adb: unable to get major %d\n", ADB_MAJOR);
 		return;
@@ -893,6 +895,9 @@ adbdev_init(void)
 
 	device_create(&adb_dev_class, NULL, MKDEV(ADB_MAJOR, 0), NULL, "adb");
 
-	platform_device_register(&adb_pfdev);
+	err = platform_device_register(&adb_pfdev);
+	if (err)
+		platform_device_put(&adb_pfdev);
+
 	platform_driver_probe(&adb_pfdrv, adb_dummy_probe);
 }
-- 
2.43.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] macintosh: adb: fix reference leak on failed platform device registration
  2026-04-15 14:37 [PATCH] macintosh: adb: fix reference leak on failed platform device registration Guangshuo Li
@ 2026-04-24  8:11 ` Guangshuo Li
  0 siblings, 0 replies; 2+ messages in thread
From: Guangshuo Li @ 2026-04-24  8:11 UTC (permalink / raw)
  To: Guangshuo Li, Kees Cook, Johannes Berg, Paul Mackerras,
	linuxppc-dev, linux-kernel
  Cc: stable

Hi,

Please disregard this patch.

On Wed, 15 Apr 2026 at 22:37, Guangshuo Li <lgs201920130244@gmail.com> wrote:
>
> When platform_device_register() fails in adbdev_init(), the embedded
> struct device in adb_pfdev has already been initialized by
> device_initialize(), but the failure path does not drop the device
> reference for the current platform device:
>
>   adbdev_init()
>     platform_device_register(&adb_pfdev)
>       device_initialize(&adb_pfdev.dev)
>       setup_pdev_dma_masks(&adb_pfdev)
>       return platform_device_add(&adb_pfdev)
>
> As documented in platform_device_register(), the caller must use
> platform_device_put() to give up the reference initialized in this
> function when registration fails.
>
> This leads to a reference leak when platform_device_register() fails.
> Fix this by checking the return value and calling platform_device_put().
>
> The issue was identified by a static analysis tool I developed and
> confirmed by manual review.
>
> Fixes: c9f6d3d5c6d4f ("[POWERPC] adb: Replace sleep notifier with platform driver suspend/resume hooks")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
>  drivers/macintosh/adb.c | 7 ++++++-
>  1 file changed, 6 insertions(+), 1 deletion(-)
>
> diff --git a/drivers/macintosh/adb.c b/drivers/macintosh/adb.c
> index fe150125e099..eff06f78aa80 100644
> --- a/drivers/macintosh/adb.c
> +++ b/drivers/macintosh/adb.c
> @@ -883,6 +883,8 @@ adb_dummy_probe(struct platform_device *dev)
>  static void __init
>  adbdev_init(void)
>  {
> +       int err;
> +
>         if (register_chrdev(ADB_MAJOR, "adb", &adb_fops)) {
>                 pr_err("adb: unable to get major %d\n", ADB_MAJOR);
>                 return;
> @@ -893,6 +895,9 @@ adbdev_init(void)
>
>         device_create(&adb_dev_class, NULL, MKDEV(ADB_MAJOR, 0), NULL, "adb");
>
> -       platform_device_register(&adb_pfdev);
> +       err = platform_device_register(&adb_pfdev);
> +       if (err)
> +               platform_device_put(&adb_pfdev);
> +
>         platform_driver_probe(&adb_pfdrv, adb_dummy_probe);
>  }
> --
> 2.43.0
>

After re-checking it, adb_pfdev is a static platform_device and it does
not provide a dev.release callback. Therefore calling
platform_device_put() on the platform_device_register() failure path is
not appropriate here and can trigger the missing release callback
warning.

This falls into the same static platform_device pattern pointed out in
the other reviews, so I will drop this patch.

Sorry for the noise.

Best regards,
Guangshuo Li


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-04-24  8:12 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-15 14:37 [PATCH] macintosh: adb: fix reference leak on failed platform device registration Guangshuo Li
2026-04-24  8:11 ` Guangshuo Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox