Commit cca81985 authored by Dan Rosenberg's avatar Dan Rosenberg Committed by Greg Kroah-Hartman

Btrfs: check for read permission on src file in the clone ioctl

commit 5dc64164 upstream.

The existing code would have allowed you to clone a file that was
only open for writing
Signed-off-by: default avatarChris Mason <chris.mason@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent f46c7299
......@@ -959,12 +959,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;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment