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 2F2433F1662; Fri, 7 Aug 2026 15:09:48 +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=1786115389; cv=none; b=Ucp6CgP07YNW9yOyht7peoe30cG7nSjUptYKUuLZHYZO80v2DfGw+9aTt4/SBA61WkP0ewrhs5gBJAmElh+MBJxEDClU0F9LXwP+QNvD8tBJZmnhNeIUW5F8e8DVgA+pvPaTobNYIEoSRJXMTFksctDLq+ONbDd/NDOU4a2ReFQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1786115389; c=relaxed/simple; bh=300bzzFBg/Tc6KCQmhBNtap4T7CQx9Jshty8xRuFblQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=uQFa1gg9dA0smowAmnvuwjLgNiVWOxm3Qf/455VDUGy4pRYGfW89sEK8tvgceMg3MaGYHOsUgFyhIMhWRc6FZ7vYouWsLMIA2BqMvKx1yWucmvMG/iZ/9THpRFyh3g9Xl8rR+01p454PN4sKst1PtCdGxMtCoNTRJrsxwv/ddew= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=Dm/4y021; 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="Dm/4y021" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 81C8C1F000E9; Fri, 7 Aug 2026 15:09:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1786115388; bh=eLXuqafmYlZmmDWC1YigRJCZo2gNM0xCWJDxe8sc/LA=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=Dm/4y0211F3+UOrLjyuEdfsNsw/flIq5+GH3heptM/wVzjDR/BXQDLjh4eIMe8fcq V5wF++MXBo188zq0lfT+S+BMDc43gH0wI0Cb74wH+UajQtYz+LoxPmlLobhhPi1Rwg yukVjHCm+Afi+CzZ932HoeHkNjSdHjfqr5UH1G0I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Asim Viladi Oglu Manizada , Xin Long , Jakub Kicinski Subject: [PATCH 6.18 259/396] sctp: prevent peer transport count overflow Date: Fri, 7 Aug 2026 16:36:59 +0200 Message-ID: <20260807143429.839484643@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: Asim Viladi Oglu Manizada commit bd0e9289e2642f6a5c54faad304ce0f41e926d22 upstream. sctp_assoc_add_peer() increments the association's 16-bit transport_count for every new unique peer. Adding the 65,536th transport wraps the count to zero. SCTP sock_diag uses transport_count to reserve the INET_DIAG_PEERS payload, then copies one sockaddr_storage for every entry in transport_addr_list. After the wrap, a diagnostic dump reserves an empty payload and writes 8 MiB of peer addresses past the skb tail. Reject a new unique peer when transport_count has reached U16_MAX. Perform the check after the existing-peer lookup so a duplicate address continues to return its existing transport at the limit. Fixes: 8f840e47f190 ("sctp: add the sctp_diag.c file") Cc: stable@vger.kernel.org Signed-off-by: Asim Viladi Oglu Manizada Acked-by: Xin Long Link: https://patch.msgid.link/20260725032053.521705-1-manizada@pm.me Signed-off-by: Jakub Kicinski Signed-off-by: Greg Kroah-Hartman --- net/sctp/associola.c | 3 +++ 1 file changed, 3 insertions(+) --- a/net/sctp/associola.c +++ b/net/sctp/associola.c @@ -614,6 +614,9 @@ struct sctp_transport *sctp_assoc_add_pe return peer; } + if (asoc->peer.transport_count == U16_MAX) + return NULL; + peer = sctp_transport_new(asoc->base.net, addr, gfp); if (!peer) return NULL;