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 E3B11378D72; Wed, 21 Jan 2026 18:17:50 +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=1769019471; cv=none; b=j4Qbq9ipKeLabI4HTPb0gIovJbtd459UMcRyVULj5iqgLlKvccLPLAQ+ZFjXoiC/ia8HiPMduUL61kqEtHngghf8dmKsgR63cjF5VbEaOjitoftr6oozO33uwrZgK7VabsDoP35F+cbvNobujlAfzx36JIwGoJaPxNzVO0wwN78= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769019471; c=relaxed/simple; bh=ND/fZtDTW+y60to4TnjgX4sLO3pVxdMbOiYaI4qCMC8=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=TQHShSChbxXcpO3QeLbEk3U109WwwUhRwynhFUzj3CgzBRIlTVHik8ksWixXuscUFtjN/t6vYrTE4oJtoj4BfX9iNYyw8q0S9JUjfMfgYJy0/URDyM20RJbC2zg14qWvRKu+Zp1+eCK/aExBX+cQOIhn/Uaco30I/xZyW+Yz1pg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=VikBM/JJ; 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="VikBM/JJ" Received: by smtp.kernel.org (Postfix) with ESMTPSA id F23D0C4CEF1; Wed, 21 Jan 2026 18:17:49 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1769019470; bh=ND/fZtDTW+y60to4TnjgX4sLO3pVxdMbOiYaI4qCMC8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VikBM/JJc0v9q2MGwqi/jjfRMmWaHwtvkKm8zSoSZmysk7zX4NBeae+Xq9gaKYL9V ACx+0gcV33CExm2ifGtguzWVO8GNK5tcdHjzHNSca6d6OZxgd8YBU3+ttZu0mqISW6 NsDpbUnEGF3gSatwDiGVcL/fquc3E3zxh5+BTeN4= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Filipe Manana , Qu Wenruo , David Sterba , Sasha Levin Subject: [PATCH 6.12 016/139] btrfs: send: check for inline extents in range_is_hole_in_parent() Date: Wed, 21 Jan 2026 19:14:24 +0100 Message-ID: <20260121181412.042767641@linuxfoundation.org> X-Mailer: git-send-email 2.52.0 In-Reply-To: <20260121181411.452263583@linuxfoundation.org> References: <20260121181411.452263583@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 6.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: Qu Wenruo [ Upstream commit 08b096c1372cd69627f4f559fb47c9fb67a52b39 ] Before accessing the disk_bytenr field of a file extent item we need to check if we are dealing with an inline extent. This is because for inline extents their data starts at the offset of the disk_bytenr field. So accessing the disk_bytenr means we are accessing inline data or in case the inline data is less than 8 bytes we can actually cause an invalid memory access if this inline extent item is the first item in the leaf or access metadata from other items. Fixes: 82bfb2e7b645 ("Btrfs: incremental send, fix unnecessary hole writes for sparse files") Reviewed-by: Filipe Manana Signed-off-by: Qu Wenruo Reviewed-by: David Sterba Signed-off-by: David Sterba Signed-off-by: Sasha Levin --- fs/btrfs/send.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/fs/btrfs/send.c b/fs/btrfs/send.c index 41b7cbd070254..2fa577d4a232d 100644 --- a/fs/btrfs/send.c +++ b/fs/btrfs/send.c @@ -6550,6 +6550,8 @@ static int range_is_hole_in_parent(struct send_ctx *sctx, extent_end = btrfs_file_extent_end(path); if (extent_end <= start) goto next; + if (btrfs_file_extent_type(leaf, fi) == BTRFS_FILE_EXTENT_INLINE) + return 0; if (btrfs_file_extent_disk_bytenr(leaf, fi) == 0) { search_start = extent_end; goto next; -- 2.51.0