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 CA2F83B2D1D; Tue, 21 Jul 2026 22:16:11 +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=1784672172; cv=none; b=W5tpyBynk2HVvex1qhViAiBk5alfeL3hXHRzqIavzuTcMHUA9cwN2REl3EowlDi40Ew2ba72LMJQLgcNwqDeNkZrnX0sHj9Y8XEQjWou+USZb8hNaVPmOs89yWjnkaKS2pR1z4hMgGTejTpa2ySM30/wn5Gr0fEQXaRfBWLIqGM= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784672172; c=relaxed/simple; bh=YQtxBsC+lefuQ55IhthP3YP8SEZVk3Tr/e1roMq4TAE=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=RyhGOYypw96L4SqubE+3TGSW3JeU6RvAW+zW4+phxzXsM1c4C1HT7Z+EIG8XLzvLiFdnPBMKY6pwB6Mmi8LKg9P/nY98XuPjUSjkxkKImxUxw7EBBCmFhqHrYeKHVtugZjywbNDwHTH6uoteTRFfvUERLzNU6Nh+ehyT1JAJrtU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=xDlL2b9y; 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="xDlL2b9y" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DF85D1F000E9; Tue, 21 Jul 2026 22:16:10 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784672171; bh=7lMBahbNNQsx6YyqbnJDOS8ATdnSly3i6OzhmeX8DG4=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=xDlL2b9yS7s8yhFseMwJBKthSleJcctHzht35aYZ16a4EOhBBd0lgPGF1FS3YbrVr 60C/7zsMF8PnWZbcfuFcGpMynlM0c6zKajXP9LQPLFn4ONL4NMMakv06fNnmnoqdRM qeZtA+gTL2pmIRyi6vq4vZZUV/HST8Zr7S3UKsXk= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Shigeru Yoshida , Jamie Bainbridge , Paolo Abeni , Sasha Levin Subject: [PATCH 5.15 523/843] qede: fix off-by-one in BD ring consumption on build_skb failure Date: Tue, 21 Jul 2026 17:22:38 +0200 Message-ID: <20260721152417.797443902@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152405.946368001@linuxfoundation.org> References: <20260721152405.946368001@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 5.15-stable review patch. If anyone has any objections, please let me know. ------------------ From: Shigeru Yoshida [ Upstream commit a0a558ca7e75b49e71f8c545c30e8c005e6e4e2f ] qede_rx_build_skb() and qede_tpa_rx_build_skb() do not check for a NULL return from qede_build_skb(). When it returns NULL under memory pressure, the functions still consume a BD from the ring before returning NULL. The callers then recycle additional BDs, resulting in one extra BD being consumed (off-by-one). This desynchronizes the BD ring, which can corrupt DMA page reference counts and lead to SLUB freelist corruption. Commit 4e910dbe3650 ("qede: confirm skb is allocated before using") added a NULL check inside qede_build_skb() to prevent a NULL pointer dereference, but did not address the missing NULL checks in the callers, making this off-by-one reachable. Fix this by adding NULL checks for the return value of qede_build_skb() in both qede_rx_build_skb() and qede_tpa_rx_build_skb(), returning NULL immediately before any BD ring manipulation. Fixes: 8a8633978b84 ("qede: Add build_skb() support.") Signed-off-by: Shigeru Yoshida Reviewed-by: Jamie Bainbridge Link: https://patch.msgid.link/20260630164623.3152625-1-syoshida@redhat.com Signed-off-by: Paolo Abeni Signed-off-by: Sasha Levin --- drivers/net/ethernet/qlogic/qede/qede_fp.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/drivers/net/ethernet/qlogic/qede/qede_fp.c b/drivers/net/ethernet/qlogic/qede/qede_fp.c index f12ea7da3458e1..21c03b9ae992d9 100644 --- a/drivers/net/ethernet/qlogic/qede/qede_fp.c +++ b/drivers/net/ethernet/qlogic/qede/qede_fp.c @@ -766,6 +766,9 @@ qede_tpa_rx_build_skb(struct qede_dev *edev, struct sk_buff *skb; skb = qede_build_skb(rxq, bd, len, pad); + if (unlikely(!skb)) + return NULL; + bd->page_offset += rxq->rx_buf_seg_size; if (bd->page_offset == PAGE_SIZE) { @@ -813,6 +816,8 @@ qede_rx_build_skb(struct qede_dev *edev, } skb = qede_build_skb(rxq, bd, len, pad); + if (unlikely(!skb)) + return NULL; if (unlikely(qede_realloc_rx_buffer(rxq, bd))) { /* Incr page ref count to reuse on allocation failure so -- 2.53.0