Remove all PeerKey functionality
This was originally added to allow the IEEE 802.11 protocol to be tested, but there are no known fully functional implementations based on this nor any known deployments of PeerKey functionality. Furthermore, PeerKey design in the IEEE Std 802.11-2016 standard has already been marked as obsolete for DLS and it is being considered for complete removal in REVmd. This implementation did not really work, so it could not have been used in practice. For example, key configuration was using incorrect algorithm values (WPA_CIPHER_* instead of WPA_ALG_*) which resulted in mapping to an invalid WPA_ALG_* value for the actual driver operation. As such, the derived key could not have been successfully set for the link. Since there are bugs in this implementation and there does not seem to be any future for the PeerKey design with DLS (TDLS being the future for DLS), the best approach is to simply delete all this code to simplify the EAPOL-Key handling design and to get rid of any potential issues if these code paths were accidentially reachable. Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
2956fcc401
commit
a0bf1b68c0
45 changed files with 43 additions and 2092 deletions
|
@ -4086,17 +4086,6 @@ enum wpa_event_type {
|
|||
*/
|
||||
EVENT_PMKID_CANDIDATE,
|
||||
|
||||
/**
|
||||
* EVENT_STKSTART - Request STK handshake (MLME-STKSTART.request)
|
||||
*
|
||||
* This event can be used to inform wpa_supplicant about desire to set
|
||||
* up secure direct link connection between two stations as defined in
|
||||
* IEEE 802.11e with a new PeerKey mechanism that replaced the original
|
||||
* STAKey negotiation. The caller will need to set peer address for the
|
||||
* event.
|
||||
*/
|
||||
EVENT_STKSTART,
|
||||
|
||||
/**
|
||||
* EVENT_TDLS - Request TDLS operation
|
||||
*
|
||||
|
@ -4801,13 +4790,6 @@ union wpa_event_data {
|
|||
int preauth;
|
||||
} pmkid_candidate;
|
||||
|
||||
/**
|
||||
* struct stkstart - Data for EVENT_STKSTART
|
||||
*/
|
||||
struct stkstart {
|
||||
u8 peer[ETH_ALEN];
|
||||
} stkstart;
|
||||
|
||||
/**
|
||||
* struct tdls - Data for EVENT_TDLS
|
||||
*/
|
||||
|
|
|
@ -35,7 +35,6 @@ const char * event_to_string(enum wpa_event_type event)
|
|||
E2S(ASSOCINFO);
|
||||
E2S(INTERFACE_STATUS);
|
||||
E2S(PMKID_CANDIDATE);
|
||||
E2S(STKSTART);
|
||||
E2S(TDLS);
|
||||
E2S(FT_RESPONSE);
|
||||
E2S(IBSS_RSN_START);
|
||||
|
|
|
@ -483,19 +483,6 @@ static void wpa_driver_privsep_event_pmkid_candidate(void *ctx, u8 *buf,
|
|||
}
|
||||
|
||||
|
||||
static void wpa_driver_privsep_event_stkstart(void *ctx, u8 *buf, size_t len)
|
||||
{
|
||||
union wpa_event_data data;
|
||||
|
||||
if (len != ETH_ALEN)
|
||||
return;
|
||||
|
||||
os_memset(&data, 0, sizeof(data));
|
||||
os_memcpy(data.stkstart.peer, buf, ETH_ALEN);
|
||||
wpa_supplicant_event(ctx, EVENT_STKSTART, &data);
|
||||
}
|
||||
|
||||
|
||||
static void wpa_driver_privsep_event_ft_response(void *ctx, u8 *buf,
|
||||
size_t len)
|
||||
{
|
||||
|
@ -589,10 +576,6 @@ static void wpa_driver_privsep_receive(int sock, void *eloop_ctx,
|
|||
wpa_driver_privsep_event_pmkid_candidate(drv->ctx, event_buf,
|
||||
event_len);
|
||||
break;
|
||||
case PRIVSEP_EVENT_STKSTART:
|
||||
wpa_driver_privsep_event_stkstart(drv->ctx, event_buf,
|
||||
event_len);
|
||||
break;
|
||||
case PRIVSEP_EVENT_FT_RESPONSE:
|
||||
wpa_driver_privsep_event_ft_response(drv->ctx, event_buf,
|
||||
event_len);
|
||||
|
|
|
@ -290,15 +290,6 @@ wpa_driver_wext_event_wireless_custom(void *ctx, char *custom)
|
|||
done:
|
||||
os_free(resp_ies);
|
||||
os_free(req_ies);
|
||||
#ifdef CONFIG_PEERKEY
|
||||
} else if (os_strncmp(custom, "STKSTART.request=", 17) == 0) {
|
||||
if (hwaddr_aton(custom + 17, data.stkstart.peer)) {
|
||||
wpa_printf(MSG_DEBUG, "WEXT: unrecognized "
|
||||
"STKSTART.request '%s'", custom + 17);
|
||||
return;
|
||||
}
|
||||
wpa_supplicant_event(ctx, EVENT_STKSTART, &data);
|
||||
#endif /* CONFIG_PEERKEY */
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -470,7 +461,7 @@ static void wpa_driver_wext_event_wireless(struct wpa_driver_wext_data *drv,
|
|||
drv->assoc_resp_ies = NULL;
|
||||
wpa_supplicant_event(drv->ctx, EVENT_DISASSOC,
|
||||
NULL);
|
||||
|
||||
|
||||
} else {
|
||||
wpa_driver_wext_event_assoc_ies(drv);
|
||||
wpa_supplicant_event(drv->ctx, EVENT_ASSOC,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue