summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2019-02-01 13:09:39 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-02-02 11:06:00 +0000
commite63e5b2e189df3a3aeddcb42696793a29539c8a8 (patch)
tree53c1af148f74e2592a7edcd2d14943379abe147b /meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch
parent84e91598278158455314177d4a43a22e344a5dab (diff)
downloadpoky-e63e5b2e189df3a3aeddcb42696793a29539c8a8.tar.gz
e2fsprogs: fix file system generation with large files
When copying files into the file system the file offset was being truncated to a signed 32-bit value, so any files that are larger than 2^31 bytes were the right size, but no content after that point. (From OE-Core rev: b2ffd2228f0d68d096f8003975f0f7ec28bd4313) Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch')
-rw-r--r--meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch50
1 files changed, 50 insertions, 0 deletions
diff --git a/meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch b/meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch
new file mode 100644
index 0000000000..c89581dce8
--- /dev/null
+++ b/meta/recipes-devtools/e2fsprogs/e2fsprogs/0001-create_inode-fix-copying-large-files.patch
@@ -0,0 +1,50 @@
1Upstream-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