* [PATCH] iio: dummy: free software device on configfs release
@ 2026-09-14 11:54 Guangshuo Li
2026-09-14 13:42 ` Joshua Crofts
2026-09-14 16:08 ` David Lechner
0 siblings, 2 replies; 3+ messages in thread
From: Guangshuo Li @ 2026-09-14 11:54 UTC (permalink / raw)
To: Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Kees Cook, Guangshuo Li, Daniel Baluta,
linux-iio, linux-kernel
Cc: stable
iio_dummy_probe() allocates struct iio_sw_device with kzalloc_obj().
The error paths free it, but after successful registration the normal
removal path only frees the contained IIO device, leaving the software
device allocation behind.
The software device embeds a config_group. device_drop_group() calls
iio_sw_device_destroy() and then drops the config_item reference with
config_item_put(). Therefore, freeing the software device directly from
iio_dummy_remove() would free the embedded config_item before that
final put.
Configfs requires dynamically allocated config_items to provide a
release callback which frees the containing object when the reference
count reaches zero.
Add a release callback to iio_dummy_type and free the software device
there.
This issue was found by manual code inspection.
Fixes: 3d85fb6f8104 ("iio: dummy: Convert IIO dummy to configfs")
Cc: stable@vger.kernel.org
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
drivers/iio/dummy/iio_simple_dummy.c | 12 ++++++++++++
1 file changed, 12 insertions(+)
diff --git a/drivers/iio/dummy/iio_simple_dummy.c b/drivers/iio/dummy/iio_simple_dummy.c
index 19fcdbbc11c6..7d2ff1d4a06e 100644
--- a/drivers/iio/dummy/iio_simple_dummy.c
+++ b/drivers/iio/dummy/iio_simple_dummy.c
@@ -23,7 +23,19 @@
#include <linux/iio/sw_device.h>
#include "iio_simple_dummy.h"
+static void iio_dummy_release(struct config_item *item)
+{
+ struct iio_sw_device *swd = to_iio_sw_device(item);
+
+ kfree(swd);
+}
+
+static const struct configfs_item_operations iio_dummy_item_ops = {
+ .release = iio_dummy_release,
+};
+
static const struct config_item_type iio_dummy_type = {
+ .ct_item_ops = &iio_dummy_item_ops,
.ct_owner = THIS_MODULE,
};
--
2.43.0
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: dummy: free software device on configfs release
2026-09-14 11:54 [PATCH] iio: dummy: free software device on configfs release Guangshuo Li
@ 2026-09-14 13:42 ` Joshua Crofts
2026-09-14 16:08 ` David Lechner
1 sibling, 0 replies; 3+ messages in thread
From: Joshua Crofts @ 2026-09-14 13:42 UTC (permalink / raw)
To: Guangshuo Li
Cc: Jonathan Cameron, David Lechner, Nuno Sá,
Andy Shevchenko, Kees Cook, Daniel Baluta, linux-iio,
linux-kernel, stable
On Mon, 14 Sep 2026 19:54:04 +0800
Guangshuo Li <lgs201920130244@gmail.com> wrote:
> iio_dummy_probe() allocates struct iio_sw_device with kzalloc_obj().
> The error paths free it, but after successful registration the normal
> removal path only frees the contained IIO device, leaving the software
> device allocation behind.
>
> The software device embeds a config_group. device_drop_group() calls
> iio_sw_device_destroy() and then drops the config_item reference with
> config_item_put(). Therefore, freeing the software device directly from
> iio_dummy_remove() would free the embedded config_item before that
> final put.
>
> Configfs requires dynamically allocated config_items to provide a
> release callback which frees the containing object when the reference
> count reaches zero.
>
> Add a release callback to iio_dummy_type and free the software device
> there.
>
> This issue was found by manual code inspection.
>
> Fixes: 3d85fb6f8104 ("iio: dummy: Convert IIO dummy to configfs")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
> drivers/iio/dummy/iio_simple_dummy.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/iio/dummy/iio_simple_dummy.c b/drivers/iio/dummy/iio_simple_dummy.c
> index 19fcdbbc11c6..7d2ff1d4a06e 100644
> --- a/drivers/iio/dummy/iio_simple_dummy.c
> +++ b/drivers/iio/dummy/iio_simple_dummy.c
> @@ -23,7 +23,19 @@
> #include <linux/iio/sw_device.h>
> #include "iio_simple_dummy.h"
>
> +static void iio_dummy_release(struct config_item *item)
> +{
> + struct iio_sw_device *swd = to_iio_sw_device(item);
> +
> + kfree(swd);
> +}
> +
> +static const struct configfs_item_operations iio_dummy_item_ops = {
> + .release = iio_dummy_release,
> +};
> +
> static const struct config_item_type iio_dummy_type = {
> + .ct_item_ops = &iio_dummy_item_ops,
> .ct_owner = THIS_MODULE,
> };
>
Seems legit.
Reviewed-by: Joshua Crofts <joshua.crofts1@gmail.com>
Sashiko also pointed out that the same issue is in industrialio-sw-trigger.c:
https://sashiko.dev/#/patchset/20260914115404.1691763-1-lgs201920130244%40gmail.com
--
Kind regards,
Joshua Crofts
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] iio: dummy: free software device on configfs release
2026-09-14 11:54 [PATCH] iio: dummy: free software device on configfs release Guangshuo Li
2026-09-14 13:42 ` Joshua Crofts
@ 2026-09-14 16:08 ` David Lechner
1 sibling, 0 replies; 3+ messages in thread
From: David Lechner @ 2026-09-14 16:08 UTC (permalink / raw)
To: Guangshuo Li, Jonathan Cameron, Nuno Sá,
Andy Shevchenko, Kees Cook, Daniel Baluta, linux-iio,
linux-kernel
Cc: stable
On 9/14/26 6:54 AM, Guangshuo Li wrote:
> iio_dummy_probe() allocates struct iio_sw_device with kzalloc_obj().
> The error paths free it, but after successful registration the normal
> removal path only frees the contained IIO device, leaving the software
> device allocation behind.
>
> The software device embeds a config_group. device_drop_group() calls
> iio_sw_device_destroy() and then drops the config_item reference with
> config_item_put(). Therefore, freeing the software device directly from
> iio_dummy_remove() would free the embedded config_item before that
> final put.
>
> Configfs requires dynamically allocated config_items to provide a
> release callback which frees the containing object when the reference
> count reaches zero.
>
> Add a release callback to iio_dummy_type and free the software device
> there.
>
> This issue was found by manual code inspection.
>
> Fixes: 3d85fb6f8104 ("iio: dummy: Convert IIO dummy to configfs")
> Cc: stable@vger.kernel.org
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
> ---
> drivers/iio/dummy/iio_simple_dummy.c | 12 ++++++++++++
> 1 file changed, 12 insertions(+)
>
> diff --git a/drivers/iio/dummy/iio_simple_dummy.c b/drivers/iio/dummy/iio_simple_dummy.c
> index 19fcdbbc11c6..7d2ff1d4a06e 100644
> --- a/drivers/iio/dummy/iio_simple_dummy.c
> +++ b/drivers/iio/dummy/iio_simple_dummy.c
> @@ -23,7 +23,19 @@
> #include <linux/iio/sw_device.h>
> #include "iio_simple_dummy.h"
>
> +static void iio_dummy_release(struct config_item *item)
> +{
> + struct iio_sw_device *swd = to_iio_sw_device(item);
> +
> + kfree(swd);
> +}
> +
> +static const struct configfs_item_operations iio_dummy_item_ops = {
> + .release = iio_dummy_release,
> +};
> +
> static const struct config_item_type iio_dummy_type = {
> + .ct_item_ops = &iio_dummy_item_ops,
> .ct_owner = THIS_MODULE,
> };
>
Should we switch the alloc to a devm_ function instead to keep it
simpler?
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-09-14 16:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2026-09-14 11:54 [PATCH] iio: dummy: free software device on configfs release Guangshuo Li
2026-09-14 13:42 ` Joshua Crofts
2026-09-14 16:08 ` David Lechner
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®