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 2248546DFFF; Tue, 21 Jul 2026 17:58:28 +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=1784656709; cv=none; b=DEqkO0gzpASL2EfbfhfZ7+s2WmY5S6/A4Lo5Lyd4b8vhECzzh/AVxJuRvzEYKxS3PRNEbJKC8b48fjSmBbAbG7WeiVNy/GiAnhOZ+9N2v8jMBqobfz8Da0WOhwHJFV+IRvUJstUvOZS0rtzTu939M+Vwky9Ndim1FAc6RG8D1Hk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784656709; c=relaxed/simple; bh=S4696BtM7shgoQcThqCSfhAd/tA29/ydi2eVtKMjkpI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=c+JIUPoINDJSS/Rz4LG3fwEfY4xbNsxzrG0l0cC9dItuVZeF6Y2lxPh/cHVisihT+XuJMv+cX1MOYflstiDsPANA9DxEDXyKjFjTubEsSbge2bJwrHzHtHlzHA0TtYqFMNS6Dz5fi/nGVTD41WKvnjzZ+49QYB+c+KibafPIiHU= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=1h1M/m4X; 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="1h1M/m4X" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 886E71F00A3A; Tue, 21 Jul 2026 17:58:27 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784656708; bh=v/LzkLeayI7rZrou+TFyTZG9vSFQhAv1B/LtzZzBx54=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=1h1M/m4XUeqmE6HmZPZO3CksbWjhNFCLiUIQP9r6UJ3EYQMoyzU3BC7kYrzr2ABsu Ou3pJs84wtVgxCsy9Ty5a33Jk1Xxg9Gq+HPtE6ncQtwpOC8kyFtzsh3hU/lp0BHmrh gTZiTn8hi4Wq9+0oWzggUH/xCakH2CfkryhWUG5I= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Michael Bommarito , Tung Nguyen , Jakub Kicinski , Sasha Levin Subject: [PATCH 6.18 0489/1611] tipc: prevent snt_unacked underflow on CONN_ACK Date: Tue, 21 Jul 2026 17:10:05 +0200 Message-ID: <20260721152526.334397914@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152514.750365251@linuxfoundation.org> References: <20260721152514.750365251@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: Michael Bommarito [ Upstream commit ab3e10b44ba5411779aac7afd2477917dd77750f ] tipc_sk_conn_proto_rcv() subtracts the peer-supplied connection ack count from the unsigned 16-bit send counter snt_unacked without checking that it does not exceed the number of messages actually outstanding: tsk->snt_unacked -= msg_conn_ack(hdr); msg_conn_ack() is read straight from a received CONN_MANAGER/CONN_ACK message. If the ack count is larger than snt_unacked, the subtraction wraps to a near-maximum value, leaving tsk_conn_cong() permanently true and starving the connection of further transmits. Validate the ACK count at the start of the CONN_ACK block and drop the message if it acknowledges more messages than are outstanding. A peer (or, for a local connection, the connected peer socket) can otherwise wedge a TIPC connection's send side by sending an oversized connection ack. Fixes: 10724cc7bb78 ("tipc: redesign connection-level flow control") Signed-off-by: Michael Bommarito Reviewed-by: Tung Nguyen Link: https://patch.msgid.link/20260610124003.3831170-3-michael.bommarito@gmail.com Signed-off-by: Jakub Kicinski Signed-off-by: Sasha Levin --- net/tipc/socket.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 3d5de693a22271..edaf44b512190c 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1362,6 +1362,9 @@ static void tipc_sk_conn_proto_rcv(struct tipc_sock *tsk, struct sk_buff *skb, __skb_queue_tail(xmitq, skb); return; } else if (mtyp == CONN_ACK) { + if (tsk->snt_unacked < msg_conn_ack(hdr)) + goto exit; + was_cong = tsk_conn_cong(tsk); tipc_sk_push_backlog(tsk, msg_nagle_ack(hdr)); tsk->snt_unacked -= msg_conn_ack(hdr); -- 2.53.0