]> git.ipfire.org Git - thirdparty/kernel/stable.git/commit
batman-adv: Ignore own maximum aggregation size during RX
authorSven Eckelmann <sven@narfation.org>
Sun, 2 Feb 2025 16:04:13 +0000 (17:04 +0100)
committerSimon Wunderlich <sw@simonwunderlich.de>
Sat, 8 Feb 2025 18:24:33 +0000 (19:24 +0100)
commit548b0c5de7619ef53bbde5590700693f2f6d2a56
treed27dc92c27212f19a61aca6c2ff90f7e23c36f1a
parentf4c9c2cc827d803159730b1da813a0c595969831
batman-adv: Ignore own maximum aggregation size during RX

An OGMv1 and OGMv2 packet receive processing were not only limited by the
number of bytes in the received packet but also by the nodes maximum
aggregation packet size limit. But this limit is relevant for TX and not
for RX. It must not be enforced by batadv_(i)v_ogm_aggr_packet to avoid
loss of information in case of a different limit for sender and receiver.

This has a minor side effect for B.A.T.M.A.N. IV because the
batadv_iv_ogm_aggr_packet is also used for the preprocessing for the TX.
But since the aggregation code itself will not allow more than
BATADV_MAX_AGGREGATION_BYTES bytes, this check was never triggering (in
this context) prior of removing it.

Cc: stable@vger.kernel.org
Fixes: c6c8fea29769 ("net: Add batman-adv meshing protocol")
Fixes: 9323158ef9f4 ("batman-adv: OGMv2 - implement originators logic")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/bat_iv_ogm.c
net/batman-adv/bat_v_ogm.c