linux-nilfs.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] nilfs: Fix OOB in nilfs_set_de_type
@ 2024-04-15 15:40 Jeongjun Park
  2024-04-15 16:44 ` Ryusuke Konishi
  0 siblings, 1 reply; 2+ messages in thread
From: Jeongjun Park @ 2024-04-15 15:40 UTC (permalink / raw)
  To: konishi.ryusuke
  Cc: linux-nilfs, linux-kernel, syzbot+2e22057de05b9f3b30d8, Jeongjun Park


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
}



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".

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.



Reported-and-tested-by: syzbot+2e22057de05b9f3b30d8@syzkaller.appspotmail.com
Fixes: 2ba466d74ed7 ("nilfs2: directory entry operations")
Signed-off-by: Jeongjun Park <aha310510@gmail.com>
---
 fs/nilfs2/dir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fs/nilfs2/dir.c b/fs/nilfs2/dir.c
index bc846b904b68..aee40db7a036 100644
--- a/fs/nilfs2/dir.c
+++ b/fs/nilfs2/dir.c
@@ -240,7 +240,7 @@ nilfs_filetype_table[NILFS_FT_MAX] = {
 
 #define S_SHIFT 12
 static unsigned char
-nilfs_type_by_mode[S_IFMT >> S_SHIFT] = {
+nilfs_type_by_mode[(S_IFMT >> S_SHIFT) + 1] = {
        [S_IFREG >> S_SHIFT]    = NILFS_FT_REG_FILE,
        [S_IFDIR >> S_SHIFT]    = NILFS_FT_DIR,
        [S_IFCHR >> S_SHIFT]    = NILFS_FT_CHRDEV,

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

* Re: [PATCH] nilfs: Fix OOB in nilfs_set_de_type
  2024-04-15 15:40 [PATCH] nilfs: Fix OOB in nilfs_set_de_type Jeongjun Park
@ 2024-04-15 16:44 ` Ryusuke Konishi
  0 siblings, 0 replies; 2+ messages in thread
From: Ryusuke Konishi @ 2024-04-15 16:44 UTC (permalink / raw)
  To: Jeongjun Park; +Cc: linux-nilfs, linux-kernel, syzbot+2e22057de05b9f3b30d8

On Tue, Apr 16, 2024 at 12:40 AM Jeongjun Park  wrote:
>
>
> 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
> }
>
>
>
> 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".
>
> 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.
>
>
>
> Reported-and-tested-by: syzbot+2e22057de05b9f3b30d8@syzkaller.appspotmail.com
> Fixes: 2ba466d74ed7 ("nilfs2: directory entry operations")
> Signed-off-by: Jeongjun Park <aha310510@gmail.com>
> ---
>  fs/nilfs2/dir.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/fs/nilfs2/dir.c b/fs/nilfs2/dir.c
> index bc846b904b68..aee40db7a036 100644
> --- a/fs/nilfs2/dir.c
> +++ b/fs/nilfs2/dir.c
> @@ -240,7 +240,7 @@ nilfs_filetype_table[NILFS_FT_MAX] = {
>
>  #define S_SHIFT 12
>  static unsigned char
> -nilfs_type_by_mode[S_IFMT >> S_SHIFT] = {
> +nilfs_type_by_mode[(S_IFMT >> S_SHIFT) + 1] = {
>         [S_IFREG >> S_SHIFT]    = NILFS_FT_REG_FILE,
>         [S_IFDIR >> S_SHIFT]    = NILFS_FT_DIR,
>         [S_IFCHR >> S_SHIFT]    = NILFS_FT_CHRDEV,

Thank you for your prompt response and posting the patch.

A little formatting and tag editing is required, but it's okay.
I'll handle this patch.

Thanks,
Ryusuke Konishi

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

end of thread, other threads:[~2024-04-15 16:45 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-04-15 15:40 [PATCH] nilfs: Fix OOB in nilfs_set_de_type Jeongjun Park
2024-04-15 16:44 ` Ryusuke Konishi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).