From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.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 36EE63264D6; Fri, 7 Aug 2026 15:01:31 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114892; cv=none; b=KO3Jm/8AN00pGqD453O0+wNpYstTy86IQrFN4164teS3h3uPe5AsBOQ3bWE4yFutDrDMJyHe5G3T5QDMn0QmYYhGe2WtOBDCx0V0likH7dhI0HKaUwnK81I1DSJb/iLV55aiYwlK8ypR8eCKTqUp1nsZsTaL32ek2QuqzUTlxnM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786114892; c=relaxed/simple; bh=zGDn1j/+q8S0M89pKPrd+M16aZywek/QH8SLBOifcyg=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iXr2s+iwTaWb3FGZpSeupLUOloxSQS7Qx2UMewjj3snNyoiNF1s8X13caSoZnzN3EmeV3Ns4tru/HFYjClVCYgd5hJcpwdoUZ02xKIBsPEdC4XnwIWz0NPViClndnRnUBtDYsSyqh/jNbLpXa6GHxuaQZase8RnAwVkbCIWKAF4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=BsAAiJMC; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="BsAAiJMC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 89DA01F00A3A; Fri, 7 Aug 2026 15:01:30 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786114891; bh=fsU4UgHK1Wylj/gVYa/vFTd/31U/bjftpgMdKN5nzbg=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=BsAAiJMCsANrurYNPMaYlTgQp9+p2j/j4Oa+E+EO023wTdr9XSdSONmU76SmNxEHL xkLKzKmsPUwavX7lhL8jZ6KjAc5XZsL+ulrSw3KBMPyghLslETJ5GIk0wWbSqxweYN D2EHaBnYpvzPDVSu0QLQKcScR8eUl/g/LynbbeBc= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Chenguang Zhao , Vadim Fedorenko , Zhu Yanjun , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.18 083/396] forcedeth: fix UAF of txrx_stats in nv_remove Date: Fri, 7 Aug 2026 16:34:03 +0200 Message-ID: <20260807143426.064868735@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260807143424.272339768@linuxfoundation.org> References: <20260807143424.272339768@linuxfoundation.org> User-Agent: quilt/0.69 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.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Chenguang Zhao [ Upstream commit 22666ba1420164753d7b0f5a841986b25ace5435 ] nv_remove() frees the per-CPU txrx_stats before unregister_netdev(). Until unregister completes, ndo_get_stats64, the NAPI/xmit data path, and nv_close()/drain may still access txrx_stats, leading to a use-after-free. Free the stats only after unregister_netdev(). Fixes: f4b633b911fd ("forcedeth: use per cpu to collect xmit/recv statistics") Signed-off-by: Chenguang Zhao Reviewed-by: Vadim Fedorenko Reviewed-by: Zhu Yanjun Link: https://patch.msgid.link/20260723092637.2135095-1-chenguang.zhao@linux.dev Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- drivers/net/ethernet/nvidia/forcedeth.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/drivers/net/ethernet/nvidia/forcedeth.c b/drivers/net/ethernet/nvidia/forcedeth.c index 19aa1f1538aa3..c09fb7694facb 100644 --- a/drivers/net/ethernet/nvidia/forcedeth.c +++ b/drivers/net/ethernet/nvidia/forcedeth.c @@ -6187,10 +6187,10 @@ static void nv_remove(struct pci_dev *pci_dev) struct net_device *dev = pci_get_drvdata(pci_dev); struct fe_priv *np = netdev_priv(dev); - free_percpu(np->txrx_stats); - unregister_netdev(dev); + free_percpu(np->txrx_stats); + nv_restore_mac_addr(pci_dev); /* restore any phy related changes */ -- 2.53.0