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 46D7246E005; Tue, 21 Jul 2026 18:49:09 +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=1784659751; cv=none; b=TI+hlde7wpENYKLX0ZiJzOg3NzEiGmKdMmXxKrT2Onr5DBam/GoVNaVJceAg9MHRl7dHH6dhuiJmp7zdEDaickxLwKRLM1qHw28SLKdo0skrupMgxR2M3Aqu6MpQb6KBIQmbfg2Mm7xjlWyZVUNJvy6ncT/B2j6waNDLzllERxs= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1784659751; c=relaxed/simple; bh=oEdWNscpLHqk9h9FgmK118uF6tdea418Bp2Ikle73Zs=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=OldkwtRwlttmFhADi4mb0+lMP10+4DnKiE4t29veIk5e/luw2Xk5FLarj7NkVUiXU50GCOFRZWQnc7DhUmsQDvMws/A83kl2Hixos4fWjKV2i2a08B0ssxWEzaX5UO5cFF6zlfFUq6Lcqr9oNC6dC6/kI6O6f81oPozk6ZbylMw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=HnMFVieL; 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="HnMFVieL" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE2591F00A3A; Tue, 21 Jul 2026 18:49:08 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1784659749; bh=a1I6gd41WyWqF/lpXjuP6DuyreBNk0KREhpowDTUOTE=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=HnMFVieLYJ+ZtK4L4kBJMWAIfMneVK91zMy2jEoorXI4SaK68l+YbwqsaZBEDiv5L oYiPzBI3xMi5Qa31yDm15xudOx+a+yYYea4tRqWtu+q8G/4IgBo7+d+c0HUr2K8FzD S+PbuEwXblsYqPVxfkJtZBFFrKmEAnQ+iQ7PPwG4= 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 7.1 0718/2077] tipc: prevent snt_unacked underflow on CONN_ACK Date: Tue, 21 Jul 2026 17:06:31 +0200 Message-ID: <20260721152609.739145368@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260721152552.646164743@linuxfoundation.org> References: <20260721152552.646164743@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 7.1-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 9329919fb07f07..f64f7a35b5c910 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