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 BF80B3F54A7 for ; Sat, 15 Aug 2026 12:33:01 +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=1786797182; cv=none; b=SJ6EL8TMihRR9HgfPNX9kNDCUNxnipPJiNoP7P85+rc3fnyLsb3dIe2k2xYnHHSSMem8jXAPJ9da+K826TqxS6FX7jl63mfk3BZ9xuwl5u4gcgvKEMQosJIRRWf0m2PERTCBsUxxoQfThHbS7lQ2wSClTXrMRWZJdOY7fVuTSTM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786797182; c=relaxed/simple; bh=8grjGLoEmzNzDkKCrr4zCy6jOMQi373X2aYB6OvVWyk=; h=From:To:Cc:Subject:Date:Message-ID:MIME-Version; b=RxSodnDi8p7vbtlhmV7UgNLObVXP1sFOF+ZW6srzWBwF2Div/heJrO5UTlQD9+N460JTjtz+vw3to1zjZPEAHDTOy+ximFOG1LRW1DQZVdVDItLajk+1k2ighOKxpnp3CoGJoWsKXrZd2m/qf+3jYXrS+zZfEmxXVfkrSFeaVHQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=H+Nit4pC; 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="H+Nit4pC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1EB3F1F000E9; Sat, 15 Aug 2026 12:33:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786797181; bh=X8CQTRCjXuyby0eZf7YQnlC0jc2uNINMHcrehlxrvpE=; h=From:To:Cc:Subject:Date:Reply-To; b=H+Nit4pCxy0exBrQ479sLKqr5ToIbEDnj+/h35sucwVmsrpY+bnkumXqXu5cVR5IP fRUOUVInzqA6eFAhdoeSCF7XbVd1KY5Mxuu2sTnlV1nPw+oKUwcbGNnvzgTfJtnA9G h4ddjcPvA7AoiPdmYCdbdX+8WTJAQ4MjF2sXMvzs= From: Greg Kroah-Hartman To: linux-cve-announce@vger.kernel.org Cc: Greg Kroah-Hartman Subject: CVE-2026-74559: xsk: drain continuation descs after overflow in xsk_build_skb() Date: Sat, 15 Aug 2026 21:27:20 +0900 Message-ID: <2026081552-CVE-2026-74559-0b2d@gregkh> X-Mailer: git-send-email 2.55.0 Reply-To: , Precedence: bulk X-Mailing-List: linux-cve-announce@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 X-Developer-Signature: v=1; a=openpgp-sha256; l=2428; i=gregkh@linuxfoundation.org; h=from:subject:message-id; bh=wyEpxkXRuk2y2doo0WnScDaZAzcAWgT151A6a8pz89s=; b=owGbwMvMwCRo6H6F97bub03G02pJDFkNURcu33g1022WUEXh6Slf88NTyxZ7nnmlIpciViRiK dJb8mt1RywLgyATg6yYIsuXbTxH91ccUvQytD0NM4eVCWQIAxenAExkXibD/ERRxW07Uoteyk1w k4iR9BM3T/hnxbBgj+nnpTNqbp/eqVsTJ7Rvedp0xms9AA== X-Developer-Key: i=gregkh@linuxfoundation.org; a=openpgp; fpr=F4B60CC5BF78C2214A313DCB3147D40DDB2DFB29 Content-Transfer-Encoding: 8bit From: Greg Kroah-Hartman Description =========== In the Linux kernel, the following vulnerability has been resolved: xsk: drain continuation descs after overflow in xsk_build_skb() Fix generic xmit path multi-buffer logic when packets are either too big (count of descriptors exceed MAX_SKB_FRAGS) or an invalid descriptor is included in fragmented packet. Introduce xdp_sock::drain_cont and act upon this flag - when it is set, keep on consuming descriptors from AF_XDP Tx ring and put them directly onto Cq. Previously these descriptors were silently lost and could never be reached again. The Linux kernel CVE team has assigned CVE-2026-74559 to this issue. Affected and fixed versions =========================== Issue introduced in 6.6 with commit cf24f5a5feeaae34c1a34d1e04f8ac697290427a and fixed in 6.18.44 with commit ceb00cb87a22c42d20c39336213db2b843ca9e34 Issue introduced in 6.6 with commit cf24f5a5feeaae34c1a34d1e04f8ac697290427a and fixed in 7.1.8 with commit 5e94d74e4f3baebaa083288f33b4be7ce0a34982 Issue introduced in 6.6 with commit cf24f5a5feeaae34c1a34d1e04f8ac697290427a and fixed in 7.2-rc6 with commit bd44a6dcd4248883de90f5dad53ae80066e27096 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-2026-74559 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: include/net/xdp_sock.h net/xdp/xsk.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/ceb00cb87a22c42d20c39336213db2b843ca9e34 https://git.kernel.org/stable/c/5e94d74e4f3baebaa083288f33b4be7ce0a34982 https://git.kernel.org/stable/c/bd44a6dcd4248883de90f5dad53ae80066e27096