4dadc4049c034350d17d53722f58daeda775b6e8
[mech_eap.git] / wpa_supplicant / mesh_rsn.c
1 /*
2  * WPA Supplicant - Mesh RSN routines
3  * Copyright (c) 2013-2014, cozybit, Inc.  All rights reserved.
4  *
5  * This software may be distributed under the terms of the BSD license.
6  * See README for more details.
7  */
8
9 #include "utils/includes.h"
10
11 #include "utils/common.h"
12 #include "utils/eloop.h"
13 #include "crypto/sha256.h"
14 #include "crypto/random.h"
15 #include "crypto/aes.h"
16 #include "crypto/aes_siv.h"
17 #include "rsn_supp/wpa.h"
18 #include "ap/hostapd.h"
19 #include "ap/wpa_auth.h"
20 #include "ap/sta_info.h"
21 #include "ap/ieee802_11.h"
22 #include "wpa_supplicant_i.h"
23 #include "driver_i.h"
24 #include "wpas_glue.h"
25 #include "mesh_mpm.h"
26 #include "mesh_rsn.h"
27
28 #define MESH_AUTH_TIMEOUT 10
29 #define MESH_AUTH_RETRY 3
30
31 void mesh_auth_timer(void *eloop_ctx, void *user_data)
32 {
33         struct wpa_supplicant *wpa_s = eloop_ctx;
34         struct sta_info *sta = user_data;
35         struct hostapd_data *hapd;
36
37         if (sta->sae->state != SAE_ACCEPTED) {
38                 wpa_printf(MSG_DEBUG, "AUTH: Re-authenticate with " MACSTR
39                            " (attempt %d) ",
40                            MAC2STR(sta->addr), sta->sae_auth_retry);
41                 wpa_msg(wpa_s, MSG_INFO, MESH_SAE_AUTH_FAILURE "addr=" MACSTR,
42                         MAC2STR(sta->addr));
43                 if (sta->sae_auth_retry < MESH_AUTH_RETRY) {
44                         mesh_rsn_auth_sae_sta(wpa_s, sta);
45                 } else {
46                         hapd = wpa_s->ifmsh->bss[0];
47
48                         if (sta->sae_auth_retry > MESH_AUTH_RETRY) {
49                                 ap_free_sta(hapd, sta);
50                                 return;
51                         }
52
53                         /* block the STA if exceeded the number of attempts */
54                         wpa_mesh_set_plink_state(wpa_s, sta, PLINK_BLOCKED);
55                         sta->sae->state = SAE_NOTHING;
56                         wpa_msg(wpa_s, MSG_INFO, MESH_SAE_AUTH_BLOCKED "addr="
57                                 MACSTR " duration=%d",
58                                 MAC2STR(sta->addr),
59                                 hapd->conf->ap_max_inactivity);
60                 }
61                 sta->sae_auth_retry++;
62         }
63 }
64
65
66 static void auth_logger(void *ctx, const u8 *addr, logger_level level,
67                         const char *txt)
68 {
69         if (addr)
70                 wpa_printf(MSG_DEBUG, "AUTH: " MACSTR " - %s",
71                            MAC2STR(addr), txt);
72         else
73                 wpa_printf(MSG_DEBUG, "AUTH: %s", txt);
74 }
75
76
77 static const u8 *auth_get_psk(void *ctx, const u8 *addr,
78                               const u8 *p2p_dev_addr, const u8 *prev_psk)
79 {
80         struct mesh_rsn *mesh_rsn = ctx;
81         struct hostapd_data *hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
82         struct sta_info *sta = ap_get_sta(hapd, addr);
83
84         wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
85                    __func__, MAC2STR(addr), prev_psk);
86
87         if (sta && sta->auth_alg == WLAN_AUTH_SAE) {
88                 if (!sta->sae || prev_psk)
89                         return NULL;
90                 return sta->sae->pmk;
91         }
92
93         return NULL;
94 }
95
96
97 static int auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
98                         const u8 *addr, int idx, u8 *key, size_t key_len)
99 {
100         struct mesh_rsn *mesh_rsn = ctx;
101         u8 seq[6];
102
103         os_memset(seq, 0, sizeof(seq));
104
105         if (addr) {
106                 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d addr=" MACSTR
107                            " key_idx=%d)",
108                            __func__, alg, MAC2STR(addr), idx);
109         } else {
110                 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d key_idx=%d)",
111                            __func__, alg, idx);
112         }
113         wpa_hexdump_key(MSG_DEBUG, "AUTH: set_key - key", key, key_len);
114
115         return wpa_drv_set_key(mesh_rsn->wpa_s, alg, addr, idx,
116                                1, seq, 6, key, key_len);
117 }
118
119
120 static int auth_start_ampe(void *ctx, const u8 *addr)
121 {
122         struct mesh_rsn *mesh_rsn = ctx;
123         struct hostapd_data *hapd;
124         struct sta_info *sta;
125
126         if (mesh_rsn->wpa_s->current_ssid->mode != WPAS_MODE_MESH)
127                 return -1;
128
129         hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
130         sta = ap_get_sta(hapd, addr);
131         if (sta)
132                 eloop_cancel_timeout(mesh_auth_timer, mesh_rsn->wpa_s, sta);
133
134         mesh_mpm_auth_peer(mesh_rsn->wpa_s, addr);
135         return 0;
136 }
137
138
139 static int __mesh_rsn_auth_init(struct mesh_rsn *rsn, const u8 *addr,
140                                 enum mfp_options ieee80211w)
141 {
142         struct wpa_auth_config conf;
143         struct wpa_auth_callbacks cb;
144         u8 seq[6] = {};
145
146         wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
147
148         os_memset(&conf, 0, sizeof(conf));
149         conf.wpa = 2;
150         conf.wpa_key_mgmt = WPA_KEY_MGMT_SAE;
151         conf.wpa_pairwise = WPA_CIPHER_CCMP;
152         conf.rsn_pairwise = WPA_CIPHER_CCMP;
153         conf.wpa_group = WPA_CIPHER_CCMP;
154         conf.eapol_version = 0;
155         conf.wpa_group_rekey = -1;
156 #ifdef CONFIG_IEEE80211W
157         conf.ieee80211w = ieee80211w;
158         if (ieee80211w != NO_MGMT_FRAME_PROTECTION)
159                 conf.group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
160 #endif /* CONFIG_IEEE80211W */
161
162         os_memset(&cb, 0, sizeof(cb));
163         cb.ctx = rsn;
164         cb.logger = auth_logger;
165         cb.get_psk = auth_get_psk;
166         cb.set_key = auth_set_key;
167         cb.start_ampe = auth_start_ampe;
168
169         rsn->auth = wpa_init(addr, &conf, &cb);
170         if (rsn->auth == NULL) {
171                 wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
172                 return -1;
173         }
174
175         /* TODO: support rekeying */
176         if (random_get_bytes(rsn->mgtk, 16) < 0)
177                 return -1;
178
179         /* group mgmt */
180         wpa_drv_set_key(rsn->wpa_s, WPA_ALG_IGTK, NULL, 4, 1,
181                         seq, sizeof(seq), rsn->mgtk, sizeof(rsn->mgtk));
182
183         /* group privacy / data frames */
184         wpa_drv_set_key(rsn->wpa_s, WPA_ALG_CCMP, NULL, 1, 1,
185                         seq, sizeof(seq), rsn->mgtk, sizeof(rsn->mgtk));
186
187         return 0;
188 }
189
190
191 static void mesh_rsn_deinit(struct mesh_rsn *rsn)
192 {
193         os_memset(rsn->mgtk, 0, sizeof(rsn->mgtk));
194         if (rsn->auth)
195                 wpa_deinit(rsn->auth);
196 }
197
198
199 struct mesh_rsn *mesh_rsn_auth_init(struct wpa_supplicant *wpa_s,
200                                     struct mesh_conf *conf)
201 {
202         struct mesh_rsn *mesh_rsn;
203         struct hostapd_data *bss = wpa_s->ifmsh->bss[0];
204         const u8 *ie;
205         size_t ie_len;
206
207         mesh_rsn = os_zalloc(sizeof(*mesh_rsn));
208         if (mesh_rsn == NULL)
209                 return NULL;
210         mesh_rsn->wpa_s = wpa_s;
211
212         if (__mesh_rsn_auth_init(mesh_rsn, wpa_s->own_addr,
213                                  conf->ieee80211w) < 0) {
214                 mesh_rsn_deinit(mesh_rsn);
215                 os_free(mesh_rsn);
216                 return NULL;
217         }
218
219         bss->wpa_auth = mesh_rsn->auth;
220
221         ie = wpa_auth_get_wpa_ie(mesh_rsn->auth, &ie_len);
222         conf->rsn_ie = (u8 *) ie;
223         conf->rsn_ie_len = ie_len;
224
225         wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
226
227         return mesh_rsn;
228 }
229
230
231 static int index_within_array(const int *array, int idx)
232 {
233         int i;
234
235         for (i = 0; i < idx; i++) {
236                 if (array[i] == -1)
237                         return 0;
238         }
239
240         return 1;
241 }
242
243
244 static int mesh_rsn_sae_group(struct wpa_supplicant *wpa_s,
245                               struct sae_data *sae)
246 {
247         int *groups = wpa_s->ifmsh->bss[0]->conf->sae_groups;
248
249         /* Configuration may have changed, so validate current index */
250         if (!index_within_array(groups, wpa_s->mesh_rsn->sae_group_index))
251                 return -1;
252
253         for (;;) {
254                 int group = groups[wpa_s->mesh_rsn->sae_group_index];
255
256                 if (group <= 0)
257                         break;
258                 if (sae_set_group(sae, group) == 0) {
259                         wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
260                                 sae->group);
261                         return 0;
262                 }
263                 wpa_s->mesh_rsn->sae_group_index++;
264         }
265
266         return -1;
267 }
268
269
270 static int mesh_rsn_build_sae_commit(struct wpa_supplicant *wpa_s,
271                                      struct wpa_ssid *ssid,
272                                      struct sta_info *sta)
273 {
274         if (ssid->passphrase == NULL) {
275                 wpa_msg(wpa_s, MSG_DEBUG, "SAE: No password available");
276                 return -1;
277         }
278
279         if (mesh_rsn_sae_group(wpa_s, sta->sae) < 0) {
280                 wpa_msg(wpa_s, MSG_DEBUG, "SAE: Failed to select group");
281                 return -1;
282         }
283
284         return sae_prepare_commit(wpa_s->own_addr, sta->addr,
285                                   (u8 *) ssid->passphrase,
286                                   os_strlen(ssid->passphrase), sta->sae);
287 }
288
289
290 /* initiate new SAE authentication with sta */
291 int mesh_rsn_auth_sae_sta(struct wpa_supplicant *wpa_s,
292                           struct sta_info *sta)
293 {
294         struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
295         struct wpa_ssid *ssid = wpa_s->current_ssid;
296         struct rsn_pmksa_cache_entry *pmksa;
297         unsigned int rnd;
298         int ret;
299
300         if (!ssid) {
301                 wpa_msg(wpa_s, MSG_DEBUG,
302                         "AUTH: No current_ssid known to initiate new SAE");
303                 return -1;
304         }
305
306         if (!sta->sae) {
307                 sta->sae = os_zalloc(sizeof(*sta->sae));
308                 if (sta->sae == NULL)
309                         return -1;
310         }
311
312         pmksa = wpa_auth_pmksa_get(hapd->wpa_auth, sta->addr);
313         if (pmksa) {
314                 if (!sta->wpa_sm)
315                         sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
316                                                         sta->addr, NULL);
317                 if (!sta->wpa_sm) {
318                         wpa_printf(MSG_ERROR,
319                                    "mesh: Failed to initialize RSN state machine");
320                         return -1;
321                 }
322
323                 wpa_printf(MSG_DEBUG,
324                            "AUTH: Mesh PMKSA cache entry found for " MACSTR
325                            " - try to use PMKSA caching instead of new SAE authentication",
326                            MAC2STR(sta->addr));
327                 wpa_auth_pmksa_set_to_sm(pmksa, sta->wpa_sm, hapd->wpa_auth,
328                                          sta->sae->pmkid, sta->sae->pmk);
329                 sae_accept_sta(hapd, sta);
330                 sta->mesh_sae_pmksa_caching = 1;
331                 return 0;
332         }
333         sta->mesh_sae_pmksa_caching = 0;
334
335         if (mesh_rsn_build_sae_commit(wpa_s, ssid, sta))
336                 return -1;
337
338         wpa_msg(wpa_s, MSG_DEBUG,
339                 "AUTH: started authentication with SAE peer: " MACSTR,
340                 MAC2STR(sta->addr));
341
342         wpa_supplicant_set_state(wpa_s, WPA_AUTHENTICATING);
343         ret = auth_sae_init_committed(hapd, sta);
344         if (ret)
345                 return ret;
346
347         eloop_cancel_timeout(mesh_auth_timer, wpa_s, sta);
348         rnd = rand() % MESH_AUTH_TIMEOUT;
349         eloop_register_timeout(MESH_AUTH_TIMEOUT + rnd, 0, mesh_auth_timer,
350                                wpa_s, sta);
351         return 0;
352 }
353
354
355 void mesh_rsn_get_pmkid(struct mesh_rsn *rsn, struct sta_info *sta, u8 *pmkid)
356 {
357         os_memcpy(pmkid, sta->sae->pmkid, SAE_PMKID_LEN);
358 }
359
360
361 static void
362 mesh_rsn_derive_aek(struct mesh_rsn *rsn, struct sta_info *sta)
363 {
364         u8 *myaddr = rsn->wpa_s->own_addr;
365         u8 *peer = sta->addr;
366         u8 *addr1 = peer, *addr2 = myaddr;
367         u8 context[AES_BLOCK_SIZE];
368
369         /* SAE */
370         RSN_SELECTOR_PUT(context, wpa_cipher_to_suite(0, WPA_CIPHER_GCMP));
371
372         if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
373                 addr1 = myaddr;
374                 addr2 = peer;
375         }
376         os_memcpy(context + 4, addr1, ETH_ALEN);
377         os_memcpy(context + 10, addr2, ETH_ALEN);
378
379         sha256_prf(sta->sae->pmk, sizeof(sta->sae->pmk), "AEK Derivation",
380                    context, sizeof(context), sta->aek, sizeof(sta->aek));
381 }
382
383
384 /* derive mesh temporal key from pmk */
385 int mesh_rsn_derive_mtk(struct wpa_supplicant *wpa_s, struct sta_info *sta)
386 {
387         u8 *ptr;
388         u8 *min, *max;
389         u16 min_lid, max_lid;
390         size_t lid_len = sizeof(sta->my_lid);
391         u8 *myaddr = wpa_s->own_addr;
392         u8 *peer = sta->addr;
393         /* 2 nonces, 2 linkids, akm suite, 2 mac addrs */
394         u8 context[64 + 4 + 4 + 12];
395
396         ptr = context;
397         if (os_memcmp(sta->my_nonce, sta->peer_nonce, WPA_NONCE_LEN) < 0) {
398                 min = sta->my_nonce;
399                 max = sta->peer_nonce;
400         } else {
401                 min = sta->peer_nonce;
402                 max = sta->my_nonce;
403         }
404         os_memcpy(ptr, min, WPA_NONCE_LEN);
405         os_memcpy(ptr + WPA_NONCE_LEN, max, WPA_NONCE_LEN);
406         ptr += 2 * WPA_NONCE_LEN;
407
408         if (sta->my_lid < sta->peer_lid) {
409                 min_lid = host_to_le16(sta->my_lid);
410                 max_lid = host_to_le16(sta->peer_lid);
411         } else {
412                 min_lid = host_to_le16(sta->peer_lid);
413                 max_lid = host_to_le16(sta->my_lid);
414         }
415         os_memcpy(ptr, &min_lid, lid_len);
416         os_memcpy(ptr + lid_len, &max_lid, lid_len);
417         ptr += 2 * lid_len;
418
419         /* SAE */
420         RSN_SELECTOR_PUT(ptr, wpa_cipher_to_suite(0, WPA_CIPHER_GCMP));
421         ptr += 4;
422
423         if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
424                 min = myaddr;
425                 max = peer;
426         } else {
427                 min = peer;
428                 max = myaddr;
429         }
430         os_memcpy(ptr, min, ETH_ALEN);
431         os_memcpy(ptr + ETH_ALEN, max, ETH_ALEN);
432
433         sha256_prf(sta->sae->pmk, sizeof(sta->sae->pmk),
434                    "Temporal Key Derivation", context, sizeof(context),
435                    sta->mtk, sizeof(sta->mtk));
436         return 0;
437 }
438
439
440 void mesh_rsn_init_ampe_sta(struct wpa_supplicant *wpa_s, struct sta_info *sta)
441 {
442         if (random_get_bytes(sta->my_nonce, WPA_NONCE_LEN) < 0) {
443                 wpa_printf(MSG_INFO, "mesh: Failed to derive random nonce");
444                 /* TODO: How to handle this more cleanly? */
445         }
446         os_memset(sta->peer_nonce, 0, WPA_NONCE_LEN);
447         mesh_rsn_derive_aek(wpa_s->mesh_rsn, sta);
448 }
449
450
451 /* insert AMPE and encrypted MIC at @ie.
452  * @mesh_rsn: mesh RSN context
453  * @sta: STA we're sending to
454  * @cat: pointer to category code in frame header.
455  * @buf: wpabuf to add encrypted AMPE and MIC to.
456  * */
457 int mesh_rsn_protect_frame(struct mesh_rsn *rsn, struct sta_info *sta,
458                            const u8 *cat, struct wpabuf *buf)
459 {
460         struct ieee80211_ampe_ie *ampe;
461         u8 const *ie = wpabuf_head_u8(buf) + wpabuf_len(buf);
462         u8 *ampe_ie = NULL, *mic_ie = NULL, *mic_payload;
463         const u8 *aad[] = { rsn->wpa_s->own_addr, sta->addr, cat };
464         const size_t aad_len[] = { ETH_ALEN, ETH_ALEN, ie - cat };
465         int ret = 0;
466
467         if (AES_BLOCK_SIZE + 2 + sizeof(*ampe) + 2 > wpabuf_tailroom(buf)) {
468                 wpa_printf(MSG_ERROR, "protect frame: buffer too small");
469                 return -EINVAL;
470         }
471
472         ampe_ie = os_zalloc(2 + sizeof(*ampe));
473         if (!ampe_ie) {
474                 wpa_printf(MSG_ERROR, "protect frame: out of memory");
475                 return -ENOMEM;
476         }
477
478         mic_ie = os_zalloc(2 + AES_BLOCK_SIZE);
479         if (!mic_ie) {
480                 wpa_printf(MSG_ERROR, "protect frame: out of memory");
481                 ret = -ENOMEM;
482                 goto free;
483         }
484
485         /*  IE: AMPE */
486         ampe_ie[0] = WLAN_EID_AMPE;
487         ampe_ie[1] = sizeof(*ampe);
488         ampe = (struct ieee80211_ampe_ie *) (ampe_ie + 2);
489
490         RSN_SELECTOR_PUT(ampe->selected_pairwise_suite,
491                      wpa_cipher_to_suite(WPA_PROTO_RSN, WPA_CIPHER_CCMP));
492         os_memcpy(ampe->local_nonce, sta->my_nonce, WPA_NONCE_LEN);
493         os_memcpy(ampe->peer_nonce, sta->peer_nonce, WPA_NONCE_LEN);
494         /* incomplete: see 13.5.4 */
495         /* TODO: static mgtk for now since we don't support rekeying! */
496         os_memcpy(ampe->mgtk, rsn->mgtk, 16);
497         /*  TODO: Populate Key RSC */
498         /*  expire in 13 decades or so */
499         os_memset(ampe->key_expiration, 0xff, 4);
500
501         /* IE: MIC */
502         mic_ie[0] = WLAN_EID_MIC;
503         mic_ie[1] = AES_BLOCK_SIZE;
504         wpabuf_put_data(buf, mic_ie, 2);
505         /* MIC field is output ciphertext */
506
507         /* encrypt after MIC */
508         mic_payload = (u8 *) wpabuf_put(buf, 2 + sizeof(*ampe) +
509                                         AES_BLOCK_SIZE);
510
511         if (aes_siv_encrypt(sta->aek, ampe_ie, 2 + sizeof(*ampe), 3,
512                             aad, aad_len, mic_payload)) {
513                 wpa_printf(MSG_ERROR, "protect frame: failed to encrypt");
514                 ret = -ENOMEM;
515                 goto free;
516         }
517
518 free:
519         os_free(ampe_ie);
520         os_free(mic_ie);
521
522         return ret;
523 }
524
525
526 int mesh_rsn_process_ampe(struct wpa_supplicant *wpa_s, struct sta_info *sta,
527                           struct ieee802_11_elems *elems, const u8 *cat,
528                           const u8 *chosen_pmk,
529                           const u8 *start, size_t elems_len)
530 {
531         int ret = 0;
532         struct ieee80211_ampe_ie *ampe;
533         u8 null_nonce[WPA_NONCE_LEN] = {};
534         u8 ampe_eid;
535         u8 ampe_ie_len;
536         u8 *ampe_buf, *crypt = NULL;
537         size_t crypt_len;
538         const u8 *aad[] = { sta->addr, wpa_s->own_addr, cat };
539         const size_t aad_len[] = { ETH_ALEN, ETH_ALEN,
540                                    (elems->mic - 2) - cat };
541
542         if (!sta->sae) {
543                 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
544
545                 if (!wpa_auth_pmksa_get(hapd->wpa_auth, sta->addr)) {
546                         wpa_printf(MSG_INFO,
547                                    "Mesh RSN: SAE is not prepared yet");
548                         return -1;
549                 }
550                 mesh_rsn_auth_sae_sta(wpa_s, sta);
551         }
552
553         if (chosen_pmk && os_memcmp(chosen_pmk, sta->sae->pmkid, PMKID_LEN)) {
554                 wpa_msg(wpa_s, MSG_DEBUG,
555                         "Mesh RSN: Invalid PMKID (Chosen PMK did not match calculated PMKID)");
556                 return -1;
557         }
558
559         if (!elems->mic || elems->mic_len < AES_BLOCK_SIZE) {
560                 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing mic ie");
561                 return -1;
562         }
563
564         ampe_buf = (u8 *) elems->mic + elems->mic_len;
565         if ((int) elems_len < ampe_buf - start)
566                 return -1;
567
568         crypt_len = elems_len - (elems->mic - start);
569         if (crypt_len < 2) {
570                 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing ampe ie");
571                 return -1;
572         }
573
574         /* crypt is modified by siv_decrypt */
575         crypt = os_zalloc(crypt_len);
576         if (!crypt) {
577                 wpa_printf(MSG_ERROR, "Mesh RSN: out of memory");
578                 ret = -ENOMEM;
579                 goto free;
580         }
581
582         os_memcpy(crypt, elems->mic, crypt_len);
583
584         if (aes_siv_decrypt(sta->aek, crypt, crypt_len, 3,
585                             aad, aad_len, ampe_buf)) {
586                 wpa_printf(MSG_ERROR, "Mesh RSN: frame verification failed!");
587                 ret = -1;
588                 goto free;
589         }
590
591         ampe_eid = *ampe_buf++;
592         ampe_ie_len = *ampe_buf++;
593
594         if (ampe_eid != WLAN_EID_AMPE ||
595             ampe_ie_len < sizeof(struct ieee80211_ampe_ie)) {
596                 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid ampe ie");
597                 ret = -1;
598                 goto free;
599         }
600
601         ampe = (struct ieee80211_ampe_ie *) ampe_buf;
602         if (os_memcmp(ampe->peer_nonce, null_nonce, WPA_NONCE_LEN) != 0 &&
603             os_memcmp(ampe->peer_nonce, sta->my_nonce, WPA_NONCE_LEN) != 0) {
604                 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid peer nonce");
605                 ret = -1;
606                 goto free;
607         }
608         os_memcpy(sta->peer_nonce, ampe->local_nonce,
609                   sizeof(ampe->local_nonce));
610         os_memcpy(sta->mgtk, ampe->mgtk, sizeof(ampe->mgtk));
611
612         /* todo parse mgtk expiration */
613 free:
614         os_free(crypt);
615         return ret;
616 }