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 63BC830ACE6; Mon, 13 Apr 2026 16:28:25 +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=1776097705; cv=none; b=vDVRu0t8yHkzuAG6AApJm4qsigDYLyL4qEMk8hM8y+5r4ov//5ywcIdcadrXwpRQZdu5lnF855KCn2AHpsADZIT4hjLlIr+TMJ0OfMy8TsVVlv6jOFJki1Y2PDeLCVsGrzqpNg6nLpRM+F23Njq5mBq9A8FcU+LwqjVbkYhMV2s= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776097705; c=relaxed/simple; bh=b78vqhJnHxNLWf4ySHjI9pbWFMOM6vAJVShn4SXMsrI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=NQJsbjHcS95JVDU/YB4aikK1zHor34dWBKReG6+yPztCRSfKtraGhPuRA+lvjPkZ28MazoQA46SOkga185NS8IeYggVBqfxKmUvGk5pqsEjAC3izl7qLnWuuG3iUzVj37I2OITH7wEawFrR9nAuoPS8I57HMTGbE8npurXNgatQ= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=klCGNkK2; 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="klCGNkK2" Received: by smtp.kernel.org (Postfix) with ESMTPSA id C15DCC2BCAF; Mon, 13 Apr 2026 16:28:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776097705; bh=b78vqhJnHxNLWf4ySHjI9pbWFMOM6vAJVShn4SXMsrI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=klCGNkK2G+L4djXGqUTYCET3L5UEp5maHK/rxE621kZyqj2T36rOhnSDlNVRHjbSS LisWhmu/vdLzjrepU+mkbXPMQuzxbI+cGj0HmAnbq5iX5ATTobnilvi4FykgrVB3lQ j//n3+DJJAO38oHB7bOD6h7lgsZcPX97azGK06VA= 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.15 241/570] batman-adv: avoid OGM aggregation when skb tailroom is insufficient Date: Mon, 13 Apr 2026 17:56:12 +0200 Message-ID: <20260413155839.496995498@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155830.386096114@linuxfoundation.org> References: <20260413155830.386096114@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: 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 @@ -465,6 +465,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;