* [f2fs-dev] [PATCH] f2fs_io: Fix integer multiplication overflow error in fiemap
@ 2023-05-23 7:24 zangyangyang1 via Linux-f2fs-devel
2023-05-23 9:59 ` Chao Yu
0 siblings, 1 reply; 6+ messages in thread
From: zangyangyang1 via Linux-f2fs-devel @ 2023-05-23 7:24 UTC (permalink / raw)
To: jaegeuk, chao; +Cc: zangyangyang1, linux-f2fs-devel
[-- Attachment #1: Type: text/plain, Size: 2160 bytes --]
When using fiemap to obtain the block address of files
larger than 2GB ((2147483647+1) bytes), an integer
multiplication overflow error will occur.
This issue is caused by the following code:
start = atoi(argv[1]) * F2FS_BLKSIZE;
length = atoi(argv[2]) * F2FS_BLKSIZE;
Signed-off-by: zangyangyang1 <zangyangyang1@xiaomi.com>
---
tools/f2fs_io/f2fs_io.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
index 5bc0baf..ad6b5f0 100644
--- a/tools/f2fs_io/f2fs_io.c
+++ b/tools/f2fs_io/f2fs_io.c
@@ -809,15 +809,15 @@ static void do_fiemap(int argc, char **argv, const struct cmd_desc *cmd)
}
memset(fm, 0, sizeof(struct fiemap));
- start = atoi(argv[1]) * F2FS_BLKSIZE;
- length = atoi(argv[2]) * F2FS_BLKSIZE;
- fm->fm_start = start;
- fm->fm_length = length;
+ start = atoll(argv[1]);
+ length = atoll(argv[2]);
+ fm->fm_start = start * F2FS_BLKSIZE;
+ fm->fm_length = length * F2FS_BLKSIZE;
fd = xopen(argv[3], O_RDONLY | O_LARGEFILE, 0);
printf("Fiemap: offset = %"PRIu64" len = %"PRIu64"\n",
- start / F2FS_BLKSIZE, length / F2FS_BLKSIZE);
+ start, length);
if (ioctl(fd, FS_IOC_FIEMAP, fm) < 0)
die_errno("FIEMAP failed");
--
2.40.1
#/******±¾Óʼþ¼°Æä¸½¼þº¬ÓÐСÃ×¹«Ë¾µÄ±£ÃÜÐÅÏ¢£¬½öÏÞÓÚ·¢Ë͸øÉÏÃæµØÖ·ÖÐÁгöµÄ¸öÈË»òȺ×é¡£½ûÖ¹ÈÎºÎÆäËûÈËÒÔÈκÎÐÎʽʹÓ㨰üÀ¨µ«²»ÏÞÓÚÈ«²¿»ò²¿·ÖµØÐ¹Â¶¡¢¸´ÖÆ¡¢»òÉ¢·¢£©±¾ÓʼþÖеÄÐÅÏ¢¡£Èç¹ûÄú´íÊÕÁ˱¾Óʼþ£¬ÇëÄúÁ¢¼´µç»°»òÓʼþ֪ͨ·¢¼þÈ˲¢É¾³ý±¾Óʼþ£¡ This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 179 bytes --]
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [f2fs-dev] [PATCH] f2fs_io: Fix integer multiplication overflow error in fiemap
2023-05-23 7:24 [f2fs-dev] [PATCH] f2fs_io: Fix integer multiplication overflow error in fiemap zangyangyang1 via Linux-f2fs-devel
@ 2023-05-23 9:59 ` Chao Yu
2023-05-23 12:27 ` [f2fs-dev] [PATCH v2] " zangyangyang1 via Linux-f2fs-devel
0 siblings, 1 reply; 6+ messages in thread
From: Chao Yu @ 2023-05-23 9:59 UTC (permalink / raw)
To: zangyangyang1, jaegeuk; +Cc: linux-f2fs-devel
On 2023/5/23 15:24, zangyangyang1 wrote:
> When using fiemap to obtain the block address of files
> larger than 2GB ((2147483647+1) bytes), an integer
> multiplication overflow error will occur.
> This issue is caused by the following code:
> start = atoi(argv[1]) * F2FS_BLKSIZE;
> length = atoi(argv[2]) * F2FS_BLKSIZE;
>
> Signed-off-by: zangyangyang1 <zangyangyang1@xiaomi.com>
> ---
> tools/f2fs_io/f2fs_io.c | 10 +++++-----
> 1 file changed, 5 insertions(+), 5 deletions(-)
>
> diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
> index 5bc0baf..ad6b5f0 100644
> --- a/tools/f2fs_io/f2fs_io.c
> +++ b/tools/f2fs_io/f2fs_io.c
> @@ -809,15 +809,15 @@ static void do_fiemap(int argc, char **argv, const struct cmd_desc *cmd)
> }
>
> memset(fm, 0, sizeof(struct fiemap));
> - start = atoi(argv[1]) * F2FS_BLKSIZE;
> - length = atoi(argv[2]) * F2FS_BLKSIZE;
How about?
start = (long long)atoi(argv[1]) * F2FS_BLKSIZE;
length = (long long)atoi(argv[2]) * F2FS_BLKSIZE;
Thanks,
> - fm->fm_start = start;
> - fm->fm_length = length;
> + start = atoll(argv[1]);
> + length = atoll(argv[2]);
> + fm->fm_start = start * F2FS_BLKSIZE;
> + fm->fm_length = length * F2FS_BLKSIZE;
>
> fd = xopen(argv[3], O_RDONLY | O_LARGEFILE, 0);
>
> printf("Fiemap: offset = %"PRIu64" len = %"PRIu64"\n",
> - start / F2FS_BLKSIZE, length / F2FS_BLKSIZE);
> + start, length);
> if (ioctl(fd, FS_IOC_FIEMAP, fm) < 0)
> die_errno("FIEMAP failed");
>
> --
> 2.40.1
>
> #/******本邮件及其附件含有小米公司的保密信息,仅限于发送给上面地址中列出的个人或群组。禁止任何其他人以任何形式使用(包括但不限于全部或部分地泄露、复制、或散发)本邮件中的信息。如果您错收了本邮件,请您立即电话或邮件通知发件人并删除本邮件! This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 6+ messages in thread* [f2fs-dev] [PATCH v2] f2fs_io: Fix integer multiplication overflow error in fiemap
2023-05-23 9:59 ` Chao Yu
@ 2023-05-23 12:27 ` zangyangyang1 via Linux-f2fs-devel
2023-05-24 3:02 ` Chao Yu
2023-11-09 13:00 ` [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info() zangyangyang1 via Linux-f2fs-devel
0 siblings, 2 replies; 6+ messages in thread
From: zangyangyang1 via Linux-f2fs-devel @ 2023-05-23 12:27 UTC (permalink / raw)
To: chao; +Cc: jaegeuk, zangyangyang1, linux-f2fs-devel
[-- Attachment #1: Type: text/plain, Size: 1794 bytes --]
When using fiemap to obtain the block address of files
larger than 2GB ((2147483647+1) bytes), an integer
multiplication overflow error will occur.
This issue is caused by the following code:
start = atoi(argv[1]) * F2FS_BLKSIZE;
length = atoi(argv[2]) * F2FS_BLKSIZE;
Signed-off-by: zangyangyang1 <zangyangyang1@xiaomi.com>
---
Changes since v1:
- Use type casting
---
tools/f2fs_io/f2fs_io.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/tools/f2fs_io/f2fs_io.c b/tools/f2fs_io/f2fs_io.c
index 5bc0baf..958d684 100644
--- a/tools/f2fs_io/f2fs_io.c
+++ b/tools/f2fs_io/f2fs_io.c
@@ -809,8 +809,8 @@ static void do_fiemap(int argc, char **argv, const struct cmd_desc *cmd)
}
memset(fm, 0, sizeof(struct fiemap));
- start = atoi(argv[1]) * F2FS_BLKSIZE;
- length = atoi(argv[2]) * F2FS_BLKSIZE;
+ start = (u64)atoi(argv[1]) * F2FS_BLKSIZE;
+ length = (u64)atoi(argv[2]) * F2FS_BLKSIZE;
fm->fm_start = start;
fm->fm_length = length;
--
2.40.1
#/******±¾Óʼþ¼°Æä¸½¼þº¬ÓÐСÃ×¹«Ë¾µÄ±£ÃÜÐÅÏ¢£¬½öÏÞÓÚ·¢Ë͸øÉÏÃæµØÖ·ÖÐÁгöµÄ¸öÈË»òȺ×é¡£½ûÖ¹ÈÎºÎÆäËûÈËÒÔÈκÎÐÎʽʹÓ㨰üÀ¨µ«²»ÏÞÓÚÈ«²¿»ò²¿·ÖµØÐ¹Â¶¡¢¸´ÖÆ¡¢»òÉ¢·¢£©±¾ÓʼþÖеÄÐÅÏ¢¡£Èç¹ûÄú´íÊÕÁ˱¾Óʼþ£¬ÇëÄúÁ¢¼´µç»°»òÓʼþ֪ͨ·¢¼þÈ˲¢É¾³ý±¾Óʼþ£¡ This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 179 bytes --]
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [f2fs-dev] [PATCH v2] f2fs_io: Fix integer multiplication overflow error in fiemap
2023-05-23 12:27 ` [f2fs-dev] [PATCH v2] " zangyangyang1 via Linux-f2fs-devel
@ 2023-05-24 3:02 ` Chao Yu
2023-11-09 13:00 ` [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info() zangyangyang1 via Linux-f2fs-devel
1 sibling, 0 replies; 6+ messages in thread
From: Chao Yu @ 2023-05-24 3:02 UTC (permalink / raw)
To: zangyangyang1; +Cc: jaegeuk, linux-f2fs-devel
On 2023/5/23 20:27, zangyangyang1 wrote:
> When using fiemap to obtain the block address of files
> larger than 2GB ((2147483647+1) bytes), an integer
> multiplication overflow error will occur.
> This issue is caused by the following code:
> start = atoi(argv[1]) * F2FS_BLKSIZE;
> length = atoi(argv[2]) * F2FS_BLKSIZE;
>
> Signed-off-by: zangyangyang1 <zangyangyang1@xiaomi.com>
Reviewed-by: Chao Yu <chao@kernel.org>
Thanks,
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
* [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info()
2023-05-23 12:27 ` [f2fs-dev] [PATCH v2] " zangyangyang1 via Linux-f2fs-devel
2023-05-24 3:02 ` Chao Yu
@ 2023-11-09 13:00 ` zangyangyang1 via Linux-f2fs-devel
2023-11-09 15:40 ` zangyangyang1 via Linux-f2fs-devel
1 sibling, 1 reply; 6+ messages in thread
From: zangyangyang1 via Linux-f2fs-devel @ 2023-11-09 13:00 UTC (permalink / raw)
To: linux-f2fs-devel; +Cc: zangyangyang1, jaegeuk
[-- Attachment #1: Type: text/plain, Size: 1506 bytes --]
This issue comes from a static code scanning tool.
When c.sparse_mode is 1, stat_buf will not be initialized,
but it will be used next.
If this issue does not require modification, please ignore this commit.
Signed-off-by: zangyangyang1 <zangyangyang1@xiaomi.com>
---
Changes since v1:
- Use calloc() instead of malloc()
---
lib/libf2fs.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/lib/libf2fs.c b/lib/libf2fs.c
index 995e42d..47d4e49 100644
--- a/lib/libf2fs.c
+++ b/lib/libf2fs.c
@@ -931,7 +931,7 @@ int get_device_info(int i)
}
}
- stat_buf = malloc(sizeof(struct stat));
+ stat_buf = calloc(1, sizeof(struct stat));
ASSERT(stat_buf);
if (!c.sparse_mode) {
--
2.40.1
#/******±¾Óʼþ¼°Æä¸½¼þº¬ÓÐСÃ×¹«Ë¾µÄ±£ÃÜÐÅÏ¢£¬½öÏÞÓÚ·¢Ë͸øÉÏÃæµØÖ·ÖÐÁгöµÄ¸öÈË»òȺ×é¡£½ûÖ¹ÈÎºÎÆäËûÈËÒÔÈκÎÐÎʽʹÓ㨰üÀ¨µ«²»ÏÞÓÚÈ«²¿»ò²¿·ÖµØÐ¹Â¶¡¢¸´ÖÆ¡¢»òÉ¢·¢£©±¾ÓʼþÖеÄÐÅÏ¢¡£Èç¹ûÄú´íÊÕÁ˱¾Óʼþ£¬ÇëÄúÁ¢¼´µç»°»òÓʼþ֪ͨ·¢¼þÈ˲¢É¾³ý±¾Óʼþ£¡ This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 179 bytes --]
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply related [flat|nested] 6+ messages in thread* Re: [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info()
2023-11-09 13:00 ` [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info() zangyangyang1 via Linux-f2fs-devel
@ 2023-11-09 15:40 ` zangyangyang1 via Linux-f2fs-devel
0 siblings, 0 replies; 6+ messages in thread
From: zangyangyang1 via Linux-f2fs-devel @ 2023-11-09 15:40 UTC (permalink / raw)
To: jaegeuk; +Cc: zangyangyang1, linux-f2fs-devel
[-- Attachment #1: Type: text/plain, Size: 855 bytes --]
I'm very sorry for replying to the wrong email.
Please ignore this email and the previous patch email.
Thanks,
zangyangyang
#/******±¾Óʼþ¼°Æä¸½¼þº¬ÓÐСÃ×¹«Ë¾µÄ±£ÃÜÐÅÏ¢£¬½öÏÞÓÚ·¢Ë͸øÉÏÃæµØÖ·ÖÐÁгöµÄ¸öÈË»òȺ×é¡£½ûÖ¹ÈÎºÎÆäËûÈËÒÔÈκÎÐÎʽʹÓ㨰üÀ¨µ«²»ÏÞÓÚÈ«²¿»ò²¿·ÖµØÐ¹Â¶¡¢¸´ÖÆ¡¢»òÉ¢·¢£©±¾ÓʼþÖеÄÐÅÏ¢¡£Èç¹ûÄú´íÊÕÁ˱¾Óʼþ£¬ÇëÄúÁ¢¼´µç»°»òÓʼþ֪ͨ·¢¼þÈ˲¢É¾³ý±¾Óʼþ£¡ This e-mail and its attachments contain confidential information from XIAOMI, which is intended only for the person or entity whose address is listed above. Any use of the information contained herein in any way (including, but not limited to, total or partial disclosure, reproduction, or dissemination) by persons other than the intended recipient(s) is prohibited. If you receive this e-mail in error, please notify the sender by phone or email immediately and delete it!******/#
[-- Attachment #2: Type: text/plain, Size: 0 bytes --]
[-- Attachment #3: Type: text/plain, Size: 179 bytes --]
_______________________________________________
Linux-f2fs-devel mailing list
Linux-f2fs-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/linux-f2fs-devel
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2023-11-09 15:40 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-23 7:24 [f2fs-dev] [PATCH] f2fs_io: Fix integer multiplication overflow error in fiemap zangyangyang1 via Linux-f2fs-devel
2023-05-23 9:59 ` Chao Yu
2023-05-23 12:27 ` [f2fs-dev] [PATCH v2] " zangyangyang1 via Linux-f2fs-devel
2023-05-24 3:02 ` Chao Yu
2023-11-09 13:00 ` [f2fs-dev] [PATCH V2] libf2fs: Fix using uninitialized variables error in get_device_info() zangyangyang1 via Linux-f2fs-devel
2023-11-09 15:40 ` zangyangyang1 via Linux-f2fs-devel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).