From: Jouni Malinen Date: Fri, 9 Apr 2010 10:36:06 +0000 (+0300) Subject: FT: Fix Reassociation Response in FT Protocol to include ANonce/SNonce X-Git-Tag: hostap_0_7_2~84 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6e80516ab995a88846975f6cba7757e010634d39;p=thirdparty%2Fhostap.git FT: Fix Reassociation Response in FT Protocol to include ANonce/SNonce These values are required to be included in the frame per IEEE Std 802.11r-2008, 11A.8.5. --- diff --git a/src/ap/wpa_auth_ft.c b/src/ap/wpa_auth_ft.c index 7922a7a68..bb28163d2 100644 --- a/src/ap/wpa_auth_ft.c +++ b/src/ap/wpa_auth_ft.c @@ -614,6 +614,7 @@ u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos, struct rsn_ftie *_ftie; struct wpa_ft_ies parse; u8 *ric_start; + u8 *anonce, *snonce; if (sm == NULL) return pos; @@ -652,6 +653,8 @@ u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos, subelem = wpa_ft_gtk_subelem(sm, &subelem_len); r0kh_id = sm->r0kh_id; r0kh_id_len = sm->r0kh_id_len; + anonce = sm->ANonce; + snonce = sm->SNonce; #ifdef CONFIG_IEEE80211W if (sm->mgmt_frame_prot) { u8 *igtk; @@ -677,8 +680,10 @@ u8 * wpa_sm_write_assoc_resp_ies(struct wpa_state_machine *sm, u8 *pos, } else { r0kh_id = conf->r0_key_holder; r0kh_id_len = conf->r0_key_holder_len; + anonce = NULL; + snonce = NULL; } - res = wpa_write_ftie(conf, r0kh_id, r0kh_id_len, NULL, NULL, pos, + res = wpa_write_ftie(conf, r0kh_id, r0kh_id_len, anonce, snonce, pos, end - pos, subelem, subelem_len); os_free(subelem); if (res < 0)