* [PATCH v6 4/5] network: prefer OWE transition BSS over open
@ 2021-09-17 21:36 James Prestwood
0 siblings, 0 replies; only message in thread
From: James Prestwood @ 2021-09-17 21:36 UTC (permalink / raw)
To: iwd
[-- Attachment #1: Type: text/plain, Size: 1575 bytes --]
There isn't much control station has with how BSS's are inserted to
a network object. The rank algorithm makes that decision. Because of
this we could end up in a situation where the Open BSS is preferred
over the OWE transition BSS.
In attempt to better handle this any Open BSS in this type of network
will not be chosen unless its the only candidate (e.g. no other BSSs,
inability to connect with OWE, or an improperly configured network).
---
src/network.c | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/src/network.c b/src/network.c
index f7172c78..711fb296 100644
--- a/src/network.c
+++ b/src/network.c
@@ -1110,6 +1110,11 @@ const struct l_queue_entry *network_bss_list_get_entries(
return l_queue_get_entries(network->bss_list);
}
+static bool bss_is_owe(struct scan_bss *bss)
+{
+ return !l_memeqzero(bss->owe_trans_bssid, 6) && bss->rsne;
+}
+
struct scan_bss *network_bss_select(struct network *network,
bool fallback_to_blacklist)
{
@@ -1135,6 +1140,17 @@ struct scan_bss *network_bss_select(struct network *network,
if (!candidate)
candidate = bss;
+ /* OWE Transition BSS */
+ if (!l_memeqzero(bss->owe_trans_bssid, 6)) {
+ /* Don't want to connect to the Open BSS if possible */
+ if (!bss->rsne)
+ continue;
+
+ /* Candidate is not OWE, set this as new candidate */
+ if (!bss_is_owe(candidate))
+ candidate = bss;
+ }
+
/* check if temporarily blacklisted */
if (l_queue_find(network->blacklist, match_bss, bss))
continue;
--
2.31.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2021-09-17 21:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-09-17 21:36 [PATCH v6 4/5] network: prefer OWE transition BSS over open James Prestwood
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox