|
@@ -153,6 +153,7 @@ static u8 * wpa_ft_gen_req_ies(struct wpa_sm *sm, size_t *len,
|
|
|
u16 capab;
|
|
|
|
|
|
sm->ft_completed = 0;
|
|
|
+ sm->ft_reassoc_completed = 0;
|
|
|
|
|
|
buf_len = 2 + sizeof(struct rsn_mdie) + 2 + sizeof(struct rsn_ftie) +
|
|
|
2 + sm->r0kh_id_len + ric_ies_len + 100;
|
|
@@ -687,6 +688,11 @@ int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies,
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
+ if (sm->ft_reassoc_completed) {
|
|
|
+ wpa_printf(MSG_DEBUG, "FT: Reassociation has already been completed for this FT protocol instance - ignore unexpected retransmission");
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+
|
|
|
if (wpa_ft_parse_ies(ies, ies_len, &parse) < 0) {
|
|
|
wpa_printf(MSG_DEBUG, "FT: Failed to parse IEs");
|
|
|
return -1;
|
|
@@ -787,6 +793,8 @@ int wpa_ft_validate_reassoc_resp(struct wpa_sm *sm, const u8 *ies,
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
+ sm->ft_reassoc_completed = 1;
|
|
|
+
|
|
|
if (wpa_ft_process_gtk_subelem(sm, parse.gtk, parse.gtk_len) < 0)
|
|
|
return -1;
|
|
|
|