]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
wifi: cfg80211: extend interface combination check for multi-radio
authorFelix Fietkau <nbd@nbd.name>
Tue, 9 Jul 2024 08:38:31 +0000 (10:38 +0200)
committerJohannes Berg <johannes.berg@intel.com>
Tue, 9 Jul 2024 09:29:59 +0000 (11:29 +0200)
Add a field in struct iface_combination_params to check per-radio
interface combinations instead of per-wiphy ones.

Signed-off-by: Felix Fietkau <nbd@nbd.name>
Link: https://patch.msgid.link/32b28da89c2d759b0324deeefe2be4cee91de18e.1720514221.git-series.nbd@nbd.name
Signed-off-by: Johannes Berg <johannes.berg@intel.com>
include/net/cfg80211.h
net/mac80211/util.c
net/wireless/rdev-ops.h
net/wireless/util.c

index a00cf80e61dc53a37ce2b9ab8de8e1605e020b4c..4767e2c76b0180b5273eeb026bac4c21c08294cf 100644 (file)
@@ -1598,6 +1598,7 @@ struct cfg80211_color_change_settings {
  *
  * Used to pass interface combination parameters
  *
+ * @radio_idx: wiphy radio index or -1 for global
  * @num_different_channels: the number of different channels we want
  *     to use for verification
  * @radar_detect: a bitmap where each bit corresponds to a channel
@@ -1611,6 +1612,7 @@ struct cfg80211_color_change_settings {
  *     the verification
  */
 struct iface_combination_params {
+       int radio_idx;
        int num_different_channels;
        u8 radar_detect;
        int iftype_num[NUM_NL80211_IFTYPES];
@@ -4580,6 +4582,8 @@ struct mgmt_frame_regs {
  *
  * @set_hw_timestamp: Enable/disable HW timestamping of TM/FTM frames.
  * @set_ttlm: set the TID to link mapping.
+ * @get_radio_mask: get bitmask of radios in use.
+ *     (invoked with the wiphy mutex held)
  */
 struct cfg80211_ops {
        int     (*suspend)(struct wiphy *wiphy, struct cfg80211_wowlan *wow);
@@ -4941,6 +4945,7 @@ struct cfg80211_ops {
                                    struct cfg80211_set_hw_timestamp *hwts);
        int     (*set_ttlm)(struct wiphy *wiphy, struct net_device *dev,
                            struct cfg80211_ttlm_params *params);
+       u32     (*get_radio_mask)(struct wiphy *wiphy, struct net_device *dev);
 };
 
 /*
index c6d5f73119d8600592ce313b349fefa21bbf4ac5..27f0db2e9796717ef2087f41be4214a806a82365 100644 (file)
@@ -3944,6 +3944,7 @@ int ieee80211_check_combinations(struct ieee80211_sub_if_data *sdata,
        int total = 1;
        struct iface_combination_params params = {
                .radar_detect = radar_detect,
+               .radio_idx = -1,
        };
 
        lockdep_assert_wiphy(local->hw.wiphy);
@@ -4034,7 +4035,9 @@ int ieee80211_max_num_channels(struct ieee80211_local *local)
        struct ieee80211_chanctx *ctx;
        u32 max_num_different_channels = 1;
        int err;
-       struct iface_combination_params params = {0};
+       struct iface_combination_params params = {
+               .radio_idx = -1,
+       };
 
        lockdep_assert_wiphy(local->hw.wiphy);
 
index 8f15658002eea94886cc588cd17bd1ea753167d5..ec3f4aa1c807b95dff39d6573fc4074a5180cdfe 100644 (file)
@@ -1532,4 +1532,16 @@ rdev_set_ttlm(struct cfg80211_registered_device *rdev,
 
        return ret;
 }
+
+static inline u32
+rdev_get_radio_mask(struct cfg80211_registered_device *rdev,
+                   struct net_device *dev)
+{
+       struct wiphy *wiphy = &rdev->wiphy;
+
+       if (!rdev->ops->get_radio_mask)
+               return 0;
+
+       return rdev->ops->get_radio_mask(wiphy, dev);
+}
 #endif /* __CFG80211_RDEV_OPS */
index af6ec719567fc14a73580ea03010b8ff15066c01..2492f259621fb387e4258454caac82de5b4c6695 100644 (file)
@@ -2307,13 +2307,16 @@ static int cfg80211_wdev_bi(struct wireless_dev *wdev)
 
 static void cfg80211_calculate_bi_data(struct wiphy *wiphy, u32 new_beacon_int,
                                       u32 *beacon_int_gcd,
-                                      bool *beacon_int_different)
+                                      bool *beacon_int_different,
+                                      int radio_idx)
 {
+       struct cfg80211_registered_device *rdev;
        struct wireless_dev *wdev;
 
        *beacon_int_gcd = 0;
        *beacon_int_different = false;
 
+       rdev = wiphy_to_rdev(wiphy);
        list_for_each_entry(wdev, &wiphy->wdev_list, list) {
                int wdev_bi;
 
@@ -2321,6 +2324,11 @@ static void cfg80211_calculate_bi_data(struct wiphy *wiphy, u32 new_beacon_int,
                if (wdev->valid_links)
                        continue;
 
+               /* skip wdevs not active on the given wiphy radio */
+               if (radio_idx >= 0 &&
+                   !(rdev_get_radio_mask(rdev, wdev->netdev) & BIT(radio_idx)))
+                       continue;
+
                wdev_bi = cfg80211_wdev_bi(wdev);
 
                if (!wdev_bi)
@@ -2368,14 +2376,19 @@ int cfg80211_iter_combinations(struct wiphy *wiphy,
                                            void *data),
                               void *data)
 {
+       const struct wiphy_radio *radio = NULL;
+       const struct ieee80211_iface_combination *c, *cs;
        const struct ieee80211_regdomain *regdom;
        enum nl80211_dfs_regions region = 0;
-       int i, j, iftype;
+       int i, j, n, iftype;
        int num_interfaces = 0;
        u32 used_iftypes = 0;
        u32 beacon_int_gcd;
        bool beacon_int_different;
 
+       if (params->radio_idx >= 0)
+               radio = &wiphy->radio[params->radio_idx];
+
        /*
         * This is a bit strange, since the iteration used to rely only on
         * the data given by the driver, but here it now relies on context,
@@ -2387,7 +2400,8 @@ int cfg80211_iter_combinations(struct wiphy *wiphy,
         * interfaces (while being brought up) and channel/radar data.
         */
        cfg80211_calculate_bi_data(wiphy, params->new_beacon_int,
-                                  &beacon_int_gcd, &beacon_int_different);
+                                  &beacon_int_gcd, &beacon_int_different,
+                                  params->radio_idx);
 
        if (params->radar_detect) {
                rcu_read_lock();
@@ -2404,13 +2418,18 @@ int cfg80211_iter_combinations(struct wiphy *wiphy,
                        used_iftypes |= BIT(iftype);
        }
 
-       for (i = 0; i < wiphy->n_iface_combinations; i++) {
-               const struct ieee80211_iface_combination *c;
+       if (radio) {
+               cs = radio->iface_combinations;
+               n = radio->n_iface_combinations;
+       } else {
+               cs = wiphy->iface_combinations;
+               n = wiphy->n_iface_combinations;
+       }
+       for (i = 0; i < n; i++) {
                struct ieee80211_iface_limit *limits;
                u32 all_iftypes = 0;
 
-               c = &wiphy->iface_combinations[i];
-
+               c = &cs[i];
                if (num_interfaces > c->max_interfaces)
                        continue;
                if (params->num_different_channels > c->num_different_channels)