]> git.baikalelectronics.ru Git - kernel.git/commit
nfsd4: fix NULL dereference in nfsd/clients display code
authorJ. Bruce Fields <bfields@redhat.com>
Wed, 15 Jul 2020 17:31:36 +0000 (13:31 -0400)
committerJ. Bruce Fields <bfields@redhat.com>
Wed, 22 Jul 2020 20:47:14 +0000 (16:47 -0400)
commit4c7f2536c42ed08299e9d7041031cd97fdac3d80
treecdbc309d8b515f478f1595b617911b84141bc028
parent38d2e641713ee397e145939f396c155a107d5035
nfsd4: fix NULL dereference in nfsd/clients display code

We hold the cl_lock here, and that's enough to keep stateid's from going
away, but it's not enough to prevent the files they point to from going
away.  Take fi_lock and a reference and check for NULL, as we do in
other code.

Reported-by: NeilBrown <neilb@suse.de>
Fixes: 20a26298532f ("nfsd4: add file to display list of client's opens")
Reviewed-by: NeilBrown <neilb@suse.de>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
fs/nfsd/nfs4state.c