]> git.itanic.dy.fi Git - linux-stable/commit
mac80211: Do not send Layer 2 Update frame before authorization
authorJouni Malinen <jouni@codeaurora.org>
Wed, 11 Sep 2019 13:03:05 +0000 (16:03 +0300)
committerDavid S. Miller <davem@davemloft.net>
Wed, 11 Sep 2019 13:59:26 +0000 (14:59 +0100)
commit3e493173b7841259a08c5c8e5cbe90adb349da7e
treeb1531badd43d0d769728ddaccf909303ed109ae2
parent3dfdecc6d1256835ac0612b2a8f7595466d66327
mac80211: Do not send Layer 2 Update frame before authorization

The Layer 2 Update frame is used to update bridges when a station roams
to another AP even if that STA does not transmit any frames after the
reassociation. This behavior was described in IEEE Std 802.11F-2003 as
something that would happen based on MLME-ASSOCIATE.indication, i.e.,
before completing 4-way handshake. However, this IEEE trial-use
recommended practice document was published before RSN (IEEE Std
802.11i-2004) and as such, did not consider RSN use cases. Furthermore,
IEEE Std 802.11F-2003 was withdrawn in 2006 and as such, has not been
maintained amd should not be used anymore.

Sending out the Layer 2 Update frame immediately after association is
fine for open networks (and also when using SAE, FT protocol, or FILS
authentication when the station is actually authenticated by the time
association completes). However, it is not appropriate for cases where
RSN is used with PSK or EAP authentication since the station is actually
fully authenticated only once the 4-way handshake completes after
authentication and attackers might be able to use the unauthenticated
triggering of Layer 2 Update frame transmission to disrupt bridge
behavior.

Fix this by postponing transmission of the Layer 2 Update frame from
station entry addition to the point when the station entry is marked
authorized. Similarly, send out the VLAN binding update only if the STA
entry has already been authorized.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
Reviewed-by: Johannes Berg <johannes@sipsolutions.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/mac80211/cfg.c
net/mac80211/sta_info.c