public inbox for linux-fsdevel@vger.kernel.org
 help / color / mirror / Atom feed
From: Qasim Ijaz <qasdev00@gmail.com>
To: jack@suse.cz
Cc: linux-fsdevel@vger.kernel.org, linux-kernel@vger.kernel.org,
	syzbot <syzbot+812641c6c3d7586a1613@syzkaller.appspotmail.com>
Subject: [PATCH] isofs: fix KMSAN uninit-value bug in do_isofs_readdir()
Date: Tue, 11 Feb 2025 19:59:00 +0000	[thread overview]
Message-ID: <20250211195900.42406-1-qasdev00@gmail.com> (raw)

In do_isofs_readdir() when assigning the variable 
"struct iso_directory_record *de" the b_data field of the buffer_head 
is accessed and an offset is added to it, the size of b_data is 2048 
and the offset size is 2047, meaning 
"de = (struct iso_directory_record *) (bh->b_data + offset);" 
yields the final byte of the 2048 sized b_data block.

The first byte of the directory record (de_len) is then read and 
found to be 31, meaning the directory record size is 31 bytes long. 
The directory record is defined by the structure:

	struct iso_directory_record {
		__u8 length;                     // 1 byte 
		__u8 ext_attr_length;            // 1 byte 
		__u8 extent[8];                  // 8 bytes 
		__u8 size[8];                    // 8 bytes 
		__u8 date[7];                    // 7 bytes 
		__u8 flags;                      // 1 byte 
		__u8 file_unit_size;             // 1 byte 
		__u8 interleave;                 // 1 byte 
		__u8 volume_sequence_number[4];  // 4 bytes
		__u8 name_len;                   // 1 byte
		char name[];                     // variable size
	} __attribute__((packed));

The fixed portion of this structure occupies 33 bytes. Therefore, a 
valid directory record must be at least 33 bytes long 
(even without considering the variable-length name field). 
Since de_len is only 31, it is insufficient to contain
the complete fixed header. 

The code later hits the following sanity check that 
compares de_len against the sum of de->name_len and 
sizeof(struct iso_directory_record):

	if (de_len < de->name_len[0] + sizeof(struct iso_directory_record)) {
		...
	}

Since the fixed portion of the structure is 
33 bytes (up to and including name_len member), 
a valid record should have de_len of at least 33 bytes; 
here, however, de_len is too short, and the field de->name_len 
(located at offset 32) is accessed even though it lies beyond 
the available 31 bytes. 

This access on the corrupted isofs data triggers a KASAN uninitialized 
memory warning. The fix would be to first verify that de_len is at least 
sizeof(struct iso_directory_record) before accessing any 
fields like de->name_len.

Reported-by: syzbot <syzbot+812641c6c3d7586a1613@syzkaller.appspotmail.com>
Tested-by: syzbot <syzbot+812641c6c3d7586a1613@syzkaller.appspotmail.com>
Closes: https://syzkaller.appspot.com/bug?extid=812641c6c3d7586a1613
Fixes: 2deb1acc653c ("isofs: fix access to unallocated memory when reading corrupted filesystem")
Signed-off-by: Qasim Ijaz <qasdev00@gmail.com>
---
 fs/isofs/dir.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/fs/isofs/dir.c b/fs/isofs/dir.c
index eb2f8273e6f1..366ac8b95330 100644
--- a/fs/isofs/dir.c
+++ b/fs/isofs/dir.c
@@ -147,7 +147,8 @@ static int do_isofs_readdir(struct inode *inode, struct file *file,
 			de = tmpde;
 		}
 		/* Basic sanity check, whether name doesn't exceed dir entry */
-		if (de_len < de->name_len[0] +
+		if (de_len < sizeof(struct iso_directory_record) ||
+		    de_len < de->name_len[0] +
 					sizeof(struct iso_directory_record)) {
 			printk(KERN_NOTICE "iso9660: Corrupted directory entry"
 			       " in block %lu of inode %lu\n", block,
-- 
2.39.5


             reply	other threads:[~2025-02-11 20:07 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-11 19:59 Qasim Ijaz [this message]
2025-02-12 13:26 ` [PATCH] isofs: fix KMSAN uninit-value bug in do_isofs_readdir() Jan Kara

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250211195900.42406-1-qasdev00@gmail.com \
    --to=qasdev00@gmail.com \
    --cc=jack@suse.cz \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=syzbot+812641c6c3d7586a1613@syzkaller.appspotmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox