batman-adv: fix TT sync flag inconsistencies 316/head
authorSven Eckelmann <sven@narfation.org>
Sat, 29 Jul 2017 08:18:28 +0000 (10:18 +0200)
committerSven Eckelmann <sven@narfation.org>
Sat, 29 Jul 2017 08:18:28 +0000 (10:18 +0200)
commit77a88d5d0b21d516f10aa47fe5ee787211a6e177
tree85790b94175d6b4347997cb926d7d20c1b8772a8
parentd97cd1b8c1da5652645b7a4630697ceedc506faf
batman-adv: fix TT sync flag inconsistencies

This patch fixes an issue in the translation table code potentially
leading to a TT Request + Response storm. The issue may occur for nodes
involving BLA and an inconsistent configuration of the batman-adv AP
isolation feature. However, since the new multicast optimizations, a
single, malformed packet may lead to a mesh-wide, persistent
Denial-of-Service, too.

The issue occurs because nodes are currently OR-ing the TT sync flags of
all originators announcing a specific MAC address via the
translation table. When an intermediate node now receives a TT Request
and wants to answer this on behave of the destination node then this
intermediate node now responds with an altered flag field and broken
CRC. The next OGM of the real destination will lead to a CRC mismatch
and triggering a TT Request and Response again.

Furthermore, the OR-ing is currently never undone as long as at least
one originator announcing the according MAC address remains, leading to
the potential persistency of this issue.

This patch fixes this issue by storing the flags used in the CRC
calculation on a a per TT orig entry basis to be able to respond with
the correct, original flags in an intermediate TT Response for one
thing. And to be able to correctly unset sync flags once all nodes
announcing a sync flag vanish for another.

Signed-off-by: Sven Eckelmann <sven@narfation.org>
batman-adv/Makefile
batman-adv/patches/0001-batman-adv-fix-TT-sync-flag-inconsistencies.patch [new file with mode: 0644]