nl80211: add attributes for multiple bssid related settings
authorJohn Crispin <john@phrozen.org>
Mon, 11 May 2020 06:49:17 +0000 (08:49 +0200)
committerJohn Crispin <john@phrozen.org>
Thu, 4 Jun 2020 09:51:55 +0000 (11:51 +0200)
When we start a multiple bssid AP we need to pass the index and number of
peers aswell to the kernel. This info needs to be propagated to the
driver.

Signed-off-by: John Crispin <john@phrozen.org>
include/net/cfg80211.h
include/uapi/linux/nl80211.h
net/wireless/nl80211.c

index afca9addc0b015d4343a48fa3f25e6562e892fb9..64cd6d96e9820576f3403ab68e88da8f6e70d6b1 100644 (file)
@@ -453,6 +453,17 @@ struct ieee80211_supported_band {
        const struct ieee80211_sband_iftype_data *iftype_data;
 };
 
+/**
+ * struct ieee80211_multi_bssid - AP settings for multi bssid
+ *
+ * @index: the index of this AP in the multi bssid group.
+ * @count: the total number of multi bssid peer APs.
+ */
+struct ieee80211_multi_bssid {
+       u32 index;
+       u32 count;
+};
+
 /**
  * ieee80211_get_sband_iftype_data - return sband data for a given iftype
  * @sband: the sband to search for the STA on
@@ -1126,6 +1137,7 @@ struct cfg80211_ap_settings {
        u32 flags;
        struct ieee80211_he_obss_pd he_obss_pd;
        struct cfg80211_he_bss_color he_bss_color;
+       struct ieee80211_multi_bssid multi_bssid;
 };
 
 /**
index 87e7976fdd692644fef1c8260f9eda4c0afe5109..622cf71ee9c4177d32c7f43b041ed5606ae7c0c4 100644 (file)
@@ -2511,6 +2511,11 @@ enum nl80211_commands {
  * @NL80211_ATTR_MULTI_BSSID_PARENT: If this is a Non-Transmitted BSSID, define
  *     the parent interface.
  *
+ * @NL80211_ATTR_MULTI_BSSID_INDEX: The index of this BSS inside the multi bssid
+ *     IE.
+ *
+ * @NL80211_ATTR_MULTI_BSSID_COUNT: The number of BSSs inside the multi bssid IE.
+ *
  * @NUM_NL80211_ATTR: total number of nl80211_attrs available
  * @NL80211_ATTR_MAX: highest attribute number currently defined
  * @__NL80211_ATTR_AFTER_LAST: internal use
@@ -2995,6 +3000,8 @@ enum nl80211_attrs {
 
        NL80211_ATTR_MULTI_BSSID_MODE,
        NL80211_ATTR_MULTI_BSSID_PARENT,
+       NL80211_ATTR_MULTI_BSSID_INDEX,
+       NL80211_ATTR_MULTI_BSSID_COUNT,
 
        /* add attributes here, update the policy in nl80211.c */
 
index e29f834f8d12f1841c3523054d8acb0b23929248..e1696a4c965ba1e01ca5a9208e7c9c148660aa54 100644 (file)
@@ -662,6 +662,8 @@ static const struct nla_policy nl80211_policy[NUM_NL80211_ATTR] = {
                                        NL80211_MULTIPLE_BSSID_LEGACY,
                                        NL80211_MULTIPLE_BSSID_NON_TRANSMITTED),
        [NL80211_ATTR_MULTI_BSSID_PARENT] = { .type = NLA_U32 },
+       [NL80211_ATTR_MULTI_BSSID_INDEX] = { .type = NLA_U32 },
+       [NL80211_ATTR_MULTI_BSSID_COUNT] = { .type = NLA_U32 },
 };
 
 /* policy for the key attributes */
@@ -4885,6 +4887,11 @@ static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
            !info->attrs[NL80211_ATTR_BEACON_HEAD])
                return -EINVAL;
 
+       if (wdev->multi_bssid_mode == NL80211_MULTIPLE_BSSID_NON_TRANSMITTED &&
+           (!info->attrs[NL80211_ATTR_MULTI_BSSID_INDEX] ||
+            !info->attrs[NL80211_ATTR_MULTI_BSSID_COUNT]))
+               return -EINVAL;
+
        err = nl80211_parse_beacon(rdev, info->attrs, &params.beacon);
        if (err)
                return err;
@@ -5041,6 +5048,14 @@ static int nl80211_start_ap(struct sk_buff *skb, struct genl_info *info)
                        return err;
        }
 
+       if (info->attrs[NL80211_ATTR_MULTI_BSSID_INDEX])
+               params.multi_bssid.index = nla_get_u32(
+                               info->attrs[NL80211_ATTR_MULTI_BSSID_INDEX]);
+
+       if (info->attrs[NL80211_ATTR_MULTI_BSSID_COUNT])
+               params.multi_bssid.count = nla_get_u32(
+                               info->attrs[NL80211_ATTR_MULTI_BSSID_COUNT]);
+
        nl80211_calculate_ap_params(&params);
 
        if (info->attrs[NL80211_ATTR_EXTERNAL_AUTH_SUPPORT])