diff options
author | David Howells <dhowells@redhat.com> | 2020-04-10 15:23:27 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2020-04-13 15:09:01 +0100 |
commit | 2105c2820d366b76f38e6ad61c75771881ecc532 (patch) | |
tree | 844875c0e41ad206541baa3b44bc77ba89d78ba2 /kernel | |
parent | 3efe55b09a92a59ed8214db801683cf13c9742c4 (diff) | |
download | linux-2105c2820d366b76f38e6ad61c75771881ecc532.tar.gz linux-2105c2820d366b76f38e6ad61c75771881ecc532.tar.bz2 linux-2105c2820d366b76f38e6ad61c75771881ecc532.zip |
afs: Fix race between post-modification dir edit and readdir/d_revalidate
AFS directories are retained locally as a structured file, with lookup
being effected by a local search of the file contents. When a modification
(such as mkdir) happens, the dir file content is modified locally rather
than redownloading the directory.
The directory contents are accessed in a number of ways, with a number of
different locks schemes:
(1) Download of contents - dvnode->validate_lock/write in afs_read_dir().
(2) Lookup and readdir - dvnode->validate_lock/read in afs_dir_iterate(),
downgrading from (1) if necessary.
(3) d_revalidate of child dentry - dvnode->validate_lock/read in
afs_do_lookup_one() downgrading from (1) if necessary.
(4) Edit of dir after modification - page locks on individual dir pages.
Unfortunately, because (4) uses different locking scheme to (1) - (3),
nothing protects against the page being scanned whilst the edit is
underway. Even download is not safe as it doesn't lock the pages - relying
instead on the validate_lock to serialise as a whole (the theory being that
directory contents are treated as a block and always downloaded as a
block).
Fix this by write-locking dvnode->validate_lock around the edits. Care
must be taken in the rename case as there may be two different dirs - but
they need not be locked at the same time. In any case, once the lock is
taken, the directory version must be rechecked, and the edit skipped if a
later version has been downloaded by revalidation (there can't have been
any local changes because the VFS holds the inode lock, but there can have
been remote changes).
Fixes: 63a4681ff39c ("afs: Locally edit directory data for mkdir/create/unlink/...")
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'kernel')
0 files changed, 0 insertions, 0 deletions