ext4: switch to fscrypt_prepare_setattr()
authorEric Biggers <ebiggers@google.com>
Thu, 19 Oct 2017 00:21:58 +0000 (20:21 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 19 Oct 2017 00:21:58 +0000 (20:21 -0400)
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/inode.c

index d5a471939fbce0787c29d7fba7485aa80849d482..617c7feced243bc7f29bf36786e20397686fc47f 100644 (file)
@@ -5311,6 +5311,10 @@ int ext4_setattr(struct dentry *dentry, struct iattr *attr)
        if (error)
                return error;
 
+       error = fscrypt_prepare_setattr(dentry, attr);
+       if (error)
+               return error;
+
        if (is_quota_modification(inode, attr)) {
                error = dquot_initialize(inode);
                if (error)
@@ -5356,14 +5360,6 @@ int ext4_setattr(struct dentry *dentry, struct iattr *attr)
                loff_t oldsize = inode->i_size;
                int shrink = (attr->ia_size <= inode->i_size);
 
-               if (ext4_encrypted_inode(inode)) {
-                       error = fscrypt_get_encryption_info(inode);
-                       if (error)
-                               return error;
-                       if (!fscrypt_has_encryption_key(inode))
-                               return -ENOKEY;
-               }
-
                if (!(ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))) {
                        struct ext4_sb_info *sbi = EXT4_SB(inode->i_sb);