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 739C73438B7; Thu, 30 Jul 2026 15:38:29 +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=1785425910; cv=none; b=Z1p5cafgYhiobwes54lj1ssjDHANnGCB9EqmG99RKPn5dwYMR3F0tn9MhmEIStTBfQfSdDpor4LxgqvDoO5vz89QCxWuM2100dBH7jfkF3xQtwDwq2eNzFpcQyuKJU/tKrTKSwKa1ae0SL8KKIz1KQMU09e7IvR8avc9sGc0XEs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1785425910; c=relaxed/simple; bh=qophn51RfGz0SMUFizUYse1WDn8YyxkJGp3Yz+TNMYU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=iPQLVsJnsBTBycD1cPMZzBwyh+2Q2kDeUuFhe5QxO/G331aTuWTlJ0fBwM2D6qHPKY22MK/CNsr0ia5wPNw6uL1DAltYSWvmw2eugM34iO75AubkBgThlz4ygfeUf1oAM74LNwlhaUeL7/M9HXayg6CyIFX0k1V/O7wwGofxCBI= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=JXzjOevC; 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="JXzjOevC" Received: by smtp.kernel.org (Postfix) with ESMTPSA id CE5F51F000E9; Thu, 30 Jul 2026 15:38:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1785425909; bh=sEKSO8iu/ctQBQpb7XCuxU0H+zegd77I88G+auUWuWY=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=JXzjOevCDGPd1msISYCzI2UkNZrG+9QnDxbD0+GuYxWIS0VBMSHm3mqGe9g4Q6eS2 V1hb2nPm/KNvJheX1ALOKqT+VnwT+MQ1lMAySUufVqoaRAHfuknjBHdnKJ4gmMK9px IvOq80UtjlhSUc7SFuGIoHzJHbA43svp47CONdiU= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, HanQuan , Xin Long , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.12 190/602] sctp: fix auth_chunk_list capacity check in sctp_auth_ep_add_chunkid Date: Thu, 30 Jul 2026 16:09:42 +0200 Message-ID: <20260730141439.953125337@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260730141435.976815864@linuxfoundation.org> References: <20260730141435.976815864@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.12-stable review patch. If anyone has any objections, please let me know. ------------------ From: HanQuan [ Upstream commit ff04b26794a16a8a879eb4fd2c02c2d6b03850e9 ] sctp_auth_ep_add_chunkid() uses SCTP_NUM_CHUNK_TYPES (20) as the capacity limit for ep->auth_chunk_list, allowing it to hold up to 20 chunk entries (param_hdr.length up to 24). However, the copy destination asoc->c.auth_chunks in struct sctp_cookie is only SCTP_AUTH_MAX_CHUNKS (16) entries (20 bytes). When more than 16 chunks are added, sctp_association_init() memcpy overflows the destination by up to 4 bytes. Fix by using SCTP_AUTH_MAX_CHUNKS as the capacity limit, matching the destination capacity. Fixes: 1f485649f529 ("[SCTP]: Implement SCTP-AUTH internals") Signed-off-by: HanQuan Acked-by: Xin Long Link: https://patch.msgid.link/20260713032021.3491702-1-zhoujian.zja@antgroup.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/sctp/auth.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net/sctp/auth.c b/net/sctp/auth.c index c58fffc86a0c2d..8320764b16b928 100644 --- a/net/sctp/auth.c +++ b/net/sctp/auth.c @@ -766,7 +766,7 @@ int sctp_auth_ep_add_chunkid(struct sctp_endpoint *ep, __u8 chunk_id) /* Check if we can add this chunk to the array */ param_len = ntohs(p->param_hdr.length); nchunks = param_len - sizeof(struct sctp_paramhdr); - if (nchunks == SCTP_NUM_CHUNK_TYPES) + if (nchunks == SCTP_AUTH_MAX_CHUNKS) return -EINVAL; p->chunks[nchunks] = chunk_id; -- 2.53.0