From patchwork Tue Jan 28 22:15:20 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Vasiliy Kovalev X-Patchwork-Id: 13953238 Received: from air.basealt.ru (air.basealt.ru [193.43.8.18]) (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 8DF4A192D76; Tue, 28 Jan 2025 22:15:47 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=193.43.8.18 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738102550; cv=none; b=L+atMqGf0gXrYzPZ7MjePjHUipoPdDRoKaD3/E8or0GjZT8oZz5TnrmrXygk5qbswc72Z13cAeRpIPfBK01gHtl1goAaD26mcl/FtVeKHByiBU1V6DNqIAMLiaIIcGVybdSMzaW3WqrWs4i9PbbjjC8BLy3Lh+ALIGIwxTdx2n0= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1738102550; c=relaxed/simple; bh=QZtstUTeu3/QKVPQw5YJYEj+nE65D4XGIfJBf1mcaQU=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=aoIF82H8CzmwzhgrgedUedCifVXSBLn8EWwTQRYuOhbcXOesybvUPtgx4AffyqrZQ5Sb0M9sEdNwxR++Xy5IQH3NLvzLZy9q/cnpeQPYDlvKXoIoyQgfTYXpTW9jLyrcqIVsfZO1pORWNI9gzVurQzge93LoytEzpwT6c/EPNgI= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org; spf=pass smtp.mailfrom=altlinux.org; arc=none smtp.client-ip=193.43.8.18 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=altlinux.org Received: from altlinux.ipa.basealt.ru (unknown [178.76.204.78]) (Authenticated sender: kovalevvv) by air.basealt.ru (Postfix) with ESMTPSA id 32AF923339; Wed, 29 Jan 2025 01:15:37 +0300 (MSK) From: Vasiliy Kovalev To: stable@vger.kernel.org Cc: netdev@vger.kernel.org, Eric Dumazet , Yajun Deng , "David S . Miller" , Hazem Mohamed Abuelfotoh , lvc-project@linuxtesting.org, kovalev@altlinux.org Subject: [PATCH v3 5.10 0/2] net: Backport to fix CVE-2024-56658 Date: Wed, 29 Jan 2025 01:15:20 +0300 Message-Id: <20250128221522.21706-1-kovalev@altlinux.org> X-Mailer: git-send-email 2.33.8 Precedence: bulk X-Mailing-List: netdev@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Link: https://www.cve.org/CVERecord/?id=CVE-2024-56658 5.15: https://lore.kernel.org/all/20250115091642.335047-1-kovalev@altlinux.org/ --- v1: https://lore.kernel.org/all/20250115091913.335173-1-kovalev@altlinux.org/ v2: https://lore.kernel.org/all/20250121192730.155559-1-kovalev@altlinux.org/ v3: (Suggested-by [1]: Hazem Mohamed Abuelfotoh ) Added a backport of commit 41467d2ff4df ("net: net_namespace: Optimize the code") as a prerequisite for 0f6ede9fbc74 ("net: defer final 'struct net' free in netns dismantle"). [1] https://lore.kernel.org/all/20250127134248.25731-1-abuehaze@amazon.com/ [PATCH v3 5.10 1/2] net: net_namespace: Optimize the code [PATCH v3 5.10 2/2] net: defer final 'struct net' free in netns dismantle