Blame SOURCES/0044-exfat-fix-overflow-issue-in-exfat_cluster_to_sector.patch
|
Kmods SIG |
50e2b3 |
From 43946b70494beefe40ec1b2ba4744c0f294d7736 Mon Sep 17 00:00:00 2001
|
|
Kmods SIG |
50e2b3 |
From: Namjae Jeon <namjae.jeon@samsung.com>
|
|
Kmods SIG |
50e2b3 |
Date: Fri, 3 Jul 2020 11:16:32 +0900
|
|
Kmods SIG |
50e2b3 |
Subject: [Backport 43946b70494b] exfat: fix overflow issue in
|
|
Kmods SIG |
50e2b3 |
exfat_cluster_to_sector()
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
An overflow issue can occur while calculating sector in
|
|
Kmods SIG |
50e2b3 |
exfat_cluster_to_sector(). It needs to cast clus's type to sector_t
|
|
Kmods SIG |
50e2b3 |
before left shifting.
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
Fixes: 1acf1a564b60 ("exfat: add in-memory and on-disk structures and headers")
|
|
Kmods SIG |
50e2b3 |
Cc: stable@vger.kernel.org # v5.7
|
|
Kmods SIG |
50e2b3 |
Reviewed-by: Sungjong Seo <sj1557.seo@samsung.com>
|
|
Kmods SIG |
50e2b3 |
Signed-off-by: Namjae Jeon <namjae.jeon@samsung.com>
|
|
Kmods SIG |
50e2b3 |
---
|
|
Kmods SIG |
50e2b3 |
src/exfat_fs.h | 2 +-
|
|
Kmods SIG |
50e2b3 |
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
diff --git a/src/exfat_fs.h b/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
index 7579cd3bbadba87a8bfd56c0699c8186902a6763..75c7bdbeba6d3e9316c7b795cd525d1323e47b83 100644
|
|
Kmods SIG |
50e2b3 |
--- a/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
+++ b/src/exfat_fs.h
|
|
Kmods SIG |
50e2b3 |
@@ -371,7 +371,7 @@ static inline bool exfat_is_last_sector_in_cluster(struct exfat_sb_info *sbi,
|
|
Kmods SIG |
50e2b3 |
static inline sector_t exfat_cluster_to_sector(struct exfat_sb_info *sbi,
|
|
Kmods SIG |
50e2b3 |
unsigned int clus)
|
|
Kmods SIG |
50e2b3 |
{
|
|
Kmods SIG |
50e2b3 |
- return ((clus - EXFAT_RESERVED_CLUSTERS) << sbi->sect_per_clus_bits) +
|
|
Kmods SIG |
50e2b3 |
+ return ((sector_t)(clus - EXFAT_RESERVED_CLUSTERS) << sbi->sect_per_clus_bits) +
|
|
Kmods SIG |
50e2b3 |
sbi->data_start_sector;
|
|
Kmods SIG |
50e2b3 |
}
|
|
Kmods SIG |
50e2b3 |
|
|
Kmods SIG |
50e2b3 |
--
|
|
Kmods SIG |
50e2b3 |
2.31.1
|
|
Kmods SIG |
50e2b3 |
|