mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH] jfs: fix array-index-out-of-bounds
@ 2024-09-22 11:00 Ghanshyam Agrawal
  2024-09-22 15:05 ` Christophe JAILLET
  0 siblings, 1 reply; 6+ messages in thread
From: Ghanshyam Agrawal @ 2024-09-22 11:00 UTC (permalink / raw)
  To: shaggy, ghandatmanas, jlayton, eadavis, brauner, ghanshyam1898
  Cc: jfs-discussion, linux-kernel, syzbot+808f3f84407f08a93022

In some cases, dn_numag may be greater than MAXAG which may
result in an array-index-out-of-bounds in dbNextAG. Added
a check to return an error code before we crash.

Reported-by: syzbot+808f3f84407f08a93022@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=808f3f84407f08a93022
Signed-off-by: Ghanshyam Agrawal <ghanshyam1898@gmail.com>
---
 fs/jfs/jfs_imap.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/fs/jfs/jfs_imap.c b/fs/jfs/jfs_imap.c
index 2ec35889ad24..5088da13e8f1 100644
--- a/fs/jfs/jfs_imap.c
+++ b/fs/jfs/jfs_imap.c
@@ -1360,6 +1360,9 @@ int diAlloc(struct inode *pip, bool dir, struct inode *ip)
 	if (agno < 0 || agno > dn_numag)
 		return -EIO;
 
+	if (unlikely(dn_numag > MAXAG))
+		return -EIO;
+
 	if (atomic_read(&JFS_SBI(pip->i_sb)->bmap->db_active[agno])) {
 		/*
 		 * There is an open file actively growing.  We want to
-- 
2.34.1


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

end of thread, other threads:[~2024-09-24 13:39 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-09-22 11:00 [PATCH] jfs: fix array-index-out-of-bounds Ghanshyam Agrawal
2024-09-22 15:05 ` Christophe JAILLET
2024-09-23  3:35   ` Ghanshyam Agrawal
2024-09-23 20:45     ` Christophe JAILLET
2024-09-24  4:52       ` Ghanshyam Agrawal
2024-09-24 13:39         ` Dave Kleikamp

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

all inboxes | Powered by JetHome®