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 2404E27280A; Mon, 13 Apr 2026 16:17:32 +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=1776097052; cv=none; b=CpvOoL1H8g1U4ZvPdoCOcvpWSsQqBnAZENenbT4BK6kpuA/olk/uKoTcwQphfRIw3b6qezMGKTrQHhlg1y9YQx+GQnPfz3hMo81A5OgLuf6tiPI1ySvYjw4jGAqGrwtLLknAF3yPVPjA//mvq6jRZ8l8tWCHeBGVb5Tl+nU1cOA= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1776097052; c=relaxed/simple; bh=uyj2yC58cozHK509uw0mrtnR4keIMV9pokWUyqpw07w=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KQuuMN8dnZ0K48QkkX8TIPOdu8GVlE5nPWCg8E7zlTaNH+DHT6EAfh7NWd3u7EZAIWajkA+sk9f2fCL4mKH6YnXNclEAOH26uCkuLFhfBf+lskoR9kFIw7/Cm6+o9E2N++WbCLqb6OtUbKQYOdoZJTQsa+9mHW4kACB7yrrlL18= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=i3K0XLWr; 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="i3K0XLWr" Received: by smtp.kernel.org (Postfix) with ESMTPSA id AE42BC2BCAF; Mon, 13 Apr 2026 16:17:31 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1776097052; bh=uyj2yC58cozHK509uw0mrtnR4keIMV9pokWUyqpw07w=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=i3K0XLWrDA/JmDWj/hACoxdt+7Ax9dsY07DmXbetrnXdRtU1S728ZyrPDv+RxAaaY UYaQWNFzCViRSQ6jOT4GahuFx78XY6HdPq3eNz58SwcHkep4uIqoWTZzFjZTvzPeYm dq7t8BoEmEm/f7zF26STSTPfTsurYyc+Ft8J8yu4= 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 , Ren Wei , Ruide Cao , Ren Wei , Sven Eckelmann , Simon Wunderlich Subject: [PATCH 6.1 43/55] batman-adv: reject oversized global TT response buffers Date: Mon, 13 Apr 2026 18:01:17 +0200 Message-ID: <20260413155726.440459258@linuxfoundation.org> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260413155724.820472494@linuxfoundation.org> References: <20260413155724.820472494@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.1-stable review patch. If anyone has any objections, please let me know. ------------------ From: Ruide Cao commit 3a359bf5c61d52e7f09754108309d637532164a6 upstream. batadv_tt_prepare_tvlv_global_data() builds the allocation length for a global TT response in 16-bit temporaries. When a remote originator advertises a large enough global TT, the TT payload length plus the VLAN header offset can exceed 65535 and wrap before kmalloc(). The full-table response path still uses the original TT payload length when it fills tt_change, so the wrapped allocation is too small and batadv_tt_prepare_tvlv_global_data() writes past the end of the heap object before the later packet-size check runs. Fix this by rejecting TT responses whose TVLV value length cannot fit in the 16-bit TVLV payload length field. Fixes: 7ea7b4a14275 ("batman-adv: make the TT CRC logic VLAN specific") Cc: stable@vger.kernel.org Reported-by: Yifan Wu Reported-by: Juefei Pu Co-developed-by: Yuan Tan Signed-off-by: Yuan Tan Suggested-by: Xin Liu Tested-by: Ren Wei Signed-off-by: Ruide Cao Signed-off-by: Ren Wei Signed-off-by: Sven Eckelmann Signed-off-by: Simon Wunderlich Signed-off-by: Greg Kroah-Hartman --- net/batman-adv/translation-table.c | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) --- a/net/batman-adv/translation-table.c +++ b/net/batman-adv/translation-table.c @@ -844,8 +844,8 @@ batadv_tt_prepare_tvlv_global_data(struc { u16 num_vlan = 0; u16 num_entries = 0; - u16 change_offset; - u16 tvlv_len; + u16 tvlv_len = 0; + unsigned int change_offset; struct batadv_tvlv_tt_vlan_data *tt_vlan; struct batadv_orig_node_vlan *vlan; u8 *tt_change_ptr; @@ -863,6 +863,11 @@ batadv_tt_prepare_tvlv_global_data(struc if (*tt_len < 0) *tt_len = batadv_tt_len(num_entries); + if (change_offset > U16_MAX || *tt_len > U16_MAX - change_offset) { + *tt_len = 0; + goto out; + } + tvlv_len = *tt_len; tvlv_len += change_offset;