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 A43F1156F5E for ; Wed, 24 Apr 2024 21:49:39 +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=1713995379; cv=none; b=S6Aaane5CxEn/ofTwcT0WglWy98o4ARhHBlm+V+OfFJExMczURGHkR0BWwuFl+EdHLWV+wqFzz0LBMi5bZyhrzkMkm3JxH3FR9cY84sNprxMccsoonA4IyNG3j/hruxX4mfUJgt9Ipp1hPmrssF6KkFNWBl5iwh6RN7CjkH3xYM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1713995379; c=relaxed/simple; bh=VzQ5ZUBdMjHT0EjKDWIhhGkQP+dMPiqHZKhG0zo2QeM=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=ph7c8rbUQR0INDD4p3RESaM5kjuVPl+oXQNtUrnkWlaI1vwkoK0EGwj5zIagCHWBIlYumT9eCG8zosziwOHQCJ7amV/YRfkazUxkUMRRbBiIHdS1MKxCIg/m16leybxP4XY/hAO/0hB7mIEu1FWr/Mttg6A4ZuzRRUnjZEwGlCg= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Ao9vvnaS; 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="Ao9vvnaS" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1E344C113CD; Wed, 24 Apr 2024 21:49:39 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1713995379; bh=VzQ5ZUBdMjHT0EjKDWIhhGkQP+dMPiqHZKhG0zo2QeM=; h=From:To:Cc:Subject:Date:Reply-to:From; b=Ao9vvnaSMcDLXDX18zHF9IJMrc/Kw8WfT6FOFywtMevCKmOU5syyucNf5lPOHRXcb S5sXxV3/os7FVv6lRVCZcRvrjbk/kHAE5uezC+aKXMPOjUxn+ZlHIKLmWn0QOnN/1C bQL1MhESXrKUQUNQzdrcJ5dEB3nmorjvidn62Aiw= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2024-26925: netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path Date: Wed, 24 Apr 2024 14:49:21 -0700 Message-ID: <2024042421-CVE-2024-26925-7c19@gregkh> X-Mailer: git-send-email 2.44.0 Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Reply-to: , X-Developer-Signature: v=1; a=openpgp-sha256; l=3058; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=VzQ5ZUBdMjHT0EjKDWIhhGkQP+dMPiqHZKhG0zo2QeM=; b=owGbwMvMwCRo6H6F97bub03G02pJDGmadYmmn4P2zZ45U69GfWnkfLP5KwospPTr2tgV9Vavz lXTW97ZEcvCIMjEICumyPJlG8/R/RWHFL0MbU/DzGFlAhnCwMUpABN5F8kwm3WRq9x+FefQH6Er 9s9ku6N6QUHVm2HB8vKjx9rNeq62PZnQ+/rd5mX/nasuAAA= X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit Description =========== In the Linux kernel, the following vulnerability has been resolved: netfilter: nf_tables: release mutex after nft_gc_seq_end from abort path The commit mutex should not be released during the critical section between nft_gc_seq_begin() and nft_gc_seq_end(), otherwise, async GC worker could collect expired objects and get the released commit lock within the same GC sequence. nf_tables_module_autoload() temporarily releases the mutex to load module dependencies, then it goes back to replay the transaction again. Move it at the end of the abort phase after nft_gc_seq_end() is called. The Linux kernel CVE team has assigned CVE-2024-26925 to this issue. Affected and fixed versions =========================== Issue introduced in 5.4.262 with commit 4b6346dc1edf and fixed in 5.4.274 with commit 61ac7284346c Issue introduced in 5.10.198 with commit 23292bdfda5f and fixed in 5.10.215 with commit 2cee2ff7f8cc Issue introduced in 5.15.134 with commit b44a459c6561 and fixed in 5.15.155 with commit eb769ff4e281 Issue introduced in 6.1.56 with commit 5d319f7a8143 and fixed in 6.1.86 with commit 8d3a58af50e4 Issue introduced in 6.5 with commit 720344340fb9 and fixed in 6.6.26 with commit 8038ee3c3e5b Issue introduced in 6.5 with commit 720344340fb9 and fixed in 6.8.5 with commit a34ba4bdeec0 Issue introduced in 6.5 with commit 720344340fb9 and fixed in 6.9-rc3 with commit 0d459e2ffb54 Issue introduced in 6.4.13 with commit e07e68823116 Please see https://www.kernel.org for a full list of currently supported kernel versions by the kernel community. Unaffected versions might change over time as fixes are backported to older supported kernel versions. The official CVE entry at https://cve.org/CVERecord/?id=CVE-2024-26925 will be updated if fixes are backported, please check that for the most up to date information about this issue. Affected files ============== The file(s) affected by this issue are: net/netfilter/nf_tables_api.c Mitigation ========== The Linux kernel CVE team recommends that you update to the latest stable kernel version for this, and many other bugfixes. Individual changes are never tested alone, but rather are part of a larger kernel release. Cherry-picking individual commits is not recommended or supported by the Linux kernel community at all. If however, updating to the latest release is impossible, the individual changes to resolve this issue can be found at these commits: https://git.kernel.org/stable/c/61ac7284346c32f9a8c8ceac56102f7914060428 https://git.kernel.org/stable/c/2cee2ff7f8cce12a63a0a23ffe27f08d99541494 https://git.kernel.org/stable/c/eb769ff4e281f751adcaf4f4445cbf30817be139 https://git.kernel.org/stable/c/8d3a58af50e46167b6f1db47adadad03c0045dae https://git.kernel.org/stable/c/8038ee3c3e5b59bcd78467686db5270c68544e30 https://git.kernel.org/stable/c/a34ba4bdeec0c3b629160497594908dc820110f1 https://git.kernel.org/stable/c/0d459e2ffb541841714839e8228b845458ed3b27