]> git.ipfire.org Git - thirdparty/hostap.git/blob - wpa_supplicant/config.c
1bc798b89347bbbffa5b6f09b4297ef17a18d95d
[thirdparty/hostap.git] / wpa_supplicant / config.c
1 /*
2 * WPA Supplicant / Configuration parser and common functions
3 * Copyright (c) 2003-2019, Jouni Malinen <j@w1.fi>
4 *
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
7 */
8
9 #include "includes.h"
10
11 #include "common.h"
12 #include "utils/uuid.h"
13 #include "utils/ip_addr.h"
14 #include "common/ieee802_1x_defs.h"
15 #include "common/sae.h"
16 #include "crypto/sha1.h"
17 #include "rsn_supp/wpa.h"
18 #include "eap_peer/eap.h"
19 #include "p2p/p2p.h"
20 #include "fst/fst.h"
21 #include "config.h"
22
23
24 #if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
25 #define NO_CONFIG_WRITE
26 #endif
27
28 /*
29 * Structure for network configuration parsing. This data is used to implement
30 * a generic parser for each network block variable. The table of configuration
31 * variables is defined below in this file (ssid_fields[]).
32 */
33 struct parse_data {
34 /* Configuration variable name */
35 char *name;
36
37 /* Parser function for this variable. The parser functions return 0 or 1
38 * to indicate success. Value 0 indicates that the parameter value may
39 * have changed while value 1 means that the value did not change.
40 * Error cases (failure to parse the string) are indicated by returning
41 * -1. */
42 int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
43 int line, const char *value);
44
45 #ifndef NO_CONFIG_WRITE
46 /* Writer function (i.e., to get the variable in text format from
47 * internal presentation). */
48 char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
49 #endif /* NO_CONFIG_WRITE */
50
51 /* Variable specific parameters for the parser. */
52 void *param1, *param2, *param3, *param4;
53
54 /* 0 = this variable can be included in debug output and ctrl_iface
55 * 1 = this variable contains key/private data and it must not be
56 * included in debug output unless explicitly requested. In
57 * addition, this variable will not be readable through the
58 * ctrl_iface.
59 */
60 int key_data;
61 };
62
63
64 static int wpa_config_parse_str(const struct parse_data *data,
65 struct wpa_ssid *ssid,
66 int line, const char *value)
67 {
68 size_t res_len, *dst_len, prev_len;
69 char **dst, *tmp;
70
71 if (os_strcmp(value, "NULL") == 0) {
72 wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
73 data->name);
74 tmp = NULL;
75 res_len = 0;
76 goto set;
77 }
78
79 tmp = wpa_config_parse_string(value, &res_len);
80 if (tmp == NULL) {
81 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
82 line, data->name,
83 data->key_data ? "[KEY DATA REMOVED]" : value);
84 return -1;
85 }
86
87 if (data->key_data) {
88 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
89 (u8 *) tmp, res_len);
90 } else {
91 wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
92 (u8 *) tmp, res_len);
93 }
94
95 if (data->param3 && res_len < (size_t) data->param3) {
96 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
97 "min_len=%ld)", line, data->name,
98 (unsigned long) res_len, (long) data->param3);
99 os_free(tmp);
100 return -1;
101 }
102
103 if (data->param4 && res_len > (size_t) data->param4) {
104 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
105 "max_len=%ld)", line, data->name,
106 (unsigned long) res_len, (long) data->param4);
107 os_free(tmp);
108 return -1;
109 }
110
111 set:
112 dst = (char **) (((u8 *) ssid) + (long) data->param1);
113 dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
114
115 if (data->param2)
116 prev_len = *dst_len;
117 else if (*dst)
118 prev_len = os_strlen(*dst);
119 else
120 prev_len = 0;
121 if ((*dst == NULL && tmp == NULL) ||
122 (*dst && tmp && prev_len == res_len &&
123 os_memcmp(*dst, tmp, res_len) == 0)) {
124 /* No change to the previously configured value */
125 os_free(tmp);
126 return 1;
127 }
128
129 os_free(*dst);
130 *dst = tmp;
131 if (data->param2)
132 *dst_len = res_len;
133
134 return 0;
135 }
136
137
138 #ifndef NO_CONFIG_WRITE
139 static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
140 {
141 char *buf;
142
143 buf = os_malloc(len + 3);
144 if (buf == NULL)
145 return NULL;
146 buf[0] = '"';
147 os_memcpy(buf + 1, value, len);
148 buf[len + 1] = '"';
149 buf[len + 2] = '\0';
150
151 return buf;
152 }
153
154
155 static char * wpa_config_write_string_hex(const u8 *value, size_t len)
156 {
157 char *buf;
158
159 buf = os_zalloc(2 * len + 1);
160 if (buf == NULL)
161 return NULL;
162 wpa_snprintf_hex(buf, 2 * len + 1, value, len);
163
164 return buf;
165 }
166
167
168 static char * wpa_config_write_string(const u8 *value, size_t len)
169 {
170 if (value == NULL)
171 return NULL;
172
173 if (is_hex(value, len))
174 return wpa_config_write_string_hex(value, len);
175 else
176 return wpa_config_write_string_ascii(value, len);
177 }
178
179
180 static char * wpa_config_write_str(const struct parse_data *data,
181 struct wpa_ssid *ssid)
182 {
183 size_t len;
184 char **src;
185
186 src = (char **) (((u8 *) ssid) + (long) data->param1);
187 if (*src == NULL)
188 return NULL;
189
190 if (data->param2)
191 len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
192 else
193 len = os_strlen(*src);
194
195 return wpa_config_write_string((const u8 *) *src, len);
196 }
197 #endif /* NO_CONFIG_WRITE */
198
199
200 static int wpa_config_parse_int(const struct parse_data *data,
201 struct wpa_ssid *ssid,
202 int line, const char *value)
203 {
204 int val, *dst;
205 char *end;
206
207 dst = (int *) (((u8 *) ssid) + (long) data->param1);
208 val = strtol(value, &end, 0);
209 if (*end) {
210 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
211 line, value);
212 return -1;
213 }
214
215 if (*dst == val)
216 return 1;
217 *dst = val;
218 wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
219
220 if (data->param3 && *dst < (long) data->param3) {
221 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
222 "min_value=%ld)", line, data->name, *dst,
223 (long) data->param3);
224 *dst = (long) data->param3;
225 return -1;
226 }
227
228 if (data->param4 && *dst > (long) data->param4) {
229 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
230 "max_value=%ld)", line, data->name, *dst,
231 (long) data->param4);
232 *dst = (long) data->param4;
233 return -1;
234 }
235
236 return 0;
237 }
238
239
240 #ifndef NO_CONFIG_WRITE
241 static char * wpa_config_write_int(const struct parse_data *data,
242 struct wpa_ssid *ssid)
243 {
244 int *src, res;
245 char *value;
246
247 src = (int *) (((u8 *) ssid) + (long) data->param1);
248
249 value = os_malloc(20);
250 if (value == NULL)
251 return NULL;
252 res = os_snprintf(value, 20, "%d", *src);
253 if (os_snprintf_error(20, res)) {
254 os_free(value);
255 return NULL;
256 }
257 value[20 - 1] = '\0';
258 return value;
259 }
260 #endif /* NO_CONFIG_WRITE */
261
262
263 static int wpa_config_parse_addr_list(const struct parse_data *data,
264 int line, const char *value,
265 u8 **list, size_t *num, char *name,
266 u8 abort_on_error, u8 masked)
267 {
268 const char *pos;
269 u8 *buf, *n, addr[2 * ETH_ALEN];
270 size_t count;
271
272 buf = NULL;
273 count = 0;
274
275 pos = value;
276 while (pos && *pos) {
277 while (*pos == ' ')
278 pos++;
279
280 if (hwaddr_masked_aton(pos, addr, &addr[ETH_ALEN], masked)) {
281 if (abort_on_error || count == 0) {
282 wpa_printf(MSG_ERROR,
283 "Line %d: Invalid %s address '%s'",
284 line, name, value);
285 os_free(buf);
286 return -1;
287 }
288 /* continue anyway since this could have been from a
289 * truncated configuration file line */
290 wpa_printf(MSG_INFO,
291 "Line %d: Ignore likely truncated %s address '%s'",
292 line, name, pos);
293 } else {
294 n = os_realloc_array(buf, count + 1, 2 * ETH_ALEN);
295 if (n == NULL) {
296 os_free(buf);
297 return -1;
298 }
299 buf = n;
300 os_memmove(buf + 2 * ETH_ALEN, buf,
301 count * 2 * ETH_ALEN);
302 os_memcpy(buf, addr, 2 * ETH_ALEN);
303 count++;
304 wpa_printf(MSG_MSGDUMP,
305 "%s: addr=" MACSTR " mask=" MACSTR,
306 name, MAC2STR(addr),
307 MAC2STR(&addr[ETH_ALEN]));
308 }
309
310 pos = os_strchr(pos, ' ');
311 }
312
313 os_free(*list);
314 *list = buf;
315 *num = count;
316
317 return 0;
318 }
319
320
321 #ifndef NO_CONFIG_WRITE
322 static char * wpa_config_write_addr_list(const struct parse_data *data,
323 const u8 *list, size_t num, char *name)
324 {
325 char *value, *end, *pos;
326 int res;
327 size_t i;
328
329 if (list == NULL || num == 0)
330 return NULL;
331
332 value = os_malloc(2 * 20 * num);
333 if (value == NULL)
334 return NULL;
335 pos = value;
336 end = value + 2 * 20 * num;
337
338 for (i = num; i > 0; i--) {
339 const u8 *a = list + (i - 1) * 2 * ETH_ALEN;
340 const u8 *m = a + ETH_ALEN;
341
342 if (i < num)
343 *pos++ = ' ';
344 res = hwaddr_mask_txt(pos, end - pos, a, m);
345 if (res < 0) {
346 os_free(value);
347 return NULL;
348 }
349 pos += res;
350 }
351
352 return value;
353 }
354 #endif /* NO_CONFIG_WRITE */
355
356 static int wpa_config_parse_bssid(const struct parse_data *data,
357 struct wpa_ssid *ssid, int line,
358 const char *value)
359 {
360 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
361 os_strcmp(value, "any") == 0) {
362 ssid->bssid_set = 0;
363 wpa_printf(MSG_MSGDUMP, "BSSID any");
364 return 0;
365 }
366 if (hwaddr_aton(value, ssid->bssid)) {
367 wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
368 line, value);
369 return -1;
370 }
371 ssid->bssid_set = 1;
372 wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
373 return 0;
374 }
375
376
377 #ifndef NO_CONFIG_WRITE
378 static char * wpa_config_write_bssid(const struct parse_data *data,
379 struct wpa_ssid *ssid)
380 {
381 char *value;
382 int res;
383
384 if (!ssid->bssid_set)
385 return NULL;
386
387 value = os_malloc(20);
388 if (value == NULL)
389 return NULL;
390 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
391 if (os_snprintf_error(20, res)) {
392 os_free(value);
393 return NULL;
394 }
395 value[20 - 1] = '\0';
396 return value;
397 }
398 #endif /* NO_CONFIG_WRITE */
399
400
401 static int wpa_config_parse_bssid_hint(const struct parse_data *data,
402 struct wpa_ssid *ssid, int line,
403 const char *value)
404 {
405 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
406 os_strcmp(value, "any") == 0) {
407 ssid->bssid_hint_set = 0;
408 wpa_printf(MSG_MSGDUMP, "BSSID hint any");
409 return 0;
410 }
411 if (hwaddr_aton(value, ssid->bssid_hint)) {
412 wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID hint '%s'.",
413 line, value);
414 return -1;
415 }
416 ssid->bssid_hint_set = 1;
417 wpa_hexdump(MSG_MSGDUMP, "BSSID hint", ssid->bssid_hint, ETH_ALEN);
418 return 0;
419 }
420
421
422 #ifndef NO_CONFIG_WRITE
423 static char * wpa_config_write_bssid_hint(const struct parse_data *data,
424 struct wpa_ssid *ssid)
425 {
426 char *value;
427 int res;
428
429 if (!ssid->bssid_hint_set)
430 return NULL;
431
432 value = os_malloc(20);
433 if (!value)
434 return NULL;
435 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid_hint));
436 if (os_snprintf_error(20, res)) {
437 os_free(value);
438 return NULL;
439 }
440 return value;
441 }
442 #endif /* NO_CONFIG_WRITE */
443
444
445 static int wpa_config_parse_bssid_blacklist(const struct parse_data *data,
446 struct wpa_ssid *ssid, int line,
447 const char *value)
448 {
449 return wpa_config_parse_addr_list(data, line, value,
450 &ssid->bssid_blacklist,
451 &ssid->num_bssid_blacklist,
452 "bssid_blacklist", 1, 1);
453 }
454
455
456 #ifndef NO_CONFIG_WRITE
457 static char * wpa_config_write_bssid_blacklist(const struct parse_data *data,
458 struct wpa_ssid *ssid)
459 {
460 return wpa_config_write_addr_list(data, ssid->bssid_blacklist,
461 ssid->num_bssid_blacklist,
462 "bssid_blacklist");
463 }
464 #endif /* NO_CONFIG_WRITE */
465
466
467 static int wpa_config_parse_bssid_whitelist(const struct parse_data *data,
468 struct wpa_ssid *ssid, int line,
469 const char *value)
470 {
471 return wpa_config_parse_addr_list(data, line, value,
472 &ssid->bssid_whitelist,
473 &ssid->num_bssid_whitelist,
474 "bssid_whitelist", 1, 1);
475 }
476
477
478 #ifndef NO_CONFIG_WRITE
479 static char * wpa_config_write_bssid_whitelist(const struct parse_data *data,
480 struct wpa_ssid *ssid)
481 {
482 return wpa_config_write_addr_list(data, ssid->bssid_whitelist,
483 ssid->num_bssid_whitelist,
484 "bssid_whitelist");
485 }
486 #endif /* NO_CONFIG_WRITE */
487
488
489 static int wpa_config_parse_psk(const struct parse_data *data,
490 struct wpa_ssid *ssid, int line,
491 const char *value)
492 {
493 #ifdef CONFIG_EXT_PASSWORD
494 if (os_strncmp(value, "ext:", 4) == 0) {
495 str_clear_free(ssid->passphrase);
496 ssid->passphrase = NULL;
497 ssid->psk_set = 0;
498 os_free(ssid->ext_psk);
499 ssid->ext_psk = os_strdup(value + 4);
500 if (ssid->ext_psk == NULL)
501 return -1;
502 wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
503 ssid->ext_psk);
504 return 0;
505 }
506 #endif /* CONFIG_EXT_PASSWORD */
507
508 if (*value == '"') {
509 #ifndef CONFIG_NO_PBKDF2
510 const char *pos;
511 size_t len;
512
513 value++;
514 pos = os_strrchr(value, '"');
515 if (pos)
516 len = pos - value;
517 else
518 len = os_strlen(value);
519 if (len < 8 || len > 63) {
520 wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
521 "length %lu (expected: 8..63) '%s'.",
522 line, (unsigned long) len, value);
523 return -1;
524 }
525 wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
526 (u8 *) value, len);
527 if (has_ctrl_char((u8 *) value, len)) {
528 wpa_printf(MSG_ERROR,
529 "Line %d: Invalid passphrase character",
530 line);
531 return -1;
532 }
533 if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
534 os_memcmp(ssid->passphrase, value, len) == 0) {
535 /* No change to the previously configured value */
536 return 1;
537 }
538 ssid->psk_set = 0;
539 str_clear_free(ssid->passphrase);
540 ssid->passphrase = dup_binstr(value, len);
541 if (ssid->passphrase == NULL)
542 return -1;
543 return 0;
544 #else /* CONFIG_NO_PBKDF2 */
545 wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
546 "supported.", line);
547 return -1;
548 #endif /* CONFIG_NO_PBKDF2 */
549 }
550
551 if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
552 value[PMK_LEN * 2] != '\0') {
553 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
554 line, value);
555 return -1;
556 }
557
558 str_clear_free(ssid->passphrase);
559 ssid->passphrase = NULL;
560
561 ssid->psk_set = 1;
562 wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
563 return 0;
564 }
565
566
567 #ifndef NO_CONFIG_WRITE
568 static char * wpa_config_write_psk(const struct parse_data *data,
569 struct wpa_ssid *ssid)
570 {
571 #ifdef CONFIG_EXT_PASSWORD
572 if (ssid->ext_psk) {
573 size_t len = 4 + os_strlen(ssid->ext_psk) + 1;
574 char *buf = os_malloc(len);
575 int res;
576
577 if (buf == NULL)
578 return NULL;
579 res = os_snprintf(buf, len, "ext:%s", ssid->ext_psk);
580 if (os_snprintf_error(len, res)) {
581 os_free(buf);
582 buf = NULL;
583 }
584 return buf;
585 }
586 #endif /* CONFIG_EXT_PASSWORD */
587
588 if (ssid->passphrase)
589 return wpa_config_write_string_ascii(
590 (const u8 *) ssid->passphrase,
591 os_strlen(ssid->passphrase));
592
593 if (ssid->psk_set)
594 return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
595
596 return NULL;
597 }
598 #endif /* NO_CONFIG_WRITE */
599
600
601 static int wpa_config_parse_proto(const struct parse_data *data,
602 struct wpa_ssid *ssid, int line,
603 const char *value)
604 {
605 int val = 0, last, errors = 0;
606 char *start, *end, *buf;
607
608 buf = os_strdup(value);
609 if (buf == NULL)
610 return -1;
611 start = buf;
612
613 while (*start != '\0') {
614 while (*start == ' ' || *start == '\t')
615 start++;
616 if (*start == '\0')
617 break;
618 end = start;
619 while (*end != ' ' && *end != '\t' && *end != '\0')
620 end++;
621 last = *end == '\0';
622 *end = '\0';
623 if (os_strcmp(start, "WPA") == 0)
624 val |= WPA_PROTO_WPA;
625 else if (os_strcmp(start, "RSN") == 0 ||
626 os_strcmp(start, "WPA2") == 0)
627 val |= WPA_PROTO_RSN;
628 else if (os_strcmp(start, "OSEN") == 0)
629 val |= WPA_PROTO_OSEN;
630 else {
631 wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
632 line, start);
633 errors++;
634 }
635
636 if (last)
637 break;
638 start = end + 1;
639 }
640 os_free(buf);
641
642 if (val == 0) {
643 wpa_printf(MSG_ERROR,
644 "Line %d: no proto values configured.", line);
645 errors++;
646 }
647
648 if (!errors && ssid->proto == val)
649 return 1;
650 wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
651 ssid->proto = val;
652 return errors ? -1 : 0;
653 }
654
655
656 #ifndef NO_CONFIG_WRITE
657 static char * wpa_config_write_proto(const struct parse_data *data,
658 struct wpa_ssid *ssid)
659 {
660 int ret;
661 char *buf, *pos, *end;
662
663 pos = buf = os_zalloc(20);
664 if (buf == NULL)
665 return NULL;
666 end = buf + 20;
667
668 if (ssid->proto & WPA_PROTO_WPA) {
669 ret = os_snprintf(pos, end - pos, "%sWPA",
670 pos == buf ? "" : " ");
671 if (os_snprintf_error(end - pos, ret))
672 return buf;
673 pos += ret;
674 }
675
676 if (ssid->proto & WPA_PROTO_RSN) {
677 ret = os_snprintf(pos, end - pos, "%sRSN",
678 pos == buf ? "" : " ");
679 if (os_snprintf_error(end - pos, ret))
680 return buf;
681 pos += ret;
682 }
683
684 if (ssid->proto & WPA_PROTO_OSEN) {
685 ret = os_snprintf(pos, end - pos, "%sOSEN",
686 pos == buf ? "" : " ");
687 if (os_snprintf_error(end - pos, ret))
688 return buf;
689 pos += ret;
690 }
691
692 if (pos == buf) {
693 os_free(buf);
694 buf = NULL;
695 }
696
697 return buf;
698 }
699 #endif /* NO_CONFIG_WRITE */
700
701
702 static int wpa_config_parse_key_mgmt(const struct parse_data *data,
703 struct wpa_ssid *ssid, int line,
704 const char *value)
705 {
706 int val = 0, last, errors = 0;
707 char *start, *end, *buf;
708
709 buf = os_strdup(value);
710 if (buf == NULL)
711 return -1;
712 start = buf;
713
714 while (*start != '\0') {
715 while (*start == ' ' || *start == '\t')
716 start++;
717 if (*start == '\0')
718 break;
719 end = start;
720 while (*end != ' ' && *end != '\t' && *end != '\0')
721 end++;
722 last = *end == '\0';
723 *end = '\0';
724 if (os_strcmp(start, "WPA-PSK") == 0)
725 val |= WPA_KEY_MGMT_PSK;
726 else if (os_strcmp(start, "WPA-EAP") == 0)
727 val |= WPA_KEY_MGMT_IEEE8021X;
728 else if (os_strcmp(start, "IEEE8021X") == 0)
729 val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
730 else if (os_strcmp(start, "NONE") == 0)
731 val |= WPA_KEY_MGMT_NONE;
732 else if (os_strcmp(start, "WPA-NONE") == 0)
733 val |= WPA_KEY_MGMT_WPA_NONE;
734 #ifdef CONFIG_IEEE80211R
735 else if (os_strcmp(start, "FT-PSK") == 0)
736 val |= WPA_KEY_MGMT_FT_PSK;
737 else if (os_strcmp(start, "FT-EAP") == 0)
738 val |= WPA_KEY_MGMT_FT_IEEE8021X;
739 #ifdef CONFIG_SHA384
740 else if (os_strcmp(start, "FT-EAP-SHA384") == 0)
741 val |= WPA_KEY_MGMT_FT_IEEE8021X_SHA384;
742 #endif /* CONFIG_SHA384 */
743 #endif /* CONFIG_IEEE80211R */
744 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
745 val |= WPA_KEY_MGMT_PSK_SHA256;
746 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
747 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
748 #ifdef CONFIG_WPS
749 else if (os_strcmp(start, "WPS") == 0)
750 val |= WPA_KEY_MGMT_WPS;
751 #endif /* CONFIG_WPS */
752 #ifdef CONFIG_SAE
753 else if (os_strcmp(start, "SAE") == 0)
754 val |= WPA_KEY_MGMT_SAE;
755 else if (os_strcmp(start, "FT-SAE") == 0)
756 val |= WPA_KEY_MGMT_FT_SAE;
757 #endif /* CONFIG_SAE */
758 #ifdef CONFIG_HS20
759 else if (os_strcmp(start, "OSEN") == 0)
760 val |= WPA_KEY_MGMT_OSEN;
761 #endif /* CONFIG_HS20 */
762 #ifdef CONFIG_SUITEB
763 else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
764 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
765 #endif /* CONFIG_SUITEB */
766 #ifdef CONFIG_SUITEB192
767 else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
768 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
769 #endif /* CONFIG_SUITEB192 */
770 #ifdef CONFIG_FILS
771 else if (os_strcmp(start, "FILS-SHA256") == 0)
772 val |= WPA_KEY_MGMT_FILS_SHA256;
773 else if (os_strcmp(start, "FILS-SHA384") == 0)
774 val |= WPA_KEY_MGMT_FILS_SHA384;
775 #ifdef CONFIG_IEEE80211R
776 else if (os_strcmp(start, "FT-FILS-SHA256") == 0)
777 val |= WPA_KEY_MGMT_FT_FILS_SHA256;
778 else if (os_strcmp(start, "FT-FILS-SHA384") == 0)
779 val |= WPA_KEY_MGMT_FT_FILS_SHA384;
780 #endif /* CONFIG_IEEE80211R */
781 #endif /* CONFIG_FILS */
782 #ifdef CONFIG_OWE
783 else if (os_strcmp(start, "OWE") == 0)
784 val |= WPA_KEY_MGMT_OWE;
785 #endif /* CONFIG_OWE */
786 #ifdef CONFIG_DPP
787 else if (os_strcmp(start, "DPP") == 0)
788 val |= WPA_KEY_MGMT_DPP;
789 #endif /* CONFIG_DPP */
790 else {
791 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
792 line, start);
793 errors++;
794 }
795
796 if (last)
797 break;
798 start = end + 1;
799 }
800 os_free(buf);
801
802 if (val == 0) {
803 wpa_printf(MSG_ERROR,
804 "Line %d: no key_mgmt values configured.", line);
805 errors++;
806 }
807
808 if (!errors && ssid->key_mgmt == val)
809 return 1;
810 wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
811 ssid->key_mgmt = val;
812 return errors ? -1 : 0;
813 }
814
815
816 #ifndef NO_CONFIG_WRITE
817 static char * wpa_config_write_key_mgmt(const struct parse_data *data,
818 struct wpa_ssid *ssid)
819 {
820 char *buf, *pos, *end;
821 int ret;
822
823 pos = buf = os_zalloc(100);
824 if (buf == NULL)
825 return NULL;
826 end = buf + 100;
827
828 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
829 ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
830 pos == buf ? "" : " ");
831 if (os_snprintf_error(end - pos, ret)) {
832 end[-1] = '\0';
833 return buf;
834 }
835 pos += ret;
836 }
837
838 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
839 ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
840 pos == buf ? "" : " ");
841 if (os_snprintf_error(end - pos, ret)) {
842 end[-1] = '\0';
843 return buf;
844 }
845 pos += ret;
846 }
847
848 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
849 ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
850 pos == buf ? "" : " ");
851 if (os_snprintf_error(end - pos, ret)) {
852 end[-1] = '\0';
853 return buf;
854 }
855 pos += ret;
856 }
857
858 if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
859 ret = os_snprintf(pos, end - pos, "%sNONE",
860 pos == buf ? "" : " ");
861 if (os_snprintf_error(end - pos, ret)) {
862 end[-1] = '\0';
863 return buf;
864 }
865 pos += ret;
866 }
867
868 if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
869 ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
870 pos == buf ? "" : " ");
871 if (os_snprintf_error(end - pos, ret)) {
872 end[-1] = '\0';
873 return buf;
874 }
875 pos += ret;
876 }
877
878 #ifdef CONFIG_IEEE80211R
879 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK) {
880 ret = os_snprintf(pos, end - pos, "%sFT-PSK",
881 pos == buf ? "" : " ");
882 if (os_snprintf_error(end - pos, ret)) {
883 end[-1] = '\0';
884 return buf;
885 }
886 pos += ret;
887 }
888
889 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
890 ret = os_snprintf(pos, end - pos, "%sFT-EAP",
891 pos == buf ? "" : " ");
892 if (os_snprintf_error(end - pos, ret)) {
893 end[-1] = '\0';
894 return buf;
895 }
896 pos += ret;
897 }
898
899 #ifdef CONFIG_SHA384
900 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X_SHA384) {
901 ret = os_snprintf(pos, end - pos, "%sFT-EAP-SHA384",
902 pos == buf ? "" : " ");
903 if (os_snprintf_error(end - pos, ret)) {
904 end[-1] = '\0';
905 return buf;
906 }
907 pos += ret;
908 }
909 #endif /* CONFIG_SHA384 */
910 #endif /* CONFIG_IEEE80211R */
911
912 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
913 ret = os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
914 pos == buf ? "" : " ");
915 if (os_snprintf_error(end - pos, ret)) {
916 end[-1] = '\0';
917 return buf;
918 }
919 pos += ret;
920 }
921
922 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
923 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
924 pos == buf ? "" : " ");
925 if (os_snprintf_error(end - pos, ret)) {
926 end[-1] = '\0';
927 return buf;
928 }
929 pos += ret;
930 }
931
932 #ifdef CONFIG_WPS
933 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
934 ret = os_snprintf(pos, end - pos, "%sWPS",
935 pos == buf ? "" : " ");
936 if (os_snprintf_error(end - pos, ret)) {
937 end[-1] = '\0';
938 return buf;
939 }
940 pos += ret;
941 }
942 #endif /* CONFIG_WPS */
943
944 #ifdef CONFIG_SAE
945 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
946 ret = os_snprintf(pos, end - pos, "%sSAE",
947 pos == buf ? "" : " ");
948 if (os_snprintf_error(end - pos, ret)) {
949 end[-1] = '\0';
950 return buf;
951 }
952 pos += ret;
953 }
954
955 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_SAE) {
956 ret = os_snprintf(pos, end - pos, "%sFT-SAE",
957 pos == buf ? "" : " ");
958 if (os_snprintf_error(end - pos, ret)) {
959 end[-1] = '\0';
960 return buf;
961 }
962 pos += ret;
963 }
964 #endif /* CONFIG_SAE */
965
966 #ifdef CONFIG_HS20
967 if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN) {
968 ret = os_snprintf(pos, end - pos, "%sOSEN",
969 pos == buf ? "" : " ");
970 if (os_snprintf_error(end - pos, ret)) {
971 end[-1] = '\0';
972 return buf;
973 }
974 pos += ret;
975 }
976 #endif /* CONFIG_HS20 */
977
978 #ifdef CONFIG_SUITEB
979 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
980 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B",
981 pos == buf ? "" : " ");
982 if (os_snprintf_error(end - pos, ret)) {
983 end[-1] = '\0';
984 return buf;
985 }
986 pos += ret;
987 }
988 #endif /* CONFIG_SUITEB */
989
990 #ifdef CONFIG_SUITEB192
991 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
992 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B-192",
993 pos == buf ? "" : " ");
994 if (os_snprintf_error(end - pos, ret)) {
995 end[-1] = '\0';
996 return buf;
997 }
998 pos += ret;
999 }
1000 #endif /* CONFIG_SUITEB192 */
1001
1002 #ifdef CONFIG_FILS
1003 if (ssid->key_mgmt & WPA_KEY_MGMT_FILS_SHA256) {
1004 ret = os_snprintf(pos, end - pos, "%sFILS-SHA256",
1005 pos == buf ? "" : " ");
1006 if (os_snprintf_error(end - pos, ret)) {
1007 end[-1] = '\0';
1008 return buf;
1009 }
1010 pos += ret;
1011 }
1012 if (ssid->key_mgmt & WPA_KEY_MGMT_FILS_SHA384) {
1013 ret = os_snprintf(pos, end - pos, "%sFILS-SHA384",
1014 pos == buf ? "" : " ");
1015 if (os_snprintf_error(end - pos, ret)) {
1016 end[-1] = '\0';
1017 return buf;
1018 }
1019 pos += ret;
1020 }
1021 #ifdef CONFIG_IEEE80211R
1022 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_FILS_SHA256) {
1023 ret = os_snprintf(pos, end - pos, "%sFT-FILS-SHA256",
1024 pos == buf ? "" : " ");
1025 if (os_snprintf_error(end - pos, ret)) {
1026 end[-1] = '\0';
1027 return buf;
1028 }
1029 pos += ret;
1030 }
1031 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_FILS_SHA384) {
1032 ret = os_snprintf(pos, end - pos, "%sFT-FILS-SHA384",
1033 pos == buf ? "" : " ");
1034 if (os_snprintf_error(end - pos, ret)) {
1035 end[-1] = '\0';
1036 return buf;
1037 }
1038 pos += ret;
1039 }
1040 #endif /* CONFIG_IEEE80211R */
1041 #endif /* CONFIG_FILS */
1042
1043 #ifdef CONFIG_DPP
1044 if (ssid->key_mgmt & WPA_KEY_MGMT_DPP) {
1045 ret = os_snprintf(pos, end - pos, "%sDPP",
1046 pos == buf ? "" : " ");
1047 if (os_snprintf_error(end - pos, ret)) {
1048 end[-1] = '\0';
1049 return buf;
1050 }
1051 pos += ret;
1052 }
1053 #endif /* CONFIG_DPP */
1054
1055 #ifdef CONFIG_OWE
1056 if (ssid->key_mgmt & WPA_KEY_MGMT_OWE) {
1057 ret = os_snprintf(pos, end - pos, "%sOWE",
1058 pos == buf ? "" : " ");
1059 if (os_snprintf_error(end - pos, ret)) {
1060 end[-1] = '\0';
1061 return buf;
1062 }
1063 pos += ret;
1064 }
1065 #endif /* CONFIG_OWE */
1066
1067 if (pos == buf) {
1068 os_free(buf);
1069 buf = NULL;
1070 }
1071
1072 return buf;
1073 }
1074 #endif /* NO_CONFIG_WRITE */
1075
1076
1077 static int wpa_config_parse_cipher(int line, const char *value)
1078 {
1079 #ifdef CONFIG_NO_WPA
1080 return -1;
1081 #else /* CONFIG_NO_WPA */
1082 int val = wpa_parse_cipher(value);
1083 if (val < 0) {
1084 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
1085 line, value);
1086 return -1;
1087 }
1088 if (val == 0) {
1089 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
1090 line);
1091 return -1;
1092 }
1093 return val;
1094 #endif /* CONFIG_NO_WPA */
1095 }
1096
1097
1098 #ifndef NO_CONFIG_WRITE
1099 static char * wpa_config_write_cipher(int cipher)
1100 {
1101 #ifdef CONFIG_NO_WPA
1102 return NULL;
1103 #else /* CONFIG_NO_WPA */
1104 char *buf = os_zalloc(50);
1105 if (buf == NULL)
1106 return NULL;
1107
1108 if (wpa_write_ciphers(buf, buf + 50, cipher, " ") < 0) {
1109 os_free(buf);
1110 return NULL;
1111 }
1112
1113 return buf;
1114 #endif /* CONFIG_NO_WPA */
1115 }
1116 #endif /* NO_CONFIG_WRITE */
1117
1118
1119 static int wpa_config_parse_pairwise(const struct parse_data *data,
1120 struct wpa_ssid *ssid, int line,
1121 const char *value)
1122 {
1123 int val;
1124 val = wpa_config_parse_cipher(line, value);
1125 if (val == -1)
1126 return -1;
1127 if (val & ~WPA_ALLOWED_PAIRWISE_CIPHERS) {
1128 wpa_printf(MSG_ERROR, "Line %d: not allowed pairwise cipher "
1129 "(0x%x).", line, val);
1130 return -1;
1131 }
1132
1133 if (ssid->pairwise_cipher == val)
1134 return 1;
1135 wpa_printf(MSG_MSGDUMP, "pairwise: 0x%x", val);
1136 ssid->pairwise_cipher = val;
1137 return 0;
1138 }
1139
1140
1141 #ifndef NO_CONFIG_WRITE
1142 static char * wpa_config_write_pairwise(const struct parse_data *data,
1143 struct wpa_ssid *ssid)
1144 {
1145 return wpa_config_write_cipher(ssid->pairwise_cipher);
1146 }
1147 #endif /* NO_CONFIG_WRITE */
1148
1149
1150 static int wpa_config_parse_group(const struct parse_data *data,
1151 struct wpa_ssid *ssid, int line,
1152 const char *value)
1153 {
1154 int val;
1155 val = wpa_config_parse_cipher(line, value);
1156 if (val == -1)
1157 return -1;
1158
1159 /*
1160 * Backwards compatibility - filter out WEP ciphers that were previously
1161 * allowed.
1162 */
1163 val &= ~(WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40);
1164
1165 if (val & ~WPA_ALLOWED_GROUP_CIPHERS) {
1166 wpa_printf(MSG_ERROR, "Line %d: not allowed group cipher "
1167 "(0x%x).", line, val);
1168 return -1;
1169 }
1170
1171 if (ssid->group_cipher == val)
1172 return 1;
1173 wpa_printf(MSG_MSGDUMP, "group: 0x%x", val);
1174 ssid->group_cipher = val;
1175 return 0;
1176 }
1177
1178
1179 #ifndef NO_CONFIG_WRITE
1180 static char * wpa_config_write_group(const struct parse_data *data,
1181 struct wpa_ssid *ssid)
1182 {
1183 return wpa_config_write_cipher(ssid->group_cipher);
1184 }
1185 #endif /* NO_CONFIG_WRITE */
1186
1187
1188 static int wpa_config_parse_group_mgmt(const struct parse_data *data,
1189 struct wpa_ssid *ssid, int line,
1190 const char *value)
1191 {
1192 int val;
1193
1194 val = wpa_config_parse_cipher(line, value);
1195 if (val == -1)
1196 return -1;
1197
1198 if (val & ~WPA_ALLOWED_GROUP_MGMT_CIPHERS) {
1199 wpa_printf(MSG_ERROR,
1200 "Line %d: not allowed group management cipher (0x%x).",
1201 line, val);
1202 return -1;
1203 }
1204
1205 if (ssid->group_mgmt_cipher == val)
1206 return 1;
1207 wpa_printf(MSG_MSGDUMP, "group_mgmt: 0x%x", val);
1208 ssid->group_mgmt_cipher = val;
1209 return 0;
1210 }
1211
1212
1213 #ifndef NO_CONFIG_WRITE
1214 static char * wpa_config_write_group_mgmt(const struct parse_data *data,
1215 struct wpa_ssid *ssid)
1216 {
1217 return wpa_config_write_cipher(ssid->group_mgmt_cipher);
1218 }
1219 #endif /* NO_CONFIG_WRITE */
1220
1221
1222 static int wpa_config_parse_auth_alg(const struct parse_data *data,
1223 struct wpa_ssid *ssid, int line,
1224 const char *value)
1225 {
1226 int val = 0, last, errors = 0;
1227 char *start, *end, *buf;
1228
1229 buf = os_strdup(value);
1230 if (buf == NULL)
1231 return -1;
1232 start = buf;
1233
1234 while (*start != '\0') {
1235 while (*start == ' ' || *start == '\t')
1236 start++;
1237 if (*start == '\0')
1238 break;
1239 end = start;
1240 while (*end != ' ' && *end != '\t' && *end != '\0')
1241 end++;
1242 last = *end == '\0';
1243 *end = '\0';
1244 if (os_strcmp(start, "OPEN") == 0)
1245 val |= WPA_AUTH_ALG_OPEN;
1246 else if (os_strcmp(start, "SHARED") == 0)
1247 val |= WPA_AUTH_ALG_SHARED;
1248 else if (os_strcmp(start, "LEAP") == 0)
1249 val |= WPA_AUTH_ALG_LEAP;
1250 else {
1251 wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'",
1252 line, start);
1253 errors++;
1254 }
1255
1256 if (last)
1257 break;
1258 start = end + 1;
1259 }
1260 os_free(buf);
1261
1262 if (val == 0) {
1263 wpa_printf(MSG_ERROR,
1264 "Line %d: no auth_alg values configured.", line);
1265 errors++;
1266 }
1267
1268 if (!errors && ssid->auth_alg == val)
1269 return 1;
1270 wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val);
1271 ssid->auth_alg = val;
1272 return errors ? -1 : 0;
1273 }
1274
1275
1276 #ifndef NO_CONFIG_WRITE
1277 static char * wpa_config_write_auth_alg(const struct parse_data *data,
1278 struct wpa_ssid *ssid)
1279 {
1280 char *buf, *pos, *end;
1281 int ret;
1282
1283 pos = buf = os_zalloc(30);
1284 if (buf == NULL)
1285 return NULL;
1286 end = buf + 30;
1287
1288 if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) {
1289 ret = os_snprintf(pos, end - pos, "%sOPEN",
1290 pos == buf ? "" : " ");
1291 if (os_snprintf_error(end - pos, ret)) {
1292 end[-1] = '\0';
1293 return buf;
1294 }
1295 pos += ret;
1296 }
1297
1298 if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) {
1299 ret = os_snprintf(pos, end - pos, "%sSHARED",
1300 pos == buf ? "" : " ");
1301 if (os_snprintf_error(end - pos, ret)) {
1302 end[-1] = '\0';
1303 return buf;
1304 }
1305 pos += ret;
1306 }
1307
1308 if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) {
1309 ret = os_snprintf(pos, end - pos, "%sLEAP",
1310 pos == buf ? "" : " ");
1311 if (os_snprintf_error(end - pos, ret)) {
1312 end[-1] = '\0';
1313 return buf;
1314 }
1315 pos += ret;
1316 }
1317
1318 if (pos == buf) {
1319 os_free(buf);
1320 buf = NULL;
1321 }
1322
1323 return buf;
1324 }
1325 #endif /* NO_CONFIG_WRITE */
1326
1327
1328 static int * wpa_config_parse_int_array(const char *value)
1329 {
1330 int *freqs;
1331 size_t used, len;
1332 const char *pos;
1333
1334 used = 0;
1335 len = 10;
1336 freqs = os_calloc(len + 1, sizeof(int));
1337 if (freqs == NULL)
1338 return NULL;
1339
1340 pos = value;
1341 while (pos) {
1342 while (*pos == ' ')
1343 pos++;
1344 if (used == len) {
1345 int *n;
1346 size_t i;
1347 n = os_realloc_array(freqs, len * 2 + 1, sizeof(int));
1348 if (n == NULL) {
1349 os_free(freqs);
1350 return NULL;
1351 }
1352 for (i = len; i <= len * 2; i++)
1353 n[i] = 0;
1354 freqs = n;
1355 len *= 2;
1356 }
1357
1358 freqs[used] = atoi(pos);
1359 if (freqs[used] == 0)
1360 break;
1361 used++;
1362 pos = os_strchr(pos + 1, ' ');
1363 }
1364
1365 return freqs;
1366 }
1367
1368
1369 static int wpa_config_parse_scan_freq(const struct parse_data *data,
1370 struct wpa_ssid *ssid, int line,
1371 const char *value)
1372 {
1373 int *freqs;
1374
1375 freqs = wpa_config_parse_int_array(value);
1376 if (freqs == NULL)
1377 return -1;
1378 if (freqs[0] == 0) {
1379 os_free(freqs);
1380 freqs = NULL;
1381 }
1382 os_free(ssid->scan_freq);
1383 ssid->scan_freq = freqs;
1384
1385 return 0;
1386 }
1387
1388
1389 static int wpa_config_parse_freq_list(const struct parse_data *data,
1390 struct wpa_ssid *ssid, int line,
1391 const char *value)
1392 {
1393 int *freqs;
1394
1395 freqs = wpa_config_parse_int_array(value);
1396 if (freqs == NULL)
1397 return -1;
1398 if (freqs[0] == 0) {
1399 os_free(freqs);
1400 freqs = NULL;
1401 }
1402 os_free(ssid->freq_list);
1403 ssid->freq_list = freqs;
1404
1405 return 0;
1406 }
1407
1408
1409 #ifndef NO_CONFIG_WRITE
1410 static char * wpa_config_write_freqs(const struct parse_data *data,
1411 const int *freqs)
1412 {
1413 char *buf, *pos, *end;
1414 int i, ret;
1415 size_t count;
1416
1417 if (freqs == NULL)
1418 return NULL;
1419
1420 count = 0;
1421 for (i = 0; freqs[i]; i++)
1422 count++;
1423
1424 pos = buf = os_zalloc(10 * count + 1);
1425 if (buf == NULL)
1426 return NULL;
1427 end = buf + 10 * count + 1;
1428
1429 for (i = 0; freqs[i]; i++) {
1430 ret = os_snprintf(pos, end - pos, "%s%u",
1431 i == 0 ? "" : " ", freqs[i]);
1432 if (os_snprintf_error(end - pos, ret)) {
1433 end[-1] = '\0';
1434 return buf;
1435 }
1436 pos += ret;
1437 }
1438
1439 return buf;
1440 }
1441
1442
1443 static char * wpa_config_write_scan_freq(const struct parse_data *data,
1444 struct wpa_ssid *ssid)
1445 {
1446 return wpa_config_write_freqs(data, ssid->scan_freq);
1447 }
1448
1449
1450 static char * wpa_config_write_freq_list(const struct parse_data *data,
1451 struct wpa_ssid *ssid)
1452 {
1453 return wpa_config_write_freqs(data, ssid->freq_list);
1454 }
1455 #endif /* NO_CONFIG_WRITE */
1456
1457
1458 #ifdef IEEE8021X_EAPOL
1459 static int wpa_config_parse_eap(const struct parse_data *data,
1460 struct wpa_ssid *ssid, int line,
1461 const char *value)
1462 {
1463 int last, errors = 0;
1464 char *start, *end, *buf;
1465 struct eap_method_type *methods = NULL, *tmp;
1466 size_t num_methods = 0;
1467
1468 buf = os_strdup(value);
1469 if (buf == NULL)
1470 return -1;
1471 start = buf;
1472
1473 while (*start != '\0') {
1474 while (*start == ' ' || *start == '\t')
1475 start++;
1476 if (*start == '\0')
1477 break;
1478 end = start;
1479 while (*end != ' ' && *end != '\t' && *end != '\0')
1480 end++;
1481 last = *end == '\0';
1482 *end = '\0';
1483 tmp = methods;
1484 methods = os_realloc_array(methods, num_methods + 1,
1485 sizeof(*methods));
1486 if (methods == NULL) {
1487 os_free(tmp);
1488 os_free(buf);
1489 return -1;
1490 }
1491 methods[num_methods].method = eap_peer_get_type(
1492 start, &methods[num_methods].vendor);
1493 if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1494 methods[num_methods].method == EAP_TYPE_NONE) {
1495 wpa_printf(MSG_ERROR, "Line %d: unknown EAP method "
1496 "'%s'", line, start);
1497 wpa_printf(MSG_ERROR, "You may need to add support for"
1498 " this EAP method during wpa_supplicant\n"
1499 "build time configuration.\n"
1500 "See README for more information.");
1501 errors++;
1502 } else if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1503 methods[num_methods].method == EAP_TYPE_LEAP)
1504 ssid->leap++;
1505 else
1506 ssid->non_leap++;
1507 num_methods++;
1508 if (last)
1509 break;
1510 start = end + 1;
1511 }
1512 os_free(buf);
1513
1514 tmp = methods;
1515 methods = os_realloc_array(methods, num_methods + 1, sizeof(*methods));
1516 if (methods == NULL) {
1517 os_free(tmp);
1518 return -1;
1519 }
1520 methods[num_methods].vendor = EAP_VENDOR_IETF;
1521 methods[num_methods].method = EAP_TYPE_NONE;
1522 num_methods++;
1523
1524 if (!errors && ssid->eap.eap_methods) {
1525 struct eap_method_type *prev_m;
1526 size_t i, j, prev_methods, match = 0;
1527
1528 prev_m = ssid->eap.eap_methods;
1529 for (i = 0; prev_m[i].vendor != EAP_VENDOR_IETF ||
1530 prev_m[i].method != EAP_TYPE_NONE; i++) {
1531 /* Count the methods */
1532 }
1533 prev_methods = i + 1;
1534
1535 for (i = 0; prev_methods == num_methods && i < prev_methods;
1536 i++) {
1537 for (j = 0; j < num_methods; j++) {
1538 if (prev_m[i].vendor == methods[j].vendor &&
1539 prev_m[i].method == methods[j].method) {
1540 match++;
1541 break;
1542 }
1543 }
1544 }
1545 if (match == num_methods) {
1546 os_free(methods);
1547 return 1;
1548 }
1549 }
1550 wpa_hexdump(MSG_MSGDUMP, "eap methods",
1551 (u8 *) methods, num_methods * sizeof(*methods));
1552 os_free(ssid->eap.eap_methods);
1553 ssid->eap.eap_methods = methods;
1554 return errors ? -1 : 0;
1555 }
1556
1557
1558 #ifndef NO_CONFIG_WRITE
1559 static char * wpa_config_write_eap(const struct parse_data *data,
1560 struct wpa_ssid *ssid)
1561 {
1562 int i, ret;
1563 char *buf, *pos, *end;
1564 const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
1565 const char *name;
1566
1567 if (eap_methods == NULL)
1568 return NULL;
1569
1570 pos = buf = os_zalloc(100);
1571 if (buf == NULL)
1572 return NULL;
1573 end = buf + 100;
1574
1575 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1576 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1577 name = eap_get_name(eap_methods[i].vendor,
1578 eap_methods[i].method);
1579 if (name) {
1580 ret = os_snprintf(pos, end - pos, "%s%s",
1581 pos == buf ? "" : " ", name);
1582 if (os_snprintf_error(end - pos, ret))
1583 break;
1584 pos += ret;
1585 }
1586 }
1587
1588 end[-1] = '\0';
1589
1590 return buf;
1591 }
1592 #endif /* NO_CONFIG_WRITE */
1593
1594
1595 static int wpa_config_parse_password(const struct parse_data *data,
1596 struct wpa_ssid *ssid, int line,
1597 const char *value)
1598 {
1599 u8 *hash;
1600
1601 if (os_strcmp(value, "NULL") == 0) {
1602 if (!ssid->eap.password)
1603 return 1; /* Already unset */
1604 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
1605 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
1606 ssid->eap.password = NULL;
1607 ssid->eap.password_len = 0;
1608 return 0;
1609 }
1610
1611 #ifdef CONFIG_EXT_PASSWORD
1612 if (os_strncmp(value, "ext:", 4) == 0) {
1613 char *name = os_strdup(value + 4);
1614 if (!name)
1615 return -1;
1616 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
1617 ssid->eap.password = (u8 *) name;
1618 ssid->eap.password_len = os_strlen(name);
1619 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
1620 ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_PASSWORD;
1621 return 0;
1622 }
1623 #endif /* CONFIG_EXT_PASSWORD */
1624
1625 if (os_strncmp(value, "hash:", 5) != 0) {
1626 char *tmp;
1627 size_t res_len;
1628
1629 tmp = wpa_config_parse_string(value, &res_len);
1630 if (!tmp) {
1631 wpa_printf(MSG_ERROR,
1632 "Line %d: failed to parse password.", line);
1633 return -1;
1634 }
1635 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
1636 (u8 *) tmp, res_len);
1637
1638 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
1639 ssid->eap.password = (u8 *) tmp;
1640 ssid->eap.password_len = res_len;
1641 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
1642 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
1643
1644 return 0;
1645 }
1646
1647
1648 /* NtPasswordHash: hash:<32 hex digits> */
1649 if (os_strlen(value + 5) != 2 * 16) {
1650 wpa_printf(MSG_ERROR,
1651 "Line %d: Invalid password hash length (expected 32 hex digits)",
1652 line);
1653 return -1;
1654 }
1655
1656 hash = os_malloc(16);
1657 if (!hash)
1658 return -1;
1659
1660 if (hexstr2bin(value + 5, hash, 16)) {
1661 os_free(hash);
1662 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
1663 return -1;
1664 }
1665
1666 wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
1667
1668 if (ssid->eap.password && ssid->eap.password_len == 16 &&
1669 os_memcmp(ssid->eap.password, hash, 16) == 0 &&
1670 (ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
1671 bin_clear_free(hash, 16);
1672 return 1;
1673 }
1674 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
1675 ssid->eap.password = hash;
1676 ssid->eap.password_len = 16;
1677 ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
1678 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
1679
1680 return 0;
1681 }
1682
1683
1684 static int wpa_config_parse_machine_password(const struct parse_data *data,
1685 struct wpa_ssid *ssid, int line,
1686 const char *value)
1687 {
1688 u8 *hash;
1689
1690 if (os_strcmp(value, "NULL") == 0) {
1691 if (!ssid->eap.machine_password)
1692 return 1; /* Already unset */
1693 wpa_printf(MSG_DEBUG,
1694 "Unset configuration string 'machine_password'");
1695 bin_clear_free(ssid->eap.machine_password,
1696 ssid->eap.machine_password_len);
1697 ssid->eap.machine_password = NULL;
1698 ssid->eap.machine_password_len = 0;
1699 return 0;
1700 }
1701
1702 #ifdef CONFIG_EXT_PASSWORD
1703 if (os_strncmp(value, "ext:", 4) == 0) {
1704 char *name = os_strdup(value + 4);
1705
1706 if (!name)
1707 return -1;
1708 bin_clear_free(ssid->eap.machine_password,
1709 ssid->eap.machine_password_len);
1710 ssid->eap.machine_password = (u8 *) name;
1711 ssid->eap.machine_password_len = os_strlen(name);
1712 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_MACHINE_PASSWORD_NTHASH;
1713 ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_MACHINE_PASSWORD;
1714 return 0;
1715 }
1716 #endif /* CONFIG_EXT_PASSWORD */
1717
1718 if (os_strncmp(value, "hash:", 5) != 0) {
1719 char *tmp;
1720 size_t res_len;
1721
1722 tmp = wpa_config_parse_string(value, &res_len);
1723 if (!tmp) {
1724 wpa_printf(MSG_ERROR,
1725 "Line %d: failed to parse machine_password.",
1726 line);
1727 return -1;
1728 }
1729 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
1730 (u8 *) tmp, res_len);
1731
1732 bin_clear_free(ssid->eap.machine_password,
1733 ssid->eap.machine_password_len);
1734 ssid->eap.machine_password = (u8 *) tmp;
1735 ssid->eap.machine_password_len = res_len;
1736 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_MACHINE_PASSWORD_NTHASH;
1737 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_MACHINE_PASSWORD;
1738
1739 return 0;
1740 }
1741
1742
1743 /* NtPasswordHash: hash:<32 hex digits> */
1744 if (os_strlen(value + 5) != 2 * 16) {
1745 wpa_printf(MSG_ERROR,
1746 "Line %d: Invalid machine_password hash length (expected 32 hex digits)",
1747 line);
1748 return -1;
1749 }
1750
1751 hash = os_malloc(16);
1752 if (!hash)
1753 return -1;
1754
1755 if (hexstr2bin(value + 5, hash, 16)) {
1756 os_free(hash);
1757 wpa_printf(MSG_ERROR, "Line %d: Invalid machine_password hash",
1758 line);
1759 return -1;
1760 }
1761
1762 wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
1763
1764 if (ssid->eap.machine_password &&
1765 ssid->eap.machine_password_len == 16 &&
1766 os_memcmp(ssid->eap.machine_password, hash, 16) == 0 &&
1767 (ssid->eap.flags & EAP_CONFIG_FLAGS_MACHINE_PASSWORD_NTHASH)) {
1768 bin_clear_free(hash, 16);
1769 return 1;
1770 }
1771 bin_clear_free(ssid->eap.machine_password,
1772 ssid->eap.machine_password_len);
1773 ssid->eap.machine_password = hash;
1774 ssid->eap.machine_password_len = 16;
1775 ssid->eap.flags |= EAP_CONFIG_FLAGS_MACHINE_PASSWORD_NTHASH;
1776 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_MACHINE_PASSWORD;
1777
1778 return 0;
1779 }
1780
1781
1782 #ifndef NO_CONFIG_WRITE
1783
1784 static char * wpa_config_write_password(const struct parse_data *data,
1785 struct wpa_ssid *ssid)
1786 {
1787 char *buf;
1788
1789 if (!ssid->eap.password)
1790 return NULL;
1791
1792 #ifdef CONFIG_EXT_PASSWORD
1793 if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
1794 buf = os_zalloc(4 + ssid->eap.password_len + 1);
1795 if (!buf)
1796 return NULL;
1797 os_memcpy(buf, "ext:", 4);
1798 os_memcpy(buf + 4, ssid->eap.password, ssid->eap.password_len);
1799 return buf;
1800 }
1801 #endif /* CONFIG_EXT_PASSWORD */
1802
1803 if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
1804 return wpa_config_write_string(
1805 ssid->eap.password, ssid->eap.password_len);
1806 }
1807
1808 buf = os_malloc(5 + 32 + 1);
1809 if (!buf)
1810 return NULL;
1811
1812 os_memcpy(buf, "hash:", 5);
1813 wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
1814
1815 return buf;
1816 }
1817
1818
1819 static char * wpa_config_write_machine_password(const struct parse_data *data,
1820 struct wpa_ssid *ssid)
1821 {
1822 char *buf;
1823
1824 if (!ssid->eap.machine_password)
1825 return NULL;
1826
1827 #ifdef CONFIG_EXT_PASSWORD
1828 if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_MACHINE_PASSWORD) {
1829 buf = os_zalloc(4 + ssid->eap.machine_password_len + 1);
1830 if (!buf)
1831 return NULL;
1832 os_memcpy(buf, "ext:", 4);
1833 os_memcpy(buf + 4, ssid->eap.machine_password,
1834 ssid->eap.machine_password_len);
1835 return buf;
1836 }
1837 #endif /* CONFIG_EXT_PASSWORD */
1838
1839 if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_MACHINE_PASSWORD_NTHASH)) {
1840 return wpa_config_write_string(
1841 ssid->eap.machine_password,
1842 ssid->eap.machine_password_len);
1843 }
1844
1845 buf = os_malloc(5 + 32 + 1);
1846 if (!buf)
1847 return NULL;
1848
1849 os_memcpy(buf, "hash:", 5);
1850 wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.machine_password, 16);
1851
1852 return buf;
1853 }
1854
1855 #endif /* NO_CONFIG_WRITE */
1856 #endif /* IEEE8021X_EAPOL */
1857
1858
1859 static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
1860 const char *value, int idx)
1861 {
1862 char *buf, title[20];
1863 int res;
1864
1865 buf = wpa_config_parse_string(value, len);
1866 if (buf == NULL) {
1867 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
1868 line, idx, value);
1869 return -1;
1870 }
1871 if (*len > MAX_WEP_KEY_LEN) {
1872 wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
1873 line, idx, value);
1874 os_free(buf);
1875 return -1;
1876 }
1877 if (*len && *len != 5 && *len != 13 && *len != 16) {
1878 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key length %u - "
1879 "this network block will be ignored",
1880 line, (unsigned int) *len);
1881 }
1882 os_memcpy(key, buf, *len);
1883 str_clear_free(buf);
1884 res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
1885 if (!os_snprintf_error(sizeof(title), res))
1886 wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
1887 return 0;
1888 }
1889
1890
1891 static int wpa_config_parse_wep_key0(const struct parse_data *data,
1892 struct wpa_ssid *ssid, int line,
1893 const char *value)
1894 {
1895 return wpa_config_parse_wep_key(ssid->wep_key[0],
1896 &ssid->wep_key_len[0], line,
1897 value, 0);
1898 }
1899
1900
1901 static int wpa_config_parse_wep_key1(const struct parse_data *data,
1902 struct wpa_ssid *ssid, int line,
1903 const char *value)
1904 {
1905 return wpa_config_parse_wep_key(ssid->wep_key[1],
1906 &ssid->wep_key_len[1], line,
1907 value, 1);
1908 }
1909
1910
1911 static int wpa_config_parse_wep_key2(const struct parse_data *data,
1912 struct wpa_ssid *ssid, int line,
1913 const char *value)
1914 {
1915 return wpa_config_parse_wep_key(ssid->wep_key[2],
1916 &ssid->wep_key_len[2], line,
1917 value, 2);
1918 }
1919
1920
1921 static int wpa_config_parse_wep_key3(const struct parse_data *data,
1922 struct wpa_ssid *ssid, int line,
1923 const char *value)
1924 {
1925 return wpa_config_parse_wep_key(ssid->wep_key[3],
1926 &ssid->wep_key_len[3], line,
1927 value, 3);
1928 }
1929
1930
1931 #ifndef NO_CONFIG_WRITE
1932 static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
1933 {
1934 if (ssid->wep_key_len[idx] == 0)
1935 return NULL;
1936 return wpa_config_write_string(ssid->wep_key[idx],
1937 ssid->wep_key_len[idx]);
1938 }
1939
1940
1941 static char * wpa_config_write_wep_key0(const struct parse_data *data,
1942 struct wpa_ssid *ssid)
1943 {
1944 return wpa_config_write_wep_key(ssid, 0);
1945 }
1946
1947
1948 static char * wpa_config_write_wep_key1(const struct parse_data *data,
1949 struct wpa_ssid *ssid)
1950 {
1951 return wpa_config_write_wep_key(ssid, 1);
1952 }
1953
1954
1955 static char * wpa_config_write_wep_key2(const struct parse_data *data,
1956 struct wpa_ssid *ssid)
1957 {
1958 return wpa_config_write_wep_key(ssid, 2);
1959 }
1960
1961
1962 static char * wpa_config_write_wep_key3(const struct parse_data *data,
1963 struct wpa_ssid *ssid)
1964 {
1965 return wpa_config_write_wep_key(ssid, 3);
1966 }
1967 #endif /* NO_CONFIG_WRITE */
1968
1969
1970 #ifdef CONFIG_P2P
1971
1972 static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
1973 struct wpa_ssid *ssid, int line,
1974 const char *value)
1975 {
1976 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
1977 os_strcmp(value, "any") == 0) {
1978 os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
1979 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
1980 return 0;
1981 }
1982 if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
1983 wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
1984 line, value);
1985 return -1;
1986 }
1987 ssid->bssid_set = 1;
1988 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
1989 MAC2STR(ssid->go_p2p_dev_addr));
1990 return 0;
1991 }
1992
1993
1994 #ifndef NO_CONFIG_WRITE
1995 static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
1996 struct wpa_ssid *ssid)
1997 {
1998 char *value;
1999 int res;
2000
2001 if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
2002 return NULL;
2003
2004 value = os_malloc(20);
2005 if (value == NULL)
2006 return NULL;
2007 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
2008 if (os_snprintf_error(20, res)) {
2009 os_free(value);
2010 return NULL;
2011 }
2012 value[20 - 1] = '\0';
2013 return value;
2014 }
2015 #endif /* NO_CONFIG_WRITE */
2016
2017
2018 static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
2019 struct wpa_ssid *ssid, int line,
2020 const char *value)
2021 {
2022 return wpa_config_parse_addr_list(data, line, value,
2023 &ssid->p2p_client_list,
2024 &ssid->num_p2p_clients,
2025 "p2p_client_list", 0, 0);
2026 }
2027
2028
2029 #ifndef NO_CONFIG_WRITE
2030 static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
2031 struct wpa_ssid *ssid)
2032 {
2033 return wpa_config_write_addr_list(data, ssid->p2p_client_list,
2034 ssid->num_p2p_clients,
2035 "p2p_client_list");
2036 }
2037 #endif /* NO_CONFIG_WRITE */
2038
2039
2040 static int wpa_config_parse_psk_list(const struct parse_data *data,
2041 struct wpa_ssid *ssid, int line,
2042 const char *value)
2043 {
2044 struct psk_list_entry *p;
2045 const char *pos;
2046
2047 p = os_zalloc(sizeof(*p));
2048 if (p == NULL)
2049 return -1;
2050
2051 pos = value;
2052 if (os_strncmp(pos, "P2P-", 4) == 0) {
2053 p->p2p = 1;
2054 pos += 4;
2055 }
2056
2057 if (hwaddr_aton(pos, p->addr)) {
2058 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list address '%s'",
2059 line, pos);
2060 os_free(p);
2061 return -1;
2062 }
2063 pos += 17;
2064 if (*pos != '-') {
2065 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list '%s'",
2066 line, pos);
2067 os_free(p);
2068 return -1;
2069 }
2070 pos++;
2071
2072 if (hexstr2bin(pos, p->psk, PMK_LEN) || pos[PMK_LEN * 2] != '\0') {
2073 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list PSK '%s'",
2074 line, pos);
2075 os_free(p);
2076 return -1;
2077 }
2078
2079 dl_list_add(&ssid->psk_list, &p->list);
2080
2081 return 0;
2082 }
2083
2084
2085 #ifndef NO_CONFIG_WRITE
2086 static char * wpa_config_write_psk_list(const struct parse_data *data,
2087 struct wpa_ssid *ssid)
2088 {
2089 return NULL;
2090 }
2091 #endif /* NO_CONFIG_WRITE */
2092
2093 #endif /* CONFIG_P2P */
2094
2095
2096 #ifdef CONFIG_MESH
2097
2098 static int wpa_config_parse_mesh_basic_rates(const struct parse_data *data,
2099 struct wpa_ssid *ssid, int line,
2100 const char *value)
2101 {
2102 int *rates = wpa_config_parse_int_array(value);
2103
2104 if (rates == NULL) {
2105 wpa_printf(MSG_ERROR, "Line %d: Invalid mesh_basic_rates '%s'",
2106 line, value);
2107 return -1;
2108 }
2109 if (rates[0] == 0) {
2110 os_free(rates);
2111 rates = NULL;
2112 }
2113
2114 os_free(ssid->mesh_basic_rates);
2115 ssid->mesh_basic_rates = rates;
2116
2117 return 0;
2118 }
2119
2120
2121 #ifndef NO_CONFIG_WRITE
2122
2123 static char * wpa_config_write_mesh_basic_rates(const struct parse_data *data,
2124 struct wpa_ssid *ssid)
2125 {
2126 return wpa_config_write_freqs(data, ssid->mesh_basic_rates);
2127 }
2128
2129 #endif /* NO_CONFIG_WRITE */
2130
2131 #endif /* CONFIG_MESH */
2132
2133
2134 #ifdef CONFIG_MACSEC
2135
2136 static int wpa_config_parse_mka_cak(const struct parse_data *data,
2137 struct wpa_ssid *ssid, int line,
2138 const char *value)
2139 {
2140 size_t len;
2141
2142 len = os_strlen(value);
2143 if (len > 2 * MACSEC_CAK_MAX_LEN ||
2144 (len != 2 * 16 && len != 2 * 32) ||
2145 hexstr2bin(value, ssid->mka_cak, len / 2)) {
2146 wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CAK '%s'.",
2147 line, value);
2148 return -1;
2149 }
2150 ssid->mka_cak_len = len / 2;
2151 ssid->mka_psk_set |= MKA_PSK_SET_CAK;
2152
2153 wpa_hexdump_key(MSG_MSGDUMP, "MKA-CAK", ssid->mka_cak,
2154 ssid->mka_cak_len);
2155 return 0;
2156 }
2157
2158
2159 static int wpa_config_parse_mka_ckn(const struct parse_data *data,
2160 struct wpa_ssid *ssid, int line,
2161 const char *value)
2162 {
2163 size_t len;
2164
2165 len = os_strlen(value);
2166 if (len > 2 * MACSEC_CKN_MAX_LEN || /* too long */
2167 len < 2 || /* too short */
2168 len % 2 != 0 /* not an integral number of bytes */) {
2169 wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CKN '%s'.",
2170 line, value);
2171 return -1;
2172 }
2173 ssid->mka_ckn_len = len / 2;
2174 if (hexstr2bin(value, ssid->mka_ckn, ssid->mka_ckn_len)) {
2175 wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CKN '%s'.",
2176 line, value);
2177 return -1;
2178 }
2179
2180 ssid->mka_psk_set |= MKA_PSK_SET_CKN;
2181
2182 wpa_hexdump_key(MSG_MSGDUMP, "MKA-CKN", ssid->mka_ckn,
2183 ssid->mka_ckn_len);
2184 return 0;
2185 }
2186
2187
2188 #ifndef NO_CONFIG_WRITE
2189
2190 static char * wpa_config_write_mka_cak(const struct parse_data *data,
2191 struct wpa_ssid *ssid)
2192 {
2193 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
2194 return NULL;
2195
2196 return wpa_config_write_string_hex(ssid->mka_cak, ssid->mka_cak_len);
2197 }
2198
2199
2200 static char * wpa_config_write_mka_ckn(const struct parse_data *data,
2201 struct wpa_ssid *ssid)
2202 {
2203 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
2204 return NULL;
2205 return wpa_config_write_string_hex(ssid->mka_ckn, ssid->mka_ckn_len);
2206 }
2207
2208 #endif /* NO_CONFIG_WRITE */
2209
2210 #endif /* CONFIG_MACSEC */
2211
2212
2213 #ifdef CONFIG_OCV
2214
2215 static int wpa_config_parse_ocv(const struct parse_data *data,
2216 struct wpa_ssid *ssid, int line,
2217 const char *value)
2218 {
2219 char *end;
2220
2221 ssid->ocv = strtol(value, &end, 0);
2222 if (*end || ssid->ocv < 0 || ssid->ocv > 1) {
2223 wpa_printf(MSG_ERROR, "Line %d: Invalid ocv value '%s'.",
2224 line, value);
2225 return -1;
2226 }
2227 if (ssid->ocv && ssid->ieee80211w == NO_MGMT_FRAME_PROTECTION)
2228 ssid->ieee80211w = MGMT_FRAME_PROTECTION_OPTIONAL;
2229 return 0;
2230 }
2231
2232
2233 #ifndef NO_CONFIG_WRITE
2234 static char * wpa_config_write_ocv(const struct parse_data *data,
2235 struct wpa_ssid *ssid)
2236 {
2237 char *value = os_malloc(20);
2238
2239 if (!value)
2240 return NULL;
2241 os_snprintf(value, 20, "%d", ssid->ocv);
2242 value[20 - 1] = '\0';
2243 return value;
2244 }
2245 #endif /* NO_CONFIG_WRITE */
2246
2247 #endif /* CONFIG_OCV */
2248
2249
2250 static int wpa_config_parse_peerkey(const struct parse_data *data,
2251 struct wpa_ssid *ssid, int line,
2252 const char *value)
2253 {
2254 wpa_printf(MSG_INFO, "NOTE: Obsolete peerkey parameter ignored");
2255 return 0;
2256 }
2257
2258
2259 #ifndef NO_CONFIG_WRITE
2260 static char * wpa_config_write_peerkey(const struct parse_data *data,
2261 struct wpa_ssid *ssid)
2262 {
2263 return NULL;
2264 }
2265 #endif /* NO_CONFIG_WRITE */
2266
2267
2268 /* Helper macros for network block parser */
2269
2270 #ifdef OFFSET
2271 #undef OFFSET
2272 #endif /* OFFSET */
2273 /* OFFSET: Get offset of a variable within the wpa_ssid structure */
2274 #define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
2275
2276 /* STR: Define a string variable for an ASCII string; f = field name */
2277 #ifdef NO_CONFIG_WRITE
2278 #define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
2279 #define _STRe(f, m) #f, wpa_config_parse_str, OFFSET(eap.m)
2280 #else /* NO_CONFIG_WRITE */
2281 #define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
2282 #define _STRe(f, m) #f, wpa_config_parse_str, wpa_config_write_str, \
2283 OFFSET(eap.m)
2284 #endif /* NO_CONFIG_WRITE */
2285 #define STR(f) _STR(f), NULL, NULL, NULL, 0
2286 #define STRe(f, m) _STRe(f, m), NULL, NULL, NULL, 0
2287 #define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
2288 #define STR_KEYe(f, m) _STRe(f, m), NULL, NULL, NULL, 1
2289
2290 /* STR_LEN: Define a string variable with a separate variable for storing the
2291 * data length. Unlike STR(), this can be used to store arbitrary binary data
2292 * (i.e., even nul termination character). */
2293 #define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
2294 #define _STR_LENe(f, m) _STRe(f, m), OFFSET(eap.m ## _len)
2295 #define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
2296 #define STR_LENe(f, m) _STR_LENe(f, m), NULL, NULL, 0
2297 #define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
2298
2299 /* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
2300 * explicitly specified. */
2301 #define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
2302 #define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
2303 #define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
2304
2305 #ifdef NO_CONFIG_WRITE
2306 #define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
2307 #define _INTe(f, m) #f, wpa_config_parse_int, OFFSET(eap.m), (void *) 0
2308 #else /* NO_CONFIG_WRITE */
2309 #define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
2310 OFFSET(f), (void *) 0
2311 #define _INTe(f, m) #f, wpa_config_parse_int, wpa_config_write_int, \
2312 OFFSET(eap.m), (void *) 0
2313 #endif /* NO_CONFIG_WRITE */
2314
2315 /* INT: Define an integer variable */
2316 #define INT(f) _INT(f), NULL, NULL, 0
2317 #define INTe(f, m) _INTe(f, m), NULL, NULL, 0
2318
2319 /* INT_RANGE: Define an integer variable with allowed value range */
2320 #define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
2321
2322 /* FUNC: Define a configuration variable that uses a custom function for
2323 * parsing and writing the value. */
2324 #ifdef NO_CONFIG_WRITE
2325 #define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
2326 #else /* NO_CONFIG_WRITE */
2327 #define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
2328 NULL, NULL, NULL, NULL
2329 #endif /* NO_CONFIG_WRITE */
2330 #define FUNC(f) _FUNC(f), 0
2331 #define FUNC_KEY(f) _FUNC(f), 1
2332
2333 /*
2334 * Table of network configuration variables. This table is used to parse each
2335 * network configuration variable, e.g., each line in wpa_supplicant.conf file
2336 * that is inside a network block.
2337 *
2338 * This table is generated using the helper macros defined above and with
2339 * generous help from the C pre-processor. The field name is stored as a string
2340 * into .name and for STR and INT types, the offset of the target buffer within
2341 * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
2342 * offset to the field containing the length of the configuration variable.
2343 * .param3 and .param4 can be used to mark the allowed range (length for STR
2344 * and value for INT).
2345 *
2346 * For each configuration line in wpa_supplicant.conf, the parser goes through
2347 * this table and select the entry that matches with the field name. The parser
2348 * function (.parser) is then called to parse the actual value of the field.
2349 *
2350 * This kind of mechanism makes it easy to add new configuration parameters,
2351 * since only one line needs to be added into this table and into the
2352 * struct wpa_ssid definition if the new variable is either a string or
2353 * integer. More complex types will need to use their own parser and writer
2354 * functions.
2355 */
2356 static const struct parse_data ssid_fields[] = {
2357 { STR_RANGE(ssid, 0, SSID_MAX_LEN) },
2358 { INT_RANGE(scan_ssid, 0, 1) },
2359 { FUNC(bssid) },
2360 { FUNC(bssid_hint) },
2361 { FUNC(bssid_blacklist) },
2362 { FUNC(bssid_whitelist) },
2363 { FUNC_KEY(psk) },
2364 { INT(mem_only_psk) },
2365 { STR_KEY(sae_password) },
2366 { STR(sae_password_id) },
2367 { FUNC(proto) },
2368 { FUNC(key_mgmt) },
2369 { INT(bg_scan_period) },
2370 { FUNC(pairwise) },
2371 { FUNC(group) },
2372 { FUNC(group_mgmt) },
2373 { FUNC(auth_alg) },
2374 { FUNC(scan_freq) },
2375 { FUNC(freq_list) },
2376 { INT_RANGE(ht, 0, 1) },
2377 { INT_RANGE(vht, 0, 1) },
2378 { INT_RANGE(ht40, -1, 1) },
2379 { INT_RANGE(max_oper_chwidth, CHANWIDTH_USE_HT,
2380 CHANWIDTH_80P80MHZ) },
2381 { INT(vht_center_freq1) },
2382 { INT(vht_center_freq2) },
2383 #ifdef IEEE8021X_EAPOL
2384 { FUNC(eap) },
2385 { STR_LENe(identity, identity) },
2386 { STR_LENe(anonymous_identity, anonymous_identity) },
2387 { STR_LENe(imsi_identity, imsi_identity) },
2388 { STR_LENe(machine_identity, machine_identity) },
2389 { FUNC_KEY(password) },
2390 { FUNC_KEY(machine_password) },
2391 { STRe(ca_cert, cert.ca_cert) },
2392 { STRe(ca_path, cert.ca_path) },
2393 { STRe(client_cert, cert.client_cert) },
2394 { STRe(private_key, cert.private_key) },
2395 { STR_KEYe(private_key_passwd, cert.private_key_passwd) },
2396 { STRe(dh_file, cert.dh_file) },
2397 { STRe(subject_match, cert.subject_match) },
2398 { STRe(check_cert_subject, cert.check_cert_subject) },
2399 { STRe(altsubject_match, cert.altsubject_match) },
2400 { STRe(domain_suffix_match, cert.domain_suffix_match) },
2401 { STRe(domain_match, cert.domain_match) },
2402 { STRe(ca_cert2, phase2_cert.ca_cert) },
2403 { STRe(ca_path2, phase2_cert.ca_path) },
2404 { STRe(client_cert2, phase2_cert.client_cert) },
2405 { STRe(private_key2, phase2_cert.private_key) },
2406 { STR_KEYe(private_key2_passwd, phase2_cert.private_key_passwd) },
2407 { STRe(dh_file2, phase2_cert.dh_file) },
2408 { STRe(subject_match2, phase2_cert.subject_match) },
2409 { STRe(check_cert_subject2, phase2_cert.check_cert_subject) },
2410 { STRe(altsubject_match2, phase2_cert.altsubject_match) },
2411 { STRe(domain_suffix_match2, phase2_cert.domain_suffix_match) },
2412 { STRe(domain_match2, phase2_cert.domain_match) },
2413 { STRe(phase1, phase1) },
2414 { STRe(phase2, phase2) },
2415 { STRe(machine_phase2, machine_phase2) },
2416 { STRe(pcsc, pcsc) },
2417 { STR_KEYe(pin, cert.pin) },
2418 { STRe(engine_id, cert.engine_id) },
2419 { STRe(key_id, cert.key_id) },
2420 { STRe(cert_id, cert.cert_id) },
2421 { STRe(ca_cert_id, cert.ca_cert_id) },
2422 { STR_KEYe(pin2, phase2_cert.pin) },
2423 { STRe(engine_id2, phase2_cert.engine_id) },
2424 { STRe(key_id2, phase2_cert.key_id) },
2425 { STRe(cert_id2, phase2_cert.cert_id) },
2426 { STRe(ca_cert_id2, phase2_cert.ca_cert_id) },
2427 { INTe(engine, cert.engine) },
2428 { INTe(engine2, phase2_cert.engine) },
2429 { STRe(machine_ca_cert, machine_cert.ca_cert) },
2430 { STRe(machine_ca_path, machine_cert.ca_path) },
2431 { STRe(machine_client_cert, machine_cert.client_cert) },
2432 { STRe(machine_private_key, machine_cert.private_key) },
2433 { STR_KEYe(machine_private_key_passwd,
2434 machine_cert.private_key_passwd) },
2435 { STRe(machine_dh_file, machine_cert.dh_file) },
2436 { STRe(machine_subject_match, machine_cert.subject_match) },
2437 { STRe(machine_check_cert_subject, machine_cert.check_cert_subject) },
2438 { STRe(machine_altsubject_match, machine_cert.altsubject_match) },
2439 { STRe(machine_domain_suffix_match,
2440 machine_cert.domain_suffix_match) },
2441 { STRe(machine_domain_match, machine_cert.domain_match) },
2442 { STR_KEYe(machine_pin, machine_cert.pin) },
2443 { STRe(machine_engine_id, machine_cert.engine_id) },
2444 { STRe(machine_key_id, machine_cert.key_id) },
2445 { STRe(machine_cert_id, machine_cert.cert_id) },
2446 { STRe(machine_ca_cert_id, machine_cert.ca_cert_id) },
2447 { INTe(machine_engine, machine_cert.engine) },
2448 { INTe(machine_ocsp, machine_cert.ocsp) },
2449 { INT(eapol_flags) },
2450 { INTe(sim_num, sim_num) },
2451 { STRe(openssl_ciphers, openssl_ciphers) },
2452 { INTe(erp, erp) },
2453 #endif /* IEEE8021X_EAPOL */
2454 { FUNC_KEY(wep_key0) },
2455 { FUNC_KEY(wep_key1) },
2456 { FUNC_KEY(wep_key2) },
2457 { FUNC_KEY(wep_key3) },
2458 { INT(wep_tx_keyidx) },
2459 { INT(priority) },
2460 #ifdef IEEE8021X_EAPOL
2461 { INT(eap_workaround) },
2462 { STRe(pac_file, pac_file) },
2463 { INTe(fragment_size, fragment_size) },
2464 { INTe(ocsp, cert.ocsp) },
2465 { INTe(ocsp2, phase2_cert.ocsp) },
2466 #endif /* IEEE8021X_EAPOL */
2467 #ifdef CONFIG_MESH
2468 { INT_RANGE(mode, 0, 5) },
2469 { INT_RANGE(no_auto_peer, 0, 1) },
2470 { INT_RANGE(mesh_rssi_threshold, -255, 1) },
2471 #else /* CONFIG_MESH */
2472 { INT_RANGE(mode, 0, 4) },
2473 #endif /* CONFIG_MESH */
2474 { INT_RANGE(proactive_key_caching, 0, 1) },
2475 { INT_RANGE(disabled, 0, 2) },
2476 { STR(id_str) },
2477 { INT_RANGE(ieee80211w, 0, 2) },
2478 #ifdef CONFIG_OCV
2479 { FUNC(ocv) },
2480 #endif /* CONFIG_OCV */
2481 { FUNC(peerkey) /* obsolete - removed */ },
2482 { INT_RANGE(mixed_cell, 0, 1) },
2483 { INT_RANGE(frequency, 0, 70200) },
2484 { INT_RANGE(fixed_freq, 0, 1) },
2485 { INT_RANGE(enable_edmg, 0, 1) },
2486 { INT_RANGE(edmg_channel, 9, 13) },
2487 #ifdef CONFIG_ACS
2488 { INT_RANGE(acs, 0, 1) },
2489 #endif /* CONFIG_ACS */
2490 #ifdef CONFIG_MESH
2491 { FUNC(mesh_basic_rates) },
2492 { INT(dot11MeshMaxRetries) },
2493 { INT(dot11MeshRetryTimeout) },
2494 { INT(dot11MeshConfirmTimeout) },
2495 { INT(dot11MeshHoldingTimeout) },
2496 #endif /* CONFIG_MESH */
2497 { INT(wpa_ptk_rekey) },
2498 { INT(group_rekey) },
2499 { STR(bgscan) },
2500 { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
2501 #ifdef CONFIG_P2P
2502 { FUNC(go_p2p_dev_addr) },
2503 { FUNC(p2p_client_list) },
2504 { FUNC(psk_list) },
2505 #endif /* CONFIG_P2P */
2506 #ifdef CONFIG_HT_OVERRIDES
2507 { INT_RANGE(disable_ht, 0, 1) },
2508 { INT_RANGE(disable_ht40, -1, 1) },
2509 { INT_RANGE(disable_sgi, 0, 1) },
2510 { INT_RANGE(disable_ldpc, 0, 1) },
2511 { INT_RANGE(ht40_intolerant, 0, 1) },
2512 { INT_RANGE(tx_stbc, -1, 1) },
2513 { INT_RANGE(rx_stbc, -1, 3) },
2514 { INT_RANGE(disable_max_amsdu, -1, 1) },
2515 { INT_RANGE(ampdu_factor, -1, 3) },
2516 { INT_RANGE(ampdu_density, -1, 7) },
2517 { STR(ht_mcs) },
2518 #endif /* CONFIG_HT_OVERRIDES */
2519 #ifdef CONFIG_VHT_OVERRIDES
2520 { INT_RANGE(disable_vht, 0, 1) },
2521 { INT(vht_capa) },
2522 { INT(vht_capa_mask) },
2523 { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
2524 { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
2525 { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
2526 { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
2527 { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
2528 { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
2529 { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
2530 { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
2531 { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
2532 { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
2533 { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
2534 { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
2535 { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
2536 { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
2537 { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
2538 { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
2539 #endif /* CONFIG_VHT_OVERRIDES */
2540 { INT(ap_max_inactivity) },
2541 { INT(dtim_period) },
2542 { INT(beacon_int) },
2543 #ifdef CONFIG_MACSEC
2544 { INT_RANGE(macsec_policy, 0, 1) },
2545 { INT_RANGE(macsec_integ_only, 0, 1) },
2546 { INT_RANGE(macsec_replay_protect, 0, 1) },
2547 { INT(macsec_replay_window) },
2548 { INT_RANGE(macsec_port, 1, 65534) },
2549 { INT_RANGE(mka_priority, 0, 255) },
2550 { FUNC_KEY(mka_cak) },
2551 { FUNC_KEY(mka_ckn) },
2552 #endif /* CONFIG_MACSEC */
2553 #ifdef CONFIG_HS20
2554 { INT(update_identifier) },
2555 { STR_RANGE(roaming_consortium_selection, 0, MAX_ROAMING_CONS_OI_LEN) },
2556 #endif /* CONFIG_HS20 */
2557 { INT_RANGE(mac_addr, 0, 2) },
2558 { INT_RANGE(pbss, 0, 2) },
2559 { INT_RANGE(wps_disabled, 0, 1) },
2560 { INT_RANGE(fils_dh_group, 0, 65535) },
2561 #ifdef CONFIG_DPP
2562 { STR(dpp_connector) },
2563 { STR_LEN(dpp_netaccesskey) },
2564 { INT(dpp_netaccesskey_expiry) },
2565 { STR_LEN(dpp_csign) },
2566 #endif /* CONFIG_DPP */
2567 { INT_RANGE(owe_group, 0, 65535) },
2568 { INT_RANGE(owe_only, 0, 1) },
2569 { INT_RANGE(owe_ptk_workaround, 0, 1) },
2570 { INT_RANGE(multi_ap_backhaul_sta, 0, 1) },
2571 { INT_RANGE(ft_eap_pmksa_caching, 0, 1) },
2572 };
2573
2574 #undef OFFSET
2575 #undef _STR
2576 #undef STR
2577 #undef STR_KEY
2578 #undef _STR_LEN
2579 #undef STR_LEN
2580 #undef STR_LEN_KEY
2581 #undef _STR_RANGE
2582 #undef STR_RANGE
2583 #undef STR_RANGE_KEY
2584 #undef _INT
2585 #undef INT
2586 #undef INT_RANGE
2587 #undef _FUNC
2588 #undef FUNC
2589 #undef FUNC_KEY
2590 #define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
2591
2592
2593 /**
2594 * wpa_config_add_prio_network - Add a network to priority lists
2595 * @config: Configuration data from wpa_config_read()
2596 * @ssid: Pointer to the network configuration to be added to the list
2597 * Returns: 0 on success, -1 on failure
2598 *
2599 * This function is used to add a network block to the priority list of
2600 * networks. This must be called for each network when reading in the full
2601 * configuration. In addition, this can be used indirectly when updating
2602 * priorities by calling wpa_config_update_prio_list().
2603 */
2604 int wpa_config_add_prio_network(struct wpa_config *config,
2605 struct wpa_ssid *ssid)
2606 {
2607 int prio;
2608 struct wpa_ssid *prev, **nlist;
2609
2610 /*
2611 * Add to an existing priority list if one is available for the
2612 * configured priority level for this network.
2613 */
2614 for (prio = 0; prio < config->num_prio; prio++) {
2615 prev = config->pssid[prio];
2616 if (prev->priority == ssid->priority) {
2617 while (prev->pnext)
2618 prev = prev->pnext;
2619 prev->pnext = ssid;
2620 return 0;
2621 }
2622 }
2623
2624 /* First network for this priority - add a new priority list */
2625 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
2626 sizeof(struct wpa_ssid *));
2627 if (nlist == NULL)
2628 return -1;
2629
2630 for (prio = 0; prio < config->num_prio; prio++) {
2631 if (nlist[prio]->priority < ssid->priority) {
2632 os_memmove(&nlist[prio + 1], &nlist[prio],
2633 (config->num_prio - prio) *
2634 sizeof(struct wpa_ssid *));
2635 break;
2636 }
2637 }
2638
2639 nlist[prio] = ssid;
2640 config->num_prio++;
2641 config->pssid = nlist;
2642
2643 return 0;
2644 }
2645
2646
2647 /**
2648 * wpa_config_update_prio_list - Update network priority list
2649 * @config: Configuration data from wpa_config_read()
2650 * Returns: 0 on success, -1 on failure
2651 *
2652 * This function is called to update the priority list of networks in the
2653 * configuration when a network is being added or removed. This is also called
2654 * if a priority for a network is changed.
2655 */
2656 int wpa_config_update_prio_list(struct wpa_config *config)
2657 {
2658 struct wpa_ssid *ssid;
2659 int ret = 0;
2660
2661 os_free(config->pssid);
2662 config->pssid = NULL;
2663 config->num_prio = 0;
2664
2665 ssid = config->ssid;
2666 while (ssid) {
2667 ssid->pnext = NULL;
2668 if (wpa_config_add_prio_network(config, ssid) < 0)
2669 ret = -1;
2670 ssid = ssid->next;
2671 }
2672
2673 return ret;
2674 }
2675
2676
2677 #ifdef IEEE8021X_EAPOL
2678
2679 static void eap_peer_config_free_cert(struct eap_peer_cert_config *cert)
2680 {
2681 os_free(cert->ca_cert);
2682 os_free(cert->ca_path);
2683 os_free(cert->client_cert);
2684 os_free(cert->private_key);
2685 str_clear_free(cert->private_key_passwd);
2686 os_free(cert->dh_file);
2687 os_free(cert->subject_match);
2688 os_free(cert->check_cert_subject);
2689 os_free(cert->altsubject_match);
2690 os_free(cert->domain_suffix_match);
2691 os_free(cert->domain_match);
2692 str_clear_free(cert->pin);
2693 os_free(cert->engine_id);
2694 os_free(cert->key_id);
2695 os_free(cert->cert_id);
2696 os_free(cert->ca_cert_id);
2697 }
2698
2699
2700 static void eap_peer_config_free(struct eap_peer_config *eap)
2701 {
2702 os_free(eap->eap_methods);
2703 bin_clear_free(eap->identity, eap->identity_len);
2704 os_free(eap->anonymous_identity);
2705 os_free(eap->imsi_identity);
2706 os_free(eap->machine_identity);
2707 bin_clear_free(eap->password, eap->password_len);
2708 bin_clear_free(eap->machine_password, eap->machine_password_len);
2709 eap_peer_config_free_cert(&eap->cert);
2710 eap_peer_config_free_cert(&eap->phase2_cert);
2711 eap_peer_config_free_cert(&eap->machine_cert);
2712 os_free(eap->phase1);
2713 os_free(eap->phase2);
2714 os_free(eap->machine_phase2);
2715 os_free(eap->pcsc);
2716 os_free(eap->otp);
2717 os_free(eap->pending_req_otp);
2718 os_free(eap->pac_file);
2719 bin_clear_free(eap->new_password, eap->new_password_len);
2720 str_clear_free(eap->external_sim_resp);
2721 os_free(eap->openssl_ciphers);
2722 }
2723
2724 #endif /* IEEE8021X_EAPOL */
2725
2726
2727 /**
2728 * wpa_config_free_ssid - Free network/ssid configuration data
2729 * @ssid: Configuration data for the network
2730 *
2731 * This function frees all resources allocated for the network configuration
2732 * data.
2733 */
2734 void wpa_config_free_ssid(struct wpa_ssid *ssid)
2735 {
2736 struct psk_list_entry *psk;
2737
2738 os_free(ssid->ssid);
2739 str_clear_free(ssid->passphrase);
2740 os_free(ssid->ext_psk);
2741 str_clear_free(ssid->sae_password);
2742 os_free(ssid->sae_password_id);
2743 #ifdef IEEE8021X_EAPOL
2744 eap_peer_config_free(&ssid->eap);
2745 #endif /* IEEE8021X_EAPOL */
2746 os_free(ssid->id_str);
2747 os_free(ssid->scan_freq);
2748 os_free(ssid->freq_list);
2749 os_free(ssid->bgscan);
2750 os_free(ssid->p2p_client_list);
2751 os_free(ssid->bssid_blacklist);
2752 os_free(ssid->bssid_whitelist);
2753 #ifdef CONFIG_HT_OVERRIDES
2754 os_free(ssid->ht_mcs);
2755 #endif /* CONFIG_HT_OVERRIDES */
2756 #ifdef CONFIG_MESH
2757 os_free(ssid->mesh_basic_rates);
2758 #endif /* CONFIG_MESH */
2759 #ifdef CONFIG_HS20
2760 os_free(ssid->roaming_consortium_selection);
2761 #endif /* CONFIG_HS20 */
2762 os_free(ssid->dpp_connector);
2763 bin_clear_free(ssid->dpp_netaccesskey, ssid->dpp_netaccesskey_len);
2764 os_free(ssid->dpp_csign);
2765 while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
2766 list))) {
2767 dl_list_del(&psk->list);
2768 bin_clear_free(psk, sizeof(*psk));
2769 }
2770 #ifdef CONFIG_SAE
2771 sae_deinit_pt(ssid->pt);
2772 #endif /* CONFIG_SAE */
2773 bin_clear_free(ssid, sizeof(*ssid));
2774 }
2775
2776
2777 void wpa_config_free_cred(struct wpa_cred *cred)
2778 {
2779 size_t i;
2780
2781 os_free(cred->realm);
2782 str_clear_free(cred->username);
2783 str_clear_free(cred->password);
2784 os_free(cred->ca_cert);
2785 os_free(cred->client_cert);
2786 os_free(cred->private_key);
2787 str_clear_free(cred->private_key_passwd);
2788 os_free(cred->imsi);
2789 str_clear_free(cred->milenage);
2790 for (i = 0; i < cred->num_domain; i++)
2791 os_free(cred->domain[i]);
2792 os_free(cred->domain);
2793 os_free(cred->domain_suffix_match);
2794 os_free(cred->eap_method);
2795 os_free(cred->phase1);
2796 os_free(cred->phase2);
2797 os_free(cred->excluded_ssid);
2798 os_free(cred->roaming_partner);
2799 os_free(cred->provisioning_sp);
2800 for (i = 0; i < cred->num_req_conn_capab; i++)
2801 os_free(cred->req_conn_capab_port[i]);
2802 os_free(cred->req_conn_capab_port);
2803 os_free(cred->req_conn_capab_proto);
2804 os_free(cred);
2805 }
2806
2807
2808 void wpa_config_flush_blobs(struct wpa_config *config)
2809 {
2810 #ifndef CONFIG_NO_CONFIG_BLOBS
2811 struct wpa_config_blob *blob, *prev;
2812
2813 blob = config->blobs;
2814 config->blobs = NULL;
2815 while (blob) {
2816 prev = blob;
2817 blob = blob->next;
2818 wpa_config_free_blob(prev);
2819 }
2820 #endif /* CONFIG_NO_CONFIG_BLOBS */
2821 }
2822
2823
2824 /**
2825 * wpa_config_free - Free configuration data
2826 * @config: Configuration data from wpa_config_read()
2827 *
2828 * This function frees all resources allocated for the configuration data by
2829 * wpa_config_read().
2830 */
2831 void wpa_config_free(struct wpa_config *config)
2832 {
2833 struct wpa_ssid *ssid, *prev = NULL;
2834 struct wpa_cred *cred, *cprev;
2835 int i;
2836
2837 ssid = config->ssid;
2838 while (ssid) {
2839 prev = ssid;
2840 ssid = ssid->next;
2841 wpa_config_free_ssid(prev);
2842 }
2843
2844 cred = config->cred;
2845 while (cred) {
2846 cprev = cred;
2847 cred = cred->next;
2848 wpa_config_free_cred(cprev);
2849 }
2850
2851 wpa_config_flush_blobs(config);
2852
2853 wpabuf_free(config->wps_vendor_ext_m1);
2854 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++)
2855 wpabuf_free(config->wps_vendor_ext[i]);
2856 os_free(config->ctrl_interface);
2857 os_free(config->ctrl_interface_group);
2858 os_free(config->opensc_engine_path);
2859 os_free(config->pkcs11_engine_path);
2860 os_free(config->pkcs11_module_path);
2861 os_free(config->openssl_ciphers);
2862 os_free(config->pcsc_reader);
2863 str_clear_free(config->pcsc_pin);
2864 os_free(config->driver_param);
2865 os_free(config->device_name);
2866 os_free(config->manufacturer);
2867 os_free(config->model_name);
2868 os_free(config->model_number);
2869 os_free(config->serial_number);
2870 os_free(config->config_methods);
2871 os_free(config->p2p_ssid_postfix);
2872 os_free(config->pssid);
2873 os_free(config->p2p_pref_chan);
2874 os_free(config->p2p_no_go_freq.range);
2875 os_free(config->autoscan);
2876 os_free(config->freq_list);
2877 wpabuf_free(config->wps_nfc_dh_pubkey);
2878 wpabuf_free(config->wps_nfc_dh_privkey);
2879 wpabuf_free(config->wps_nfc_dev_pw);
2880 os_free(config->ext_password_backend);
2881 os_free(config->sae_groups);
2882 wpabuf_free(config->ap_vendor_elements);
2883 os_free(config->osu_dir);
2884 os_free(config->bgscan);
2885 os_free(config->wowlan_triggers);
2886 os_free(config->fst_group_id);
2887 os_free(config->sched_scan_plans);
2888 #ifdef CONFIG_MBO
2889 os_free(config->non_pref_chan);
2890 #endif /* CONFIG_MBO */
2891 os_free(config->dpp_name);
2892 os_free(config->dpp_mud_url);
2893
2894 os_free(config);
2895 }
2896
2897
2898 /**
2899 * wpa_config_foreach_network - Iterate over each configured network
2900 * @config: Configuration data from wpa_config_read()
2901 * @func: Callback function to process each network
2902 * @arg: Opaque argument to pass to callback function
2903 *
2904 * Iterate over the set of configured networks calling the specified
2905 * function for each item. We guard against callbacks removing the
2906 * supplied network.
2907 */
2908 void wpa_config_foreach_network(struct wpa_config *config,
2909 void (*func)(void *, struct wpa_ssid *),
2910 void *arg)
2911 {
2912 struct wpa_ssid *ssid, *next;
2913
2914 ssid = config->ssid;
2915 while (ssid) {
2916 next = ssid->next;
2917 func(arg, ssid);
2918 ssid = next;
2919 }
2920 }
2921
2922
2923 /**
2924 * wpa_config_get_network - Get configured network based on id
2925 * @config: Configuration data from wpa_config_read()
2926 * @id: Unique network id to search for
2927 * Returns: Network configuration or %NULL if not found
2928 */
2929 struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
2930 {
2931 struct wpa_ssid *ssid;
2932
2933 ssid = config->ssid;
2934 while (ssid) {
2935 if (id == ssid->id)
2936 break;
2937 ssid = ssid->next;
2938 }
2939
2940 return ssid;
2941 }
2942
2943
2944 /**
2945 * wpa_config_add_network - Add a new network with empty configuration
2946 * @config: Configuration data from wpa_config_read()
2947 * Returns: The new network configuration or %NULL if operation failed
2948 */
2949 struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
2950 {
2951 int id;
2952 struct wpa_ssid *ssid, *last = NULL;
2953
2954 id = -1;
2955 ssid = config->ssid;
2956 while (ssid) {
2957 if (ssid->id > id)
2958 id = ssid->id;
2959 last = ssid;
2960 ssid = ssid->next;
2961 }
2962 id++;
2963
2964 ssid = os_zalloc(sizeof(*ssid));
2965 if (ssid == NULL)
2966 return NULL;
2967 ssid->id = id;
2968 dl_list_init(&ssid->psk_list);
2969 if (last)
2970 last->next = ssid;
2971 else
2972 config->ssid = ssid;
2973
2974 wpa_config_update_prio_list(config);
2975
2976 return ssid;
2977 }
2978
2979
2980 /**
2981 * wpa_config_remove_network - Remove a configured network based on id
2982 * @config: Configuration data from wpa_config_read()
2983 * @id: Unique network id to search for
2984 * Returns: 0 on success, or -1 if the network was not found
2985 */
2986 int wpa_config_remove_network(struct wpa_config *config, int id)
2987 {
2988 struct wpa_ssid *ssid, *prev = NULL;
2989
2990 ssid = config->ssid;
2991 while (ssid) {
2992 if (id == ssid->id)
2993 break;
2994 prev = ssid;
2995 ssid = ssid->next;
2996 }
2997
2998 if (ssid == NULL)
2999 return -1;
3000
3001 if (prev)
3002 prev->next = ssid->next;
3003 else
3004 config->ssid = ssid->next;
3005
3006 wpa_config_update_prio_list(config);
3007 wpa_config_free_ssid(ssid);
3008 return 0;
3009 }
3010
3011
3012 /**
3013 * wpa_config_set_network_defaults - Set network default values
3014 * @ssid: Pointer to network configuration data
3015 */
3016 void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
3017 {
3018 ssid->proto = DEFAULT_PROTO;
3019 ssid->pairwise_cipher = DEFAULT_PAIRWISE;
3020 ssid->group_cipher = DEFAULT_GROUP;
3021 ssid->key_mgmt = DEFAULT_KEY_MGMT;
3022 ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
3023 ssid->ht = 1;
3024 #ifdef IEEE8021X_EAPOL
3025 ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
3026 ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
3027 ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
3028 ssid->eap.sim_num = DEFAULT_USER_SELECTED_SIM;
3029 #endif /* IEEE8021X_EAPOL */
3030 #ifdef CONFIG_MESH
3031 ssid->dot11MeshMaxRetries = DEFAULT_MESH_MAX_RETRIES;
3032 ssid->dot11MeshRetryTimeout = DEFAULT_MESH_RETRY_TIMEOUT;
3033 ssid->dot11MeshConfirmTimeout = DEFAULT_MESH_CONFIRM_TIMEOUT;
3034 ssid->dot11MeshHoldingTimeout = DEFAULT_MESH_HOLDING_TIMEOUT;
3035 ssid->mesh_rssi_threshold = DEFAULT_MESH_RSSI_THRESHOLD;
3036 #endif /* CONFIG_MESH */
3037 #ifdef CONFIG_HT_OVERRIDES
3038 ssid->disable_ht = DEFAULT_DISABLE_HT;
3039 ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
3040 ssid->disable_sgi = DEFAULT_DISABLE_SGI;
3041 ssid->disable_ldpc = DEFAULT_DISABLE_LDPC;
3042 ssid->tx_stbc = DEFAULT_TX_STBC;
3043 ssid->rx_stbc = DEFAULT_RX_STBC;
3044 ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
3045 ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
3046 ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
3047 #endif /* CONFIG_HT_OVERRIDES */
3048 #ifdef CONFIG_VHT_OVERRIDES
3049 ssid->vht_rx_mcs_nss_1 = -1;
3050 ssid->vht_rx_mcs_nss_2 = -1;
3051 ssid->vht_rx_mcs_nss_3 = -1;
3052 ssid->vht_rx_mcs_nss_4 = -1;
3053 ssid->vht_rx_mcs_nss_5 = -1;
3054 ssid->vht_rx_mcs_nss_6 = -1;
3055 ssid->vht_rx_mcs_nss_7 = -1;
3056 ssid->vht_rx_mcs_nss_8 = -1;
3057 ssid->vht_tx_mcs_nss_1 = -1;
3058 ssid->vht_tx_mcs_nss_2 = -1;
3059 ssid->vht_tx_mcs_nss_3 = -1;
3060 ssid->vht_tx_mcs_nss_4 = -1;
3061 ssid->vht_tx_mcs_nss_5 = -1;
3062 ssid->vht_tx_mcs_nss_6 = -1;
3063 ssid->vht_tx_mcs_nss_7 = -1;
3064 ssid->vht_tx_mcs_nss_8 = -1;
3065 #endif /* CONFIG_VHT_OVERRIDES */
3066 ssid->proactive_key_caching = -1;
3067 ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
3068 #ifdef CONFIG_MACSEC
3069 ssid->mka_priority = DEFAULT_PRIO_NOT_KEY_SERVER;
3070 #endif /* CONFIG_MACSEC */
3071 ssid->mac_addr = -1;
3072 ssid->max_oper_chwidth = DEFAULT_MAX_OPER_CHWIDTH;
3073 }
3074
3075
3076 /**
3077 * wpa_config_set - Set a variable in network configuration
3078 * @ssid: Pointer to network configuration data
3079 * @var: Variable name, e.g., "ssid"
3080 * @value: Variable value
3081 * @line: Line number in configuration file or 0 if not used
3082 * Returns: 0 on success with possible change in the value, 1 on success with
3083 * no change to previously configured value, or -1 on failure
3084 *
3085 * This function can be used to set network configuration variables based on
3086 * both the configuration file and management interface input. The value
3087 * parameter must be in the same format as the text-based configuration file is
3088 * using. For example, strings are using double quotation marks.
3089 */
3090 int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
3091 int line)
3092 {
3093 size_t i;
3094 int ret = 0;
3095
3096 if (ssid == NULL || var == NULL || value == NULL)
3097 return -1;
3098
3099 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3100 const struct parse_data *field = &ssid_fields[i];
3101 if (os_strcmp(var, field->name) != 0)
3102 continue;
3103
3104 ret = field->parser(field, ssid, line, value);
3105 if (ret < 0) {
3106 if (line) {
3107 wpa_printf(MSG_ERROR, "Line %d: failed to "
3108 "parse %s '%s'.", line, var, value);
3109 }
3110 ret = -1;
3111 }
3112 #ifdef CONFIG_SAE
3113 if (os_strcmp(var, "ssid") == 0 ||
3114 os_strcmp(var, "psk") == 0 ||
3115 os_strcmp(var, "sae_password") == 0 ||
3116 os_strcmp(var, "sae_password_id") == 0) {
3117 sae_deinit_pt(ssid->pt);
3118 ssid->pt = NULL;
3119 }
3120 #endif /* CONFIG_SAE */
3121 break;
3122 }
3123 if (i == NUM_SSID_FIELDS) {
3124 if (line) {
3125 wpa_printf(MSG_ERROR, "Line %d: unknown network field "
3126 "'%s'.", line, var);
3127 }
3128 ret = -1;
3129 }
3130
3131 return ret;
3132 }
3133
3134
3135 int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
3136 const char *value)
3137 {
3138 size_t len;
3139 char *buf;
3140 int ret;
3141
3142 len = os_strlen(value);
3143 buf = os_malloc(len + 3);
3144 if (buf == NULL)
3145 return -1;
3146 buf[0] = '"';
3147 os_memcpy(buf + 1, value, len);
3148 buf[len + 1] = '"';
3149 buf[len + 2] = '\0';
3150 ret = wpa_config_set(ssid, var, buf, 0);
3151 os_free(buf);
3152 return ret;
3153 }
3154
3155
3156 /**
3157 * wpa_config_get_all - Get all options from network configuration
3158 * @ssid: Pointer to network configuration data
3159 * @get_keys: Determines if keys/passwords will be included in returned list
3160 * (if they may be exported)
3161 * Returns: %NULL terminated list of all set keys and their values in the form
3162 * of [key1, val1, key2, val2, ... , NULL]
3163 *
3164 * This function can be used to get list of all configured network properties.
3165 * The caller is responsible for freeing the returned list and all its
3166 * elements.
3167 */
3168 char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
3169 {
3170 #ifdef NO_CONFIG_WRITE
3171 return NULL;
3172 #else /* NO_CONFIG_WRITE */
3173 const struct parse_data *field;
3174 char *key, *value;
3175 size_t i;
3176 char **props;
3177 int fields_num;
3178
3179 get_keys = get_keys && ssid->export_keys;
3180
3181 props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
3182 if (!props)
3183 return NULL;
3184
3185 fields_num = 0;
3186 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3187 field = &ssid_fields[i];
3188 if (field->key_data && !get_keys)
3189 continue;
3190 value = field->writer(field, ssid);
3191 if (value == NULL)
3192 continue;
3193 if (os_strlen(value) == 0) {
3194 os_free(value);
3195 continue;
3196 }
3197
3198 key = os_strdup(field->name);
3199 if (key == NULL) {
3200 os_free(value);
3201 goto err;
3202 }
3203
3204 props[fields_num * 2] = key;
3205 props[fields_num * 2 + 1] = value;
3206
3207 fields_num++;
3208 }
3209
3210 return props;
3211
3212 err:
3213 for (i = 0; props[i]; i++)
3214 os_free(props[i]);
3215 os_free(props);
3216 return NULL;
3217 #endif /* NO_CONFIG_WRITE */
3218 }
3219
3220
3221 #ifndef NO_CONFIG_WRITE
3222 /**
3223 * wpa_config_get - Get a variable in network configuration
3224 * @ssid: Pointer to network configuration data
3225 * @var: Variable name, e.g., "ssid"
3226 * Returns: Value of the variable or %NULL on failure
3227 *
3228 * This function can be used to get network configuration variables. The
3229 * returned value is a copy of the configuration variable in text format, i.e,.
3230 * the same format that the text-based configuration file and wpa_config_set()
3231 * are using for the value. The caller is responsible for freeing the returned
3232 * value.
3233 */
3234 char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
3235 {
3236 size_t i;
3237
3238 if (ssid == NULL || var == NULL)
3239 return NULL;
3240
3241 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3242 const struct parse_data *field = &ssid_fields[i];
3243 if (os_strcmp(var, field->name) == 0) {
3244 char *ret = field->writer(field, ssid);
3245
3246 if (ret && has_newline(ret)) {
3247 wpa_printf(MSG_ERROR,
3248 "Found newline in value for %s; not returning it",
3249 var);
3250 os_free(ret);
3251 ret = NULL;
3252 }
3253
3254 return ret;
3255 }
3256 }
3257
3258 return NULL;
3259 }
3260
3261
3262 /**
3263 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
3264 * @ssid: Pointer to network configuration data
3265 * @var: Variable name, e.g., "ssid"
3266 * Returns: Value of the variable or %NULL on failure
3267 *
3268 * This function can be used to get network configuration variable like
3269 * wpa_config_get(). The only difference is that this functions does not expose
3270 * key/password material from the configuration. In case a key/password field
3271 * is requested, the returned value is an empty string or %NULL if the variable
3272 * is not set or "*" if the variable is set (regardless of its value). The
3273 * returned value is a copy of the configuration variable in text format, i.e,.
3274 * the same format that the text-based configuration file and wpa_config_set()
3275 * are using for the value. The caller is responsible for freeing the returned
3276 * value.
3277 */
3278 char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
3279 {
3280 size_t i;
3281
3282 if (ssid == NULL || var == NULL)
3283 return NULL;
3284
3285 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3286 const struct parse_data *field = &ssid_fields[i];
3287 if (os_strcmp(var, field->name) == 0) {
3288 char *res = field->writer(field, ssid);
3289 if (field->key_data) {
3290 if (res && res[0]) {
3291 wpa_printf(MSG_DEBUG, "Do not allow "
3292 "key_data field to be "
3293 "exposed");
3294 str_clear_free(res);
3295 return os_strdup("*");
3296 }
3297
3298 os_free(res);
3299 return NULL;
3300 }
3301 return res;
3302 }
3303 }
3304
3305 return NULL;
3306 }
3307 #endif /* NO_CONFIG_WRITE */
3308
3309
3310 /**
3311 * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
3312 * @ssid: Pointer to network configuration data
3313 *
3314 * This function must be called to update WPA PSK when either SSID or the
3315 * passphrase has changed for the network configuration.
3316 */
3317 void wpa_config_update_psk(struct wpa_ssid *ssid)
3318 {
3319 #ifndef CONFIG_NO_PBKDF2
3320 pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
3321 ssid->psk, PMK_LEN);
3322 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
3323 ssid->psk, PMK_LEN);
3324 ssid->psk_set = 1;
3325 #endif /* CONFIG_NO_PBKDF2 */
3326 }
3327
3328
3329 static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
3330 const char *value)
3331 {
3332 u8 *proto;
3333 int **port;
3334 int *ports, *nports;
3335 const char *pos;
3336 unsigned int num_ports;
3337
3338 proto = os_realloc_array(cred->req_conn_capab_proto,
3339 cred->num_req_conn_capab + 1, sizeof(u8));
3340 if (proto == NULL)
3341 return -1;
3342 cred->req_conn_capab_proto = proto;
3343
3344 port = os_realloc_array(cred->req_conn_capab_port,
3345 cred->num_req_conn_capab + 1, sizeof(int *));
3346 if (port == NULL)
3347 return -1;
3348 cred->req_conn_capab_port = port;
3349
3350 proto[cred->num_req_conn_capab] = atoi(value);
3351
3352 pos = os_strchr(value, ':');
3353 if (pos == NULL) {
3354 port[cred->num_req_conn_capab] = NULL;
3355 cred->num_req_conn_capab++;
3356 return 0;
3357 }
3358 pos++;
3359
3360 ports = NULL;
3361 num_ports = 0;
3362
3363 while (*pos) {
3364 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3365 if (nports == NULL) {
3366 os_free(ports);
3367 return -1;
3368 }
3369 ports = nports;
3370 ports[num_ports++] = atoi(pos);
3371
3372 pos = os_strchr(pos, ',');
3373 if (pos == NULL)
3374 break;
3375 pos++;
3376 }
3377
3378 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3379 if (nports == NULL) {
3380 os_free(ports);
3381 return -1;
3382 }
3383 ports = nports;
3384 ports[num_ports] = -1;
3385
3386 port[cred->num_req_conn_capab] = ports;
3387 cred->num_req_conn_capab++;
3388 return 0;
3389 }
3390
3391
3392 static int wpa_config_set_cred_roaming_consortiums(struct wpa_cred *cred,
3393 const char *value)
3394 {
3395 u8 roaming_consortiums[MAX_ROAMING_CONS][MAX_ROAMING_CONS_OI_LEN];
3396 size_t roaming_consortiums_len[MAX_ROAMING_CONS];
3397 unsigned int num_roaming_consortiums = 0;
3398 const char *pos, *end;
3399 size_t len;
3400
3401 os_memset(roaming_consortiums, 0, sizeof(roaming_consortiums));
3402 os_memset(roaming_consortiums_len, 0, sizeof(roaming_consortiums_len));
3403
3404 for (pos = value;;) {
3405 end = os_strchr(pos, ',');
3406 len = end ? (size_t) (end - pos) : os_strlen(pos);
3407 if (!end && len == 0)
3408 break;
3409 if (len == 0 || (len & 1) != 0 ||
3410 len / 2 > MAX_ROAMING_CONS_OI_LEN ||
3411 hexstr2bin(pos,
3412 roaming_consortiums[num_roaming_consortiums],
3413 len / 2) < 0) {
3414 wpa_printf(MSG_INFO,
3415 "Invalid roaming_consortiums entry: %s",
3416 pos);
3417 return -1;
3418 }
3419 roaming_consortiums_len[num_roaming_consortiums] = len / 2;
3420 num_roaming_consortiums++;
3421
3422 if (!end)
3423 break;
3424
3425 if (num_roaming_consortiums >= MAX_ROAMING_CONS) {
3426 wpa_printf(MSG_INFO,
3427 "Too many roaming_consortiums OIs");
3428 return -1;
3429 }
3430
3431 pos = end + 1;
3432 }
3433
3434 os_memcpy(cred->roaming_consortiums, roaming_consortiums,
3435 sizeof(roaming_consortiums));
3436 os_memcpy(cred->roaming_consortiums_len, roaming_consortiums_len,
3437 sizeof(roaming_consortiums_len));
3438 cred->num_roaming_consortiums = num_roaming_consortiums;
3439
3440 return 0;
3441 }
3442
3443
3444 int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
3445 const char *value, int line)
3446 {
3447 char *val;
3448 size_t len;
3449 int res;
3450
3451 if (os_strcmp(var, "temporary") == 0) {
3452 cred->temporary = atoi(value);
3453 return 0;
3454 }
3455
3456 if (os_strcmp(var, "priority") == 0) {
3457 cred->priority = atoi(value);
3458 return 0;
3459 }
3460
3461 if (os_strcmp(var, "sp_priority") == 0) {
3462 int prio = atoi(value);
3463 if (prio < 0 || prio > 255)
3464 return -1;
3465 cred->sp_priority = prio;
3466 return 0;
3467 }
3468
3469 if (os_strcmp(var, "pcsc") == 0) {
3470 cred->pcsc = atoi(value);
3471 return 0;
3472 }
3473
3474 if (os_strcmp(var, "eap") == 0) {
3475 struct eap_method_type method;
3476 method.method = eap_peer_get_type(value, &method.vendor);
3477 if (method.vendor == EAP_VENDOR_IETF &&
3478 method.method == EAP_TYPE_NONE) {
3479 wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
3480 "for a credential", line, value);
3481 return -1;
3482 }
3483 os_free(cred->eap_method);
3484 cred->eap_method = os_malloc(sizeof(*cred->eap_method));
3485 if (cred->eap_method == NULL)
3486 return -1;
3487 os_memcpy(cred->eap_method, &method, sizeof(method));
3488 return 0;
3489 }
3490
3491 if (os_strcmp(var, "password") == 0 &&
3492 os_strncmp(value, "ext:", 4) == 0) {
3493 if (has_newline(value))
3494 return -1;
3495 str_clear_free(cred->password);
3496 cred->password = os_strdup(value);
3497 cred->ext_password = 1;
3498 return 0;
3499 }
3500
3501 if (os_strcmp(var, "update_identifier") == 0) {
3502 cred->update_identifier = atoi(value);
3503 return 0;
3504 }
3505
3506 if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
3507 cred->min_dl_bandwidth_home = atoi(value);
3508 return 0;
3509 }
3510
3511 if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
3512 cred->min_ul_bandwidth_home = atoi(value);
3513 return 0;
3514 }
3515
3516 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
3517 cred->min_dl_bandwidth_roaming = atoi(value);
3518 return 0;
3519 }
3520
3521 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
3522 cred->min_ul_bandwidth_roaming = atoi(value);
3523 return 0;
3524 }
3525
3526 if (os_strcmp(var, "max_bss_load") == 0) {
3527 cred->max_bss_load = atoi(value);
3528 return 0;
3529 }
3530
3531 if (os_strcmp(var, "req_conn_capab") == 0)
3532 return wpa_config_set_cred_req_conn_capab(cred, value);
3533
3534 if (os_strcmp(var, "ocsp") == 0) {
3535 cred->ocsp = atoi(value);
3536 return 0;
3537 }
3538
3539 if (os_strcmp(var, "sim_num") == 0) {
3540 cred->sim_num = atoi(value);
3541 return 0;
3542 }
3543
3544 val = wpa_config_parse_string(value, &len);
3545 if (val == NULL ||
3546 (os_strcmp(var, "excluded_ssid") != 0 &&
3547 os_strcmp(var, "roaming_consortium") != 0 &&
3548 os_strcmp(var, "required_roaming_consortium") != 0 &&
3549 has_newline(val))) {
3550 wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
3551 "value '%s'.", line, var, value);
3552 os_free(val);
3553 return -1;
3554 }
3555
3556 if (os_strcmp(var, "realm") == 0) {
3557 os_free(cred->realm);
3558 cred->realm = val;
3559 return 0;
3560 }
3561
3562 if (os_strcmp(var, "username") == 0) {
3563 str_clear_free(cred->username);
3564 cred->username = val;
3565 return 0;
3566 }
3567
3568 if (os_strcmp(var, "password") == 0) {
3569 str_clear_free(cred->password);
3570 cred->password = val;
3571 cred->ext_password = 0;
3572 return 0;
3573 }
3574
3575 if (os_strcmp(var, "ca_cert") == 0) {
3576 os_free(cred->ca_cert);
3577 cred->ca_cert = val;
3578 return 0;
3579 }
3580
3581 if (os_strcmp(var, "client_cert") == 0) {
3582 os_free(cred->client_cert);
3583 cred->client_cert = val;
3584 return 0;
3585 }
3586
3587 if (os_strcmp(var, "private_key") == 0) {
3588 os_free(cred->private_key);
3589 cred->private_key = val;
3590 return 0;
3591 }
3592
3593 if (os_strcmp(var, "private_key_passwd") == 0) {
3594 str_clear_free(cred->private_key_passwd);
3595 cred->private_key_passwd = val;
3596 return 0;
3597 }
3598
3599 if (os_strcmp(var, "imsi") == 0) {
3600 os_free(cred->imsi);
3601 cred->imsi = val;
3602 return 0;
3603 }
3604
3605 if (os_strcmp(var, "milenage") == 0) {
3606 str_clear_free(cred->milenage);
3607 cred->milenage = val;
3608 return 0;
3609 }
3610
3611 if (os_strcmp(var, "domain_suffix_match") == 0) {
3612 os_free(cred->domain_suffix_match);
3613 cred->domain_suffix_match = val;
3614 return 0;
3615 }
3616
3617 if (os_strcmp(var, "domain") == 0) {
3618 char **new_domain;
3619 new_domain = os_realloc_array(cred->domain,
3620 cred->num_domain + 1,
3621 sizeof(char *));
3622 if (new_domain == NULL) {
3623 os_free(val);
3624 return -1;
3625 }
3626 new_domain[cred->num_domain++] = val;
3627 cred->domain = new_domain;
3628 return 0;
3629 }
3630
3631 if (os_strcmp(var, "phase1") == 0) {
3632 os_free(cred->phase1);
3633 cred->phase1 = val;
3634 return 0;
3635 }
3636
3637 if (os_strcmp(var, "phase2") == 0) {
3638 os_free(cred->phase2);
3639 cred->phase2 = val;
3640 return 0;
3641 }
3642
3643 if (os_strcmp(var, "roaming_consortium") == 0) {
3644 if (len < 3 || len > sizeof(cred->roaming_consortium)) {
3645 wpa_printf(MSG_ERROR, "Line %d: invalid "
3646 "roaming_consortium length %d (3..15 "
3647 "expected)", line, (int) len);
3648 os_free(val);
3649 return -1;
3650 }
3651 os_memcpy(cred->roaming_consortium, val, len);
3652 cred->roaming_consortium_len = len;
3653 os_free(val);
3654 return 0;
3655 }
3656
3657 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3658 if (len < 3 || len > sizeof(cred->required_roaming_consortium))
3659 {
3660 wpa_printf(MSG_ERROR, "Line %d: invalid "
3661 "required_roaming_consortium length %d "
3662 "(3..15 expected)", line, (int) len);
3663 os_free(val);
3664 return -1;
3665 }
3666 os_memcpy(cred->required_roaming_consortium, val, len);
3667 cred->required_roaming_consortium_len = len;
3668 os_free(val);
3669 return 0;
3670 }
3671
3672 if (os_strcmp(var, "roaming_consortiums") == 0) {
3673 res = wpa_config_set_cred_roaming_consortiums(cred, val);
3674 if (res < 0)
3675 wpa_printf(MSG_ERROR,
3676 "Line %d: invalid roaming_consortiums",
3677 line);
3678 os_free(val);
3679 return res;
3680 }
3681
3682 if (os_strcmp(var, "excluded_ssid") == 0) {
3683 struct excluded_ssid *e;
3684
3685 if (len > SSID_MAX_LEN) {
3686 wpa_printf(MSG_ERROR, "Line %d: invalid "
3687 "excluded_ssid length %d", line, (int) len);
3688 os_free(val);
3689 return -1;
3690 }
3691
3692 e = os_realloc_array(cred->excluded_ssid,
3693 cred->num_excluded_ssid + 1,
3694 sizeof(struct excluded_ssid));
3695 if (e == NULL) {
3696 os_free(val);
3697 return -1;
3698 }
3699 cred->excluded_ssid = e;
3700
3701 e = &cred->excluded_ssid[cred->num_excluded_ssid++];
3702 os_memcpy(e->ssid, val, len);
3703 e->ssid_len = len;
3704
3705 os_free(val);
3706
3707 return 0;
3708 }
3709
3710 if (os_strcmp(var, "roaming_partner") == 0) {
3711 struct roaming_partner *p;
3712 char *pos;
3713
3714 p = os_realloc_array(cred->roaming_partner,
3715 cred->num_roaming_partner + 1,
3716 sizeof(struct roaming_partner));
3717 if (p == NULL) {
3718 os_free(val);
3719 return -1;
3720 }
3721 cred->roaming_partner = p;
3722
3723 p = &cred->roaming_partner[cred->num_roaming_partner];
3724
3725 pos = os_strchr(val, ',');
3726 if (pos == NULL) {
3727 os_free(val);
3728 return -1;
3729 }
3730 *pos++ = '\0';
3731 if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
3732 os_free(val);
3733 return -1;
3734 }
3735 os_memcpy(p->fqdn, val, pos - val);
3736
3737 p->exact_match = atoi(pos);
3738
3739 pos = os_strchr(pos, ',');
3740 if (pos == NULL) {
3741 os_free(val);
3742 return -1;
3743 }
3744 *pos++ = '\0';
3745
3746 p->priority = atoi(pos);
3747
3748 pos = os_strchr(pos, ',');
3749 if (pos == NULL) {
3750 os_free(val);
3751 return -1;
3752 }
3753 *pos++ = '\0';
3754
3755 if (os_strlen(pos) >= sizeof(p->country)) {
3756 os_free(val);
3757 return -1;
3758 }
3759 os_memcpy(p->country, pos, os_strlen(pos) + 1);
3760
3761 cred->num_roaming_partner++;
3762 os_free(val);
3763
3764 return 0;
3765 }
3766
3767 if (os_strcmp(var, "provisioning_sp") == 0) {
3768 os_free(cred->provisioning_sp);
3769 cred->provisioning_sp = val;
3770 return 0;
3771 }
3772
3773 if (line) {
3774 wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
3775 line, var);
3776 }
3777
3778 os_free(val);
3779
3780 return -1;
3781 }
3782
3783
3784 static char * alloc_int_str(int val)
3785 {
3786 const unsigned int bufsize = 20;
3787 char *buf;
3788 int res;
3789
3790 buf = os_malloc(bufsize);
3791 if (buf == NULL)
3792 return NULL;
3793 res = os_snprintf(buf, bufsize, "%d", val);
3794 if (os_snprintf_error(bufsize, res)) {
3795 os_free(buf);
3796 buf = NULL;
3797 }
3798 return buf;
3799 }
3800
3801
3802 static char * alloc_strdup(const char *str)
3803 {
3804 if (str == NULL)
3805 return NULL;
3806 return os_strdup(str);
3807 }
3808
3809
3810 char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var)
3811 {
3812 if (os_strcmp(var, "temporary") == 0)
3813 return alloc_int_str(cred->temporary);
3814
3815 if (os_strcmp(var, "priority") == 0)
3816 return alloc_int_str(cred->priority);
3817
3818 if (os_strcmp(var, "sp_priority") == 0)
3819 return alloc_int_str(cred->sp_priority);
3820
3821 if (os_strcmp(var, "pcsc") == 0)
3822 return alloc_int_str(cred->pcsc);
3823
3824 if (os_strcmp(var, "eap") == 0) {
3825 if (!cred->eap_method)
3826 return NULL;
3827 return alloc_strdup(eap_get_name(cred->eap_method[0].vendor,
3828 cred->eap_method[0].method));
3829 }
3830
3831 if (os_strcmp(var, "update_identifier") == 0)
3832 return alloc_int_str(cred->update_identifier);
3833
3834 if (os_strcmp(var, "min_dl_bandwidth_home") == 0)
3835 return alloc_int_str(cred->min_dl_bandwidth_home);
3836
3837 if (os_strcmp(var, "min_ul_bandwidth_home") == 0)
3838 return alloc_int_str(cred->min_ul_bandwidth_home);
3839
3840 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0)
3841 return alloc_int_str(cred->min_dl_bandwidth_roaming);
3842
3843 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0)
3844 return alloc_int_str(cred->min_ul_bandwidth_roaming);
3845
3846 if (os_strcmp(var, "max_bss_load") == 0)
3847 return alloc_int_str(cred->max_bss_load);
3848
3849 if (os_strcmp(var, "req_conn_capab") == 0) {
3850 unsigned int i;
3851 char *buf, *end, *pos;
3852 int ret;
3853
3854 if (!cred->num_req_conn_capab)
3855 return NULL;
3856
3857 buf = os_malloc(4000);
3858 if (buf == NULL)
3859 return NULL;
3860 pos = buf;
3861 end = pos + 4000;
3862 for (i = 0; i < cred->num_req_conn_capab; i++) {
3863 int *ports;
3864
3865 ret = os_snprintf(pos, end - pos, "%s%u",
3866 i > 0 ? "\n" : "",
3867 cred->req_conn_capab_proto[i]);
3868 if (os_snprintf_error(end - pos, ret))
3869 return buf;
3870 pos += ret;
3871
3872 ports = cred->req_conn_capab_port[i];
3873 if (ports) {
3874 int j;
3875 for (j = 0; ports[j] != -1; j++) {
3876 ret = os_snprintf(pos, end - pos,
3877 "%s%d",
3878 j > 0 ? "," : ":",
3879 ports[j]);
3880 if (os_snprintf_error(end - pos, ret))
3881 return buf;
3882 pos += ret;
3883 }
3884 }
3885 }
3886
3887 return buf;
3888 }
3889
3890 if (os_strcmp(var, "ocsp") == 0)
3891 return alloc_int_str(cred->ocsp);
3892
3893 if (os_strcmp(var, "realm") == 0)
3894 return alloc_strdup(cred->realm);
3895
3896 if (os_strcmp(var, "username") == 0)
3897 return alloc_strdup(cred->username);
3898
3899 if (os_strcmp(var, "password") == 0) {
3900 if (!cred->password)
3901 return NULL;
3902 return alloc_strdup("*");
3903 }
3904
3905 if (os_strcmp(var, "ca_cert") == 0)
3906 return alloc_strdup(cred->ca_cert);
3907
3908 if (os_strcmp(var, "client_cert") == 0)
3909 return alloc_strdup(cred->client_cert);
3910
3911 if (os_strcmp(var, "private_key") == 0)
3912 return alloc_strdup(cred->private_key);
3913
3914 if (os_strcmp(var, "private_key_passwd") == 0) {
3915 if (!cred->private_key_passwd)
3916 return NULL;
3917 return alloc_strdup("*");
3918 }
3919
3920 if (os_strcmp(var, "imsi") == 0)
3921 return alloc_strdup(cred->imsi);
3922
3923 if (os_strcmp(var, "milenage") == 0) {
3924 if (!(cred->milenage))
3925 return NULL;
3926 return alloc_strdup("*");
3927 }
3928
3929 if (os_strcmp(var, "domain_suffix_match") == 0)
3930 return alloc_strdup(cred->domain_suffix_match);
3931
3932 if (os_strcmp(var, "domain") == 0) {
3933 unsigned int i;
3934 char *buf, *end, *pos;
3935 int ret;
3936
3937 if (!cred->num_domain)
3938 return NULL;
3939
3940 buf = os_malloc(4000);
3941 if (buf == NULL)
3942 return NULL;
3943 pos = buf;
3944 end = pos + 4000;
3945
3946 for (i = 0; i < cred->num_domain; i++) {
3947 ret = os_snprintf(pos, end - pos, "%s%s",
3948 i > 0 ? "\n" : "", cred->domain[i]);
3949 if (os_snprintf_error(end - pos, ret))
3950 return buf;
3951 pos += ret;
3952 }
3953
3954 return buf;
3955 }
3956
3957 if (os_strcmp(var, "phase1") == 0)
3958 return alloc_strdup(cred->phase1);
3959
3960 if (os_strcmp(var, "phase2") == 0)
3961 return alloc_strdup(cred->phase2);
3962
3963 if (os_strcmp(var, "roaming_consortium") == 0) {
3964 size_t buflen;
3965 char *buf;
3966
3967 if (!cred->roaming_consortium_len)
3968 return NULL;
3969 buflen = cred->roaming_consortium_len * 2 + 1;
3970 buf = os_malloc(buflen);
3971 if (buf == NULL)
3972 return NULL;
3973 wpa_snprintf_hex(buf, buflen, cred->roaming_consortium,
3974 cred->roaming_consortium_len);
3975 return buf;
3976 }
3977
3978 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3979 size_t buflen;
3980 char *buf;
3981
3982 if (!cred->required_roaming_consortium_len)
3983 return NULL;
3984 buflen = cred->required_roaming_consortium_len * 2 + 1;
3985 buf = os_malloc(buflen);
3986 if (buf == NULL)
3987 return NULL;
3988 wpa_snprintf_hex(buf, buflen, cred->required_roaming_consortium,
3989 cred->required_roaming_consortium_len);
3990 return buf;
3991 }
3992
3993 if (os_strcmp(var, "roaming_consortiums") == 0) {
3994 size_t buflen;
3995 char *buf, *pos;
3996 size_t i;
3997
3998 if (!cred->num_roaming_consortiums)
3999 return NULL;
4000 buflen = cred->num_roaming_consortiums *
4001 MAX_ROAMING_CONS_OI_LEN * 2 + 1;
4002 buf = os_malloc(buflen);
4003 if (!buf)
4004 return NULL;
4005 pos = buf;
4006 for (i = 0; i < cred->num_roaming_consortiums; i++) {
4007 if (i > 0)
4008 *pos++ = ',';
4009 pos += wpa_snprintf_hex(
4010 pos, buf + buflen - pos,
4011 cred->roaming_consortiums[i],
4012 cred->roaming_consortiums_len[i]);
4013 }
4014 *pos = '\0';
4015 return buf;
4016 }
4017
4018 if (os_strcmp(var, "excluded_ssid") == 0) {
4019 unsigned int i;
4020 char *buf, *end, *pos;
4021
4022 if (!cred->num_excluded_ssid)
4023 return NULL;
4024
4025 buf = os_malloc(4000);
4026 if (buf == NULL)
4027 return NULL;
4028 pos = buf;
4029 end = pos + 4000;
4030
4031 for (i = 0; i < cred->num_excluded_ssid; i++) {
4032 struct excluded_ssid *e;
4033 int ret;
4034
4035 e = &cred->excluded_ssid[i];
4036 ret = os_snprintf(pos, end - pos, "%s%s",
4037 i > 0 ? "\n" : "",
4038 wpa_ssid_txt(e->ssid, e->ssid_len));
4039 if (os_snprintf_error(end - pos, ret))
4040 return buf;
4041 pos += ret;
4042 }
4043
4044 return buf;
4045 }
4046
4047 if (os_strcmp(var, "roaming_partner") == 0) {
4048 unsigned int i;
4049 char *buf, *end, *pos;
4050
4051 if (!cred->num_roaming_partner)
4052 return NULL;
4053
4054 buf = os_malloc(4000);
4055 if (buf == NULL)
4056 return NULL;
4057 pos = buf;
4058 end = pos + 4000;
4059
4060 for (i = 0; i < cred->num_roaming_partner; i++) {
4061 struct roaming_partner *p;
4062 int ret;
4063
4064 p = &cred->roaming_partner[i];
4065 ret = os_snprintf(pos, end - pos, "%s%s,%d,%u,%s",
4066 i > 0 ? "\n" : "",
4067 p->fqdn, p->exact_match, p->priority,
4068 p->country);
4069 if (os_snprintf_error(end - pos, ret))
4070 return buf;
4071 pos += ret;
4072 }
4073
4074 return buf;
4075 }
4076
4077 if (os_strcmp(var, "provisioning_sp") == 0)
4078 return alloc_strdup(cred->provisioning_sp);
4079
4080 return NULL;
4081 }
4082
4083
4084 struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
4085 {
4086 struct wpa_cred *cred;
4087
4088 cred = config->cred;
4089 while (cred) {
4090 if (id == cred->id)
4091 break;
4092 cred = cred->next;
4093 }
4094
4095 return cred;
4096 }
4097
4098
4099 struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
4100 {
4101 int id;
4102 struct wpa_cred *cred, *last = NULL;
4103
4104 id = -1;
4105 cred = config->cred;
4106 while (cred) {
4107 if (cred->id > id)
4108 id = cred->id;
4109 last = cred;
4110 cred = cred->next;
4111 }
4112 id++;
4113
4114 cred = os_zalloc(sizeof(*cred));
4115 if (cred == NULL)
4116 return NULL;
4117 cred->id = id;
4118 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
4119 if (last)
4120 last->next = cred;
4121 else
4122 config->cred = cred;
4123
4124 return cred;
4125 }
4126
4127
4128 int wpa_config_remove_cred(struct wpa_config *config, int id)
4129 {
4130 struct wpa_cred *cred, *prev = NULL;
4131
4132 cred = config->cred;
4133 while (cred) {
4134 if (id == cred->id)
4135 break;
4136 prev = cred;
4137 cred = cred->next;
4138 }
4139
4140 if (cred == NULL)
4141 return -1;
4142
4143 if (prev)
4144 prev->next = cred->next;
4145 else
4146 config->cred = cred->next;
4147
4148 wpa_config_free_cred(cred);
4149 return 0;
4150 }
4151
4152
4153 #ifndef CONFIG_NO_CONFIG_BLOBS
4154 /**
4155 * wpa_config_get_blob - Get a named configuration blob
4156 * @config: Configuration data from wpa_config_read()
4157 * @name: Name of the blob
4158 * Returns: Pointer to blob data or %NULL if not found
4159 */
4160 const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
4161 const char *name)
4162 {
4163 struct wpa_config_blob *blob = config->blobs;
4164
4165 while (blob) {
4166 if (os_strcmp(blob->name, name) == 0)
4167 return blob;
4168 blob = blob->next;
4169 }
4170 return NULL;
4171 }
4172
4173
4174 /**
4175 * wpa_config_set_blob - Set or add a named configuration blob
4176 * @config: Configuration data from wpa_config_read()
4177 * @blob: New value for the blob
4178 *
4179 * Adds a new configuration blob or replaces the current value of an existing
4180 * blob.
4181 */
4182 void wpa_config_set_blob(struct wpa_config *config,
4183 struct wpa_config_blob *blob)
4184 {
4185 wpa_config_remove_blob(config, blob->name);
4186 blob->next = config->blobs;
4187 config->blobs = blob;
4188 }
4189
4190
4191 /**
4192 * wpa_config_free_blob - Free blob data
4193 * @blob: Pointer to blob to be freed
4194 */
4195 void wpa_config_free_blob(struct wpa_config_blob *blob)
4196 {
4197 if (blob) {
4198 os_free(blob->name);
4199 bin_clear_free(blob->data, blob->len);
4200 os_free(blob);
4201 }
4202 }
4203
4204
4205 /**
4206 * wpa_config_remove_blob - Remove a named configuration blob
4207 * @config: Configuration data from wpa_config_read()
4208 * @name: Name of the blob to remove
4209 * Returns: 0 if blob was removed or -1 if blob was not found
4210 */
4211 int wpa_config_remove_blob(struct wpa_config *config, const char *name)
4212 {
4213 struct wpa_config_blob *pos = config->blobs, *prev = NULL;
4214
4215 while (pos) {
4216 if (os_strcmp(pos->name, name) == 0) {
4217 if (prev)
4218 prev->next = pos->next;
4219 else
4220 config->blobs = pos->next;
4221 wpa_config_free_blob(pos);
4222 return 0;
4223 }
4224 prev = pos;
4225 pos = pos->next;
4226 }
4227
4228 return -1;
4229 }
4230 #endif /* CONFIG_NO_CONFIG_BLOBS */
4231
4232
4233 /**
4234 * wpa_config_alloc_empty - Allocate an empty configuration
4235 * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
4236 * socket
4237 * @driver_param: Driver parameters
4238 * Returns: Pointer to allocated configuration data or %NULL on failure
4239 */
4240 struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
4241 const char *driver_param)
4242 {
4243 struct wpa_config *config;
4244 const int aCWmin = 4, aCWmax = 10;
4245 const struct hostapd_wmm_ac_params ac_bk =
4246 { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
4247 const struct hostapd_wmm_ac_params ac_be =
4248 { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
4249 const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
4250 { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
4251 const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
4252 { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
4253
4254 config = os_zalloc(sizeof(*config));
4255 if (config == NULL)
4256 return NULL;
4257 config->eapol_version = DEFAULT_EAPOL_VERSION;
4258 config->ap_scan = DEFAULT_AP_SCAN;
4259 config->user_mpm = DEFAULT_USER_MPM;
4260 config->max_peer_links = DEFAULT_MAX_PEER_LINKS;
4261 config->mesh_max_inactivity = DEFAULT_MESH_MAX_INACTIVITY;
4262 config->dot11RSNASAERetransPeriod =
4263 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD;
4264 config->fast_reauth = DEFAULT_FAST_REAUTH;
4265 config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
4266 config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
4267 config->p2p_go_freq_change_policy = DEFAULT_P2P_GO_FREQ_MOVE;
4268 config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
4269 config->p2p_optimize_listen_chan = DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN;
4270 config->p2p_go_ctwindow = DEFAULT_P2P_GO_CTWINDOW;
4271 config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
4272 config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
4273 config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
4274 config->max_num_sta = DEFAULT_MAX_NUM_STA;
4275 config->ap_isolate = DEFAULT_AP_ISOLATE;
4276 config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
4277 config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
4278 config->wmm_ac_params[0] = ac_be;
4279 config->wmm_ac_params[1] = ac_bk;
4280 config->wmm_ac_params[2] = ac_vi;
4281 config->wmm_ac_params[3] = ac_vo;
4282 config->p2p_search_delay = DEFAULT_P2P_SEARCH_DELAY;
4283 config->rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
4284 config->key_mgmt_offload = DEFAULT_KEY_MGMT_OFFLOAD;
4285 config->cert_in_cb = DEFAULT_CERT_IN_CB;
4286 config->wpa_rsc_relaxation = DEFAULT_WPA_RSC_RELAXATION;
4287
4288 #ifdef CONFIG_MBO
4289 config->mbo_cell_capa = DEFAULT_MBO_CELL_CAPA;
4290 config->disassoc_imminent_rssi_threshold =
4291 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD;
4292 config->oce = DEFAULT_OCE_SUPPORT;
4293 #endif /* CONFIG_MBO */
4294
4295 if (ctrl_interface)
4296 config->ctrl_interface = os_strdup(ctrl_interface);
4297 if (driver_param)
4298 config->driver_param = os_strdup(driver_param);
4299 config->gas_rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
4300
4301 return config;
4302 }
4303
4304
4305 #ifndef CONFIG_NO_STDOUT_DEBUG
4306 /**
4307 * wpa_config_debug_dump_networks - Debug dump of configured networks
4308 * @config: Configuration data from wpa_config_read()
4309 */
4310 void wpa_config_debug_dump_networks(struct wpa_config *config)
4311 {
4312 int prio;
4313 struct wpa_ssid *ssid;
4314
4315 for (prio = 0; prio < config->num_prio; prio++) {
4316 ssid = config->pssid[prio];
4317 wpa_printf(MSG_DEBUG, "Priority group %d",
4318 ssid->priority);
4319 while (ssid) {
4320 wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
4321 ssid->id,
4322 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
4323 ssid = ssid->pnext;
4324 }
4325 }
4326 }
4327 #endif /* CONFIG_NO_STDOUT_DEBUG */
4328
4329
4330 struct global_parse_data {
4331 char *name;
4332 int (*parser)(const struct global_parse_data *data,
4333 struct wpa_config *config, int line, const char *value);
4334 int (*get)(const char *name, struct wpa_config *config, long offset,
4335 char *buf, size_t buflen, int pretty_print);
4336 void *param1, *param2, *param3;
4337 unsigned int changed_flag;
4338 };
4339
4340
4341 static int wpa_global_config_parse_int(const struct global_parse_data *data,
4342 struct wpa_config *config, int line,
4343 const char *pos)
4344 {
4345 int val, *dst;
4346 char *end;
4347
4348 dst = (int *) (((u8 *) config) + (long) data->param1);
4349 val = strtol(pos, &end, 0);
4350 if (*end) {
4351 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
4352 line, pos);
4353 return -1;
4354 }
4355 *dst = val;
4356
4357 wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
4358
4359 if (data->param2 && *dst < (long) data->param2) {
4360 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
4361 "min_value=%ld)", line, data->name, *dst,
4362 (long) data->param2);
4363 *dst = (long) data->param2;
4364 return -1;
4365 }
4366
4367 if (data->param3 && *dst > (long) data->param3) {
4368 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
4369 "max_value=%ld)", line, data->name, *dst,
4370 (long) data->param3);
4371 *dst = (long) data->param3;
4372 return -1;
4373 }
4374
4375 return 0;
4376 }
4377
4378
4379 static int wpa_global_config_parse_str(const struct global_parse_data *data,
4380 struct wpa_config *config, int line,
4381 const char *pos)
4382 {
4383 size_t len;
4384 char **dst, *tmp;
4385
4386 len = os_strlen(pos);
4387 if (data->param2 && len < (size_t) data->param2) {
4388 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
4389 "min_len=%ld)", line, data->name,
4390 (unsigned long) len, (long) data->param2);
4391 return -1;
4392 }
4393
4394 if (data->param3 && len > (size_t) data->param3) {
4395 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
4396 "max_len=%ld)", line, data->name,
4397 (unsigned long) len, (long) data->param3);
4398 return -1;
4399 }
4400
4401 if (has_newline(pos)) {
4402 wpa_printf(MSG_ERROR, "Line %d: invalid %s value with newline",
4403 line, data->name);
4404 return -1;
4405 }
4406
4407 tmp = os_strdup(pos);
4408 if (tmp == NULL)
4409 return -1;
4410
4411 dst = (char **) (((u8 *) config) + (long) data->param1);
4412 os_free(*dst);
4413 *dst = tmp;
4414 wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
4415
4416 return 0;
4417 }
4418
4419
4420 static int wpa_config_process_bgscan(const struct global_parse_data *data,
4421 struct wpa_config *config, int line,
4422 const char *pos)
4423 {
4424 size_t len;
4425 char *tmp;
4426 int res;
4427
4428 tmp = wpa_config_parse_string(pos, &len);
4429 if (tmp == NULL) {
4430 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
4431 line, data->name);
4432 return -1;
4433 }
4434
4435 res = wpa_global_config_parse_str(data, config, line, tmp);
4436 os_free(tmp);
4437 return res;
4438 }
4439
4440
4441 static int wpa_global_config_parse_bin(const struct global_parse_data *data,
4442 struct wpa_config *config, int line,
4443 const char *pos)
4444 {
4445 struct wpabuf **dst, *tmp;
4446
4447 tmp = wpabuf_parse_bin(pos);
4448 if (!tmp)
4449 return -1;
4450
4451 dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
4452 wpabuf_free(*dst);
4453 *dst = tmp;
4454 wpa_printf(MSG_DEBUG, "%s", data->name);
4455
4456 return 0;
4457 }
4458
4459
4460 static int wpa_config_process_freq_list(const struct global_parse_data *data,
4461 struct wpa_config *config, int line,
4462 const char *value)
4463 {
4464 int *freqs;
4465
4466 freqs = wpa_config_parse_int_array(value);
4467 if (freqs == NULL)
4468 return -1;
4469 if (freqs[0] == 0) {
4470 os_free(freqs);
4471 freqs = NULL;
4472 }
4473 os_free(config->freq_list);
4474 config->freq_list = freqs;
4475 return 0;
4476 }
4477
4478
4479 #ifdef CONFIG_P2P
4480 static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
4481 struct wpa_config *config, int line,
4482 const char *pos)
4483 {
4484 u32 *dst;
4485 struct hostapd_ip_addr addr;
4486
4487 if (hostapd_parse_ip_addr(pos, &addr) < 0)
4488 return -1;
4489 if (addr.af != AF_INET)
4490 return -1;
4491
4492 dst = (u32 *) (((u8 *) config) + (long) data->param1);
4493 os_memcpy(dst, &addr.u.v4.s_addr, 4);
4494 wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
4495 WPA_GET_BE32((u8 *) dst));
4496
4497 return 0;
4498 }
4499 #endif /* CONFIG_P2P */
4500
4501
4502 static int wpa_config_process_country(const struct global_parse_data *data,
4503 struct wpa_config *config, int line,
4504 const char *pos)
4505 {
4506 if (!pos[0] || !pos[1]) {
4507 wpa_printf(MSG_DEBUG, "Invalid country set");
4508 return -1;
4509 }
4510 config->country[0] = pos[0];
4511 config->country[1] = pos[1];
4512 wpa_printf(MSG_DEBUG, "country='%c%c'",
4513 config->country[0], config->country[1]);
4514 return 0;
4515 }
4516
4517
4518 static int wpa_config_process_load_dynamic_eap(
4519 const struct global_parse_data *data, struct wpa_config *config,
4520 int line, const char *so)
4521 {
4522 int ret;
4523 wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
4524 ret = eap_peer_method_load(so);
4525 if (ret == -2) {
4526 wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
4527 "reloading.");
4528 } else if (ret) {
4529 wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
4530 "method '%s'.", line, so);
4531 return -1;
4532 }
4533
4534 return 0;
4535 }
4536
4537
4538 #ifdef CONFIG_WPS
4539
4540 static int wpa_config_process_uuid(const struct global_parse_data *data,
4541 struct wpa_config *config, int line,
4542 const char *pos)
4543 {
4544 char buf[40];
4545 if (uuid_str2bin(pos, config->uuid)) {
4546 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
4547 return -1;
4548 }
4549 uuid_bin2str(config->uuid, buf, sizeof(buf));
4550 wpa_printf(MSG_DEBUG, "uuid=%s", buf);
4551 return 0;
4552 }
4553
4554
4555 static int wpa_config_process_device_type(
4556 const struct global_parse_data *data,
4557 struct wpa_config *config, int line, const char *pos)
4558 {
4559 return wps_dev_type_str2bin(pos, config->device_type);
4560 }
4561
4562
4563 static int wpa_config_process_os_version(const struct global_parse_data *data,
4564 struct wpa_config *config, int line,
4565 const char *pos)
4566 {
4567 if (hexstr2bin(pos, config->os_version, 4)) {
4568 wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
4569 return -1;
4570 }
4571 wpa_printf(MSG_DEBUG, "os_version=%08x",
4572 WPA_GET_BE32(config->os_version));
4573 return 0;
4574 }
4575
4576
4577 static int wpa_config_process_wps_vendor_ext_m1(
4578 const struct global_parse_data *data,
4579 struct wpa_config *config, int line, const char *pos)
4580 {
4581 struct wpabuf *tmp;
4582 int len = os_strlen(pos) / 2;
4583 u8 *p;
4584
4585 if (!len) {
4586 wpa_printf(MSG_ERROR, "Line %d: "
4587 "invalid wps_vendor_ext_m1", line);
4588 return -1;
4589 }
4590
4591 tmp = wpabuf_alloc(len);
4592 if (tmp) {
4593 p = wpabuf_put(tmp, len);
4594
4595 if (hexstr2bin(pos, p, len)) {
4596 wpa_printf(MSG_ERROR, "Line %d: "
4597 "invalid wps_vendor_ext_m1", line);
4598 wpabuf_free(tmp);
4599 return -1;
4600 }
4601
4602 wpabuf_free(config->wps_vendor_ext_m1);
4603 config->wps_vendor_ext_m1 = tmp;
4604 } else {
4605 wpa_printf(MSG_ERROR, "Can not allocate "
4606 "memory for wps_vendor_ext_m1");
4607 return -1;
4608 }
4609
4610 return 0;
4611 }
4612
4613 #endif /* CONFIG_WPS */
4614
4615 #ifdef CONFIG_P2P
4616 static int wpa_config_process_sec_device_type(
4617 const struct global_parse_data *data,
4618 struct wpa_config *config, int line, const char *pos)
4619 {
4620 int idx;
4621
4622 if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
4623 wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
4624 "items", line);
4625 return -1;
4626 }
4627
4628 idx = config->num_sec_device_types;
4629
4630 if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
4631 return -1;
4632
4633 config->num_sec_device_types++;
4634 return 0;
4635 }
4636
4637
4638 static int wpa_config_process_p2p_pref_chan(
4639 const struct global_parse_data *data,
4640 struct wpa_config *config, int line, const char *pos)
4641 {
4642 struct p2p_channel *pref = NULL, *n;
4643 unsigned int num = 0;
4644 const char *pos2;
4645 u8 op_class, chan;
4646
4647 /* format: class:chan,class:chan,... */
4648
4649 while (*pos) {
4650 op_class = atoi(pos);
4651 pos2 = os_strchr(pos, ':');
4652 if (pos2 == NULL)
4653 goto fail;
4654 pos2++;
4655 chan = atoi(pos2);
4656
4657 n = os_realloc_array(pref, num + 1,
4658 sizeof(struct p2p_channel));
4659 if (n == NULL)
4660 goto fail;
4661 pref = n;
4662 pref[num].op_class = op_class;
4663 pref[num].chan = chan;
4664 num++;
4665
4666 pos = os_strchr(pos2, ',');
4667 if (pos == NULL)
4668 break;
4669 pos++;
4670 }
4671
4672 os_free(config->p2p_pref_chan);
4673 config->p2p_pref_chan = pref;
4674 config->num_p2p_pref_chan = num;
4675 wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
4676 (u8 *) config->p2p_pref_chan,
4677 config->num_p2p_pref_chan * sizeof(struct p2p_channel));
4678
4679 return 0;
4680
4681 fail:
4682 os_free(pref);
4683 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
4684 return -1;
4685 }
4686
4687
4688 static int wpa_config_process_p2p_no_go_freq(
4689 const struct global_parse_data *data,
4690 struct wpa_config *config, int line, const char *pos)
4691 {
4692 int ret;
4693
4694 ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
4695 if (ret < 0) {
4696 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
4697 return -1;
4698 }
4699
4700 wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
4701 config->p2p_no_go_freq.num);
4702
4703 return 0;
4704 }
4705
4706
4707 static int wpa_config_process_p2p_device_persistent_mac_addr(
4708 const struct global_parse_data *data,
4709 struct wpa_config *config, int line, const char *pos)
4710 {
4711 if (hwaddr_aton2(pos, config->p2p_device_persistent_mac_addr) < 0) {
4712 wpa_printf(MSG_ERROR,
4713 "Line %d: Invalid p2p_device_persistent_mac_addr '%s'",
4714 line, pos);
4715 return -1;
4716 }
4717
4718 return 0;
4719 }
4720
4721 #endif /* CONFIG_P2P */
4722
4723
4724 static int wpa_config_process_hessid(
4725 const struct global_parse_data *data,
4726 struct wpa_config *config, int line, const char *pos)
4727 {
4728 if (hwaddr_aton2(pos, config->hessid) < 0) {
4729 wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
4730 line, pos);
4731 return -1;
4732 }
4733
4734 return 0;
4735 }
4736
4737
4738 static int wpa_config_process_sae_groups(
4739 const struct global_parse_data *data,
4740 struct wpa_config *config, int line, const char *pos)
4741 {
4742 int *groups = wpa_config_parse_int_array(pos);
4743 if (groups == NULL) {
4744 wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
4745 line, pos);
4746 return -1;
4747 }
4748
4749 os_free(config->sae_groups);
4750 config->sae_groups = groups;
4751
4752 return 0;
4753 }
4754
4755
4756 static int wpa_config_process_ap_vendor_elements(
4757 const struct global_parse_data *data,
4758 struct wpa_config *config, int line, const char *pos)
4759 {
4760 struct wpabuf *tmp;
4761 int len = os_strlen(pos) / 2;
4762 u8 *p;
4763
4764 if (!len) {
4765 wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
4766 line);
4767 return -1;
4768 }
4769
4770 tmp = wpabuf_alloc(len);
4771 if (tmp) {
4772 p = wpabuf_put(tmp, len);
4773
4774 if (hexstr2bin(pos, p, len)) {
4775 wpa_printf(MSG_ERROR, "Line %d: invalid "
4776 "ap_vendor_elements", line);
4777 wpabuf_free(tmp);
4778 return -1;
4779 }
4780
4781 wpabuf_free(config->ap_vendor_elements);
4782 config->ap_vendor_elements = tmp;
4783 } else {
4784 wpa_printf(MSG_ERROR, "Cannot allocate memory for "
4785 "ap_vendor_elements");
4786 return -1;
4787 }
4788
4789 return 0;
4790 }
4791
4792
4793 #ifdef CONFIG_CTRL_IFACE
4794 static int wpa_config_process_no_ctrl_interface(
4795 const struct global_parse_data *data,
4796 struct wpa_config *config, int line, const char *pos)
4797 {
4798 wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
4799 os_free(config->ctrl_interface);
4800 config->ctrl_interface = NULL;
4801 return 0;
4802 }
4803 #endif /* CONFIG_CTRL_IFACE */
4804
4805
4806 static int wpa_config_get_int(const char *name, struct wpa_config *config,
4807 long offset, char *buf, size_t buflen,
4808 int pretty_print)
4809 {
4810 int *val = (int *) (((u8 *) config) + (long) offset);
4811
4812 if (pretty_print)
4813 return os_snprintf(buf, buflen, "%s=%d\n", name, *val);
4814 return os_snprintf(buf, buflen, "%d", *val);
4815 }
4816
4817
4818 static int wpa_config_get_str(const char *name, struct wpa_config *config,
4819 long offset, char *buf, size_t buflen,
4820 int pretty_print)
4821 {
4822 char **val = (char **) (((u8 *) config) + (long) offset);
4823 int res;
4824
4825 if (pretty_print)
4826 res = os_snprintf(buf, buflen, "%s=%s\n", name,
4827 *val ? *val : "null");
4828 else if (!*val)
4829 return -1;
4830 else
4831 res = os_snprintf(buf, buflen, "%s", *val);
4832 if (os_snprintf_error(buflen, res))
4833 res = -1;
4834
4835 return res;
4836 }
4837
4838
4839 #ifdef CONFIG_P2P
4840 static int wpa_config_get_ipv4(const char *name, struct wpa_config *config,
4841 long offset, char *buf, size_t buflen,
4842 int pretty_print)
4843 {
4844 void *val = ((u8 *) config) + (long) offset;
4845 int res;
4846 char addr[INET_ADDRSTRLEN];
4847
4848 if (!val || !inet_ntop(AF_INET, val, addr, sizeof(addr)))
4849 return -1;
4850
4851 if (pretty_print)
4852 res = os_snprintf(buf, buflen, "%s=%s\n", name, addr);
4853 else
4854 res = os_snprintf(buf, buflen, "%s", addr);
4855
4856 if (os_snprintf_error(buflen, res))
4857 res = -1;
4858
4859 return res;
4860 }
4861 #endif /* CONFIG_P2P */
4862
4863
4864 #ifdef OFFSET
4865 #undef OFFSET
4866 #endif /* OFFSET */
4867 /* OFFSET: Get offset of a variable within the wpa_config structure */
4868 #define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
4869
4870 #define FUNC(f) #f, wpa_config_process_ ## f, NULL, OFFSET(f), NULL, NULL
4871 #define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL, NULL
4872 #define _INT(f) #f, wpa_global_config_parse_int, wpa_config_get_int, OFFSET(f)
4873 #define INT(f) _INT(f), NULL, NULL
4874 #define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
4875 #define _STR(f) #f, wpa_global_config_parse_str, wpa_config_get_str, OFFSET(f)
4876 #define STR(f) _STR(f), NULL, NULL
4877 #define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
4878 #define BIN(f) #f, wpa_global_config_parse_bin, NULL, OFFSET(f), NULL, NULL
4879 #define IPV4(f) #f, wpa_global_config_parse_ipv4, wpa_config_get_ipv4, \
4880 OFFSET(f), NULL, NULL
4881
4882 static const struct global_parse_data global_fields[] = {
4883 #ifdef CONFIG_CTRL_IFACE
4884 { STR(ctrl_interface), 0 },
4885 { FUNC_NO_VAR(no_ctrl_interface), 0 },
4886 { STR(ctrl_interface_group), 0 } /* deprecated */,
4887 #endif /* CONFIG_CTRL_IFACE */
4888 #ifdef CONFIG_MACSEC
4889 { INT_RANGE(eapol_version, 1, 3), 0 },
4890 #else /* CONFIG_MACSEC */
4891 { INT_RANGE(eapol_version, 1, 2), 0 },
4892 #endif /* CONFIG_MACSEC */
4893 { INT(ap_scan), 0 },
4894 { FUNC(bgscan), 0 },
4895 #ifdef CONFIG_MESH
4896 { INT(user_mpm), 0 },
4897 { INT_RANGE(max_peer_links, 0, 255), 0 },
4898 { INT(mesh_max_inactivity), 0 },
4899 { INT(dot11RSNASAERetransPeriod), 0 },
4900 #endif /* CONFIG_MESH */
4901 { INT(disable_scan_offload), 0 },
4902 { INT(fast_reauth), 0 },
4903 { STR(opensc_engine_path), 0 },
4904 { STR(pkcs11_engine_path), 0 },
4905 { STR(pkcs11_module_path), 0 },
4906 { STR(openssl_ciphers), 0 },
4907 { STR(pcsc_reader), 0 },
4908 { STR(pcsc_pin), 0 },
4909 { INT(external_sim), 0 },
4910 { STR(driver_param), 0 },
4911 { INT(dot11RSNAConfigPMKLifetime), 0 },
4912 { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
4913 { INT(dot11RSNAConfigSATimeout), 0 },
4914 #ifndef CONFIG_NO_CONFIG_WRITE
4915 { INT(update_config), 0 },
4916 #endif /* CONFIG_NO_CONFIG_WRITE */
4917 { FUNC_NO_VAR(load_dynamic_eap), 0 },
4918 #ifdef CONFIG_WPS
4919 { FUNC(uuid), CFG_CHANGED_UUID },
4920 { INT_RANGE(auto_uuid, 0, 1), 0 },
4921 { STR_RANGE(device_name, 0, WPS_DEV_NAME_MAX_LEN),
4922 CFG_CHANGED_DEVICE_NAME },
4923 { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
4924 { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
4925 { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
4926 { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
4927 { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
4928 { FUNC(os_version), CFG_CHANGED_OS_VERSION },
4929 { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
4930 { INT_RANGE(wps_cred_processing, 0, 2), 0 },
4931 { INT_RANGE(wps_cred_add_sae, 0, 1), 0 },
4932 { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
4933 #endif /* CONFIG_WPS */
4934 #ifdef CONFIG_P2P
4935 { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
4936 { INT(p2p_listen_reg_class), CFG_CHANGED_P2P_LISTEN_CHANNEL },
4937 { INT(p2p_listen_channel), CFG_CHANGED_P2P_LISTEN_CHANNEL },
4938 { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
4939 { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
4940 { INT_RANGE(p2p_go_intent, 0, 15), 0 },
4941 { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
4942 { INT_RANGE(persistent_reconnect, 0, 1), 0 },
4943 { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
4944 { INT(p2p_group_idle), 0 },
4945 { INT_RANGE(p2p_go_freq_change_policy, 0, P2P_GO_FREQ_MOVE_MAX), 0 },
4946 { INT_RANGE(p2p_passphrase_len, 8, 63),
4947 CFG_CHANGED_P2P_PASSPHRASE_LEN },
4948 { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
4949 { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
4950 { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
4951 { INT_RANGE(p2p_optimize_listen_chan, 0, 1), 0 },
4952 { INT(p2p_go_ht40), 0 },
4953 { INT(p2p_go_vht), 0 },
4954 { INT(p2p_go_he), 0 },
4955 { INT(p2p_go_edmg), 0 },
4956 { INT(p2p_disabled), 0 },
4957 { INT_RANGE(p2p_go_ctwindow, 0, 127), 0 },
4958 { INT(p2p_no_group_iface), 0 },
4959 { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
4960 { IPV4(ip_addr_go), 0 },
4961 { IPV4(ip_addr_mask), 0 },
4962 { IPV4(ip_addr_start), 0 },
4963 { IPV4(ip_addr_end), 0 },
4964 { INT_RANGE(p2p_cli_probe, 0, 1), 0 },
4965 { INT(p2p_device_random_mac_addr), 0 },
4966 { FUNC(p2p_device_persistent_mac_addr), 0 },
4967 { INT(p2p_interface_random_mac_addr), 0 },
4968 #endif /* CONFIG_P2P */
4969 { FUNC(country), CFG_CHANGED_COUNTRY },
4970 { INT(bss_max_count), 0 },
4971 { INT(bss_expiration_age), 0 },
4972 { INT(bss_expiration_scan_count), 0 },
4973 { INT_RANGE(filter_ssids, 0, 1), 0 },
4974 { INT_RANGE(filter_rssi, -100, 0), 0 },
4975 { INT(max_num_sta), 0 },
4976 { INT_RANGE(ap_isolate, 0, 1), 0 },
4977 { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
4978 #ifdef CONFIG_HS20
4979 { INT_RANGE(hs20, 0, 1), 0 },
4980 #endif /* CONFIG_HS20 */
4981 { INT_RANGE(interworking, 0, 1), 0 },
4982 { FUNC(hessid), 0 },
4983 { INT_RANGE(access_network_type, 0, 15), 0 },
4984 { INT_RANGE(go_interworking, 0, 1), 0 },
4985 { INT_RANGE(go_access_network_type, 0, 15), 0 },
4986 { INT_RANGE(go_internet, 0, 1), 0 },
4987 { INT_RANGE(go_venue_group, 0, 255), 0 },
4988 { INT_RANGE(go_venue_type, 0, 255), 0 },
4989 { INT_RANGE(pbc_in_m1, 0, 1), 0 },
4990 { STR(autoscan), 0 },
4991 { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
4992 CFG_CHANGED_NFC_PASSWORD_TOKEN },
4993 { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4994 { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4995 { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4996 { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
4997 { INT(p2p_go_max_inactivity), 0 },
4998 { INT_RANGE(auto_interworking, 0, 1), 0 },
4999 { INT(okc), 0 },
5000 { INT(pmf), 0 },
5001 { FUNC(sae_groups), 0 },
5002 { INT_RANGE(sae_pwe, 0, 2), 0 },
5003 { INT_RANGE(sae_pmkid_in_assoc, 0, 1), 0 },
5004 { INT(dtim_period), 0 },
5005 { INT(beacon_int), 0 },
5006 { FUNC(ap_vendor_elements), 0 },
5007 { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
5008 { FUNC(freq_list), 0 },
5009 { INT(scan_cur_freq), 0 },
5010 { INT(sched_scan_interval), 0 },
5011 { INT(sched_scan_start_delay), 0 },
5012 { INT(tdls_external_control), 0},
5013 { STR(osu_dir), 0 },
5014 { STR(wowlan_triggers), CFG_CHANGED_WOWLAN_TRIGGERS },
5015 { INT(p2p_search_delay), 0},
5016 { INT(mac_addr), 0 },
5017 { INT(rand_addr_lifetime), 0 },
5018 { INT(preassoc_mac_addr), 0 },
5019 { INT(key_mgmt_offload), 0},
5020 { INT(passive_scan), 0 },
5021 { INT(reassoc_same_bss_optim), 0 },
5022 { INT(wps_priority), 0},
5023 #ifdef CONFIG_FST
5024 { STR_RANGE(fst_group_id, 1, FST_MAX_GROUP_ID_LEN), 0 },
5025 { INT_RANGE(fst_priority, 1, FST_MAX_PRIO_VALUE), 0 },
5026 { INT_RANGE(fst_llt, 1, FST_MAX_LLT_MS), 0 },
5027 #endif /* CONFIG_FST */
5028 { INT_RANGE(cert_in_cb, 0, 1), 0 },
5029 { INT_RANGE(wpa_rsc_relaxation, 0, 1), 0 },
5030 { STR(sched_scan_plans), CFG_CHANGED_SCHED_SCAN_PLANS },
5031 #ifdef CONFIG_MBO
5032 { STR(non_pref_chan), 0 },
5033 { INT_RANGE(mbo_cell_capa, MBO_CELL_CAPA_AVAILABLE,
5034 MBO_CELL_CAPA_NOT_SUPPORTED), 0 },
5035 { INT_RANGE(disassoc_imminent_rssi_threshold, -120, 0), 0 },
5036 { INT_RANGE(oce, 0, 3), 0 },
5037 #endif /* CONFIG_MBO */
5038 { INT(gas_address3), 0 },
5039 { INT_RANGE(ftm_responder, 0, 1), 0 },
5040 { INT_RANGE(ftm_initiator, 0, 1), 0 },
5041 { INT(gas_rand_addr_lifetime), 0 },
5042 { INT_RANGE(gas_rand_mac_addr, 0, 2), 0 },
5043 #ifdef CONFIG_DPP
5044 { INT_RANGE(dpp_config_processing, 0, 2), 0 },
5045 { STR(dpp_name), 0 },
5046 { STR(dpp_mud_url), 0 },
5047 #endif /* CONFIG_DPP */
5048 { INT_RANGE(coloc_intf_reporting, 0, 1), 0 },
5049 #ifdef CONFIG_WNM
5050 { INT_RANGE(disable_btm, 0, 1), CFG_CHANGED_DISABLE_BTM },
5051 #endif /* CONFIG_WNM */
5052 };
5053
5054 #undef FUNC
5055 #undef _INT
5056 #undef INT
5057 #undef INT_RANGE
5058 #undef _STR
5059 #undef STR
5060 #undef STR_RANGE
5061 #undef BIN
5062 #undef IPV4
5063 #define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
5064
5065
5066 int wpa_config_dump_values(struct wpa_config *config, char *buf, size_t buflen)
5067 {
5068 int result = 0;
5069 size_t i;
5070
5071 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
5072 const struct global_parse_data *field = &global_fields[i];
5073 int tmp;
5074
5075 if (!field->get)
5076 continue;
5077
5078 tmp = field->get(field->name, config, (long) field->param1,
5079 buf, buflen, 1);
5080 if (tmp < 0)
5081 return -1;
5082 buf += tmp;
5083 buflen -= tmp;
5084 result += tmp;
5085 }
5086 return result;
5087 }
5088
5089
5090 int wpa_config_get_value(const char *name, struct wpa_config *config,
5091 char *buf, size_t buflen)
5092 {
5093 size_t i;
5094
5095 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
5096 const struct global_parse_data *field = &global_fields[i];
5097
5098 if (os_strcmp(name, field->name) != 0)
5099 continue;
5100 if (!field->get)
5101 break;
5102 return field->get(name, config, (long) field->param1,
5103 buf, buflen, 0);
5104 }
5105
5106 return -1;
5107 }
5108
5109
5110 int wpa_config_get_num_global_field_names(void)
5111 {
5112 return NUM_GLOBAL_FIELDS;
5113 }
5114
5115
5116 const char * wpa_config_get_global_field_name(unsigned int i, int *no_var)
5117 {
5118 if (i >= NUM_GLOBAL_FIELDS)
5119 return NULL;
5120
5121 if (no_var)
5122 *no_var = !global_fields[i].param1;
5123 return global_fields[i].name;
5124 }
5125
5126
5127 int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
5128 {
5129 size_t i;
5130 int ret = 0;
5131
5132 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
5133 const struct global_parse_data *field = &global_fields[i];
5134 size_t flen = os_strlen(field->name);
5135 if (os_strncmp(pos, field->name, flen) != 0 ||
5136 pos[flen] != '=')
5137 continue;
5138
5139 if (field->parser(field, config, line, pos + flen + 1)) {
5140 wpa_printf(MSG_ERROR, "Line %d: failed to "
5141 "parse '%s'.", line, pos);
5142 ret = -1;
5143 }
5144 if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
5145 config->wps_nfc_pw_from_config = 1;
5146 config->changed_parameters |= field->changed_flag;
5147 break;
5148 }
5149 if (i == NUM_GLOBAL_FIELDS) {
5150 #ifdef CONFIG_AP
5151 if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
5152 char *tmp = os_strchr(pos, '=');
5153 if (tmp == NULL) {
5154 if (line < 0)
5155 return -1;
5156 wpa_printf(MSG_ERROR, "Line %d: invalid line "
5157 "'%s'", line, pos);
5158 return -1;
5159 }
5160 *tmp++ = '\0';
5161 if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
5162 tmp)) {
5163 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
5164 "AC item", line);
5165 return -1;
5166 }
5167 return ret;
5168 }
5169 #endif /* CONFIG_AP */
5170 if (line < 0)
5171 return -1;
5172 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
5173 line, pos);
5174 ret = -1;
5175 }
5176
5177 return ret;
5178 }