]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
FT: Request reassociation after successful FT Action frame exchange
authorJouni Malinen <j@w1.fi>
Sat, 13 Mar 2010 15:14:41 +0000 (17:14 +0200)
committerJouni Malinen <j@w1.fi>
Sat, 13 Mar 2010 15:14:41 +0000 (17:14 +0200)
wpa_supplicant/events.c
wpa_supplicant/sme.c
wpa_supplicant/sme.h

index 866b638a2aa0ea0b4b2ebcdf1fd9caf2acdc615a..cfe6dc33c04e57b5a0bfddd0ffc33ef7c037d675 100644 (file)
@@ -1545,7 +1545,7 @@ static void ft_rx_action(struct wpa_supplicant *wpa_s, const u8 *data,
                                    target_ap_addr, NULL, 0) < 0)
                return;
 
-       /* TODO: trigger re-association with the target AP */
+       sme_associate(wpa_s, WPAS_MODE_INFRA, target_ap_addr, WLAN_AUTH_FT);
 }
 #endif /* CONFIG_IEEE80211R */
 
index 27b7d253b29a6c6e7c4cac329c68e3b966b64181..1853d23057b45b379a3e6753903d7d3052167e5e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * wpa_supplicant - SME
- * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -239,7 +239,6 @@ void sme_authenticate(struct wpa_supplicant *wpa_s,
 
 void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
 {
-       struct wpa_driver_associate_params params;
        struct wpa_ssid *ssid = wpa_s->current_ssid;
 
        if (ssid == NULL) {
@@ -285,8 +284,18 @@ void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
        }
 #endif /* CONFIG_IEEE80211R */
 
+       sme_associate(wpa_s, ssid->mode, data->auth.peer,
+                     data->auth.auth_type);
+}
+
+
+void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
+                  const u8 *bssid, u16 auth_type)
+{
+       struct wpa_driver_associate_params params;
+
        os_memset(&params, 0, sizeof(params));
-       params.bssid = data->auth.peer;
+       params.bssid = bssid;
        params.ssid = wpa_s->sme.ssid;
        params.ssid_len = wpa_s->sme.ssid_len;
        params.freq = wpa_s->sme.freq;
@@ -294,12 +303,12 @@ void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data)
                wpa_s->sme.assoc_req_ie : NULL;
        params.wpa_ie_len = wpa_s->sme.assoc_req_ie_len;
 #ifdef CONFIG_IEEE80211R
-       if (data->auth.auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
+       if (auth_type == WLAN_AUTH_FT && wpa_s->sme.ft_ies) {
                params.wpa_ie = wpa_s->sme.ft_ies;
                params.wpa_ie_len = wpa_s->sme.ft_ies_len;
        }
 #endif /* CONFIG_IEEE80211R */
-       params.mode = ssid->mode;
+       params.mode = mode;
        params.mgmt_frame_protection = wpa_s->sme.mfp;
        if (wpa_s->sme.prev_bssid_set)
                params.prev_bssid = wpa_s->sme.prev_bssid;
index adc133f0f17373e5f4372d9fade75fa2e1e94516..3ec8cc936e88887221e76427dd110b51b0b48cb8 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * wpa_supplicant - SME
- * Copyright (c) 2009, Jouni Malinen <j@w1.fi>
+ * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License version 2 as
@@ -19,6 +19,8 @@
 
 void sme_authenticate(struct wpa_supplicant *wpa_s,
                      struct wpa_bss *bss, struct wpa_ssid *ssid);
+void sme_associate(struct wpa_supplicant *wpa_s, enum wpas_mode mode,
+                  const u8 *bssid, u16 auth_type);
 void sme_event_auth(struct wpa_supplicant *wpa_s, union wpa_event_data *data);
 int sme_update_ft_ies(struct wpa_supplicant *wpa_s, const u8 *md,
                      const u8 *ies, size_t ies_len);