From: "Theodore Ts'o" <tytso@mit.edu>
To: Hillf Danton <hdanton@sina.com>
Cc: syzbot <syzbot+c5c9c223a721d7353490@syzkaller.appspotmail.com>,
linux-kernel@vger.kernel.org, syzkaller-bugs@googlegroups.com
Subject: Re: [syzbot] [ext4?] possible deadlock in ext4_truncate (2)
Date: Mon, 25 Aug 2025 09:37:43 -0400 [thread overview]
Message-ID: <20250825133743.GA1511874@mit.edu> (raw)
In-Reply-To: <20250825104155.5420-1-hdanton@sina.com>
On Mon, Aug 25, 2025 at 06:41:52PM +0800, Hillf Danton wrote:
> > syzbot found the following issue on:
> >
> > dashboard link: https://syzkaller.appspot.com/bug?extid=c5c9c223a721d7353490
>
> --- x/fs/ext4/inode.c
> +++ y/fs/ext4/inode.c
> @@ -4573,6 +4573,7 @@ int ext4_truncate(struct inode *inode)
> struct ext4_inode_info *ei = EXT4_I(inode);
> unsigned int credits;
> int err = 0, err2;
> + static int subclass = 0;
> handle_t *handle;
> struct address_space *mapping = inode->i_mapping;
>
> @@ -4636,7 +4637,7 @@ int ext4_truncate(struct inode *inode)
> ext4_fc_track_inode(handle, inode);
> ext4_check_map_extents_env(inode);
>
> - down_write(&EXT4_I(inode)->i_data_sem);
> + down_write_nested(&EXT4_I(inode)->i_data_sem, subclass++);
> ext4_discard_preallocations(inode);
>
> if (ext4_test_inode_flag(inode, EXT4_INODE_EXTENTS))
This isn't the right way to fix these sorts of Syzbot failures. First
of all, we already have subclasses defined. Secondly, using a
continuously incrementing subclasses will chew up a huge amount of
memory until lockdep gives a warning that the kernel exceeded a fixed
limit, which (a) disables the lockdep checking, so it's counter
productive, (b) will trigger a syzbot failure, so it doesn't even shut
up the syzbot noise.
The combination of maliciously corrupted/fuzzed file systems, and a
deadlock warning, is something that I just ignore. Your patch is an
attempt to do this programmtically, if it worked (and for better or
for worse, it doesn't). If there was a way I could tell syzbot ---
you're just wasting everyone's time, shut up with this combination,
but there isn't. So when I have time, I'll recategorize these reports
to priority low, which is a signal that it's been triaged, and it's
syzbot noise.
Cheers,
- Ted
next prev parent reply other threads:[~2025-08-25 13:38 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-08-25 8:51 [syzbot] [ext4?] possible deadlock in ext4_truncate (2) syzbot
2025-08-25 10:41 ` Hillf Danton
2025-08-25 13:11 ` syzbot
2025-08-25 13:37 ` Theodore Ts'o [this message]
2025-08-26 3:46 ` Hillf Danton
2025-08-26 1:43 ` Hillf Danton
2025-08-26 2:32 ` syzbot
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=20250825133743.GA1511874@mit.edu \
--to=tytso@mit.edu \
--cc=hdanton@sina.com \
--cc=linux-kernel@vger.kernel.org \
--cc=syzbot+c5c9c223a721d7353490@syzkaller.appspotmail.com \
--cc=syzkaller-bugs@googlegroups.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;
as well as URLs for NNTP newsgroup(s).