]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/dpp_supplicant.c
tests: Make owe_transition_mode_multi_bss more robust
[thirdparty/hostap.git] / wpa_supplicant / dpp_supplicant.c
CommitLineData
be27e185
JM
1/*
2 * wpa_supplicant - DPP
3 * Copyright (c) 2017, Qualcomm Atheros, Inc.
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"
30d27b04 12#include "utils/eloop.h"
be27e185 13#include "common/dpp.h"
461d39af
JM
14#include "common/gas.h"
15#include "common/gas_server.h"
a0d5c56f
JM
16#include "rsn_supp/wpa.h"
17#include "rsn_supp/pmksa_cache.h"
be27e185 18#include "wpa_supplicant_i.h"
a0d5c56f 19#include "config.h"
30d27b04
JM
20#include "driver_i.h"
21#include "offchannel.h"
461d39af 22#include "gas_query.h"
a0d5c56f
JM
23#include "bss.h"
24#include "scan.h"
8528994e 25#include "notify.h"
be27e185
JM
26#include "dpp_supplicant.h"
27
28
30d27b04
JM
29static int wpas_dpp_listen_start(struct wpa_supplicant *wpa_s,
30 unsigned int freq);
461d39af
JM
31static void wpas_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx);
32static void wpas_dpp_auth_success(struct wpa_supplicant *wpa_s, int initiator);
30d27b04
JM
33static void wpas_dpp_tx_status(struct wpa_supplicant *wpa_s,
34 unsigned int freq, const u8 *dst,
35 const u8 *src, const u8 *bssid,
36 const u8 *data, size_t data_len,
37 enum offchannel_send_action_result result);
f97ace34
JM
38static void wpas_dpp_init_timeout(void *eloop_ctx, void *timeout_ctx);
39static int wpas_dpp_auth_init_next(struct wpa_supplicant *wpa_s);
00d2d13d
JM
40static void
41wpas_dpp_tx_pkex_status(struct wpa_supplicant *wpa_s,
42 unsigned int freq, const u8 *dst,
43 const u8 *src, const u8 *bssid,
44 const u8 *data, size_t data_len,
45 enum offchannel_send_action_result result);
30d27b04
JM
46
47static const u8 broadcast[ETH_ALEN] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };
48
85fd8263
JM
49/* Use a hardcoded Transaction ID 1 in Peer Discovery frames since there is only
50 * a single transaction in progress at any point in time. */
51static const u8 TRANSACTION_ID = 1;
52
30d27b04 53
461d39af
JM
54static struct dpp_configurator *
55dpp_configurator_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
56{
57 struct dpp_configurator *conf;
58
59 dl_list_for_each(conf, &wpa_s->dpp_configurator,
60 struct dpp_configurator, list) {
61 if (conf->id == id)
62 return conf;
63 }
64 return NULL;
65}
66
67
be27e185
JM
68static unsigned int wpas_dpp_next_id(struct wpa_supplicant *wpa_s)
69{
70 struct dpp_bootstrap_info *bi;
71 unsigned int max_id = 0;
72
73 dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
74 list) {
75 if (bi->id > max_id)
76 max_id = bi->id;
77 }
78 return max_id + 1;
79}
80
81
82/**
83 * wpas_dpp_qr_code - Parse and add DPP bootstrapping info from a QR Code
84 * @wpa_s: Pointer to wpa_supplicant data
85 * @cmd: DPP URI read from a QR Code
86 * Returns: Identifier of the stored info or -1 on failure
87 */
88int wpas_dpp_qr_code(struct wpa_supplicant *wpa_s, const char *cmd)
89{
90 struct dpp_bootstrap_info *bi;
30d27b04 91 struct dpp_authentication *auth = wpa_s->dpp_auth;
be27e185
JM
92
93 bi = dpp_parse_qr_code(cmd);
94 if (!bi)
95 return -1;
96
97 bi->id = wpas_dpp_next_id(wpa_s);
98 dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
99
30d27b04
JM
100 if (auth && auth->response_pending &&
101 dpp_notify_new_qr_code(auth, bi) == 1) {
30d27b04
JM
102 wpa_printf(MSG_DEBUG,
103 "DPP: Sending out pending authentication response");
af48810b
JM
104 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
105 " freq=%u type=%d",
106 MAC2STR(auth->peer_mac_addr), auth->curr_freq,
107 DPP_PA_AUTHENTICATION_RESP);
30d27b04
JM
108 offchannel_send_action(wpa_s, auth->curr_freq,
109 auth->peer_mac_addr, wpa_s->own_addr,
110 broadcast,
dc4d271c
JM
111 wpabuf_head(auth->resp_msg),
112 wpabuf_len(auth->resp_msg),
30d27b04 113 500, wpas_dpp_tx_status, 0);
30d27b04
JM
114 }
115
be27e185
JM
116 return bi->id;
117}
118
119
120static char * get_param(const char *cmd, const char *param)
121{
122 const char *pos, *end;
123 char *val;
124 size_t len;
125
126 pos = os_strstr(cmd, param);
127 if (!pos)
128 return NULL;
129
130 pos += os_strlen(param);
131 end = os_strchr(pos, ' ');
132 if (end)
133 len = end - pos;
134 else
135 len = os_strlen(pos);
136 val = os_malloc(len + 1);
137 if (!val)
138 return NULL;
139 os_memcpy(val, pos, len);
140 val[len] = '\0';
141 return val;
142}
143
144
145int wpas_dpp_bootstrap_gen(struct wpa_supplicant *wpa_s, const char *cmd)
146{
147 char *chan = NULL, *mac = NULL, *info = NULL, *pk = NULL, *curve = NULL;
148 char *key = NULL;
149 u8 *privkey = NULL;
150 size_t privkey_len = 0;
151 size_t len;
152 int ret = -1;
153 struct dpp_bootstrap_info *bi;
154
155 bi = os_zalloc(sizeof(*bi));
156 if (!bi)
157 goto fail;
158
159 if (os_strstr(cmd, "type=qrcode"))
160 bi->type = DPP_BOOTSTRAP_QR_CODE;
500ed7f0
JM
161 else if (os_strstr(cmd, "type=pkex"))
162 bi->type = DPP_BOOTSTRAP_PKEX;
be27e185
JM
163 else
164 goto fail;
165
166 chan = get_param(cmd, " chan=");
167 mac = get_param(cmd, " mac=");
168 info = get_param(cmd, " info=");
169 curve = get_param(cmd, " curve=");
170 key = get_param(cmd, " key=");
171
172 if (key) {
173 privkey_len = os_strlen(key) / 2;
174 privkey = os_malloc(privkey_len);
175 if (!privkey ||
176 hexstr2bin(key, privkey, privkey_len) < 0)
177 goto fail;
178 }
179
180 pk = dpp_keygen(bi, curve, privkey, privkey_len);
181 if (!pk)
182 goto fail;
183
184 len = 4; /* "DPP:" */
185 if (chan) {
186 if (dpp_parse_uri_chan_list(bi, chan) < 0)
187 goto fail;
188 len += 3 + os_strlen(chan); /* C:...; */
189 }
190 if (mac) {
191 if (dpp_parse_uri_mac(bi, mac) < 0)
192 goto fail;
193 len += 3 + os_strlen(mac); /* M:...; */
194 }
195 if (info) {
196 if (dpp_parse_uri_info(bi, info) < 0)
197 goto fail;
198 len += 3 + os_strlen(info); /* I:...; */
199 }
200 len += 4 + os_strlen(pk);
201 bi->uri = os_malloc(len + 1);
202 if (!bi->uri)
203 goto fail;
204 os_snprintf(bi->uri, len + 1, "DPP:%s%s%s%s%s%s%s%s%sK:%s;;",
205 chan ? "C:" : "", chan ? chan : "", chan ? ";" : "",
206 mac ? "M:" : "", mac ? mac : "", mac ? ";" : "",
207 info ? "I:" : "", info ? info : "", info ? ";" : "",
208 pk);
209 bi->id = wpas_dpp_next_id(wpa_s);
210 dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
211 ret = bi->id;
212 bi = NULL;
213fail:
214 os_free(curve);
215 os_free(pk);
216 os_free(chan);
217 os_free(mac);
218 os_free(info);
219 str_clear_free(key);
220 bin_clear_free(privkey, privkey_len);
221 dpp_bootstrap_info_free(bi);
222 return ret;
223}
224
225
226static struct dpp_bootstrap_info *
227dpp_bootstrap_get_id(struct wpa_supplicant *wpa_s, unsigned int id)
228{
229 struct dpp_bootstrap_info *bi;
230
231 dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
232 list) {
233 if (bi->id == id)
234 return bi;
235 }
236 return NULL;
237}
238
239
240static int dpp_bootstrap_del(struct wpa_supplicant *wpa_s, unsigned int id)
241{
242 struct dpp_bootstrap_info *bi, *tmp;
243 int found = 0;
244
245 dl_list_for_each_safe(bi, tmp, &wpa_s->dpp_bootstrap,
246 struct dpp_bootstrap_info, list) {
247 if (id && bi->id != id)
248 continue;
249 found = 1;
250 dl_list_del(&bi->list);
251 dpp_bootstrap_info_free(bi);
252 }
253
254 if (id == 0)
255 return 0; /* flush succeeds regardless of entries found */
256 return found ? 0 : -1;
257}
258
259
260int wpas_dpp_bootstrap_remove(struct wpa_supplicant *wpa_s, const char *id)
261{
262 unsigned int id_val;
263
264 if (os_strcmp(id, "*") == 0) {
265 id_val = 0;
266 } else {
267 id_val = atoi(id);
268 if (id_val == 0)
269 return -1;
270 }
271
272 return dpp_bootstrap_del(wpa_s, id_val);
273}
274
275
276const char * wpas_dpp_bootstrap_get_uri(struct wpa_supplicant *wpa_s,
277 unsigned int id)
278{
279 struct dpp_bootstrap_info *bi;
280
281 bi = dpp_bootstrap_get_id(wpa_s, id);
282 if (!bi)
283 return NULL;
284 return bi->uri;
285}
286
287
6a7182a9
JM
288int wpas_dpp_bootstrap_info(struct wpa_supplicant *wpa_s, int id,
289 char *reply, int reply_size)
290{
291 struct dpp_bootstrap_info *bi;
292
293 bi = dpp_bootstrap_get_id(wpa_s, id);
294 if (!bi)
295 return -1;
296 return os_snprintf(reply, reply_size, "type=%s\n"
297 "mac_addr=" MACSTR "\n"
298 "info=%s\n"
299 "num_freq=%u\n"
300 "curve=%s\n",
484788b8 301 dpp_bootstrap_type_txt(bi->type),
6a7182a9
JM
302 MAC2STR(bi->mac_addr),
303 bi->info ? bi->info : "",
304 bi->num_freq,
305 bi->curve->name);
306}
307
308
95b0104a
JM
309static void wpas_dpp_auth_resp_retry_timeout(void *eloop_ctx, void *timeout_ctx)
310{
311 struct wpa_supplicant *wpa_s = eloop_ctx;
312 struct dpp_authentication *auth = wpa_s->dpp_auth;
313
314 if (!auth || !auth->resp_msg)
315 return;
316
317 wpa_printf(MSG_DEBUG,
318 "DPP: Retry Authentication Response after timeout");
319 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
320 " freq=%u type=%d",
321 MAC2STR(auth->peer_mac_addr), auth->curr_freq,
322 DPP_PA_AUTHENTICATION_RESP);
323 offchannel_send_action(wpa_s, auth->curr_freq, auth->peer_mac_addr,
324 wpa_s->own_addr, broadcast,
325 wpabuf_head(auth->resp_msg),
326 wpabuf_len(auth->resp_msg),
327 500, wpas_dpp_tx_status, 0);
328}
329
330
331static void wpas_dpp_auth_resp_retry(struct wpa_supplicant *wpa_s)
332{
333 struct dpp_authentication *auth = wpa_s->dpp_auth;
334 unsigned int wait_time, max_tries;
335
336 if (!auth || !auth->resp_msg)
337 return;
338
339 if (wpa_s->dpp_resp_max_tries)
340 max_tries = wpa_s->dpp_resp_max_tries;
341 else
342 max_tries = 5;
343 auth->auth_resp_tries++;
344 if (auth->auth_resp_tries >= max_tries) {
345 wpa_printf(MSG_INFO, "DPP: No confirm received from initiator - stopping exchange");
346 offchannel_send_action_done(wpa_s);
347 dpp_auth_deinit(wpa_s->dpp_auth);
348 wpa_s->dpp_auth = NULL;
349 return;
350 }
351
352 if (wpa_s->dpp_resp_retry_time)
353 wait_time = wpa_s->dpp_resp_retry_time;
354 else
ed2c493e 355 wait_time = 1000;
95b0104a
JM
356 wpa_printf(MSG_DEBUG,
357 "DPP: Schedule retransmission of Authentication Response frame in %u ms",
358 wait_time);
359 eloop_cancel_timeout(wpas_dpp_auth_resp_retry_timeout, wpa_s, NULL);
360 eloop_register_timeout(wait_time / 1000,
361 (wait_time % 1000) * 1000,
362 wpas_dpp_auth_resp_retry_timeout, wpa_s, NULL);
363}
364
365
30d27b04
JM
366static void wpas_dpp_tx_status(struct wpa_supplicant *wpa_s,
367 unsigned int freq, const u8 *dst,
368 const u8 *src, const u8 *bssid,
369 const u8 *data, size_t data_len,
370 enum offchannel_send_action_result result)
371{
af48810b 372 const char *res_txt;
f97ace34 373 struct dpp_authentication *auth = wpa_s->dpp_auth;
af48810b
JM
374
375 res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
376 (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
377 "FAILED");
30d27b04 378 wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
af48810b
JM
379 " result=%s", freq, MAC2STR(dst), res_txt);
380 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
381 " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
30d27b04
JM
382
383 if (!wpa_s->dpp_auth) {
384 wpa_printf(MSG_DEBUG,
385 "DPP: Ignore TX status since there is no ongoing authentication exchange");
386 return;
387 }
388
389 if (wpa_s->dpp_auth->remove_on_tx_status) {
390 wpa_printf(MSG_DEBUG,
391 "DPP: Terminate authentication exchange due to an earlier error");
f97ace34 392 eloop_cancel_timeout(wpas_dpp_init_timeout, wpa_s, NULL);
461d39af 393 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
95b0104a
JM
394 eloop_cancel_timeout(wpas_dpp_auth_resp_retry_timeout, wpa_s,
395 NULL);
461d39af 396 offchannel_send_action_done(wpa_s);
30d27b04
JM
397 dpp_auth_deinit(wpa_s->dpp_auth);
398 wpa_s->dpp_auth = NULL;
399 return;
400 }
401
461d39af
JM
402 if (wpa_s->dpp_auth_ok_on_ack)
403 wpas_dpp_auth_success(wpa_s, 1);
404
30d27b04
JM
405 if (!is_broadcast_ether_addr(dst) &&
406 result != OFFCHANNEL_SEND_ACTION_SUCCESS) {
407 wpa_printf(MSG_DEBUG,
408 "DPP: Unicast DPP Action frame was not ACKed");
f97ace34
JM
409 if (auth->waiting_auth_resp) {
410 /* In case of DPP Authentication Request frame, move to
411 * the next channel immediately. */
412 offchannel_send_action_done(wpa_s);
413 wpas_dpp_auth_init_next(wpa_s);
414 return;
415 }
95b0104a
JM
416 if (auth->waiting_auth_conf) {
417 wpas_dpp_auth_resp_retry(wpa_s);
418 return;
419 }
30d27b04 420 }
d2709206 421
248264c6
JM
422 if (!is_broadcast_ether_addr(dst) && auth->waiting_auth_resp &&
423 result == OFFCHANNEL_SEND_ACTION_SUCCESS) {
424 /* Allow timeout handling to stop iteration if no response is
425 * received from a peer that has ACKed a request. */
426 auth->auth_req_ack = 1;
427 }
428
d2709206
JM
429 if (!wpa_s->dpp_auth_ok_on_ack && wpa_s->dpp_auth->neg_freq > 0 &&
430 wpa_s->dpp_auth->curr_freq != wpa_s->dpp_auth->neg_freq) {
431 wpa_printf(MSG_DEBUG,
432 "DPP: Move from curr_freq %u MHz to neg_freq %u MHz for response",
433 wpa_s->dpp_auth->curr_freq,
434 wpa_s->dpp_auth->neg_freq);
435 offchannel_send_action_done(wpa_s);
436 wpas_dpp_listen_start(wpa_s, wpa_s->dpp_auth->neg_freq);
437 }
d3cb7ebe
JM
438
439 if (wpa_s->dpp_auth_ok_on_ack)
440 wpa_s->dpp_auth_ok_on_ack = 0;
30d27b04
JM
441}
442
443
444static void wpas_dpp_reply_wait_timeout(void *eloop_ctx, void *timeout_ctx)
445{
446 struct wpa_supplicant *wpa_s = eloop_ctx;
248264c6 447 struct dpp_authentication *auth = wpa_s->dpp_auth;
d2709206 448 unsigned int freq;
0db637ca
JM
449 struct os_reltime now, diff;
450 unsigned int wait_time, diff_ms;
30d27b04 451
0db637ca 452 if (!auth || !auth->waiting_auth_resp)
30d27b04 453 return;
f97ace34 454
0db637ca
JM
455 wait_time = wpa_s->dpp_resp_wait_time ?
456 wpa_s->dpp_resp_wait_time : 2000;
457 os_get_reltime(&now);
458 os_reltime_sub(&now, &wpa_s->dpp_last_init, &diff);
459 diff_ms = diff.sec * 1000 + diff.usec / 1000;
460 wpa_printf(MSG_DEBUG,
461 "DPP: Reply wait timeout - wait_time=%u diff_ms=%u",
462 wait_time, diff_ms);
463
464 if (auth->auth_req_ack && diff_ms >= wait_time) {
465 /* Peer ACK'ed Authentication Request frame, but did not reply
466 * with Authentication Response frame within two seconds. */
248264c6
JM
467 wpa_printf(MSG_INFO,
468 "DPP: No response received from responder - stopping initiation attempt");
469 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_AUTH_INIT_FAILED);
470 offchannel_send_action_done(wpa_s);
0db637ca 471 wpas_dpp_listen_stop(wpa_s);
248264c6
JM
472 dpp_auth_deinit(auth);
473 wpa_s->dpp_auth = NULL;
474 return;
475 }
476
0db637ca
JM
477 if (diff_ms >= wait_time) {
478 /* Authentication Request frame was not ACK'ed and no reply
479 * was receiving within two seconds. */
480 wpa_printf(MSG_DEBUG,
481 "DPP: Continue Initiator channel iteration");
482 offchannel_send_action_done(wpa_s);
483 wpas_dpp_listen_stop(wpa_s);
484 wpas_dpp_auth_init_next(wpa_s);
485 return;
f97ace34
JM
486 }
487
0db637ca
JM
488 /* Driver did not support 2000 ms long wait_time with TX command, so
489 * schedule listen operation to continue waiting for the response.
490 *
491 * DPP listen operations continue until stopped, so simply schedule a
492 * new call to this function at the point when the two second reply
493 * wait has expired. */
494 wait_time -= diff_ms;
495
248264c6
JM
496 freq = auth->curr_freq;
497 if (auth->neg_freq > 0)
498 freq = auth->neg_freq;
0db637ca
JM
499 wpa_printf(MSG_DEBUG,
500 "DPP: Continue reply wait on channel %u MHz for %u ms",
501 freq, wait_time);
502 wpa_s->dpp_in_response_listen = 1;
d2709206 503 wpas_dpp_listen_start(wpa_s, freq);
0db637ca
JM
504
505 eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
506 wpas_dpp_reply_wait_timeout, wpa_s, NULL);
30d27b04
JM
507}
508
509
461d39af
JM
510static void wpas_dpp_set_testing_options(struct wpa_supplicant *wpa_s,
511 struct dpp_authentication *auth)
512{
513#ifdef CONFIG_TESTING_OPTIONS
514 if (wpa_s->dpp_config_obj_override)
515 auth->config_obj_override =
516 os_strdup(wpa_s->dpp_config_obj_override);
517 if (wpa_s->dpp_discovery_override)
518 auth->discovery_override =
519 os_strdup(wpa_s->dpp_discovery_override);
520 if (wpa_s->dpp_groups_override)
521 auth->groups_override =
522 os_strdup(wpa_s->dpp_groups_override);
461d39af
JM
523 auth->ignore_netaccesskey_mismatch =
524 wpa_s->dpp_ignore_netaccesskey_mismatch;
525#endif /* CONFIG_TESTING_OPTIONS */
526}
527
528
b65b22d6
JM
529static void wpas_dpp_set_configurator(struct wpa_supplicant *wpa_s,
530 struct dpp_authentication *auth,
531 const char *cmd)
30d27b04 532{
68cb6dce 533 const char *pos, *end;
461d39af
JM
534 struct dpp_configuration *conf_sta = NULL, *conf_ap = NULL;
535 struct dpp_configurator *conf = NULL;
68cb6dce
JM
536 u8 ssid[32] = { "test" };
537 size_t ssid_len = 4;
35f06421
JM
538 char pass[64] = { };
539 size_t pass_len = 0;
5030d7d9
JM
540 u8 psk[PMK_LEN];
541 int psk_set = 0;
461d39af 542
b65b22d6
JM
543 if (!cmd)
544 return;
461d39af 545
b65b22d6 546 wpa_printf(MSG_DEBUG, "DPP: Set configurator parameters: %s", cmd);
68cb6dce
JM
547 pos = os_strstr(cmd, " ssid=");
548 if (pos) {
549 pos += 6;
550 end = os_strchr(pos, ' ');
551 ssid_len = end ? (size_t) (end - pos) : os_strlen(pos);
552 ssid_len /= 2;
553 if (ssid_len > sizeof(ssid) ||
554 hexstr2bin(pos, ssid, ssid_len) < 0)
555 goto fail;
556 }
557
35f06421
JM
558 pos = os_strstr(cmd, " pass=");
559 if (pos) {
560 pos += 6;
561 end = os_strchr(pos, ' ');
562 pass_len = end ? (size_t) (end - pos) : os_strlen(pos);
563 pass_len /= 2;
564 if (pass_len > sizeof(pass) - 1 || pass_len < 8 ||
565 hexstr2bin(pos, (u8 *) pass, pass_len) < 0)
566 goto fail;
567 }
568
5030d7d9
JM
569 pos = os_strstr(cmd, " psk=");
570 if (pos) {
571 pos += 5;
572 if (hexstr2bin(pos, psk, PMK_LEN) < 0)
573 goto fail;
574 psk_set = 1;
575 }
576
461d39af
JM
577 if (os_strstr(cmd, " conf=sta-")) {
578 conf_sta = os_zalloc(sizeof(struct dpp_configuration));
579 if (!conf_sta)
580 goto fail;
68cb6dce
JM
581 os_memcpy(conf_sta->ssid, ssid, ssid_len);
582 conf_sta->ssid_len = ssid_len;
e3a5882b
JM
583 if (os_strstr(cmd, " conf=sta-psk") ||
584 os_strstr(cmd, " conf=sta-sae") ||
585 os_strstr(cmd, " conf=sta-psk-sae")) {
586 if (os_strstr(cmd, " conf=sta-psk-sae"))
587 conf_sta->akm = DPP_AKM_PSK_SAE;
588 else if (os_strstr(cmd, " conf=sta-sae"))
589 conf_sta->akm = DPP_AKM_SAE;
590 else
591 conf_sta->akm = DPP_AKM_PSK;
5030d7d9
JM
592 if (psk_set) {
593 os_memcpy(conf_sta->psk, psk, PMK_LEN);
594 } else {
595 conf_sta->passphrase = os_strdup(pass);
596 if (!conf_sta->passphrase)
597 goto fail;
598 }
461d39af 599 } else if (os_strstr(cmd, " conf=sta-dpp")) {
e3a5882b 600 conf_sta->akm = DPP_AKM_DPP;
461d39af
JM
601 } else {
602 goto fail;
603 }
604 }
605
606 if (os_strstr(cmd, " conf=ap-")) {
607 conf_ap = os_zalloc(sizeof(struct dpp_configuration));
608 if (!conf_ap)
609 goto fail;
68cb6dce
JM
610 os_memcpy(conf_ap->ssid, ssid, ssid_len);
611 conf_ap->ssid_len = ssid_len;
e3a5882b
JM
612 if (os_strstr(cmd, " conf=ap-psk") ||
613 os_strstr(cmd, " conf=ap-sae") ||
614 os_strstr(cmd, " conf=ap-psk-sae")) {
615 if (os_strstr(cmd, " conf=ap-psk-sae"))
616 conf_ap->akm = DPP_AKM_PSK_SAE;
617 else if (os_strstr(cmd, " conf=ap-sae"))
618 conf_ap->akm = DPP_AKM_SAE;
619 else
620 conf_ap->akm = DPP_AKM_PSK;
5030d7d9
JM
621 if (psk_set) {
622 os_memcpy(conf_ap->psk, psk, PMK_LEN);
623 } else {
624 conf_ap->passphrase = os_strdup(pass);
625 if (!conf_ap->passphrase)
626 goto fail;
627 }
461d39af 628 } else if (os_strstr(cmd, " conf=ap-dpp")) {
e3a5882b 629 conf_ap->akm = DPP_AKM_DPP;
461d39af
JM
630 } else {
631 goto fail;
632 }
633 }
634
635 pos = os_strstr(cmd, " expiry=");
636 if (pos) {
637 long int val;
638
639 pos += 8;
640 val = strtol(pos, NULL, 0);
641 if (val <= 0)
642 goto fail;
643 if (conf_sta)
644 conf_sta->netaccesskey_expiry = val;
645 if (conf_ap)
646 conf_ap->netaccesskey_expiry = val;
647 }
648
649 pos = os_strstr(cmd, " configurator=");
650 if (pos) {
651 pos += 14;
652 conf = dpp_configurator_get_id(wpa_s, atoi(pos));
653 if (!conf) {
654 wpa_printf(MSG_INFO,
655 "DPP: Could not find the specified configurator");
656 goto fail;
657 }
30d27b04 658 }
b65b22d6
JM
659 auth->conf_sta = conf_sta;
660 auth->conf_ap = conf_ap;
661 auth->conf = conf;
662 return;
663
664fail:
665 wpa_printf(MSG_DEBUG, "DPP: Failed to set configurator parameters");
666 dpp_configuration_free(conf_sta);
667 dpp_configuration_free(conf_ap);
668}
669
670
f97ace34
JM
671static void wpas_dpp_init_timeout(void *eloop_ctx, void *timeout_ctx)
672{
673 struct wpa_supplicant *wpa_s = eloop_ctx;
674
675 if (!wpa_s->dpp_auth)
676 return;
677 wpa_printf(MSG_DEBUG, "DPP: Retry initiation after timeout");
678 wpas_dpp_auth_init_next(wpa_s);
679}
680
681
682static int wpas_dpp_auth_init_next(struct wpa_supplicant *wpa_s)
683{
684 struct dpp_authentication *auth = wpa_s->dpp_auth;
685 const u8 *dst;
0db637ca 686 unsigned int wait_time, max_wait_time, freq, max_tries, used;
921f5acd 687 struct os_reltime now, diff;
f97ace34 688
0db637ca 689 wpa_s->dpp_in_response_listen = 0;
f97ace34
JM
690 if (!auth)
691 return -1;
0db637ca
JM
692
693 if (auth->freq_idx == 0)
694 os_get_reltime(&wpa_s->dpp_init_iter_start);
695
f97ace34
JM
696 if (auth->freq_idx >= auth->num_freq) {
697 auth->num_freq_iters++;
698 if (wpa_s->dpp_init_max_tries)
699 max_tries = wpa_s->dpp_init_max_tries;
700 else
701 max_tries = 5;
248264c6 702 if (auth->num_freq_iters >= max_tries || auth->auth_req_ack) {
f97ace34
JM
703 wpa_printf(MSG_INFO,
704 "DPP: No response received from responder - stopping initiation attempt");
705 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_AUTH_INIT_FAILED);
706 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout,
707 wpa_s, NULL);
708 offchannel_send_action_done(wpa_s);
709 dpp_auth_deinit(wpa_s->dpp_auth);
710 wpa_s->dpp_auth = NULL;
711 return -1;
712 }
713 auth->freq_idx = 0;
714 eloop_cancel_timeout(wpas_dpp_init_timeout, wpa_s, NULL);
715 if (wpa_s->dpp_init_retry_time)
716 wait_time = wpa_s->dpp_init_retry_time;
717 else
718 wait_time = 10000;
921f5acd 719 os_get_reltime(&now);
0db637ca 720 os_reltime_sub(&now, &wpa_s->dpp_init_iter_start, &diff);
921f5acd
JM
721 used = diff.sec * 1000 + diff.usec / 1000;
722 if (used > wait_time)
723 wait_time = 0;
724 else
725 wait_time -= used;
726 wpa_printf(MSG_DEBUG, "DPP: Next init attempt in %u ms",
727 wait_time);
f97ace34
JM
728 eloop_register_timeout(wait_time / 1000,
729 (wait_time % 1000) * 1000,
730 wpas_dpp_init_timeout, wpa_s,
731 NULL);
732 return 0;
733 }
734 freq = auth->freq[auth->freq_idx++];
735 auth->curr_freq = freq;
736
737 if (is_zero_ether_addr(auth->peer_bi->mac_addr))
738 dst = broadcast;
739 else
740 dst = auth->peer_bi->mac_addr;
741 wpa_s->dpp_auth_ok_on_ack = 0;
742 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
743 wait_time = wpa_s->max_remain_on_chan;
0db637ca
JM
744 max_wait_time = wpa_s->dpp_resp_wait_time ?
745 wpa_s->dpp_resp_wait_time : 2000;
746 if (wait_time > max_wait_time)
747 wait_time = max_wait_time;
748 wait_time += 10; /* give the driver some extra time to complete */
f97ace34
JM
749 eloop_register_timeout(wait_time / 1000, (wait_time % 1000) * 1000,
750 wpas_dpp_reply_wait_timeout,
751 wpa_s, NULL);
0db637ca 752 wait_time -= 10;
f97ace34
JM
753 if (auth->neg_freq > 0 && freq != auth->neg_freq) {
754 wpa_printf(MSG_DEBUG,
755 "DPP: Initiate on %u MHz and move to neg_freq %u MHz for response",
756 freq, auth->neg_freq);
757 }
758 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
759 MAC2STR(dst), freq, DPP_PA_AUTHENTICATION_REQ);
248264c6 760 auth->auth_req_ack = 0;
f97ace34
JM
761 os_get_reltime(&wpa_s->dpp_last_init);
762 return offchannel_send_action(wpa_s, freq, dst,
763 wpa_s->own_addr, broadcast,
764 wpabuf_head(auth->req_msg),
765 wpabuf_len(auth->req_msg),
766 wait_time, wpas_dpp_tx_status, 0);
767}
768
769
b65b22d6
JM
770int wpas_dpp_auth_init(struct wpa_supplicant *wpa_s, const char *cmd)
771{
772 const char *pos;
773 struct dpp_bootstrap_info *peer_bi, *own_bi = NULL;
d1f08264 774 u8 allowed_roles = DPP_CAPAB_CONFIGURATOR;
d2709206 775 unsigned int neg_freq = 0;
b65b22d6
JM
776
777 wpa_s->dpp_gas_client = 0;
778
779 pos = os_strstr(cmd, " peer=");
780 if (!pos)
781 return -1;
782 pos += 6;
783 peer_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
784 if (!peer_bi) {
785 wpa_printf(MSG_INFO,
786 "DPP: Could not find bootstrapping info for the identified peer");
787 return -1;
788 }
789
790 pos = os_strstr(cmd, " own=");
791 if (pos) {
792 pos += 5;
793 own_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
794 if (!own_bi) {
795 wpa_printf(MSG_INFO,
796 "DPP: Could not find bootstrapping info for the identified local entry");
797 return -1;
798 }
799
800 if (peer_bi->curve != own_bi->curve) {
801 wpa_printf(MSG_INFO,
802 "DPP: Mismatching curves in bootstrapping info (peer=%s own=%s)",
803 peer_bi->curve->name, own_bi->curve->name);
804 return -1;
805 }
806 }
807
808 pos = os_strstr(cmd, " role=");
809 if (pos) {
810 pos += 6;
811 if (os_strncmp(pos, "configurator", 12) == 0)
d1f08264 812 allowed_roles = DPP_CAPAB_CONFIGURATOR;
b65b22d6 813 else if (os_strncmp(pos, "enrollee", 8) == 0)
d1f08264
JM
814 allowed_roles = DPP_CAPAB_ENROLLEE;
815 else if (os_strncmp(pos, "either", 6) == 0)
816 allowed_roles = DPP_CAPAB_CONFIGURATOR |
817 DPP_CAPAB_ENROLLEE;
b65b22d6
JM
818 else
819 goto fail;
820 }
821
822 pos = os_strstr(cmd, " netrole=");
823 if (pos) {
824 pos += 9;
825 wpa_s->dpp_netrole_ap = os_strncmp(pos, "ap", 2) == 0;
826 }
30d27b04 827
d2709206
JM
828 pos = os_strstr(cmd, " neg_freq=");
829 if (pos)
830 neg_freq = atoi(pos + 10);
831
30d27b04 832 if (wpa_s->dpp_auth) {
f97ace34 833 eloop_cancel_timeout(wpas_dpp_init_timeout, wpa_s, NULL);
30d27b04 834 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
95b0104a
JM
835 eloop_cancel_timeout(wpas_dpp_auth_resp_retry_timeout, wpa_s,
836 NULL);
30d27b04
JM
837 offchannel_send_action_done(wpa_s);
838 dpp_auth_deinit(wpa_s->dpp_auth);
839 }
d1f08264 840 wpa_s->dpp_auth = dpp_auth_init(wpa_s, peer_bi, own_bi, allowed_roles,
f97ace34
JM
841 neg_freq,
842 wpa_s->hw.modes, wpa_s->hw.num_modes);
30d27b04 843 if (!wpa_s->dpp_auth)
461d39af
JM
844 goto fail;
845 wpas_dpp_set_testing_options(wpa_s, wpa_s->dpp_auth);
b65b22d6 846 wpas_dpp_set_configurator(wpa_s, wpa_s->dpp_auth, cmd);
30d27b04 847
d2709206 848 wpa_s->dpp_auth->neg_freq = neg_freq;
30d27b04 849
f97ace34 850 if (!is_zero_ether_addr(peer_bi->mac_addr))
30d27b04
JM
851 os_memcpy(wpa_s->dpp_auth->peer_mac_addr, peer_bi->mac_addr,
852 ETH_ALEN);
f97ace34
JM
853
854 return wpas_dpp_auth_init_next(wpa_s);
461d39af 855fail:
461d39af 856 return -1;
30d27b04
JM
857}
858
859
860struct wpas_dpp_listen_work {
861 unsigned int freq;
862 unsigned int duration;
863 struct wpabuf *probe_resp_ie;
864};
865
866
867static void wpas_dpp_listen_work_free(struct wpas_dpp_listen_work *lwork)
868{
869 if (!lwork)
870 return;
871 os_free(lwork);
872}
873
874
875static void wpas_dpp_listen_work_done(struct wpa_supplicant *wpa_s)
876{
877 struct wpas_dpp_listen_work *lwork;
878
879 if (!wpa_s->dpp_listen_work)
880 return;
881
882 lwork = wpa_s->dpp_listen_work->ctx;
883 wpas_dpp_listen_work_free(lwork);
884 radio_work_done(wpa_s->dpp_listen_work);
885 wpa_s->dpp_listen_work = NULL;
886}
887
888
889static void dpp_start_listen_cb(struct wpa_radio_work *work, int deinit)
890{
891 struct wpa_supplicant *wpa_s = work->wpa_s;
892 struct wpas_dpp_listen_work *lwork = work->ctx;
893
894 if (deinit) {
895 if (work->started) {
896 wpa_s->dpp_listen_work = NULL;
897 wpas_dpp_listen_stop(wpa_s);
898 }
899 wpas_dpp_listen_work_free(lwork);
900 return;
901 }
902
903 wpa_s->dpp_listen_work = work;
904
905 wpa_s->dpp_pending_listen_freq = lwork->freq;
906
907 if (wpa_drv_remain_on_channel(wpa_s, lwork->freq,
908 wpa_s->max_remain_on_chan) < 0) {
909 wpa_printf(MSG_DEBUG,
910 "DPP: Failed to request the driver to remain on channel (%u MHz) for listen",
911 lwork->freq);
912 wpas_dpp_listen_work_done(wpa_s);
913 wpa_s->dpp_pending_listen_freq = 0;
914 return;
915 }
916 wpa_s->off_channel_freq = 0;
917 wpa_s->roc_waiting_drv_freq = lwork->freq;
918}
919
920
921static int wpas_dpp_listen_start(struct wpa_supplicant *wpa_s,
922 unsigned int freq)
923{
924 struct wpas_dpp_listen_work *lwork;
925
926 if (wpa_s->dpp_listen_work) {
927 wpa_printf(MSG_DEBUG,
928 "DPP: Reject start_listen since dpp_listen_work already exists");
929 return -1;
930 }
931
932 if (wpa_s->dpp_listen_freq)
933 wpas_dpp_listen_stop(wpa_s);
934 wpa_s->dpp_listen_freq = freq;
935
936 lwork = os_zalloc(sizeof(*lwork));
937 if (!lwork)
938 return -1;
939 lwork->freq = freq;
940
941 if (radio_add_work(wpa_s, freq, "dpp-listen", 0, dpp_start_listen_cb,
942 lwork) < 0) {
943 wpas_dpp_listen_work_free(lwork);
944 return -1;
945 }
946
947 return 0;
948}
949
950
951int wpas_dpp_listen(struct wpa_supplicant *wpa_s, const char *cmd)
952{
953 int freq;
954
955 freq = atoi(cmd);
956 if (freq <= 0)
957 return -1;
958
959 if (os_strstr(cmd, " role=configurator"))
960 wpa_s->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR;
961 else if (os_strstr(cmd, " role=enrollee"))
962 wpa_s->dpp_allowed_roles = DPP_CAPAB_ENROLLEE;
963 else
964 wpa_s->dpp_allowed_roles = DPP_CAPAB_CONFIGURATOR |
965 DPP_CAPAB_ENROLLEE;
966 wpa_s->dpp_qr_mutual = os_strstr(cmd, " qr=mutual") != NULL;
461d39af 967 wpa_s->dpp_netrole_ap = os_strstr(cmd, " netrole=ap") != NULL;
30d27b04
JM
968 if (wpa_s->dpp_listen_freq == (unsigned int) freq) {
969 wpa_printf(MSG_DEBUG, "DPP: Already listening on %u MHz",
970 freq);
971 return 0;
972 }
973
974 return wpas_dpp_listen_start(wpa_s, freq);
975}
976
977
978void wpas_dpp_listen_stop(struct wpa_supplicant *wpa_s)
979{
0db637ca 980 wpa_s->dpp_in_response_listen = 0;
30d27b04
JM
981 if (!wpa_s->dpp_listen_freq)
982 return;
983
984 wpa_printf(MSG_DEBUG, "DPP: Stop listen on %u MHz",
985 wpa_s->dpp_listen_freq);
986 wpa_drv_cancel_remain_on_channel(wpa_s);
987 wpa_s->dpp_listen_freq = 0;
988 wpas_dpp_listen_work_done(wpa_s);
989}
990
991
992void wpas_dpp_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
993 unsigned int freq)
994{
995 if (!wpa_s->dpp_listen_freq && !wpa_s->dpp_pending_listen_freq)
996 return;
997
998 wpa_printf(MSG_DEBUG,
999 "DPP: remain-on-channel callback (off_channel_freq=%u dpp_pending_listen_freq=%d roc_waiting_drv_freq=%d freq=%u)",
1000 wpa_s->off_channel_freq, wpa_s->dpp_pending_listen_freq,
1001 wpa_s->roc_waiting_drv_freq, freq);
1002 if (wpa_s->off_channel_freq &&
1003 wpa_s->off_channel_freq == wpa_s->dpp_pending_listen_freq) {
1004 wpa_printf(MSG_DEBUG, "DPP: Listen on %u MHz started", freq);
1005 wpa_s->dpp_pending_listen_freq = 0;
1006 } else {
1007 wpa_printf(MSG_DEBUG,
1008 "DPP: Ignore remain-on-channel callback (off_channel_freq=%u dpp_pending_listen_freq=%d freq=%u)",
1009 wpa_s->off_channel_freq,
1010 wpa_s->dpp_pending_listen_freq, freq);
1011 }
1012}
1013
1014
1015void wpas_dpp_cancel_remain_on_channel_cb(struct wpa_supplicant *wpa_s,
1016 unsigned int freq)
1017{
1018 wpas_dpp_listen_work_done(wpa_s);
1019
0db637ca
JM
1020 if (wpa_s->dpp_auth && wpa_s->dpp_in_response_listen) {
1021 unsigned int new_freq;
1022
30d27b04 1023 /* Continue listen with a new remain-on-channel */
0db637ca
JM
1024 if (wpa_s->dpp_auth->neg_freq > 0)
1025 new_freq = wpa_s->dpp_auth->neg_freq;
1026 else
1027 new_freq = wpa_s->dpp_auth->curr_freq;
30d27b04
JM
1028 wpa_printf(MSG_DEBUG,
1029 "DPP: Continue wait on %u MHz for the ongoing DPP provisioning session",
0db637ca
JM
1030 new_freq);
1031 wpas_dpp_listen_start(wpa_s, new_freq);
30d27b04
JM
1032 return;
1033 }
1034
1035 if (wpa_s->dpp_listen_freq) {
1036 /* Continue listen with a new remain-on-channel */
1037 wpas_dpp_listen_start(wpa_s, wpa_s->dpp_listen_freq);
1038 }
1039}
1040
1041
1042static void wpas_dpp_rx_auth_req(struct wpa_supplicant *wpa_s, const u8 *src,
dc4d271c
JM
1043 const u8 *hdr, const u8 *buf, size_t len,
1044 unsigned int freq)
30d27b04 1045{
27fefbbb
JM
1046 const u8 *r_bootstrap, *i_bootstrap;
1047 u16 r_bootstrap_len, i_bootstrap_len;
30d27b04 1048 struct dpp_bootstrap_info *bi, *own_bi = NULL, *peer_bi = NULL;
30d27b04
JM
1049
1050 wpa_printf(MSG_DEBUG, "DPP: Authentication Request from " MACSTR,
1051 MAC2STR(src));
1052
30d27b04
JM
1053 r_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_R_BOOTSTRAP_KEY_HASH,
1054 &r_bootstrap_len);
27fefbbb 1055 if (!r_bootstrap || r_bootstrap_len != SHA256_MAC_LEN) {
26806abe
JM
1056 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
1057 "Missing or invalid required Responder Bootstrapping Key Hash attribute");
30d27b04
JM
1058 return;
1059 }
1060 wpa_hexdump(MSG_MSGDUMP, "DPP: Responder Bootstrapping Key Hash",
1061 r_bootstrap, r_bootstrap_len);
1062
1063 i_bootstrap = dpp_get_attr(buf, len, DPP_ATTR_I_BOOTSTRAP_KEY_HASH,
1064 &i_bootstrap_len);
27fefbbb 1065 if (!i_bootstrap || i_bootstrap_len != SHA256_MAC_LEN) {
26806abe
JM
1066 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
1067 "Missing or invalid required Initiator Bootstrapping Key Hash attribute");
30d27b04
JM
1068 return;
1069 }
1070 wpa_hexdump(MSG_MSGDUMP, "DPP: Initiator Bootstrapping Key Hash",
1071 i_bootstrap, i_bootstrap_len);
1072
1073 /* Try to find own and peer bootstrapping key matches based on the
1074 * received hash values */
1075 dl_list_for_each(bi, &wpa_s->dpp_bootstrap, struct dpp_bootstrap_info,
1076 list) {
1077 if (!own_bi && bi->own &&
1078 os_memcmp(bi->pubkey_hash, r_bootstrap,
1079 SHA256_MAC_LEN) == 0) {
1080 wpa_printf(MSG_DEBUG,
1081 "DPP: Found matching own bootstrapping information");
1082 own_bi = bi;
1083 }
1084
1085 if (!peer_bi && !bi->own &&
1086 os_memcmp(bi->pubkey_hash, i_bootstrap,
1087 SHA256_MAC_LEN) == 0) {
1088 wpa_printf(MSG_DEBUG,
1089 "DPP: Found matching peer bootstrapping information");
1090 peer_bi = bi;
1091 }
1092
1093 if (own_bi && peer_bi)
1094 break;
1095 }
1096
1097 if (!own_bi) {
26806abe
JM
1098 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
1099 "No matching own bootstrapping key found - ignore message");
30d27b04
JM
1100 return;
1101 }
1102
1103 if (wpa_s->dpp_auth) {
26806abe
JM
1104 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
1105 "Already in DPP authentication exchange - ignore new one");
30d27b04
JM
1106 return;
1107 }
1108
461d39af
JM
1109 wpa_s->dpp_gas_client = 0;
1110 wpa_s->dpp_auth_ok_on_ack = 0;
30d27b04
JM
1111 wpa_s->dpp_auth = dpp_auth_req_rx(wpa_s, wpa_s->dpp_allowed_roles,
1112 wpa_s->dpp_qr_mutual,
27fefbbb 1113 peer_bi, own_bi, freq, hdr, buf, len);
30d27b04
JM
1114 if (!wpa_s->dpp_auth) {
1115 wpa_printf(MSG_DEBUG, "DPP: No response generated");
1116 return;
1117 }
461d39af 1118 wpas_dpp_set_testing_options(wpa_s, wpa_s->dpp_auth);
b65b22d6
JM
1119 wpas_dpp_set_configurator(wpa_s, wpa_s->dpp_auth,
1120 wpa_s->dpp_configurator_params);
30d27b04
JM
1121 os_memcpy(wpa_s->dpp_auth->peer_mac_addr, src, ETH_ALEN);
1122
d2709206
JM
1123 if (wpa_s->dpp_listen_freq &&
1124 wpa_s->dpp_listen_freq != wpa_s->dpp_auth->curr_freq) {
1125 wpa_printf(MSG_DEBUG,
1126 "DPP: Stop listen on %u MHz to allow response on the request %u MHz",
1127 wpa_s->dpp_listen_freq, wpa_s->dpp_auth->curr_freq);
1128 wpas_dpp_listen_stop(wpa_s);
1129 }
1130
af48810b
JM
1131 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1132 MAC2STR(src), wpa_s->dpp_auth->curr_freq,
1133 DPP_PA_AUTHENTICATION_RESP);
30d27b04
JM
1134 offchannel_send_action(wpa_s, wpa_s->dpp_auth->curr_freq,
1135 src, wpa_s->own_addr, broadcast,
dc4d271c
JM
1136 wpabuf_head(wpa_s->dpp_auth->resp_msg),
1137 wpabuf_len(wpa_s->dpp_auth->resp_msg),
30d27b04 1138 500, wpas_dpp_tx_status, 0);
30d27b04
JM
1139}
1140
1141
461d39af
JM
1142static void wpas_dpp_start_gas_server(struct wpa_supplicant *wpa_s)
1143{
1144 /* TODO: stop wait and start ROC */
1145}
1146
1147
8528994e
JM
1148static struct wpa_ssid * wpas_dpp_add_network(struct wpa_supplicant *wpa_s,
1149 struct dpp_authentication *auth)
1150{
1151 struct wpa_ssid *ssid;
1152
1153 ssid = wpa_config_add_network(wpa_s->conf);
1154 if (!ssid)
1155 return NULL;
1156 wpas_notify_network_added(wpa_s, ssid);
1157 wpa_config_set_network_defaults(ssid);
1158 ssid->disabled = 1;
1159
1160 ssid->ssid = os_malloc(auth->ssid_len);
1161 if (!ssid->ssid)
1162 goto fail;
1163 os_memcpy(ssid->ssid, auth->ssid, auth->ssid_len);
1164 ssid->ssid_len = auth->ssid_len;
1165
1166 if (auth->connector) {
1167 ssid->key_mgmt = WPA_KEY_MGMT_DPP;
70e19013 1168 ssid->ieee80211w = MGMT_FRAME_PROTECTION_REQUIRED;
8528994e
JM
1169 ssid->dpp_connector = os_strdup(auth->connector);
1170 if (!ssid->dpp_connector)
1171 goto fail;
1172 }
1173
1174 if (auth->c_sign_key) {
1175 ssid->dpp_csign = os_malloc(wpabuf_len(auth->c_sign_key));
1176 if (!ssid->dpp_csign)
1177 goto fail;
1178 os_memcpy(ssid->dpp_csign, wpabuf_head(auth->c_sign_key),
1179 wpabuf_len(auth->c_sign_key));
1180 ssid->dpp_csign_len = wpabuf_len(auth->c_sign_key);
8528994e
JM
1181 }
1182
1183 if (auth->net_access_key) {
1184 ssid->dpp_netaccesskey =
1185 os_malloc(wpabuf_len(auth->net_access_key));
1186 if (!ssid->dpp_netaccesskey)
1187 goto fail;
1188 os_memcpy(ssid->dpp_netaccesskey,
1189 wpabuf_head(auth->net_access_key),
1190 wpabuf_len(auth->net_access_key));
1191 ssid->dpp_netaccesskey_len = wpabuf_len(auth->net_access_key);
1192 ssid->dpp_netaccesskey_expiry = auth->net_access_key_expiry;
1193 }
1194
1195 if (!auth->connector) {
5dd745b7
JM
1196 ssid->key_mgmt = 0;
1197 if (auth->akm == DPP_AKM_PSK || auth->akm == DPP_AKM_PSK_SAE)
1198 ssid->key_mgmt |= WPA_KEY_MGMT_PSK |
1199 WPA_KEY_MGMT_PSK_SHA256 | WPA_KEY_MGMT_FT_PSK;
1200 if (auth->akm == DPP_AKM_SAE || auth->akm == DPP_AKM_PSK_SAE)
1201 ssid->key_mgmt |= WPA_KEY_MGMT_SAE |
1202 WPA_KEY_MGMT_FT_SAE;
70e19013 1203 ssid->ieee80211w = MGMT_FRAME_PROTECTION_OPTIONAL;
8528994e
JM
1204 if (auth->passphrase[0]) {
1205 if (wpa_config_set_quoted(ssid, "psk",
1206 auth->passphrase) < 0)
1207 goto fail;
1208 wpa_config_update_psk(ssid);
1209 ssid->export_keys = 1;
1210 } else {
1211 ssid->psk_set = auth->psk_set;
1212 os_memcpy(ssid->psk, auth->psk, PMK_LEN);
1213 }
1214 }
1215
1216 return ssid;
1217fail:
1218 wpas_notify_network_removed(wpa_s, ssid);
1219 wpa_config_remove_network(wpa_s->conf, ssid->id);
1220 return NULL;
1221}
1222
1223
1224static void wpas_dpp_process_config(struct wpa_supplicant *wpa_s,
1225 struct dpp_authentication *auth)
1226{
1227 struct wpa_ssid *ssid;
1228
1229 if (wpa_s->conf->dpp_config_processing < 1)
1230 return;
1231
1232 ssid = wpas_dpp_add_network(wpa_s, auth);
1233 if (!ssid)
1234 return;
1235
1236 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_NETWORK_ID "%d", ssid->id);
1237 if (wpa_s->conf->dpp_config_processing < 2)
1238 return;
1239
1240 wpa_printf(MSG_DEBUG, "DPP: Trying to connect to the new network");
1241 ssid->disabled = 0;
1242 wpa_s->disconnected = 0;
1243 wpa_s->reassociate = 1;
1244 wpa_s->scan_runs = 0;
1245 wpa_s->normal_scans = 0;
1246 wpa_supplicant_cancel_sched_scan(wpa_s);
1247 wpa_supplicant_req_scan(wpa_s, 0, 0);
1248}
1249
1250
f522bb23
JM
1251static void wpas_dpp_handle_config_obj(struct wpa_supplicant *wpa_s,
1252 struct dpp_authentication *auth)
461d39af 1253{
461d39af
JM
1254 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_RECEIVED);
1255 if (auth->ssid_len)
1256 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONFOBJ_SSID "%s",
1257 wpa_ssid_txt(auth->ssid, auth->ssid_len));
1258 if (auth->connector) {
1259 /* TODO: Save the Connector and consider using a command
1260 * to fetch the value instead of sending an event with
1261 * it. The Connector could end up being larger than what
1262 * most clients are ready to receive as an event
1263 * message. */
1264 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONNECTOR "%s",
1265 auth->connector);
1266 }
1267 if (auth->c_sign_key) {
1268 char *hex;
1269 size_t hexlen;
1270
1271 hexlen = 2 * wpabuf_len(auth->c_sign_key) + 1;
1272 hex = os_malloc(hexlen);
1273 if (hex) {
1274 wpa_snprintf_hex(hex, hexlen,
1275 wpabuf_head(auth->c_sign_key),
1276 wpabuf_len(auth->c_sign_key));
c77e2ff0
JM
1277 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_C_SIGN_KEY "%s",
1278 hex);
461d39af
JM
1279 os_free(hex);
1280 }
1281 }
1282 if (auth->net_access_key) {
1283 char *hex;
1284 size_t hexlen;
1285
1286 hexlen = 2 * wpabuf_len(auth->net_access_key) + 1;
1287 hex = os_malloc(hexlen);
1288 if (hex) {
1289 wpa_snprintf_hex(hex, hexlen,
1290 wpabuf_head(auth->net_access_key),
1291 wpabuf_len(auth->net_access_key));
1292 if (auth->net_access_key_expiry)
1293 wpa_msg(wpa_s, MSG_INFO,
1294 DPP_EVENT_NET_ACCESS_KEY "%s %lu", hex,
1295 (long unsigned)
1296 auth->net_access_key_expiry);
1297 else
1298 wpa_msg(wpa_s, MSG_INFO,
1299 DPP_EVENT_NET_ACCESS_KEY "%s", hex);
1300 os_free(hex);
1301 }
1302 }
8528994e
JM
1303
1304 wpas_dpp_process_config(wpa_s, auth);
f522bb23
JM
1305}
1306
1307
1308static void wpas_dpp_gas_resp_cb(void *ctx, const u8 *addr, u8 dialog_token,
1309 enum gas_query_result result,
1310 const struct wpabuf *adv_proto,
1311 const struct wpabuf *resp, u16 status_code)
1312{
1313 struct wpa_supplicant *wpa_s = ctx;
1314 const u8 *pos;
1315 struct dpp_authentication *auth = wpa_s->dpp_auth;
1316
1866dfb5
JM
1317 wpa_s->dpp_gas_dialog_token = -1;
1318
f522bb23
JM
1319 if (!auth || !auth->auth_success) {
1320 wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
1321 return;
1322 }
1323 if (!resp || status_code != WLAN_STATUS_SUCCESS) {
1324 wpa_printf(MSG_DEBUG, "DPP: GAS query did not succeed");
1325 goto fail;
1326 }
1327
1328 wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response adv_proto",
1329 adv_proto);
1330 wpa_hexdump_buf(MSG_DEBUG, "DPP: Configuration Response (GAS response)",
1331 resp);
1332
1333 if (wpabuf_len(adv_proto) != 10 ||
1334 !(pos = wpabuf_head(adv_proto)) ||
1335 pos[0] != WLAN_EID_ADV_PROTO ||
1336 pos[1] != 8 ||
1337 pos[3] != WLAN_EID_VENDOR_SPECIFIC ||
1338 pos[4] != 5 ||
1339 WPA_GET_BE24(&pos[5]) != OUI_WFA ||
1340 pos[8] != 0x1a ||
1341 pos[9] != 1) {
1342 wpa_printf(MSG_DEBUG,
1343 "DPP: Not a DPP Advertisement Protocol ID");
1344 goto fail;
1345 }
8528994e 1346
f522bb23
JM
1347 if (dpp_conf_resp_rx(auth, resp) < 0) {
1348 wpa_printf(MSG_DEBUG, "DPP: Configuration attempt failed");
1349 goto fail;
1350 }
1351
1352 wpas_dpp_handle_config_obj(wpa_s, auth);
461d39af
JM
1353 dpp_auth_deinit(wpa_s->dpp_auth);
1354 wpa_s->dpp_auth = NULL;
1355 return;
1356
1357fail:
1358 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
1359 dpp_auth_deinit(wpa_s->dpp_auth);
1360 wpa_s->dpp_auth = NULL;
1361}
1362
1363
1364static void wpas_dpp_start_gas_client(struct wpa_supplicant *wpa_s)
1365{
1366 struct dpp_authentication *auth = wpa_s->dpp_auth;
1367 struct wpabuf *buf, *conf_req;
1368 char json[100];
1369 int res;
1370
1371 wpa_s->dpp_gas_client = 1;
1372 os_snprintf(json, sizeof(json),
1373 "{\"name\":\"Test\","
1374 "\"wi-fi_tech\":\"infra\","
1375 "\"netRole\":\"%s\"}",
1376 wpa_s->dpp_netrole_ap ? "ap" : "sta");
f9cf7d03
JM
1377#ifdef CONFIG_TESTING_OPTIONS
1378 if (dpp_test == DPP_TEST_INVALID_CONFIG_ATTR_OBJ_CONF_REQ) {
1379 wpa_printf(MSG_INFO, "DPP: TESTING - invalid Config Attr");
1380 json[29] = 'k'; /* replace "infra" with "knfra" */
1381 }
1382#endif /* CONFIG_TESTING_OPTIONS */
461d39af
JM
1383 wpa_printf(MSG_DEBUG, "DPP: GAS Config Attributes: %s", json);
1384
1385 offchannel_send_action_done(wpa_s);
1386 wpas_dpp_listen_stop(wpa_s);
1387
1388 conf_req = dpp_build_conf_req(auth, json);
1389 if (!conf_req) {
1390 wpa_printf(MSG_DEBUG,
1391 "DPP: No configuration request data available");
1392 return;
1393 }
1394
1395 buf = gas_build_initial_req(0, 10 + 2 + wpabuf_len(conf_req));
1396 if (!buf) {
1397 wpabuf_free(conf_req);
1398 return;
1399 }
1400
1401 /* Advertisement Protocol IE */
1402 wpabuf_put_u8(buf, WLAN_EID_ADV_PROTO);
1403 wpabuf_put_u8(buf, 8); /* Length */
1404 wpabuf_put_u8(buf, 0x7f);
1405 wpabuf_put_u8(buf, WLAN_EID_VENDOR_SPECIFIC);
1406 wpabuf_put_u8(buf, 5);
1407 wpabuf_put_be24(buf, OUI_WFA);
1408 wpabuf_put_u8(buf, DPP_OUI_TYPE);
1409 wpabuf_put_u8(buf, 0x01);
1410
1411 /* GAS Query */
1412 wpabuf_put_le16(buf, wpabuf_len(conf_req));
1413 wpabuf_put_buf(buf, conf_req);
1414 wpabuf_free(conf_req);
1415
1416 wpa_printf(MSG_DEBUG, "DPP: GAS request to " MACSTR " (freq %u MHz)",
1417 MAC2STR(auth->peer_mac_addr), auth->curr_freq);
1418
1419 res = gas_query_req(wpa_s->gas, auth->peer_mac_addr, auth->curr_freq,
1420 buf, wpas_dpp_gas_resp_cb, wpa_s);
1421 if (res < 0) {
1422 wpa_msg(wpa_s, MSG_DEBUG, "GAS: Failed to send Query Request");
1423 wpabuf_free(buf);
1424 } else {
1425 wpa_printf(MSG_DEBUG,
1426 "DPP: GAS query started with dialog token %u", res);
1866dfb5 1427 wpa_s->dpp_gas_dialog_token = res;
461d39af
JM
1428 }
1429}
1430
1431
1432static void wpas_dpp_auth_success(struct wpa_supplicant *wpa_s, int initiator)
1433{
1434 wpa_printf(MSG_DEBUG, "DPP: Authentication succeeded");
1435 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_AUTH_SUCCESS "init=%d", initiator);
1436
1437 if (wpa_s->dpp_auth->configurator)
1438 wpas_dpp_start_gas_server(wpa_s);
1439 else
1440 wpas_dpp_start_gas_client(wpa_s);
1441}
1442
1443
30d27b04 1444static void wpas_dpp_rx_auth_resp(struct wpa_supplicant *wpa_s, const u8 *src,
d2709206
JM
1445 const u8 *hdr, const u8 *buf, size_t len,
1446 unsigned int freq)
30d27b04
JM
1447{
1448 struct dpp_authentication *auth = wpa_s->dpp_auth;
dc4d271c 1449 struct wpabuf *msg;
30d27b04 1450
d2709206
JM
1451 wpa_printf(MSG_DEBUG, "DPP: Authentication Response from " MACSTR
1452 " (freq %u MHz)", MAC2STR(src), freq);
30d27b04
JM
1453
1454 if (!auth) {
1455 wpa_printf(MSG_DEBUG,
1456 "DPP: No DPP Authentication in progress - drop");
1457 return;
1458 }
1459
1460 if (!is_zero_ether_addr(auth->peer_mac_addr) &&
1461 os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
1462 wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
1463 MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
1464 return;
1465 }
1466
1467 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
1468
d2709206
JM
1469 if (auth->curr_freq != freq && auth->neg_freq == freq) {
1470 wpa_printf(MSG_DEBUG,
1471 "DPP: Responder accepted request for different negotiation channel");
1472 auth->curr_freq = freq;
1473 }
1474
f97ace34 1475 eloop_cancel_timeout(wpas_dpp_init_timeout, wpa_s, NULL);
dc4d271c
JM
1476 msg = dpp_auth_resp_rx(auth, hdr, buf, len);
1477 if (!msg) {
30d27b04
JM
1478 if (auth->auth_resp_status == DPP_STATUS_RESPONSE_PENDING) {
1479 wpa_printf(MSG_DEBUG,
1480 "DPP: Start wait for full response");
1481 offchannel_send_action_done(wpa_s);
1482 wpas_dpp_listen_start(wpa_s, auth->curr_freq);
1483 return;
1484 }
1485 wpa_printf(MSG_DEBUG, "DPP: No confirm generated");
1486 return;
1487 }
1488 os_memcpy(auth->peer_mac_addr, src, ETH_ALEN);
1489
af48810b
JM
1490 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1491 MAC2STR(src), auth->curr_freq, DPP_PA_AUTHENTICATION_CONF);
30d27b04
JM
1492 offchannel_send_action(wpa_s, auth->curr_freq,
1493 src, wpa_s->own_addr, broadcast,
1494 wpabuf_head(msg), wpabuf_len(msg),
1495 500, wpas_dpp_tx_status, 0);
1496 wpabuf_free(msg);
461d39af 1497 wpa_s->dpp_auth_ok_on_ack = 1;
30d27b04
JM
1498}
1499
1500
1501static void wpas_dpp_rx_auth_conf(struct wpa_supplicant *wpa_s, const u8 *src,
dc4d271c 1502 const u8 *hdr, const u8 *buf, size_t len)
30d27b04
JM
1503{
1504 struct dpp_authentication *auth = wpa_s->dpp_auth;
1505
1506 wpa_printf(MSG_DEBUG, "DPP: Authentication Confirmation from " MACSTR,
1507 MAC2STR(src));
1508
1509 if (!auth) {
1510 wpa_printf(MSG_DEBUG,
1511 "DPP: No DPP Authentication in progress - drop");
1512 return;
1513 }
1514
1515 if (os_memcmp(src, auth->peer_mac_addr, ETH_ALEN) != 0) {
1516 wpa_printf(MSG_DEBUG, "DPP: MAC address mismatch (expected "
1517 MACSTR ") - drop", MAC2STR(auth->peer_mac_addr));
1518 return;
1519 }
1520
dc4d271c 1521 if (dpp_auth_conf_rx(auth, hdr, buf, len) < 0) {
30d27b04
JM
1522 wpa_printf(MSG_DEBUG, "DPP: Authentication failed");
1523 return;
1524 }
1525
461d39af 1526 wpas_dpp_auth_success(wpa_s, 0);
30d27b04
JM
1527}
1528
1529
a0d5c56f
JM
1530static void wpas_dpp_rx_peer_disc_resp(struct wpa_supplicant *wpa_s,
1531 const u8 *src,
1532 const u8 *buf, size_t len)
1533{
1534 struct wpa_ssid *ssid;
e85b6601
JM
1535 const u8 *connector, *trans_id, *status;
1536 u16 connector_len, trans_id_len, status_len;
a0d5c56f
JM
1537 struct dpp_introduction intro;
1538 struct rsn_pmksa_cache_entry *entry;
787615b3
JM
1539 struct os_time now;
1540 struct os_reltime rnow;
1541 os_time_t expiry;
1542 unsigned int seconds;
e85b6601 1543 enum dpp_status_error res;
a0d5c56f
JM
1544
1545 wpa_printf(MSG_DEBUG, "DPP: Peer Discovery Response from " MACSTR,
1546 MAC2STR(src));
1547 if (is_zero_ether_addr(wpa_s->dpp_intro_bssid) ||
1548 os_memcmp(src, wpa_s->dpp_intro_bssid, ETH_ALEN) != 0) {
1549 wpa_printf(MSG_DEBUG, "DPP: Not waiting for response from "
1550 MACSTR " - drop", MAC2STR(src));
1551 return;
1552 }
1553 offchannel_send_action_done(wpa_s);
1554
1555 for (ssid = wpa_s->conf->ssid; ssid; ssid = ssid->next) {
1556 if (ssid == wpa_s->dpp_intro_network)
1557 break;
1558 }
1559 if (!ssid || !ssid->dpp_connector || !ssid->dpp_netaccesskey ||
1560 !ssid->dpp_csign) {
1561 wpa_printf(MSG_DEBUG,
1562 "DPP: Profile not found for network introduction");
1563 return;
1564 }
1565
85fd8263
JM
1566 trans_id = dpp_get_attr(buf, len, DPP_ATTR_TRANSACTION_ID,
1567 &trans_id_len);
1568 if (!trans_id || trans_id_len != 1) {
1569 wpa_printf(MSG_DEBUG,
1570 "DPP: Peer did not include Transaction ID");
e85b6601
JM
1571 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1572 " fail=missing_transaction_id", MAC2STR(src));
85fd8263
JM
1573 goto fail;
1574 }
1575 if (trans_id[0] != TRANSACTION_ID) {
1576 wpa_printf(MSG_DEBUG,
1577 "DPP: Ignore frame with unexpected Transaction ID %u",
1578 trans_id[0]);
e85b6601
JM
1579 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1580 " fail=transaction_id_mismatch", MAC2STR(src));
1581 goto fail;
1582 }
1583
1584 status = dpp_get_attr(buf, len, DPP_ATTR_STATUS, &status_len);
1585 if (!status || status_len != 1) {
1586 wpa_printf(MSG_DEBUG, "DPP: Peer did not include Status");
1587 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1588 " fail=missing_status", MAC2STR(src));
1589 goto fail;
1590 }
1591 if (status[0] != DPP_STATUS_OK) {
1592 wpa_printf(MSG_DEBUG,
1593 "DPP: Peer rejected network introduction: Status %u",
1594 status[0]);
1595 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1596 " status=%u", MAC2STR(src), status[0]);
85fd8263
JM
1597 goto fail;
1598 }
1599
a0d5c56f
JM
1600 connector = dpp_get_attr(buf, len, DPP_ATTR_CONNECTOR, &connector_len);
1601 if (!connector) {
1602 wpa_printf(MSG_DEBUG,
1603 "DPP: Peer did not include its Connector");
e85b6601
JM
1604 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1605 " fail=missing_connector", MAC2STR(src));
1606 goto fail;
a0d5c56f
JM
1607 }
1608
e85b6601
JM
1609 res = dpp_peer_intro(&intro, ssid->dpp_connector,
1610 ssid->dpp_netaccesskey,
1611 ssid->dpp_netaccesskey_len,
1612 ssid->dpp_csign,
1613 ssid->dpp_csign_len,
1614 connector, connector_len, &expiry);
1615 if (res != DPP_STATUS_OK) {
a0d5c56f
JM
1616 wpa_printf(MSG_INFO,
1617 "DPP: Network Introduction protocol resulted in failure");
e85b6601
JM
1618 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1619 " fail=peer_connector_validation_failed", MAC2STR(src));
a0d5c56f
JM
1620 goto fail;
1621 }
1622
a0d5c56f
JM
1623 entry = os_zalloc(sizeof(*entry));
1624 if (!entry)
1625 goto fail;
1626 os_memcpy(entry->aa, src, ETH_ALEN);
1627 os_memcpy(entry->pmkid, intro.pmkid, PMKID_LEN);
1628 os_memcpy(entry->pmk, intro.pmk, intro.pmk_len);
1629 entry->pmk_len = intro.pmk_len;
1630 entry->akmp = WPA_KEY_MGMT_DPP;
787615b3
JM
1631 if (expiry) {
1632 os_get_time(&now);
1633 seconds = expiry - now.sec;
1634 } else {
1635 seconds = 86400 * 7;
1636 }
1637 os_get_reltime(&rnow);
1638 entry->expiration = rnow.sec + seconds;
1639 entry->reauth_time = rnow.sec + seconds;
a0d5c56f
JM
1640 entry->network_ctx = ssid;
1641 wpa_sm_pmksa_cache_add_entry(wpa_s->wpa, entry);
1642
e85b6601
JM
1643 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_INTRO "peer=" MACSTR
1644 " status=%u", MAC2STR(src), status[0]);
1645
a0d5c56f
JM
1646 wpa_printf(MSG_DEBUG,
1647 "DPP: Try connection again after successful network introduction");
1648 if (wpa_supplicant_fast_associate(wpa_s) != 1) {
1649 wpa_supplicant_cancel_sched_scan(wpa_s);
1650 wpa_supplicant_req_scan(wpa_s, 0, 0);
1651 }
1652fail:
1653 os_memset(&intro, 0, sizeof(intro));
1654}
1655
1656
00d2d13d
JM
1657static void wpas_dpp_pkex_retry_timeout(void *eloop_ctx, void *timeout_ctx)
1658{
1659 struct wpa_supplicant *wpa_s = eloop_ctx;
1660 struct dpp_pkex *pkex = wpa_s->dpp_pkex;
1661
1662 if (!pkex || !pkex->exchange_req)
1663 return;
1664 if (pkex->exch_req_tries >= 5) {
1665 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_FAIL
1666 "No response from PKEX peer");
1667 dpp_pkex_free(pkex);
1668 wpa_s->dpp_pkex = NULL;
1669 return;
1670 }
1671
1672 pkex->exch_req_tries++;
1673 wpa_printf(MSG_DEBUG, "DPP: Retransmit PKEX Exchange Request (try %u)",
1674 pkex->exch_req_tries);
1675 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1676 MAC2STR(broadcast), pkex->freq, DPP_PA_PKEX_EXCHANGE_REQ);
1677 offchannel_send_action(wpa_s, pkex->freq, broadcast,
1678 wpa_s->own_addr, broadcast,
1679 wpabuf_head(pkex->exchange_req),
1680 wpabuf_len(pkex->exchange_req),
1681 pkex->exch_req_wait_time,
1682 wpas_dpp_tx_pkex_status, 0);
1683}
1684
1685
500ed7f0
JM
1686static void
1687wpas_dpp_tx_pkex_status(struct wpa_supplicant *wpa_s,
1688 unsigned int freq, const u8 *dst,
1689 const u8 *src, const u8 *bssid,
1690 const u8 *data, size_t data_len,
1691 enum offchannel_send_action_result result)
1692{
af48810b 1693 const char *res_txt;
00d2d13d 1694 struct dpp_pkex *pkex = wpa_s->dpp_pkex;
af48810b
JM
1695
1696 res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
1697 (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
1698 "FAILED");
500ed7f0
JM
1699 wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
1700 " result=%s (PKEX)",
af48810b
JM
1701 freq, MAC2STR(dst), res_txt);
1702 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
1703 " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
e0247e79 1704
00d2d13d 1705 if (!pkex) {
e0247e79
JM
1706 wpa_printf(MSG_DEBUG,
1707 "DPP: Ignore TX status since there is no ongoing PKEX exchange");
1708 return;
1709 }
1710
00d2d13d 1711 if (pkex->failed) {
e0247e79
JM
1712 wpa_printf(MSG_DEBUG,
1713 "DPP: Terminate PKEX exchange due to an earlier error");
00d2d13d
JM
1714 if (pkex->t > pkex->own_bi->pkex_t)
1715 pkex->own_bi->pkex_t = pkex->t;
1716 dpp_pkex_free(pkex);
e0247e79 1717 wpa_s->dpp_pkex = NULL;
00d2d13d
JM
1718 return;
1719 }
1720
1721 if (pkex->exch_req_wait_time && pkex->exchange_req) {
1722 /* Wait for PKEX Exchange Response frame and retry request if
1723 * no response is seen. */
1724 eloop_cancel_timeout(wpas_dpp_pkex_retry_timeout, wpa_s, NULL);
1725 eloop_register_timeout(pkex->exch_req_wait_time / 1000,
1726 (pkex->exch_req_wait_time % 1000) * 1000,
1727 wpas_dpp_pkex_retry_timeout, wpa_s,
1728 NULL);
e0247e79 1729 }
500ed7f0
JM
1730}
1731
1732
1733static void
1734wpas_dpp_rx_pkex_exchange_req(struct wpa_supplicant *wpa_s, const u8 *src,
1735 const u8 *buf, size_t len, unsigned int freq)
1736{
1737 struct wpabuf *msg;
1738 unsigned int wait_time;
1739
1740 wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Request from " MACSTR,
1741 MAC2STR(src));
1742
1743 /* TODO: Support multiple PKEX codes by iterating over all the enabled
1744 * values here */
1745
1746 if (!wpa_s->dpp_pkex_code || !wpa_s->dpp_pkex_bi) {
1747 wpa_printf(MSG_DEBUG,
1748 "DPP: No PKEX code configured - ignore request");
1749 return;
1750 }
1751
1752 if (wpa_s->dpp_pkex) {
1753 /* TODO: Support parallel operations */
1754 wpa_printf(MSG_DEBUG,
1755 "DPP: Already in PKEX session - ignore new request");
1756 return;
1757 }
1758
219d4c9f 1759 wpa_s->dpp_pkex = dpp_pkex_rx_exchange_req(wpa_s, wpa_s->dpp_pkex_bi,
500ed7f0
JM
1760 wpa_s->own_addr, src,
1761 wpa_s->dpp_pkex_identifier,
1762 wpa_s->dpp_pkex_code,
1763 buf, len);
1764 if (!wpa_s->dpp_pkex) {
1765 wpa_printf(MSG_DEBUG,
1766 "DPP: Failed to process the request - ignore it");
1767 return;
1768 }
1769
1770 msg = wpa_s->dpp_pkex->exchange_resp;
1771 wait_time = wpa_s->max_remain_on_chan;
1772 if (wait_time > 2000)
1773 wait_time = 2000;
af48810b
JM
1774 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1775 MAC2STR(src), freq, DPP_PA_PKEX_EXCHANGE_RESP);
500ed7f0
JM
1776 offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
1777 broadcast,
1778 wpabuf_head(msg), wpabuf_len(msg),
1779 wait_time, wpas_dpp_tx_pkex_status, 0);
1780}
1781
1782
1783static void
1784wpas_dpp_rx_pkex_exchange_resp(struct wpa_supplicant *wpa_s, const u8 *src,
1785 const u8 *buf, size_t len, unsigned int freq)
1786{
1787 struct wpabuf *msg;
1788 unsigned int wait_time;
1789
1790 wpa_printf(MSG_DEBUG, "DPP: PKEX Exchange Response from " MACSTR,
1791 MAC2STR(src));
1792
1793 /* TODO: Support multiple PKEX codes by iterating over all the enabled
1794 * values here */
1795
1796 if (!wpa_s->dpp_pkex || !wpa_s->dpp_pkex->initiator ||
1797 wpa_s->dpp_pkex->exchange_done) {
1798 wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
1799 return;
1800 }
1801
00d2d13d
JM
1802 eloop_cancel_timeout(wpas_dpp_pkex_retry_timeout, wpa_s, NULL);
1803 wpa_s->dpp_pkex->exch_req_wait_time = 0;
1804
af4103e5 1805 msg = dpp_pkex_rx_exchange_resp(wpa_s->dpp_pkex, src, buf, len);
500ed7f0
JM
1806 if (!msg) {
1807 wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
1808 return;
1809 }
1810
1811 wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Request to " MACSTR,
1812 MAC2STR(src));
1813
1814 wait_time = wpa_s->max_remain_on_chan;
1815 if (wait_time > 2000)
1816 wait_time = 2000;
af48810b
JM
1817 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1818 MAC2STR(src), freq, DPP_PA_PKEX_COMMIT_REVEAL_REQ);
500ed7f0
JM
1819 offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
1820 broadcast,
1821 wpabuf_head(msg), wpabuf_len(msg),
1822 wait_time, wpas_dpp_tx_pkex_status, 0);
1823 wpabuf_free(msg);
1824}
1825
1826
de029861
JM
1827static struct dpp_bootstrap_info *
1828wpas_dpp_pkex_finish(struct wpa_supplicant *wpa_s, const u8 *peer,
1829 unsigned int freq)
1830{
1831 struct dpp_pkex *pkex = wpa_s->dpp_pkex;
1832 struct dpp_bootstrap_info *bi;
1833
1834 bi = os_zalloc(sizeof(*bi));
1835 if (!bi)
1836 return NULL;
1837 bi->id = wpas_dpp_next_id(wpa_s);
1838 bi->type = DPP_BOOTSTRAP_PKEX;
1839 os_memcpy(bi->mac_addr, peer, ETH_ALEN);
1840 bi->num_freq = 1;
1841 bi->freq[0] = freq;
1842 bi->curve = pkex->own_bi->curve;
1843 bi->pubkey = pkex->peer_bootstrap_key;
1844 pkex->peer_bootstrap_key = NULL;
1845 dpp_pkex_free(pkex);
1846 wpa_s->dpp_pkex = NULL;
1847 if (dpp_bootstrap_key_hash(bi) < 0) {
1848 dpp_bootstrap_info_free(bi);
1849 return NULL;
1850 }
1851 dl_list_add(&wpa_s->dpp_bootstrap, &bi->list);
1852 return bi;
1853}
1854
1855
500ed7f0
JM
1856static void
1857wpas_dpp_rx_pkex_commit_reveal_req(struct wpa_supplicant *wpa_s, const u8 *src,
4be5bc98
JM
1858 const u8 *hdr, const u8 *buf, size_t len,
1859 unsigned int freq)
500ed7f0
JM
1860{
1861 struct wpabuf *msg;
1862 unsigned int wait_time;
1863 struct dpp_pkex *pkex = wpa_s->dpp_pkex;
500ed7f0
JM
1864
1865 wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Request from " MACSTR,
1866 MAC2STR(src));
1867
1868 if (!pkex || pkex->initiator || !pkex->exchange_done) {
1869 wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
1870 return;
1871 }
1872
4be5bc98 1873 msg = dpp_pkex_rx_commit_reveal_req(pkex, hdr, buf, len);
500ed7f0
JM
1874 if (!msg) {
1875 wpa_printf(MSG_DEBUG, "DPP: Failed to process the request");
039b8e73
JM
1876 if (pkex->failed) {
1877 wpa_printf(MSG_DEBUG, "DPP: Terminate PKEX exchange");
29ab69e4
JM
1878 if (pkex->t > pkex->own_bi->pkex_t)
1879 pkex->own_bi->pkex_t = pkex->t;
039b8e73
JM
1880 dpp_pkex_free(wpa_s->dpp_pkex);
1881 wpa_s->dpp_pkex = NULL;
1882 }
500ed7f0
JM
1883 return;
1884 }
1885
1886 wpa_printf(MSG_DEBUG, "DPP: Send PKEX Commit-Reveal Response to "
1887 MACSTR, MAC2STR(src));
1888
1889 wait_time = wpa_s->max_remain_on_chan;
1890 if (wait_time > 2000)
1891 wait_time = 2000;
af48810b
JM
1892 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
1893 MAC2STR(src), freq, DPP_PA_PKEX_COMMIT_REVEAL_RESP);
500ed7f0
JM
1894 offchannel_send_action(wpa_s, freq, src, wpa_s->own_addr,
1895 broadcast,
1896 wpabuf_head(msg), wpabuf_len(msg),
1897 wait_time, wpas_dpp_tx_pkex_status, 0);
1898 wpabuf_free(msg);
1899
de029861 1900 wpas_dpp_pkex_finish(wpa_s, src, freq);
500ed7f0
JM
1901}
1902
1903
1904static void
1905wpas_dpp_rx_pkex_commit_reveal_resp(struct wpa_supplicant *wpa_s, const u8 *src,
4be5bc98 1906 const u8 *hdr, const u8 *buf, size_t len,
500ed7f0
JM
1907 unsigned int freq)
1908{
1909 int res;
de029861 1910 struct dpp_bootstrap_info *bi;
500ed7f0
JM
1911 struct dpp_pkex *pkex = wpa_s->dpp_pkex;
1912 char cmd[500];
1913
1914 wpa_printf(MSG_DEBUG, "DPP: PKEX Commit-Reveal Response from " MACSTR,
1915 MAC2STR(src));
1916
1917 if (!pkex || !pkex->initiator || !pkex->exchange_done) {
1918 wpa_printf(MSG_DEBUG, "DPP: No matching PKEX session");
1919 return;
1920 }
1921
4be5bc98 1922 res = dpp_pkex_rx_commit_reveal_resp(pkex, hdr, buf, len);
500ed7f0
JM
1923 if (res < 0) {
1924 wpa_printf(MSG_DEBUG, "DPP: Failed to process the response");
1925 return;
1926 }
1927
de029861 1928 bi = wpas_dpp_pkex_finish(wpa_s, src, freq);
500ed7f0
JM
1929 if (!bi)
1930 return;
500ed7f0
JM
1931
1932 os_snprintf(cmd, sizeof(cmd), " peer=%u %s",
1933 bi->id,
1934 wpa_s->dpp_pkex_auth_cmd ? wpa_s->dpp_pkex_auth_cmd : "");
1935 wpa_printf(MSG_DEBUG,
1936 "DPP: Start authentication after PKEX with parameters: %s",
1937 cmd);
1938 if (wpas_dpp_auth_init(wpa_s, cmd) < 0) {
1939 wpa_printf(MSG_DEBUG,
1940 "DPP: Authentication initialization failed");
1941 return;
1942 }
1943}
1944
1945
30d27b04
JM
1946void wpas_dpp_rx_action(struct wpa_supplicant *wpa_s, const u8 *src,
1947 const u8 *buf, size_t len, unsigned int freq)
1948{
8c19ea3f 1949 u8 crypto_suite;
30d27b04 1950 enum dpp_public_action_frame_type type;
dc4d271c 1951 const u8 *hdr;
29ab69e4 1952 unsigned int pkex_t;
30d27b04 1953
dc4d271c
JM
1954 if (len < DPP_HDR_LEN)
1955 return;
1956 if (WPA_GET_BE24(buf) != OUI_WFA || buf[3] != DPP_OUI_TYPE)
30d27b04 1957 return;
dc4d271c
JM
1958 hdr = buf;
1959 buf += 4;
1960 len -= 4;
8c19ea3f
JM
1961 crypto_suite = *buf++;
1962 type = *buf++;
1963 len -= 2;
30d27b04
JM
1964
1965 wpa_printf(MSG_DEBUG,
8c19ea3f 1966 "DPP: Received DPP Public Action frame crypto suite %u type %d from "
30d27b04 1967 MACSTR " freq=%u",
8c19ea3f
JM
1968 crypto_suite, type, MAC2STR(src), freq);
1969 if (crypto_suite != 1) {
1970 wpa_printf(MSG_DEBUG, "DPP: Unsupported crypto suite %u",
1971 crypto_suite);
a7073934
JM
1972 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
1973 " freq=%u type=%d ignore=unsupported-crypto-suite",
1974 MAC2STR(src), freq, type);
8c19ea3f
JM
1975 return;
1976 }
30d27b04 1977 wpa_hexdump(MSG_MSGDUMP, "DPP: Received message attributes", buf, len);
a7073934
JM
1978 if (dpp_check_attrs(buf, len) < 0) {
1979 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR
1980 " freq=%u type=%d ignore=invalid-attributes",
1981 MAC2STR(src), freq, type);
30d27b04 1982 return;
a7073934
JM
1983 }
1984 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_RX "src=" MACSTR " freq=%u type=%d",
1985 MAC2STR(src), freq, type);
30d27b04
JM
1986
1987 switch (type) {
1988 case DPP_PA_AUTHENTICATION_REQ:
dc4d271c 1989 wpas_dpp_rx_auth_req(wpa_s, src, hdr, buf, len, freq);
30d27b04
JM
1990 break;
1991 case DPP_PA_AUTHENTICATION_RESP:
d2709206 1992 wpas_dpp_rx_auth_resp(wpa_s, src, hdr, buf, len, freq);
30d27b04
JM
1993 break;
1994 case DPP_PA_AUTHENTICATION_CONF:
dc4d271c 1995 wpas_dpp_rx_auth_conf(wpa_s, src, hdr, buf, len);
30d27b04 1996 break;
a0d5c56f
JM
1997 case DPP_PA_PEER_DISCOVERY_RESP:
1998 wpas_dpp_rx_peer_disc_resp(wpa_s, src, buf, len);
1999 break;
500ed7f0
JM
2000 case DPP_PA_PKEX_EXCHANGE_REQ:
2001 wpas_dpp_rx_pkex_exchange_req(wpa_s, src, buf, len, freq);
2002 break;
2003 case DPP_PA_PKEX_EXCHANGE_RESP:
2004 wpas_dpp_rx_pkex_exchange_resp(wpa_s, src, buf, len, freq);
2005 break;
2006 case DPP_PA_PKEX_COMMIT_REVEAL_REQ:
4be5bc98
JM
2007 wpas_dpp_rx_pkex_commit_reveal_req(wpa_s, src, hdr, buf, len,
2008 freq);
500ed7f0
JM
2009 break;
2010 case DPP_PA_PKEX_COMMIT_REVEAL_RESP:
4be5bc98
JM
2011 wpas_dpp_rx_pkex_commit_reveal_resp(wpa_s, src, hdr, buf, len,
2012 freq);
500ed7f0 2013 break;
30d27b04
JM
2014 default:
2015 wpa_printf(MSG_DEBUG,
2016 "DPP: Ignored unsupported frame subtype %d", type);
2017 break;
2018 }
29ab69e4
JM
2019
2020 if (wpa_s->dpp_pkex)
2021 pkex_t = wpa_s->dpp_pkex->t;
2022 else if (wpa_s->dpp_pkex_bi)
2023 pkex_t = wpa_s->dpp_pkex_bi->pkex_t;
2024 else
2025 pkex_t = 0;
2026 if (pkex_t >= PKEX_COUNTER_T_LIMIT) {
2027 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_PKEX_T_LIMIT "id=0");
2028 wpas_dpp_pkex_remove(wpa_s, "*");
2029 }
30d27b04
JM
2030}
2031
2032
461d39af
JM
2033static struct wpabuf *
2034wpas_dpp_gas_req_handler(void *ctx, const u8 *sa, const u8 *query,
2035 size_t query_len)
2036{
2037 struct wpa_supplicant *wpa_s = ctx;
2038 struct dpp_authentication *auth = wpa_s->dpp_auth;
2039 struct wpabuf *resp;
2040
2041 wpa_printf(MSG_DEBUG, "DPP: GAS request from " MACSTR,
2042 MAC2STR(sa));
2043 if (!auth || !auth->auth_success ||
2044 os_memcmp(sa, auth->peer_mac_addr, ETH_ALEN) != 0) {
2045 wpa_printf(MSG_DEBUG, "DPP: No matching exchange in progress");
2046 return NULL;
2047 }
2048 wpa_hexdump(MSG_DEBUG,
2049 "DPP: Received Configuration Request (GAS Query Request)",
2050 query, query_len);
fd920954
JM
2051 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_REQ_RX "src=" MACSTR,
2052 MAC2STR(sa));
461d39af
JM
2053 resp = dpp_conf_req_rx(auth, query, query_len);
2054 if (!resp)
2055 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
82feacce 2056 auth->conf_resp = resp;
461d39af
JM
2057 return resp;
2058}
2059
2060
2061static void
2062wpas_dpp_gas_status_handler(void *ctx, struct wpabuf *resp, int ok)
2063{
2064 struct wpa_supplicant *wpa_s = ctx;
2065 struct dpp_authentication *auth = wpa_s->dpp_auth;
2066
2067 if (!auth) {
2068 wpabuf_free(resp);
2069 return;
2070 }
82feacce
JM
2071 if (auth->conf_resp != resp) {
2072 wpa_printf(MSG_DEBUG,
2073 "DPP: Ignore GAS status report (ok=%d) for unknown response",
2074 ok);
2075 wpabuf_free(resp);
2076 return;
2077 }
461d39af
JM
2078
2079 wpa_printf(MSG_DEBUG, "DPP: Configuration exchange completed (ok=%d)",
2080 ok);
2081 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
95b0104a 2082 eloop_cancel_timeout(wpas_dpp_auth_resp_retry_timeout, wpa_s, NULL);
461d39af
JM
2083 offchannel_send_action_done(wpa_s);
2084 wpas_dpp_listen_stop(wpa_s);
2085 if (ok)
2086 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_SENT);
2087 else
2088 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_CONF_FAILED);
2089 dpp_auth_deinit(wpa_s->dpp_auth);
2090 wpa_s->dpp_auth = NULL;
2091 wpabuf_free(resp);
2092}
2093
2094
2095static unsigned int wpas_dpp_next_configurator_id(struct wpa_supplicant *wpa_s)
2096{
2097 struct dpp_configurator *conf;
2098 unsigned int max_id = 0;
2099
2100 dl_list_for_each(conf, &wpa_s->dpp_configurator,
2101 struct dpp_configurator, list) {
2102 if (conf->id > max_id)
2103 max_id = conf->id;
2104 }
2105 return max_id + 1;
2106}
2107
2108
2109int wpas_dpp_configurator_add(struct wpa_supplicant *wpa_s, const char *cmd)
2110{
c77e2ff0 2111 char *curve = NULL;
461d39af
JM
2112 char *key = NULL;
2113 u8 *privkey = NULL;
2114 size_t privkey_len = 0;
2115 int ret = -1;
2116 struct dpp_configurator *conf = NULL;
2117
461d39af
JM
2118 curve = get_param(cmd, " curve=");
2119 key = get_param(cmd, " key=");
2120
2121 if (key) {
2122 privkey_len = os_strlen(key) / 2;
2123 privkey = os_malloc(privkey_len);
2124 if (!privkey ||
2125 hexstr2bin(key, privkey, privkey_len) < 0)
2126 goto fail;
2127 }
2128
2129 conf = dpp_keygen_configurator(curve, privkey, privkey_len);
2130 if (!conf)
2131 goto fail;
2132
461d39af
JM
2133 conf->id = wpas_dpp_next_configurator_id(wpa_s);
2134 dl_list_add(&wpa_s->dpp_configurator, &conf->list);
2135 ret = conf->id;
2136 conf = NULL;
2137fail:
2138 os_free(curve);
461d39af
JM
2139 str_clear_free(key);
2140 bin_clear_free(privkey, privkey_len);
2141 dpp_configurator_free(conf);
2142 return ret;
2143}
2144
2145
2146static int dpp_configurator_del(struct wpa_supplicant *wpa_s, unsigned int id)
2147{
2148 struct dpp_configurator *conf, *tmp;
2149 int found = 0;
2150
2151 dl_list_for_each_safe(conf, tmp, &wpa_s->dpp_configurator,
2152 struct dpp_configurator, list) {
2153 if (id && conf->id != id)
2154 continue;
2155 found = 1;
2156 dl_list_del(&conf->list);
2157 dpp_configurator_free(conf);
2158 }
2159
2160 if (id == 0)
2161 return 0; /* flush succeeds regardless of entries found */
2162 return found ? 0 : -1;
2163}
2164
2165
2166int wpas_dpp_configurator_remove(struct wpa_supplicant *wpa_s, const char *id)
2167{
2168 unsigned int id_val;
2169
2170 if (os_strcmp(id, "*") == 0) {
2171 id_val = 0;
2172 } else {
2173 id_val = atoi(id);
2174 if (id_val == 0)
2175 return -1;
2176 }
2177
2178 return dpp_configurator_del(wpa_s, id_val);
2179}
2180
2181
f522bb23
JM
2182int wpas_dpp_configurator_sign(struct wpa_supplicant *wpa_s, const char *cmd)
2183{
2184 struct dpp_authentication *auth;
2185 int ret = -1;
2186 char *curve = NULL;
2187
2188 auth = os_zalloc(sizeof(*auth));
2189 if (!auth)
2190 return -1;
2191
2192 curve = get_param(cmd, " curve=");
2193 wpas_dpp_set_configurator(wpa_s, auth, cmd);
2194
a2588be8 2195 if (dpp_configurator_own_config(auth, curve, 0) == 0) {
f522bb23
JM
2196 wpas_dpp_handle_config_obj(wpa_s, auth);
2197 ret = 0;
2198 }
2199
2200 dpp_auth_deinit(auth);
2201 os_free(curve);
2202
2203 return ret;
2204}
2205
2206
a0d5c56f
JM
2207static void
2208wpas_dpp_tx_introduction_status(struct wpa_supplicant *wpa_s,
2209 unsigned int freq, const u8 *dst,
2210 const u8 *src, const u8 *bssid,
2211 const u8 *data, size_t data_len,
2212 enum offchannel_send_action_result result)
2213{
af48810b
JM
2214 const char *res_txt;
2215
2216 res_txt = result == OFFCHANNEL_SEND_ACTION_SUCCESS ? "SUCCESS" :
2217 (result == OFFCHANNEL_SEND_ACTION_NO_ACK ? "no-ACK" :
2218 "FAILED");
a0d5c56f
JM
2219 wpa_printf(MSG_DEBUG, "DPP: TX status: freq=%u dst=" MACSTR
2220 " result=%s (DPP Peer Discovery Request)",
af48810b
JM
2221 freq, MAC2STR(dst), res_txt);
2222 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX_STATUS "dst=" MACSTR
2223 " freq=%u result=%s", MAC2STR(dst), freq, res_txt);
a0d5c56f
JM
2224 /* TODO: Time out wait for response more quickly in error cases? */
2225}
2226
2227
2228int wpas_dpp_check_connect(struct wpa_supplicant *wpa_s, struct wpa_ssid *ssid,
2229 struct wpa_bss *bss)
2230{
2231 struct os_time now;
2232 struct wpabuf *msg;
2233 unsigned int wait_time;
2234
2235 if (!(ssid->key_mgmt & WPA_KEY_MGMT_DPP) || !bss)
2236 return 0; /* Not using DPP AKM - continue */
2237 if (wpa_sm_pmksa_exists(wpa_s->wpa, bss->bssid, ssid))
2238 return 0; /* PMKSA exists for DPP AKM - continue */
2239
2240 if (!ssid->dpp_connector || !ssid->dpp_netaccesskey ||
2241 !ssid->dpp_csign) {
2242 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_MISSING_CONNECTOR
2243 "missing %s",
2244 !ssid->dpp_connector ? "Connector" :
2245 (!ssid->dpp_netaccesskey ? "netAccessKey" :
2246 "C-sign-key"));
2247 return -1;
2248 }
2249
2250 os_get_time(&now);
2251
a0d5c56f 2252 if (ssid->dpp_netaccesskey_expiry &&
3ca4be1e 2253 (os_time_t) ssid->dpp_netaccesskey_expiry < now.sec) {
a0d5c56f
JM
2254 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_MISSING_CONNECTOR
2255 "netAccessKey expired");
2256 return -1;
2257 }
2258
2259 wpa_printf(MSG_DEBUG,
2260 "DPP: Starting network introduction protocol to derive PMKSA for "
2261 MACSTR, MAC2STR(bss->bssid));
2262
2263 msg = dpp_alloc_msg(DPP_PA_PEER_DISCOVERY_REQ,
85fd8263 2264 5 + 4 + os_strlen(ssid->dpp_connector));
a0d5c56f
JM
2265 if (!msg)
2266 return -1;
2267
a306ed5a
JM
2268#ifdef CONFIG_TESTING_OPTIONS
2269 if (dpp_test == DPP_TEST_NO_TRANSACTION_ID_PEER_DISC_REQ) {
2270 wpa_printf(MSG_INFO, "DPP: TESTING - no Transaction ID");
2271 goto skip_trans_id;
2272 }
55c6c858
JM
2273 if (dpp_test == DPP_TEST_INVALID_TRANSACTION_ID_PEER_DISC_REQ) {
2274 wpa_printf(MSG_INFO, "DPP: TESTING - invalid Transaction ID");
2275 wpabuf_put_le16(msg, DPP_ATTR_TRANSACTION_ID);
2276 wpabuf_put_le16(msg, 0);
2277 goto skip_trans_id;
2278 }
a306ed5a
JM
2279#endif /* CONFIG_TESTING_OPTIONS */
2280
85fd8263
JM
2281 /* Transaction ID */
2282 wpabuf_put_le16(msg, DPP_ATTR_TRANSACTION_ID);
2283 wpabuf_put_le16(msg, 1);
2284 wpabuf_put_u8(msg, TRANSACTION_ID);
2285
a306ed5a
JM
2286#ifdef CONFIG_TESTING_OPTIONS
2287skip_trans_id:
2288 if (dpp_test == DPP_TEST_NO_CONNECTOR_PEER_DISC_REQ) {
2289 wpa_printf(MSG_INFO, "DPP: TESTING - no Connector");
2290 goto skip_connector;
2291 }
4b8de0c9
JM
2292 if (dpp_test == DPP_TEST_INVALID_CONNECTOR_PEER_DISC_REQ) {
2293 char *connector;
2294
2295 wpa_printf(MSG_INFO, "DPP: TESTING - invalid Connector");
2296 connector = dpp_corrupt_connector_signature(
2297 ssid->dpp_connector);
2298 if (!connector) {
2299 wpabuf_free(msg);
2300 return -1;
2301 }
2302 wpabuf_put_le16(msg, DPP_ATTR_CONNECTOR);
2303 wpabuf_put_le16(msg, os_strlen(connector));
2304 wpabuf_put_str(msg, connector);
2305 os_free(connector);
2306 goto skip_connector;
2307 }
a306ed5a
JM
2308#endif /* CONFIG_TESTING_OPTIONS */
2309
a0d5c56f
JM
2310 /* DPP Connector */
2311 wpabuf_put_le16(msg, DPP_ATTR_CONNECTOR);
2312 wpabuf_put_le16(msg, os_strlen(ssid->dpp_connector));
2313 wpabuf_put_str(msg, ssid->dpp_connector);
2314
a306ed5a
JM
2315#ifdef CONFIG_TESTING_OPTIONS
2316skip_connector:
2317#endif /* CONFIG_TESTING_OPTIONS */
2318
a0d5c56f
JM
2319 /* TODO: Timeout on AP response */
2320 wait_time = wpa_s->max_remain_on_chan;
2321 if (wait_time > 2000)
2322 wait_time = 2000;
af48810b
JM
2323 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR " freq=%u type=%d",
2324 MAC2STR(bss->bssid), bss->freq, DPP_PA_PEER_DISCOVERY_REQ);
a0d5c56f
JM
2325 offchannel_send_action(wpa_s, bss->freq, bss->bssid, wpa_s->own_addr,
2326 broadcast,
2327 wpabuf_head(msg), wpabuf_len(msg),
2328 wait_time, wpas_dpp_tx_introduction_status, 0);
2329 wpabuf_free(msg);
2330
2331 /* Request this connection attempt to terminate - new one will be
2332 * started when network introduction protocol completes */
2333 os_memcpy(wpa_s->dpp_intro_bssid, bss->bssid, ETH_ALEN);
2334 wpa_s->dpp_intro_network = ssid;
2335 return 1;
2336}
2337
2338
500ed7f0
JM
2339int wpas_dpp_pkex_add(struct wpa_supplicant *wpa_s, const char *cmd)
2340{
2341 struct dpp_bootstrap_info *own_bi;
2342 const char *pos, *end;
2343 unsigned int wait_time;
2344
2345 pos = os_strstr(cmd, " own=");
2346 if (!pos)
2347 return -1;
2348 pos += 5;
2349 own_bi = dpp_bootstrap_get_id(wpa_s, atoi(pos));
2350 if (!own_bi) {
2351 wpa_printf(MSG_DEBUG,
2352 "DPP: Identified bootstrap info not found");
2353 return -1;
2354 }
2355 if (own_bi->type != DPP_BOOTSTRAP_PKEX) {
2356 wpa_printf(MSG_DEBUG,
2357 "DPP: Identified bootstrap info not for PKEX");
2358 return -1;
2359 }
2360 wpa_s->dpp_pkex_bi = own_bi;
29ab69e4 2361 own_bi->pkex_t = 0; /* clear pending errors on new code */
500ed7f0
JM
2362
2363 os_free(wpa_s->dpp_pkex_identifier);
2364 wpa_s->dpp_pkex_identifier = NULL;
2365 pos = os_strstr(cmd, " identifier=");
2366 if (pos) {
2367 pos += 12;
2368 end = os_strchr(pos, ' ');
2369 if (!end)
2370 return -1;
2371 wpa_s->dpp_pkex_identifier = os_malloc(end - pos + 1);
2372 if (!wpa_s->dpp_pkex_identifier)
2373 return -1;
2374 os_memcpy(wpa_s->dpp_pkex_identifier, pos, end - pos);
2375 wpa_s->dpp_pkex_identifier[end - pos] = '\0';
2376 }
2377
2378 pos = os_strstr(cmd, " code=");
2379 if (!pos)
2380 return -1;
2381 os_free(wpa_s->dpp_pkex_code);
2382 wpa_s->dpp_pkex_code = os_strdup(pos + 6);
2383 if (!wpa_s->dpp_pkex_code)
2384 return -1;
2385
2386 if (os_strstr(cmd, " init=1")) {
00d2d13d 2387 struct dpp_pkex *pkex;
500ed7f0
JM
2388 struct wpabuf *msg;
2389
2390 wpa_printf(MSG_DEBUG, "DPP: Initiating PKEX");
2391 dpp_pkex_free(wpa_s->dpp_pkex);
219d4c9f 2392 wpa_s->dpp_pkex = dpp_pkex_init(wpa_s, own_bi, wpa_s->own_addr,
500ed7f0
JM
2393 wpa_s->dpp_pkex_identifier,
2394 wpa_s->dpp_pkex_code);
00d2d13d
JM
2395 pkex = wpa_s->dpp_pkex;
2396 if (!pkex)
500ed7f0
JM
2397 return -1;
2398
00d2d13d 2399 msg = pkex->exchange_req;
500ed7f0
JM
2400 wait_time = wpa_s->max_remain_on_chan;
2401 if (wait_time > 2000)
2402 wait_time = 2000;
00d2d13d
JM
2403 /* TODO: Support for 5 GHz channels */
2404 pkex->freq = 2437;
af48810b
JM
2405 wpa_msg(wpa_s, MSG_INFO, DPP_EVENT_TX "dst=" MACSTR
2406 " freq=%u type=%d",
00d2d13d
JM
2407 MAC2STR(broadcast), pkex->freq,
2408 DPP_PA_PKEX_EXCHANGE_REQ);
2409 offchannel_send_action(wpa_s, pkex->freq, broadcast,
2410 wpa_s->own_addr, broadcast,
500ed7f0
JM
2411 wpabuf_head(msg), wpabuf_len(msg),
2412 wait_time, wpas_dpp_tx_pkex_status, 0);
00d2d13d
JM
2413 if (wait_time == 0)
2414 wait_time = 2000;
2415 pkex->exch_req_wait_time = wait_time;
2416 pkex->exch_req_tries = 1;
500ed7f0
JM
2417 }
2418
2419 /* TODO: Support multiple PKEX info entries */
2420
2421 os_free(wpa_s->dpp_pkex_auth_cmd);
2422 wpa_s->dpp_pkex_auth_cmd = os_strdup(cmd);
2423
2424 return 1;
2425}
2426
2427
2428int wpas_dpp_pkex_remove(struct wpa_supplicant *wpa_s, const char *id)
2429{
2430 unsigned int id_val;
2431
2432 if (os_strcmp(id, "*") == 0) {
2433 id_val = 0;
2434 } else {
2435 id_val = atoi(id);
2436 if (id_val == 0)
2437 return -1;
2438 }
2439
2440 if ((id_val != 0 && id_val != 1) || !wpa_s->dpp_pkex_code)
2441 return -1;
2442
2443 /* TODO: Support multiple PKEX entries */
2444 os_free(wpa_s->dpp_pkex_code);
2445 wpa_s->dpp_pkex_code = NULL;
2446 os_free(wpa_s->dpp_pkex_identifier);
2447 wpa_s->dpp_pkex_identifier = NULL;
2448 os_free(wpa_s->dpp_pkex_auth_cmd);
2449 wpa_s->dpp_pkex_auth_cmd = NULL;
2450 wpa_s->dpp_pkex_bi = NULL;
2451 /* TODO: Remove dpp_pkex only if it is for the identified PKEX code */
2452 dpp_pkex_free(wpa_s->dpp_pkex);
2453 wpa_s->dpp_pkex = NULL;
2454 return 0;
2455}
2456
2457
c1d37739
JM
2458void wpas_dpp_stop(struct wpa_supplicant *wpa_s)
2459{
2460 dpp_auth_deinit(wpa_s->dpp_auth);
2461 wpa_s->dpp_auth = NULL;
ed62d401
JM
2462 dpp_pkex_free(wpa_s->dpp_pkex);
2463 wpa_s->dpp_pkex = NULL;
1866dfb5
JM
2464 if (wpa_s->dpp_gas_client && wpa_s->dpp_gas_dialog_token >= 0)
2465 gas_query_stop(wpa_s->gas, wpa_s->dpp_gas_dialog_token);
c1d37739
JM
2466}
2467
2468
be27e185
JM
2469int wpas_dpp_init(struct wpa_supplicant *wpa_s)
2470{
461d39af
JM
2471 u8 adv_proto_id[7];
2472
2473 adv_proto_id[0] = WLAN_EID_VENDOR_SPECIFIC;
2474 adv_proto_id[1] = 5;
2475 WPA_PUT_BE24(&adv_proto_id[2], OUI_WFA);
2476 adv_proto_id[5] = DPP_OUI_TYPE;
2477 adv_proto_id[6] = 0x01;
2478
2479 if (gas_server_register(wpa_s->gas_server, adv_proto_id,
2480 sizeof(adv_proto_id), wpas_dpp_gas_req_handler,
2481 wpas_dpp_gas_status_handler, wpa_s) < 0)
2482 return -1;
be27e185 2483 dl_list_init(&wpa_s->dpp_bootstrap);
461d39af 2484 dl_list_init(&wpa_s->dpp_configurator);
be27e185
JM
2485 wpa_s->dpp_init_done = 1;
2486 return 0;
2487}
2488
2489
2490void wpas_dpp_deinit(struct wpa_supplicant *wpa_s)
2491{
461d39af
JM
2492#ifdef CONFIG_TESTING_OPTIONS
2493 os_free(wpa_s->dpp_config_obj_override);
2494 wpa_s->dpp_config_obj_override = NULL;
2495 os_free(wpa_s->dpp_discovery_override);
2496 wpa_s->dpp_discovery_override = NULL;
2497 os_free(wpa_s->dpp_groups_override);
2498 wpa_s->dpp_groups_override = NULL;
461d39af
JM
2499 wpa_s->dpp_ignore_netaccesskey_mismatch = 0;
2500#endif /* CONFIG_TESTING_OPTIONS */
be27e185
JM
2501 if (!wpa_s->dpp_init_done)
2502 return;
00d2d13d 2503 eloop_cancel_timeout(wpas_dpp_pkex_retry_timeout, wpa_s, NULL);
30d27b04 2504 eloop_cancel_timeout(wpas_dpp_reply_wait_timeout, wpa_s, NULL);
f97ace34 2505 eloop_cancel_timeout(wpas_dpp_init_timeout, wpa_s, NULL);
95b0104a 2506 eloop_cancel_timeout(wpas_dpp_auth_resp_retry_timeout, wpa_s, NULL);
30d27b04
JM
2507 offchannel_send_action_done(wpa_s);
2508 wpas_dpp_listen_stop(wpa_s);
be27e185 2509 dpp_bootstrap_del(wpa_s, 0);
461d39af 2510 dpp_configurator_del(wpa_s, 0);
fa5c9074 2511 wpas_dpp_stop(wpa_s);
500ed7f0 2512 wpas_dpp_pkex_remove(wpa_s, "*");
a0d5c56f 2513 os_memset(wpa_s->dpp_intro_bssid, 0, ETH_ALEN);
b65b22d6
JM
2514 os_free(wpa_s->dpp_configurator_params);
2515 wpa_s->dpp_configurator_params = NULL;
be27e185 2516}