linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] fs: nilfs2: fix memory leak in nilfs_sysfs_create_device_group
@ 2022-01-20 13:44 Dongliang Mu
  2022-01-20 14:07 ` Pavel Skripkin
  0 siblings, 1 reply; 3+ messages in thread
From: Dongliang Mu @ 2022-01-20 13:44 UTC (permalink / raw)
  To: Ryusuke Konishi, Pavel Skripkin, Andrew Morton
  Cc: Dongliang Mu, linux-nilfs, linux-kernel

The preivous commit 8fd0c1b0647a ("nilfs2: fix memory leak in
nilfs_sysfs_delete_device_group") only handles the memory leak in the
nilfs_sysfs_delete_device_group. However, the similar memory leak still
occurs in the nilfs_sysfs_create_device_group.

Fix it by adding kobject_del when
kobject_init_and_add succeeds, but one of the following calls fails.

Fixes: 8fd0c1b0647a ("nilfs2: fix memory leak in nilfs_sysfs_delete_device_group")
Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
---
 fs/nilfs2/sysfs.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/fs/nilfs2/sysfs.c b/fs/nilfs2/sysfs.c
index 379d22e28ed6..0b2db2b499d5 100644
--- a/fs/nilfs2/sysfs.c
+++ b/fs/nilfs2/sysfs.c
@@ -995,7 +995,7 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
 
 	err = nilfs_sysfs_create_mounted_snapshots_group(nilfs);
 	if (err)
-		goto cleanup_dev_kobject;
+		goto delete_dev_kobject;
 
 	err = nilfs_sysfs_create_checkpoints_group(nilfs);
 	if (err)
@@ -1027,6 +1027,9 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
 delete_mounted_snapshots_group:
 	nilfs_sysfs_delete_mounted_snapshots_group(nilfs);
 
+delete_dev_kobject:
+	kobject_del(&nilfs->ns_dev_kobj);
+
 cleanup_dev_kobject:
 	kobject_put(&nilfs->ns_dev_kobj);
 	kfree(nilfs->ns_dev_subgroups);
-- 
2.25.1


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

* Re: [PATCH] fs: nilfs2: fix memory leak in nilfs_sysfs_create_device_group
  2022-01-20 13:44 [PATCH] fs: nilfs2: fix memory leak in nilfs_sysfs_create_device_group Dongliang Mu
@ 2022-01-20 14:07 ` Pavel Skripkin
  2022-01-20 17:54   ` Ryusuke Konishi
  0 siblings, 1 reply; 3+ messages in thread
From: Pavel Skripkin @ 2022-01-20 14:07 UTC (permalink / raw)
  To: Dongliang Mu, Ryusuke Konishi, Andrew Morton; +Cc: linux-nilfs, linux-kernel

Hi Dongliang,

On 1/20/22 16:44, Dongliang Mu wrote:
> The preivous commit 8fd0c1b0647a ("nilfs2: fix memory leak in
> nilfs_sysfs_delete_device_group") only handles the memory leak in the
> nilfs_sysfs_delete_device_group. However, the similar memory leak still
> occurs in the nilfs_sysfs_create_device_group.
> 
> Fix it by adding kobject_del when
> kobject_init_and_add succeeds, but one of the following calls fails.
> 
> Fixes: 8fd0c1b0647a ("nilfs2: fix memory leak in nilfs_sysfs_delete_device_group")

Why Fixes tag points to my commit? This issue was introduced before my patch

> Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
> ---
>   fs/nilfs2/sysfs.c | 5 ++++-
>   1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/fs/nilfs2/sysfs.c b/fs/nilfs2/sysfs.c
> index 379d22e28ed6..0b2db2b499d5 100644
> --- a/fs/nilfs2/sysfs.c
> +++ b/fs/nilfs2/sysfs.c
> @@ -995,7 +995,7 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
>   
>   	err = nilfs_sysfs_create_mounted_snapshots_group(nilfs);
>   	if (err)
> -		goto cleanup_dev_kobject;
> +		goto delete_dev_kobject;
>   
>   	err = nilfs_sysfs_create_checkpoints_group(nilfs);
>   	if (err)
> @@ -1027,6 +1027,9 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
>   delete_mounted_snapshots_group:
>   	nilfs_sysfs_delete_mounted_snapshots_group(nilfs);
>   
> +delete_dev_kobject:
> +	kobject_del(&nilfs->ns_dev_kobj);
> +
>   cleanup_dev_kobject:
>   	kobject_put(&nilfs->ns_dev_kobj);
>   	kfree(nilfs->ns_dev_subgroups);
With regards,
Pavel Skripkin

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

* Re: [PATCH] fs: nilfs2: fix memory leak in nilfs_sysfs_create_device_group
  2022-01-20 14:07 ` Pavel Skripkin
@ 2022-01-20 17:54   ` Ryusuke Konishi
  0 siblings, 0 replies; 3+ messages in thread
From: Ryusuke Konishi @ 2022-01-20 17:54 UTC (permalink / raw)
  To: Dongliang Mu
  Cc: Pavel Skripkin, Andrew Morton, linux-nilfs, LKML, Nanyong Sun

(added Nanyong Sun to CC)
Hi Dongliang,

On Thu, Jan 20, 2022 at 11:07 PM Pavel Skripkin <paskripkin@gmail.com> wrote:
>
> Hi Dongliang,
>
> On 1/20/22 16:44, Dongliang Mu wrote:
> > The preivous commit 8fd0c1b0647a ("nilfs2: fix memory leak in
> > nilfs_sysfs_delete_device_group") only handles the memory leak in the
> > nilfs_sysfs_delete_device_group. However, the similar memory leak still
> > occurs in the nilfs_sysfs_create_device_group.
> >
> > Fix it by adding kobject_del when
> > kobject_init_and_add succeeds, but one of the following calls fails.
> >
> > Fixes: 8fd0c1b0647a ("nilfs2: fix memory leak in nilfs_sysfs_delete_device_group")
>
> Why Fixes tag points to my commit? This issue was introduced before my patch
>

As Pavel pointed out, this patch is independent of his patch.
The following one ?

 5f5dec07aca7 ("nilfs2: fix memory leak in nilfs_sysfs_create_device_group")

> > Signed-off-by: Dongliang Mu <dzm91@hust.edu.cn>
> > ---
> >   fs/nilfs2/sysfs.c | 5 ++++-
> >   1 file changed, 4 insertions(+), 1 deletion(-)

Can you describe what memory leak issue does this patch actually fix ?

It looks like kobject_put() can call __kobject_del() unless circular
references exist.

  kobject_put() -> kref_put() -> kobject_release() ->
kobject_cleanup() -> __kobject_del()

As explained in Documentation/core-api/kobject.rst,

  kobject_del() can be used to drop the reference to the parent object, if
  circular references are constructed.

But, at least, the parent object is NULL in this case.
I really want to understand what the real problem is.

Thanks,
Ryusuke Konishi

> >
> > diff --git a/fs/nilfs2/sysfs.c b/fs/nilfs2/sysfs.c
> > index 379d22e28ed6..0b2db2b499d5 100644
> > --- a/fs/nilfs2/sysfs.c
> > +++ b/fs/nilfs2/sysfs.c
> > @@ -995,7 +995,7 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
> >
> >       err = nilfs_sysfs_create_mounted_snapshots_group(nilfs);
> >       if (err)
> > -             goto cleanup_dev_kobject;
> > +             goto delete_dev_kobject;
> >
> >       err = nilfs_sysfs_create_checkpoints_group(nilfs);
> >       if (err)
> > @@ -1027,6 +1027,9 @@ int nilfs_sysfs_create_device_group(struct super_block *sb)
> >   delete_mounted_snapshots_group:
> >       nilfs_sysfs_delete_mounted_snapshots_group(nilfs);
> >
> > +delete_dev_kobject:
> > +     kobject_del(&nilfs->ns_dev_kobj);
> > +
> >   cleanup_dev_kobject:
> >       kobject_put(&nilfs->ns_dev_kobj);
> >       kfree(nilfs->ns_dev_subgroups);
> With regards,
> Pavel Skripkin

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

end of thread, other threads:[~2022-01-20 17:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-20 13:44 [PATCH] fs: nilfs2: fix memory leak in nilfs_sysfs_create_device_group Dongliang Mu
2022-01-20 14:07 ` Pavel Skripkin
2022-01-20 17:54   ` Ryusuke Konishi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).