lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <ea468051-bc9a-4b9e-adcf-ff108e145f6f@wdc.com>
Date: Fri, 4 Oct 2024 09:38:55 +0000
From: Johannes Thumshirn <Johannes.Thumshirn@....com>
To: Qu Wenruo <quwenruo.btrfs@....com>, Johannes Thumshirn <jth@...nel.org>,
	Chris Mason <clm@...com>, Josef Bacik <josef@...icpanda.com>, David Sterba
	<dsterba@...e.com>, "open list:BTRFS FILE SYSTEM"
	<linux-btrfs@...r.kernel.org>, open list <linux-kernel@...r.kernel.org>
CC: Filipe Manana <fdmanana@...e.com>
Subject: Re: [PATCH] btrfs: don't BUG_ON() NOCOW ordered-extents with checksum
 list

On 04.10.24 11:31, Qu Wenruo wrote:
> 
> 
> 在 2024/10/4 18:53, Johannes Thumshirn 写道:
>> From: Johannes Thumshirn <johannes.thumshirn@....com>
>>
>> Curretnly we BUG_ON() in btrfs_finish_one_ordered() if we finishing an
>> ordered-extent that is flagged as NOCOW, but it's checsum list is non-empty.
>>
>> This is clearly a logic error which we can recover from by aborting the
>> transaction.
>>
>> For developer builds which enable CONFIG_BTRFS_ASSERT, also ASSERT() that the
>> list is empty.
>>
>> Suggested-by: Filipe Manana <fdmanana@...e.com>
>> Signed-off-by: Johannes Thumshirn <johannes.thumshirn@....com>
>> ---
>>    fs/btrfs/inode.c | 5 ++++-
>>    1 file changed, 4 insertions(+), 1 deletion(-)
>>
>> diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
>> index 103ec917ca9d..19ba101dc09c 100644
>> --- a/fs/btrfs/inode.c
>> +++ b/fs/btrfs/inode.c
>> @@ -3088,7 +3088,10 @@ int btrfs_finish_one_ordered(struct btrfs_ordered_extent *ordered_extent)
>>
>>    	if (test_bit(BTRFS_ORDERED_NOCOW, &ordered_extent->flags)) {
>>    		/* Logic error */
>> -		BUG_ON(!list_empty(&ordered_extent->list));
>> +		if (list_empty(&ordered_extent->list)) {
>> +			ASSERT(list_empty(&ordered_extent->list));
> 
> Will the ASSERT() really get triggered? We just checked the same
> list_empty() one line before.
> 
> I guess you mean ASSERT(!list_empty()) instead?
> 
> Otherwise changing it to ASSERT() and btrfs_abort_transaction() looks
> good to me.


Of cause you're right! Seems like I need more coffee.

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ