From: Dan Rosenberg Date: Sat, 15 May 2010 15:27:37 +0000 (-0400) Subject: Btrfs: check for read permission on src file in the clone ioctl X-Git-Tag: v2.6.33.5~10 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=8493589f15804898970d9cfb650ea6d86f339fe3;p=karo-tx-linux.git Btrfs: check for read permission on src file in the clone ioctl commit 5dc6416414fb3ec6e2825fd4d20c8bf1d7fe0395 upstream. The existing code would have allowed you to clone a file that was only open for writing Signed-off-by: Chris Mason Signed-off-by: Greg Kroah-Hartman --- diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 645a17927a8f..2c6ee6aacb26 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -964,12 +964,17 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd, ret = -EBADF; goto out_drop_write; } + src = src_file->f_dentry->d_inode; ret = -EINVAL; if (src == inode) goto out_fput; + /* the src must be open for reading */ + if (!(src_file->f_mode & FMODE_READ)) + goto out_fput; + ret = -EISDIR; if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode)) goto out_fput;