Select one of the symbols to view example projects that use it.
 
Outline
#include "common/sae.h"
#include "common/ieee802_11_defs.h"
#include "esp_wifi_driver.h"
#include "rsn_supp/wpa.h"
#include "ap/hostapd.h"
#include "ap/ieee802_11.h"
#include "ap/sta_info.h"
#include "esp_wpa3_i.h"
#include "endian.h"
#include "esp_hostap.h"
#include <inttypes.h>
g_sae_pt
g_sae_data
g_sae_token
g_sae_commit
g_sae_confirm
g_allowed_groups
wpa3_build_sae_commit(u8 *, size_t *)
wpa3_build_sae_confirm()
esp_wpa3_free_sae_data()
wpa3_build_sae_msg(u8 *, u32, size_t *)
wpa3_sae_is_group_enabled(int)
wpa3_check_sae_rejected_groups(const struct wpabuf *)
wpa3_parse_sae_commit(u8 *, u32, u16)
wpa3_parse_sae_confirm(u8 *, u32)
wpa3_parse_sae_msg(u8 *, size_t, u32, u16)
esp_wifi_register_wpa3_cb(struct wpa_funcs *)
esp_wifi_unregister_wpa3_cb()
g_wpa3_hostap_task_hdl
g_wpa3_hostap_evt_queue
g_wpa3_hostap_auth_api_lock
wpa3_hostap_post_evt(uint32_t, uint32_t)
wpa3_process_rx_commit(wpa3_hostap_auth_event_t *)
wpa3_process_rx_confirm(wpa3_hostap_auth_event_t *)
esp_wpa3_hostap_task(void *)
wpa3_hostap_auth_init(void *)
wpa3_hostap_auth_deinit()
wpa3_hostap_handle_auth(u8 *, size_t, u32, u16, u8 *)
esp_send_sae_auth_reply(struct hostapd_data *, const u8 *, const u8 *, u16, u16, u16, const u8 *, size_t)
esp_wifi_register_wpa3_ap_cb(struct wpa_funcs *)
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wpa_supplicant/esp_supplicant/src/esp_wpa3.c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2019-2025 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifdef CONFIG_WPA3_SAE #include "common/sae.h" #include "common/ieee802_11_defs.h" #include "esp_wifi_driver.h" #include "rsn_supp/wpa.h" #include "ap/hostapd.h" #include "ap/ieee802_11.h" #include "ap/sta_info.h" #include "esp_wpa3_i.h" #include "endian.h" #include "esp_hostap.h" #include <inttypes.h>11 includes static struct sae_pt *g_sae_pt; static struct sae_data g_sae_data; static struct wpabuf *g_sae_token = NULL; static struct wpabuf *g_sae_commit = NULL; static struct wpabuf *g_sae_confirm = NULL; int g_allowed_groups[] = { IANA_SECP256R1, 0 }; static esp_err_t wpa3_build_sae_commit(u8 *bssid, size_t *sae_msg_len) { int default_group = IANA_SECP256R1; u32 len = 0; uint8_t use_pt = 0; u8 own_addr[ETH_ALEN]; const u8 *pw = (const u8 *)esp_wifi_sta_get_prof_password_internal(); struct wifi_ssid *ssid = esp_wifi_sta_get_prof_ssid_internal(); uint8_t sae_pwe = esp_wifi_get_config_sae_pwe_h2e_internal(WIFI_IF_STA); char sae_pwd_id[SAE_H2E_IDENTIFIER_LEN + 1] = {0}; bool valid_pwd_id = false; const u8 *rsnxe; u8 rsnxe_capa = 0; if (wpa_key_mgmt_sae_ext_key(gWpaSm.key_mgmt)) { use_pt = 1; }{...} rsnxe = esp_wifi_sta_get_rsnxe(bssid); if (rsnxe && rsnxe[1] >= 1) { rsnxe_capa = rsnxe[2]; }{...} #ifdef CONFIG_SAE_PK bool use_pk = false; uint8_t sae_pk_mode = esp_wifi_sta_get_config_sae_pk_internal(); if ((rsnxe_capa & BIT(WLAN_RSNX_CAPAB_SAE_PK)) && sae_pk_mode != WPA3_SAE_PK_MODE_DISABLED && ((pw && sae_pk_valid_password((const char *)pw)))) { use_pt = 1; use_pk = true; }{...} if (sae_pk_mode == WPA3_SAE_PK_MODE_ONLY && !use_pk) { wpa_printf(MSG_DEBUG, "SAE: Cannot use PK with the selected AP"); return ESP_FAIL; }{...} /* ... */#endif /* CONFIG_SAE_PK */ if (use_pt || sae_pwe == SAE_PWE_HASH_TO_ELEMENT || sae_pwe == SAE_PWE_BOTH) { use_pt = !!(rsnxe_capa & BIT(WLAN_RSNX_CAPAB_SAE_H2E)); if ((sae_pwe == SAE_PWE_HASH_TO_ELEMENT || wpa_key_mgmt_sae_ext_key(gWpaSm.key_mgmt) #ifdef CONFIG_SAE_PK || (use_pk && sae_pk_mode == WPA3_SAE_PK_MODE_ONLY) #endif /* CONFIG_SAE_PK */ ) && !use_pt) { wpa_printf(MSG_DEBUG, "SAE: Cannot use H2E with the selected AP"); return ESP_FAIL; }{...} }{...} if (use_pt != 0) { memcpy(sae_pwd_id, esp_wifi_sta_get_sae_identifier_internal(), SAE_H2E_IDENTIFIER_LEN); if (os_strlen(sae_pwd_id) > 0) { valid_pwd_id = true; }{...} }{...} if (use_pt && !g_sae_pt) { g_sae_pt = sae_derive_pt(g_allowed_groups, ssid->ssid, ssid->len, pw, strlen((const char *)pw), valid_pwd_id ? sae_pwd_id : NULL); }{...} if (wpa_sta_cur_pmksa_matches_akm()) { wpa_printf(MSG_INFO, "wpa3: Skip SAE and use cached PMK instead"); *sae_msg_len = 0; return ESP_FAIL; }{...} if (g_sae_commit) { wpabuf_free(g_sae_commit); g_sae_commit = NULL; }{...} if (g_sae_token) { len = wpabuf_len(g_sae_token); goto reuse_data; }{...} memset(&g_sae_data, 0, sizeof(g_sae_data)); if (sae_set_group(&g_sae_data, default_group)) { wpa_printf(MSG_ERROR, "wpa3: could not set SAE group %d", default_group); return ESP_FAIL; }{...} g_sae_data.akmp = gWpaSm.key_mgmt; esp_wifi_get_macaddr_internal(WIFI_IF_STA, own_addr); if (!bssid) { wpa_printf(MSG_ERROR, "wpa3: cannot prepare SAE commit with no BSSID!"); return ESP_FAIL; }{...} if (use_pt && sae_prepare_commit_pt(&g_sae_data, g_sae_pt, own_addr, bssid, NULL, NULL) < 0) { wpa_printf(MSG_ERROR, "wpa3: failed to prepare SAE commit!"); return ESP_FAIL; }{...} if (!use_pt && sae_prepare_commit(own_addr, bssid, pw, strlen((const char *)pw), &g_sae_data) < 0) { wpa_printf(MSG_ERROR, "wpa3: failed to prepare SAE commit!"); return ESP_FAIL; }{...} #ifdef CONFIG_SAE_PK if (g_sae_data.tmp && use_pt && use_pk) { g_sae_data.pk = 1; os_memcpy(g_sae_data.tmp->own_addr, own_addr, ETH_ALEN); os_memcpy(g_sae_data.tmp->peer_addr, bssid, ETH_ALEN); sae_pk_set_password(&g_sae_data, (const char*) pw); }{...} #endif/* ... */ reuse_data: len += SAE_COMMIT_MAX_LEN; g_sae_commit = wpabuf_alloc(len); if (!g_sae_commit) { wpa_printf(MSG_ERROR, "wpa3: failed to allocate buffer for commit msg"); return ESP_FAIL; }{...} if (sae_write_commit(&g_sae_data, g_sae_commit, g_sae_token, valid_pwd_id ? sae_pwd_id : NULL) != ESP_OK) { wpa_printf(MSG_ERROR, "wpa3: failed to write SAE commit msg"); wpabuf_free(g_sae_commit); g_sae_commit = NULL; return ESP_FAIL; }{...} if (g_sae_token) { wpabuf_free(g_sae_token); g_sae_token = NULL; }{...} g_sae_data.state = SAE_COMMITTED; return ESP_OK; }{ ... } static esp_err_t wpa3_build_sae_confirm(void) { if (g_sae_data.state != SAE_COMMITTED) { return ESP_FAIL; }{...} if (g_sae_confirm) { wpabuf_free(g_sae_confirm); g_sae_confirm = NULL; }{...} g_sae_confirm = wpabuf_alloc(SAE_COMMIT_MAX_LEN); if (!g_sae_confirm) { wpa_printf(MSG_ERROR, "wpa3: failed to allocate buffer for confirm msg"); return ESP_FAIL; }{...} if (sae_write_confirm(&g_sae_data, g_sae_confirm) != ESP_OK) { wpa_printf(MSG_ERROR, "wpa3: failed to write SAE confirm msg"); wpabuf_free(g_sae_confirm); g_sae_confirm = NULL; return ESP_FAIL; }{...} g_sae_data.state = SAE_CONFIRMED; return ESP_OK; }{ ... } void esp_wpa3_free_sae_data(void) { if (g_sae_commit) { wpabuf_free(g_sae_commit); g_sae_commit = NULL; }{...} if (g_sae_confirm) { wpabuf_free(g_sae_confirm); g_sae_confirm = NULL; }{...} sae_clear_data(&g_sae_data); if (g_sae_pt) { sae_deinit_pt(g_sae_pt); g_sae_pt = NULL; }{...} }{ ... } static u8 *wpa3_build_sae_msg(u8 *bssid, u32 sae_msg_type, size_t *sae_msg_len) { u8 *buf = NULL; switch (sae_msg_type) { case SAE_MSG_COMMIT: /* Do not go for SAE when WPS is ongoing */ if (esp_wifi_get_wps_status_internal() != WPS_STATUS_DISABLE) { *sae_msg_len = 0; return NULL; }{...} if (ESP_OK != wpa3_build_sae_commit(bssid, sae_msg_len)) { return NULL; }{...} *sae_msg_len = wpabuf_len(g_sae_commit); buf = wpabuf_mhead_u8(g_sae_commit); break;... case SAE_MSG_CONFIRM: if (ESP_OK != wpa3_build_sae_confirm()) { return NULL; }{...} *sae_msg_len = wpabuf_len(g_sae_confirm); buf = wpabuf_mhead_u8(g_sae_confirm); break;... default: break;... }{...} return buf; }{ ... } static int wpa3_sae_is_group_enabled(int group) { int *groups = NULL; int default_groups[] = { 19, 0 }; int i; if (!groups) { groups = default_groups; }{...} for (i = 0; groups[i] > 0; i++) { if (groups[i] == group) { return 1; }{...} }{...} return 0; }{ ... } static int wpa3_check_sae_rejected_groups(const struct wpabuf *groups) { size_t i, count, len; const u8 *pos; if (!groups) { return 0; }{...} pos = wpabuf_head(groups); len = wpabuf_len(groups); if (len & 1) { wpa_printf(MSG_DEBUG, "SAE: Invalid length of the Rejected Groups element payload: %zu", len); return 1; }{...} count = len / 2; for (i = 0; i < count; i++) { int enabled; u16 group; group = WPA_GET_LE16(pos); pos += 2; enabled = wpa3_sae_is_group_enabled(group); wpa_printf(MSG_DEBUG, "SAE: Rejected group %u is %s", group, enabled ? "enabled" : "disabled"); if (enabled) { return 1; }{...} }{...} return 0; }{ ... } static int wpa3_parse_sae_commit(u8 *buf, u32 len, u16 status) { int ret; if (g_sae_data.state != SAE_COMMITTED) { wpa_printf(MSG_DEBUG, "wpa3: Discarding commit frame received in state %d", g_sae_data.state); return ESP_ERR_WIFI_DISCARD; }{...} if (status == WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ) { if (g_sae_token) { wpabuf_free(g_sae_token); }{...} if (g_sae_data.h2e) { if ((buf[2] != WLAN_EID_EXTENSION) || (buf[3] == 0) || (buf[3] > len - 4) || (buf[4] != WLAN_EID_EXT_ANTI_CLOGGING_TOKEN)) { wpa_printf(MSG_ERROR, "Invalid SAE anti-clogging token container header"); return ESP_FAIL; }{...} g_sae_token = wpabuf_alloc_copy(buf + 5, len - 5); }{...} else { g_sae_token = wpabuf_alloc_copy(buf + 2, len - 2); }{...} return ESP_OK; }{...} ret = sae_parse_commit(&g_sae_data, buf, len, NULL, 0, g_allowed_groups, (status == WLAN_STATUS_SAE_HASH_TO_ELEMENT || status == WLAN_STATUS_SAE_PK)); if (ret == SAE_SILENTLY_DISCARD) { wpa_printf(MSG_DEBUG, "wpa3: Discarding commit frame due to reflection attack"); return ESP_ERR_WIFI_DISCARD; }{...} else if (ret) { wpa_printf(MSG_ERROR, "wpa3: could not parse commit(%d)", ret); return ret; }{...} if (g_sae_data.tmp && wpa3_check_sae_rejected_groups(g_sae_data.tmp->peer_rejected_groups)) { return -1; }{...} ret = sae_process_commit(&g_sae_data); if (ret) { wpa_printf(MSG_ERROR, "wpa3: could not process commit(%d)", ret); return ret; }{...} return ESP_OK; }{ ... } static int wpa3_parse_sae_confirm(u8 *buf, u32 len) { if (g_sae_data.state != SAE_CONFIRMED) { wpa_printf(MSG_ERROR, "wpa3: failed to parse SAE commit in state(%d)!", g_sae_data.state); return ESP_FAIL; }{...} if (sae_check_confirm(&g_sae_data, buf, len) != ESP_OK) { wpa_printf(MSG_ERROR, "wpa3: failed to parse SAE confirm"); return ESP_FAIL; }{...} g_sae_data.state = SAE_ACCEPTED; wpa_set_pmk(g_sae_data.pmk, g_sae_data.pmk_len, g_sae_data.pmkid, true); return ESP_OK; }{ ... } static int wpa3_parse_sae_msg(u8 *buf, size_t len, u32 sae_msg_type, u16 status) { int ret = ESP_OK; switch (sae_msg_type) { case SAE_MSG_COMMIT: ret = wpa3_parse_sae_commit(buf, len, status); break;... case SAE_MSG_CONFIRM: ret = wpa3_parse_sae_confirm(buf, len); esp_wpa3_free_sae_data(); break;... default: wpa_printf(MSG_ERROR, "wpa3: Invalid SAE msg type(%" PRId32 ")!", sae_msg_type); ret = ESP_FAIL; break;... }{...} return ret; }{ ... } void esp_wifi_register_wpa3_cb(struct wpa_funcs *wpa_cb) { wpa_cb->wpa3_build_sae_msg = wpa3_build_sae_msg; wpa_cb->wpa3_parse_sae_msg = wpa3_parse_sae_msg; }{ ... } void esp_wifi_unregister_wpa3_cb(void) { extern struct wpa_funcs *wpa_cb; wpa_cb->wpa3_build_sae_msg = NULL; wpa_cb->wpa3_parse_sae_msg = NULL; }{ ... } #endif/* ... */ /* CONFIG_WPA3_SAE */ #ifdef CONFIG_SAE static TaskHandle_t g_wpa3_hostap_task_hdl = NULL; static QueueHandle_t g_wpa3_hostap_evt_queue = NULL; SemaphoreHandle_t g_wpa3_hostap_auth_api_lock = NULL; int wpa3_hostap_post_evt(uint32_t evt_id, uint32_t data) { wpa3_hostap_auth_event_t evt; evt.id = evt_id; evt.data = data; if (g_wpa3_hostap_auth_api_lock) { WPA3_HOSTAP_AUTH_API_LOCK(); if (g_wpa3_hostap_evt_queue == NULL) { WPA3_HOSTAP_AUTH_API_UNLOCK(); wpa_printf(MSG_DEBUG, "hostap evt queue NULL"); return ESP_FAIL; }{...} }{...} else { wpa_printf(MSG_DEBUG, "g_wpa3_hostap_auth_api_lock not found"); return ESP_FAIL; }{...} if (evt.id == SIG_WPA3_RX_CONFIRM || evt.id == SIG_TASK_DEL) { /* prioritising confirm for completing handshake for committed sta */ if (os_queue_send_to_front(g_wpa3_hostap_evt_queue, &evt, 0) != pdPASS) { WPA3_HOSTAP_AUTH_API_UNLOCK(); wpa_printf(MSG_DEBUG, "failed to add msg to queue front"); return ESP_FAIL; }{...} }{...} else { if (os_queue_send(g_wpa3_hostap_evt_queue, &evt, 0) != pdPASS) { WPA3_HOSTAP_AUTH_API_UNLOCK(); wpa_printf(MSG_DEBUG, "failed to send msg to queue"); return ESP_FAIL; }{...} }{...} if (evt_id != SIG_TASK_DEL) { /* For SIG_TASK_DEL, WPA3_HOSTAP_AUTH_API_UNLOCK will be after clean up of hostapd_data */ WPA3_HOSTAP_AUTH_API_UNLOCK(); }{...} return ESP_OK; }{ ... } static void wpa3_process_rx_commit(wpa3_hostap_auth_event_t *evt) { struct hostapd_sae_commit_queue *frm; struct hostapd_data *hapd = (struct hostapd_data *)esp_wifi_get_hostap_private_internal(); struct sta_info *sta = NULL; int ret; frm = dl_list_first(&hapd->sae_commit_queue, struct hostapd_sae_commit_queue, list); if (!frm) { return; }{...} dl_list_del(&frm->list); wpa_printf(MSG_DEBUG, "SAE: Process next available message from queue"); sta = ap_get_sta(hapd, frm->bssid); if (!sta) { sta = ap_sta_add(hapd, frm->bssid); if (!sta) { wpa_printf(MSG_DEBUG, "ap_sta_add() failed"); ret = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA; if (esp_send_sae_auth_reply(hapd, frm->bssid, frm->bssid, WLAN_AUTH_SAE, frm->auth_transaction, ret, NULL, 0) != 0) { wpa_printf(MSG_INFO, "esp_send_sae_auth_reply: send failed"); }{...} goto free; }{...} }{...} if (sta->lock && os_semphr_take(sta->lock, 0)) { sta->sae_commit_processing = true; ret = handle_auth_sae(hapd, sta, frm->msg, frm->len, frm->bssid, frm->auth_transaction, frm->status); if (sta->remove_pending) { ap_free_sta(hapd, sta); goto free; }{...} sta->sae_commit_processing = false; os_semphr_give(sta->lock); uint16_t aid = 0; if (ret != WLAN_STATUS_SUCCESS && ret != WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ) { esp_wifi_ap_get_sta_aid(frm->bssid, &aid); if (aid == 0) { esp_wifi_ap_deauth_internal(frm->bssid, ret); }{...} }{...} }{...} free: os_free(frm); }{ ... } static void wpa3_process_rx_confirm(wpa3_hostap_auth_event_t *evt) { struct hostapd_data *hapd = (struct hostapd_data *)esp_wifi_get_hostap_private_internal(); struct sta_info *sta = NULL; int ret = WLAN_STATUS_SUCCESS; struct sae_hostap_confirm_data *frm = (struct sae_hostap_confirm_data *)evt->data; if (!frm) { return; }{...} sta = ap_get_sta(hapd, frm->bssid); if (!sta) { os_free(frm); return; }{...} if (sta->lock && os_semphr_take(sta->lock, 0)) { ret = handle_auth_sae(hapd, sta, frm->msg, frm->len, frm->bssid, frm->auth_transaction, frm->status); if (sta->remove_pending) { ap_free_sta(hapd, sta); goto done; }{...} if (ret == WLAN_STATUS_SUCCESS) { if (sta->sae_data && esp_send_sae_auth_reply(hapd, sta->addr, frm->bssid, WLAN_AUTH_SAE, 2, WLAN_STATUS_SUCCESS, wpabuf_head(sta->sae_data), wpabuf_len(sta->sae_data)) != ESP_OK) { ap_free_sta(hapd, sta); goto done; }{...} if (esp_wifi_ap_notify_node_sae_auth_done(frm->bssid) != true) { ap_free_sta(hapd, sta); goto done; }{...} }{...} os_semphr_give(sta->lock); if (ret != WLAN_STATUS_SUCCESS) { uint16_t aid = 0; esp_wifi_ap_get_sta_aid(frm->bssid, &aid); if (aid == 0) { esp_wifi_ap_deauth_internal(frm->bssid, ret); }{...} else { if (sta && sta->sae_data) { wpabuf_free(sta->sae_data); sta->sae_data = NULL; }{...} }{...} }{...} }{...} done: os_free(frm); }{ ... } static void esp_wpa3_hostap_task(void *pvParameters) { wpa3_hostap_auth_event_t evt; bool task_del = false; while (1) { if (os_queue_recv(g_wpa3_hostap_evt_queue, &evt, portMAX_DELAY) == pdTRUE) { switch (evt.id) { case SIG_WPA3_RX_COMMIT: { wpa3_process_rx_commit(&evt); break; }{...} ... case SIG_WPA3_RX_CONFIRM: { wpa3_process_rx_confirm(&evt); break; }{...} ... case SIG_TASK_DEL: task_del = true; break;... default: break;... }{...} if (task_del) { break; }{...} }{...} }{...} uint32_t items_in_queue = os_queue_msg_waiting(g_wpa3_hostap_evt_queue); while (items_in_queue--) { /* Free events posted to queue */ os_queue_recv(g_wpa3_hostap_evt_queue, &evt, portMAX_DELAY); if (evt.id == SIG_WPA3_RX_CONFIRM) { os_free((void *)evt.data); }{...} }{...} os_queue_delete(g_wpa3_hostap_evt_queue); g_wpa3_hostap_evt_queue = NULL; if (g_wpa3_hostap_auth_api_lock) { WPA3_HOSTAP_AUTH_API_UNLOCK(); }{...} /* At this point, task is deleted*/ os_task_delete(NULL); }{ ... } int wpa3_hostap_auth_init(void *data) { if (g_wpa3_hostap_evt_queue) { wpa_printf(MSG_ERROR, "esp_wpa3_hostap_task has already been initialised"); return ESP_OK; }{...} if (g_wpa3_hostap_auth_api_lock == NULL) { g_wpa3_hostap_auth_api_lock = os_semphr_create(1, 1); if (!g_wpa3_hostap_auth_api_lock) { wpa_printf(MSG_ERROR, "wpa3_hostap_auth_init: failed to create WPA3 hostap auth API lock"); return ESP_FAIL; }{...} }{...} g_wpa3_hostap_evt_queue = os_queue_create(10, sizeof(wpa3_hostap_auth_event_t)); if (!g_wpa3_hostap_evt_queue) { wpa_printf(MSG_ERROR, "wpa3_hostap_auth_init: failed to create queue"); return ESP_FAIL; }{...} if (os_task_create(esp_wpa3_hostap_task, "esp_wpa3_hostap_task", WPA3_HOSTAP_HANDLE_AUTH_TASK_STACK_SIZE, NULL, WPA3_HOSTAP_HANDLE_AUTH_TASK_PRIORITY, &g_wpa3_hostap_task_hdl) != pdPASS) { wpa_printf(MSG_ERROR, "wpa3_hostap_auth_init: failed to create task"); os_queue_delete(g_wpa3_hostap_evt_queue); g_wpa3_hostap_evt_queue = NULL; return ESP_FAIL; }{...} struct hostapd_data *hapd = (struct hostapd_data *)data; dl_list_init(&hapd->sae_commit_queue); return ESP_OK; }{ ... } bool wpa3_hostap_auth_deinit(void) { if (wpa3_hostap_post_evt(SIG_TASK_DEL, 0) != 0) { wpa_printf(MSG_DEBUG, "failed to send task delete event"); return false; }{...} else { return true; }{...} }{ ... } static int wpa3_hostap_handle_auth(u8 *buf, size_t len, u32 auth_transaction, u16 status, u8 *bssid) { struct hostapd_data *hapd = (struct hostapd_data *)esp_wifi_get_hostap_private_internal(); if (!hapd) { return ESP_FAIL; }{...} struct sta_info *sta = ap_get_sta(hapd, bssid); if (auth_transaction == SAE_MSG_COMMIT) { if (sta && sta->sae_commit_processing) { /* Ignore commit msg as we are already processing commit msg for this station */ return ESP_OK; }{...} return auth_sae_queue(hapd, buf, len, bssid, status, auth_transaction); }{...} if (sta && auth_transaction == SAE_MSG_CONFIRM) { struct sae_hostap_confirm_data *frm = os_malloc(sizeof(struct sae_hostap_confirm_data) + len); if (!frm) { wpa_printf(MSG_ERROR, "failed to allocate memory for confirm event"); return ESP_FAIL; }{...} frm->len = len; os_memcpy(frm->bssid, bssid, ETH_ALEN); frm->auth_transaction = auth_transaction; frm->status = status; os_memcpy(frm->msg, buf, len); if (wpa3_hostap_post_evt(SIG_WPA3_RX_CONFIRM, (u32)frm) != 0) { wpa_printf(MSG_ERROR, "failed to queue confirm build event"); os_free(frm); return ESP_FAIL; }{...} }{...} return ESP_OK; }{ ... } int esp_send_sae_auth_reply(struct hostapd_data *hapd, const u8 *dst, const u8 *bssid, u16 auth_alg, u16 auth_transaction, u16 resp, const u8 *ies, size_t ies_len) { int status = ESP_FAIL; /* Calculate total frame data length (auth_alg + transaction + resp + IEs) */ size_t data_len = ies_len + 3 * sizeof(uint16_t); wifi_mgmt_frm_req_t *req = os_zalloc(sizeof(*req) + data_len); if (!req) { wpa_printf(MSG_ERROR, "Failed to allocate SAE authentication reply"); return status; }{...} /* Populate the frame data */ ((uint16_t *)req->data)[0] = htole16(auth_alg); /* Authentication algorithm */ ((uint16_t *)req->data)[1] = htole16(auth_transaction); /* Transaction number */ ((uint16_t *)req->data)[2] = htole16(resp); /* Response code */ if (ies && ies_len) { os_memcpy(&((uint16_t *)req->data)[3], ies, ies_len); }{...} req->ifx = WIFI_IF_AP; req->subtype = (WLAN_FC_STYPE_AUTH << 4); req->data_len = data_len; os_memcpy(req->da, bssid, ETH_ALEN); if (esp_wifi_send_mgmt_frm_internal(req) != 0) { wpa_printf(MSG_INFO, "%s: SAE authentication reply send failed", __func__); }{...} else { status = ESP_OK; }{...} os_free(req); return status; }{ ... } void esp_wifi_register_wpa3_ap_cb(struct wpa_funcs *wpa_cb) { wpa_cb->wpa3_hostap_handle_auth = wpa3_hostap_handle_auth; }{ ... } /* ... */#endif /* CONFIG_SAE */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.