aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs
diff options
context:
space:
mode:
authorDan Rosenberg <dan.j.rosenberg@gmail.com>2010-05-15 11:27:37 -0400
committerChris Mason <chris.mason@oracle.com>2010-05-15 12:05:50 -0400
commit5dc6416414fb3ec6e2825fd4d20c8bf1d7fe0395 (patch)
treee15101a2d1302ff6f2830f282197b34060ec963c /fs/btrfs
parent9f680ce04ea19dabbbafe01b57b61930a9b70741 (diff)
Btrfs: check for read permission on src file in the clone ioctl
The existing code would have allowed you to clone a file that was only open for writing Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs/btrfs')
-rw-r--r--fs/btrfs/ioctl.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 2b7dd88fc54f..9de6c3a75bfb 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -1480,12 +1480,17 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
1480 ret = -EBADF; 1480 ret = -EBADF;
1481 goto out_drop_write; 1481 goto out_drop_write;
1482 } 1482 }
1483
1483 src = src_file->f_dentry->d_inode; 1484 src = src_file->f_dentry->d_inode;
1484 1485
1485 ret = -EINVAL; 1486 ret = -EINVAL;
1486 if (src == inode) 1487 if (src == inode)
1487 goto out_fput; 1488 goto out_fput;
1488 1489
1490 /* the src must be open for reading */
1491 if (!(src_file->f_mode & FMODE_READ))
1492 goto out_fput;
1493
1489 ret = -EISDIR; 1494 ret = -EISDIR;
1490 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode)) 1495 if (S_ISDIR(src->i_mode) || S_ISDIR(inode->i_mode))
1491 goto out_fput; 1496 goto out_fput;