]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
jfs: fix array-index-out-of-bounds in jfs_readdir
authorGhanshyam Agrawal <ghanshyam1898@gmail.com>
Tue, 1 Oct 2024 06:05:47 +0000 (11:35 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 14 Dec 2024 18:48:28 +0000 (19:48 +0100)
[ Upstream commit 839f102efb168f02dfdd46717b7c6dddb26b015e ]

The stbl might contain some invalid values. Added a check to
return error code in that case.

Reported-by: syzbot+0315f8fe99120601ba88@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=0315f8fe99120601ba88
Signed-off-by: Ghanshyam Agrawal <ghanshyam1898@gmail.com>
Signed-off-by: Dave Kleikamp <dave.kleikamp@oracle.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
fs/jfs/jfs_dtree.c

index 8f7ce1bea44c5d6249e9e3f3e0d930d5b38dc375..a3d1d560f4c865c5510f824d7f27f1174b1bd088 100644 (file)
@@ -3187,6 +3187,14 @@ int jfs_readdir(struct file *file, struct dir_context *ctx)
                stbl = DT_GETSTBL(p);
 
                for (i = index; i < p->header.nextindex; i++) {
+                       if (stbl[i] < 0 || stbl[i] > 127) {
+                               jfs_err("JFS: Invalid stbl[%d] = %d for inode %ld, block = %lld",
+                                       i, stbl[i], (long)ip->i_ino, (long long)bn);
+                               free_page(dirent_buf);
+                               DT_PUTPAGE(mp);
+                               return -EIO;
+                       }
+
                        d = (struct ldtentry *) & p->slot[stbl[i]];
 
                        if (((long) jfs_dirent + d->namlen + 1) >