|
@@ -1244,6 +1244,7 @@ static void wpa_supplicant_process_3_of_4(struct wpa_sm *sm,
|
|
|
sm->cur_pmksa = sa;
|
|
|
}
|
|
|
|
|
|
+ sm->msg_3_of_4_ok = 1;
|
|
|
return;
|
|
|
|
|
|
failed:
|
|
@@ -1436,6 +1437,12 @@ static void wpa_supplicant_process_1_of_2(struct wpa_sm *sm,
|
|
|
int rekey, ret;
|
|
|
struct wpa_gtk_data gd;
|
|
|
|
|
|
+ if (!sm->msg_3_of_4_ok) {
|
|
|
+ wpa_msg(sm->ctx->msg_ctx, MSG_INFO,
|
|
|
+ "WPA: Group Key Handshake started prior to completion of 4-way handshake");
|
|
|
+ goto failed;
|
|
|
+ }
|
|
|
+
|
|
|
os_memset(&gd, 0, sizeof(gd));
|
|
|
|
|
|
rekey = wpa_sm_get_state(sm) == WPA_COMPLETED;
|
|
@@ -2295,6 +2302,8 @@ void wpa_sm_notify_disassoc(struct wpa_sm *sm)
|
|
|
|
|
|
/* Keys are not needed in the WPA state machine anymore */
|
|
|
wpa_sm_drop_sa(sm);
|
|
|
+
|
|
|
+ sm->msg_3_of_4_ok = 0;
|
|
|
}
|
|
|
|
|
|
|