f2fs: load inode's flag from disk
authorJaegeuk Kim <jaegeuk@kernel.org>
Tue, 16 May 2017 20:20:16 +0000 (13:20 -0700)
committerJaegeuk Kim <jaegeuk@kernel.org>
Wed, 24 May 2017 04:05:31 +0000 (21:05 -0700)
This patch fixes missing inode flag loaded from disk, reported by Tom.

[tom@localhost ~]$ sudo mount /dev/loop0 /mnt/
[tom@localhost ~]$ sudo chown tom:tom /mnt/
[tom@localhost ~]$ touch /mnt/testfile
[tom@localhost ~]$ sudo chattr +i /mnt/testfile
[tom@localhost ~]$ echo test > /mnt/testfile
bash: /mnt/testfile: Operation not permitted
[tom@localhost ~]$ rm /mnt/testfile
rm: cannot remove '/mnt/testfile': Operation not permitted
[tom@localhost ~]$ sudo umount /mnt/
[tom@localhost ~]$ sudo mount /dev/loop0 /mnt/
[tom@localhost ~]$ lsattr /mnt/testfile
----i-------------- /mnt/testfile
[tom@localhost ~]$ echo test > /mnt/testfile
[tom@localhost ~]$ rm /mnt/testfile
[tom@localhost ~]$ sudo umount /mnt/

Cc: stable@vger.kernel.org
Reported-by: Tom Yan <tom.ty89@outlook.com>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
fs/f2fs/file.c
fs/f2fs/inode.c

index abb0403d341484fa96e8cfc4634d1cf504b653c2..9b3e7635222c985b92684f75310a08db372861d6 100644 (file)
@@ -1493,6 +1493,7 @@ static int f2fs_ioc_setflags(struct file *filp, unsigned long arg)
 
        inode->i_ctime = current_time(inode);
        f2fs_set_inode_flags(inode);
+       f2fs_mark_inode_dirty_sync(inode, false);
 
        inode_unlock(inode);
 out:
index 518f49643092582ae256c425616e942ed2392c40..e53c784ab11e384866c1a7b7dce9ed39bd2fe9a1 100644 (file)
@@ -44,7 +44,6 @@ void f2fs_set_inode_flags(struct inode *inode)
                new_fl |= S_DIRSYNC;
        inode_set_flags(inode, new_fl,
                        S_SYNC|S_APPEND|S_IMMUTABLE|S_NOATIME|S_DIRSYNC);
-       f2fs_mark_inode_dirty_sync(inode, false);
 }
 
 static void __get_inode_rdev(struct inode *inode, struct f2fs_inode *ri)
@@ -226,6 +225,7 @@ make_now:
                ret = -EIO;
                goto bad_inode;
        }
+       f2fs_set_inode_flags(inode);
        unlock_new_inode(inode);
        trace_f2fs_iget(inode);
        return inode;