]> git.baikalelectronics.ru Git - kernel.git/commit
NFSv4 fix CLOSE not waiting for direct IO compeletion
authorOlga Kornievskaia <olga.kornievskaia@gmail.com>
Wed, 24 Jun 2020 17:54:08 +0000 (13:54 -0400)
committerAnna Schumaker <Anna.Schumaker@Netapp.com>
Fri, 26 Jun 2020 12:43:14 +0000 (08:43 -0400)
commit2f64a3af0d801aed178bcb2745b31e6c05d9cd04
tree3acffd299a25b9e805f1ff4356d3ce08c16ab54b
parentce6a4d760e8be8c2f6fd87a470601e4fad0bd536
NFSv4 fix CLOSE not waiting for direct IO compeletion

Figuring out the root case for the REMOVE/CLOSE race and
suggesting the solution was done by Neil Brown.

Currently what happens is that direct IO calls hold a reference
on the open context which is decremented as an asynchronous task
in the nfs_direct_complete(). Before reference is decremented,
control is returned to the application which is free to close the
file. When close is being processed, it decrements its reference
on the open_context but since directIO still holds one, it doesn't
sent a close on the wire. It returns control to the application
which is free to do other operations. For instance, it can delete a
file. Direct IO is finally releasing its reference and triggering
an asynchronous close. Which races with the REMOVE. On the server,
REMOVE can be processed before the CLOSE, failing the REMOVE with
EACCES as the file is still opened.

Signed-off-by: Olga Kornievskaia <kolga@netapp.com>
Suggested-by: Neil Brown <neilb@suse.com>
CC: stable@vger.kernel.org
Signed-off-by: Anna Schumaker <Anna.Schumaker@Netapp.com>
fs/nfs/direct.c
fs/nfs/file.c