Skip to content

Commit

Permalink
wifi: cfg80211: clear wdev->cqm_config pointer on free
Browse files Browse the repository at this point in the history
When we free wdev->cqm_config when unregistering, we also
need to clear out the pointer since the same wdev/netdev
may get re-registered in another network namespace, then
destroyed later, running this code again, which results in
a double-free.

Reported-by: [email protected]
Fixes: 37c20b2 ("wifi: cfg80211: fix cqm_config access race")
Cc: [email protected]
Link: https://patch.msgid.link/20241022161742.7c34b2037726.I121b9cdb7eb180802eafc90b493522950d57ee18@changeid
Signed-off-by: Johannes Berg <[email protected]>
  • Loading branch information
jmberg-intel committed Oct 25, 2024
1 parent 9b15c6c commit d5fee26
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions net/wireless/core.c
Original file line number Diff line number Diff line change
Expand Up @@ -1236,6 +1236,7 @@ static void _cfg80211_unregister_wdev(struct wireless_dev *wdev,
/* deleted from the list, so can't be found from nl80211 any more */
cqm_config = rcu_access_pointer(wdev->cqm_config);
kfree_rcu(cqm_config, rcu_head);
RCU_INIT_POINTER(wdev->cqm_config, NULL);

/*
* Ensure that all events have been processed and
Expand Down

0 comments on commit d5fee26

Please sign in to comment.