aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorLi Zefan <lizf@cn.fujitsu.com>2010-11-18 20:36:10 -0500
committerChris Mason <chris.mason@oracle.com>2010-11-21 22:26:05 -0500
commit2a6b8daedaf3682bed3fc1d4e2390491f6e19c49 (patch)
tree76f418aa17a1e3e690d5c1fb164e0c4b96ca1e8d /fs
parent0de90876c6cb774d4a424dafc1fc9ec50071b81b (diff)
btrfs: Check if dest_offset is block-size aligned before cloning file
We've done the check for src_offset and src_length, and We should also check dest_offset, otherwise we'll corrupt the destination file: (After cloning file1 to file2 with unaligned dest_offset) # cat /mnt/file2 cat: /mnt/file2: Input/output error Signed-off-by: Li Zefan <lizf@cn.fujitsu.com> Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/ioctl.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c
index 463d91b4dd3..81b47bd8a55 100644
--- a/fs/btrfs/ioctl.c
+++ b/fs/btrfs/ioctl.c
@@ -1669,12 +1669,11 @@ static noinline long btrfs_ioctl_clone(struct file *file, unsigned long srcfd,
1669 olen = len = src->i_size - off; 1669 olen = len = src->i_size - off;
1670 /* if we extend to eof, continue to block boundary */ 1670 /* if we extend to eof, continue to block boundary */
1671 if (off + len == src->i_size) 1671 if (off + len == src->i_size)
1672 len = ((src->i_size + bs-1) & ~(bs-1)) 1672 len = ALIGN(src->i_size, bs) - off;
1673 - off;
1674 1673
1675 /* verify the end result is block aligned */ 1674 /* verify the end result is block aligned */
1676 if ((off & (bs-1)) || 1675 if (!IS_ALIGNED(off, bs) || !IS_ALIGNED(off + len, bs) ||
1677 ((off + len) & (bs-1))) 1676 !IS_ALIGNED(destoff, bs))
1678 goto out_unlock; 1677 goto out_unlock;
1679 1678
1680 /* do any pending delalloc/csum calc on src, one way or 1679 /* do any pending delalloc/csum calc on src, one way or