* [PATCH wireless-next] wifi: mac80211: Guard FILS discovery and unsolicited broadcast probe response
@ 2026-08-20 16:07 Manish Dharanenthiran
2026-09-04 10:16 ` Johannes Berg
0 siblings, 1 reply; 2+ messages in thread
From: Manish Dharanenthiran @ 2026-08-20 16:07 UTC (permalink / raw)
To: johannes; +Cc: linux-wireless, Manish Dharanenthiran
According to IEEE Std 802.11-2024, subclause 11.45.2.1 FILS Discovery
frame transmission, only a transmitting BSS shall transmit a FILS
Discovery frame. Currently, BSS_CHANGED_FILS_DISCOVERY is set
unconditionally for all the BSSs. Hence, add a check to allow setting
the FILS Discovery flag only for a transmitting BSS.
Similarly, IEEE Std 802.11-2024, subclause 26.17.2.3.2 AP behavior for
fast passive scanning, mentions that unsolicited broadcast probe
response frame shall be transmitted only by a transmitting BSS. Hence,
add a check to allow setting the BSS_CHANGED_UNSOL_BCAST_PROBE_RESP only
for a transmitting BSS.
Signed-off-by: Manish Dharanenthiran <manish.dharanenthiran@oss.qualcomm.com>
---
net/mac80211/cfg.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/net/mac80211/cfg.c b/net/mac80211/cfg.c
index 23f4f9ec86d0..8b6e2a400b5a 100644
--- a/net/mac80211/cfg.c
+++ b/net/mac80211/cfg.c
@@ -1138,7 +1138,7 @@ static int ieee80211_set_fils_discovery(struct ieee80211_sub_if_data *sdata,
struct fils_discovery_data *new, *old = NULL;
struct ieee80211_fils_discovery *fd;
- if (!params->update)
+ if (!params->update || link_conf->nontransmitted)
return 0;
fd = &link_conf->fils_discovery;
@@ -1173,7 +1173,7 @@ ieee80211_set_unsol_bcast_probe_resp(struct ieee80211_sub_if_data *sdata,
{
struct unsol_bcast_probe_resp_data *new, *old = NULL;
- if (!params->update)
+ if (!params->update || link_conf->nontransmitted)
return 0;
link_conf->unsol_bcast_probe_resp_interval = params->interval;
---
base-commit: ca800a9302764c445de0da0e84d2252400a770ee
change-id: 20260817-fils-d17716cc2781
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH wireless-next] wifi: mac80211: Guard FILS discovery and unsolicited broadcast probe response
2026-08-20 16:07 [PATCH wireless-next] wifi: mac80211: Guard FILS discovery and unsolicited broadcast probe response Manish Dharanenthiran
@ 2026-09-04 10:16 ` Johannes Berg
0 siblings, 0 replies; 2+ messages in thread
From: Johannes Berg @ 2026-09-04 10:16 UTC (permalink / raw)
To: Manish Dharanenthiran; +Cc: linux-wireless
On Thu, 2026-08-20 at 21:37 +0530, Manish Dharanenthiran wrote:
>
> +++ b/net/mac80211/cfg.c
> @@ -1138,7 +1138,7 @@ static int ieee80211_set_fils_discovery(struct ieee80211_sub_if_data *sdata,
> struct fils_discovery_data *new, *old = NULL;
> struct ieee80211_fils_discovery *fd;
>
> - if (!params->update)
> + if (!params->update || link_conf->nontransmitted)
> return 0;
So why shouldn't we just reject it?
> fd = &link_conf->fils_discovery;
> @@ -1173,7 +1173,7 @@ ieee80211_set_unsol_bcast_probe_resp(struct ieee80211_sub_if_data *sdata,
> {
> struct unsol_bcast_probe_resp_data *new, *old = NULL;
>
> - if (!params->update)
> + if (!params->update || link_conf->nontransmitted)
> return 0;
Same here.
johannes
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2026-09-04 10:16 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-08-20 16:07 [PATCH wireless-next] wifi: mac80211: Guard FILS discovery and unsolicited broadcast probe response Manish Dharanenthiran
2026-09-04 10:16 ` Johannes Berg
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox