All of lore.kernel.org
 help / color / mirror / Atom feed
From: Vladislav Efanov <VEfanov@ispras.ru>
To: Jan Kara <jack@suse.com>
Cc: Vladislav Efanov <VEfanov@ispras.ru>,
	linux-kernel@vger.kernel.org, lvc-project@linuxtesting.org
Subject: [PATCH] udf: Reserve bits for Bitmap Descriptor buffers
Date: Fri, 20 Jan 2023 12:08:58 +0300	[thread overview]
Message-ID: <20230120090858.1591519-1-VEfanov@ispras.ru> (raw)

Bits, which are related to Bitmap Descriptor logical blocks,
are not reset when buffer headers are allocated for them. As the
result, these logical blocks can be treated as free and
be used for other blocks.This can cause usage of one buffer header
for several types of data. UDF issues WARNING in this situation:

WARNING: CPU: 0 PID: 2703 at fs/udf/inode.c:2014
  __udf_add_aext+0x685/0x7d0 fs/udf/inode.c:2014

RIP: 0010:__udf_add_aext+0x685/0x7d0 fs/udf/inode.c:2014
Call Trace:
 udf_setup_indirect_aext+0x573/0x880 fs/udf/inode.c:1980
 udf_add_aext+0x208/0x2e0 fs/udf/inode.c:2067
 udf_insert_aext fs/udf/inode.c:2233 [inline]
 udf_update_extents fs/udf/inode.c:1181 [inline]
 inode_getblk+0x1981/0x3b70 fs/udf/inode.c:885

Found by Linux Verification Center (linuxtesting.org) with syzkaller.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Signed-off-by: Vladislav Efanov <VEfanov@ispras.ru>
---
 fs/udf/balloc.c | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/fs/udf/balloc.c b/fs/udf/balloc.c
index 8e597db4d971..52dab5b63715 100644
--- a/fs/udf/balloc.c
+++ b/fs/udf/balloc.c
@@ -37,6 +37,7 @@ static int read_block_bitmap(struct super_block *sb,
 {
 	struct buffer_head *bh = NULL;
 	int retval = 0;
+	int i;
 	struct kernel_lb_addr loc;
 
 	loc.logicalBlockNum = bitmap->s_extPosition;
@@ -47,6 +48,12 @@ static int read_block_bitmap(struct super_block *sb,
 		retval = -EIO;
 
 	bitmap->s_block_bitmap[bitmap_nr] = bh;
+	/* Reserve bits for Space Bitmap buffer headers. */
+	if (bh && !bitmap_nr)
+		for (i = 0; i < bitmap->s_nr_groups; i++)
+			udf_clear_bit(bitmap->s_extPosition + i +
+				      (sizeof(struct spaceBitmapDesc) << 3),
+				      bh->b_data);
 	return retval;
 }
 
-- 
2.34.1


             reply	other threads:[~2023-01-20  9:16 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-20  9:08 Vladislav Efanov [this message]
2023-01-24  8:43 ` [PATCH] udf: Reserve bits for Bitmap Descriptor buffers Jan Kara
2023-02-02 14:04   ` [PATCH v2] udf: Check consistency of Space Bitmap Descriptor Vladislav Efanov
2023-02-07 10:58     ` Jan Kara
2023-01-31  1:40 ` [PATCH] udf: Reserve bits for Bitmap Descriptor buffers kernel test robot

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=20230120090858.1591519-1-VEfanov@ispras.ru \
    --to=vefanov@ispras.ru \
    --cc=jack@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lvc-project@linuxtesting.org \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.