batman-adv: Prevent duplicated global TT entry
authorSven Eckelmann <sven@narfation.org>
Sun, 12 Aug 2018 19:04:44 +0000 (21:04 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Thu, 6 Sep 2018 12:37:12 +0000 (14:37 +0200)
commite7136e48ffdfb9f37b0820f619380485eb407361
tree1e50173ed02b2569a93b9214a24ec9807784dd30
parent94cb82f594ed86be303398d6dfc7640a6f1d45d4
batman-adv: Prevent duplicated global TT entry

The function batadv_tt_global_orig_entry_add is responsible for adding new
tt_orig_list_entry to the orig_list. It first checks whether the entry
already is in the list or not. If it is, then the creation of a new entry
is aborted.

But the lock for the list is only held when the list is really modified.
This could lead to duplicated entries because another context could create
an entry with the same key between the check and the list manipulation.

The check and the manipulation of the list must therefore be in the same
locked code section.

Fixes: d657e621a0f5 ("batman-adv: add reference counting for type batadv_tt_orig_list_entry")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/translation-table.c