Skip to content

Commit 63b91c8

Browse files
Li Lingfenggregkh
Li Lingfeng
authored andcommitted
nfsd: put dl_stid if fail to queue dl_recall
commit 230ca75 upstream. Before calling nfsd4_run_cb to queue dl_recall to the callback_wq, we increment the reference count of dl_stid. We expect that after the corresponding work_struct is processed, the reference count of dl_stid will be decremented through the callback function nfsd4_cb_recall_release. However, if the call to nfsd4_run_cb fails, the incremented reference count of dl_stid will not be decremented correspondingly, leading to the following nfs4_stid leak: unreferenced object 0xffff88812067b578 (size 344): comm "nfsd", pid 2761, jiffies 4295044002 (age 5541.241s) hex dump (first 32 bytes): 01 00 00 00 6b 6b 6b 6b b8 02 c0 e2 81 88 ff ff ....kkkk........ 00 6b 6b 6b 6b 6b 6b 6b 00 00 00 00 ad 4e ad de .kkkkkkk.....N.. backtrace: kmem_cache_alloc+0x4b9/0x700 nfsd4_process_open1+0x34/0x300 nfsd4_open+0x2d1/0x9d0 nfsd4_proc_compound+0x7a2/0xe30 nfsd_dispatch+0x241/0x3e0 svc_process_common+0x5d3/0xcc0 svc_process+0x2a3/0x320 nfsd+0x180/0x2e0 kthread+0x199/0x1d0 ret_from_fork+0x30/0x50 ret_from_fork_asm+0x1b/0x30 unreferenced object 0xffff8881499f4d28 (size 368): comm "nfsd", pid 2761, jiffies 4295044005 (age 5541.239s) hex dump (first 32 bytes): 01 00 00 00 00 00 00 00 30 4d 9f 49 81 88 ff ff ........0M.I.... 30 4d 9f 49 81 88 ff ff 20 00 00 00 01 00 00 00 0M.I.... ....... backtrace: kmem_cache_alloc+0x4b9/0x700 nfs4_alloc_stid+0x29/0x210 alloc_init_deleg+0x92/0x2e0 nfs4_set_delegation+0x284/0xc00 nfs4_open_delegation+0x216/0x3f0 nfsd4_process_open2+0x2b3/0xee0 nfsd4_open+0x770/0x9d0 nfsd4_proc_compound+0x7a2/0xe30 nfsd_dispatch+0x241/0x3e0 svc_process_common+0x5d3/0xcc0 svc_process+0x2a3/0x320 nfsd+0x180/0x2e0 kthread+0x199/0x1d0 ret_from_fork+0x30/0x50 ret_from_fork_asm+0x1b/0x30 Fix it by checking the result of nfsd4_run_cb and call nfs4_put_stid if fail to queue dl_recall. Cc: [email protected] Signed-off-by: Li Lingfeng <[email protected]> Reviewed-by: Jeff Layton <[email protected]> Signed-off-by: Chuck Lever <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent dc6f329 commit 63b91c8

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

fs/nfsd/nfs4state.c

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1050,6 +1050,12 @@ static struct nfs4_ol_stateid * nfs4_alloc_open_stateid(struct nfs4_client *clp)
10501050
return openlockstateid(stid);
10511051
}
10521052

1053+
/*
1054+
* As the sc_free callback of deleg, this may be called by nfs4_put_stid
1055+
* in nfsd_break_one_deleg.
1056+
* Considering nfsd_break_one_deleg is called with the flc->flc_lock held,
1057+
* this function mustn't ever sleep.
1058+
*/
10531059
static void nfs4_free_deleg(struct nfs4_stid *stid)
10541060
{
10551061
struct nfs4_delegation *dp = delegstateid(stid);
@@ -5290,6 +5296,7 @@ static const struct nfsd4_callback_ops nfsd4_cb_recall_ops = {
52905296

52915297
static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
52925298
{
5299+
bool queued;
52935300
/*
52945301
* We're assuming the state code never drops its reference
52955302
* without first removing the lease. Since we're in this lease
@@ -5298,7 +5305,10 @@ static void nfsd_break_one_deleg(struct nfs4_delegation *dp)
52985305
* we know it's safe to take a reference.
52995306
*/
53005307
refcount_inc(&dp->dl_stid.sc_count);
5301-
WARN_ON_ONCE(!nfsd4_run_cb(&dp->dl_recall));
5308+
queued = nfsd4_run_cb(&dp->dl_recall);
5309+
WARN_ON_ONCE(!queued);
5310+
if (!queued)
5311+
nfs4_put_stid(&dp->dl_stid);
53025312
}
53035313

53045314
/* Called from break_lease() with flc_lock held. */

0 commit comments

Comments
 (0)