TDLS: Fix MIC calculation for teardown frame to depend on reason code
The reason code used for calculating the MIC should correspond to the reason code with which the teardown frame is sent, as the receiver shall use the one obtained in the frame for validating the MIC. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
3887878e53
commit
0cb12963b6
1 changed files with 5 additions and 3 deletions
|
@ -680,8 +680,11 @@ int wpa_tdls_send_teardown(struct wpa_sm *sm, const u8 *addr, u16 reason_code)
|
||||||
return -1;
|
return -1;
|
||||||
pos = rbuf;
|
pos = rbuf;
|
||||||
|
|
||||||
if (!wpa_tdls_get_privacy(sm) || !peer->tpk_set || !peer->tpk_success)
|
if (!wpa_tdls_get_privacy(sm) || !peer->tpk_set || !peer->tpk_success) {
|
||||||
|
/* Overwrite the reason code */
|
||||||
|
reason_code = WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED;
|
||||||
goto skip_ies;
|
goto skip_ies;
|
||||||
|
}
|
||||||
|
|
||||||
ftie = (struct wpa_tdls_ftie *) pos;
|
ftie = (struct wpa_tdls_ftie *) pos;
|
||||||
ftie->ie_type = WLAN_EID_FAST_BSS_TRANSITION;
|
ftie->ie_type = WLAN_EID_FAST_BSS_TRANSITION;
|
||||||
|
@ -715,8 +718,7 @@ skip_ies:
|
||||||
|
|
||||||
/* request driver to send Teardown using this FTIE */
|
/* request driver to send Teardown using this FTIE */
|
||||||
wpa_tdls_tpk_send(sm, addr, WLAN_TDLS_TEARDOWN, 0,
|
wpa_tdls_tpk_send(sm, addr, WLAN_TDLS_TEARDOWN, 0,
|
||||||
WLAN_REASON_TDLS_TEARDOWN_UNSPECIFIED, rbuf,
|
reason_code, rbuf, pos - rbuf);
|
||||||
pos - rbuf);
|
|
||||||
os_free(rbuf);
|
os_free(rbuf);
|
||||||
|
|
||||||
/* clear the Peerkey statemachine */
|
/* clear the Peerkey statemachine */
|
||||||
|
|
Loading…
Reference in a new issue