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 D343D335BB4; Thu, 2 Jul 2026 16:27:21 +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=1783009644; cv=none; b=KvxocVDAPm8ScF782W9AHDhlj0omnQnvZ/wWxGVxAiQju0dWnYO37602B76m+sntz8W1ywxSC9RY8ZIugJSZeradmD+rMCEklPi57MnPnF+EIwy9qzQIaK5P7t6YqgaeZkX6Ey57FRBermmV/MSJrVM3g8VLvOOVB1ias2ljX1Y= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1783009644; c=relaxed/simple; bh=ig5dmz5ztM3JrJfP7pd4Ue99fiYMw8jNalhmMNTy/FY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=N2GsX9CHctPDckm0o5/VHwxr1GIMsW9ofZ5/cTXseL/eU29DScyzlXiJgHLwRV6ESWUKxXxSY8pTBtVW/mFME1y213nanDz1P4YXT0l0D1+DFS6RSZyAiORSZDlNWWoqhw3WTZR+HJpmklYSqhhifMryP8jBBoH7fQC6brKC04Q= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=IXh3d5rg; 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="IXh3d5rg" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 103571F00A3E; Thu, 2 Jul 2026 16:27:20 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linuxfoundation.org; s=korg; t=1783009641; bh=kvNbeTvbwnzyw/9ZejS2iI9iqB+iuIHBWEvmwViBSGo=; h=From:To:Cc:Subject:Date:In-Reply-To:References; b=IXh3d5rgRdpD9kD9Aozzx7za5jJuUrbyroMPjy3o/XM+rhKuD+5Jmdvpo4a44X0Hb VqaZLQOAY6ZkeDe45vnf1zHQKnKxwOnrShkHZoibbJ7I0JDUXPAiYJMJl5Mv2zrTU1 9mrLmXOI54GUIJwBfkfvns1cZZQl2MptPpPzskiY= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, stable@kernel.org, Sven Eckelmann , Sasha Levin Subject: [PATCH 5.15 31/95] batman-adv: tp_meter: avoid window underflow Date: Thu, 2 Jul 2026 18:19:34 +0200 Message-ID: <20260702155109.862319058@linuxfoundation.org> X-Mailer: git-send-email 2.55.0 In-Reply-To: <20260702155109.196223802@linuxfoundation.org> References: <20260702155109.196223802@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: Sven Eckelmann commit 765947b81fb54b6ebb0bc1cfe55c0fa399e002b8 upstream. In batadv_tp_avail(), win_left is calculated with 32-bit unsigned arithmetic: win_left = win_limit - tp_vars->last_sent; During Fast Recovery, cwnd is inflated and last_sent advances rapidly. When Fast Recovery ends, cwnd drops abruptly back to ss_threshold. If the newly shrunk win_limit is less than last_sent, the unsigned subtraction will underflow, wrapping to a massive positive value. Instead of returning that the window is full (unavailable), it returns that the sender can continue sending. To handle this situation, it must be checked whether the windows end sequence number (win_limit) has to be compared with the last sent sequence number. If it would be before the last sent sequence number, then more acks are needed before the transmission can be started again. Cc: stable@kernel.org Fixes: 33a3bb4a3345 ("batman-adv: throughput meter implementation") Signed-off-by: Sven Eckelmann Signed-off-by: Sasha Levin --- net/batman-adv/tp_meter.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/net/batman-adv/tp_meter.c b/net/batman-adv/tp_meter.c index f7b0ce3f8e2aef..3fd46999f36745 100644 --- a/net/batman-adv/tp_meter.c +++ b/net/batman-adv/tp_meter.c @@ -817,10 +817,15 @@ static void batadv_tp_recv_ack(struct batadv_priv *bat_priv, static bool batadv_tp_avail(struct batadv_tp_vars *tp_vars, size_t payload_len) { + u32 last_sent = READ_ONCE(tp_vars->last_sent); u32 win_left, win_limit; win_limit = atomic_read(&tp_vars->last_acked) + tp_vars->cwnd; - win_left = win_limit - tp_vars->last_sent; + + if (batadv_seq_before(last_sent, win_limit)) + win_left = win_limit - last_sent; + else + win_left = 0; return win_left >= payload_len; } -- 2.53.0