wifi: cfg80211: hold wiphy lock in pmsr work
authorJohannes Berg <johannes.berg@intel.com>
Tue, 6 Jun 2023 12:49:21 +0000 (14:49 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Wed, 7 Jun 2023 17:53:07 +0000 (19:53 +0200)
Most code paths in cfg80211 already hold the wiphy lock,
mostly by virtue of being called from nl80211, so make
the pmsr cleanup worker also hold it, aligning the
locking promises between different parts of cfg80211.

Signed-off-by: Johannes Berg <johannes.berg@intel.com>
net/wireless/core.c
net/wireless/pmsr.c

index 061f7a6dd27942454bf1c3acf6c715e6a49ef58a..2e12b166c6fcae7ac935f72d82c3a36d457aba4e 100644 (file)
@@ -1145,8 +1145,6 @@ static void _cfg80211_unregister_wdev(struct wireless_dev *wdev,
        ASSERT_RTNL();
        lockdep_assert_held(&rdev->wiphy.mtx);
 
-       flush_work(&wdev->pmsr_free_wk);
-
        nl80211_notify_iface(rdev, wdev, NL80211_CMD_DEL_INTERFACE);
 
        wdev->registered = false;
@@ -1453,6 +1451,7 @@ static int cfg80211_netdev_notifier_call(struct notifier_block *nb,
                wiphy_unlock(&rdev->wiphy);
                /* since we just did cfg80211_leave() nothing to do there */
                cancel_work_sync(&wdev->disconnect_wk);
+               cancel_work_sync(&wdev->pmsr_free_wk);
                break;
        case NETDEV_DOWN:
                wiphy_lock(&rdev->wiphy);
index 2bc647720cda5cc06c4f674425b67439b1fb4e68..77000a26485547cd0b4bf8113508f3939c12eaad 100644 (file)
@@ -1,6 +1,6 @@
 /* SPDX-License-Identifier: GPL-2.0 */
 /*
- * Copyright (C) 2018 - 2021 Intel Corporation
+ * Copyright (C) 2018 - 2021, 2023 Intel Corporation
  */
 #include <net/cfg80211.h>
 #include "core.h"
@@ -623,9 +623,11 @@ void cfg80211_pmsr_free_wk(struct work_struct *work)
        struct wireless_dev *wdev = container_of(work, struct wireless_dev,
                                                 pmsr_free_wk);
 
+       wiphy_lock(wdev->wiphy);
        wdev_lock(wdev);
        cfg80211_pmsr_process_abort(wdev);
        wdev_unlock(wdev);
+       wiphy_unlock(wdev->wiphy);
 }
 
 void cfg80211_pmsr_wdev_down(struct wireless_dev *wdev)