From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 385F96BB29; Thu, 11 Apr 2024 10:46:00 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712832360; cv=none; b=ZjTzwIKbEwzVe08pXyFlZ9l6WSBVZXWL4DkiDXldPTdJPwnoxq+6z0Rdj6MDbSjynUsKVMgHxY6D4BuPpwQJevKI62fTORB0Jqo2Dp07MmWIy+QS5K6iyFNsUt4ClxHBHvO7+bpX90QFgZKcnDGpCbd+l39UBtbCLYS51zQWsBw= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1712832360; c=relaxed/simple; bh=2s77ssU5wd4DgrLoQHok/DO45H7Ad0S4T32akfbzEdE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uDVm56OQgJaSWUOt0McOBaAqD2d5m2fQY6bsptL0ZQNd7uelSFi4T1fAN3n5MXsA5m/yX/8Yhb0FuSvwOqn8Xji1DjJUUsWCJocWrP9rwBRA3fteH89TiDVkk42Zpib6XVyh9irwkLAZD0tbH7HxQmNAD4QzNPaADDlR/4VtuwM= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=DRvXToFE; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="DRvXToFE" Received: by smtp.kernel.org (Postfix) with ESMTPSA id B2714C433F1; Thu, 11 Apr 2024 10:45:59 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1712832360; bh=2s77ssU5wd4DgrLoQHok/DO45H7Ad0S4T32akfbzEdE=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=DRvXToFEND+78bt9QTs4GdRv32iLWSvEoT2cOYTv/c7JUTKO5Q9rZqmqD23WZtQ6U 6jQ0X3t6UUhDt8L5UILWV4CAaYNSZRd08Zp8OrtsqIELG/ei0VrV/CEF0A2Dga2nQ9 nHKB5jIBArjSTPlsGlMZ5AxwlN3NQUSbjEnhL1B0= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Josef Bacik , Anand Jain , David Sterba , Sasha Levin Subject: [PATCH 6.1 22/83] btrfs: handle chunk tree lookup error in btrfs_relocate_sys_chunks() Date: Thu, 11 Apr 2024 11:56:54 +0200 Message-ID: <20240411095413.347064668@linuxfoundation.org> X-Mailer: git-send-email 2.44.0 In-Reply-To: <20240411095412.671665933@linuxfoundation.org> References: <20240411095412.671665933@linuxfoundation.org> User-Agent: quilt/0.67 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: patches@lists.linux.dev List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: David Sterba [ Upstream commit 7411055db5ce64f836aaffd422396af0075fdc99 ] The unhandled case in btrfs_relocate_sys_chunks() loop is a corruption, as it could be caused only by two impossible conditions: - at first the search key is set up to look for a chunk tree item, with offset -1, this is an inexact search and the key->offset will contain the correct offset upon a successful search, a valid chunk tree item cannot have an offset -1 - after first successful search, the found_key corresponds to a chunk item, the offset is decremented by 1 before the next loop, it's impossible to find a chunk item there due to alignment and size constraints Reviewed-by: Josef Bacik Reviewed-by: Anand Jain Signed-off-by: David Sterba Signed-off-by: Sasha Levin --- fs/btrfs/volumes.c | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/fs/btrfs/volumes.c b/fs/btrfs/volumes.c index 03cfb425ea4ea..ab5d410d560e7 100644 --- a/fs/btrfs/volumes.c +++ b/fs/btrfs/volumes.c @@ -3381,7 +3381,17 @@ static int btrfs_relocate_sys_chunks(struct btrfs_fs_info *fs_info) mutex_unlock(&fs_info->reclaim_bgs_lock); goto error; } - BUG_ON(ret == 0); /* Corruption */ + if (ret == 0) { + /* + * On the first search we would find chunk tree with + * offset -1, which is not possible. On subsequent + * loops this would find an existing item on an invalid + * offset (one less than the previous one, wrong + * alignment and size). + */ + ret = -EUCLEAN; + goto error; + } ret = btrfs_previous_item(chunk_root, path, key.objectid, key.type); -- 2.43.0