From: James Prestwood <prestwoj@gmail.com>
To: iwd@lists.linux.dev
Cc: James Prestwood <prestwoj@gmail.com>
Subject: [PATCH v2 6/9] netdev: add netdev_ft_reassociate
Date: Wed, 6 Dec 2023 07:07:05 -0800 [thread overview]
Message-ID: <20231206150708.2080336-7-prestwoj@gmail.com> (raw)
In-Reply-To: <20231206150708.2080336-1-prestwoj@gmail.com>
Essentially exposes (and renames) netdev_ft_tx_associate in order to
be called similarly to netdev_reassociate/netdev_connect where a
connect callback can be provided. This will fix the current bug where
if association times out during FT IWD will hang and never transition
to disconnected.
This also removes the calling of the FT_ROAMED event and instead just
calls the connect callback (since its now set). This unifies the
callback path for reassociation and FT roaming.
---
src/netdev.c | 44 ++++++++++++++++++++++++++------------------
src/netdev.h | 5 +++++
2 files changed, 31 insertions(+), 18 deletions(-)
diff --git a/src/netdev.c b/src/netdev.c
index f2e887b4..7d52ffea 100644
--- a/src/netdev.c
+++ b/src/netdev.c
@@ -1409,16 +1409,14 @@ static void netdev_connect_ok(struct netdev *netdev)
scan_bss_free(netdev->fw_roam_bss);
netdev->fw_roam_bss = NULL;
- } else if (netdev->in_ft) {
- if (netdev->event_filter)
- netdev->event_filter(netdev, NETDEV_EVENT_FT_ROAMED,
- NULL, netdev->user_data);
- netdev->in_ft = false;
} else if (netdev->connect_cb) {
netdev->connect_cb(netdev, NETDEV_RESULT_OK, NULL,
netdev->user_data);
netdev->connect_cb = NULL;
- }
+ netdev->in_ft = false;
+ netdev->in_reassoc = false;
+ } else
+ l_warn("Connection event without a connect callback!");
netdev_rssi_polling_update(netdev);
@@ -4205,13 +4203,14 @@ static int netdev_tx_ft_frame(uint32_t ifindex, uint16_t frame_type,
return 0;
}
-static int netdev_ft_tx_associate(uint32_t ifindex, uint32_t freq,
- const uint8_t *prev_bssid,
- struct iovec *ft_iov, size_t n_ft_iov)
+int netdev_ft_reassociate(struct netdev *netdev,
+ const struct scan_bss *target_bss,
+ const struct scan_bss *orig_bss,
+ netdev_event_func_t event_filter,
+ netdev_connect_cb_t cb, void *user_data)
{
- struct netdev *netdev = netdev_find(ifindex);
- struct netdev_handshake_state *nhs;
struct handshake_state *hs = netdev->handshake;
+ struct netdev_handshake_state *nhs;
struct l_genl_msg *msg;
struct iovec iov[64];
unsigned int n_iov = L_ARRAY_SIZE(iov);
@@ -4223,11 +4222,14 @@ static int netdev_ft_tx_associate(uint32_t ifindex, uint32_t freq,
* At this point there is no going back with FT so reset all the flags
* needed to associate with a new BSS.
*/
- netdev->frequency = freq;
+ netdev->frequency = target_bss->frequency;
netdev->handshake->active_tk_index = 0;
netdev->associated = false;
netdev->operational = false;
netdev->in_ft = true;
+ netdev->event_filter = event_filter;
+ netdev->connect_cb = cb;
+ netdev->user_data = user_data;
/*
* Cancel commands that could be running because of EAPoL activity
@@ -4271,15 +4273,22 @@ static int netdev_ft_tx_associate(uint32_t ifindex, uint32_t freq,
c_iov = netdev_populate_common_ies(netdev, hs, msg, iov, n_iov, c_iov);
- if (!L_WARN_ON(n_iov - c_iov < n_ft_iov)) {
- memcpy(iov + c_iov, ft_iov, sizeof(*ft_iov) * n_ft_iov);
- c_iov += n_ft_iov;
- }
+ if (hs->supplicant_ie)
+ c_iov = iov_ie_append(iov, n_iov, c_iov, hs->supplicant_ie,
+ IE_LEN(hs->supplicant_ie));
+
+ if (hs->fte)
+ c_iov = iov_ie_append(iov, n_iov, c_iov, hs->fte,
+ IE_LEN(hs->fte));
+
+ if (hs->mde)
+ c_iov = iov_ie_append(iov, n_iov, c_iov, hs->mde,
+ IE_LEN(hs->mde));
mpdu_sort_ies(subtype, iov, c_iov);
l_genl_msg_append_attr(msg, NL80211_ATTR_PREV_BSSID, ETH_ALEN,
- prev_bssid);
+ orig_bss->addr);
l_genl_msg_append_attrv(msg, NL80211_ATTR_IE, iov, c_iov);
netdev->connect_cmd_id = l_genl_family_send(nl80211, msg,
@@ -6256,7 +6265,6 @@ static int netdev_init(void)
__eapol_set_install_pmk_func(netdev_set_pmk);
__ft_set_tx_frame_func(netdev_tx_ft_frame);
- __ft_set_tx_associate_func(netdev_ft_tx_associate);
unicast_watch = l_genl_add_unicast_watch(genl, NL80211_GENL_NAME,
netdev_unicast_notify,
diff --git a/src/netdev.h b/src/netdev.h
index 03d1b6e9..fb31b571 100644
--- a/src/netdev.h
+++ b/src/netdev.h
@@ -165,6 +165,11 @@ int netdev_reassociate(struct netdev *netdev,
struct handshake_state *hs,
netdev_event_func_t event_filter,
netdev_connect_cb_t cb, void *user_data);
+int netdev_ft_reassociate(struct netdev *netdev,
+ const struct scan_bss *target_bss,
+ const struct scan_bss *orig_bss,
+ netdev_event_func_t event_filter,
+ netdev_connect_cb_t cb, void *user_data);
int netdev_preauthenticate(struct netdev *netdev,
const struct scan_bss *target_bss,
--
2.34.1
next prev parent reply other threads:[~2023-12-06 15:07 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-12-06 15:06 [PATCH v2 0/9] Reassoc/FT roaming unification James Prestwood
2023-12-06 15:07 ` [PATCH v2 1/9] auto-t: add explicit stop() to IWD class James Prestwood
2023-12-06 15:07 ` [PATCH v2 2/9] auto-t: add association timeout test James Prestwood
2023-12-06 15:07 ` [PATCH v2 3/9] auto-t: only call set_value for changed values in default() James Prestwood
2023-12-06 15:07 ` [PATCH v2 4/9] ft: add FTE/RSNE building to ft_prepare_handshake James Prestwood
2023-12-06 16:36 ` Denis Kenzior
2023-12-06 17:08 ` James Prestwood
2023-12-06 17:14 ` Denis Kenzior
2023-12-06 17:59 ` James Prestwood
2023-12-06 15:07 ` [PATCH v2 5/9] ft: add ft_handshake_setup James Prestwood
2023-12-06 16:38 ` Denis Kenzior
2023-12-06 16:46 ` James Prestwood
2023-12-06 15:07 ` James Prestwood [this message]
2023-12-06 16:40 ` [PATCH v2 6/9] netdev: add netdev_ft_reassociate Denis Kenzior
2023-12-06 16:49 ` James Prestwood
2023-12-06 15:07 ` [PATCH v2 7/9] station: use netdev_ft_reassociate James Prestwood
2023-12-06 15:07 ` [PATCH v2 8/9] ft: remove ft_associate and helpers James Prestwood
2023-12-06 15:07 ` [PATCH v2 9/9] netdev: station: remove NETDEV_EVENT_FT_ROAMED 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=20231206150708.2080336-7-prestwoj@gmail.com \
--to=prestwoj@gmail.com \
--cc=iwd@lists.linux.dev \
/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