* [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry()
@ 2026-07-04 17:23 Guangshuo Li
2026-07-04 22:31 ` NeilBrown
2026-07-05 1:16 ` Chuck Lever
0 siblings, 2 replies; 3+ messages in thread
From: Guangshuo Li @ 2026-07-04 17:23 UTC (permalink / raw)
To: Chuck Lever, Jeff Layton, NeilBrown, Olga Kornievskaia, Dai Ngo,
Tom Talpey, linux-nfs, linux-kernel
Cc: Guangshuo Li
nfsd_set_fh_dentry() gets a dentry reference before checking whether an
NFSv2 or NFSv3 filehandle resolves to a V4ROOT export. Such filehandles
are rejected, but the rejection path jumps to out before the dentry is
stored in fhp->fh_dentry.
As a result, fh_put() will not see the dentry, and the out path only
drops the export reference. The dentry reference obtained by dget() or
exportfs_decode_fh_raw() is therefore leaked.
Add a separate error path for the V4ROOT rejection case that drops the
dentry reference before dropping the export reference.
Fixes: 8a7348a9ed70 ("nfsd: fix refcount leak in nfsd_set_fh_dentry()")
Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
---
fs/nfsd/nfsfh.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c
index 429ca5c6ec08..2ca5bb5b5e88 100644
--- a/fs/nfsd/nfsfh.c
+++ b/fs/nfsd/nfsfh.c
@@ -345,20 +345,22 @@ static __be32 nfsd_set_fh_dentry(struct svc_rqst *rqstp, struct net *net,
fhp->fh_no_wcc = true;
fhp->fh_64bit_cookies = true;
if (exp->ex_flags & NFSEXP_V4ROOT)
- goto out;
+ goto out_dput;
break;
case NFS_FHSIZE:
fhp->fh_no_wcc = true;
if (EX_WGATHER(exp))
fhp->fh_use_wgather = true;
if (exp->ex_flags & NFSEXP_V4ROOT)
- goto out;
+ goto out_dput;
}
fhp->fh_dentry = dentry;
fhp->fh_export = exp;
return 0;
+out_dput:
+ dput(dentry);
out:
exp_put(exp);
return error;
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry()
2026-07-04 17:23 [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry() Guangshuo Li
@ 2026-07-04 22:31 ` NeilBrown
2026-07-05 1:16 ` Chuck Lever
1 sibling, 0 replies; 3+ messages in thread
From: NeilBrown @ 2026-07-04 22:31 UTC (permalink / raw)
To: Guangshuo Li
Cc: Chuck Lever, Jeff Layton, Olga Kornievskaia, Dai Ngo, Tom Talpey,
linux-nfs, linux-kernel, Guangshuo Li
On Sun, 05 Jul 2026, Guangshuo Li wrote:
> nfsd_set_fh_dentry() gets a dentry reference before checking whether an
> NFSv2 or NFSv3 filehandle resolves to a V4ROOT export. Such filehandles
> are rejected, but the rejection path jumps to out before the dentry is
> stored in fhp->fh_dentry.
>
> As a result, fh_put() will not see the dentry, and the out path only
> drops the export reference. The dentry reference obtained by dget() or
> exportfs_decode_fh_raw() is therefore leaked.
>
> Add a separate error path for the V4ROOT rejection case that drops the
> dentry reference before dropping the export reference.
>
> Fixes: 8a7348a9ed70 ("nfsd: fix refcount leak in nfsd_set_fh_dentry()")
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
Thanks for finding and reporting that.
Reviewed-by: NeilBrown <neil@brown.name>
NeilBrown
> ---
> fs/nfsd/nfsfh.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/fs/nfsd/nfsfh.c b/fs/nfsd/nfsfh.c
> index 429ca5c6ec08..2ca5bb5b5e88 100644
> --- a/fs/nfsd/nfsfh.c
> +++ b/fs/nfsd/nfsfh.c
> @@ -345,20 +345,22 @@ static __be32 nfsd_set_fh_dentry(struct svc_rqst *rqstp, struct net *net,
> fhp->fh_no_wcc = true;
> fhp->fh_64bit_cookies = true;
> if (exp->ex_flags & NFSEXP_V4ROOT)
> - goto out;
> + goto out_dput;
> break;
> case NFS_FHSIZE:
> fhp->fh_no_wcc = true;
> if (EX_WGATHER(exp))
> fhp->fh_use_wgather = true;
> if (exp->ex_flags & NFSEXP_V4ROOT)
> - goto out;
> + goto out_dput;
> }
>
> fhp->fh_dentry = dentry;
> fhp->fh_export = exp;
>
> return 0;
> +out_dput:
> + dput(dentry);
> out:
> exp_put(exp);
> return error;
> --
> 2.43.0
>
>
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry()
2026-07-04 17:23 [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry() Guangshuo Li
2026-07-04 22:31 ` NeilBrown
@ 2026-07-05 1:16 ` Chuck Lever
1 sibling, 0 replies; 3+ messages in thread
From: Chuck Lever @ 2026-07-05 1:16 UTC (permalink / raw)
To: Guangshuo Li, Jeff Layton, NeilBrown, Olga Kornievskaia, Dai Ngo,
Tom Talpey, linux-nfs, linux-kernel
On Sat, Jul 4, 2026, at 1:23 PM, Guangshuo Li wrote:
> nfsd_set_fh_dentry() gets a dentry reference before checking whether an
> NFSv2 or NFSv3 filehandle resolves to a V4ROOT export. Such filehandles
> are rejected, but the rejection path jumps to out before the dentry is
> stored in fhp->fh_dentry.
>
> As a result, fh_put() will not see the dentry, and the out path only
> drops the export reference. The dentry reference obtained by dget() or
> exportfs_decode_fh_raw() is therefore leaked.
>
> Add a separate error path for the V4ROOT rejection case that drops the
> dentry reference before dropping the export reference.
>
> Fixes: 8a7348a9ed70 ("nfsd: fix refcount leak in nfsd_set_fh_dentry()")
> Signed-off-by: Guangshuo Li <lgs201920130244@gmail.com>
Thanks for the report. It appears that there is already a fix for this
issue queued in nfsd-next:
https://git.kernel.org/pub/scm/linux/kernel/git/cel/linux.git/commit/?h=nfsd-next&id=ce7d3cc59012382bad5946b4cfc2cdcaabb81163
--
Chuck Lever
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2026-07-05 1:16 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-07-04 17:23 [PATCH] nfsd: Fix dentry refcount leak in nfsd_set_fh_dentry() Guangshuo Li
2026-07-04 22:31 ` NeilBrown
2026-07-05 1:16 ` Chuck Lever
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox