diff options
| -rw-r--r-- | fs/btrfs/ioctl.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 2b7dd88fc54..9de6c3a75bf 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; |
