2 * hostapd - IEEE 802.11r - Fast BSS Transition
3 * Copyright (c) 2004-2009, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
15 #include "utils/includes.h"
17 #include "utils/common.h"
18 #include "common/ieee802_11_defs.h"
19 #include "common/ieee802_11_common.h"
20 #include "crypto/aes_wrap.h"
21 #include "ap_config.h"
22 #include "ieee802_11.h"
25 #include "wpa_auth_i.h"
26 #include "wpa_auth_ie.h"
29 #ifdef CONFIG_IEEE80211R
49 static int wpa_ft_parse_ies(const u8
*ies
, size_t ies_len
,
50 struct wpa_ft_ies
*parse
);
53 static int wpa_ft_rrb_send(struct wpa_authenticator
*wpa_auth
, const u8
*dst
,
54 const u8
*data
, size_t data_len
)
56 if (wpa_auth
->cb
.send_ether
== NULL
)
58 wpa_printf(MSG_DEBUG
, "FT: RRB send to " MACSTR
, MAC2STR(dst
));
59 return wpa_auth
->cb
.send_ether(wpa_auth
->cb
.ctx
, dst
, ETH_P_RRB
,
64 static int wpa_ft_action_send(struct wpa_authenticator
*wpa_auth
,
65 const u8
*dst
, const u8
*data
, size_t data_len
)
67 if (wpa_auth
->cb
.send_ft_action
== NULL
)
69 return wpa_auth
->cb
.send_ft_action(wpa_auth
->cb
.ctx
, dst
,
74 static struct wpa_state_machine
*
75 wpa_ft_add_sta(struct wpa_authenticator
*wpa_auth
, const u8
*sta_addr
)
77 if (wpa_auth
->cb
.add_sta
== NULL
)
79 return wpa_auth
->cb
.add_sta(wpa_auth
->cb
.ctx
, sta_addr
);
83 int wpa_write_mdie(struct wpa_auth_config
*conf
, u8
*buf
, size_t len
)
87 if (len
< 2 + sizeof(struct rsn_mdie
))
90 *pos
++ = WLAN_EID_MOBILITY_DOMAIN
;
91 *pos
++ = MOBILITY_DOMAIN_ID_LEN
+ 1;
92 os_memcpy(pos
, conf
->mobility_domain
, MOBILITY_DOMAIN_ID_LEN
);
93 pos
+= MOBILITY_DOMAIN_ID_LEN
;
94 capab
= RSN_FT_CAPAB_FT_OVER_DS
;
101 int wpa_write_ftie(struct wpa_auth_config
*conf
, const u8
*r0kh_id
,
103 const u8
*anonce
, const u8
*snonce
,
104 u8
*buf
, size_t len
, const u8
*subelem
,
107 u8
*pos
= buf
, *ielen
;
108 struct rsn_ftie
*hdr
;
110 if (len
< 2 + sizeof(*hdr
) + 2 + FT_R1KH_ID_LEN
+ 2 + r0kh_id_len
+
114 *pos
++ = WLAN_EID_FAST_BSS_TRANSITION
;
117 hdr
= (struct rsn_ftie
*) pos
;
118 os_memset(hdr
, 0, sizeof(*hdr
));
120 WPA_PUT_LE16(hdr
->mic_control
, 0);
122 os_memcpy(hdr
->anonce
, anonce
, WPA_NONCE_LEN
);
124 os_memcpy(hdr
->snonce
, snonce
, WPA_NONCE_LEN
);
126 /* Optional Parameters */
127 *pos
++ = FTIE_SUBELEM_R1KH_ID
;
128 *pos
++ = FT_R1KH_ID_LEN
;
129 os_memcpy(pos
, conf
->r1_key_holder
, FT_R1KH_ID_LEN
);
130 pos
+= FT_R1KH_ID_LEN
;
133 *pos
++ = FTIE_SUBELEM_R0KH_ID
;
134 *pos
++ = r0kh_id_len
;
135 os_memcpy(pos
, r0kh_id
, r0kh_id_len
);
140 os_memcpy(pos
, subelem
, subelem_len
);
144 *ielen
= pos
- buf
- 2;
150 struct wpa_ft_pmk_r0_sa
{
151 struct wpa_ft_pmk_r0_sa
*next
;
153 u8 pmk_r0_name
[WPA_PMK_NAME_LEN
];
155 int pairwise
; /* Pairwise cipher suite, WPA_CIPHER_* */
156 /* TODO: expiration, identity, radius_class, EAP type, VLAN ID */
160 struct wpa_ft_pmk_r1_sa
{
161 struct wpa_ft_pmk_r1_sa
*next
;
163 u8 pmk_r1_name
[WPA_PMK_NAME_LEN
];
165 int pairwise
; /* Pairwise cipher suite, WPA_CIPHER_* */
166 /* TODO: expiration, identity, radius_class, EAP type, VLAN ID */
169 struct wpa_ft_pmk_cache
{
170 struct wpa_ft_pmk_r0_sa
*pmk_r0
;
171 struct wpa_ft_pmk_r1_sa
*pmk_r1
;
174 struct wpa_ft_pmk_cache
* wpa_ft_pmk_cache_init(void)
176 struct wpa_ft_pmk_cache
*cache
;
178 cache
= os_zalloc(sizeof(*cache
));
184 void wpa_ft_pmk_cache_deinit(struct wpa_ft_pmk_cache
*cache
)
186 struct wpa_ft_pmk_r0_sa
*r0
, *r0prev
;
187 struct wpa_ft_pmk_r1_sa
*r1
, *r1prev
;
193 os_memset(r0prev
->pmk_r0
, 0, PMK_LEN
);
201 os_memset(r1prev
->pmk_r1
, 0, PMK_LEN
);
209 static int wpa_ft_store_pmk_r0(struct wpa_authenticator
*wpa_auth
,
210 const u8
*spa
, const u8
*pmk_r0
,
211 const u8
*pmk_r0_name
, int pairwise
)
213 struct wpa_ft_pmk_cache
*cache
= wpa_auth
->ft_pmk_cache
;
214 struct wpa_ft_pmk_r0_sa
*r0
;
216 /* TODO: add expiration and limit on number of entries in cache */
218 r0
= os_zalloc(sizeof(*r0
));
222 os_memcpy(r0
->pmk_r0
, pmk_r0
, PMK_LEN
);
223 os_memcpy(r0
->pmk_r0_name
, pmk_r0_name
, WPA_PMK_NAME_LEN
);
224 os_memcpy(r0
->spa
, spa
, ETH_ALEN
);
225 r0
->pairwise
= pairwise
;
227 r0
->next
= cache
->pmk_r0
;
234 static int wpa_ft_fetch_pmk_r0(struct wpa_authenticator
*wpa_auth
,
235 const u8
*spa
, const u8
*pmk_r0_name
,
236 u8
*pmk_r0
, int *pairwise
)
238 struct wpa_ft_pmk_cache
*cache
= wpa_auth
->ft_pmk_cache
;
239 struct wpa_ft_pmk_r0_sa
*r0
;
243 if (os_memcmp(r0
->spa
, spa
, ETH_ALEN
) == 0 &&
244 os_memcmp(r0
->pmk_r0_name
, pmk_r0_name
, WPA_PMK_NAME_LEN
)
246 os_memcpy(pmk_r0
, r0
->pmk_r0
, PMK_LEN
);
248 *pairwise
= r0
->pairwise
;
259 static int wpa_ft_store_pmk_r1(struct wpa_authenticator
*wpa_auth
,
260 const u8
*spa
, const u8
*pmk_r1
,
261 const u8
*pmk_r1_name
, int pairwise
)
263 struct wpa_ft_pmk_cache
*cache
= wpa_auth
->ft_pmk_cache
;
264 struct wpa_ft_pmk_r1_sa
*r1
;
266 /* TODO: add expiration and limit on number of entries in cache */
268 r1
= os_zalloc(sizeof(*r1
));
272 os_memcpy(r1
->pmk_r1
, pmk_r1
, PMK_LEN
);
273 os_memcpy(r1
->pmk_r1_name
, pmk_r1_name
, WPA_PMK_NAME_LEN
);
274 os_memcpy(r1
->spa
, spa
, ETH_ALEN
);
275 r1
->pairwise
= pairwise
;
277 r1
->next
= cache
->pmk_r1
;
284 static int wpa_ft_fetch_pmk_r1(struct wpa_authenticator
*wpa_auth
,
285 const u8
*spa
, const u8
*pmk_r1_name
,
286 u8
*pmk_r1
, int *pairwise
)
288 struct wpa_ft_pmk_cache
*cache
= wpa_auth
->ft_pmk_cache
;
289 struct wpa_ft_pmk_r1_sa
*r1
;
293 if (os_memcmp(r1
->spa
, spa
, ETH_ALEN
) == 0 &&
294 os_memcmp(r1
->pmk_r1_name
, pmk_r1_name
, WPA_PMK_NAME_LEN
)
296 os_memcpy(pmk_r1
, r1
->pmk_r1
, PMK_LEN
);
298 *pairwise
= r1
->pairwise
;
309 static int wpa_ft_pull_pmk_r1(struct wpa_authenticator
*wpa_auth
,
310 const u8
*s1kh_id
, const u8
*r0kh_id
,
311 size_t r0kh_id_len
, const u8
*pmk_r0_name
)
313 struct ft_remote_r0kh
*r0kh
;
314 struct ft_r0kh_r1kh_pull_frame frame
, f
;
316 r0kh
= wpa_auth
->conf
.r0kh_list
;
318 if (r0kh
->id_len
== r0kh_id_len
&&
319 os_memcmp(r0kh
->id
, r0kh_id
, r0kh_id_len
) == 0)
326 wpa_printf(MSG_DEBUG
, "FT: Send PMK-R1 pull request to remote R0KH "
327 "address " MACSTR
, MAC2STR(r0kh
->addr
));
329 os_memset(&frame
, 0, sizeof(frame
));
330 frame
.frame_type
= RSN_REMOTE_FRAME_TYPE_FT_RRB
;
331 frame
.packet_type
= FT_PACKET_R0KH_R1KH_PULL
;
332 frame
.data_length
= host_to_le16(FT_R0KH_R1KH_PULL_DATA_LEN
);
333 os_memcpy(frame
.ap_address
, wpa_auth
->addr
, ETH_ALEN
);
335 /* aes_wrap() does not support inplace encryption, so use a temporary
336 * buffer for the data. */
337 if (os_get_random(f
.nonce
, sizeof(f
.nonce
))) {
338 wpa_printf(MSG_DEBUG
, "FT: Failed to get random data for "
342 os_memcpy(f
.pmk_r0_name
, pmk_r0_name
, WPA_PMK_NAME_LEN
);
343 os_memcpy(f
.r1kh_id
, wpa_auth
->conf
.r1_key_holder
, FT_R1KH_ID_LEN
);
344 os_memcpy(f
.s1kh_id
, s1kh_id
, ETH_ALEN
);
346 if (aes_wrap(r0kh
->key
, (FT_R0KH_R1KH_PULL_DATA_LEN
+ 7) / 8,
347 f
.nonce
, frame
.nonce
) < 0)
350 wpa_ft_rrb_send(wpa_auth
, r0kh
->addr
, (u8
*) &frame
, sizeof(frame
));
356 int wpa_auth_derive_ptk_ft(struct wpa_state_machine
*sm
, const u8
*pmk
,
357 struct wpa_ptk
*ptk
, size_t ptk_len
)
359 u8 pmk_r0
[PMK_LEN
], pmk_r0_name
[WPA_PMK_NAME_LEN
];
361 u8 ptk_name
[WPA_PMK_NAME_LEN
];
362 const u8
*mdid
= sm
->wpa_auth
->conf
.mobility_domain
;
363 const u8
*r0kh
= sm
->wpa_auth
->conf
.r0_key_holder
;
364 size_t r0kh_len
= sm
->wpa_auth
->conf
.r0_key_holder_len
;
365 const u8
*r1kh
= sm
->wpa_auth
->conf
.r1_key_holder
;
366 const u8
*ssid
= sm
->wpa_auth
->conf
.ssid
;
367 size_t ssid_len
= sm
->wpa_auth
->conf
.ssid_len
;
370 if (sm
->xxkey_len
== 0) {
371 wpa_printf(MSG_DEBUG
, "FT: XXKey not available for key "
376 wpa_derive_pmk_r0(sm
->xxkey
, sm
->xxkey_len
, ssid
, ssid_len
, mdid
,
377 r0kh
, r0kh_len
, sm
->addr
, pmk_r0
, pmk_r0_name
);
378 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R0", pmk_r0
, PMK_LEN
);
379 wpa_hexdump(MSG_DEBUG
, "FT: PMKR0Name", pmk_r0_name
, WPA_PMK_NAME_LEN
);
380 wpa_ft_store_pmk_r0(sm
->wpa_auth
, sm
->addr
, pmk_r0
, pmk_r0_name
,
383 wpa_derive_pmk_r1(pmk_r0
, pmk_r0_name
, r1kh
, sm
->addr
,
384 pmk_r1
, sm
->pmk_r1_name
);
385 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R1", pmk_r1
, PMK_LEN
);
386 wpa_hexdump(MSG_DEBUG
, "FT: PMKR1Name", sm
->pmk_r1_name
,
388 wpa_ft_store_pmk_r1(sm
->wpa_auth
, sm
->addr
, pmk_r1
, sm
->pmk_r1_name
,
391 wpa_pmk_r1_to_ptk(pmk_r1
, sm
->SNonce
, sm
->ANonce
, sm
->addr
,
392 sm
->wpa_auth
->addr
, sm
->pmk_r1_name
,
393 (u8
*) ptk
, ptk_len
, ptk_name
);
394 wpa_hexdump_key(MSG_DEBUG
, "FT: PTK", (u8
*) ptk
, ptk_len
);
395 wpa_hexdump(MSG_DEBUG
, "FT: PTKName", ptk_name
, WPA_PMK_NAME_LEN
);
401 static inline int wpa_auth_get_seqnum(struct wpa_authenticator
*wpa_auth
,
402 const u8
*addr
, int idx
, u8
*seq
)
404 if (wpa_auth
->cb
.get_seqnum
== NULL
)
406 return wpa_auth
->cb
.get_seqnum(wpa_auth
->cb
.ctx
, addr
, idx
, seq
);
410 static u8
* wpa_ft_gtk_subelem(struct wpa_state_machine
*sm
, size_t *len
)
413 struct wpa_group
*gsm
= sm
->group
;
414 size_t subelem_len
, pad_len
;
419 key_len
= gsm
->GTK_len
;
420 if (key_len
> sizeof(keybuf
))
424 * Pad key for AES Key Wrap if it is not multiple of 8 bytes or is less
427 pad_len
= key_len
% 8;
429 pad_len
= 8 - pad_len
;
430 if (key_len
+ pad_len
< 16)
433 os_memcpy(keybuf
, gsm
->GTK
[gsm
->GN
- 1], key_len
);
434 os_memset(keybuf
+ key_len
, 0, pad_len
);
435 keybuf
[key_len
] = 0xdd;
439 key
= gsm
->GTK
[gsm
->GN
- 1];
442 * Sub-elem ID[1] | Length[1] | Key Info[2] | Key Length[1] | RSC[8] |
445 subelem_len
= 13 + key_len
+ 8;
446 subelem
= os_zalloc(subelem_len
);
450 subelem
[0] = FTIE_SUBELEM_GTK
;
451 subelem
[1] = 11 + key_len
+ 8;
452 /* Key ID in B0-B1 of Key Info */
453 WPA_PUT_LE16(&subelem
[2], gsm
->GN
& 0x03);
454 subelem
[4] = gsm
->GTK_len
;
455 wpa_auth_get_seqnum(sm
->wpa_auth
, NULL
, gsm
->GN
, subelem
+ 5);
456 if (aes_wrap(sm
->PTK
.kek
, key_len
/ 8, key
, subelem
+ 13)) {
466 #ifdef CONFIG_IEEE80211W
467 static u8
* wpa_ft_igtk_subelem(struct wpa_state_machine
*sm
, size_t *len
)
470 struct wpa_group
*gsm
= sm
->group
;
473 /* Sub-elem ID[1] | Length[1] | KeyID[2] | IPN[6] | Key Length[1] |
475 subelem_len
= 1 + 1 + 2 + 6 + 1 + WPA_IGTK_LEN
+ 8;
476 subelem
= os_zalloc(subelem_len
);
481 *pos
++ = FTIE_SUBELEM_IGTK
;
482 *pos
++ = subelem_len
- 2;
483 WPA_PUT_LE16(pos
, gsm
->GN_igtk
);
485 wpa_auth_get_seqnum(sm
->wpa_auth
, NULL
, gsm
->GN_igtk
, pos
);
487 *pos
++ = WPA_IGTK_LEN
;
488 if (aes_wrap(sm
->PTK
.kek
, WPA_IGTK_LEN
/ 8,
489 gsm
->IGTK
[gsm
->GN_igtk
- 4], pos
)) {
497 #endif /* CONFIG_IEEE80211W */
500 static u8
* wpa_ft_process_rdie(u8
*pos
, u8
*end
, u8 id
, u8 descr_count
,
501 const u8
*ies
, size_t ies_len
)
503 struct ieee802_11_elems parse
;
504 struct rsn_rdie
*rdie
;
506 wpa_printf(MSG_DEBUG
, "FT: Resource Request: id=%d descr_count=%d",
508 wpa_hexdump(MSG_MSGDUMP
, "FT: Resource descriptor IE(s)",
511 if (end
- pos
< (int) sizeof(*rdie
)) {
512 wpa_printf(MSG_ERROR
, "FT: Not enough room for response RDIE");
516 *pos
++ = WLAN_EID_RIC_DATA
;
517 *pos
++ = sizeof(*rdie
);
518 rdie
= (struct rsn_rdie
*) pos
;
520 rdie
->descr_count
= 0;
521 rdie
->status_code
= host_to_le16(WLAN_STATUS_SUCCESS
);
522 pos
+= sizeof(*rdie
);
524 if (ieee802_11_parse_elems((u8
*) ies
, ies_len
, &parse
, 1) ==
526 wpa_printf(MSG_DEBUG
, "FT: Failed to parse request IEs");
528 host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE
);
533 if (parse
.wmm_tspec
) {
534 struct wmm_tspec_element
*tspec
;
537 if (parse
.wmm_tspec_len
+ 2 < (int) sizeof(*tspec
)) {
538 wpa_printf(MSG_DEBUG
, "FT: Too short WMM TSPEC IE "
539 "(%d)", (int) parse
.wmm_tspec_len
);
541 host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE
);
544 if (end
- pos
< (int) sizeof(*tspec
)) {
545 wpa_printf(MSG_ERROR
, "FT: Not enough room for "
548 host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE
);
551 tspec
= (struct wmm_tspec_element
*) pos
;
552 os_memcpy(tspec
, parse
.wmm_tspec
- 2, sizeof(*tspec
));
553 res
= wmm_process_tspec(tspec
);
554 wpa_printf(MSG_DEBUG
, "FT: ADDTS processing result: %d", res
);
555 if (res
== WMM_ADDTS_STATUS_INVALID_PARAMETERS
)
557 host_to_le16(WLAN_STATUS_INVALID_PARAMETERS
);
558 else if (res
== WMM_ADDTS_STATUS_REFUSED
)
560 host_to_le16(WLAN_STATUS_REQUEST_DECLINED
);
562 /* TSPEC accepted; include updated TSPEC in response */
563 rdie
->descr_count
= 1;
564 pos
+= sizeof(*tspec
);
568 #endif /* NEED_AP_MLME */
570 wpa_printf(MSG_DEBUG
, "FT: No supported resource requested");
571 rdie
->status_code
= host_to_le16(WLAN_STATUS_UNSPECIFIED_FAILURE
);
576 static u8
* wpa_ft_process_ric(u8
*pos
, u8
*end
, const u8
*ric
, size_t ric_len
)
578 const u8
*rpos
, *start
;
579 const struct rsn_rdie
*rdie
;
581 wpa_hexdump(MSG_MSGDUMP
, "FT: RIC Request", ric
, ric_len
);
584 while (rpos
+ sizeof(*rdie
) < ric
+ ric_len
) {
585 if (rpos
[0] != WLAN_EID_RIC_DATA
|| rpos
[1] < sizeof(*rdie
) ||
586 rpos
+ 2 + rpos
[1] > ric
+ ric_len
)
588 rdie
= (const struct rsn_rdie
*) (rpos
+ 2);
592 while (rpos
+ 2 <= ric
+ ric_len
&&
593 rpos
+ 2 + rpos
[1] <= ric
+ ric_len
) {
594 if (rpos
[0] == WLAN_EID_RIC_DATA
)
598 pos
= wpa_ft_process_rdie(pos
, end
, rdie
->id
,
600 start
, rpos
- start
);
607 u8
* wpa_sm_write_assoc_resp_ies(struct wpa_state_machine
*sm
, u8
*pos
,
608 size_t max_len
, int auth_alg
,
609 const u8
*req_ies
, size_t req_ies_len
)
611 u8
*end
, *mdie
, *ftie
, *rsnie
= NULL
, *r0kh_id
, *subelem
= NULL
;
612 size_t mdie_len
, ftie_len
, rsnie_len
= 0, r0kh_id_len
, subelem_len
= 0;
614 struct wpa_auth_config
*conf
;
615 struct rsn_ftie
*_ftie
;
616 struct wpa_ft_ies parse
;
623 conf
= &sm
->wpa_auth
->conf
;
625 if (sm
->wpa_key_mgmt
!= WPA_KEY_MGMT_FT_IEEE8021X
&&
626 sm
->wpa_key_mgmt
!= WPA_KEY_MGMT_FT_PSK
)
631 if (auth_alg
== WLAN_AUTH_FT
) {
633 * RSN (only present if this is a Reassociation Response and
634 * part of a fast BSS transition)
636 res
= wpa_write_rsn_ie(conf
, pos
, end
- pos
, sm
->pmk_r1_name
);
644 /* Mobility Domain Information */
645 res
= wpa_write_mdie(conf
, pos
, end
- pos
);
652 /* Fast BSS Transition Information */
653 if (auth_alg
== WLAN_AUTH_FT
) {
654 subelem
= wpa_ft_gtk_subelem(sm
, &subelem_len
);
655 r0kh_id
= sm
->r0kh_id
;
656 r0kh_id_len
= sm
->r0kh_id_len
;
659 #ifdef CONFIG_IEEE80211W
660 if (sm
->mgmt_frame_prot
) {
664 igtk
= wpa_ft_igtk_subelem(sm
, &igtk_len
);
669 nbuf
= os_realloc(subelem
, subelem_len
+ igtk_len
);
676 os_memcpy(subelem
+ subelem_len
, igtk
, igtk_len
);
677 subelem_len
+= igtk_len
;
680 #endif /* CONFIG_IEEE80211W */
682 r0kh_id
= conf
->r0_key_holder
;
683 r0kh_id_len
= conf
->r0_key_holder_len
;
687 res
= wpa_write_ftie(conf
, r0kh_id
, r0kh_id_len
, anonce
, snonce
, pos
,
688 end
- pos
, subelem
, subelem_len
);
696 os_free(sm
->assoc_resp_ftie
);
697 sm
->assoc_resp_ftie
= os_malloc(ftie_len
);
698 if (sm
->assoc_resp_ftie
)
699 os_memcpy(sm
->assoc_resp_ftie
, ftie
, ftie_len
);
701 _ftie
= (struct rsn_ftie
*) (ftie
+ 2);
702 if (auth_alg
== WLAN_AUTH_FT
)
703 _ftie
->mic_control
[1] = 3; /* Information element count */
706 if (wpa_ft_parse_ies(req_ies
, req_ies_len
, &parse
) == 0 && parse
.ric
) {
707 pos
= wpa_ft_process_ric(pos
, end
, parse
.ric
, parse
.ric_len
);
708 if (auth_alg
== WLAN_AUTH_FT
)
709 _ftie
->mic_control
[1] +=
710 ieee802_11_ie_count(ric_start
,
713 if (ric_start
== pos
)
716 if (auth_alg
== WLAN_AUTH_FT
&&
717 wpa_ft_mic(sm
->PTK
.kck
, sm
->addr
, sm
->wpa_auth
->addr
, 6,
718 mdie
, mdie_len
, ftie
, ftie_len
,
720 ric_start
, ric_start
? pos
- ric_start
: 0,
722 wpa_printf(MSG_DEBUG
, "FT: Failed to calculate MIC");
728 static int wpa_ft_parse_ftie(const u8
*ie
, size_t ie_len
,
729 struct wpa_ft_ies
*parse
)
734 parse
->ftie_len
= ie_len
;
736 pos
= ie
+ sizeof(struct rsn_ftie
);
739 while (pos
+ 2 <= end
&& pos
+ 2 + pos
[1] <= end
) {
741 case FTIE_SUBELEM_R1KH_ID
:
742 if (pos
[1] != FT_R1KH_ID_LEN
) {
743 wpa_printf(MSG_DEBUG
, "FT: Invalid R1KH-ID "
744 "length in FTIE: %d", pos
[1]);
747 parse
->r1kh_id
= pos
+ 2;
749 case FTIE_SUBELEM_GTK
:
750 parse
->gtk
= pos
+ 2;
751 parse
->gtk_len
= pos
[1];
753 case FTIE_SUBELEM_R0KH_ID
:
754 if (pos
[1] < 1 || pos
[1] > FT_R0KH_ID_MAX_LEN
) {
755 wpa_printf(MSG_DEBUG
, "FT: Invalid R0KH-ID "
756 "length in FTIE: %d", pos
[1]);
759 parse
->r0kh_id
= pos
+ 2;
760 parse
->r0kh_id_len
= pos
[1];
771 static int wpa_ft_parse_ies(const u8
*ies
, size_t ies_len
,
772 struct wpa_ft_ies
*parse
)
775 struct wpa_ie_data data
;
777 const struct rsn_ftie
*ftie
;
778 int prot_ie_count
= 0;
780 os_memset(parse
, 0, sizeof(*parse
));
786 while (pos
+ 2 <= end
&& pos
+ 2 + pos
[1] <= end
) {
789 parse
->rsn
= pos
+ 2;
790 parse
->rsn_len
= pos
[1];
791 ret
= wpa_parse_wpa_ie_rsn(parse
->rsn
- 2,
795 wpa_printf(MSG_DEBUG
, "FT: Failed to parse "
799 if (data
.num_pmkid
== 1 && data
.pmkid
)
800 parse
->rsn_pmkid
= data
.pmkid
;
802 case WLAN_EID_MOBILITY_DOMAIN
:
803 parse
->mdie
= pos
+ 2;
804 parse
->mdie_len
= pos
[1];
806 case WLAN_EID_FAST_BSS_TRANSITION
:
807 if (pos
[1] < sizeof(*ftie
))
809 ftie
= (const struct rsn_ftie
*) (pos
+ 2);
810 prot_ie_count
= ftie
->mic_control
[1];
811 if (wpa_ft_parse_ftie(pos
+ 2, pos
[1], parse
) < 0)
814 case WLAN_EID_RIC_DATA
:
815 if (parse
->ric
== NULL
)
822 if (prot_ie_count
== 0)
823 return 0; /* no MIC */
826 * Check that the protected IE count matches with IEs included in the
835 if (prot_ie_count
< 0) {
836 wpa_printf(MSG_DEBUG
, "FT: Some required IEs not included in "
837 "the protected IE count");
841 if (prot_ie_count
== 0 && parse
->ric
) {
842 wpa_printf(MSG_DEBUG
, "FT: RIC IE(s) in the frame, but not "
843 "included in protected IE count");
847 /* Determine the end of the RIC IE(s) */
849 while (pos
&& pos
+ 2 <= end
&& pos
+ 2 + pos
[1] <= end
&&
854 parse
->ric_len
= pos
- parse
->ric
;
856 wpa_printf(MSG_DEBUG
, "FT: %d protected IEs missing from "
857 "frame", (int) prot_ie_count
);
865 static inline int wpa_auth_set_key(struct wpa_authenticator
*wpa_auth
,
867 enum wpa_alg alg
, const u8
*addr
, int idx
,
868 u8
*key
, size_t key_len
)
870 if (wpa_auth
->cb
.set_key
== NULL
)
872 return wpa_auth
->cb
.set_key(wpa_auth
->cb
.ctx
, vlan_id
, alg
, addr
, idx
,
877 void wpa_ft_install_ptk(struct wpa_state_machine
*sm
)
882 /* MLME-SETKEYS.request(PTK) */
883 if (sm
->pairwise
== WPA_CIPHER_TKIP
) {
886 } else if (sm
->pairwise
== WPA_CIPHER_CCMP
) {
890 wpa_printf(MSG_DEBUG
, "FT: Unknown pairwise alg 0x%x - skip "
891 "PTK configuration", sm
->pairwise
);
895 /* FIX: add STA entry to kernel/driver here? The set_key will fail
896 * most likely without this.. At the moment, STA entry is added only
897 * after association has been completed. This function will be called
898 * again after association to get the PTK configured, but that could be
899 * optimized by adding the STA entry earlier.
901 if (wpa_auth_set_key(sm
->wpa_auth
, 0, alg
, sm
->addr
, 0,
905 /* FIX: MLME-SetProtection.Request(TA, Tx_Rx) */
906 sm
->pairwise_set
= TRUE
;
910 static u16
wpa_ft_process_auth_req(struct wpa_state_machine
*sm
,
911 const u8
*ies
, size_t ies_len
,
912 u8
**resp_ies
, size_t *resp_ies_len
)
914 struct rsn_mdie
*mdie
;
915 struct rsn_ftie
*ftie
;
916 u8 pmk_r1
[PMK_LEN
], pmk_r1_name
[WPA_PMK_NAME_LEN
];
917 u8 ptk_name
[WPA_PMK_NAME_LEN
];
918 struct wpa_auth_config
*conf
;
919 struct wpa_ft_ies parse
;
920 size_t buflen
, ptk_len
;
928 sm
->pmk_r1_name_valid
= 0;
929 conf
= &sm
->wpa_auth
->conf
;
931 wpa_hexdump(MSG_DEBUG
, "FT: Received authentication frame IEs",
934 if (wpa_ft_parse_ies(ies
, ies_len
, &parse
) < 0) {
935 wpa_printf(MSG_DEBUG
, "FT: Failed to parse FT IEs");
936 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
939 mdie
= (struct rsn_mdie
*) parse
.mdie
;
940 if (mdie
== NULL
|| parse
.mdie_len
< sizeof(*mdie
) ||
941 os_memcmp(mdie
->mobility_domain
,
942 sm
->wpa_auth
->conf
.mobility_domain
,
943 MOBILITY_DOMAIN_ID_LEN
) != 0) {
944 wpa_printf(MSG_DEBUG
, "FT: Invalid MDIE");
945 return WLAN_STATUS_INVALID_MDIE
;
948 ftie
= (struct rsn_ftie
*) parse
.ftie
;
949 if (ftie
== NULL
|| parse
.ftie_len
< sizeof(*ftie
)) {
950 wpa_printf(MSG_DEBUG
, "FT: Invalid FTIE");
951 return WLAN_STATUS_INVALID_FTIE
;
954 os_memcpy(sm
->SNonce
, ftie
->snonce
, WPA_NONCE_LEN
);
956 if (parse
.r0kh_id
== NULL
) {
957 wpa_printf(MSG_DEBUG
, "FT: Invalid FTIE - no R0KH-ID");
958 return WLAN_STATUS_INVALID_FTIE
;
961 wpa_hexdump(MSG_DEBUG
, "FT: STA R0KH-ID",
962 parse
.r0kh_id
, parse
.r0kh_id_len
);
963 os_memcpy(sm
->r0kh_id
, parse
.r0kh_id
, parse
.r0kh_id_len
);
964 sm
->r0kh_id_len
= parse
.r0kh_id_len
;
966 if (parse
.rsn_pmkid
== NULL
) {
967 wpa_printf(MSG_DEBUG
, "FT: No PMKID in RSNIE");
968 return WLAN_STATUS_INVALID_PMKID
;
971 wpa_hexdump(MSG_DEBUG
, "FT: Requested PMKR0Name",
972 parse
.rsn_pmkid
, WPA_PMK_NAME_LEN
);
973 wpa_derive_pmk_r1_name(parse
.rsn_pmkid
,
974 sm
->wpa_auth
->conf
.r1_key_holder
, sm
->addr
,
976 wpa_hexdump(MSG_DEBUG
, "FT: Derived requested PMKR1Name",
977 pmk_r1_name
, WPA_PMK_NAME_LEN
);
979 if (wpa_ft_fetch_pmk_r1(sm
->wpa_auth
, sm
->addr
, pmk_r1_name
, pmk_r1
,
981 if (wpa_ft_pull_pmk_r1(sm
->wpa_auth
, sm
->addr
, sm
->r0kh_id
,
982 sm
->r0kh_id_len
, parse
.rsn_pmkid
) < 0) {
983 wpa_printf(MSG_DEBUG
, "FT: Did not have matching "
984 "PMK-R1 and unknown R0KH-ID");
985 return WLAN_STATUS_INVALID_PMKID
;
989 * TODO: Should return "status pending" (and the caller should
990 * not send out response now). The real response will be sent
991 * once the response from R0KH is received.
993 return WLAN_STATUS_INVALID_PMKID
;
996 wpa_hexdump_key(MSG_DEBUG
, "FT: Selected PMK-R1", pmk_r1
, PMK_LEN
);
997 sm
->pmk_r1_name_valid
= 1;
998 os_memcpy(sm
->pmk_r1_name
, pmk_r1_name
, WPA_PMK_NAME_LEN
);
1000 if (os_get_random(sm
->ANonce
, WPA_NONCE_LEN
)) {
1001 wpa_printf(MSG_DEBUG
, "FT: Failed to get random data for "
1003 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1006 wpa_hexdump(MSG_DEBUG
, "FT: Received SNonce",
1007 sm
->SNonce
, WPA_NONCE_LEN
);
1008 wpa_hexdump(MSG_DEBUG
, "FT: Generated ANonce",
1009 sm
->ANonce
, WPA_NONCE_LEN
);
1011 ptk_len
= pairwise
!= WPA_CIPHER_CCMP
? 64 : 48;
1012 wpa_pmk_r1_to_ptk(pmk_r1
, sm
->SNonce
, sm
->ANonce
, sm
->addr
,
1013 sm
->wpa_auth
->addr
, pmk_r1_name
,
1014 (u8
*) &sm
->PTK
, ptk_len
, ptk_name
);
1015 wpa_hexdump_key(MSG_DEBUG
, "FT: PTK",
1016 (u8
*) &sm
->PTK
, ptk_len
);
1017 wpa_hexdump(MSG_DEBUG
, "FT: PTKName", ptk_name
, WPA_PMK_NAME_LEN
);
1019 sm
->pairwise
= pairwise
;
1020 wpa_ft_install_ptk(sm
);
1022 buflen
= 2 + sizeof(struct rsn_mdie
) + 2 + sizeof(struct rsn_ftie
) +
1023 2 + FT_R1KH_ID_LEN
+ 200;
1024 *resp_ies
= os_zalloc(buflen
);
1025 if (*resp_ies
== NULL
) {
1026 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1030 end
= *resp_ies
+ buflen
;
1032 ret
= wpa_write_rsn_ie(conf
, pos
, end
- pos
, parse
.rsn_pmkid
);
1036 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1040 ret
= wpa_write_mdie(conf
, pos
, end
- pos
);
1044 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1048 ret
= wpa_write_ftie(conf
, parse
.r0kh_id
, parse
.r0kh_id_len
,
1049 sm
->ANonce
, sm
->SNonce
, pos
, end
- pos
, NULL
, 0);
1053 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1057 *resp_ies_len
= pos
- *resp_ies
;
1059 return WLAN_STATUS_SUCCESS
;
1063 void wpa_ft_process_auth(struct wpa_state_machine
*sm
, const u8
*bssid
,
1064 u16 auth_transaction
, const u8
*ies
, size_t ies_len
,
1065 void (*cb
)(void *ctx
, const u8
*dst
, const u8
*bssid
,
1066 u16 auth_transaction
, u16 status
,
1067 const u8
*ies
, size_t ies_len
),
1072 size_t resp_ies_len
;
1075 wpa_printf(MSG_DEBUG
, "FT: Received authentication frame, but "
1076 "WPA SM not available");
1080 wpa_printf(MSG_DEBUG
, "FT: Received authentication frame: STA=" MACSTR
1081 " BSSID=" MACSTR
" transaction=%d",
1082 MAC2STR(sm
->addr
), MAC2STR(bssid
), auth_transaction
);
1083 status
= wpa_ft_process_auth_req(sm
, ies
, ies_len
, &resp_ies
,
1086 wpa_printf(MSG_DEBUG
, "FT: FT authentication response: dst=" MACSTR
1087 " auth_transaction=%d status=%d",
1088 MAC2STR(sm
->addr
), auth_transaction
+ 1, status
);
1089 wpa_hexdump(MSG_DEBUG
, "FT: Response IEs", resp_ies
, resp_ies_len
);
1090 cb(ctx
, sm
->addr
, bssid
, auth_transaction
+ 1, status
,
1091 resp_ies
, resp_ies_len
);
1096 u16
wpa_ft_validate_reassoc(struct wpa_state_machine
*sm
, const u8
*ies
,
1099 struct wpa_ft_ies parse
;
1100 struct rsn_mdie
*mdie
;
1101 struct rsn_ftie
*ftie
;
1106 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1108 wpa_hexdump(MSG_DEBUG
, "FT: Reassoc Req IEs", ies
, ies_len
);
1110 if (wpa_ft_parse_ies(ies
, ies_len
, &parse
) < 0) {
1111 wpa_printf(MSG_DEBUG
, "FT: Failed to parse FT IEs");
1112 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1115 if (parse
.rsn
== NULL
) {
1116 wpa_printf(MSG_DEBUG
, "FT: No RSNIE in Reassoc Req");
1117 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1120 if (parse
.rsn_pmkid
== NULL
) {
1121 wpa_printf(MSG_DEBUG
, "FT: No PMKID in RSNIE");
1122 return WLAN_STATUS_INVALID_PMKID
;
1125 if (os_memcmp(parse
.rsn_pmkid
, sm
->pmk_r1_name
, WPA_PMK_NAME_LEN
) != 0)
1127 wpa_printf(MSG_DEBUG
, "FT: PMKID in Reassoc Req did not match "
1128 "with the PMKR1Name derived from auth request");
1129 return WLAN_STATUS_INVALID_PMKID
;
1132 mdie
= (struct rsn_mdie
*) parse
.mdie
;
1133 if (mdie
== NULL
|| parse
.mdie_len
< sizeof(*mdie
) ||
1134 os_memcmp(mdie
->mobility_domain
,
1135 sm
->wpa_auth
->conf
.mobility_domain
,
1136 MOBILITY_DOMAIN_ID_LEN
) != 0) {
1137 wpa_printf(MSG_DEBUG
, "FT: Invalid MDIE");
1138 return WLAN_STATUS_INVALID_MDIE
;
1141 ftie
= (struct rsn_ftie
*) parse
.ftie
;
1142 if (ftie
== NULL
|| parse
.ftie_len
< sizeof(*ftie
)) {
1143 wpa_printf(MSG_DEBUG
, "FT: Invalid FTIE");
1144 return WLAN_STATUS_INVALID_FTIE
;
1147 if (os_memcmp(ftie
->snonce
, sm
->SNonce
, WPA_NONCE_LEN
) != 0) {
1148 wpa_printf(MSG_DEBUG
, "FT: SNonce mismatch in FTIE");
1149 wpa_hexdump(MSG_DEBUG
, "FT: Received SNonce",
1150 ftie
->snonce
, WPA_NONCE_LEN
);
1151 wpa_hexdump(MSG_DEBUG
, "FT: Expected SNonce",
1152 sm
->SNonce
, WPA_NONCE_LEN
);
1156 if (os_memcmp(ftie
->anonce
, sm
->ANonce
, WPA_NONCE_LEN
) != 0) {
1157 wpa_printf(MSG_DEBUG
, "FT: ANonce mismatch in FTIE");
1158 wpa_hexdump(MSG_DEBUG
, "FT: Received ANonce",
1159 ftie
->anonce
, WPA_NONCE_LEN
);
1160 wpa_hexdump(MSG_DEBUG
, "FT: Expected ANonce",
1161 sm
->ANonce
, WPA_NONCE_LEN
);
1166 if (parse
.r0kh_id
== NULL
) {
1167 wpa_printf(MSG_DEBUG
, "FT: No R0KH-ID subelem in FTIE");
1171 if (parse
.r0kh_id_len
!= sm
->r0kh_id_len
||
1172 os_memcmp(parse
.r0kh_id
, sm
->r0kh_id
, parse
.r0kh_id_len
) != 0) {
1173 wpa_printf(MSG_DEBUG
, "FT: R0KH-ID in FTIE did not match with "
1174 "the current R0KH-ID");
1175 wpa_hexdump(MSG_DEBUG
, "FT: R0KH-ID in FTIE",
1176 parse
.r0kh_id
, parse
.r0kh_id_len
);
1177 wpa_hexdump(MSG_DEBUG
, "FT: The current R0KH-ID",
1178 sm
->r0kh_id
, sm
->r0kh_id_len
);
1182 if (parse
.r1kh_id
== NULL
) {
1183 wpa_printf(MSG_DEBUG
, "FT: No R1KH-ID subelem in FTIE");
1187 if (os_memcmp(parse
.r1kh_id
, sm
->wpa_auth
->conf
.r1_key_holder
,
1188 FT_R1KH_ID_LEN
) != 0) {
1189 wpa_printf(MSG_DEBUG
, "FT: Unknown R1KH-ID used in "
1191 wpa_hexdump(MSG_DEBUG
, "FT: R1KH-ID in FTIE",
1192 parse
.r1kh_id
, FT_R1KH_ID_LEN
);
1193 wpa_hexdump(MSG_DEBUG
, "FT: Expected R1KH-ID",
1194 sm
->wpa_auth
->conf
.r1_key_holder
, FT_R1KH_ID_LEN
);
1198 if (parse
.rsn_pmkid
== NULL
||
1199 os_memcmp(parse
.rsn_pmkid
, sm
->pmk_r1_name
, WPA_PMK_NAME_LEN
)) {
1200 wpa_printf(MSG_DEBUG
, "FT: No matching PMKR1Name (PMKID) in "
1201 "RSNIE (pmkid=%d)", !!parse
.rsn_pmkid
);
1208 if (ftie
->mic_control
[1] != count
) {
1209 wpa_printf(MSG_DEBUG
, "FT: Unexpected IE count in MIC "
1210 "Control: received %u expected %u",
1211 ftie
->mic_control
[1], count
);
1215 if (wpa_ft_mic(sm
->PTK
.kck
, sm
->addr
, sm
->wpa_auth
->addr
, 5,
1216 parse
.mdie
- 2, parse
.mdie_len
+ 2,
1217 parse
.ftie
- 2, parse
.ftie_len
+ 2,
1218 parse
.rsn
- 2, parse
.rsn_len
+ 2,
1219 parse
.ric
, parse
.ric_len
,
1221 wpa_printf(MSG_DEBUG
, "FT: Failed to calculate MIC");
1222 return WLAN_STATUS_UNSPECIFIED_FAILURE
;
1225 if (os_memcmp(mic
, ftie
->mic
, 16) != 0) {
1226 wpa_printf(MSG_DEBUG
, "FT: Invalid MIC in FTIE");
1227 wpa_hexdump(MSG_MSGDUMP
, "FT: Received MIC", ftie
->mic
, 16);
1228 wpa_hexdump(MSG_MSGDUMP
, "FT: Calculated MIC", mic
, 16);
1229 return WLAN_STATUS_INVALID_FTIE
;
1232 return WLAN_STATUS_SUCCESS
;
1236 int wpa_ft_action_rx(struct wpa_state_machine
*sm
, const u8
*data
, size_t len
)
1238 const u8
*sta_addr
, *target_ap
;
1242 struct ft_rrb_frame
*frame
;
1248 * data: Category[1] Action[1] STA_Address[6] Target_AP_Address[6]
1249 * FT Request action frame body[variable]
1253 wpa_printf(MSG_DEBUG
, "FT: Too short FT Action frame "
1254 "(len=%lu)", (unsigned long) len
);
1259 sta_addr
= data
+ 2;
1260 target_ap
= data
+ 8;
1264 wpa_printf(MSG_DEBUG
, "FT: Received FT Action frame (STA=" MACSTR
1265 " Target AP=" MACSTR
" Action=%d)",
1266 MAC2STR(sta_addr
), MAC2STR(target_ap
), action
);
1268 if (os_memcmp(sta_addr
, sm
->addr
, ETH_ALEN
) != 0) {
1269 wpa_printf(MSG_DEBUG
, "FT: Mismatch in FT Action STA address: "
1270 "STA=" MACSTR
" STA-Address=" MACSTR
,
1271 MAC2STR(sm
->addr
), MAC2STR(sta_addr
));
1276 * Do some sanity checking on the target AP address (not own and not
1277 * broadcast. This could be extended to filter based on a list of known
1278 * APs in the MD (if such a list were configured).
1280 if ((target_ap
[0] & 0x01) ||
1281 os_memcmp(target_ap
, sm
->wpa_auth
->addr
, ETH_ALEN
) == 0) {
1282 wpa_printf(MSG_DEBUG
, "FT: Invalid Target AP in FT Action "
1287 wpa_hexdump(MSG_MSGDUMP
, "FT: Action frame body", ies
, ies_len
);
1289 /* RRB - Forward action frame to the target AP */
1290 frame
= os_malloc(sizeof(*frame
) + len
);
1291 frame
->frame_type
= RSN_REMOTE_FRAME_TYPE_FT_RRB
;
1292 frame
->packet_type
= FT_PACKET_REQUEST
;
1293 frame
->action_length
= host_to_le16(len
);
1294 os_memcpy(frame
->ap_address
, sm
->wpa_auth
->addr
, ETH_ALEN
);
1295 os_memcpy(frame
+ 1, data
, len
);
1297 wpa_ft_rrb_send(sm
->wpa_auth
, target_ap
, (u8
*) frame
,
1298 sizeof(*frame
) + len
);
1305 static int wpa_ft_rrb_rx_request(struct wpa_authenticator
*wpa_auth
,
1306 const u8
*current_ap
, const u8
*sta_addr
,
1307 const u8
*body
, size_t len
)
1309 struct wpa_state_machine
*sm
;
1312 size_t resp_ies_len
, rlen
;
1313 struct ft_rrb_frame
*frame
;
1315 sm
= wpa_ft_add_sta(wpa_auth
, sta_addr
);
1317 wpa_printf(MSG_DEBUG
, "FT: Failed to add new STA based on "
1322 wpa_hexdump(MSG_MSGDUMP
, "FT: RRB Request Frame body", body
, len
);
1324 status
= wpa_ft_process_auth_req(sm
, body
, len
, &resp_ies
,
1327 wpa_printf(MSG_DEBUG
, "FT: RRB authentication response: STA=" MACSTR
1328 " CurrentAP=" MACSTR
" status=%d",
1329 MAC2STR(sm
->addr
), MAC2STR(current_ap
), status
);
1330 wpa_hexdump(MSG_DEBUG
, "FT: Response IEs", resp_ies
, resp_ies_len
);
1332 /* RRB - Forward action frame response to the Current AP */
1335 * data: Category[1] Action[1] STA_Address[6] Target_AP_Address[6]
1336 * Status_Code[2] FT Request action frame body[variable]
1338 rlen
= 2 + 2 * ETH_ALEN
+ 2 + resp_ies_len
;
1340 frame
= os_malloc(sizeof(*frame
) + rlen
);
1341 frame
->frame_type
= RSN_REMOTE_FRAME_TYPE_FT_RRB
;
1342 frame
->packet_type
= FT_PACKET_RESPONSE
;
1343 frame
->action_length
= host_to_le16(rlen
);
1344 os_memcpy(frame
->ap_address
, wpa_auth
->addr
, ETH_ALEN
);
1345 pos
= (u8
*) (frame
+ 1);
1346 *pos
++ = WLAN_ACTION_FT
;
1347 *pos
++ = 2; /* Action: Response */
1348 os_memcpy(pos
, sta_addr
, ETH_ALEN
);
1350 os_memcpy(pos
, wpa_auth
->addr
, ETH_ALEN
);
1352 WPA_PUT_LE16(pos
, status
);
1355 os_memcpy(pos
, resp_ies
, resp_ies_len
);
1359 wpa_ft_rrb_send(wpa_auth
, current_ap
, (u8
*) frame
,
1360 sizeof(*frame
) + rlen
);
1367 static int wpa_ft_rrb_rx_pull(struct wpa_authenticator
*wpa_auth
,
1369 const u8
*data
, size_t data_len
)
1371 struct ft_r0kh_r1kh_pull_frame
*frame
, f
;
1372 struct ft_remote_r1kh
*r1kh
;
1373 struct ft_r0kh_r1kh_resp_frame resp
, r
;
1377 wpa_printf(MSG_DEBUG
, "FT: Received PMK-R1 pull");
1379 if (data_len
< sizeof(*frame
))
1382 r1kh
= wpa_auth
->conf
.r1kh_list
;
1384 if (os_memcmp(r1kh
->addr
, src_addr
, ETH_ALEN
) == 0)
1389 wpa_printf(MSG_DEBUG
, "FT: No matching R1KH address found for "
1390 "PMK-R1 pull source address " MACSTR
,
1395 frame
= (struct ft_r0kh_r1kh_pull_frame
*) data
;
1396 /* aes_unwrap() does not support inplace decryption, so use a temporary
1397 * buffer for the data. */
1398 if (aes_unwrap(r1kh
->key
, (FT_R0KH_R1KH_PULL_DATA_LEN
+ 7) / 8,
1399 frame
->nonce
, f
.nonce
) < 0) {
1400 wpa_printf(MSG_DEBUG
, "FT: Failed to decrypt PMK-R1 pull "
1401 "request from " MACSTR
, MAC2STR(src_addr
));
1405 wpa_hexdump(MSG_DEBUG
, "FT: PMK-R1 pull - nonce",
1406 f
.nonce
, sizeof(f
.nonce
));
1407 wpa_hexdump(MSG_DEBUG
, "FT: PMK-R1 pull - PMKR0Name",
1408 f
.pmk_r0_name
, WPA_PMK_NAME_LEN
);
1409 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 pull - R1KH-ID=" MACSTR
"S1KH-ID="
1410 MACSTR
, MAC2STR(f
.r1kh_id
), MAC2STR(f
.s1kh_id
));
1412 os_memset(&resp
, 0, sizeof(resp
));
1413 resp
.frame_type
= RSN_REMOTE_FRAME_TYPE_FT_RRB
;
1414 resp
.packet_type
= FT_PACKET_R0KH_R1KH_RESP
;
1415 resp
.data_length
= host_to_le16(FT_R0KH_R1KH_RESP_DATA_LEN
);
1416 os_memcpy(resp
.ap_address
, wpa_auth
->addr
, ETH_ALEN
);
1418 /* aes_wrap() does not support inplace encryption, so use a temporary
1419 * buffer for the data. */
1420 os_memcpy(r
.nonce
, f
.nonce
, sizeof(f
.nonce
));
1421 os_memcpy(r
.r1kh_id
, f
.r1kh_id
, FT_R1KH_ID_LEN
);
1422 os_memcpy(r
.s1kh_id
, f
.s1kh_id
, ETH_ALEN
);
1423 if (wpa_ft_fetch_pmk_r0(wpa_auth
, f
.s1kh_id
, f
.pmk_r0_name
, pmk_r0
,
1425 wpa_printf(MSG_DEBUG
, "FT: No matching PMKR0Name found for "
1430 wpa_derive_pmk_r1(pmk_r0
, f
.pmk_r0_name
, f
.r1kh_id
, f
.s1kh_id
,
1431 r
.pmk_r1
, r
.pmk_r1_name
);
1432 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R1", r
.pmk_r1
, PMK_LEN
);
1433 wpa_hexdump(MSG_DEBUG
, "FT: PMKR1Name", r
.pmk_r1_name
,
1435 r
.pairwise
= host_to_le16(pairwise
);
1437 if (aes_wrap(r1kh
->key
, (FT_R0KH_R1KH_RESP_DATA_LEN
+ 7) / 8,
1438 r
.nonce
, resp
.nonce
) < 0) {
1439 os_memset(pmk_r0
, 0, PMK_LEN
);
1443 os_memset(pmk_r0
, 0, PMK_LEN
);
1445 wpa_ft_rrb_send(wpa_auth
, src_addr
, (u8
*) &resp
, sizeof(resp
));
1451 static int wpa_ft_rrb_rx_resp(struct wpa_authenticator
*wpa_auth
,
1453 const u8
*data
, size_t data_len
)
1455 struct ft_r0kh_r1kh_resp_frame
*frame
, f
;
1456 struct ft_remote_r0kh
*r0kh
;
1459 wpa_printf(MSG_DEBUG
, "FT: Received PMK-R1 pull response");
1461 if (data_len
< sizeof(*frame
))
1464 r0kh
= wpa_auth
->conf
.r0kh_list
;
1466 if (os_memcmp(r0kh
->addr
, src_addr
, ETH_ALEN
) == 0)
1471 wpa_printf(MSG_DEBUG
, "FT: No matching R0KH address found for "
1472 "PMK-R0 pull response source address " MACSTR
,
1477 frame
= (struct ft_r0kh_r1kh_resp_frame
*) data
;
1478 /* aes_unwrap() does not support inplace decryption, so use a temporary
1479 * buffer for the data. */
1480 if (aes_unwrap(r0kh
->key
, (FT_R0KH_R1KH_RESP_DATA_LEN
+ 7) / 8,
1481 frame
->nonce
, f
.nonce
) < 0) {
1482 wpa_printf(MSG_DEBUG
, "FT: Failed to decrypt PMK-R1 pull "
1483 "response from " MACSTR
, MAC2STR(src_addr
));
1487 if (os_memcmp(f
.r1kh_id
, wpa_auth
->conf
.r1_key_holder
, FT_R1KH_ID_LEN
)
1489 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 pull response did not use a "
1490 "matching R1KH-ID");
1494 /* TODO: verify that <nonce,s1kh_id> matches with a pending request
1495 * and call this requests callback function to finish request
1498 pairwise
= le_to_host16(f
.pairwise
);
1499 wpa_hexdump(MSG_DEBUG
, "FT: PMK-R1 pull - nonce",
1500 f
.nonce
, sizeof(f
.nonce
));
1501 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 pull - R1KH-ID=" MACSTR
"S1KH-ID="
1502 MACSTR
" pairwise=0x%x",
1503 MAC2STR(f
.r1kh_id
), MAC2STR(f
.s1kh_id
), pairwise
);
1504 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R1 pull - PMK-R1",
1506 wpa_hexdump(MSG_DEBUG
, "FT: PMK-R1 pull - PMKR1Name",
1507 f
.pmk_r1_name
, WPA_PMK_NAME_LEN
);
1509 wpa_ft_store_pmk_r1(wpa_auth
, f
.s1kh_id
, f
.pmk_r1
, f
.pmk_r1_name
,
1511 os_memset(f
.pmk_r1
, 0, PMK_LEN
);
1517 static int wpa_ft_rrb_rx_push(struct wpa_authenticator
*wpa_auth
,
1519 const u8
*data
, size_t data_len
)
1521 struct ft_r0kh_r1kh_push_frame
*frame
, f
;
1522 struct ft_remote_r0kh
*r0kh
;
1527 wpa_printf(MSG_DEBUG
, "FT: Received PMK-R1 push");
1529 if (data_len
< sizeof(*frame
))
1532 r0kh
= wpa_auth
->conf
.r0kh_list
;
1534 if (os_memcmp(r0kh
->addr
, src_addr
, ETH_ALEN
) == 0)
1539 wpa_printf(MSG_DEBUG
, "FT: No matching R0KH address found for "
1540 "PMK-R0 push source address " MACSTR
,
1545 frame
= (struct ft_r0kh_r1kh_push_frame
*) data
;
1546 /* aes_unwrap() does not support inplace decryption, so use a temporary
1547 * buffer for the data. */
1548 if (aes_unwrap(r0kh
->key
, (FT_R0KH_R1KH_PUSH_DATA_LEN
+ 7) / 8,
1549 frame
->timestamp
, f
.timestamp
) < 0) {
1550 wpa_printf(MSG_DEBUG
, "FT: Failed to decrypt PMK-R1 push from "
1551 MACSTR
, MAC2STR(src_addr
));
1556 tsend
= WPA_GET_LE32(f
.timestamp
);
1557 if ((now
.sec
> tsend
&& now
.sec
- tsend
> 60) ||
1558 (now
.sec
< tsend
&& tsend
- now
.sec
> 60)) {
1559 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 push did not have a valid "
1560 "timestamp: sender time %d own time %d\n",
1561 (int) tsend
, (int) now
.sec
);
1565 if (os_memcmp(f
.r1kh_id
, wpa_auth
->conf
.r1_key_holder
, FT_R1KH_ID_LEN
)
1567 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 push did not use a matching "
1568 "R1KH-ID (received " MACSTR
" own " MACSTR
")",
1570 MAC2STR(wpa_auth
->conf
.r1_key_holder
));
1574 pairwise
= le_to_host16(f
.pairwise
);
1575 wpa_printf(MSG_DEBUG
, "FT: PMK-R1 push - R1KH-ID=" MACSTR
" S1KH-ID="
1576 MACSTR
" pairwise=0x%x",
1577 MAC2STR(f
.r1kh_id
), MAC2STR(f
.s1kh_id
), pairwise
);
1578 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R1 push - PMK-R1",
1580 wpa_hexdump(MSG_DEBUG
, "FT: PMK-R1 push - PMKR1Name",
1581 f
.pmk_r1_name
, WPA_PMK_NAME_LEN
);
1583 wpa_ft_store_pmk_r1(wpa_auth
, f
.s1kh_id
, f
.pmk_r1
, f
.pmk_r1_name
,
1585 os_memset(f
.pmk_r1
, 0, PMK_LEN
);
1591 int wpa_ft_rrb_rx(struct wpa_authenticator
*wpa_auth
, const u8
*src_addr
,
1592 const u8
*data
, size_t data_len
)
1594 struct ft_rrb_frame
*frame
;
1596 const u8
*pos
, *end
, *start
;
1598 const u8
*sta_addr
, *target_ap_addr
;
1600 wpa_printf(MSG_DEBUG
, "FT: RRB received frame from remote AP " MACSTR
,
1603 if (data_len
< sizeof(*frame
)) {
1604 wpa_printf(MSG_DEBUG
, "FT: Too short RRB frame (data_len=%lu)",
1605 (unsigned long) data_len
);
1610 frame
= (struct ft_rrb_frame
*) pos
;
1611 pos
+= sizeof(*frame
);
1613 alen
= le_to_host16(frame
->action_length
);
1614 wpa_printf(MSG_DEBUG
, "FT: RRB frame - frame_type=%d packet_type=%d "
1615 "action_length=%d ap_address=" MACSTR
,
1616 frame
->frame_type
, frame
->packet_type
, alen
,
1617 MAC2STR(frame
->ap_address
));
1619 if (frame
->frame_type
!= RSN_REMOTE_FRAME_TYPE_FT_RRB
) {
1620 /* Discard frame per IEEE Std 802.11r-2008, 11A.10.3 */
1621 wpa_printf(MSG_DEBUG
, "FT: RRB discarded frame with "
1622 "unrecognized type %d", frame
->frame_type
);
1626 if (alen
> data_len
- sizeof(*frame
)) {
1627 wpa_printf(MSG_DEBUG
, "FT: RRB frame too short for action "
1632 if (frame
->packet_type
== FT_PACKET_R0KH_R1KH_PULL
)
1633 return wpa_ft_rrb_rx_pull(wpa_auth
, src_addr
, data
, data_len
);
1634 if (frame
->packet_type
== FT_PACKET_R0KH_R1KH_RESP
)
1635 return wpa_ft_rrb_rx_resp(wpa_auth
, src_addr
, data
, data_len
);
1636 if (frame
->packet_type
== FT_PACKET_R0KH_R1KH_PUSH
)
1637 return wpa_ft_rrb_rx_push(wpa_auth
, src_addr
, data
, data_len
);
1639 wpa_hexdump(MSG_MSGDUMP
, "FT: RRB - FT Action frame", pos
, alen
);
1641 if (alen
< 1 + 1 + 2 * ETH_ALEN
) {
1642 wpa_printf(MSG_DEBUG
, "FT: Too short RRB frame (not enough "
1643 "room for Action Frame body); alen=%lu",
1644 (unsigned long) alen
);
1650 if (*pos
!= WLAN_ACTION_FT
) {
1651 wpa_printf(MSG_DEBUG
, "FT: Unexpected Action frame category "
1660 target_ap_addr
= pos
;
1662 wpa_printf(MSG_DEBUG
, "FT: RRB Action Frame: action=%d sta_addr="
1663 MACSTR
" target_ap_addr=" MACSTR
,
1664 action
, MAC2STR(sta_addr
), MAC2STR(target_ap_addr
));
1666 if (frame
->packet_type
== FT_PACKET_REQUEST
) {
1667 wpa_printf(MSG_DEBUG
, "FT: FT Packet Type - Request");
1670 wpa_printf(MSG_DEBUG
, "FT: Unexpected Action %d in "
1671 "RRB Request", action
);
1675 if (os_memcmp(target_ap_addr
, wpa_auth
->addr
, ETH_ALEN
) != 0) {
1676 wpa_printf(MSG_DEBUG
, "FT: Target AP address in the "
1677 "RRB Request does not match with own "
1682 if (wpa_ft_rrb_rx_request(wpa_auth
, frame
->ap_address
,
1683 sta_addr
, pos
, end
- pos
) < 0)
1685 } else if (frame
->packet_type
== FT_PACKET_RESPONSE
) {
1688 if (end
- pos
< 2) {
1689 wpa_printf(MSG_DEBUG
, "FT: Not enough room for status "
1690 "code in RRB Response");
1693 status_code
= WPA_GET_LE16(pos
);
1696 wpa_printf(MSG_DEBUG
, "FT: FT Packet Type - Response "
1697 "(status_code=%d)", status_code
);
1699 if (wpa_ft_action_send(wpa_auth
, sta_addr
, start
, alen
) < 0)
1702 wpa_printf(MSG_DEBUG
, "FT: RRB discarded frame with unknown "
1703 "packet_type %d", frame
->packet_type
);
1711 static void wpa_ft_generate_pmk_r1(struct wpa_authenticator
*wpa_auth
,
1712 struct wpa_ft_pmk_r0_sa
*pmk_r0
,
1713 struct ft_remote_r1kh
*r1kh
,
1714 const u8
*s1kh_id
, int pairwise
)
1716 struct ft_r0kh_r1kh_push_frame frame
, f
;
1719 os_memset(&frame
, 0, sizeof(frame
));
1720 frame
.frame_type
= RSN_REMOTE_FRAME_TYPE_FT_RRB
;
1721 frame
.packet_type
= FT_PACKET_R0KH_R1KH_PUSH
;
1722 frame
.data_length
= host_to_le16(FT_R0KH_R1KH_PUSH_DATA_LEN
);
1723 os_memcpy(frame
.ap_address
, wpa_auth
->addr
, ETH_ALEN
);
1725 /* aes_wrap() does not support inplace encryption, so use a temporary
1726 * buffer for the data. */
1727 os_memcpy(f
.r1kh_id
, r1kh
->id
, FT_R1KH_ID_LEN
);
1728 os_memcpy(f
.s1kh_id
, s1kh_id
, ETH_ALEN
);
1729 os_memcpy(f
.pmk_r0_name
, pmk_r0
->pmk_r0_name
, WPA_PMK_NAME_LEN
);
1730 wpa_derive_pmk_r1(pmk_r0
->pmk_r0
, pmk_r0
->pmk_r0_name
, r1kh
->id
,
1731 s1kh_id
, f
.pmk_r1
, f
.pmk_r1_name
);
1732 wpa_printf(MSG_DEBUG
, "FT: R1KH-ID " MACSTR
, MAC2STR(r1kh
->id
));
1733 wpa_hexdump_key(MSG_DEBUG
, "FT: PMK-R1", f
.pmk_r1
, PMK_LEN
);
1734 wpa_hexdump(MSG_DEBUG
, "FT: PMKR1Name", f
.pmk_r1_name
,
1737 WPA_PUT_LE32(f
.timestamp
, now
.sec
);
1738 f
.pairwise
= host_to_le16(pairwise
);
1739 if (aes_wrap(r1kh
->key
, (FT_R0KH_R1KH_PUSH_DATA_LEN
+ 7) / 8,
1740 f
.timestamp
, frame
.timestamp
) < 0)
1743 wpa_ft_rrb_send(wpa_auth
, r1kh
->addr
, (u8
*) &frame
, sizeof(frame
));
1747 void wpa_ft_push_pmk_r1(struct wpa_authenticator
*wpa_auth
, const u8
*addr
)
1749 struct wpa_ft_pmk_r0_sa
*r0
;
1750 struct ft_remote_r1kh
*r1kh
;
1752 if (!wpa_auth
->conf
.pmk_r1_push
)
1755 r0
= wpa_auth
->ft_pmk_cache
->pmk_r0
;
1757 if (os_memcmp(r0
->spa
, addr
, ETH_ALEN
) == 0)
1762 if (r0
== NULL
|| r0
->pmk_r1_pushed
)
1764 r0
->pmk_r1_pushed
= 1;
1766 wpa_printf(MSG_DEBUG
, "FT: Deriving and pushing PMK-R1 keys to R1KHs "
1767 "for STA " MACSTR
, MAC2STR(addr
));
1769 r1kh
= wpa_auth
->conf
.r1kh_list
;
1771 wpa_ft_generate_pmk_r1(wpa_auth
, r0
, r1kh
, addr
, r0
->pairwise
);
1776 #endif /* CONFIG_IEEE80211R */