mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-21 19:31:55 +00:00
182 lines
5.7 KiB
Diff
182 lines
5.7 KiB
Diff
From 31a0ee224e1a8d9764c462e1ab1cc1a8775733be Mon Sep 17 00:00:00 2001
|
|
From: MeiChia Chiu <meichia.chiu@mediatek.com>
|
|
Date: Wed, 19 Oct 2022 13:45:42 +0800
|
|
Subject: [PATCH 06/19] mac80211: mtk: add support for runtime set inband
|
|
discovery
|
|
|
|
Signed-off-by: MeiChia Chiu <meichia.chiu@mediatek.com>
|
|
---
|
|
include/net/cfg80211.h | 1 +
|
|
include/net/mac80211.h | 1 +
|
|
include/uapi/linux/nl80211.h | 1 +
|
|
net/mac80211/cfg.c | 32 +++++++++++++++++++++++++++++++-
|
|
net/wireless/nl80211.c | 31 +++++++++++++++++++++++++++----
|
|
5 files changed, 61 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/include/net/cfg80211.h b/include/net/cfg80211.h
|
|
index d1a88e2..1170703 100644
|
|
--- a/include/net/cfg80211.h
|
|
+++ b/include/net/cfg80211.h
|
|
@@ -1159,6 +1159,7 @@ struct cfg80211_fils_discovery {
|
|
u32 max_interval;
|
|
size_t tmpl_len;
|
|
const u8 *tmpl;
|
|
+ u8 disable;
|
|
};
|
|
|
|
/**
|
|
diff --git a/include/net/mac80211.h b/include/net/mac80211.h
|
|
index 04c0d09..4727393 100644
|
|
--- a/include/net/mac80211.h
|
|
+++ b/include/net/mac80211.h
|
|
@@ -505,6 +505,7 @@ struct ieee80211_ftm_responder_params {
|
|
struct ieee80211_fils_discovery {
|
|
u32 min_interval;
|
|
u32 max_interval;
|
|
+ u8 disable;
|
|
};
|
|
|
|
/**
|
|
diff --git a/include/uapi/linux/nl80211.h b/include/uapi/linux/nl80211.h
|
|
index 019f065..e674aa7 100644
|
|
--- a/include/uapi/linux/nl80211.h
|
|
+++ b/include/uapi/linux/nl80211.h
|
|
@@ -7242,6 +7242,7 @@ enum nl80211_fils_discovery_attributes {
|
|
NL80211_FILS_DISCOVERY_ATTR_INT_MIN,
|
|
NL80211_FILS_DISCOVERY_ATTR_INT_MAX,
|
|
NL80211_FILS_DISCOVERY_ATTR_TMPL,
|
|
+ NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INTE,
|
|
|
|
/* keep last */
|
|
__NL80211_FILS_DISCOVERY_ATTR_LAST,
|
|
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
|
|
index 79995f3..e008a1e 100644
|
|
--- a/net/mac80211/cfg.c
|
|
+++ b/net/mac80211/cfg.c
|
|
@@ -906,6 +906,7 @@ static int ieee80211_set_fils_discovery(struct ieee80211_sub_if_data *sdata,
|
|
fd = &sdata->vif.bss_conf.fils_discovery;
|
|
fd->min_interval = params->min_interval;
|
|
fd->max_interval = params->max_interval;
|
|
+ fd->disable = params->disable;
|
|
|
|
old = sdata_dereference(sdata->u.ap.fils_discovery, sdata);
|
|
new = kzalloc(sizeof(*new) + params->tmpl_len, GFP_KERNEL);
|
|
@@ -1316,6 +1317,9 @@ static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
|
|
{
|
|
struct ieee80211_sub_if_data *sdata;
|
|
struct beacon_data *old;
|
|
+ struct cfg80211_ap_settings *ap_params;
|
|
+ struct ieee80211_supported_band *sband;
|
|
+ u32 changed;
|
|
int err;
|
|
|
|
sdata = IEEE80211_DEV_TO_SUB_IF(dev);
|
|
@@ -1334,7 +1338,33 @@ static int ieee80211_change_beacon(struct wiphy *wiphy, struct net_device *dev,
|
|
err = ieee80211_assign_beacon(sdata, params, NULL, NULL);
|
|
if (err < 0)
|
|
return err;
|
|
- ieee80211_bss_info_change_notify(sdata, err);
|
|
+
|
|
+ changed = err;
|
|
+
|
|
+ sband = ieee80211_get_sband(sdata);
|
|
+ if (!sband)
|
|
+ return -EINVAL;
|
|
+
|
|
+ if (sband->band == NL80211_BAND_6GHZ) {
|
|
+ ap_params = container_of(params, struct cfg80211_ap_settings, beacon);
|
|
+
|
|
+ if(ap_params->unsol_bcast_probe_resp.interval) {
|
|
+ err = ieee80211_set_unsol_bcast_probe_resp(sdata,
|
|
+ &ap_params->unsol_bcast_probe_resp);
|
|
+ if (err < 0)
|
|
+ return err;
|
|
+ changed |= BSS_CHANGED_UNSOL_BCAST_PROBE_RESP;
|
|
+ } else {
|
|
+ err = ieee80211_set_fils_discovery(sdata,
|
|
+ &ap_params->fils_discovery);
|
|
+
|
|
+ if (err < 0)
|
|
+ return err;
|
|
+ changed |= BSS_CHANGED_FILS_DISCOVERY;
|
|
+ }
|
|
+ }
|
|
+
|
|
+ ieee80211_bss_info_change_notify(sdata, changed);
|
|
return 0;
|
|
}
|
|
|
|
diff --git a/net/wireless/nl80211.c b/net/wireless/nl80211.c
|
|
index 4631bb1..c41675f 100644
|
|
--- a/net/wireless/nl80211.c
|
|
+++ b/net/wireless/nl80211.c
|
|
@@ -421,6 +421,7 @@ nl80211_fils_discovery_policy[NL80211_FILS_DISCOVERY_ATTR_MAX + 1] = {
|
|
[NL80211_FILS_DISCOVERY_ATTR_TMPL] = { .type = NLA_BINARY,
|
|
.len = IEEE80211_MAX_DATA_LEN },
|
|
#endif
|
|
+ [NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INTE] = NLA_POLICY_MAX(NLA_U32, 20),
|
|
};
|
|
|
|
static const struct nla_policy
|
|
@@ -5364,6 +5365,8 @@ static int nl80211_parse_fils_discovery(struct cfg80211_registered_device *rdev,
|
|
fd->tmpl = nla_data(tb[NL80211_FILS_DISCOVERY_ATTR_TMPL]);
|
|
fd->min_interval = nla_get_u32(tb[NL80211_FILS_DISCOVERY_ATTR_INT_MIN]);
|
|
fd->max_interval = nla_get_u32(tb[NL80211_FILS_DISCOVERY_ATTR_INT_MAX]);
|
|
+ fd->disable = !(fd->max_interval ||
|
|
+ nla_get_u32(tb[NL80211_UNSOL_BCAST_PROBE_RESP_ATTR_INTE]));
|
|
|
|
return 0;
|
|
}
|
|
@@ -5769,7 +5772,8 @@ static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
|
|
struct cfg80211_registered_device *rdev = info->user_ptr[0];
|
|
struct net_device *dev = info->user_ptr[1];
|
|
struct wireless_dev *wdev = dev->ieee80211_ptr;
|
|
- struct cfg80211_beacon_data params;
|
|
+ struct cfg80211_ap_settings ap_params;
|
|
+ struct cfg80211_beacon_data *params;
|
|
int err;
|
|
|
|
if (dev->ieee80211_ptr->iftype != NL80211_IFTYPE_AP &&
|
|
@@ -5782,16 +5786,35 @@ static int nl80211_set_beacon(struct sk_buff *skb, struct genl_info *info)
|
|
if (!wdev->beacon_interval)
|
|
return -EINVAL;
|
|
|
|
- err = nl80211_parse_beacon(rdev, info->attrs, ¶ms);
|
|
+ memset(&ap_params, 0, sizeof(ap_params));
|
|
+ params = &ap_params.beacon;
|
|
+
|
|
+ err = nl80211_parse_beacon(rdev, info->attrs, params);
|
|
if (err)
|
|
goto out;
|
|
|
|
+ if (info->attrs[NL80211_ATTR_FILS_DISCOVERY]) {
|
|
+ err = nl80211_parse_fils_discovery(rdev,
|
|
+ info->attrs[NL80211_ATTR_FILS_DISCOVERY],
|
|
+ &ap_params);
|
|
+ if (err)
|
|
+ goto out;
|
|
+ }
|
|
+
|
|
+ if (info->attrs[NL80211_ATTR_UNSOL_BCAST_PROBE_RESP]) {
|
|
+ err = nl80211_parse_unsol_bcast_probe_resp(rdev,
|
|
+ info->attrs[NL80211_ATTR_UNSOL_BCAST_PROBE_RESP],
|
|
+ &ap_params);
|
|
+ if (err)
|
|
+ goto out;
|
|
+ }
|
|
+
|
|
wdev_lock(wdev);
|
|
- err = rdev_change_beacon(rdev, dev, ¶ms);
|
|
+ err = rdev_change_beacon(rdev, dev, params);
|
|
wdev_unlock(wdev);
|
|
|
|
out:
|
|
- kfree(params.mbssid_ies);
|
|
+ kfree(params->mbssid_ies);
|
|
return err;
|
|
}
|
|
|
|
--
|
|
2.18.0
|
|
|