Linux kernel -stable discussions
 help / color / mirror / Atom feed
* [PATCH 5.15.y] fs/ntfs3: Fixed overflow check in mi_enum_attr()
@ 2025-03-28  9:18 bin.lan.cn
  2025-03-28 17:03 ` Sasha Levin
  2025-04-22 13:30 ` Greg KH
  0 siblings, 2 replies; 3+ messages in thread
From: bin.lan.cn @ 2025-03-28  9:18 UTC (permalink / raw)
  To: gregkh, stable; +Cc: rtm, bin.lan.cn, almaz.alexandrovich

From: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>

[ Upstream commit 652cfeb43d6b9aba5c7c4902bed7a7340df131fb ]

Reported-by: Robert Morris <rtm@csail.mit.edu>
Signed-off-by: Konstantin Komarov <almaz.alexandrovich@paragon-software.com>
Signed-off-by: Bin Lan <bin.lan.cn@windriver.com>
Signed-off-by: He Zhe <zhe.he@windriver.com>
---
Build test passed.
---
 fs/ntfs3/record.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/ntfs3/record.c b/fs/ntfs3/record.c
index 383fc3437f02..fb0683c983cf 100644
--- a/fs/ntfs3/record.c
+++ b/fs/ntfs3/record.c
@@ -263,7 +263,7 @@ struct ATTRIB *mi_enum_attr(struct mft_inode *mi, struct ATTRIB *attr)
 			return NULL;
 
 		t32 = le32_to_cpu(attr->res.data_size);
-		if (t16 + t32 > asize)
+		if (t32 > asize - t16)
 			return NULL;
 
 		if (attr->name_len &&
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-04-22 13:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-28  9:18 [PATCH 5.15.y] fs/ntfs3: Fixed overflow check in mi_enum_attr() bin.lan.cn
2025-03-28 17:03 ` Sasha Levin
2025-04-22 13:30 ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox