From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 318D6330B3A; Mon, 13 Apr 2026 17:04:14 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776099855; cv=none; b=sFWGgyhnNkyALYUz2AXgDFFGsRwOhmwLQZc+1zLA9Dxdtm1T7Pq5whb+Vg/ivH9/sIUojewQGlzyDcBTGdC5FPdTl4tvx27JClOj3xlMjTXWBLUTWfrER14sqEhaejT2vCOUvVffgpcSNQxMLugbKNhp94eaEZJ4m8RicirgG6E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776099855; c=relaxed/simple; bh=S1S7iqtOHpAi+ou1WirmlxxLs7n++qNL1h45+vlCiAI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=Ce9luaZO551wRQSwQk480C3Unb0bLyrIWPNO6q96l0/kn318wo3ekbHuV2Bv+b4DEI7RgrWZG+2+nm2Zuo1ut8uq/EUZAy/va9V/OK1k1IGG4oVgkYc5C4KLtOMJOzL4VM9QPHNBoCNwd2o8IcbJfdojg6E0urfbtvhLM+V+Vu0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=qfvotz6D; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="qfvotz6D" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 85FA2C2BCAF; Mon, 13 Apr 2026 17:04:14 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776099854; bh=S1S7iqtOHpAi+ou1WirmlxxLs7n++qNL1h45+vlCiAI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qfvotz6D2Pdp5QEOQitanhyp+smfYaSkqg5GKRhyHT9TEqcrgdkI4h1hZq4if76Pp mU1ivTnxFfEPtG6zwhrdm+4OFcXHRd4xmwhORnA3hakJdCYUaOhoHxjCGNV0x48dK8 hDlxNLIq4oZfK5wG+9qIplMJPo/KreymjBplqBq8= From: Greg Kroah-Hartman To: stable@vger.kernel.org Cc: Greg Kroah-Hartman , patches@lists.linux.dev, Yifan Wu , Juefei Pu , Yuan Tan , Xin Liu , Ao Zhou , Sven Eckelmann , Simon Wunderlich Subject: [PATCH 5.10 487/491] batman-adv: avoid OGM aggregation when skb tailroom is insufficient Date: Mon, 13 Apr 2026 18:02:12 +0200 Message-ID: <20260413155837.287603613@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155819.042779211@linuxfoundation.org> References: <20260413155819.042779211@linuxfoundation.org> User-Agent: quilt/0.69 X-stable: review X-Patchwork-Hint: ignore Precedence: bulk X-Mailing-List: stable@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 5.10-stable review patch. If anyone has any objections, please let me know. ------------------ From: Yang Yang commit 0d4aef630be9d5f9c1227d07669c26c4383b5ad0 upstream. When OGM aggregation state is toggled at runtime, an existing forwarded packet may have been allocated with only packet_len bytes, while a later packet can still be selected for aggregation. Appending in this case can hit skb_put overflow conditions. Reject aggregation when the target skb tailroom cannot accommodate the new packet. The caller then falls back to creating a new forward packet instead of appending. Fixes: c6c8fea29769 ("net: Add batman-adv meshing protocol") Cc: stable@vger.kernel.org Reported-by: Yifan Wu Reported-by: Juefei Pu Signed-off-by: Yuan Tan Signed-off-by: Xin Liu Signed-off-by: Ao Zhou Signed-off-by: Yang Yang Signed-off-by: Sven Eckelmann Signed-off-by: Simon Wunderlich [ Adjust context ] Signed-off-by: Sven Eckelmann Signed-off-by: Greg Kroah-Hartman --- net/batman-adv/bat_iv_ogm.c | 3 +++ 1 file changed, 3 insertions(+) --- a/net/batman-adv/bat_iv_ogm.c +++ b/net/batman-adv/bat_iv_ogm.c @@ -466,6 +466,9 @@ batadv_iv_ogm_can_aggregate(const struct !time_after_eq(aggregation_end_time, forw_packet->send_time)) return false; + if (skb_tailroom(forw_packet->skb) < packet_len) + return false; + if (aggregated_bytes > BATADV_MAX_AGGREGATION_BYTES) return false;