blob: e730b6336c7d454e06bfc284c4836858bed3d3c6 [file] [log] [blame]
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001/*
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"
Dmitry Shmidtff787d52015-01-12 13:01:47 -080021#include "ap/ieee802_11.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080022#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
31void 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;
Dmitry Shmidte4663042016-04-04 10:07:49 -070035 struct hostapd_data *hapd;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080036
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);
Dmitry Shmidt7f656022015-02-25 14:36:37 -080041 wpa_msg(wpa_s, MSG_INFO, MESH_SAE_AUTH_FAILURE "addr=" MACSTR,
42 MAC2STR(sta->addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080043 if (sta->sae_auth_retry < MESH_AUTH_RETRY) {
44 mesh_rsn_auth_sae_sta(wpa_s, sta);
45 } else {
Dmitry Shmidte4663042016-04-04 10:07:49 -070046 hapd = wpa_s->ifmsh->bss[0];
47
Dmitry Shmidt7f656022015-02-25 14:36:37 -080048 if (sta->sae_auth_retry > MESH_AUTH_RETRY) {
Dmitry Shmidte4663042016-04-04 10:07:49 -070049 ap_free_sta(hapd, sta);
Dmitry Shmidt7f656022015-02-25 14:36:37 -080050 return;
51 }
52
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080053 /* block the STA if exceeded the number of attempts */
Dmitry Shmidt216983b2015-02-06 10:50:36 -080054 wpa_mesh_set_plink_state(wpa_s, sta, PLINK_BLOCKED);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080055 sta->sae->state = SAE_NOTHING;
Dmitry Shmidt7f656022015-02-25 14:36:37 -080056 wpa_msg(wpa_s, MSG_INFO, MESH_SAE_AUTH_BLOCKED "addr="
57 MACSTR " duration=%d",
58 MAC2STR(sta->addr),
Dmitry Shmidte4663042016-04-04 10:07:49 -070059 hapd->conf->ap_max_inactivity);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080060 }
61 sta->sae_auth_retry++;
62 }
63}
64
65
66static 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
77static const u8 *auth_get_psk(void *ctx, const u8 *addr,
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070078 const u8 *p2p_dev_addr, const u8 *prev_psk,
Hai Shalom021b0b52019-04-10 11:17:58 -070079 size_t *psk_len, int *vlan_id)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080080{
81 struct mesh_rsn *mesh_rsn = ctx;
82 struct hostapd_data *hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
83 struct sta_info *sta = ap_get_sta(hapd, addr);
84
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070085 if (psk_len)
86 *psk_len = PMK_LEN;
Hai Shalom021b0b52019-04-10 11:17:58 -070087 if (vlan_id)
88 *vlan_id = 0;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080089 wpa_printf(MSG_DEBUG, "AUTH: %s (addr=" MACSTR " prev_psk=%p)",
90 __func__, MAC2STR(addr), prev_psk);
91
92 if (sta && sta->auth_alg == WLAN_AUTH_SAE) {
93 if (!sta->sae || prev_psk)
94 return NULL;
95 return sta->sae->pmk;
96 }
97
98 return NULL;
99}
100
101
102static int auth_set_key(void *ctx, int vlan_id, enum wpa_alg alg,
103 const u8 *addr, int idx, u8 *key, size_t key_len)
104{
105 struct mesh_rsn *mesh_rsn = ctx;
106 u8 seq[6];
107
108 os_memset(seq, 0, sizeof(seq));
109
110 if (addr) {
111 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d addr=" MACSTR
112 " key_idx=%d)",
113 __func__, alg, MAC2STR(addr), idx);
114 } else {
115 wpa_printf(MSG_DEBUG, "AUTH: %s(alg=%d key_idx=%d)",
116 __func__, alg, idx);
117 }
118 wpa_hexdump_key(MSG_DEBUG, "AUTH: set_key - key", key, key_len);
119
120 return wpa_drv_set_key(mesh_rsn->wpa_s, alg, addr, idx,
121 1, seq, 6, key, key_len);
122}
123
124
125static int auth_start_ampe(void *ctx, const u8 *addr)
126{
127 struct mesh_rsn *mesh_rsn = ctx;
128 struct hostapd_data *hapd;
129 struct sta_info *sta;
130
131 if (mesh_rsn->wpa_s->current_ssid->mode != WPAS_MODE_MESH)
132 return -1;
133
134 hapd = mesh_rsn->wpa_s->ifmsh->bss[0];
135 sta = ap_get_sta(hapd, addr);
136 if (sta)
137 eloop_cancel_timeout(mesh_auth_timer, mesh_rsn->wpa_s, sta);
138
139 mesh_mpm_auth_peer(mesh_rsn->wpa_s, addr);
140 return 0;
141}
142
143
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700144static int __mesh_rsn_auth_init(struct mesh_rsn *rsn, const u8 *addr,
Hai Shalom74f70d42019-02-11 14:42:39 -0800145 enum mfp_options ieee80211w, int ocv)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800146{
147 struct wpa_auth_config conf;
Paul Stewart092955c2017-02-06 09:13:09 -0800148 static const struct wpa_auth_callbacks cb = {
149 .logger = auth_logger,
150 .get_psk = auth_get_psk,
151 .set_key = auth_set_key,
152 .start_ampe = auth_start_ampe,
153 };
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800154 u8 seq[6] = {};
155
156 wpa_printf(MSG_DEBUG, "AUTH: Initializing group state machine");
157
158 os_memset(&conf, 0, sizeof(conf));
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700159 conf.wpa = WPA_PROTO_RSN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800160 conf.wpa_key_mgmt = WPA_KEY_MGMT_SAE;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700161 conf.wpa_pairwise = rsn->pairwise_cipher;
162 conf.rsn_pairwise = rsn->pairwise_cipher;
163 conf.wpa_group = rsn->group_cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800164 conf.eapol_version = 0;
165 conf.wpa_group_rekey = -1;
Dmitry Shmidtebd93af2017-02-21 13:40:44 -0800166 conf.wpa_group_update_count = 4;
167 conf.wpa_pairwise_update_count = 4;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700168 conf.ieee80211w = ieee80211w;
169 if (ieee80211w != NO_MGMT_FRAME_PROTECTION)
170 conf.group_mgmt_cipher = rsn->mgmt_group_cipher;
Hai Shalom74f70d42019-02-11 14:42:39 -0800171#ifdef CONFIG_OCV
172 conf.ocv = ocv;
173#endif /* CONFIG_OCV */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800174
Paul Stewart092955c2017-02-06 09:13:09 -0800175 rsn->auth = wpa_init(addr, &conf, &cb, rsn);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800176 if (rsn->auth == NULL) {
177 wpa_printf(MSG_DEBUG, "AUTH: wpa_init() failed");
178 return -1;
179 }
180
181 /* TODO: support rekeying */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700182 rsn->mgtk_len = wpa_cipher_key_len(conf.wpa_group);
183 if (random_get_bytes(rsn->mgtk, rsn->mgtk_len) < 0)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800184 return -1;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700185 rsn->mgtk_key_id = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800186
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700187 if (ieee80211w != NO_MGMT_FRAME_PROTECTION) {
188 rsn->igtk_len = wpa_cipher_key_len(conf.group_mgmt_cipher);
189 if (random_get_bytes(rsn->igtk, rsn->igtk_len) < 0)
190 return -1;
191 rsn->igtk_key_id = 4;
192
193 /* group mgmt */
194 wpa_hexdump_key(MSG_DEBUG, "mesh: Own TX IGTK",
195 rsn->igtk, rsn->igtk_len);
196 wpa_drv_set_key(rsn->wpa_s,
197 wpa_cipher_to_alg(rsn->mgmt_group_cipher), NULL,
198 rsn->igtk_key_id, 1,
199 seq, sizeof(seq), rsn->igtk, rsn->igtk_len);
200 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800201
202 /* group privacy / data frames */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700203 wpa_hexdump_key(MSG_DEBUG, "mesh: Own TX MGTK",
204 rsn->mgtk, rsn->mgtk_len);
205 wpa_drv_set_key(rsn->wpa_s, wpa_cipher_to_alg(rsn->group_cipher), NULL,
206 rsn->mgtk_key_id, 1, seq, sizeof(seq),
207 rsn->mgtk, rsn->mgtk_len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800208
209 return 0;
210}
211
212
213static void mesh_rsn_deinit(struct mesh_rsn *rsn)
214{
215 os_memset(rsn->mgtk, 0, sizeof(rsn->mgtk));
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700216 rsn->mgtk_len = 0;
217 os_memset(rsn->igtk, 0, sizeof(rsn->igtk));
218 rsn->igtk_len = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800219 if (rsn->auth)
220 wpa_deinit(rsn->auth);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800221}
222
223
224struct mesh_rsn *mesh_rsn_auth_init(struct wpa_supplicant *wpa_s,
225 struct mesh_conf *conf)
226{
227 struct mesh_rsn *mesh_rsn;
228 struct hostapd_data *bss = wpa_s->ifmsh->bss[0];
229 const u8 *ie;
230 size_t ie_len;
Paul Stewart092955c2017-02-06 09:13:09 -0800231#ifdef CONFIG_PMKSA_CACHE_EXTERNAL
232 struct external_pmksa_cache *entry;
233#endif /* CONFIG_PMKSA_CACHE_EXTERNAL */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800234
235 mesh_rsn = os_zalloc(sizeof(*mesh_rsn));
236 if (mesh_rsn == NULL)
237 return NULL;
238 mesh_rsn->wpa_s = wpa_s;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700239 mesh_rsn->pairwise_cipher = conf->pairwise_cipher;
240 mesh_rsn->group_cipher = conf->group_cipher;
241 mesh_rsn->mgmt_group_cipher = conf->mgmt_group_cipher;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800242
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700243 if (__mesh_rsn_auth_init(mesh_rsn, wpa_s->own_addr,
Hai Shalom74f70d42019-02-11 14:42:39 -0800244 conf->ieee80211w, conf->ocv) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800245 mesh_rsn_deinit(mesh_rsn);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800246 os_free(mesh_rsn);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800247 return NULL;
248 }
249
250 bss->wpa_auth = mesh_rsn->auth;
251
Paul Stewart092955c2017-02-06 09:13:09 -0800252#ifdef CONFIG_PMKSA_CACHE_EXTERNAL
253 while ((entry = dl_list_last(&wpa_s->mesh_external_pmksa_cache,
254 struct external_pmksa_cache,
255 list)) != NULL) {
256 int ret;
257
258 ret = wpa_auth_pmksa_add_entry(bss->wpa_auth,
259 entry->pmksa_cache);
260 dl_list_del(&entry->list);
261 os_free(entry);
262
263 if (ret < 0)
264 return NULL;
265 }
266#endif /* CONFIG_PMKSA_CACHE_EXTERNAL */
267
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800268 ie = wpa_auth_get_wpa_ie(mesh_rsn->auth, &ie_len);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800269 conf->rsn_ie = (u8 *) ie;
270 conf->rsn_ie_len = ie_len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800271
272 wpa_supplicant_rsn_supp_set_config(wpa_s, wpa_s->current_ssid);
273
274 return mesh_rsn;
275}
276
277
278static int index_within_array(const int *array, int idx)
279{
280 int i;
281
282 for (i = 0; i < idx; i++) {
283 if (array[i] == -1)
284 return 0;
285 }
286
287 return 1;
288}
289
290
291static int mesh_rsn_sae_group(struct wpa_supplicant *wpa_s,
292 struct sae_data *sae)
293{
294 int *groups = wpa_s->ifmsh->bss[0]->conf->sae_groups;
295
296 /* Configuration may have changed, so validate current index */
297 if (!index_within_array(groups, wpa_s->mesh_rsn->sae_group_index))
298 return -1;
299
300 for (;;) {
301 int group = groups[wpa_s->mesh_rsn->sae_group_index];
302
303 if (group <= 0)
304 break;
305 if (sae_set_group(sae, group) == 0) {
306 wpa_dbg(wpa_s, MSG_DEBUG, "SME: Selected SAE group %d",
307 sae->group);
308 return 0;
309 }
310 wpa_s->mesh_rsn->sae_group_index++;
311 }
312
313 return -1;
314}
315
316
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800317static int mesh_rsn_build_sae_commit(struct wpa_supplicant *wpa_s,
318 struct wpa_ssid *ssid,
319 struct sta_info *sta)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800320{
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700321 const char *password;
322
323 password = ssid->sae_password;
324 if (!password)
325 password = ssid->passphrase;
326 if (!password) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800327 wpa_msg(wpa_s, MSG_DEBUG, "SAE: No password available");
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800328 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800329 }
330
331 if (mesh_rsn_sae_group(wpa_s, sta->sae) < 0) {
332 wpa_msg(wpa_s, MSG_DEBUG, "SAE: Failed to select group");
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800333 return -1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800334 }
335
Roshan Pius3a1667e2018-07-03 15:17:14 -0700336 if (sta->sae->tmp && !sta->sae->tmp->pw_id && ssid->sae_password_id) {
337 sta->sae->tmp->pw_id = os_strdup(ssid->sae_password_id);
338 if (!sta->sae->tmp->pw_id)
339 return -1;
340 }
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800341 return sae_prepare_commit(wpa_s->own_addr, sta->addr,
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700342 (u8 *) password, os_strlen(password),
Roshan Pius3a1667e2018-07-03 15:17:14 -0700343 ssid->sae_password_id,
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700344 sta->sae);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800345}
346
347
348/* initiate new SAE authentication with sta */
349int mesh_rsn_auth_sae_sta(struct wpa_supplicant *wpa_s,
350 struct sta_info *sta)
351{
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800352 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800353 struct wpa_ssid *ssid = wpa_s->current_ssid;
Dmitry Shmidte4663042016-04-04 10:07:49 -0700354 struct rsn_pmksa_cache_entry *pmksa;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800355 unsigned int rnd;
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800356 int ret;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800357
358 if (!ssid) {
359 wpa_msg(wpa_s, MSG_DEBUG,
360 "AUTH: No current_ssid known to initiate new SAE");
361 return -1;
362 }
363
364 if (!sta->sae) {
365 sta->sae = os_zalloc(sizeof(*sta->sae));
366 if (sta->sae == NULL)
367 return -1;
368 }
369
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800370 pmksa = wpa_auth_pmksa_get(hapd->wpa_auth, sta->addr, NULL);
Dmitry Shmidte4663042016-04-04 10:07:49 -0700371 if (pmksa) {
372 if (!sta->wpa_sm)
373 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
374 sta->addr, NULL);
375 if (!sta->wpa_sm) {
376 wpa_printf(MSG_ERROR,
377 "mesh: Failed to initialize RSN state machine");
378 return -1;
379 }
380
381 wpa_printf(MSG_DEBUG,
382 "AUTH: Mesh PMKSA cache entry found for " MACSTR
383 " - try to use PMKSA caching instead of new SAE authentication",
384 MAC2STR(sta->addr));
385 wpa_auth_pmksa_set_to_sm(pmksa, sta->wpa_sm, hapd->wpa_auth,
386 sta->sae->pmkid, sta->sae->pmk);
387 sae_accept_sta(hapd, sta);
388 sta->mesh_sae_pmksa_caching = 1;
389 return 0;
390 }
391 sta->mesh_sae_pmksa_caching = 0;
392
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800393 if (mesh_rsn_build_sae_commit(wpa_s, ssid, sta))
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800394 return -1;
395
396 wpa_msg(wpa_s, MSG_DEBUG,
397 "AUTH: started authentication with SAE peer: " MACSTR,
398 MAC2STR(sta->addr));
399
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800400 ret = auth_sae_init_committed(hapd, sta);
401 if (ret)
402 return ret;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800403
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800404 eloop_cancel_timeout(mesh_auth_timer, wpa_s, sta);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800405 rnd = rand() % MESH_AUTH_TIMEOUT;
406 eloop_register_timeout(MESH_AUTH_TIMEOUT + rnd, 0, mesh_auth_timer,
407 wpa_s, sta);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800408 return 0;
409}
410
411
412void mesh_rsn_get_pmkid(struct mesh_rsn *rsn, struct sta_info *sta, u8 *pmkid)
413{
Dmitry Shmidtd97138d2015-12-28 13:27:49 -0800414 os_memcpy(pmkid, sta->sae->pmkid, SAE_PMKID_LEN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800415}
416
417
418static void
419mesh_rsn_derive_aek(struct mesh_rsn *rsn, struct sta_info *sta)
420{
421 u8 *myaddr = rsn->wpa_s->own_addr;
422 u8 *peer = sta->addr;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700423 u8 *addr1, *addr2;
424 u8 context[RSN_SELECTOR_LEN + 2 * ETH_ALEN], *ptr = context;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800425
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700426 /*
427 * AEK = KDF-Hash-256(PMK, "AEK Derivation", Selected AKM Suite ||
428 * min(localMAC, peerMAC) || max(localMAC, peerMAC))
429 */
430 /* Selected AKM Suite: SAE */
431 RSN_SELECTOR_PUT(ptr, RSN_AUTH_KEY_MGMT_SAE);
432 ptr += RSN_SELECTOR_LEN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800433
434 if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
435 addr1 = myaddr;
436 addr2 = peer;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700437 } else {
438 addr1 = peer;
439 addr2 = myaddr;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800440 }
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700441 os_memcpy(ptr, addr1, ETH_ALEN);
442 ptr += ETH_ALEN;
443 os_memcpy(ptr, addr2, ETH_ALEN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800444
445 sha256_prf(sta->sae->pmk, sizeof(sta->sae->pmk), "AEK Derivation",
446 context, sizeof(context), sta->aek, sizeof(sta->aek));
447}
448
449
450/* derive mesh temporal key from pmk */
451int mesh_rsn_derive_mtk(struct wpa_supplicant *wpa_s, struct sta_info *sta)
452{
453 u8 *ptr;
454 u8 *min, *max;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800455 u8 *myaddr = wpa_s->own_addr;
456 u8 *peer = sta->addr;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700457 u8 context[2 * WPA_NONCE_LEN + 2 * 2 + RSN_SELECTOR_LEN + 2 * ETH_ALEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800458
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700459 /*
460 * MTK = KDF-Hash-Length(PMK, "Temporal Key Derivation", min(localNonce,
461 * peerNonce) || max(localNonce, peerNonce) || min(localLinkID,
462 * peerLinkID) || max(localLinkID, peerLinkID) || Selected AKM Suite ||
463 * min(localMAC, peerMAC) || max(localMAC, peerMAC))
464 */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800465 ptr = context;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700466 if (os_memcmp(sta->my_nonce, sta->peer_nonce, WPA_NONCE_LEN) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800467 min = sta->my_nonce;
468 max = sta->peer_nonce;
469 } else {
470 min = sta->peer_nonce;
471 max = sta->my_nonce;
472 }
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700473 os_memcpy(ptr, min, WPA_NONCE_LEN);
474 ptr += WPA_NONCE_LEN;
475 os_memcpy(ptr, max, WPA_NONCE_LEN);
476 ptr += WPA_NONCE_LEN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800477
478 if (sta->my_lid < sta->peer_lid) {
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700479 WPA_PUT_LE16(ptr, sta->my_lid);
480 ptr += 2;
481 WPA_PUT_LE16(ptr, sta->peer_lid);
482 ptr += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800483 } else {
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700484 WPA_PUT_LE16(ptr, sta->peer_lid);
485 ptr += 2;
486 WPA_PUT_LE16(ptr, sta->my_lid);
487 ptr += 2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800488 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800489
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700490 /* Selected AKM Suite: SAE */
491 RSN_SELECTOR_PUT(ptr, RSN_AUTH_KEY_MGMT_SAE);
492 ptr += RSN_SELECTOR_LEN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800493
494 if (os_memcmp(myaddr, peer, ETH_ALEN) < 0) {
495 min = myaddr;
496 max = peer;
497 } else {
498 min = peer;
499 max = myaddr;
500 }
501 os_memcpy(ptr, min, ETH_ALEN);
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700502 ptr += ETH_ALEN;
503 os_memcpy(ptr, max, ETH_ALEN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800504
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700505 sta->mtk_len = wpa_cipher_key_len(wpa_s->mesh_rsn->pairwise_cipher);
506 sha256_prf(sta->sae->pmk, SAE_PMK_LEN,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800507 "Temporal Key Derivation", context, sizeof(context),
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700508 sta->mtk, sta->mtk_len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800509 return 0;
510}
511
512
513void mesh_rsn_init_ampe_sta(struct wpa_supplicant *wpa_s, struct sta_info *sta)
514{
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700515 if (random_get_bytes(sta->my_nonce, WPA_NONCE_LEN) < 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800516 wpa_printf(MSG_INFO, "mesh: Failed to derive random nonce");
517 /* TODO: How to handle this more cleanly? */
518 }
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700519 os_memset(sta->peer_nonce, 0, WPA_NONCE_LEN);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800520 mesh_rsn_derive_aek(wpa_s->mesh_rsn, sta);
521}
522
523
524/* insert AMPE and encrypted MIC at @ie.
525 * @mesh_rsn: mesh RSN context
526 * @sta: STA we're sending to
527 * @cat: pointer to category code in frame header.
528 * @buf: wpabuf to add encrypted AMPE and MIC to.
529 * */
530int mesh_rsn_protect_frame(struct mesh_rsn *rsn, struct sta_info *sta,
531 const u8 *cat, struct wpabuf *buf)
532{
533 struct ieee80211_ampe_ie *ampe;
534 u8 const *ie = wpabuf_head_u8(buf) + wpabuf_len(buf);
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700535 u8 *ampe_ie, *pos, *mic_payload;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800536 const u8 *aad[] = { rsn->wpa_s->own_addr, sta->addr, cat };
537 const size_t aad_len[] = { ETH_ALEN, ETH_ALEN, ie - cat };
538 int ret = 0;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700539 size_t len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800540
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700541 len = sizeof(*ampe);
542 if (cat[1] == PLINK_OPEN)
543 len += rsn->mgtk_len + WPA_KEY_RSC_LEN + 4;
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700544 if (cat[1] == PLINK_OPEN && rsn->igtk_len)
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700545 len += 2 + 6 + rsn->igtk_len;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700546
547 if (2 + AES_BLOCK_SIZE + 2 + len > wpabuf_tailroom(buf)) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800548 wpa_printf(MSG_ERROR, "protect frame: buffer too small");
549 return -EINVAL;
550 }
551
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700552 ampe_ie = os_zalloc(2 + len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800553 if (!ampe_ie) {
554 wpa_printf(MSG_ERROR, "protect frame: out of memory");
555 return -ENOMEM;
556 }
557
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800558 /* IE: AMPE */
559 ampe_ie[0] = WLAN_EID_AMPE;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700560 ampe_ie[1] = len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800561 ampe = (struct ieee80211_ampe_ie *) (ampe_ie + 2);
562
563 RSN_SELECTOR_PUT(ampe->selected_pairwise_suite,
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700564 RSN_CIPHER_SUITE_CCMP);
565 os_memcpy(ampe->local_nonce, sta->my_nonce, WPA_NONCE_LEN);
566 os_memcpy(ampe->peer_nonce, sta->peer_nonce, WPA_NONCE_LEN);
567
568 pos = (u8 *) (ampe + 1);
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700569 if (cat[1] != PLINK_OPEN)
570 goto skip_keys;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700571
572 /* TODO: Key Replay Counter[8] optionally for
573 * Mesh Group Key Inform/Acknowledge frames */
574
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800575 /* TODO: static mgtk for now since we don't support rekeying! */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700576 /*
577 * GTKdata[variable]:
578 * MGTK[variable] || Key RSC[8] || GTKExpirationTime[4]
579 */
580 os_memcpy(pos, rsn->mgtk, rsn->mgtk_len);
581 pos += rsn->mgtk_len;
582 wpa_drv_get_seqnum(rsn->wpa_s, NULL, rsn->mgtk_key_id, pos);
583 pos += WPA_KEY_RSC_LEN;
584 /* Use fixed GTKExpirationTime for now */
585 WPA_PUT_LE32(pos, 0xffffffff);
586 pos += 4;
587
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700588 /*
589 * IGTKdata[variable]:
590 * Key ID[2], IPN[6], IGTK[variable]
591 */
592 if (rsn->igtk_len) {
593 WPA_PUT_LE16(pos, rsn->igtk_key_id);
594 pos += 2;
595 wpa_drv_get_seqnum(rsn->wpa_s, NULL, rsn->igtk_key_id, pos);
596 pos += 6;
597 os_memcpy(pos, rsn->igtk, rsn->igtk_len);
598 }
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700599
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700600skip_keys:
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700601 wpa_hexdump_key(MSG_DEBUG, "mesh: Plaintext AMPE element",
602 ampe_ie, 2 + len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800603
604 /* IE: MIC */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700605 wpabuf_put_u8(buf, WLAN_EID_MIC);
606 wpabuf_put_u8(buf, AES_BLOCK_SIZE);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800607 /* MIC field is output ciphertext */
608
609 /* encrypt after MIC */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700610 mic_payload = wpabuf_put(buf, 2 + len + AES_BLOCK_SIZE);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800611
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800612 if (aes_siv_encrypt(sta->aek, sizeof(sta->aek), ampe_ie, 2 + len, 3,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800613 aad, aad_len, mic_payload)) {
614 wpa_printf(MSG_ERROR, "protect frame: failed to encrypt");
615 ret = -ENOMEM;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800616 }
617
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800618 os_free(ampe_ie);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800619
620 return ret;
621}
622
623
624int mesh_rsn_process_ampe(struct wpa_supplicant *wpa_s, struct sta_info *sta,
625 struct ieee802_11_elems *elems, const u8 *cat,
Dmitry Shmidtd97138d2015-12-28 13:27:49 -0800626 const u8 *chosen_pmk,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800627 const u8 *start, size_t elems_len)
628{
629 int ret = 0;
630 struct ieee80211_ampe_ie *ampe;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700631 u8 null_nonce[WPA_NONCE_LEN] = {};
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800632 u8 ampe_eid;
633 u8 ampe_ie_len;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700634 u8 *ampe_buf, *crypt = NULL, *pos, *end;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800635 size_t crypt_len;
636 const u8 *aad[] = { sta->addr, wpa_s->own_addr, cat };
637 const size_t aad_len[] = { ETH_ALEN, ETH_ALEN,
Hai Shalom021b0b52019-04-10 11:17:58 -0700638 elems->mic ? (elems->mic - 2) - cat : 0 };
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700639 size_t key_len;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800640
Dmitry Shmidte4663042016-04-04 10:07:49 -0700641 if (!sta->sae) {
642 struct hostapd_data *hapd = wpa_s->ifmsh->bss[0];
643
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800644 if (!wpa_auth_pmksa_get(hapd->wpa_auth, sta->addr, NULL)) {
Dmitry Shmidte4663042016-04-04 10:07:49 -0700645 wpa_printf(MSG_INFO,
646 "Mesh RSN: SAE is not prepared yet");
647 return -1;
648 }
649 mesh_rsn_auth_sae_sta(wpa_s, sta);
650 }
651
Hai Shalom021b0b52019-04-10 11:17:58 -0700652 if (chosen_pmk &&
653 (!sta->sae ||
654 os_memcmp(chosen_pmk, sta->sae->pmkid, PMKID_LEN) != 0)) {
Dmitry Shmidtd97138d2015-12-28 13:27:49 -0800655 wpa_msg(wpa_s, MSG_DEBUG,
656 "Mesh RSN: Invalid PMKID (Chosen PMK did not match calculated PMKID)");
657 return -1;
658 }
659
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800660 if (!elems->mic || elems->mic_len < AES_BLOCK_SIZE) {
661 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing mic ie");
662 return -1;
663 }
664
665 ampe_buf = (u8 *) elems->mic + elems->mic_len;
666 if ((int) elems_len < ampe_buf - start)
667 return -1;
668
669 crypt_len = elems_len - (elems->mic - start);
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700670 if (crypt_len < 2 + AES_BLOCK_SIZE) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800671 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: missing ampe ie");
672 return -1;
673 }
674
675 /* crypt is modified by siv_decrypt */
676 crypt = os_zalloc(crypt_len);
677 if (!crypt) {
678 wpa_printf(MSG_ERROR, "Mesh RSN: out of memory");
679 ret = -ENOMEM;
680 goto free;
681 }
682
683 os_memcpy(crypt, elems->mic, crypt_len);
684
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800685 if (aes_siv_decrypt(sta->aek, sizeof(sta->aek), crypt, crypt_len, 3,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800686 aad, aad_len, ampe_buf)) {
687 wpa_printf(MSG_ERROR, "Mesh RSN: frame verification failed!");
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700688 ret = -2;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800689 goto free;
690 }
691
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700692 crypt_len -= AES_BLOCK_SIZE;
693 wpa_hexdump_key(MSG_DEBUG, "mesh: Decrypted AMPE element",
694 ampe_buf, crypt_len);
695
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800696 ampe_eid = *ampe_buf++;
697 ampe_ie_len = *ampe_buf++;
698
699 if (ampe_eid != WLAN_EID_AMPE ||
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700700 (size_t) 2 + ampe_ie_len > crypt_len ||
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800701 ampe_ie_len < sizeof(struct ieee80211_ampe_ie)) {
702 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid ampe ie");
703 ret = -1;
704 goto free;
705 }
706
707 ampe = (struct ieee80211_ampe_ie *) ampe_buf;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700708 pos = (u8 *) (ampe + 1);
709 end = ampe_buf + ampe_ie_len;
710 if (os_memcmp(ampe->peer_nonce, null_nonce, WPA_NONCE_LEN) != 0 &&
711 os_memcmp(ampe->peer_nonce, sta->my_nonce, WPA_NONCE_LEN) != 0) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800712 wpa_msg(wpa_s, MSG_DEBUG, "Mesh RSN: invalid peer nonce");
713 ret = -1;
714 goto free;
715 }
716 os_memcpy(sta->peer_nonce, ampe->local_nonce,
717 sizeof(ampe->local_nonce));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800718
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700719 /* TODO: Key Replay Counter[8] in Mesh Group Key Inform/Acknowledge
720 * frames */
721
722 /*
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -0700723 * GTKdata shall not be included in Mesh Peering Confirm. While the
724 * standard does not state the same about IGTKdata, that same constraint
725 * needs to apply for it. It makes no sense to include the keys in Mesh
726 * Peering Close frames either, so while the standard does not seem to
727 * have a shall statement for these, they are described without
728 * mentioning GTKdata.
729 *
730 * An earlier implementation used to add GTKdata to both Mesh Peering
731 * Open and Mesh Peering Confirm frames, so ignore the possibly present
732 * GTKdata frame without rejecting the frame as a backwards
733 * compatibility mechanism.
734 */
735 if (cat[1] != PLINK_OPEN) {
736 if (end > pos) {
737 wpa_hexdump_key(MSG_DEBUG,
738 "mesh: Ignore unexpected GTKdata(etc.) fields in the end of AMPE element in Mesh Peering Confirm/Close",
739 pos, end - pos);
740 }
741 goto free;
742 }
743
744 /*
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700745 * GTKdata[variable]:
746 * MGTK[variable] || Key RSC[8] || GTKExpirationTime[4]
747 */
748 sta->mgtk_key_id = 1; /* FIX: Where to get Key ID? */
749 key_len = wpa_cipher_key_len(wpa_s->mesh_rsn->group_cipher);
750 if ((int) key_len + WPA_KEY_RSC_LEN + 4 > end - pos) {
751 wpa_dbg(wpa_s, MSG_DEBUG, "mesh: Truncated AMPE element");
752 ret = -1;
753 goto free;
754 }
755 sta->mgtk_len = key_len;
756 os_memcpy(sta->mgtk, pos, sta->mgtk_len);
757 wpa_hexdump_key(MSG_DEBUG, "mesh: GTKdata - MGTK",
758 sta->mgtk, sta->mgtk_len);
759 pos += sta->mgtk_len;
760 wpa_hexdump(MSG_DEBUG, "mesh: GTKdata - MGTK - Key RSC",
761 pos, WPA_KEY_RSC_LEN);
762 os_memcpy(sta->mgtk_rsc, pos, sizeof(sta->mgtk_rsc));
763 pos += WPA_KEY_RSC_LEN;
764 wpa_printf(MSG_DEBUG,
765 "mesh: GTKdata - MGTK - GTKExpirationTime: %u seconds",
766 WPA_GET_LE32(pos));
767 pos += 4;
768
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700769 /*
770 * IGTKdata[variable]:
771 * Key ID[2], IPN[6], IGTK[variable]
772 */
773 key_len = wpa_cipher_key_len(wpa_s->mesh_rsn->mgmt_group_cipher);
774 if (end - pos >= (int) (2 + 6 + key_len)) {
775 sta->igtk_key_id = WPA_GET_LE16(pos);
776 wpa_printf(MSG_DEBUG, "mesh: IGTKdata - Key ID %u",
777 sta->igtk_key_id);
778 pos += 2;
779 os_memcpy(sta->igtk_rsc, pos, sizeof(sta->igtk_rsc));
780 wpa_hexdump(MSG_DEBUG, "mesh: IGTKdata - IPN",
781 sta->igtk_rsc, sizeof(sta->igtk_rsc));
782 pos += 6;
783 os_memcpy(sta->igtk, pos, key_len);
784 sta->igtk_len = key_len;
785 wpa_hexdump_key(MSG_DEBUG, "mesh: IGTKdata - IGTK",
786 sta->igtk, sta->igtk_len);
787 }
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -0700788
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800789free:
790 os_free(crypt);
791 return ret;
792}