blob: c89581dce843d949eff700b6b6a93f74902d8762 [file] [log] [blame]
Andrew Geissler99467da2019-02-25 18:54:23 -06001Upstream-Status: Submitted
2Signed-off-by: Ross Burton <ross.burton@intel.com>
3
4From 674ab87b8338372338d20e21a350f88b4ff6c7c8 Mon Sep 17 00:00:00 2001
5From: Ross Burton <ross.burton@intel.com>
6Date: Fri, 1 Feb 2019 10:59:59 +0000
7Subject: [PATCH] create_inode: fix copying large files
8
9When copying large files into a ext filesystem at mkfs time the copy fails at
102^31 bytes in. There are two problems:
11
12copy_file_chunk() passes an offset (off_t, 64-bit typically) to
13ext2fs_file_lseek() which expects a ext2_off_t (typedef to __u32) so the value
14is truncated. Solve by calling ext2fs_file_llseek() which takes a u64 offset
15instead.
16
17try_lseek_copy() rounds the data and hole offsets as found by lseek() to block
18boundaries, but the calculation gets truncated to 32-bits. Solve by casting the
1932-bit blocksize to off_t to ensure this doesn't happen.
20
21Signed-off-by: Ross Burton <ross.burton@intel.com>
22---
23 misc/create_inode.c | 4 ++--
24 1 file changed, 2 insertions(+), 2 deletions(-)
25
26diff --git a/misc/create_inode.c b/misc/create_inode.c
27index 05aa6363..f106dcda 100644
28--- a/misc/create_inode.c
29+++ b/misc/create_inode.c
30@@ -438,7 +438,7 @@ static errcode_t copy_file_chunk(ext2_filsys fs, int fd, ext2_file_t e2_file,
31 ptr += blen;
32 continue;
33 }
34- err = ext2fs_file_lseek(e2_file, off + bpos,
35+ err = ext2fs_file_llseek(e2_file, off + bpos,
36 EXT2_SEEK_SET, NULL);
37 if (err)
38 goto fail;
39@@ -481,7 +481,7 @@ static errcode_t try_lseek_copy(ext2_filsys fs, int fd, struct stat *statbuf,
40 return EXT2_ET_UNIMPLEMENTED;
41
42 data_blk = data & ~(fs->blocksize - 1);
43- hole_blk = (hole + (fs->blocksize - 1)) & ~(fs->blocksize - 1);
44+ hole_blk = (hole + (off_t)(fs->blocksize - 1)) & ~(off_t)(fs->blocksize - 1);
45 err = copy_file_chunk(fs, fd, e2_file, data_blk, hole_blk, buf,
46 zerobuf);
47 if (err)
48--
492.11.0
50