batman-adv: Prevent duplicated tvlv handler
authorSven Eckelmann <sven@narfation.org>
Sun, 12 Aug 2018 19:04:45 +0000 (21:04 +0200)
committerSimon Wunderlich <sw@simonwunderlich.de>
Thu, 6 Sep 2018 12:37:13 +0000 (14:37 +0200)
commitae3cdc97dc10c7a3b31f297dab429bfb774c9ccb
treee91a34cf38639a1d47b07720b98aa11a33e2ae41
parente7136e48ffdfb9f37b0820f619380485eb407361
batman-adv: Prevent duplicated tvlv handler

The function batadv_tvlv_handler_register is responsible for adding new
tvlv_handler to the handler_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: ef26157747d4 ("batman-adv: tvlv - basic infrastructure")
Signed-off-by: Sven Eckelmann <sven@narfation.org>
Signed-off-by: Simon Wunderlich <sw@simonwunderlich.de>
net/batman-adv/tvlv.c