]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/commitdiff
ext4: fix reading new encrypted symlinks on no-journal file systems
authorTheodore Ts'o <tytso@mit.edu>
Fri, 2 Dec 2016 17:12:53 +0000 (12:12 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Fri, 2 Dec 2016 17:12:53 +0000 (12:12 -0500)
On a filesystem with no journal, a symlink longer than about 32
characters (exact length depending on padding for encryption) could not
be followed or read immediately after being created in an encrypted
directory.  This happened because when the symlink data went through the
delayed allocation path instead of the journaling path, the symlink was
incorrectly detected as a "fast" symlink rather than a "slow" symlink
until its data was written out.

To fix this, disable delayed allocation for symlinks, since there is
no benefit for delayed allocation anyway.

Reported-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/inode.c

index 59a518ad6bb2c12a90d7aea7085b9c6cbc79e202..a1eac00542033241852abba5d914f16e23862e6c 100644 (file)
@@ -2902,7 +2902,8 @@ static int ext4_da_write_begin(struct file *file, struct address_space *mapping,
 
        index = pos >> PAGE_SHIFT;
 
-       if (ext4_nonda_switch(inode->i_sb)) {
+       if (ext4_nonda_switch(inode->i_sb) ||
+           S_ISLNK(inode->i_mode)) {
                *fsdata = (void *)FALL_BACK_TO_NONDELALLOC;
                return ext4_write_begin(file, mapping, pos,
                                        len, flags, pagep, fsdata);