[PATCH v2] erofs-utils: fix fragmentoff overflow for large packed inode
Yue Hu
zbestahu at gmail.com
Tue Dec 13 20:17:46 AEDT 2022
From: Yue Hu <huyue2 at coolpad.com>
The return value of ftell() is a long int, use ftello{64} instead. Also,
need to return at once if it fails. Meanwhile, use lseek64 for large
file position as well to avoid this error if we have it.
Signed-off-by: Yue Hu <huyue2 at coolpad.com>
---
v2:
- lseek64 -> erofs_lseek64
- remove change in inode.c
- minor commit message update
configure.ac | 2 ++
lib/fragments.c | 33 ++++++++++++++++++++++++++++-----
2 files changed, 30 insertions(+), 5 deletions(-)
diff --git a/configure.ac b/configure.ac
index a736ff0..5c9666a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -190,6 +190,8 @@ AC_CHECK_FUNCS(m4_flatten([
llistxattr
memset
realpath
+ lseek64
+ ftello64
pread64
pwrite64
strdup
diff --git a/lib/fragments.c b/lib/fragments.c
index e69ae47..c67c1bb 100644
--- a/lib/fragments.c
+++ b/lib/fragments.c
@@ -3,7 +3,18 @@
* Copyright (C), 2022, Coolpad Group Limited.
* Created by Yue Hu <huyue2 at coolpad.com>
*/
+#ifndef _LARGEFILE_SOURCE
+#define _LARGEFILE_SOURCE
+#endif
+#ifndef _LARGEFILE64_SOURCE
+#define _LARGEFILE64_SOURCE
+#endif
+#ifndef _FILE_OFFSET_BITS
+#define _FILE_OFFSET_BITS 64
+#endif
+#ifndef _GNU_SOURCE
#define _GNU_SOURCE
+#endif
#include <stdlib.h>
#include <unistd.h>
#include "erofs/err.h"
@@ -30,6 +41,12 @@ static struct list_head dupli_frags[FRAGMENT_HASHSIZE];
static FILE *packedfile;
const char *frags_packedname = "packed_file";
+#ifndef HAVE_LSEEK64
+#define erofs_lseek64 lseek
+#else
+#define erofs_lseek64 lseek64
+#endif
+
static int z_erofs_fragments_dedupe_find(struct erofs_inode *inode, int fd,
u32 crc)
{
@@ -53,8 +70,7 @@ static int z_erofs_fragments_dedupe_find(struct erofs_inode *inode, int fd,
if (!data)
return -ENOMEM;
- ret = lseek(fd, inode->i_size - length, SEEK_SET);
- if (ret < 0) {
+ if (erofs_lseek64(fd, inode->i_size - length, SEEK_SET) < 0) {
ret = -errno;
goto out;
}
@@ -113,8 +129,7 @@ int z_erofs_fragments_dedupe(struct erofs_inode *inode, int fd, u32 *tofcrc)
if (inode->i_size <= EROFS_TOF_HASHLEN)
return 0;
- ret = lseek(fd, inode->i_size - EROFS_TOF_HASHLEN, SEEK_SET);
- if (ret < 0)
+ if (erofs_lseek64(fd, inode->i_size - EROFS_TOF_HASHLEN, SEEK_SET) < 0)
return -errno;
ret = read(fd, data_to_hash, EROFS_TOF_HASHLEN);
@@ -192,9 +207,17 @@ void z_erofs_fragments_commit(struct erofs_inode *inode)
int z_erofs_pack_fragments(struct erofs_inode *inode, void *data,
unsigned int len, u32 tofcrc)
{
+#ifdef HAVE_FTELLO64
+ off64_t offset = ftello64(packedfile);
+#else
+ off_t offset = ftello(packedfile);
+#endif
int ret;
- inode->fragmentoff = ftell(packedfile);
+ if (offset < 0)
+ return -errno;
+
+ inode->fragmentoff = (erofs_off_t)offset;
inode->fragment_size = len;
if (fwrite(data, len, 1, packedfile) != 1)
--
2.17.1
More information about the Linux-erofs
mailing list