From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.01.org
Subject: [PATCH v2 5/7] station: set handshake->offload if required
Date: Tue, 30 Mar 2021 11:48:06 -0700 [thread overview]
Message-ID: <20210330184808.744574-5-prestwoj@gmail.com> (raw)
In-Reply-To: <20210330184808.744574-1-prestwoj@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 1780 bytes --]
If the selected AKM requires offloading set the flag in the
handshake as such. This also removes the need for
wiphy_support_cmds_auth_assoc.
---
src/station.c | 18 +++++++-----------
1 file changed, 7 insertions(+), 11 deletions(-)
diff --git a/src/station.c b/src/station.c
index 0329d990..e161421b 100644
--- a/src/station.c
+++ b/src/station.c
@@ -802,6 +802,7 @@ static int station_build_handshake_rsn(struct handshake_state *hs,
enum security security = network_get_security(network);
bool add_mde = false;
bool fils_hint = false;
+ bool offload = false;
struct ie_rsn_info bss_info;
uint8_t rsne_buf[256];
@@ -824,7 +825,12 @@ static int station_build_handshake_rsn(struct handshake_state *hs,
if (security == SECURITY_8021X && hs->support_fils)
fils_hint = station_has_erp_identity(network);
- info.akm_suites = wiphy_select_akm(wiphy, bss, fils_hint, NULL);
+ info.akm_suites = wiphy_select_akm(wiphy, bss, fils_hint, &offload);
+
+ hs->offload = offload;
+
+ if (hs->offload)
+ l_debug("Connection will offload 4-way handshake to firmware");
/*
* Special case for OWE. With OWE we still need to build up the
@@ -981,16 +987,6 @@ static struct handshake_state *station_handshake_setup(struct station *station,
goto no_psk;
handshake_state_set_passphrase(hs, passphrase);
-
- /*
- * TODO: This check isn't strictly correct since
- * some drivers may support EXTERNAL_AUTH but since
- * wiphy_can_connect takes this into account IWD should
- * have already rejected the connection if this was the
- * case.
- */
- if (!wiphy_supports_cmds_auth_assoc(wiphy))
- hs->offload = true;
} else {
const uint8_t *psk = network_get_psk(network);
--
2.26.2
next prev parent reply other threads:[~2021-03-30 18:48 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-30 18:48 [PATCH v2 1/7] wiphy: add offload out parameter to wiphy_can_connect_sae James Prestwood
2021-03-30 18:48 ` [PATCH v2 2/7] wiphy: fix wiphy_can_connect AKM checks James Prestwood
2021-03-30 19:58 ` Denis Kenzior
2021-03-30 18:48 ` [PATCH v2 3/7] wiphy: allow FT AKM to be used if Auth/Assoc is not supported James Prestwood
2021-03-30 18:48 ` [PATCH v2 4/7] netdev: allow PSK offload for FT AKMs James Prestwood
2021-03-30 20:25 ` Denis Kenzior
2021-03-30 20:40 ` James Prestwood
2021-03-30 18:48 ` James Prestwood [this message]
2021-03-30 18:48 ` [PATCH v2 6/7] doc: document new [General].4WayOffload James Prestwood
2021-03-30 20:49 ` Denis Kenzior
2021-03-30 18:48 ` [PATCH v2 7/7] wiphy: remove wiphy_supports_cmds_auth_assoc James Prestwood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210330184808.744574-5-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.01.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox