public inbox for linux-kernel-mentees@lists.linux-foundation.org
 help / color / mirror / Atom feed
From: Joseph Qi <joseph.qi@linux.alibaba.com>
To: Heming Zhao <heming.zhao@suse.com>,
	Prithvi Tambewagh <activprithvi@gmail.com>,
	akpm <akpm@linux-foundation.org>
Cc: mark@fasheh.com, jlbec@evilplan.org, ocfs2-devel@lists.linux.dev,
	linux-kernel@vger.kernel.org,
	linux-kernel-mentees@lists.linux.dev, skhan@linuxfoundation.org,
	david.hunter.linux@gmail.com, khalid@kernel.org,
	syzbot+c818e5c4559444f88aa0@syzkaller.appspotmail.com,
	stable@vger.kernel.org
Subject: Re: [PATCH v4] ocfs2: Add validate function for slot map blocks
Date: Tue, 16 Dec 2025 14:55:39 +0800	[thread overview]
Message-ID: <61fdf05b-de83-4009-b70f-56b0bd5f7741@linux.alibaba.com> (raw)
In-Reply-To: <wcvwgkjd63d2taeghkojxtunk2p2gz7xtynyihgznosgpmye57@bcgd6mbyausn>



On 2025/12/16 10:50, Heming Zhao wrote:
> On Tue, Dec 16, 2025 at 12:15:57AM +0530, Prithvi Tambewagh wrote:
>> When the filesystem is being mounted, the kernel panics while the data
>> regarding slot map allocation to the local node, is being written to the
>> disk. This occurs because the value of slot map buffer head block
>> number, which should have been greater than or equal to
>> `OCFS2_SUPER_BLOCK_BLKNO` (evaluating to 2) is less than it, indicative
>> of disk metadata corruption. This triggers
>> BUG_ON(bh->b_blocknr < OCFS2_SUPER_BLOCK_BLKNO) in ocfs2_write_block(),
>> causing the kernel to panic.
>>
>> This is fixed by introducing function ocfs2_validate_slot_map_block() to
>> validate slot map blocks. It first checks if the buffer head passed to it
>> is up to date and valid, else it panics the kernel at that point itself.
>> Further, it contains an if condition block, which checks if `bh->b_blocknr`
>> is lesser than `OCFS2_SUPER_BLOCK_BLKNO`; if yes, then ocfs2_error is
>> called, which prints the error log, for debugging purposes, and the return
>> value of ocfs2_error() is returned. If the if condition is false, value 0
>> is returned by ocfs2_validate_slot_map_block().
>>
>> This function is used as validate function in calls to ocfs2_read_blocks()
>> in ocfs2_refresh_slot_info() and ocfs2_map_slot_buffers().
>>
>> Reported-by: syzbot+c818e5c4559444f88aa0@syzkaller.appspotmail.com
>> Closes: https://syzkaller.appspot.com/bug?extid=c818e5c4559444f88aa0
>> Tested-by: syzbot+c818e5c4559444f88aa0@syzkaller.appspotmail.com
>> Cc: stable@vger.kernel.org
>> Signed-off-by: Prithvi Tambewagh <activprithvi@gmail.com>
> 
> Reviewed-by: Heming Zhao <heming.zhao@suse.com>

Reviewed-by: Joseph Qi <joseph.qi@linux.alibaba.com>
>> ---
>> v3->v4:
>>  - Remove if condition in ocfs2_validate_slot_map_block() which checks if 
>>    `rc` is zero
>>  - Update commit log message 
>>
>> v3 link: https://lore.kernel.org/ocfs2-devel/tagu2npibmto5bgonhorg5krbvqho4zxsv5pulvgbtp53aobas@6qk4twoysbnz/T/#m6f357a93c9426c3d2f0c2d18d71f4c54601089ec
>>
>> v2->v3:
>>  - Create new function ocfs2_validate_slot_map_block() to validate block 
>>    number of slot map blocks, to be greater then or equal to 
>>    OCFS2_SUPER_BLOCK_BLKNO
>>  - Use ocfs2_validate_slot_map_block() in calls to ocfs2_read_blocks() in
>>    ocfs2_refresh_slot_info() and ocfs2_map_slot_buffers()
>>  - In addition to using previously formulated if block in 
>>    ocfs2_validate_slot_map_block(), also check if the buffer head passed 
>>    in this function is up to date; if not, then kernel panics at that point
>>  - Update title of patch to 'ocfs2: Add validate function for slot map blocks'
>>
>> v2 link: https://lore.kernel.org/ocfs2-devel/nwkfpkm2wlajswykywnpt4sc6gdkesakw2sw7etuw2u2w23hul@6oby33bscwdw/T/#m39bc7dbb208e09a78e0913905c6dfdfd666f3a05
>>
>> v1->v2:
>>  - Remove usage of le16_to_cpu() from ocfs2_error()
>>  - Cast bh->b_blocknr to unsigned long long
>>  - Remove type casting for OCFS2_SUPER_BLOCK_BLKNO
>>  - Fix Sparse warnings reported in v1 by kernel test robot
>>  - Update title from 'ocfs2: Fix kernel BUG in ocfs2_write_block' to
>>    'ocfs2: fix kernel BUG in ocfs2_write_block'
>>
>> v1 link: https://lore.kernel.org/all/20251206154819.175479-1-activprithvi@gmail.com/T/#mba4a0b092d8c5ba5b390b5d6a5c3ec7bc6caa6ae
>>
>>  fs/ocfs2/slot_map.c | 27 +++++++++++++++++++++++++--
>>  1 file changed, 25 insertions(+), 2 deletions(-)
>>
>> diff --git a/fs/ocfs2/slot_map.c b/fs/ocfs2/slot_map.c
>> index e544c704b583..ea4a68abc25b 100644
>> --- a/fs/ocfs2/slot_map.c
>> +++ b/fs/ocfs2/slot_map.c
>> @@ -44,6 +44,9 @@ struct ocfs2_slot_info {
>>  static int __ocfs2_node_num_to_slot(struct ocfs2_slot_info *si,
>>  				    unsigned int node_num);
>>  
>> +static int ocfs2_validate_slot_map_block(struct super_block *sb,
>> +					  struct buffer_head *bh);
>> +
>>  static void ocfs2_invalidate_slot(struct ocfs2_slot_info *si,
>>  				  int slot_num)
>>  {
>> @@ -132,7 +135,8 @@ int ocfs2_refresh_slot_info(struct ocfs2_super *osb)
>>  	 * this is not true, the read of -1 (UINT64_MAX) will fail.
>>  	 */
>>  	ret = ocfs2_read_blocks(INODE_CACHE(si->si_inode), -1, si->si_blocks,
>> -				si->si_bh, OCFS2_BH_IGNORE_CACHE, NULL);
>> +				si->si_bh, OCFS2_BH_IGNORE_CACHE,
>> +				ocfs2_validate_slot_map_block);
>>  	if (ret == 0) {
>>  		spin_lock(&osb->osb_lock);
>>  		ocfs2_update_slot_info(si);
>> @@ -332,6 +336,24 @@ int ocfs2_clear_slot(struct ocfs2_super *osb, int slot_num)
>>  	return ocfs2_update_disk_slot(osb, osb->slot_info, slot_num);
>>  }
>>  
>> +static int ocfs2_validate_slot_map_block(struct super_block *sb,
>> +					  struct buffer_head *bh)
>> +{
>> +	int rc;
>> +
>> +	BUG_ON(!buffer_uptodate(bh));
>> +
>> +	if (bh->b_blocknr < OCFS2_SUPER_BLOCK_BLKNO) {
>> +		rc = ocfs2_error(sb,
>> +				 "Invalid Slot Map Buffer Head "
>> +				 "Block Number : %llu, Should be >= %d",
>> +				 (unsigned long long)bh->b_blocknr,
>> +				 OCFS2_SUPER_BLOCK_BLKNO);
>> +		return rc;
>> +	}
>> +	return 0;
>> +}
>> +
>>  static int ocfs2_map_slot_buffers(struct ocfs2_super *osb,
>>  				  struct ocfs2_slot_info *si)
>>  {
>> @@ -383,7 +405,8 @@ static int ocfs2_map_slot_buffers(struct ocfs2_super *osb,
>>  
>>  		bh = NULL;  /* Acquire a fresh bh */
>>  		status = ocfs2_read_blocks(INODE_CACHE(si->si_inode), blkno,
>> -					   1, &bh, OCFS2_BH_IGNORE_CACHE, NULL);
>> +					   1, &bh, OCFS2_BH_IGNORE_CACHE,
>> +					   ocfs2_validate_slot_map_block);
>>  		if (status < 0) {
>>  			mlog_errno(status);
>>  			goto bail;
>>
>> base-commit: 24172e0d79900908cf5ebf366600616d29c9b417
>> -- 
>> 2.43.0
>>


      reply	other threads:[~2025-12-16  6:55 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-12-15 18:45 [PATCH v4] ocfs2: Add validate function for slot map blocks Prithvi Tambewagh
2025-12-16  2:50 ` Heming Zhao
2025-12-16  6:55   ` Joseph Qi [this message]

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=61fdf05b-de83-4009-b70f-56b0bd5f7741@linux.alibaba.com \
    --to=joseph.qi@linux.alibaba.com \
    --cc=activprithvi@gmail.com \
    --cc=akpm@linux-foundation.org \
    --cc=david.hunter.linux@gmail.com \
    --cc=heming.zhao@suse.com \
    --cc=jlbec@evilplan.org \
    --cc=khalid@kernel.org \
    --cc=linux-kernel-mentees@lists.linux.dev \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mark@fasheh.com \
    --cc=ocfs2-devel@lists.linux.dev \
    --cc=skhan@linuxfoundation.org \
    --cc=stable@vger.kernel.org \
    --cc=syzbot+c818e5c4559444f88aa0@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