* [PATCH] nfs: fix memory leak in error path of nfs4_do_reclaim
@ 2024-09-04 12:34 Li Lingfeng
2024-09-04 14:38 ` Trond Myklebust
0 siblings, 1 reply; 3+ messages in thread
From: Li Lingfeng @ 2024-09-04 12:34 UTC (permalink / raw)
To: trondmy, anna
Cc: jlayton, linux-nfs, linux-kernel, yukuai1, houtao1, yi.zhang,
yangerkun, lilingfeng, lilingfeng3
Commit c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in
nfs4_do_reclaim()") separate out the freeing of the state owners from
nfs4_purge_state_owners() and finish it outside the rcu lock.
However, the error path is omitted. As a result, the state owners in
"freeme" will not be released.
Fix it by adding freeing in the error path.
Fixes: c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in nfs4_do_reclaim()")
Signed-off-by: Li Lingfeng <lilingfeng3@huawei.com>
---
fs/nfs/nfs4state.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
index 877f682b45f2..30aba1dedaba 100644
--- a/fs/nfs/nfs4state.c
+++ b/fs/nfs/nfs4state.c
@@ -1957,6 +1957,7 @@ static int nfs4_do_reclaim(struct nfs_client *clp, const struct nfs4_state_recov
set_bit(ops->owner_flag_bit, &sp->so_flags);
nfs4_put_state_owner(sp);
status = nfs4_recovery_handle_error(clp, status);
+ nfs4_free_state_owners(&freeme);
return (status != 0) ? status : -EAGAIN;
}
--
2.31.1
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] nfs: fix memory leak in error path of nfs4_do_reclaim
2024-09-04 12:34 [PATCH] nfs: fix memory leak in error path of nfs4_do_reclaim Li Lingfeng
@ 2024-09-04 14:38 ` Trond Myklebust
2024-09-04 20:15 ` Anna Schumaker
0 siblings, 1 reply; 3+ messages in thread
From: Trond Myklebust @ 2024-09-04 14:38 UTC (permalink / raw)
To: Li Lingfeng, anna
Cc: jlayton, linux-nfs, linux-kernel, yukuai1, houtao1, yi.zhang,
yangerkun, lilingfeng
On Wed, 2024-09-04 at 20:34 +0800, Li Lingfeng wrote:
> Commit c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in
> nfs4_do_reclaim()") separate out the freeing of the state owners from
> nfs4_purge_state_owners() and finish it outside the rcu lock.
> However, the error path is omitted. As a result, the state owners in
> "freeme" will not be released.
> Fix it by adding freeing in the error path.
>
> Fixes: c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in
> nfs4_do_reclaim()")
> Signed-off-by: Li Lingfeng <lilingfeng3@huawei.com>
> ---
> fs/nfs/nfs4state.c | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
> index 877f682b45f2..30aba1dedaba 100644
> --- a/fs/nfs/nfs4state.c
> +++ b/fs/nfs/nfs4state.c
> @@ -1957,6 +1957,7 @@ static int nfs4_do_reclaim(struct nfs_client
> *clp, const struct nfs4_state_recov
> set_bit(ops->owner_flag_bit, &sp-
> >so_flags);
> nfs4_put_state_owner(sp);
> status =
> nfs4_recovery_handle_error(clp, status);
> + nfs4_free_state_owners(&freeme);
> return (status != 0) ? status : -
> EAGAIN;
> }
>
Nice catch! Yes, that leak has been there for quite a while. Thanks for
finding it.
--
Trond Myklebust
Linux NFS client maintainer, Hammerspace
trond.myklebust@hammerspace.com
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] nfs: fix memory leak in error path of nfs4_do_reclaim
2024-09-04 14:38 ` Trond Myklebust
@ 2024-09-04 20:15 ` Anna Schumaker
0 siblings, 0 replies; 3+ messages in thread
From: Anna Schumaker @ 2024-09-04 20:15 UTC (permalink / raw)
To: Trond Myklebust
Cc: Li Lingfeng, jlayton, linux-nfs, linux-kernel, yukuai1, houtao1,
yi.zhang, yangerkun, lilingfeng
On Wed, Sep 4, 2024 at 10:39 AM Trond Myklebust <trondmy@kernel.org> wrote:
>
> On Wed, 2024-09-04 at 20:34 +0800, Li Lingfeng wrote:
> > Commit c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in
> > nfs4_do_reclaim()") separate out the freeing of the state owners from
> > nfs4_purge_state_owners() and finish it outside the rcu lock.
> > However, the error path is omitted. As a result, the state owners in
> > "freeme" will not be released.
> > Fix it by adding freeing in the error path.
> >
> > Fixes: c77e22834ae9 ("NFSv4: Fix a potential sleep while atomic in
> > nfs4_do_reclaim()")
> > Signed-off-by: Li Lingfeng <lilingfeng3@huawei.com>
> > ---
> > fs/nfs/nfs4state.c | 1 +
> > 1 file changed, 1 insertion(+)
> >
> > diff --git a/fs/nfs/nfs4state.c b/fs/nfs/nfs4state.c
> > index 877f682b45f2..30aba1dedaba 100644
> > --- a/fs/nfs/nfs4state.c
> > +++ b/fs/nfs/nfs4state.c
> > @@ -1957,6 +1957,7 @@ static int nfs4_do_reclaim(struct nfs_client
> > *clp, const struct nfs4_state_recov
> > set_bit(ops->owner_flag_bit, &sp-
> > >so_flags);
> > nfs4_put_state_owner(sp);
> > status =
> > nfs4_recovery_handle_error(clp, status);
> > + nfs4_free_state_owners(&freeme);
> > return (status != 0) ? status : -
> > EAGAIN;
> > }
> >
>
> Nice catch! Yes, that leak has been there for quite a while. Thanks for
> finding it.
Looks good to me, too. I've applied this for v6.12 (with a cc stable
so it gets backported)
Anna
>
> --
> Trond Myklebust
> Linux NFS client maintainer, Hammerspace
> trond.myklebust@hammerspace.com
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-09-04 20:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-04 12:34 [PATCH] nfs: fix memory leak in error path of nfs4_do_reclaim Li Lingfeng
2024-09-04 14:38 ` Trond Myklebust
2024-09-04 20:15 ` Anna Schumaker
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®