summaryrefslogtreecommitdiffstats
path: root/fs/btrfs/inode.c
diff options
context:
space:
mode:
authorYan, Zheng2009-09-24 15:17:31 +0200
committerChris Mason2009-09-24 15:17:31 +0200
commitf679a84034be6f7da123be786bbd8838bf3e9207 (patch)
tree4dce1760675978fd0b113e04f9608f57161bac85 /fs/btrfs/inode.c
parentBtrfs: check size of inode backref before adding hardlink (diff)
downloadkernel-qcow2-linux-f679a84034be6f7da123be786bbd8838bf3e9207.tar.gz
kernel-qcow2-linux-f679a84034be6f7da123be786bbd8838bf3e9207.tar.xz
kernel-qcow2-linux-f679a84034be6f7da123be786bbd8838bf3e9207.zip
Btrfs: don't rename file into dummy directory
A recent change enforces only one access point to each subvolume. The first directory entry (the one added when the subvolume/snapshot was created) is treated as valid access point, all other subvolume links are linked to dummy empty directories. The dummy directories are temporary inodes that only in memory, so we can not rename file into them. Signed-off-by: Yan Zheng <zheng.yan@oracle.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs/inode.c')
-rw-r--r--fs/btrfs/inode.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 19fcde289dd9..01c5f8b5a34e 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -5055,6 +5055,9 @@ static int btrfs_rename(struct inode *old_dir, struct dentry *old_dentry,
u64 root_objectid;
int ret;
+ if (new_dir->i_ino == BTRFS_EMPTY_SUBVOL_DIR_OBJECTID)
+ return -EPERM;
+
/* we only allow rename subvolume link between subvolumes */
if (old_inode->i_ino != BTRFS_FIRST_FREE_OBJECTID && root != dest)
return -EXDEV;