linux-stable/fs/nilfs2
Jeongjun Park 054f29e9ca nilfs2: fix OOB in nilfs_set_de_type
commit c4a7dc9523 upstream.

The size of the nilfs_type_by_mode array in the fs/nilfs2/dir.c file is
defined as "S_IFMT >> S_SHIFT", but the nilfs_set_de_type() function,
which uses this array, specifies the index to read from the array in the
same way as "(mode & S_IFMT) >> S_SHIFT".

static void nilfs_set_de_type(struct nilfs_dir_entry *de, struct inode
 *inode)
{
	umode_t mode = inode->i_mode;

	de->file_type = nilfs_type_by_mode[(mode & S_IFMT)>>S_SHIFT]; // oob
}

However, when the index is determined this way, an out-of-bounds (OOB)
error occurs by referring to an index that is 1 larger than the array size
when the condition "mode & S_IFMT == S_IFMT" is satisfied.  Therefore, a
patch to resize the nilfs_type_by_mode array should be applied to prevent
OOB errors.

Link: https://lkml.kernel.org/r/20240415182048.7144-1-konishi.ryusuke@gmail.com
Reported-by: syzbot+2e22057de05b9f3b30d8@syzkaller.appspotmail.com
Closes: https://syzkaller.appspot.com/bug?extid=2e22057de05b9f3b30d8
Fixes: 2ba466d74e ("nilfs2: directory entry operations")
Signed-off-by: Jeongjun Park <aha310510@gmail.com>
Signed-off-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Tested-by: Ryusuke Konishi <konishi.ryusuke@gmail.com>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2024-05-02 16:17:10 +02:00
..
Kconfig
Makefile
alloc.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
alloc.h
bmap.c nilfs2: fix infinite loop in nilfs_mdt_get_block() 2023-05-17 11:13:20 +02:00
bmap.h
btnode.c nilfs2: fix incomplete buffer cleanup in nilfs_btnode_abort_change_key() 2023-06-21 15:39:57 +02:00
btnode.h nilfs2: fix lockdep warnings in page operations for btree nodes 2022-05-25 09:10:37 +02:00
btree.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
btree.h
cpfile.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
cpfile.h
dat.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
dat.h
dir.c nilfs2: fix OOB in nilfs_set_de_type 2024-05-02 16:17:10 +02:00
direct.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
direct.h
export.h
file.c nilfs2: fix hang in nilfs_lookup_dirty_data_buffers() 2024-02-23 08:12:58 +01:00
gcinode.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
ifile.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
ifile.h
inode.c nilfs2: prevent kernel bug at submit_bh_wbc() 2024-04-13 12:50:07 +02:00
ioctl.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
mdt.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
mdt.h nilfs2: fix lockdep warnings during disk space reclamation 2022-05-25 09:10:37 +02:00
namei.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
nilfs.h nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
page.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
page.h
recovery.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
segbuf.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
segbuf.h
segment.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
segment.h
sufile.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
sufile.h
super.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
sysfs.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
sysfs.h
the_nilfs.c nilfs2: use a more common logging style 2024-04-13 12:50:07 +02:00
the_nilfs.h nilfs2: fix use-after-free of nilfs_root in dirtying inodes via iput 2023-08-16 18:13:00 +02:00