FT: Configure FT XXKey as PMK for driver-based 4-way handshake
When using FT-EAP, the second half of MSK is used as the starting point for PMK key hierarchy. Configure that instead of the first half of MSK when using FT with driver-based 4-way handshake and FT protocol.
This commit is contained in:
parent
98ea943177
commit
09c395b4bb
1 changed files with 26 additions and 8 deletions
|
@ -254,6 +254,20 @@ static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
|
|||
"handshake");
|
||||
|
||||
pmk_len = PMK_LEN;
|
||||
if (wpa_key_mgmt_ft(wpa_s->key_mgmt)) {
|
||||
#ifdef CONFIG_IEEE80211R
|
||||
u8 buf[2 * PMK_LEN];
|
||||
wpa_printf(MSG_DEBUG, "RSN: Use FT XXKey as PMK for "
|
||||
"driver-based 4-way hs and FT");
|
||||
res = eapol_sm_get_key(eapol, buf, 2 * PMK_LEN);
|
||||
if (res == 0) {
|
||||
os_memcpy(pmk, buf + PMK_LEN, PMK_LEN);
|
||||
os_memset(buf, 0, sizeof(buf));
|
||||
}
|
||||
#else /* CONFIG_IEEE80211R */
|
||||
res = -1;
|
||||
#endif /* CONFIG_IEEE80211R */
|
||||
} else {
|
||||
res = eapol_sm_get_key(eapol, pmk, PMK_LEN);
|
||||
if (res) {
|
||||
/*
|
||||
|
@ -263,6 +277,7 @@ static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
|
|||
res = eapol_sm_get_key(eapol, pmk, 16);
|
||||
pmk_len = 16;
|
||||
}
|
||||
}
|
||||
|
||||
if (res) {
|
||||
wpa_printf(MSG_DEBUG, "Failed to get PMK from EAPOL state "
|
||||
|
@ -270,6 +285,9 @@ static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
|
|||
return;
|
||||
}
|
||||
|
||||
wpa_hexdump_key(MSG_DEBUG, "RSN: Configure PMK for driver-based 4-way "
|
||||
"handshake", pmk, pmk_len);
|
||||
|
||||
if (wpa_drv_set_key(wpa_s, WPA_ALG_PMK, NULL, 0, 0, NULL, 0, pmk,
|
||||
pmk_len)) {
|
||||
wpa_printf(MSG_DEBUG, "Failed to set PMK to the driver");
|
||||
|
|
Loading…
Reference in a new issue