wifi: cfg80211: Fix use after free for wext
authorAlexander Wetzel <alexander@wetzel-home.de>
Tue, 24 Jan 2023 14:18:56 +0000 (15:18 +0100)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 14 Feb 2023 10:51:07 +0000 (11:51 +0100)
commit015b8cc5e7c4d7bb671f1984d7b7338c310b185b
tree5e8b221e937c35172ed2b29ea6b220f36b9a99aa
parent9a47c1ef5a95d1fd229ee5e375985f809a9d8177
wifi: cfg80211: Fix use after free for wext

Key information in wext.connect is not reset on (re)connect and can hold
data from a previous connection.

Reset key data to avoid that drivers or mac80211 incorrectly detect a
WEP connection request and access the freed or already reused memory.

Additionally optimize cfg80211_sme_connect() and avoid an useless
schedule of conn_work.

Fixes: fffd0934b939 ("cfg80211: rework key operation")
Cc: stable@vger.kernel.org
Link: https://lore.kernel.org/r/20230124141856.356646-1-alexander@wetzel-home.de
Signed-off-by: Alexander Wetzel <alexander@wetzel-home.de>
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/sme.c