]> git.ipfire.org Git - thirdparty/hostap.git/blame - wpa_supplicant/config.c
wpa_cli: Fix NULL dereference on printf string argument
[thirdparty/hostap.git] / wpa_supplicant / config.c
CommitLineData
6fc6879b
JM
1/*
2 * WPA Supplicant / Configuration parser and common functions
f64adcd7 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
6fc6879b 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
6fc6879b
JM
7 */
8
9#include "includes.h"
10
11#include "common.h"
121adf9c 12#include "utils/uuid.h"
25ef8529 13#include "utils/ip_addr.h"
03da66bd 14#include "crypto/sha1.h"
3acb5005 15#include "rsn_supp/wpa.h"
6fc6879b 16#include "eap_peer/eap.h"
21d996f7 17#include "p2p/p2p.h"
6fc6879b
JM
18#include "config.h"
19
20
21#if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
22#define NO_CONFIG_WRITE
23#endif
24
25/*
26 * Structure for network configuration parsing. This data is used to implement
27 * a generic parser for each network block variable. The table of configuration
28 * variables is defined below in this file (ssid_fields[]).
29 */
30struct parse_data {
31 /* Configuration variable name */
32 char *name;
33
34 /* Parser function for this variable */
35 int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
36 int line, const char *value);
37
38#ifndef NO_CONFIG_WRITE
39 /* Writer function (i.e., to get the variable in text format from
40 * internal presentation). */
41 char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
42#endif /* NO_CONFIG_WRITE */
43
44 /* Variable specific parameters for the parser. */
45 void *param1, *param2, *param3, *param4;
46
47 /* 0 = this variable can be included in debug output and ctrl_iface
48 * 1 = this variable contains key/private data and it must not be
49 * included in debug output unless explicitly requested. In
50 * addition, this variable will not be readable through the
51 * ctrl_iface.
52 */
53 int key_data;
54};
55
56
6fc6879b
JM
57static int wpa_config_parse_str(const struct parse_data *data,
58 struct wpa_ssid *ssid,
59 int line, const char *value)
60{
61 size_t res_len, *dst_len;
62 char **dst, *tmp;
63
b56c0546
JM
64 if (os_strcmp(value, "NULL") == 0) {
65 wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
66 data->name);
67 tmp = NULL;
68 res_len = 0;
69 goto set;
70 }
71
6fc6879b
JM
72 tmp = wpa_config_parse_string(value, &res_len);
73 if (tmp == NULL) {
74 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
75 line, data->name,
76 data->key_data ? "[KEY DATA REMOVED]" : value);
77 return -1;
78 }
79
80 if (data->key_data) {
81 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
82 (u8 *) tmp, res_len);
83 } else {
84 wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
85 (u8 *) tmp, res_len);
86 }
87
88 if (data->param3 && res_len < (size_t) data->param3) {
89 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
90 "min_len=%ld)", line, data->name,
91 (unsigned long) res_len, (long) data->param3);
92 os_free(tmp);
93 return -1;
94 }
95
96 if (data->param4 && res_len > (size_t) data->param4) {
97 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
98 "max_len=%ld)", line, data->name,
99 (unsigned long) res_len, (long) data->param4);
100 os_free(tmp);
101 return -1;
102 }
103
b56c0546 104set:
6fc6879b
JM
105 dst = (char **) (((u8 *) ssid) + (long) data->param1);
106 dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
107 os_free(*dst);
108 *dst = tmp;
109 if (data->param2)
110 *dst_len = res_len;
111
112 return 0;
113}
114
115
116#ifndef NO_CONFIG_WRITE
6fc6879b
JM
117static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
118{
119 char *buf;
120
121 buf = os_malloc(len + 3);
122 if (buf == NULL)
123 return NULL;
124 buf[0] = '"';
125 os_memcpy(buf + 1, value, len);
126 buf[len + 1] = '"';
127 buf[len + 2] = '\0';
128
129 return buf;
130}
131
132
133static char * wpa_config_write_string_hex(const u8 *value, size_t len)
134{
135 char *buf;
136
137 buf = os_zalloc(2 * len + 1);
138 if (buf == NULL)
139 return NULL;
140 wpa_snprintf_hex(buf, 2 * len + 1, value, len);
141
142 return buf;
143}
144
145
146static char * wpa_config_write_string(const u8 *value, size_t len)
147{
148 if (value == NULL)
149 return NULL;
150
151 if (is_hex(value, len))
152 return wpa_config_write_string_hex(value, len);
153 else
154 return wpa_config_write_string_ascii(value, len);
155}
156
157
158static char * wpa_config_write_str(const struct parse_data *data,
159 struct wpa_ssid *ssid)
160{
161 size_t len;
162 char **src;
163
164 src = (char **) (((u8 *) ssid) + (long) data->param1);
165 if (*src == NULL)
166 return NULL;
167
168 if (data->param2)
169 len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
170 else
171 len = os_strlen(*src);
172
173 return wpa_config_write_string((const u8 *) *src, len);
174}
175#endif /* NO_CONFIG_WRITE */
176
177
178static int wpa_config_parse_int(const struct parse_data *data,
179 struct wpa_ssid *ssid,
180 int line, const char *value)
181{
eae3a584
JB
182 int val, *dst;
183 char *end;
6fc6879b
JM
184
185 dst = (int *) (((u8 *) ssid) + (long) data->param1);
eae3a584
JB
186 val = strtol(value, &end, 0);
187 if (*end) {
188 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
189 line, value);
190 return -1;
191 }
192 *dst = val;
6fc6879b
JM
193 wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
194
195 if (data->param3 && *dst < (long) data->param3) {
196 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
197 "min_value=%ld)", line, data->name, *dst,
198 (long) data->param3);
199 *dst = (long) data->param3;
200 return -1;
201 }
202
203 if (data->param4 && *dst > (long) data->param4) {
204 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
205 "max_value=%ld)", line, data->name, *dst,
206 (long) data->param4);
207 *dst = (long) data->param4;
208 return -1;
209 }
210
211 return 0;
212}
213
214
215#ifndef NO_CONFIG_WRITE
216static char * wpa_config_write_int(const struct parse_data *data,
217 struct wpa_ssid *ssid)
218{
219 int *src, res;
220 char *value;
221
222 src = (int *) (((u8 *) ssid) + (long) data->param1);
223
224 value = os_malloc(20);
225 if (value == NULL)
226 return NULL;
227 res = os_snprintf(value, 20, "%d", *src);
d85e1fc8 228 if (os_snprintf_error(20, res)) {
6fc6879b
JM
229 os_free(value);
230 return NULL;
231 }
232 value[20 - 1] = '\0';
233 return value;
234}
235#endif /* NO_CONFIG_WRITE */
236
237
b3d6a0a8
ST
238static int wpa_config_parse_addr_list(const struct parse_data *data,
239 int line, const char *value,
240 u8 **list, size_t *num, char *name,
79cd993a 241 u8 abort_on_error, u8 masked)
b3d6a0a8
ST
242{
243 const char *pos;
79cd993a 244 u8 *buf, *n, addr[2 * ETH_ALEN];
b3d6a0a8
ST
245 size_t count;
246
247 buf = NULL;
248 count = 0;
249
250 pos = value;
251 while (pos && *pos) {
252 while (*pos == ' ')
253 pos++;
254
79cd993a 255 if (hwaddr_masked_aton(pos, addr, &addr[ETH_ALEN], masked)) {
b3d6a0a8
ST
256 if (abort_on_error || count == 0) {
257 wpa_printf(MSG_ERROR,
258 "Line %d: Invalid %s address '%s'",
259 line, name, value);
260 os_free(buf);
261 return -1;
262 }
263 /* continue anyway since this could have been from a
264 * truncated configuration file line */
265 wpa_printf(MSG_INFO,
266 "Line %d: Ignore likely truncated %s address '%s'",
267 line, name, pos);
268 } else {
79cd993a 269 n = os_realloc_array(buf, count + 1, 2 * ETH_ALEN);
b3d6a0a8
ST
270 if (n == NULL) {
271 os_free(buf);
272 return -1;
273 }
274 buf = n;
79cd993a
ST
275 os_memmove(buf + 2 * ETH_ALEN, buf,
276 count * 2 * ETH_ALEN);
277 os_memcpy(buf, addr, 2 * ETH_ALEN);
b3d6a0a8 278 count++;
79cd993a
ST
279 wpa_printf(MSG_MSGDUMP,
280 "%s: addr=" MACSTR " mask=" MACSTR,
281 name, MAC2STR(addr),
282 MAC2STR(&addr[ETH_ALEN]));
b3d6a0a8
ST
283 }
284
285 pos = os_strchr(pos, ' ');
286 }
287
288 os_free(*list);
289 *list = buf;
290 *num = count;
291
292 return 0;
293}
294
295
296#ifndef NO_CONFIG_WRITE
297static char * wpa_config_write_addr_list(const struct parse_data *data,
298 const u8 *list, size_t num, char *name)
299{
300 char *value, *end, *pos;
301 int res;
302 size_t i;
303
304 if (list == NULL || num == 0)
305 return NULL;
306
79cd993a 307 value = os_malloc(2 * 20 * num);
b3d6a0a8
ST
308 if (value == NULL)
309 return NULL;
310 pos = value;
79cd993a 311 end = value + 2 * 20 * num;
b3d6a0a8
ST
312
313 for (i = num; i > 0; i--) {
79cd993a
ST
314 const u8 *a = list + (i - 1) * 2 * ETH_ALEN;
315 const u8 *m = a + ETH_ALEN;
316
317 if (i < num)
318 *pos++ = ' ';
319 res = hwaddr_mask_txt(pos, end - pos, a, m);
320 if (res < 0) {
b3d6a0a8
ST
321 os_free(value);
322 return NULL;
323 }
324 pos += res;
325 }
326
b3d6a0a8
ST
327 return value;
328}
329#endif /* NO_CONFIG_WRITE */
330
6fc6879b
JM
331static int wpa_config_parse_bssid(const struct parse_data *data,
332 struct wpa_ssid *ssid, int line,
333 const char *value)
334{
c0a321c5
WJL
335 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
336 os_strcmp(value, "any") == 0) {
337 ssid->bssid_set = 0;
338 wpa_printf(MSG_MSGDUMP, "BSSID any");
339 return 0;
340 }
6fc6879b
JM
341 if (hwaddr_aton(value, ssid->bssid)) {
342 wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
343 line, value);
344 return -1;
345 }
346 ssid->bssid_set = 1;
347 wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
348 return 0;
349}
350
351
352#ifndef NO_CONFIG_WRITE
353static char * wpa_config_write_bssid(const struct parse_data *data,
354 struct wpa_ssid *ssid)
355{
356 char *value;
357 int res;
358
359 if (!ssid->bssid_set)
360 return NULL;
361
362 value = os_malloc(20);
363 if (value == NULL)
364 return NULL;
365 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
d85e1fc8 366 if (os_snprintf_error(20, res)) {
6fc6879b
JM
367 os_free(value);
368 return NULL;
369 }
370 value[20 - 1] = '\0';
371 return value;
372}
373#endif /* NO_CONFIG_WRITE */
374
375
b83e4554
ST
376static int wpa_config_parse_bssid_blacklist(const struct parse_data *data,
377 struct wpa_ssid *ssid, int line,
378 const char *value)
379{
380 return wpa_config_parse_addr_list(data, line, value,
381 &ssid->bssid_blacklist,
382 &ssid->num_bssid_blacklist,
79cd993a 383 "bssid_blacklist", 1, 1);
b83e4554
ST
384}
385
386
387#ifndef NO_CONFIG_WRITE
388static char * wpa_config_write_bssid_blacklist(const struct parse_data *data,
389 struct wpa_ssid *ssid)
390{
391 return wpa_config_write_addr_list(data, ssid->bssid_blacklist,
392 ssid->num_bssid_blacklist,
393 "bssid_blacklist");
394}
395#endif /* NO_CONFIG_WRITE */
396
397
398static int wpa_config_parse_bssid_whitelist(const struct parse_data *data,
399 struct wpa_ssid *ssid, int line,
400 const char *value)
401{
402 return wpa_config_parse_addr_list(data, line, value,
403 &ssid->bssid_whitelist,
404 &ssid->num_bssid_whitelist,
79cd993a 405 "bssid_whitelist", 1, 1);
b83e4554
ST
406}
407
408
409#ifndef NO_CONFIG_WRITE
410static char * wpa_config_write_bssid_whitelist(const struct parse_data *data,
411 struct wpa_ssid *ssid)
412{
413 return wpa_config_write_addr_list(data, ssid->bssid_whitelist,
414 ssid->num_bssid_whitelist,
415 "bssid_whitelist");
416}
417#endif /* NO_CONFIG_WRITE */
418
419
6fc6879b
JM
420static int wpa_config_parse_psk(const struct parse_data *data,
421 struct wpa_ssid *ssid, int line,
422 const char *value)
423{
9173b16f
JM
424#ifdef CONFIG_EXT_PASSWORD
425 if (os_strncmp(value, "ext:", 4) == 0) {
19c48da0 426 str_clear_free(ssid->passphrase);
9173b16f
JM
427 ssid->passphrase = NULL;
428 ssid->psk_set = 0;
429 os_free(ssid->ext_psk);
430 ssid->ext_psk = os_strdup(value + 4);
431 if (ssid->ext_psk == NULL)
432 return -1;
433 wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
434 ssid->ext_psk);
435 return 0;
436 }
437#endif /* CONFIG_EXT_PASSWORD */
438
6fc6879b
JM
439 if (*value == '"') {
440#ifndef CONFIG_NO_PBKDF2
441 const char *pos;
442 size_t len;
443
444 value++;
445 pos = os_strrchr(value, '"');
446 if (pos)
447 len = pos - value;
448 else
449 len = os_strlen(value);
450 if (len < 8 || len > 63) {
451 wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
452 "length %lu (expected: 8..63) '%s'.",
453 line, (unsigned long) len, value);
454 return -1;
455 }
456 wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
457 (u8 *) value, len);
458 if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
459 os_memcmp(ssid->passphrase, value, len) == 0)
460 return 0;
461 ssid->psk_set = 0;
19c48da0 462 str_clear_free(ssid->passphrase);
5e24dc8a 463 ssid->passphrase = dup_binstr(value, len);
6fc6879b
JM
464 if (ssid->passphrase == NULL)
465 return -1;
6fc6879b
JM
466 return 0;
467#else /* CONFIG_NO_PBKDF2 */
468 wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
469 "supported.", line);
470 return -1;
471#endif /* CONFIG_NO_PBKDF2 */
472 }
473
474 if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
475 value[PMK_LEN * 2] != '\0') {
476 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
477 line, value);
478 return -1;
479 }
480
19c48da0 481 str_clear_free(ssid->passphrase);
6fc6879b
JM
482 ssid->passphrase = NULL;
483
484 ssid->psk_set = 1;
485 wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
486 return 0;
487}
488
489
490#ifndef NO_CONFIG_WRITE
491static char * wpa_config_write_psk(const struct parse_data *data,
492 struct wpa_ssid *ssid)
493{
9173b16f
JM
494#ifdef CONFIG_EXT_PASSWORD
495 if (ssid->ext_psk) {
496 size_t len = 4 + os_strlen(ssid->ext_psk) + 1;
497 char *buf = os_malloc(len);
1d399771
JM
498 int res;
499
9173b16f
JM
500 if (buf == NULL)
501 return NULL;
1d399771
JM
502 res = os_snprintf(buf, len, "ext:%s", ssid->ext_psk);
503 if (os_snprintf_error(len, res)) {
504 os_free(buf);
505 buf = NULL;
506 }
9173b16f
JM
507 return buf;
508 }
509#endif /* CONFIG_EXT_PASSWORD */
510
6fc6879b
JM
511 if (ssid->passphrase)
512 return wpa_config_write_string_ascii(
513 (const u8 *) ssid->passphrase,
514 os_strlen(ssid->passphrase));
515
516 if (ssid->psk_set)
517 return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
518
519 return NULL;
520}
521#endif /* NO_CONFIG_WRITE */
522
523
524static int wpa_config_parse_proto(const struct parse_data *data,
525 struct wpa_ssid *ssid, int line,
526 const char *value)
527{
528 int val = 0, last, errors = 0;
529 char *start, *end, *buf;
530
531 buf = os_strdup(value);
532 if (buf == NULL)
533 return -1;
534 start = buf;
535
536 while (*start != '\0') {
537 while (*start == ' ' || *start == '\t')
538 start++;
539 if (*start == '\0')
540 break;
541 end = start;
542 while (*end != ' ' && *end != '\t' && *end != '\0')
543 end++;
544 last = *end == '\0';
545 *end = '\0';
546 if (os_strcmp(start, "WPA") == 0)
547 val |= WPA_PROTO_WPA;
548 else if (os_strcmp(start, "RSN") == 0 ||
549 os_strcmp(start, "WPA2") == 0)
550 val |= WPA_PROTO_RSN;
df0f01d9
JM
551 else if (os_strcmp(start, "OSEN") == 0)
552 val |= WPA_PROTO_OSEN;
6fc6879b
JM
553 else {
554 wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
555 line, start);
556 errors++;
557 }
558
559 if (last)
560 break;
561 start = end + 1;
562 }
563 os_free(buf);
564
565 if (val == 0) {
566 wpa_printf(MSG_ERROR,
567 "Line %d: no proto values configured.", line);
568 errors++;
569 }
570
571 wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
572 ssid->proto = val;
573 return errors ? -1 : 0;
574}
575
576
577#ifndef NO_CONFIG_WRITE
578static char * wpa_config_write_proto(const struct parse_data *data,
579 struct wpa_ssid *ssid)
580{
290ea6a7 581 int ret;
6fc6879b
JM
582 char *buf, *pos, *end;
583
3141b82c 584 pos = buf = os_zalloc(20);
6fc6879b
JM
585 if (buf == NULL)
586 return NULL;
3141b82c 587 end = buf + 20;
6fc6879b
JM
588
589 if (ssid->proto & WPA_PROTO_WPA) {
290ea6a7
JM
590 ret = os_snprintf(pos, end - pos, "%sWPA",
591 pos == buf ? "" : " ");
d85e1fc8 592 if (os_snprintf_error(end - pos, ret))
6fc6879b
JM
593 return buf;
594 pos += ret;
6fc6879b
JM
595 }
596
597 if (ssid->proto & WPA_PROTO_RSN) {
290ea6a7
JM
598 ret = os_snprintf(pos, end - pos, "%sRSN",
599 pos == buf ? "" : " ");
d85e1fc8 600 if (os_snprintf_error(end - pos, ret))
6fc6879b
JM
601 return buf;
602 pos += ret;
6fc6879b
JM
603 }
604
3141b82c 605 if (ssid->proto & WPA_PROTO_OSEN) {
290ea6a7
JM
606 ret = os_snprintf(pos, end - pos, "%sOSEN",
607 pos == buf ? "" : " ");
d85e1fc8 608 if (os_snprintf_error(end - pos, ret))
3141b82c
JM
609 return buf;
610 pos += ret;
3141b82c
JM
611 }
612
a1e46f32
JM
613 if (pos == buf) {
614 os_free(buf);
615 buf = NULL;
616 }
617
6fc6879b
JM
618 return buf;
619}
620#endif /* NO_CONFIG_WRITE */
621
622
623static int wpa_config_parse_key_mgmt(const struct parse_data *data,
624 struct wpa_ssid *ssid, int line,
625 const char *value)
626{
627 int val = 0, last, errors = 0;
628 char *start, *end, *buf;
629
630 buf = os_strdup(value);
631 if (buf == NULL)
632 return -1;
633 start = buf;
634
635 while (*start != '\0') {
636 while (*start == ' ' || *start == '\t')
637 start++;
638 if (*start == '\0')
639 break;
640 end = start;
641 while (*end != ' ' && *end != '\t' && *end != '\0')
642 end++;
643 last = *end == '\0';
644 *end = '\0';
645 if (os_strcmp(start, "WPA-PSK") == 0)
646 val |= WPA_KEY_MGMT_PSK;
647 else if (os_strcmp(start, "WPA-EAP") == 0)
648 val |= WPA_KEY_MGMT_IEEE8021X;
649 else if (os_strcmp(start, "IEEE8021X") == 0)
650 val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
651 else if (os_strcmp(start, "NONE") == 0)
652 val |= WPA_KEY_MGMT_NONE;
653 else if (os_strcmp(start, "WPA-NONE") == 0)
654 val |= WPA_KEY_MGMT_WPA_NONE;
655#ifdef CONFIG_IEEE80211R
656 else if (os_strcmp(start, "FT-PSK") == 0)
657 val |= WPA_KEY_MGMT_FT_PSK;
658 else if (os_strcmp(start, "FT-EAP") == 0)
659 val |= WPA_KEY_MGMT_FT_IEEE8021X;
660#endif /* CONFIG_IEEE80211R */
56586197
JM
661#ifdef CONFIG_IEEE80211W
662 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
663 val |= WPA_KEY_MGMT_PSK_SHA256;
664 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
665 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
666#endif /* CONFIG_IEEE80211W */
ad08c363
JM
667#ifdef CONFIG_WPS
668 else if (os_strcmp(start, "WPS") == 0)
669 val |= WPA_KEY_MGMT_WPS;
670#endif /* CONFIG_WPS */
c10347f2
JM
671#ifdef CONFIG_SAE
672 else if (os_strcmp(start, "SAE") == 0)
673 val |= WPA_KEY_MGMT_SAE;
674 else if (os_strcmp(start, "FT-SAE") == 0)
675 val |= WPA_KEY_MGMT_FT_SAE;
676#endif /* CONFIG_SAE */
df0f01d9
JM
677#ifdef CONFIG_HS20
678 else if (os_strcmp(start, "OSEN") == 0)
679 val |= WPA_KEY_MGMT_OSEN;
680#endif /* CONFIG_HS20 */
666497c8
JM
681 else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
682 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
6fc6879b
JM
683 else {
684 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
685 line, start);
686 errors++;
687 }
688
689 if (last)
690 break;
691 start = end + 1;
692 }
693 os_free(buf);
694
695 if (val == 0) {
696 wpa_printf(MSG_ERROR,
697 "Line %d: no key_mgmt values configured.", line);
698 errors++;
699 }
700
701 wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
702 ssid->key_mgmt = val;
703 return errors ? -1 : 0;
704}
705
706
707#ifndef NO_CONFIG_WRITE
708static char * wpa_config_write_key_mgmt(const struct parse_data *data,
709 struct wpa_ssid *ssid)
710{
711 char *buf, *pos, *end;
712 int ret;
713
50793929 714 pos = buf = os_zalloc(100);
6fc6879b
JM
715 if (buf == NULL)
716 return NULL;
50793929 717 end = buf + 100;
6fc6879b
JM
718
719 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
720 ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
721 pos == buf ? "" : " ");
d85e1fc8 722 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
723 end[-1] = '\0';
724 return buf;
725 }
726 pos += ret;
727 }
728
729 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
730 ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
731 pos == buf ? "" : " ");
d85e1fc8 732 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
733 end[-1] = '\0';
734 return buf;
735 }
736 pos += ret;
737 }
738
739 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
740 ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
741 pos == buf ? "" : " ");
d85e1fc8 742 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
743 end[-1] = '\0';
744 return buf;
745 }
746 pos += ret;
747 }
748
749 if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
750 ret = os_snprintf(pos, end - pos, "%sNONE",
751 pos == buf ? "" : " ");
d85e1fc8 752 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
753 end[-1] = '\0';
754 return buf;
755 }
756 pos += ret;
757 }
758
759 if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
760 ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
761 pos == buf ? "" : " ");
d85e1fc8 762 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
763 end[-1] = '\0';
764 return buf;
765 }
766 pos += ret;
767 }
768
769#ifdef CONFIG_IEEE80211R
50793929
PF
770 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK) {
771 ret = os_snprintf(pos, end - pos, "%sFT-PSK",
772 pos == buf ? "" : " ");
d85e1fc8 773 if (os_snprintf_error(end - pos, ret)) {
50793929
PF
774 end[-1] = '\0';
775 return buf;
776 }
777 pos += ret;
778 }
6fc6879b 779
50793929
PF
780 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
781 ret = os_snprintf(pos, end - pos, "%sFT-EAP",
782 pos == buf ? "" : " ");
d85e1fc8 783 if (os_snprintf_error(end - pos, ret)) {
50793929
PF
784 end[-1] = '\0';
785 return buf;
786 }
787 pos += ret;
788 }
6fc6879b
JM
789#endif /* CONFIG_IEEE80211R */
790
56586197 791#ifdef CONFIG_IEEE80211W
50793929
PF
792 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
793 ret = os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
794 pos == buf ? "" : " ");
d85e1fc8 795 if (os_snprintf_error(end - pos, ret)) {
50793929
PF
796 end[-1] = '\0';
797 return buf;
798 }
799 pos += ret;
800 }
56586197 801
50793929
PF
802 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
803 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
804 pos == buf ? "" : " ");
d85e1fc8 805 if (os_snprintf_error(end - pos, ret)) {
50793929
PF
806 end[-1] = '\0';
807 return buf;
808 }
809 pos += ret;
810 }
56586197
JM
811#endif /* CONFIG_IEEE80211W */
812
728fae16 813#ifdef CONFIG_WPS
50793929
PF
814 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
815 ret = os_snprintf(pos, end - pos, "%sWPS",
816 pos == buf ? "" : " ");
d85e1fc8 817 if (os_snprintf_error(end - pos, ret)) {
50793929
PF
818 end[-1] = '\0';
819 return buf;
820 }
821 pos += ret;
822 }
728fae16
JM
823#endif /* CONFIG_WPS */
824
d3fd563f
TP
825#ifdef CONFIG_SAE
826 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
827 ret = os_snprintf(pos, end - pos, "%sSAE",
828 pos == buf ? "" : " ");
d85e1fc8 829 if (os_snprintf_error(end - pos, ret)) {
d3fd563f
TP
830 end[-1] = '\0';
831 return buf;
832 }
833 pos += ret;
834 }
835
836 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_SAE) {
837 ret = os_snprintf(pos, end - pos, "%sFT-SAE",
838 pos == buf ? "" : " ");
d85e1fc8 839 if (os_snprintf_error(end - pos, ret)) {
d3fd563f
TP
840 end[-1] = '\0';
841 return buf;
842 }
843 pos += ret;
844 }
845#endif /* CONFIG_SAE */
846
2d6ee86f
JM
847#ifdef CONFIG_HS20
848 if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN) {
849 ret = os_snprintf(pos, end - pos, "%sOSEN",
850 pos == buf ? "" : " ");
d85e1fc8 851 if (os_snprintf_error(end - pos, ret)) {
2d6ee86f
JM
852 end[-1] = '\0';
853 return buf;
854 }
855 pos += ret;
856 }
857#endif /* CONFIG_HS20 */
858
666497c8
JM
859 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
860 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B",
861 pos == buf ? "" : " ");
d85e1fc8 862 if (os_snprintf_error(end - pos, ret)) {
666497c8
JM
863 end[-1] = '\0';
864 return buf;
865 }
866 pos += ret;
867 }
868
a1e46f32
JM
869 if (pos == buf) {
870 os_free(buf);
871 buf = NULL;
872 }
873
6fc6879b
JM
874 return buf;
875}
876#endif /* NO_CONFIG_WRITE */
877
878
879static int wpa_config_parse_cipher(int line, const char *value)
880{
a39c78be
JM
881 int val = wpa_parse_cipher(value);
882 if (val < 0) {
883 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
884 line, value);
6fc6879b 885 return -1;
6fc6879b 886 }
6fc6879b
JM
887 if (val == 0) {
888 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
889 line);
890 return -1;
891 }
892 return val;
893}
894
895
896#ifndef NO_CONFIG_WRITE
897static char * wpa_config_write_cipher(int cipher)
898{
0282a8c4 899 char *buf = os_zalloc(50);
6fc6879b
JM
900 if (buf == NULL)
901 return NULL;
6fc6879b 902
0282a8c4
JM
903 if (wpa_write_ciphers(buf, buf + 50, cipher, " ") < 0) {
904 os_free(buf);
905 return NULL;
6fc6879b
JM
906 }
907
908 return buf;
909}
910#endif /* NO_CONFIG_WRITE */
911
912
913static int wpa_config_parse_pairwise(const struct parse_data *data,
914 struct wpa_ssid *ssid, int line,
915 const char *value)
916{
917 int val;
918 val = wpa_config_parse_cipher(line, value);
919 if (val == -1)
920 return -1;
03145326 921 if (val & ~WPA_ALLOWED_PAIRWISE_CIPHERS) {
6fc6879b
JM
922 wpa_printf(MSG_ERROR, "Line %d: not allowed pairwise cipher "
923 "(0x%x).", line, val);
924 return -1;
925 }
926
927 wpa_printf(MSG_MSGDUMP, "pairwise: 0x%x", val);
928 ssid->pairwise_cipher = val;
929 return 0;
930}
931
932
933#ifndef NO_CONFIG_WRITE
934static char * wpa_config_write_pairwise(const struct parse_data *data,
935 struct wpa_ssid *ssid)
936{
937 return wpa_config_write_cipher(ssid->pairwise_cipher);
938}
939#endif /* NO_CONFIG_WRITE */
940
941
942static int wpa_config_parse_group(const struct parse_data *data,
943 struct wpa_ssid *ssid, int line,
944 const char *value)
945{
946 int val;
947 val = wpa_config_parse_cipher(line, value);
948 if (val == -1)
949 return -1;
03145326 950 if (val & ~WPA_ALLOWED_GROUP_CIPHERS) {
6fc6879b
JM
951 wpa_printf(MSG_ERROR, "Line %d: not allowed group cipher "
952 "(0x%x).", line, val);
953 return -1;
954 }
955
956 wpa_printf(MSG_MSGDUMP, "group: 0x%x", val);
957 ssid->group_cipher = val;
958 return 0;
959}
960
961
962#ifndef NO_CONFIG_WRITE
963static char * wpa_config_write_group(const struct parse_data *data,
964 struct wpa_ssid *ssid)
965{
966 return wpa_config_write_cipher(ssid->group_cipher);
967}
968#endif /* NO_CONFIG_WRITE */
969
970
971static int wpa_config_parse_auth_alg(const struct parse_data *data,
972 struct wpa_ssid *ssid, int line,
973 const char *value)
974{
975 int val = 0, last, errors = 0;
976 char *start, *end, *buf;
977
978 buf = os_strdup(value);
979 if (buf == NULL)
980 return -1;
981 start = buf;
982
983 while (*start != '\0') {
984 while (*start == ' ' || *start == '\t')
985 start++;
986 if (*start == '\0')
987 break;
988 end = start;
989 while (*end != ' ' && *end != '\t' && *end != '\0')
990 end++;
991 last = *end == '\0';
992 *end = '\0';
993 if (os_strcmp(start, "OPEN") == 0)
994 val |= WPA_AUTH_ALG_OPEN;
995 else if (os_strcmp(start, "SHARED") == 0)
996 val |= WPA_AUTH_ALG_SHARED;
997 else if (os_strcmp(start, "LEAP") == 0)
998 val |= WPA_AUTH_ALG_LEAP;
999 else {
1000 wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'",
1001 line, start);
1002 errors++;
1003 }
1004
1005 if (last)
1006 break;
1007 start = end + 1;
1008 }
1009 os_free(buf);
1010
1011 if (val == 0) {
1012 wpa_printf(MSG_ERROR,
1013 "Line %d: no auth_alg values configured.", line);
1014 errors++;
1015 }
1016
1017 wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val);
1018 ssid->auth_alg = val;
1019 return errors ? -1 : 0;
1020}
1021
1022
1023#ifndef NO_CONFIG_WRITE
1024static char * wpa_config_write_auth_alg(const struct parse_data *data,
1025 struct wpa_ssid *ssid)
1026{
1027 char *buf, *pos, *end;
1028 int ret;
1029
1030 pos = buf = os_zalloc(30);
1031 if (buf == NULL)
1032 return NULL;
1033 end = buf + 30;
1034
1035 if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) {
1036 ret = os_snprintf(pos, end - pos, "%sOPEN",
1037 pos == buf ? "" : " ");
d85e1fc8 1038 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
1039 end[-1] = '\0';
1040 return buf;
1041 }
1042 pos += ret;
1043 }
1044
1045 if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) {
1046 ret = os_snprintf(pos, end - pos, "%sSHARED",
1047 pos == buf ? "" : " ");
d85e1fc8 1048 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
1049 end[-1] = '\0';
1050 return buf;
1051 }
1052 pos += ret;
1053 }
1054
1055 if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) {
1056 ret = os_snprintf(pos, end - pos, "%sLEAP",
1057 pos == buf ? "" : " ");
d85e1fc8 1058 if (os_snprintf_error(end - pos, ret)) {
6fc6879b
JM
1059 end[-1] = '\0';
1060 return buf;
1061 }
1062 pos += ret;
1063 }
1064
a1e46f32
JM
1065 if (pos == buf) {
1066 os_free(buf);
1067 buf = NULL;
1068 }
1069
6fc6879b
JM
1070 return buf;
1071}
1072#endif /* NO_CONFIG_WRITE */
1073
1074
625f202a 1075static int * wpa_config_parse_int_array(const char *value)
d3a98225
JM
1076{
1077 int *freqs;
1078 size_t used, len;
1079 const char *pos;
1080
1081 used = 0;
1082 len = 10;
f9884c09 1083 freqs = os_calloc(len + 1, sizeof(int));
d3a98225 1084 if (freqs == NULL)
b766a9a2 1085 return NULL;
d3a98225
JM
1086
1087 pos = value;
1088 while (pos) {
1089 while (*pos == ' ')
1090 pos++;
1091 if (used == len) {
1092 int *n;
1093 size_t i;
067ffa26 1094 n = os_realloc_array(freqs, len * 2 + 1, sizeof(int));
d3a98225
JM
1095 if (n == NULL) {
1096 os_free(freqs);
b766a9a2 1097 return NULL;
d3a98225
JM
1098 }
1099 for (i = len; i <= len * 2; i++)
1100 n[i] = 0;
1101 freqs = n;
1102 len *= 2;
1103 }
1104
1105 freqs[used] = atoi(pos);
1106 if (freqs[used] == 0)
1107 break;
1108 used++;
1109 pos = os_strchr(pos + 1, ' ');
1110 }
1111
b766a9a2
JM
1112 return freqs;
1113}
1114
1115
1116static int wpa_config_parse_scan_freq(const struct parse_data *data,
1117 struct wpa_ssid *ssid, int line,
1118 const char *value)
1119{
1120 int *freqs;
1121
625f202a 1122 freqs = wpa_config_parse_int_array(value);
b766a9a2
JM
1123 if (freqs == NULL)
1124 return -1;
6668efda
JM
1125 if (freqs[0] == 0) {
1126 os_free(freqs);
1127 freqs = NULL;
1128 }
d3a98225
JM
1129 os_free(ssid->scan_freq);
1130 ssid->scan_freq = freqs;
1131
1132 return 0;
1133}
1134
1135
b766a9a2
JM
1136static int wpa_config_parse_freq_list(const struct parse_data *data,
1137 struct wpa_ssid *ssid, int line,
1138 const char *value)
1139{
1140 int *freqs;
1141
625f202a 1142 freqs = wpa_config_parse_int_array(value);
b766a9a2
JM
1143 if (freqs == NULL)
1144 return -1;
6668efda
JM
1145 if (freqs[0] == 0) {
1146 os_free(freqs);
1147 freqs = NULL;
1148 }
b766a9a2
JM
1149 os_free(ssid->freq_list);
1150 ssid->freq_list = freqs;
1151
1152 return 0;
1153}
1154
1155
d3a98225 1156#ifndef NO_CONFIG_WRITE
b766a9a2
JM
1157static char * wpa_config_write_freqs(const struct parse_data *data,
1158 const int *freqs)
d3a98225
JM
1159{
1160 char *buf, *pos, *end;
1161 int i, ret;
1162 size_t count;
1163
b766a9a2 1164 if (freqs == NULL)
d3a98225
JM
1165 return NULL;
1166
1167 count = 0;
b766a9a2 1168 for (i = 0; freqs[i]; i++)
d3a98225
JM
1169 count++;
1170
1171 pos = buf = os_zalloc(10 * count + 1);
1172 if (buf == NULL)
1173 return NULL;
1174 end = buf + 10 * count + 1;
1175
b766a9a2 1176 for (i = 0; freqs[i]; i++) {
d3a98225 1177 ret = os_snprintf(pos, end - pos, "%s%u",
b766a9a2 1178 i == 0 ? "" : " ", freqs[i]);
d85e1fc8 1179 if (os_snprintf_error(end - pos, ret)) {
d3a98225
JM
1180 end[-1] = '\0';
1181 return buf;
1182 }
1183 pos += ret;
1184 }
1185
1186 return buf;
1187}
b766a9a2
JM
1188
1189
1190static char * wpa_config_write_scan_freq(const struct parse_data *data,
1191 struct wpa_ssid *ssid)
1192{
1193 return wpa_config_write_freqs(data, ssid->scan_freq);
1194}
1195
1196
1197static char * wpa_config_write_freq_list(const struct parse_data *data,
1198 struct wpa_ssid *ssid)
1199{
1200 return wpa_config_write_freqs(data, ssid->freq_list);
1201}
d3a98225
JM
1202#endif /* NO_CONFIG_WRITE */
1203
1204
6fc6879b
JM
1205#ifdef IEEE8021X_EAPOL
1206static int wpa_config_parse_eap(const struct parse_data *data,
1207 struct wpa_ssid *ssid, int line,
1208 const char *value)
1209{
1210 int last, errors = 0;
1211 char *start, *end, *buf;
1212 struct eap_method_type *methods = NULL, *tmp;
1213 size_t num_methods = 0;
1214
1215 buf = os_strdup(value);
1216 if (buf == NULL)
1217 return -1;
1218 start = buf;
1219
1220 while (*start != '\0') {
1221 while (*start == ' ' || *start == '\t')
1222 start++;
1223 if (*start == '\0')
1224 break;
1225 end = start;
1226 while (*end != ' ' && *end != '\t' && *end != '\0')
1227 end++;
1228 last = *end == '\0';
1229 *end = '\0';
1230 tmp = methods;
067ffa26
JM
1231 methods = os_realloc_array(methods, num_methods + 1,
1232 sizeof(*methods));
6fc6879b
JM
1233 if (methods == NULL) {
1234 os_free(tmp);
1235 os_free(buf);
1236 return -1;
1237 }
1238 methods[num_methods].method = eap_peer_get_type(
1239 start, &methods[num_methods].vendor);
1240 if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1241 methods[num_methods].method == EAP_TYPE_NONE) {
1242 wpa_printf(MSG_ERROR, "Line %d: unknown EAP method "
1243 "'%s'", line, start);
1244 wpa_printf(MSG_ERROR, "You may need to add support for"
1245 " this EAP method during wpa_supplicant\n"
1246 "build time configuration.\n"
1247 "See README for more information.");
1248 errors++;
1249 } else if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1250 methods[num_methods].method == EAP_TYPE_LEAP)
1251 ssid->leap++;
1252 else
1253 ssid->non_leap++;
1254 num_methods++;
1255 if (last)
1256 break;
1257 start = end + 1;
1258 }
1259 os_free(buf);
1260
1261 tmp = methods;
067ffa26 1262 methods = os_realloc_array(methods, num_methods + 1, sizeof(*methods));
6fc6879b
JM
1263 if (methods == NULL) {
1264 os_free(tmp);
1265 return -1;
1266 }
1267 methods[num_methods].vendor = EAP_VENDOR_IETF;
1268 methods[num_methods].method = EAP_TYPE_NONE;
1269 num_methods++;
1270
1271 wpa_hexdump(MSG_MSGDUMP, "eap methods",
1272 (u8 *) methods, num_methods * sizeof(*methods));
bb8b1bb0 1273 os_free(ssid->eap.eap_methods);
6fc6879b
JM
1274 ssid->eap.eap_methods = methods;
1275 return errors ? -1 : 0;
1276}
1277
1278
1279static char * wpa_config_write_eap(const struct parse_data *data,
1280 struct wpa_ssid *ssid)
1281{
1282 int i, ret;
1283 char *buf, *pos, *end;
1284 const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
1285 const char *name;
1286
1287 if (eap_methods == NULL)
1288 return NULL;
1289
1290 pos = buf = os_zalloc(100);
1291 if (buf == NULL)
1292 return NULL;
1293 end = buf + 100;
1294
1295 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1296 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1297 name = eap_get_name(eap_methods[i].vendor,
1298 eap_methods[i].method);
1299 if (name) {
1300 ret = os_snprintf(pos, end - pos, "%s%s",
1301 pos == buf ? "" : " ", name);
d85e1fc8 1302 if (os_snprintf_error(end - pos, ret))
6fc6879b
JM
1303 break;
1304 pos += ret;
1305 }
1306 }
1307
1308 end[-1] = '\0';
1309
1310 return buf;
1311}
1312
1313
1314static int wpa_config_parse_password(const struct parse_data *data,
1315 struct wpa_ssid *ssid, int line,
1316 const char *value)
1317{
1318 u8 *hash;
1319
b56c0546
JM
1320 if (os_strcmp(value, "NULL") == 0) {
1321 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
19c48da0 1322 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
b56c0546
JM
1323 ssid->eap.password = NULL;
1324 ssid->eap.password_len = 0;
1325 return 0;
1326 }
1327
0ebb23e3
JM
1328#ifdef CONFIG_EXT_PASSWORD
1329 if (os_strncmp(value, "ext:", 4) == 0) {
1330 char *name = os_strdup(value + 4);
1331 if (name == NULL)
1332 return -1;
19c48da0 1333 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
0ebb23e3
JM
1334 ssid->eap.password = (u8 *) name;
1335 ssid->eap.password_len = os_strlen(name);
1336 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
1337 ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_PASSWORD;
1338 return 0;
1339 }
1340#endif /* CONFIG_EXT_PASSWORD */
1341
6fc6879b
JM
1342 if (os_strncmp(value, "hash:", 5) != 0) {
1343 char *tmp;
1344 size_t res_len;
1345
1346 tmp = wpa_config_parse_string(value, &res_len);
1347 if (tmp == NULL) {
1348 wpa_printf(MSG_ERROR, "Line %d: failed to parse "
1349 "password.", line);
1350 return -1;
1351 }
556f5a2a
HS
1352 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
1353 (u8 *) tmp, res_len);
6fc6879b 1354
19c48da0 1355 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
6fc6879b
JM
1356 ssid->eap.password = (u8 *) tmp;
1357 ssid->eap.password_len = res_len;
1358 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
0ebb23e3 1359 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
6fc6879b
JM
1360
1361 return 0;
1362 }
1363
1364
1365 /* NtPasswordHash: hash:<32 hex digits> */
1366 if (os_strlen(value + 5) != 2 * 16) {
1367 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
1368 "(expected 32 hex digits)", line);
1369 return -1;
1370 }
1371
1372 hash = os_malloc(16);
1373 if (hash == NULL)
1374 return -1;
1375
1376 if (hexstr2bin(value + 5, hash, 16)) {
1377 os_free(hash);
1378 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
1379 return -1;
1380 }
1381
1382 wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
1383
19c48da0 1384 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
6fc6879b
JM
1385 ssid->eap.password = hash;
1386 ssid->eap.password_len = 16;
1387 ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
0ebb23e3 1388 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
6fc6879b
JM
1389
1390 return 0;
1391}
1392
1393
1394static char * wpa_config_write_password(const struct parse_data *data,
1395 struct wpa_ssid *ssid)
1396{
1397 char *buf;
1398
1399 if (ssid->eap.password == NULL)
1400 return NULL;
1401
0ebb23e3
JM
1402#ifdef CONFIG_EXT_PASSWORD
1403 if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
1404 buf = os_zalloc(4 + ssid->eap.password_len + 1);
1405 if (buf == NULL)
1406 return NULL;
1407 os_memcpy(buf, "ext:", 4);
1408 os_memcpy(buf + 4, ssid->eap.password, ssid->eap.password_len);
1409 return buf;
1410 }
1411#endif /* CONFIG_EXT_PASSWORD */
1412
6fc6879b
JM
1413 if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
1414 return wpa_config_write_string(
1415 ssid->eap.password, ssid->eap.password_len);
1416 }
1417
1418 buf = os_malloc(5 + 32 + 1);
1419 if (buf == NULL)
1420 return NULL;
1421
1422 os_memcpy(buf, "hash:", 5);
1423 wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
1424
1425 return buf;
1426}
1427#endif /* IEEE8021X_EAPOL */
1428
1429
1430static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
1431 const char *value, int idx)
1432{
1433 char *buf, title[20];
1434 int res;
1435
1436 buf = wpa_config_parse_string(value, len);
1437 if (buf == NULL) {
1438 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
1439 line, idx, value);
1440 return -1;
1441 }
1442 if (*len > MAX_WEP_KEY_LEN) {
1443 wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
1444 line, idx, value);
1445 os_free(buf);
1446 return -1;
1447 }
fea7c3a0
JM
1448 if (*len && *len != 5 && *len != 13 && *len != 16) {
1449 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key length %u - "
1450 "this network block will be ignored",
1451 line, (unsigned int) *len);
1452 }
6fc6879b 1453 os_memcpy(key, buf, *len);
19c48da0 1454 str_clear_free(buf);
6fc6879b 1455 res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
a80ba67a 1456 if (!os_snprintf_error(sizeof(title), res))
6fc6879b
JM
1457 wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
1458 return 0;
1459}
1460
1461
1462static int wpa_config_parse_wep_key0(const struct parse_data *data,
1463 struct wpa_ssid *ssid, int line,
1464 const char *value)
1465{
1466 return wpa_config_parse_wep_key(ssid->wep_key[0],
1467 &ssid->wep_key_len[0], line,
1468 value, 0);
1469}
1470
1471
1472static int wpa_config_parse_wep_key1(const struct parse_data *data,
1473 struct wpa_ssid *ssid, int line,
1474 const char *value)
1475{
1476 return wpa_config_parse_wep_key(ssid->wep_key[1],
1477 &ssid->wep_key_len[1], line,
1478 value, 1);
1479}
1480
1481
1482static int wpa_config_parse_wep_key2(const struct parse_data *data,
1483 struct wpa_ssid *ssid, int line,
1484 const char *value)
1485{
1486 return wpa_config_parse_wep_key(ssid->wep_key[2],
1487 &ssid->wep_key_len[2], line,
1488 value, 2);
1489}
1490
1491
1492static int wpa_config_parse_wep_key3(const struct parse_data *data,
1493 struct wpa_ssid *ssid, int line,
1494 const char *value)
1495{
1496 return wpa_config_parse_wep_key(ssid->wep_key[3],
1497 &ssid->wep_key_len[3], line,
1498 value, 3);
1499}
1500
1501
1502#ifndef NO_CONFIG_WRITE
1503static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
1504{
1505 if (ssid->wep_key_len[idx] == 0)
1506 return NULL;
1507 return wpa_config_write_string(ssid->wep_key[idx],
1508 ssid->wep_key_len[idx]);
1509}
1510
1511
1512static char * wpa_config_write_wep_key0(const struct parse_data *data,
1513 struct wpa_ssid *ssid)
1514{
1515 return wpa_config_write_wep_key(ssid, 0);
1516}
1517
1518
1519static char * wpa_config_write_wep_key1(const struct parse_data *data,
1520 struct wpa_ssid *ssid)
1521{
1522 return wpa_config_write_wep_key(ssid, 1);
1523}
1524
1525
1526static char * wpa_config_write_wep_key2(const struct parse_data *data,
1527 struct wpa_ssid *ssid)
1528{
1529 return wpa_config_write_wep_key(ssid, 2);
1530}
1531
1532
1533static char * wpa_config_write_wep_key3(const struct parse_data *data,
1534 struct wpa_ssid *ssid)
1535{
1536 return wpa_config_write_wep_key(ssid, 3);
1537}
1538#endif /* NO_CONFIG_WRITE */
1539
1540
fbdcfd57
JM
1541#ifdef CONFIG_P2P
1542
9ec87666
JM
1543static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
1544 struct wpa_ssid *ssid, int line,
1545 const char *value)
1546{
1547 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
1548 os_strcmp(value, "any") == 0) {
1549 os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
1550 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
1551 return 0;
1552 }
1553 if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
1554 wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
1555 line, value);
1556 return -1;
1557 }
1558 ssid->bssid_set = 1;
1559 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
1560 MAC2STR(ssid->go_p2p_dev_addr));
1561 return 0;
1562}
1563
1564
1565#ifndef NO_CONFIG_WRITE
1566static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
1567 struct wpa_ssid *ssid)
1568{
1569 char *value;
1570 int res;
1571
1572 if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
1573 return NULL;
1574
1575 value = os_malloc(20);
1576 if (value == NULL)
1577 return NULL;
1578 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
d85e1fc8 1579 if (os_snprintf_error(20, res)) {
9ec87666
JM
1580 os_free(value);
1581 return NULL;
1582 }
1583 value[20 - 1] = '\0';
1584 return value;
1585}
1586#endif /* NO_CONFIG_WRITE */
1587
1588
fbdcfd57
JM
1589static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
1590 struct wpa_ssid *ssid, int line,
1591 const char *value)
1592{
b3d6a0a8
ST
1593 return wpa_config_parse_addr_list(data, line, value,
1594 &ssid->p2p_client_list,
1595 &ssid->num_p2p_clients,
79cd993a 1596 "p2p_client_list", 0, 0);
fbdcfd57
JM
1597}
1598
1599
1600#ifndef NO_CONFIG_WRITE
1601static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
1602 struct wpa_ssid *ssid)
1603{
b3d6a0a8
ST
1604 return wpa_config_write_addr_list(data, ssid->p2p_client_list,
1605 ssid->num_p2p_clients,
1606 "p2p_client_list");
fbdcfd57
JM
1607}
1608#endif /* NO_CONFIG_WRITE */
1609
01a57fe4
JM
1610
1611static int wpa_config_parse_psk_list(const struct parse_data *data,
1612 struct wpa_ssid *ssid, int line,
1613 const char *value)
1614{
1615 struct psk_list_entry *p;
1616 const char *pos;
1617
1618 p = os_zalloc(sizeof(*p));
1619 if (p == NULL)
1620 return -1;
1621
1622 pos = value;
1623 if (os_strncmp(pos, "P2P-", 4) == 0) {
1624 p->p2p = 1;
1625 pos += 4;
1626 }
1627
1628 if (hwaddr_aton(pos, p->addr)) {
1629 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list address '%s'",
1630 line, pos);
1631 os_free(p);
1632 return -1;
1633 }
1634 pos += 17;
1635 if (*pos != '-') {
1636 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list '%s'",
1637 line, pos);
1638 os_free(p);
1639 return -1;
1640 }
1641 pos++;
1642
1643 if (hexstr2bin(pos, p->psk, PMK_LEN) || pos[PMK_LEN * 2] != '\0') {
1644 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list PSK '%s'",
1645 line, pos);
1646 os_free(p);
1647 return -1;
1648 }
1649
1650 dl_list_add(&ssid->psk_list, &p->list);
1651
1652 return 0;
1653}
1654
1655
1656#ifndef NO_CONFIG_WRITE
1657static char * wpa_config_write_psk_list(const struct parse_data *data,
1658 struct wpa_ssid *ssid)
1659{
1660 return NULL;
1661}
1662#endif /* NO_CONFIG_WRITE */
1663
fbdcfd57
JM
1664#endif /* CONFIG_P2P */
1665
5cfb672d
JM
1666
1667#ifdef CONFIG_MESH
1668
2b2bb5a8
MH
1669static int wpa_config_parse_mesh_basic_rates(const struct parse_data *data,
1670 struct wpa_ssid *ssid, int line,
1671 const char *value)
1672{
1673 int *rates = wpa_config_parse_int_array(value);
1674
1675 if (rates == NULL) {
1676 wpa_printf(MSG_ERROR, "Line %d: Invalid mesh_basic_rates '%s'",
1677 line, value);
1678 return -1;
1679 }
1680 if (rates[0] == 0) {
1681 os_free(rates);
1682 rates = NULL;
1683 }
1684
1685 os_free(ssid->mesh_basic_rates);
1686 ssid->mesh_basic_rates = rates;
1687
1688 return 0;
1689}
1690
1691
5cfb672d 1692#ifndef NO_CONFIG_WRITE
2b2bb5a8 1693
2b2bb5a8
MH
1694static char * wpa_config_write_mesh_basic_rates(const struct parse_data *data,
1695 struct wpa_ssid *ssid)
1696{
1697 return wpa_config_write_freqs(data, ssid->mesh_basic_rates);
1698}
1699
5cfb672d
JM
1700#endif /* NO_CONFIG_WRITE */
1701
1702#endif /* CONFIG_MESH */
1703
1704
6fc6879b
JM
1705/* Helper macros for network block parser */
1706
1707#ifdef OFFSET
1708#undef OFFSET
1709#endif /* OFFSET */
1710/* OFFSET: Get offset of a variable within the wpa_ssid structure */
1711#define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
1712
1713/* STR: Define a string variable for an ASCII string; f = field name */
1714#ifdef NO_CONFIG_WRITE
1715#define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
1716#define _STRe(f) #f, wpa_config_parse_str, OFFSET(eap.f)
1717#else /* NO_CONFIG_WRITE */
1718#define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
1719#define _STRe(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(eap.f)
1720#endif /* NO_CONFIG_WRITE */
1721#define STR(f) _STR(f), NULL, NULL, NULL, 0
1722#define STRe(f) _STRe(f), NULL, NULL, NULL, 0
1723#define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
1724#define STR_KEYe(f) _STRe(f), NULL, NULL, NULL, 1
1725
1726/* STR_LEN: Define a string variable with a separate variable for storing the
1727 * data length. Unlike STR(), this can be used to store arbitrary binary data
1728 * (i.e., even nul termination character). */
1729#define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
1730#define _STR_LENe(f) _STRe(f), OFFSET(eap.f ## _len)
1731#define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
1732#define STR_LENe(f) _STR_LENe(f), NULL, NULL, 0
1733#define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
1734
1735/* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
1736 * explicitly specified. */
1737#define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
1738#define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
1739#define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
1740
1741#ifdef NO_CONFIG_WRITE
1742#define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
1743#define _INTe(f) #f, wpa_config_parse_int, OFFSET(eap.f), (void *) 0
1744#else /* NO_CONFIG_WRITE */
1745#define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
1746 OFFSET(f), (void *) 0
1747#define _INTe(f) #f, wpa_config_parse_int, wpa_config_write_int, \
1748 OFFSET(eap.f), (void *) 0
1749#endif /* NO_CONFIG_WRITE */
1750
1751/* INT: Define an integer variable */
1752#define INT(f) _INT(f), NULL, NULL, 0
1753#define INTe(f) _INTe(f), NULL, NULL, 0
1754
1755/* INT_RANGE: Define an integer variable with allowed value range */
1756#define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
1757
1758/* FUNC: Define a configuration variable that uses a custom function for
1759 * parsing and writing the value. */
1760#ifdef NO_CONFIG_WRITE
1761#define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
1762#else /* NO_CONFIG_WRITE */
1763#define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
1764 NULL, NULL, NULL, NULL
1765#endif /* NO_CONFIG_WRITE */
1766#define FUNC(f) _FUNC(f), 0
1767#define FUNC_KEY(f) _FUNC(f), 1
1768
1769/*
1770 * Table of network configuration variables. This table is used to parse each
1771 * network configuration variable, e.g., each line in wpa_supplicant.conf file
1772 * that is inside a network block.
1773 *
1774 * This table is generated using the helper macros defined above and with
1775 * generous help from the C pre-processor. The field name is stored as a string
1776 * into .name and for STR and INT types, the offset of the target buffer within
1777 * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
1778 * offset to the field containing the length of the configuration variable.
1779 * .param3 and .param4 can be used to mark the allowed range (length for STR
1780 * and value for INT).
1781 *
1782 * For each configuration line in wpa_supplicant.conf, the parser goes through
1783 * this table and select the entry that matches with the field name. The parser
1784 * function (.parser) is then called to parse the actual value of the field.
1785 *
1786 * This kind of mechanism makes it easy to add new configuration parameters,
1787 * since only one line needs to be added into this table and into the
1788 * struct wpa_ssid definition if the new variable is either a string or
1789 * integer. More complex types will need to use their own parser and writer
1790 * functions.
1791 */
1792static const struct parse_data ssid_fields[] = {
1793 { STR_RANGE(ssid, 0, MAX_SSID_LEN) },
1794 { INT_RANGE(scan_ssid, 0, 1) },
1795 { FUNC(bssid) },
b83e4554
ST
1796 { FUNC(bssid_blacklist) },
1797 { FUNC(bssid_whitelist) },
6fc6879b
JM
1798 { FUNC_KEY(psk) },
1799 { FUNC(proto) },
1800 { FUNC(key_mgmt) },
1f6c0ab8 1801 { INT(bg_scan_period) },
6fc6879b
JM
1802 { FUNC(pairwise) },
1803 { FUNC(group) },
1804 { FUNC(auth_alg) },
d3a98225 1805 { FUNC(scan_freq) },
b766a9a2 1806 { FUNC(freq_list) },
6fc6879b
JM
1807#ifdef IEEE8021X_EAPOL
1808 { FUNC(eap) },
1809 { STR_LENe(identity) },
1810 { STR_LENe(anonymous_identity) },
556f5a2a 1811 { FUNC_KEY(password) },
6fc6879b
JM
1812 { STRe(ca_cert) },
1813 { STRe(ca_path) },
1814 { STRe(client_cert) },
1815 { STRe(private_key) },
1816 { STR_KEYe(private_key_passwd) },
1817 { STRe(dh_file) },
1818 { STRe(subject_match) },
1819 { STRe(altsubject_match) },
01f809c7 1820 { STRe(domain_suffix_match) },
cebee30f 1821 { STRe(domain_match) },
6fc6879b
JM
1822 { STRe(ca_cert2) },
1823 { STRe(ca_path2) },
1824 { STRe(client_cert2) },
1825 { STRe(private_key2) },
1826 { STR_KEYe(private_key2_passwd) },
1827 { STRe(dh_file2) },
1828 { STRe(subject_match2) },
1829 { STRe(altsubject_match2) },
01f809c7 1830 { STRe(domain_suffix_match2) },
cebee30f 1831 { STRe(domain_match2) },
6fc6879b
JM
1832 { STRe(phase1) },
1833 { STRe(phase2) },
1834 { STRe(pcsc) },
1835 { STR_KEYe(pin) },
1836 { STRe(engine_id) },
1837 { STRe(key_id) },
61ee0f71
DS
1838 { STRe(cert_id) },
1839 { STRe(ca_cert_id) },
98842d51
CL
1840 { STR_KEYe(pin2) },
1841 { STRe(engine2_id) },
61ee0f71
DS
1842 { STRe(key2_id) },
1843 { STRe(cert2_id) },
1844 { STRe(ca_cert2_id) },
6fc6879b 1845 { INTe(engine) },
98842d51 1846 { INTe(engine2) },
6fc6879b 1847 { INT(eapol_flags) },
13f6a07e 1848 { INTe(sim_num) },
07e2de31 1849 { STRe(openssl_ciphers) },
02a8d45a 1850 { INTe(erp) },
6fc6879b
JM
1851#endif /* IEEE8021X_EAPOL */
1852 { FUNC_KEY(wep_key0) },
1853 { FUNC_KEY(wep_key1) },
1854 { FUNC_KEY(wep_key2) },
1855 { FUNC_KEY(wep_key3) },
1856 { INT(wep_tx_keyidx) },
1857 { INT(priority) },
1858#ifdef IEEE8021X_EAPOL
1859 { INT(eap_workaround) },
1860 { STRe(pac_file) },
1861 { INTe(fragment_size) },
080585c0 1862 { INTe(ocsp) },
6fc6879b 1863#endif /* IEEE8021X_EAPOL */
476e6bb6
TP
1864#ifdef CONFIG_MESH
1865 { INT_RANGE(mode, 0, 5) },
07cb45cc 1866 { INT_RANGE(no_auto_peer, 0, 1) },
476e6bb6 1867#else /* CONFIG_MESH */
2c5d725c 1868 { INT_RANGE(mode, 0, 4) },
476e6bb6 1869#endif /* CONFIG_MESH */
6fc6879b 1870 { INT_RANGE(proactive_key_caching, 0, 1) },
4dac0245 1871 { INT_RANGE(disabled, 0, 2) },
6fc6879b
JM
1872 { STR(id_str) },
1873#ifdef CONFIG_IEEE80211W
1874 { INT_RANGE(ieee80211w, 0, 2) },
1875#endif /* CONFIG_IEEE80211W */
1876 { INT_RANGE(peerkey, 0, 1) },
1877 { INT_RANGE(mixed_cell, 0, 1) },
7829894c 1878 { INT_RANGE(frequency, 0, 65000) },
5cfb672d 1879#ifdef CONFIG_MESH
2b2bb5a8 1880 { FUNC(mesh_basic_rates) },
e6096799
MH
1881 { INT(dot11MeshMaxRetries) },
1882 { INT(dot11MeshRetryTimeout) },
1883 { INT(dot11MeshConfirmTimeout) },
1884 { INT(dot11MeshHoldingTimeout) },
5cfb672d 1885#endif /* CONFIG_MESH */
60b94c98
JM
1886 { INT(wpa_ptk_rekey) },
1887 { STR(bgscan) },
e62f4ed0 1888 { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
fbdcfd57 1889#ifdef CONFIG_P2P
9ec87666 1890 { FUNC(go_p2p_dev_addr) },
fbdcfd57 1891 { FUNC(p2p_client_list) },
01a57fe4 1892 { FUNC(psk_list) },
fbdcfd57 1893#endif /* CONFIG_P2P */
80e8a5ee
BG
1894#ifdef CONFIG_HT_OVERRIDES
1895 { INT_RANGE(disable_ht, 0, 1) },
1896 { INT_RANGE(disable_ht40, -1, 1) },
a90497f8 1897 { INT_RANGE(disable_sgi, 0, 1) },
39a5800f 1898 { INT_RANGE(disable_ldpc, 0, 1) },
d41cc8cc 1899 { INT_RANGE(ht40_intolerant, 0, 1) },
80e8a5ee
BG
1900 { INT_RANGE(disable_max_amsdu, -1, 1) },
1901 { INT_RANGE(ampdu_factor, -1, 3) },
1902 { INT_RANGE(ampdu_density, -1, 7) },
1903 { STR(ht_mcs) },
1904#endif /* CONFIG_HT_OVERRIDES */
e9ee8dc3
JB
1905#ifdef CONFIG_VHT_OVERRIDES
1906 { INT_RANGE(disable_vht, 0, 1) },
1907 { INT(vht_capa) },
1908 { INT(vht_capa_mask) },
1909 { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
1910 { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
1911 { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
1912 { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
1913 { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
1914 { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
1915 { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
1916 { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
1917 { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
1918 { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
1919 { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
1920 { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
1921 { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
1922 { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
1923 { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
1924 { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
1925#endif /* CONFIG_VHT_OVERRIDES */
07f53b8c 1926 { INT(ap_max_inactivity) },
fdfb1c8b 1927 { INT(dtim_period) },
18206e02 1928 { INT(beacon_int) },
dd10abcc
HW
1929#ifdef CONFIG_MACSEC
1930 { INT_RANGE(macsec_policy, 0, 1) },
1931#endif /* CONFIG_MACSEC */
e376290c
DS
1932#ifdef CONFIG_HS20
1933 { INT(update_identifier) },
1934#endif /* CONFIG_HS20 */
a313d17d 1935 { INT_RANGE(mac_addr, 0, 2) },
6fc6879b
JM
1936};
1937
1938#undef OFFSET
1939#undef _STR
1940#undef STR
1941#undef STR_KEY
1942#undef _STR_LEN
1943#undef STR_LEN
1944#undef STR_LEN_KEY
1945#undef _STR_RANGE
1946#undef STR_RANGE
1947#undef STR_RANGE_KEY
1948#undef _INT
1949#undef INT
1950#undef INT_RANGE
1951#undef _FUNC
1952#undef FUNC
1953#undef FUNC_KEY
e7ecab4a 1954#define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
6fc6879b
JM
1955
1956
1957/**
1958 * wpa_config_add_prio_network - Add a network to priority lists
1959 * @config: Configuration data from wpa_config_read()
1960 * @ssid: Pointer to the network configuration to be added to the list
1961 * Returns: 0 on success, -1 on failure
1962 *
1963 * This function is used to add a network block to the priority list of
1964 * networks. This must be called for each network when reading in the full
1965 * configuration. In addition, this can be used indirectly when updating
1966 * priorities by calling wpa_config_update_prio_list().
1967 */
1968int wpa_config_add_prio_network(struct wpa_config *config,
1969 struct wpa_ssid *ssid)
1970{
1971 int prio;
1972 struct wpa_ssid *prev, **nlist;
1973
1974 /*
1975 * Add to an existing priority list if one is available for the
1976 * configured priority level for this network.
1977 */
1978 for (prio = 0; prio < config->num_prio; prio++) {
1979 prev = config->pssid[prio];
1980 if (prev->priority == ssid->priority) {
1981 while (prev->pnext)
1982 prev = prev->pnext;
1983 prev->pnext = ssid;
1984 return 0;
1985 }
1986 }
1987
1988 /* First network for this priority - add a new priority list */
067ffa26
JM
1989 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
1990 sizeof(struct wpa_ssid *));
6fc6879b
JM
1991 if (nlist == NULL)
1992 return -1;
1993
1994 for (prio = 0; prio < config->num_prio; prio++) {
2c60ca73
JM
1995 if (nlist[prio]->priority < ssid->priority) {
1996 os_memmove(&nlist[prio + 1], &nlist[prio],
1997 (config->num_prio - prio) *
1998 sizeof(struct wpa_ssid *));
6fc6879b 1999 break;
2c60ca73 2000 }
6fc6879b
JM
2001 }
2002
6fc6879b
JM
2003 nlist[prio] = ssid;
2004 config->num_prio++;
2005 config->pssid = nlist;
2006
2007 return 0;
2008}
2009
2010
2011/**
2012 * wpa_config_update_prio_list - Update network priority list
2013 * @config: Configuration data from wpa_config_read()
2014 * Returns: 0 on success, -1 on failure
2015 *
2016 * This function is called to update the priority list of networks in the
2017 * configuration when a network is being added or removed. This is also called
2018 * if a priority for a network is changed.
2019 */
aa53509f 2020int wpa_config_update_prio_list(struct wpa_config *config)
6fc6879b
JM
2021{
2022 struct wpa_ssid *ssid;
2023 int ret = 0;
2024
2025 os_free(config->pssid);
2026 config->pssid = NULL;
2027 config->num_prio = 0;
2028
2029 ssid = config->ssid;
2030 while (ssid) {
2031 ssid->pnext = NULL;
2032 if (wpa_config_add_prio_network(config, ssid) < 0)
2033 ret = -1;
2034 ssid = ssid->next;
2035 }
2036
2037 return ret;
2038}
2039
2040
2041#ifdef IEEE8021X_EAPOL
2042static void eap_peer_config_free(struct eap_peer_config *eap)
2043{
2044 os_free(eap->eap_methods);
19c48da0 2045 bin_clear_free(eap->identity, eap->identity_len);
6fc6879b 2046 os_free(eap->anonymous_identity);
19c48da0 2047 bin_clear_free(eap->password, eap->password_len);
6fc6879b
JM
2048 os_free(eap->ca_cert);
2049 os_free(eap->ca_path);
2050 os_free(eap->client_cert);
2051 os_free(eap->private_key);
19c48da0 2052 str_clear_free(eap->private_key_passwd);
6fc6879b
JM
2053 os_free(eap->dh_file);
2054 os_free(eap->subject_match);
2055 os_free(eap->altsubject_match);
01f809c7 2056 os_free(eap->domain_suffix_match);
cebee30f 2057 os_free(eap->domain_match);
6fc6879b
JM
2058 os_free(eap->ca_cert2);
2059 os_free(eap->ca_path2);
2060 os_free(eap->client_cert2);
2061 os_free(eap->private_key2);
19c48da0 2062 str_clear_free(eap->private_key2_passwd);
6fc6879b
JM
2063 os_free(eap->dh_file2);
2064 os_free(eap->subject_match2);
2065 os_free(eap->altsubject_match2);
01f809c7 2066 os_free(eap->domain_suffix_match2);
cebee30f 2067 os_free(eap->domain_match2);
6fc6879b
JM
2068 os_free(eap->phase1);
2069 os_free(eap->phase2);
2070 os_free(eap->pcsc);
19c48da0 2071 str_clear_free(eap->pin);
6fc6879b
JM
2072 os_free(eap->engine_id);
2073 os_free(eap->key_id);
61ee0f71
DS
2074 os_free(eap->cert_id);
2075 os_free(eap->ca_cert_id);
2076 os_free(eap->key2_id);
2077 os_free(eap->cert2_id);
2078 os_free(eap->ca_cert2_id);
19c48da0 2079 str_clear_free(eap->pin2);
98842d51 2080 os_free(eap->engine2_id);
6fc6879b
JM
2081 os_free(eap->otp);
2082 os_free(eap->pending_req_otp);
2083 os_free(eap->pac_file);
19c48da0
JM
2084 bin_clear_free(eap->new_password, eap->new_password_len);
2085 str_clear_free(eap->external_sim_resp);
07e2de31 2086 os_free(eap->openssl_ciphers);
6fc6879b
JM
2087}
2088#endif /* IEEE8021X_EAPOL */
2089
2090
2091/**
2092 * wpa_config_free_ssid - Free network/ssid configuration data
2093 * @ssid: Configuration data for the network
2094 *
2095 * This function frees all resources allocated for the network configuration
2096 * data.
2097 */
2098void wpa_config_free_ssid(struct wpa_ssid *ssid)
2099{
01a57fe4
JM
2100 struct psk_list_entry *psk;
2101
6fc6879b 2102 os_free(ssid->ssid);
19c48da0 2103 str_clear_free(ssid->passphrase);
9173b16f 2104 os_free(ssid->ext_psk);
6fc6879b
JM
2105#ifdef IEEE8021X_EAPOL
2106 eap_peer_config_free(&ssid->eap);
2107#endif /* IEEE8021X_EAPOL */
2108 os_free(ssid->id_str);
d3a98225 2109 os_free(ssid->scan_freq);
b766a9a2 2110 os_free(ssid->freq_list);
60b94c98 2111 os_free(ssid->bgscan);
fbdcfd57 2112 os_free(ssid->p2p_client_list);
79cd993a
ST
2113 os_free(ssid->bssid_blacklist);
2114 os_free(ssid->bssid_whitelist);
80e8a5ee
BG
2115#ifdef CONFIG_HT_OVERRIDES
2116 os_free(ssid->ht_mcs);
2117#endif /* CONFIG_HT_OVERRIDES */
2b2bb5a8
MH
2118#ifdef CONFIG_MESH
2119 os_free(ssid->mesh_basic_rates);
2120#endif /* CONFIG_MESH */
01a57fe4
JM
2121 while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
2122 list))) {
2123 dl_list_del(&psk->list);
6df19739 2124 bin_clear_free(psk, sizeof(*psk));
01a57fe4 2125 }
6df19739 2126 bin_clear_free(ssid, sizeof(*ssid));
6fc6879b
JM
2127}
2128
2129
1bb7b8e8
JM
2130void wpa_config_free_cred(struct wpa_cred *cred)
2131{
463c8ffb
JM
2132 size_t i;
2133
1bb7b8e8 2134 os_free(cred->realm);
19c48da0
JM
2135 str_clear_free(cred->username);
2136 str_clear_free(cred->password);
1bb7b8e8 2137 os_free(cred->ca_cert);
11e4f46a
JM
2138 os_free(cred->client_cert);
2139 os_free(cred->private_key);
19c48da0 2140 str_clear_free(cred->private_key_passwd);
1bb7b8e8 2141 os_free(cred->imsi);
19c48da0 2142 str_clear_free(cred->milenage);
463c8ffb
JM
2143 for (i = 0; i < cred->num_domain; i++)
2144 os_free(cred->domain[i]);
1bb7b8e8 2145 os_free(cred->domain);
ac1bc549 2146 os_free(cred->domain_suffix_match);
8ca93c59
JM
2147 os_free(cred->eap_method);
2148 os_free(cred->phase1);
2149 os_free(cred->phase2);
dbea8ac7 2150 os_free(cred->excluded_ssid);
bc00053c 2151 os_free(cred->roaming_partner);
aa26ba68 2152 os_free(cred->provisioning_sp);
33fb8c52
JM
2153 for (i = 0; i < cred->num_req_conn_capab; i++)
2154 os_free(cred->req_conn_capab_port[i]);
2155 os_free(cred->req_conn_capab_port);
2156 os_free(cred->req_conn_capab_proto);
1bb7b8e8
JM
2157 os_free(cred);
2158}
2159
2160
d9bb2821
JM
2161void wpa_config_flush_blobs(struct wpa_config *config)
2162{
2163#ifndef CONFIG_NO_CONFIG_BLOBS
2164 struct wpa_config_blob *blob, *prev;
2165
2166 blob = config->blobs;
2167 config->blobs = NULL;
2168 while (blob) {
2169 prev = blob;
2170 blob = blob->next;
2171 wpa_config_free_blob(prev);
2172 }
2173#endif /* CONFIG_NO_CONFIG_BLOBS */
2174}
2175
2176
6fc6879b
JM
2177/**
2178 * wpa_config_free - Free configuration data
2179 * @config: Configuration data from wpa_config_read()
2180 *
2181 * This function frees all resources allocated for the configuration data by
2182 * wpa_config_read().
2183 */
2184void wpa_config_free(struct wpa_config *config)
2185{
6fc6879b 2186 struct wpa_ssid *ssid, *prev = NULL;
1bb7b8e8 2187 struct wpa_cred *cred, *cprev;
54e06b4f 2188 int i;
e3768e7c 2189
6fc6879b
JM
2190 ssid = config->ssid;
2191 while (ssid) {
2192 prev = ssid;
2193 ssid = ssid->next;
2194 wpa_config_free_ssid(prev);
2195 }
2196
1bb7b8e8
JM
2197 cred = config->cred;
2198 while (cred) {
2199 cprev = cred;
2200 cred = cred->next;
2201 wpa_config_free_cred(cprev);
2202 }
2203
d9bb2821 2204 wpa_config_flush_blobs(config);
6fc6879b 2205
71dd3b78 2206 wpabuf_free(config->wps_vendor_ext_m1);
54e06b4f
JM
2207 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++)
2208 wpabuf_free(config->wps_vendor_ext[i]);
6fc6879b
JM
2209 os_free(config->ctrl_interface);
2210 os_free(config->ctrl_interface_group);
6fc6879b
JM
2211 os_free(config->opensc_engine_path);
2212 os_free(config->pkcs11_engine_path);
2213 os_free(config->pkcs11_module_path);
07e2de31 2214 os_free(config->openssl_ciphers);
f64adcd7 2215 os_free(config->pcsc_reader);
19c48da0 2216 str_clear_free(config->pcsc_pin);
6fc6879b 2217 os_free(config->driver_param);
3c0b7aa4
JM
2218 os_free(config->device_name);
2219 os_free(config->manufacturer);
2220 os_free(config->model_name);
2221 os_free(config->model_number);
2222 os_free(config->serial_number);
c0e4dd9e 2223 os_free(config->config_methods);
e3768e7c 2224 os_free(config->p2p_ssid_postfix);
6fc6879b 2225 os_free(config->pssid);
21d996f7 2226 os_free(config->p2p_pref_chan);
556b30da 2227 os_free(config->p2p_no_go_freq.range);
b0786fba 2228 os_free(config->autoscan);
f5ffc348 2229 os_free(config->freq_list);
3f2c8ba6
JM
2230 wpabuf_free(config->wps_nfc_dh_pubkey);
2231 wpabuf_free(config->wps_nfc_dh_privkey);
2232 wpabuf_free(config->wps_nfc_dev_pw);
306ae225 2233 os_free(config->ext_password_backend);
625f202a 2234 os_free(config->sae_groups);
18a2eaab 2235 wpabuf_free(config->ap_vendor_elements);
b572df86 2236 os_free(config->osu_dir);
e4fa8b12 2237 os_free(config->wowlan_triggers);
6fc6879b
JM
2238 os_free(config);
2239}
2240
2241
7c49fdd0
SL
2242/**
2243 * wpa_config_foreach_network - Iterate over each configured network
2244 * @config: Configuration data from wpa_config_read()
2245 * @func: Callback function to process each network
2246 * @arg: Opaque argument to pass to callback function
2247 *
2248 * Iterate over the set of configured networks calling the specified
2249 * function for each item. We guard against callbacks removing the
2250 * supplied network.
2251 */
2252void wpa_config_foreach_network(struct wpa_config *config,
2253 void (*func)(void *, struct wpa_ssid *),
2254 void *arg)
2255{
2256 struct wpa_ssid *ssid, *next;
2257
2258 ssid = config->ssid;
2259 while (ssid) {
2260 next = ssid->next;
2261 func(arg, ssid);
2262 ssid = next;
2263 }
2264}
2265
2266
6fc6879b
JM
2267/**
2268 * wpa_config_get_network - Get configured network based on id
2269 * @config: Configuration data from wpa_config_read()
2270 * @id: Unique network id to search for
2271 * Returns: Network configuration or %NULL if not found
2272 */
2273struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
2274{
2275 struct wpa_ssid *ssid;
2276
2277 ssid = config->ssid;
2278 while (ssid) {
2279 if (id == ssid->id)
2280 break;
2281 ssid = ssid->next;
2282 }
2283
2284 return ssid;
2285}
2286
2287
2288/**
2289 * wpa_config_add_network - Add a new network with empty configuration
2290 * @config: Configuration data from wpa_config_read()
2291 * Returns: The new network configuration or %NULL if operation failed
2292 */
2293struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
2294{
2295 int id;
2296 struct wpa_ssid *ssid, *last = NULL;
2297
2298 id = -1;
2299 ssid = config->ssid;
2300 while (ssid) {
2301 if (ssid->id > id)
2302 id = ssid->id;
2303 last = ssid;
2304 ssid = ssid->next;
2305 }
2306 id++;
2307
2308 ssid = os_zalloc(sizeof(*ssid));
2309 if (ssid == NULL)
2310 return NULL;
2311 ssid->id = id;
01a57fe4 2312 dl_list_init(&ssid->psk_list);
6fc6879b
JM
2313 if (last)
2314 last->next = ssid;
2315 else
2316 config->ssid = ssid;
2317
2318 wpa_config_update_prio_list(config);
2319
2320 return ssid;
2321}
2322
2323
2324/**
2325 * wpa_config_remove_network - Remove a configured network based on id
2326 * @config: Configuration data from wpa_config_read()
2327 * @id: Unique network id to search for
2328 * Returns: 0 on success, or -1 if the network was not found
2329 */
2330int wpa_config_remove_network(struct wpa_config *config, int id)
2331{
2332 struct wpa_ssid *ssid, *prev = NULL;
2333
2334 ssid = config->ssid;
2335 while (ssid) {
2336 if (id == ssid->id)
2337 break;
2338 prev = ssid;
2339 ssid = ssid->next;
2340 }
2341
2342 if (ssid == NULL)
2343 return -1;
2344
2345 if (prev)
2346 prev->next = ssid->next;
2347 else
2348 config->ssid = ssid->next;
2349
2350 wpa_config_update_prio_list(config);
2351 wpa_config_free_ssid(ssid);
2352 return 0;
2353}
2354
2355
2356/**
2357 * wpa_config_set_network_defaults - Set network default values
2358 * @ssid: Pointer to network configuration data
2359 */
2360void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
2361{
2362 ssid->proto = DEFAULT_PROTO;
2363 ssid->pairwise_cipher = DEFAULT_PAIRWISE;
2364 ssid->group_cipher = DEFAULT_GROUP;
2365 ssid->key_mgmt = DEFAULT_KEY_MGMT;
1f6c0ab8 2366 ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
6fc6879b
JM
2367#ifdef IEEE8021X_EAPOL
2368 ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
2369 ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
2370 ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
13f6a07e 2371 ssid->eap.sim_num = DEFAULT_USER_SELECTED_SIM;
6fc6879b 2372#endif /* IEEE8021X_EAPOL */
5cfb672d 2373#ifdef CONFIG_MESH
e6096799
MH
2374 ssid->dot11MeshMaxRetries = DEFAULT_MESH_MAX_RETRIES;
2375 ssid->dot11MeshRetryTimeout = DEFAULT_MESH_RETRY_TIMEOUT;
2376 ssid->dot11MeshConfirmTimeout = DEFAULT_MESH_CONFIRM_TIMEOUT;
2377 ssid->dot11MeshHoldingTimeout = DEFAULT_MESH_HOLDING_TIMEOUT;
5cfb672d 2378#endif /* CONFIG_MESH */
80e8a5ee
BG
2379#ifdef CONFIG_HT_OVERRIDES
2380 ssid->disable_ht = DEFAULT_DISABLE_HT;
2381 ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
a90497f8 2382 ssid->disable_sgi = DEFAULT_DISABLE_SGI;
39a5800f 2383 ssid->disable_ldpc = DEFAULT_DISABLE_LDPC;
80e8a5ee
BG
2384 ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
2385 ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
2386 ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
2387#endif /* CONFIG_HT_OVERRIDES */
e9ee8dc3
JB
2388#ifdef CONFIG_VHT_OVERRIDES
2389 ssid->vht_rx_mcs_nss_1 = -1;
2390 ssid->vht_rx_mcs_nss_2 = -1;
2391 ssid->vht_rx_mcs_nss_3 = -1;
2392 ssid->vht_rx_mcs_nss_4 = -1;
2393 ssid->vht_rx_mcs_nss_5 = -1;
2394 ssid->vht_rx_mcs_nss_6 = -1;
2395 ssid->vht_rx_mcs_nss_7 = -1;
2396 ssid->vht_rx_mcs_nss_8 = -1;
2397 ssid->vht_tx_mcs_nss_1 = -1;
2398 ssid->vht_tx_mcs_nss_2 = -1;
2399 ssid->vht_tx_mcs_nss_3 = -1;
2400 ssid->vht_tx_mcs_nss_4 = -1;
2401 ssid->vht_tx_mcs_nss_5 = -1;
2402 ssid->vht_tx_mcs_nss_6 = -1;
2403 ssid->vht_tx_mcs_nss_7 = -1;
2404 ssid->vht_tx_mcs_nss_8 = -1;
2405#endif /* CONFIG_VHT_OVERRIDES */
6e202021 2406 ssid->proactive_key_caching = -1;
62d49803
JM
2407#ifdef CONFIG_IEEE80211W
2408 ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
2409#endif /* CONFIG_IEEE80211W */
c267753b 2410 ssid->mac_addr = -1;
6fc6879b
JM
2411}
2412
2413
2414/**
2415 * wpa_config_set - Set a variable in network configuration
2416 * @ssid: Pointer to network configuration data
2417 * @var: Variable name, e.g., "ssid"
2418 * @value: Variable value
2419 * @line: Line number in configuration file or 0 if not used
2420 * Returns: 0 on success, -1 on failure
2421 *
2422 * This function can be used to set network configuration variables based on
2423 * both the configuration file and management interface input. The value
2424 * parameter must be in the same format as the text-based configuration file is
2425 * using. For example, strings are using double quotation marks.
2426 */
2427int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
2428 int line)
2429{
2430 size_t i;
2431 int ret = 0;
2432
2433 if (ssid == NULL || var == NULL || value == NULL)
2434 return -1;
2435
2436 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2437 const struct parse_data *field = &ssid_fields[i];
2438 if (os_strcmp(var, field->name) != 0)
2439 continue;
2440
2441 if (field->parser(field, ssid, line, value)) {
2442 if (line) {
2443 wpa_printf(MSG_ERROR, "Line %d: failed to "
2444 "parse %s '%s'.", line, var, value);
2445 }
2446 ret = -1;
2447 }
2448 break;
2449 }
2450 if (i == NUM_SSID_FIELDS) {
2451 if (line) {
2452 wpa_printf(MSG_ERROR, "Line %d: unknown network field "
2453 "'%s'.", line, var);
2454 }
2455 ret = -1;
2456 }
2457
2458 return ret;
2459}
2460
2461
67e1b984
JM
2462int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
2463 const char *value)
2464{
2465 size_t len;
2466 char *buf;
2467 int ret;
2468
2469 len = os_strlen(value);
2470 buf = os_malloc(len + 3);
2471 if (buf == NULL)
2472 return -1;
2473 buf[0] = '"';
2474 os_memcpy(buf + 1, value, len);
2475 buf[len + 1] = '"';
2476 buf[len + 2] = '\0';
2477 ret = wpa_config_set(ssid, var, buf, 0);
2478 os_free(buf);
2479 return ret;
2480}
2481
2482
3d3d3056
WS
2483/**
2484 * wpa_config_get_all - Get all options from network configuration
2485 * @ssid: Pointer to network configuration data
2486 * @get_keys: Determines if keys/passwords will be included in returned list
d1c8ac88 2487 * (if they may be exported)
3d3d3056
WS
2488 * Returns: %NULL terminated list of all set keys and their values in the form
2489 * of [key1, val1, key2, val2, ... , NULL]
2490 *
2491 * This function can be used to get list of all configured network properties.
2492 * The caller is responsible for freeing the returned list and all its
2493 * elements.
2494 */
2495char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
2496{
2497 const struct parse_data *field;
2498 char *key, *value;
2499 size_t i;
2500 char **props;
2501 int fields_num;
2502
d1c8ac88
JB
2503 get_keys = get_keys && ssid->export_keys;
2504
f9884c09 2505 props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
3d3d3056
WS
2506 if (!props)
2507 return NULL;
2508
2509 fields_num = 0;
2510 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2511 field = &ssid_fields[i];
2512 if (field->key_data && !get_keys)
2513 continue;
2514 value = field->writer(field, ssid);
04746865 2515 if (value == NULL)
3d3d3056 2516 continue;
04746865
JM
2517 if (os_strlen(value) == 0) {
2518 os_free(value);
2519 continue;
2520 }
3d3d3056
WS
2521
2522 key = os_strdup(field->name);
04746865
JM
2523 if (key == NULL) {
2524 os_free(value);
3d3d3056 2525 goto err;
04746865 2526 }
3d3d3056
WS
2527
2528 props[fields_num * 2] = key;
2529 props[fields_num * 2 + 1] = value;
2530
2531 fields_num++;
2532 }
2533
2534 return props;
2535
2536err:
2537 value = *props;
2538 while (value)
2539 os_free(value++);
2540 os_free(props);
2541 return NULL;
2542}
2543
2544
6fc6879b
JM
2545#ifndef NO_CONFIG_WRITE
2546/**
2547 * wpa_config_get - Get a variable in network configuration
2548 * @ssid: Pointer to network configuration data
2549 * @var: Variable name, e.g., "ssid"
2550 * Returns: Value of the variable or %NULL on failure
2551 *
2552 * This function can be used to get network configuration variables. The
2553 * returned value is a copy of the configuration variable in text format, i.e,.
2554 * the same format that the text-based configuration file and wpa_config_set()
2555 * are using for the value. The caller is responsible for freeing the returned
2556 * value.
2557 */
2558char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
2559{
2560 size_t i;
2561
2562 if (ssid == NULL || var == NULL)
2563 return NULL;
2564
2565 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2566 const struct parse_data *field = &ssid_fields[i];
2567 if (os_strcmp(var, field->name) == 0)
2568 return field->writer(field, ssid);
2569 }
2570
2571 return NULL;
2572}
2573
2574
2575/**
2576 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
2577 * @ssid: Pointer to network configuration data
2578 * @var: Variable name, e.g., "ssid"
2579 * Returns: Value of the variable or %NULL on failure
2580 *
2581 * This function can be used to get network configuration variable like
2582 * wpa_config_get(). The only difference is that this functions does not expose
2583 * key/password material from the configuration. In case a key/password field
2584 * is requested, the returned value is an empty string or %NULL if the variable
2585 * is not set or "*" if the variable is set (regardless of its value). The
2586 * returned value is a copy of the configuration variable in text format, i.e,.
2587 * the same format that the text-based configuration file and wpa_config_set()
2588 * are using for the value. The caller is responsible for freeing the returned
2589 * value.
2590 */
2591char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
2592{
2593 size_t i;
2594
2595 if (ssid == NULL || var == NULL)
2596 return NULL;
2597
2598 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2599 const struct parse_data *field = &ssid_fields[i];
2600 if (os_strcmp(var, field->name) == 0) {
2601 char *res = field->writer(field, ssid);
2602 if (field->key_data) {
2603 if (res && res[0]) {
2604 wpa_printf(MSG_DEBUG, "Do not allow "
2605 "key_data field to be "
2606 "exposed");
19c48da0 2607 str_clear_free(res);
6fc6879b
JM
2608 return os_strdup("*");
2609 }
2610
2611 os_free(res);
2612 return NULL;
2613 }
2614 return res;
2615 }
2616 }
2617
2618 return NULL;
2619}
2620#endif /* NO_CONFIG_WRITE */
2621
2622
2623/**
2624 * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
2625 * @ssid: Pointer to network configuration data
2626 *
2627 * This function must be called to update WPA PSK when either SSID or the
2628 * passphrase has changed for the network configuration.
2629 */
2630void wpa_config_update_psk(struct wpa_ssid *ssid)
2631{
2632#ifndef CONFIG_NO_PBKDF2
986de33d 2633 pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
6fc6879b
JM
2634 ssid->psk, PMK_LEN);
2635 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
2636 ssid->psk, PMK_LEN);
2637 ssid->psk_set = 1;
2638#endif /* CONFIG_NO_PBKDF2 */
2639}
2640
2641
33fb8c52
JM
2642static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
2643 const char *value)
2644{
2645 u8 *proto;
2646 int **port;
2647 int *ports, *nports;
2648 const char *pos;
2649 unsigned int num_ports;
2650
2651 proto = os_realloc_array(cred->req_conn_capab_proto,
2652 cred->num_req_conn_capab + 1, sizeof(u8));
2653 if (proto == NULL)
2654 return -1;
2655 cred->req_conn_capab_proto = proto;
2656
2657 port = os_realloc_array(cred->req_conn_capab_port,
2658 cred->num_req_conn_capab + 1, sizeof(int *));
2659 if (port == NULL)
2660 return -1;
2661 cred->req_conn_capab_port = port;
2662
2663 proto[cred->num_req_conn_capab] = atoi(value);
2664
2665 pos = os_strchr(value, ':');
2666 if (pos == NULL) {
2667 port[cred->num_req_conn_capab] = NULL;
2668 cred->num_req_conn_capab++;
2669 return 0;
2670 }
2671 pos++;
2672
2673 ports = NULL;
2674 num_ports = 0;
2675
2676 while (*pos) {
2677 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
2678 if (nports == NULL) {
2679 os_free(ports);
2680 return -1;
2681 }
2682 ports = nports;
2683 ports[num_ports++] = atoi(pos);
2684
2685 pos = os_strchr(pos, ',');
2686 if (pos == NULL)
2687 break;
2688 pos++;
2689 }
2690
2691 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
2692 if (nports == NULL) {
2693 os_free(ports);
2694 return -1;
2695 }
2696 ports = nports;
2697 ports[num_ports] = -1;
2698
2699 port[cred->num_req_conn_capab] = ports;
2700 cred->num_req_conn_capab++;
2701 return 0;
2702}
2703
2704
1bb7b8e8
JM
2705int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
2706 const char *value, int line)
2707{
2708 char *val;
2709 size_t len;
2710
03ed3324
JM
2711 if (os_strcmp(var, "temporary") == 0) {
2712 cred->temporary = atoi(value);
2713 return 0;
2714 }
2715
1a712d2f
JM
2716 if (os_strcmp(var, "priority") == 0) {
2717 cred->priority = atoi(value);
2718 return 0;
2719 }
2720
74794891
JM
2721 if (os_strcmp(var, "sp_priority") == 0) {
2722 int prio = atoi(value);
2723 if (prio < 0 || prio > 255)
2724 return -1;
2725 cred->sp_priority = prio;
2726 return 0;
2727 }
2728
d7b01abd
JM
2729 if (os_strcmp(var, "pcsc") == 0) {
2730 cred->pcsc = atoi(value);
2731 return 0;
2732 }
2733
8ca93c59
JM
2734 if (os_strcmp(var, "eap") == 0) {
2735 struct eap_method_type method;
2736 method.method = eap_peer_get_type(value, &method.vendor);
2737 if (method.vendor == EAP_VENDOR_IETF &&
2738 method.method == EAP_TYPE_NONE) {
2739 wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
2740 "for a credential", line, value);
2741 return -1;
2742 }
2743 os_free(cred->eap_method);
2744 cred->eap_method = os_malloc(sizeof(*cred->eap_method));
2745 if (cred->eap_method == NULL)
2746 return -1;
2747 os_memcpy(cred->eap_method, &method, sizeof(method));
2748 return 0;
2749 }
2750
02af9c90
JM
2751 if (os_strcmp(var, "password") == 0 &&
2752 os_strncmp(value, "ext:", 4) == 0) {
19c48da0 2753 str_clear_free(cred->password);
02af9c90
JM
2754 cred->password = os_strdup(value);
2755 cred->ext_password = 1;
2756 return 0;
2757 }
2758
f9cd147d
JM
2759 if (os_strcmp(var, "update_identifier") == 0) {
2760 cred->update_identifier = atoi(value);
2761 return 0;
2762 }
2763
4cad9df1
JM
2764 if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
2765 cred->min_dl_bandwidth_home = atoi(value);
2766 return 0;
2767 }
2768
2769 if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
2770 cred->min_ul_bandwidth_home = atoi(value);
2771 return 0;
2772 }
2773
2774 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
2775 cred->min_dl_bandwidth_roaming = atoi(value);
2776 return 0;
2777 }
2778
2779 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
2780 cred->min_ul_bandwidth_roaming = atoi(value);
2781 return 0;
2782 }
2783
a45b2dc5
JM
2784 if (os_strcmp(var, "max_bss_load") == 0) {
2785 cred->max_bss_load = atoi(value);
2786 return 0;
2787 }
2788
33fb8c52
JM
2789 if (os_strcmp(var, "req_conn_capab") == 0)
2790 return wpa_config_set_cred_req_conn_capab(cred, value);
2791
cf6d08a6
JM
2792 if (os_strcmp(var, "ocsp") == 0) {
2793 cred->ocsp = atoi(value);
2794 return 0;
2795 }
2796
13f6a07e
NJ
2797 if (os_strcmp(var, "sim_num") == 0) {
2798 cred->sim_num = atoi(value);
2799 return 0;
2800 }
2801
1bb7b8e8 2802 val = wpa_config_parse_string(value, &len);
7d86e537
JM
2803 if (val == NULL) {
2804 wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
2805 "value '%s'.", line, var, value);
1bb7b8e8 2806 return -1;
7d86e537 2807 }
1bb7b8e8
JM
2808
2809 if (os_strcmp(var, "realm") == 0) {
2810 os_free(cred->realm);
2811 cred->realm = val;
2812 return 0;
2813 }
2814
2815 if (os_strcmp(var, "username") == 0) {
19c48da0 2816 str_clear_free(cred->username);
1bb7b8e8
JM
2817 cred->username = val;
2818 return 0;
2819 }
2820
2821 if (os_strcmp(var, "password") == 0) {
19c48da0 2822 str_clear_free(cred->password);
1bb7b8e8 2823 cred->password = val;
02af9c90 2824 cred->ext_password = 0;
1bb7b8e8
JM
2825 return 0;
2826 }
2827
2828 if (os_strcmp(var, "ca_cert") == 0) {
2829 os_free(cred->ca_cert);
2830 cred->ca_cert = val;
2831 return 0;
2832 }
2833
11e4f46a
JM
2834 if (os_strcmp(var, "client_cert") == 0) {
2835 os_free(cred->client_cert);
2836 cred->client_cert = val;
2837 return 0;
2838 }
2839
2840 if (os_strcmp(var, "private_key") == 0) {
2841 os_free(cred->private_key);
2842 cred->private_key = val;
2843 return 0;
2844 }
2845
2846 if (os_strcmp(var, "private_key_passwd") == 0) {
19c48da0 2847 str_clear_free(cred->private_key_passwd);
11e4f46a
JM
2848 cred->private_key_passwd = val;
2849 return 0;
2850 }
2851
1bb7b8e8
JM
2852 if (os_strcmp(var, "imsi") == 0) {
2853 os_free(cred->imsi);
2854 cred->imsi = val;
2855 return 0;
2856 }
2857
2858 if (os_strcmp(var, "milenage") == 0) {
19c48da0 2859 str_clear_free(cred->milenage);
1bb7b8e8
JM
2860 cred->milenage = val;
2861 return 0;
2862 }
2863
ac1bc549
JM
2864 if (os_strcmp(var, "domain_suffix_match") == 0) {
2865 os_free(cred->domain_suffix_match);
2866 cred->domain_suffix_match = val;
2867 return 0;
2868 }
2869
1bb7b8e8 2870 if (os_strcmp(var, "domain") == 0) {
463c8ffb
JM
2871 char **new_domain;
2872 new_domain = os_realloc_array(cred->domain,
2873 cred->num_domain + 1,
2874 sizeof(char *));
2875 if (new_domain == NULL) {
2876 os_free(val);
2877 return -1;
2878 }
2879 new_domain[cred->num_domain++] = val;
2880 cred->domain = new_domain;
1bb7b8e8
JM
2881 return 0;
2882 }
2883
8ca93c59
JM
2884 if (os_strcmp(var, "phase1") == 0) {
2885 os_free(cred->phase1);
2886 cred->phase1 = val;
2887 return 0;
2888 }
2889
2890 if (os_strcmp(var, "phase2") == 0) {
2891 os_free(cred->phase2);
2892 cred->phase2 = val;
2893 return 0;
2894 }
2895
955567bc
JM
2896 if (os_strcmp(var, "roaming_consortium") == 0) {
2897 if (len < 3 || len > sizeof(cred->roaming_consortium)) {
2898 wpa_printf(MSG_ERROR, "Line %d: invalid "
2899 "roaming_consortium length %d (3..15 "
2900 "expected)", line, (int) len);
2901 os_free(val);
2902 return -1;
2903 }
2904 os_memcpy(cred->roaming_consortium, val, len);
2905 cred->roaming_consortium_len = len;
2906 os_free(val);
2907 return 0;
2908 }
2909
f47c1452
JM
2910 if (os_strcmp(var, "required_roaming_consortium") == 0) {
2911 if (len < 3 || len > sizeof(cred->required_roaming_consortium))
2912 {
2913 wpa_printf(MSG_ERROR, "Line %d: invalid "
2914 "required_roaming_consortium length %d "
2915 "(3..15 expected)", line, (int) len);
2916 os_free(val);
2917 return -1;
2918 }
2919 os_memcpy(cred->required_roaming_consortium, val, len);
2920 cred->required_roaming_consortium_len = len;
2921 os_free(val);
2922 return 0;
2923 }
2924
dbea8ac7
JM
2925 if (os_strcmp(var, "excluded_ssid") == 0) {
2926 struct excluded_ssid *e;
2927
2928 if (len > MAX_SSID_LEN) {
2929 wpa_printf(MSG_ERROR, "Line %d: invalid "
2930 "excluded_ssid length %d", line, (int) len);
2931 os_free(val);
2932 return -1;
2933 }
2934
2935 e = os_realloc_array(cred->excluded_ssid,
2936 cred->num_excluded_ssid + 1,
2937 sizeof(struct excluded_ssid));
2938 if (e == NULL) {
2939 os_free(val);
2940 return -1;
2941 }
2942 cred->excluded_ssid = e;
2943
2944 e = &cred->excluded_ssid[cred->num_excluded_ssid++];
2945 os_memcpy(e->ssid, val, len);
2946 e->ssid_len = len;
2947
2948 os_free(val);
2949
2950 return 0;
2951 }
2952
bc00053c
JM
2953 if (os_strcmp(var, "roaming_partner") == 0) {
2954 struct roaming_partner *p;
2955 char *pos;
2956
2957 p = os_realloc_array(cred->roaming_partner,
2958 cred->num_roaming_partner + 1,
2959 sizeof(struct roaming_partner));
2960 if (p == NULL) {
2961 os_free(val);
2962 return -1;
2963 }
2964 cred->roaming_partner = p;
2965
2966 p = &cred->roaming_partner[cred->num_roaming_partner];
2967
2968 pos = os_strchr(val, ',');
2969 if (pos == NULL) {
2970 os_free(val);
2971 return -1;
2972 }
2973 *pos++ = '\0';
2974 if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
2975 os_free(val);
2976 return -1;
2977 }
2978 os_memcpy(p->fqdn, val, pos - val);
2979
2980 p->exact_match = atoi(pos);
2981
2982 pos = os_strchr(pos, ',');
2983 if (pos == NULL) {
2984 os_free(val);
2985 return -1;
2986 }
2987 *pos++ = '\0';
2988
2989 p->priority = atoi(pos);
2990
2991 pos = os_strchr(pos, ',');
2992 if (pos == NULL) {
2993 os_free(val);
2994 return -1;
2995 }
2996 *pos++ = '\0';
2997
2998 if (os_strlen(pos) >= sizeof(p->country)) {
2999 os_free(val);
3000 return -1;
3001 }
3002 os_memcpy(p->country, pos, os_strlen(pos) + 1);
3003
3004 cred->num_roaming_partner++;
3005 os_free(val);
3006
3007 return 0;
3008 }
3009
aa26ba68
JM
3010 if (os_strcmp(var, "provisioning_sp") == 0) {
3011 os_free(cred->provisioning_sp);
3012 cred->provisioning_sp = val;
3013 return 0;
3014 }
3015
1bb7b8e8
JM
3016 if (line) {
3017 wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
3018 line, var);
3019 }
3020
f4b2d69b
JM
3021 os_free(val);
3022
1bb7b8e8
JM
3023 return -1;
3024}
3025
3026
8f03ac90 3027static char * alloc_int_str(int val)
c880ab87 3028{
1d399771 3029 const unsigned int bufsize = 20;
c880ab87 3030 char *buf;
1d399771 3031 int res;
c880ab87 3032
1d399771 3033 buf = os_malloc(bufsize);
c880ab87
JM
3034 if (buf == NULL)
3035 return NULL;
1d399771
JM
3036 res = os_snprintf(buf, bufsize, "%d", val);
3037 if (os_snprintf_error(bufsize, res)) {
3038 os_free(buf);
3039 buf = NULL;
3040 }
c880ab87
JM
3041 return buf;
3042}
3043
3044
8f03ac90 3045static char * alloc_strdup(const char *str)
c880ab87
JM
3046{
3047 if (str == NULL)
3048 return NULL;
3049 return os_strdup(str);
3050}
3051
3052
3053char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var)
3054{
3055 if (os_strcmp(var, "temporary") == 0)
3056 return alloc_int_str(cred->temporary);
3057
3058 if (os_strcmp(var, "priority") == 0)
3059 return alloc_int_str(cred->priority);
3060
3061 if (os_strcmp(var, "sp_priority") == 0)
3062 return alloc_int_str(cred->sp_priority);
3063
3064 if (os_strcmp(var, "pcsc") == 0)
3065 return alloc_int_str(cred->pcsc);
3066
3067 if (os_strcmp(var, "eap") == 0) {
3068 if (!cred->eap_method)
3069 return NULL;
3070 return alloc_strdup(eap_get_name(cred->eap_method[0].vendor,
3071 cred->eap_method[0].method));
3072 }
3073
3074 if (os_strcmp(var, "update_identifier") == 0)
3075 return alloc_int_str(cred->update_identifier);
3076
3077 if (os_strcmp(var, "min_dl_bandwidth_home") == 0)
3078 return alloc_int_str(cred->min_dl_bandwidth_home);
3079
3080 if (os_strcmp(var, "min_ul_bandwidth_home") == 0)
3081 return alloc_int_str(cred->min_ul_bandwidth_home);
3082
3083 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0)
3084 return alloc_int_str(cred->min_dl_bandwidth_roaming);
3085
3086 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0)
3087 return alloc_int_str(cred->min_ul_bandwidth_roaming);
3088
3089 if (os_strcmp(var, "max_bss_load") == 0)
3090 return alloc_int_str(cred->max_bss_load);
3091
3092 if (os_strcmp(var, "req_conn_capab") == 0) {
3093 unsigned int i;
3094 char *buf, *end, *pos;
3095 int ret;
3096
3097 if (!cred->num_req_conn_capab)
3098 return NULL;
3099
3100 buf = os_malloc(4000);
3101 if (buf == NULL)
3102 return NULL;
3103 pos = buf;
3104 end = pos + 4000;
3105 for (i = 0; i < cred->num_req_conn_capab; i++) {
3106 int *ports;
3107
3108 ret = os_snprintf(pos, end - pos, "%s%u",
3109 i > 0 ? "\n" : "",
3110 cred->req_conn_capab_proto[i]);
d85e1fc8 3111 if (os_snprintf_error(end - pos, ret))
c880ab87
JM
3112 return buf;
3113 pos += ret;
3114
3115 ports = cred->req_conn_capab_port[i];
3116 if (ports) {
3117 int j;
3118 for (j = 0; ports[j] != -1; j++) {
3119 ret = os_snprintf(pos, end - pos,
3120 "%s%d",
3121 j > 0 ? "," : ":",
3122 ports[j]);
d85e1fc8 3123 if (os_snprintf_error(end - pos, ret))
c880ab87
JM
3124 return buf;
3125 pos += ret;
3126 }
3127 }
3128 }
3129
3130 return buf;
3131 }
3132
3133 if (os_strcmp(var, "ocsp") == 0)
3134 return alloc_int_str(cred->ocsp);
3135
3136 if (os_strcmp(var, "realm") == 0)
3137 return alloc_strdup(cred->realm);
3138
3139 if (os_strcmp(var, "username") == 0)
3140 return alloc_strdup(cred->username);
3141
3142 if (os_strcmp(var, "password") == 0) {
3143 if (!cred->password)
3144 return NULL;
3145 return alloc_strdup("*");
3146 }
3147
3148 if (os_strcmp(var, "ca_cert") == 0)
3149 return alloc_strdup(cred->ca_cert);
3150
3151 if (os_strcmp(var, "client_cert") == 0)
3152 return alloc_strdup(cred->client_cert);
3153
3154 if (os_strcmp(var, "private_key") == 0)
3155 return alloc_strdup(cred->private_key);
3156
3157 if (os_strcmp(var, "private_key_passwd") == 0) {
3158 if (!cred->private_key_passwd)
3159 return NULL;
3160 return alloc_strdup("*");
3161 }
3162
3163 if (os_strcmp(var, "imsi") == 0)
3164 return alloc_strdup(cred->imsi);
3165
3166 if (os_strcmp(var, "milenage") == 0) {
3167 if (!(cred->milenage))
3168 return NULL;
3169 return alloc_strdup("*");
3170 }
3171
3172 if (os_strcmp(var, "domain_suffix_match") == 0)
3173 return alloc_strdup(cred->domain_suffix_match);
3174
3175 if (os_strcmp(var, "domain") == 0) {
3176 unsigned int i;
3177 char *buf, *end, *pos;
3178 int ret;
3179
3180 if (!cred->num_domain)
3181 return NULL;
3182
3183 buf = os_malloc(4000);
3184 if (buf == NULL)
3185 return NULL;
3186 pos = buf;
3187 end = pos + 4000;
3188
3189 for (i = 0; i < cred->num_domain; i++) {
3190 ret = os_snprintf(pos, end - pos, "%s%s",
3191 i > 0 ? "\n" : "", cred->domain[i]);
d85e1fc8 3192 if (os_snprintf_error(end - pos, ret))
c880ab87
JM
3193 return buf;
3194 pos += ret;
3195 }
3196
3197 return buf;
3198 }
3199
3200 if (os_strcmp(var, "phase1") == 0)
3201 return alloc_strdup(cred->phase1);
3202
3203 if (os_strcmp(var, "phase2") == 0)
3204 return alloc_strdup(cred->phase2);
3205
3206 if (os_strcmp(var, "roaming_consortium") == 0) {
3207 size_t buflen;
3208 char *buf;
3209
3210 if (!cred->roaming_consortium_len)
3211 return NULL;
3212 buflen = cred->roaming_consortium_len * 2 + 1;
3213 buf = os_malloc(buflen);
3214 if (buf == NULL)
3215 return NULL;
3216 wpa_snprintf_hex(buf, buflen, cred->roaming_consortium,
3217 cred->roaming_consortium_len);
3218 return buf;
3219 }
3220
3221 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3222 size_t buflen;
3223 char *buf;
3224
3225 if (!cred->required_roaming_consortium_len)
3226 return NULL;
3227 buflen = cred->required_roaming_consortium_len * 2 + 1;
3228 buf = os_malloc(buflen);
3229 if (buf == NULL)
3230 return NULL;
3231 wpa_snprintf_hex(buf, buflen, cred->required_roaming_consortium,
3232 cred->required_roaming_consortium_len);
3233 return buf;
3234 }
3235
3236 if (os_strcmp(var, "excluded_ssid") == 0) {
3237 unsigned int i;
3238 char *buf, *end, *pos;
3239
3240 if (!cred->num_excluded_ssid)
3241 return NULL;
3242
3243 buf = os_malloc(4000);
3244 if (buf == NULL)
3245 return NULL;
3246 pos = buf;
3247 end = pos + 4000;
3248
3249 for (i = 0; i < cred->num_excluded_ssid; i++) {
3250 struct excluded_ssid *e;
3251 int ret;
3252
3253 e = &cred->excluded_ssid[i];
3254 ret = os_snprintf(pos, end - pos, "%s%s",
3255 i > 0 ? "\n" : "",
3256 wpa_ssid_txt(e->ssid, e->ssid_len));
d85e1fc8 3257 if (os_snprintf_error(end - pos, ret))
c880ab87
JM
3258 return buf;
3259 pos += ret;
3260 }
3261
3262 return buf;
3263 }
3264
3265 if (os_strcmp(var, "roaming_partner") == 0) {
3266 unsigned int i;
3267 char *buf, *end, *pos;
3268
3269 if (!cred->num_roaming_partner)
3270 return NULL;
3271
3272 buf = os_malloc(4000);
3273 if (buf == NULL)
3274 return NULL;
3275 pos = buf;
3276 end = pos + 4000;
3277
3278 for (i = 0; i < cred->num_roaming_partner; i++) {
3279 struct roaming_partner *p;
3280 int ret;
3281
3282 p = &cred->roaming_partner[i];
3283 ret = os_snprintf(pos, end - pos, "%s%s,%d,%u,%s",
3284 i > 0 ? "\n" : "",
3285 p->fqdn, p->exact_match, p->priority,
3286 p->country);
d85e1fc8 3287 if (os_snprintf_error(end - pos, ret))
c880ab87
JM
3288 return buf;
3289 pos += ret;
3290 }
3291
3292 return buf;
3293 }
3294
3295 if (os_strcmp(var, "provisioning_sp") == 0)
3296 return alloc_strdup(cred->provisioning_sp);
3297
3298 return NULL;
3299}
3300
3301
d94c9ee6
JM
3302struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
3303{
3304 struct wpa_cred *cred;
3305
3306 cred = config->cred;
3307 while (cred) {
3308 if (id == cred->id)
3309 break;
3310 cred = cred->next;
3311 }
3312
3313 return cred;
3314}
3315
3316
3317struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
3318{
3319 int id;
3320 struct wpa_cred *cred, *last = NULL;
3321
3322 id = -1;
3323 cred = config->cred;
3324 while (cred) {
3325 if (cred->id > id)
3326 id = cred->id;
3327 last = cred;
3328 cred = cred->next;
3329 }
3330 id++;
3331
3332 cred = os_zalloc(sizeof(*cred));
3333 if (cred == NULL)
3334 return NULL;
3335 cred->id = id;
13f6a07e 3336 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
d94c9ee6
JM
3337 if (last)
3338 last->next = cred;
3339 else
3340 config->cred = cred;
3341
3342 return cred;
3343}
3344
3345
3346int wpa_config_remove_cred(struct wpa_config *config, int id)
3347{
3348 struct wpa_cred *cred, *prev = NULL;
3349
3350 cred = config->cred;
3351 while (cred) {
3352 if (id == cred->id)
3353 break;
3354 prev = cred;
3355 cred = cred->next;
3356 }
3357
3358 if (cred == NULL)
3359 return -1;
3360
3361 if (prev)
3362 prev->next = cred->next;
3363 else
3364 config->cred = cred->next;
3365
3366 wpa_config_free_cred(cred);
3367 return 0;
3368}
3369
3370
6fc6879b
JM
3371#ifndef CONFIG_NO_CONFIG_BLOBS
3372/**
3373 * wpa_config_get_blob - Get a named configuration blob
3374 * @config: Configuration data from wpa_config_read()
3375 * @name: Name of the blob
3376 * Returns: Pointer to blob data or %NULL if not found
3377 */
3378const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
3379 const char *name)
3380{
3381 struct wpa_config_blob *blob = config->blobs;
3382
3383 while (blob) {
3384 if (os_strcmp(blob->name, name) == 0)
3385 return blob;
3386 blob = blob->next;
3387 }
3388 return NULL;
3389}
3390
3391
3392/**
3393 * wpa_config_set_blob - Set or add a named configuration blob
3394 * @config: Configuration data from wpa_config_read()
3395 * @blob: New value for the blob
3396 *
3397 * Adds a new configuration blob or replaces the current value of an existing
3398 * blob.
3399 */
3400void wpa_config_set_blob(struct wpa_config *config,
3401 struct wpa_config_blob *blob)
3402{
3403 wpa_config_remove_blob(config, blob->name);
3404 blob->next = config->blobs;
3405 config->blobs = blob;
3406}
3407
3408
3409/**
3410 * wpa_config_free_blob - Free blob data
3411 * @blob: Pointer to blob to be freed
3412 */
3413void wpa_config_free_blob(struct wpa_config_blob *blob)
3414{
3415 if (blob) {
3416 os_free(blob->name);
19c48da0 3417 bin_clear_free(blob->data, blob->len);
6fc6879b
JM
3418 os_free(blob);
3419 }
3420}
3421
3422
3423/**
3424 * wpa_config_remove_blob - Remove a named configuration blob
3425 * @config: Configuration data from wpa_config_read()
3426 * @name: Name of the blob to remove
3427 * Returns: 0 if blob was removed or -1 if blob was not found
3428 */
3429int wpa_config_remove_blob(struct wpa_config *config, const char *name)
3430{
3431 struct wpa_config_blob *pos = config->blobs, *prev = NULL;
3432
3433 while (pos) {
3434 if (os_strcmp(pos->name, name) == 0) {
3435 if (prev)
3436 prev->next = pos->next;
3437 else
3438 config->blobs = pos->next;
3439 wpa_config_free_blob(pos);
3440 return 0;
3441 }
3442 prev = pos;
3443 pos = pos->next;
3444 }
3445
3446 return -1;
3447}
3448#endif /* CONFIG_NO_CONFIG_BLOBS */
3449
3450
3451/**
3452 * wpa_config_alloc_empty - Allocate an empty configuration
3453 * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
3454 * socket
3455 * @driver_param: Driver parameters
3456 * Returns: Pointer to allocated configuration data or %NULL on failure
3457 */
3458struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
3459 const char *driver_param)
3460{
3461 struct wpa_config *config;
c26effe1
YD
3462 const int aCWmin = 4, aCWmax = 10;
3463 const struct hostapd_wmm_ac_params ac_bk =
3464 { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
3465 const struct hostapd_wmm_ac_params ac_be =
3466 { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
3467 const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
623ecdd5 3468 { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
c26effe1 3469 const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
623ecdd5 3470 { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
6fc6879b
JM
3471
3472 config = os_zalloc(sizeof(*config));
3473 if (config == NULL)
3474 return NULL;
3475 config->eapol_version = DEFAULT_EAPOL_VERSION;
3476 config->ap_scan = DEFAULT_AP_SCAN;
e45e8989 3477 config->user_mpm = DEFAULT_USER_MPM;
4b409368 3478 config->max_peer_links = DEFAULT_MAX_PEER_LINKS;
5a2a6de6 3479 config->mesh_max_inactivity = DEFAULT_MESH_MAX_INACTIVITY;
6fc6879b 3480 config->fast_reauth = DEFAULT_FAST_REAUTH;
e3768e7c 3481 config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
0f66abd2 3482 config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
462a7439 3483 config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
e3bd6e9d 3484 config->p2p_optimize_listen_chan = DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN;
c9c38b09 3485 config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
78633c37
SL
3486 config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
3487 config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
dae608d5 3488 config->max_num_sta = DEFAULT_MAX_NUM_STA;
11540c0b 3489 config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
6124e858 3490 config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
c26effe1
YD
3491 config->wmm_ac_params[0] = ac_be;
3492 config->wmm_ac_params[1] = ac_bk;
3493 config->wmm_ac_params[2] = ac_vi;
3494 config->wmm_ac_params[3] = ac_vo;
d3b20469 3495 config->p2p_search_delay = DEFAULT_P2P_SEARCH_DELAY;
c267753b 3496 config->rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
b41f2684 3497 config->key_mgmt_offload = DEFAULT_KEY_MGMT_OFFLOAD;
483dd6a5 3498 config->cert_in_cb = DEFAULT_CERT_IN_CB;
6fc6879b
JM
3499
3500 if (ctrl_interface)
3501 config->ctrl_interface = os_strdup(ctrl_interface);
3502 if (driver_param)
3503 config->driver_param = os_strdup(driver_param);
3504
3505 return config;
3506}
3507
3508
3509#ifndef CONFIG_NO_STDOUT_DEBUG
3510/**
3511 * wpa_config_debug_dump_networks - Debug dump of configured networks
3512 * @config: Configuration data from wpa_config_read()
3513 */
3514void wpa_config_debug_dump_networks(struct wpa_config *config)
3515{
3516 int prio;
3517 struct wpa_ssid *ssid;
3518
3519 for (prio = 0; prio < config->num_prio; prio++) {
3520 ssid = config->pssid[prio];
3521 wpa_printf(MSG_DEBUG, "Priority group %d",
3522 ssid->priority);
3523 while (ssid) {
3524 wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
3525 ssid->id,
3526 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
3527 ssid = ssid->pnext;
3528 }
3529 }
3530}
3531#endif /* CONFIG_NO_STDOUT_DEBUG */
121adf9c
JM
3532
3533
3534struct global_parse_data {
3535 char *name;
3536 int (*parser)(const struct global_parse_data *data,
3537 struct wpa_config *config, int line, const char *value);
3538 void *param1, *param2, *param3;
1d47214a 3539 unsigned int changed_flag;
121adf9c
JM
3540};
3541
3542
3543static int wpa_global_config_parse_int(const struct global_parse_data *data,
3544 struct wpa_config *config, int line,
3545 const char *pos)
3546{
eae3a584
JB
3547 int val, *dst;
3548 char *end;
3549
121adf9c 3550 dst = (int *) (((u8 *) config) + (long) data->param1);
eae3a584
JB
3551 val = strtol(pos, &end, 0);
3552 if (*end) {
3553 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
3554 line, pos);
3555 return -1;
3556 }
3557 *dst = val;
3558
121adf9c
JM
3559 wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
3560
3561 if (data->param2 && *dst < (long) data->param2) {
3562 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
3563 "min_value=%ld)", line, data->name, *dst,
3564 (long) data->param2);
3565 *dst = (long) data->param2;
3566 return -1;
3567 }
3568
3569 if (data->param3 && *dst > (long) data->param3) {
3570 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
3571 "max_value=%ld)", line, data->name, *dst,
3572 (long) data->param3);
3573 *dst = (long) data->param3;
3574 return -1;
3575 }
3576
3577 return 0;
3578}
3579
3580
3581static int wpa_global_config_parse_str(const struct global_parse_data *data,
3582 struct wpa_config *config, int line,
3583 const char *pos)
3584{
3585 size_t len;
3586 char **dst, *tmp;
3587
3588 len = os_strlen(pos);
3589 if (data->param2 && len < (size_t) data->param2) {
3590 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
3591 "min_len=%ld)", line, data->name,
3592 (unsigned long) len, (long) data->param2);
3593 return -1;
3594 }
3595
3596 if (data->param3 && len > (size_t) data->param3) {
3597 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
3598 "max_len=%ld)", line, data->name,
3599 (unsigned long) len, (long) data->param3);
3600 return -1;
3601 }
3602
3603 tmp = os_strdup(pos);
3604 if (tmp == NULL)
3605 return -1;
3606
3607 dst = (char **) (((u8 *) config) + (long) data->param1);
3608 os_free(*dst);
3609 *dst = tmp;
3610 wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
3611
3612 return 0;
3613}
3614
3615
31392709
HD
3616static int wpa_config_process_bgscan(const struct global_parse_data *data,
3617 struct wpa_config *config, int line,
3618 const char *pos)
3619{
3620 size_t len;
3621 char *tmp;
04c366cb 3622 int res;
31392709
HD
3623
3624 tmp = wpa_config_parse_string(pos, &len);
3625 if (tmp == NULL) {
3626 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
3627 line, data->name);
3628 return -1;
3629 }
3630
04c366cb
EL
3631 res = wpa_global_config_parse_str(data, config, line, tmp);
3632 os_free(tmp);
3633 return res;
31392709
HD
3634}
3635
3636
3f2c8ba6
JM
3637static int wpa_global_config_parse_bin(const struct global_parse_data *data,
3638 struct wpa_config *config, int line,
3639 const char *pos)
3640{
3641 size_t len;
3642 struct wpabuf **dst, *tmp;
3643
3644 len = os_strlen(pos);
3645 if (len & 0x01)
3646 return -1;
3647
3648 tmp = wpabuf_alloc(len / 2);
3649 if (tmp == NULL)
3650 return -1;
3651
3652 if (hexstr2bin(pos, wpabuf_put(tmp, len / 2), len / 2)) {
3653 wpabuf_free(tmp);
3654 return -1;
3655 }
3656
3657 dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
3658 wpabuf_free(*dst);
3659 *dst = tmp;
3660 wpa_printf(MSG_DEBUG, "%s", data->name);
3661
3662 return 0;
3663}
3664
3665
f5ffc348
BG
3666static int wpa_config_process_freq_list(const struct global_parse_data *data,
3667 struct wpa_config *config, int line,
3668 const char *value)
3669{
3670 int *freqs;
3671
3672 freqs = wpa_config_parse_int_array(value);
3673 if (freqs == NULL)
3674 return -1;
6668efda
JM
3675 if (freqs[0] == 0) {
3676 os_free(freqs);
3677 freqs = NULL;
3678 }
f5ffc348
BG
3679 os_free(config->freq_list);
3680 config->freq_list = freqs;
3681 return 0;
3682}
3683
3684
25ef8529
JM
3685#ifdef CONFIG_P2P
3686static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
3687 struct wpa_config *config, int line,
3688 const char *pos)
3689{
3690 u32 *dst;
3691 struct hostapd_ip_addr addr;
3692
3693 if (hostapd_parse_ip_addr(pos, &addr) < 0)
3694 return -1;
3695 if (addr.af != AF_INET)
3696 return -1;
3697
3698 dst = (u32 *) (((u8 *) config) + (long) data->param1);
3699 os_memcpy(dst, &addr.u.v4.s_addr, 4);
3700 wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
3701 WPA_GET_BE32((u8 *) dst));
3702
3703 return 0;
3704}
3705#endif /* CONFIG_P2P */
3706
3707
121adf9c
JM
3708static int wpa_config_process_country(const struct global_parse_data *data,
3709 struct wpa_config *config, int line,
3710 const char *pos)
3711{
3712 if (!pos[0] || !pos[1]) {
3713 wpa_printf(MSG_DEBUG, "Invalid country set");
3714 return -1;
3715 }
3716 config->country[0] = pos[0];
3717 config->country[1] = pos[1];
3718 wpa_printf(MSG_DEBUG, "country='%c%c'",
3719 config->country[0], config->country[1]);
3720 return 0;
3721}
3722
3723
3724static int wpa_config_process_load_dynamic_eap(
3725 const struct global_parse_data *data, struct wpa_config *config,
3726 int line, const char *so)
3727{
3728 int ret;
3729 wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
3730 ret = eap_peer_method_load(so);
3731 if (ret == -2) {
3732 wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
3733 "reloading.");
3734 } else if (ret) {
3735 wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
3736 "method '%s'.", line, so);
3737 return -1;
3738 }
3739
3740 return 0;
3741}
3742
3743
3744#ifdef CONFIG_WPS
3745
3746static int wpa_config_process_uuid(const struct global_parse_data *data,
3747 struct wpa_config *config, int line,
3748 const char *pos)
3749{
3750 char buf[40];
3751 if (uuid_str2bin(pos, config->uuid)) {
3752 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
3753 return -1;
3754 }
3755 uuid_bin2str(config->uuid, buf, sizeof(buf));
3756 wpa_printf(MSG_DEBUG, "uuid=%s", buf);
3757 return 0;
3758}
3759
3760
2f646b6e
JB
3761static int wpa_config_process_device_type(
3762 const struct global_parse_data *data,
3763 struct wpa_config *config, int line, const char *pos)
3764{
3765 return wps_dev_type_str2bin(pos, config->device_type);
3766}
3767
3768
121adf9c
JM
3769static int wpa_config_process_os_version(const struct global_parse_data *data,
3770 struct wpa_config *config, int line,
3771 const char *pos)
3772{
3773 if (hexstr2bin(pos, config->os_version, 4)) {
3774 wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
3775 return -1;
3776 }
3777 wpa_printf(MSG_DEBUG, "os_version=%08x",
3778 WPA_GET_BE32(config->os_version));
3779 return 0;
3780}
3781
71dd3b78
AS
3782
3783static int wpa_config_process_wps_vendor_ext_m1(
3784 const struct global_parse_data *data,
3785 struct wpa_config *config, int line, const char *pos)
3786{
3787 struct wpabuf *tmp;
3788 int len = os_strlen(pos) / 2;
3789 u8 *p;
3790
3791 if (!len) {
3792 wpa_printf(MSG_ERROR, "Line %d: "
3793 "invalid wps_vendor_ext_m1", line);
3794 return -1;
3795 }
3796
3797 tmp = wpabuf_alloc(len);
3798 if (tmp) {
3799 p = wpabuf_put(tmp, len);
3800
3801 if (hexstr2bin(pos, p, len)) {
3802 wpa_printf(MSG_ERROR, "Line %d: "
3803 "invalid wps_vendor_ext_m1", line);
3804 wpabuf_free(tmp);
3805 return -1;
3806 }
3807
3808 wpabuf_free(config->wps_vendor_ext_m1);
3809 config->wps_vendor_ext_m1 = tmp;
3810 } else {
3811 wpa_printf(MSG_ERROR, "Can not allocate "
3812 "memory for wps_vendor_ext_m1");
3813 return -1;
3814 }
3815
3816 return 0;
3817}
3818
121adf9c
JM
3819#endif /* CONFIG_WPS */
3820
e3768e7c
JM
3821#ifdef CONFIG_P2P
3822static int wpa_config_process_sec_device_type(
3823 const struct global_parse_data *data,
3824 struct wpa_config *config, int line, const char *pos)
3825{
3826 int idx;
3827
2f646b6e 3828 if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
e3768e7c
JM
3829 wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
3830 "items", line);
3831 return -1;
3832 }
3833
2f646b6e
JB
3834 idx = config->num_sec_device_types;
3835
3836 if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
e3768e7c 3837 return -1;
2f646b6e
JB
3838
3839 config->num_sec_device_types++;
e3768e7c
JM
3840 return 0;
3841}
21d996f7
JM
3842
3843
3844static int wpa_config_process_p2p_pref_chan(
3845 const struct global_parse_data *data,
3846 struct wpa_config *config, int line, const char *pos)
3847{
3848 struct p2p_channel *pref = NULL, *n;
3849 unsigned int num = 0;
3850 const char *pos2;
3851 u8 op_class, chan;
3852
3853 /* format: class:chan,class:chan,... */
3854
3855 while (*pos) {
3856 op_class = atoi(pos);
3857 pos2 = os_strchr(pos, ':');
3858 if (pos2 == NULL)
3859 goto fail;
3860 pos2++;
3861 chan = atoi(pos2);
3862
067ffa26
JM
3863 n = os_realloc_array(pref, num + 1,
3864 sizeof(struct p2p_channel));
21d996f7
JM
3865 if (n == NULL)
3866 goto fail;
3867 pref = n;
3868 pref[num].op_class = op_class;
3869 pref[num].chan = chan;
3870 num++;
3871
3872 pos = os_strchr(pos2, ',');
3873 if (pos == NULL)
3874 break;
3875 pos++;
3876 }
3877
3878 os_free(config->p2p_pref_chan);
3879 config->p2p_pref_chan = pref;
3880 config->num_p2p_pref_chan = num;
3881 wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
3882 (u8 *) config->p2p_pref_chan,
3883 config->num_p2p_pref_chan * sizeof(struct p2p_channel));
3884
3885 return 0;
3886
3887fail:
3888 os_free(pref);
3889 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
3890 return -1;
3891}
556b30da
JM
3892
3893
3894static int wpa_config_process_p2p_no_go_freq(
3895 const struct global_parse_data *data,
3896 struct wpa_config *config, int line, const char *pos)
3897{
3898 int ret;
3899
3900 ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
3901 if (ret < 0) {
3902 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
3903 return -1;
3904 }
3905
3906 wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
3907 config->p2p_no_go_freq.num);
3908
3909 return 0;
3910}
3911
e3768e7c
JM
3912#endif /* CONFIG_P2P */
3913
121adf9c 3914
46ee0427
JM
3915static int wpa_config_process_hessid(
3916 const struct global_parse_data *data,
3917 struct wpa_config *config, int line, const char *pos)
3918{
3919 if (hwaddr_aton2(pos, config->hessid) < 0) {
3920 wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
3921 line, pos);
3922 return -1;
3923 }
3924
3925 return 0;
3926}
3927
3928
625f202a
JM
3929static int wpa_config_process_sae_groups(
3930 const struct global_parse_data *data,
3931 struct wpa_config *config, int line, const char *pos)
3932{
3933 int *groups = wpa_config_parse_int_array(pos);
3934 if (groups == NULL) {
3935 wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
3936 line, pos);
3937 return -1;
3938 }
3939
3940 os_free(config->sae_groups);
3941 config->sae_groups = groups;
3942
3943 return 0;
3944}
3945
3946
18a2eaab
JM
3947static int wpa_config_process_ap_vendor_elements(
3948 const struct global_parse_data *data,
3949 struct wpa_config *config, int line, const char *pos)
3950{
3951 struct wpabuf *tmp;
3952 int len = os_strlen(pos) / 2;
3953 u8 *p;
3954
3955 if (!len) {
3956 wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
3957 line);
3958 return -1;
3959 }
3960
3961 tmp = wpabuf_alloc(len);
3962 if (tmp) {
3963 p = wpabuf_put(tmp, len);
3964
3965 if (hexstr2bin(pos, p, len)) {
3966 wpa_printf(MSG_ERROR, "Line %d: invalid "
3967 "ap_vendor_elements", line);
3968 wpabuf_free(tmp);
3969 return -1;
3970 }
3971
3972 wpabuf_free(config->ap_vendor_elements);
3973 config->ap_vendor_elements = tmp;
3974 } else {
3975 wpa_printf(MSG_ERROR, "Cannot allocate memory for "
3976 "ap_vendor_elements");
3977 return -1;
3978 }
3979
3980 return 0;
3981}
3982
3983
298f5185 3984#ifdef CONFIG_CTRL_IFACE
ea61aa1d
JM
3985static int wpa_config_process_no_ctrl_interface(
3986 const struct global_parse_data *data,
3987 struct wpa_config *config, int line, const char *pos)
3988{
3989 wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
3990 os_free(config->ctrl_interface);
3991 config->ctrl_interface = NULL;
3992 return 0;
3993}
298f5185 3994#endif /* CONFIG_CTRL_IFACE */
ea61aa1d
JM
3995
3996
121adf9c
JM
3997#ifdef OFFSET
3998#undef OFFSET
3999#endif /* OFFSET */
4000/* OFFSET: Get offset of a variable within the wpa_config structure */
4001#define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
4002
4003#define FUNC(f) #f, wpa_config_process_ ## f, OFFSET(f), NULL, NULL
4004#define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL
4005#define _INT(f) #f, wpa_global_config_parse_int, OFFSET(f)
4006#define INT(f) _INT(f), NULL, NULL
4007#define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
4008#define _STR(f) #f, wpa_global_config_parse_str, OFFSET(f)
4009#define STR(f) _STR(f), NULL, NULL
4010#define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
3f2c8ba6 4011#define BIN(f) #f, wpa_global_config_parse_bin, OFFSET(f), NULL, NULL
25ef8529 4012#define IPV4(f) #f, wpa_global_config_parse_ipv4, OFFSET(f), NULL, NULL
121adf9c
JM
4013
4014static const struct global_parse_data global_fields[] = {
4015#ifdef CONFIG_CTRL_IFACE
1d47214a 4016 { STR(ctrl_interface), 0 },
ea61aa1d 4017 { FUNC_NO_VAR(no_ctrl_interface), 0 },
1d47214a 4018 { STR(ctrl_interface_group), 0 } /* deprecated */,
121adf9c 4019#endif /* CONFIG_CTRL_IFACE */
0836c04b
HW
4020#ifdef CONFIG_MACSEC
4021 { INT_RANGE(eapol_version, 1, 3), 0 },
4022#else /* CONFIG_MACSEC */
1d47214a 4023 { INT_RANGE(eapol_version, 1, 2), 0 },
0836c04b 4024#endif /* CONFIG_MACSEC */
1d47214a 4025 { INT(ap_scan), 0 },
31392709 4026 { FUNC(bgscan), 0 },
e45e8989
TP
4027#ifdef CONFIG_MESH
4028 { INT(user_mpm), 0 },
4b409368 4029 { INT_RANGE(max_peer_links, 0, 255), 0 },
5a2a6de6 4030 { INT(mesh_max_inactivity), 0 },
e45e8989 4031#endif /* CONFIG_MESH */
54ddd743 4032 { INT(disable_scan_offload), 0 },
1d47214a
JM
4033 { INT(fast_reauth), 0 },
4034 { STR(opensc_engine_path), 0 },
4035 { STR(pkcs11_engine_path), 0 },
4036 { STR(pkcs11_module_path), 0 },
07e2de31 4037 { STR(openssl_ciphers), 0 },
f64adcd7
JM
4038 { STR(pcsc_reader), 0 },
4039 { STR(pcsc_pin), 0 },
a5d44ac0 4040 { INT(external_sim), 0 },
1d47214a
JM
4041 { STR(driver_param), 0 },
4042 { INT(dot11RSNAConfigPMKLifetime), 0 },
4043 { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
4044 { INT(dot11RSNAConfigSATimeout), 0 },
121adf9c 4045#ifndef CONFIG_NO_CONFIG_WRITE
1d47214a 4046 { INT(update_config), 0 },
121adf9c 4047#endif /* CONFIG_NO_CONFIG_WRITE */
1d47214a 4048 { FUNC_NO_VAR(load_dynamic_eap), 0 },
121adf9c 4049#ifdef CONFIG_WPS
1d47214a
JM
4050 { FUNC(uuid), CFG_CHANGED_UUID },
4051 { STR_RANGE(device_name, 0, 32), CFG_CHANGED_DEVICE_NAME },
1c9cb49f
JM
4052 { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
4053 { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
4054 { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
4055 { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
2f646b6e 4056 { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
1d47214a
JM
4057 { FUNC(os_version), CFG_CHANGED_OS_VERSION },
4058 { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
4059 { INT_RANGE(wps_cred_processing, 0, 2), 0 },
71dd3b78 4060 { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
121adf9c 4061#endif /* CONFIG_WPS */
e3768e7c
JM
4062#ifdef CONFIG_P2P
4063 { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
4064 { INT(p2p_listen_reg_class), 0 },
4065 { INT(p2p_listen_channel), 0 },
00eb2993
JM
4066 { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
4067 { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
e3768e7c
JM
4068 { INT_RANGE(p2p_go_intent, 0, 15), 0 },
4069 { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
4070 { INT_RANGE(persistent_reconnect, 0, 1), 0 },
0f66abd2 4071 { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
3071e181 4072 { INT(p2p_group_idle), 0 },
1b928f96
JM
4073 { INT_RANGE(p2p_passphrase_len, 8, 63),
4074 CFG_CHANGED_P2P_PASSPHRASE_LEN },
21d996f7 4075 { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
556b30da 4076 { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
51e9f228 4077 { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
e3bd6e9d 4078 { INT_RANGE(p2p_optimize_listen_chan, 0, 1), 0 },
a93a15bb 4079 { INT(p2p_go_ht40), 0 },
20ea1ca4 4080 { INT(p2p_go_vht), 0 },
7a808c7e 4081 { INT(p2p_disabled), 0 },
d76cd41a 4082 { INT(p2p_no_group_iface), 0 },
b277a2be 4083 { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
25ef8529
JM
4084 { IPV4(ip_addr_go), 0 },
4085 { IPV4(ip_addr_mask), 0 },
4086 { IPV4(ip_addr_start), 0 },
4087 { IPV4(ip_addr_end), 0 },
e3768e7c 4088#endif /* CONFIG_P2P */
1d47214a
JM
4089 { FUNC(country), CFG_CHANGED_COUNTRY },
4090 { INT(bss_max_count), 0 },
78633c37
SL
4091 { INT(bss_expiration_age), 0 },
4092 { INT(bss_expiration_scan_count), 0 },
dae608d5 4093 { INT_RANGE(filter_ssids, 0, 1), 0 },
bf8d6d24 4094 { INT_RANGE(filter_rssi, -100, 0), 0 },
0d7e5a3a 4095 { INT(max_num_sta), 0 },
46ee0427 4096 { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
66aadbd7
JK
4097#ifdef CONFIG_HS20
4098 { INT_RANGE(hs20, 0, 1), 0 },
4099#endif /* CONFIG_HS20 */
46ee0427 4100 { INT_RANGE(interworking, 0, 1), 0 },
11540c0b 4101 { FUNC(hessid), 0 },
1298c145 4102 { INT_RANGE(access_network_type, 0, 15), 0 },
b0786fba 4103 { INT_RANGE(pbc_in_m1, 0, 1), 0 },
3f2c8ba6 4104 { STR(autoscan), 0 },
042ec551
JM
4105 { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
4106 CFG_CHANGED_NFC_PASSWORD_TOKEN },
4107 { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4108 { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4109 { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
462a7439
ES
4110 { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
4111 { INT(p2p_go_max_inactivity), 0 },
4d5bda5f 4112 { INT_RANGE(auto_interworking, 0, 1), 0 },
6e202021 4113 { INT(okc), 0 },
62d49803 4114 { INT(pmf), 0 },
625f202a 4115 { FUNC(sae_groups), 0 },
18206e02
JM
4116 { INT(dtim_period), 0 },
4117 { INT(beacon_int), 0 },
18a2eaab 4118 { FUNC(ap_vendor_elements), 0 },
4342326f 4119 { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
f5ffc348 4120 { FUNC(freq_list), 0 },
6124e858 4121 { INT(scan_cur_freq), 0 },
4aa81868 4122 { INT(sched_scan_interval), 0 },
800d5872 4123 { INT(tdls_external_control), 0},
b572df86 4124 { STR(osu_dir), 0 },
e4fa8b12 4125 { STR(wowlan_triggers), 0 },
d3b20469 4126 { INT(p2p_search_delay), 0},
c267753b
JM
4127 { INT(mac_addr), 0 },
4128 { INT(rand_addr_lifetime), 0 },
4129 { INT(preassoc_mac_addr), 0 },
b41f2684 4130 { INT(key_mgmt_offload), 0},
121adf9c
JM
4131};
4132
4133#undef FUNC
4134#undef _INT
4135#undef INT
4136#undef INT_RANGE
4137#undef _STR
4138#undef STR
4139#undef STR_RANGE
3f2c8ba6 4140#undef BIN
25ef8529 4141#undef IPV4
e7ecab4a 4142#define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
121adf9c
JM
4143
4144
4145int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
4146{
4147 size_t i;
4148 int ret = 0;
4149
4150 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4151 const struct global_parse_data *field = &global_fields[i];
4152 size_t flen = os_strlen(field->name);
4153 if (os_strncmp(pos, field->name, flen) != 0 ||
4154 pos[flen] != '=')
4155 continue;
4156
4157 if (field->parser(field, config, line, pos + flen + 1)) {
4158 wpa_printf(MSG_ERROR, "Line %d: failed to "
4159 "parse '%s'.", line, pos);
4160 ret = -1;
4161 }
042ec551
JM
4162 if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
4163 config->wps_nfc_pw_from_config = 1;
1d47214a 4164 config->changed_parameters |= field->changed_flag;
121adf9c
JM
4165 break;
4166 }
4167 if (i == NUM_GLOBAL_FIELDS) {
c26effe1
YD
4168#ifdef CONFIG_AP
4169 if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
4170 char *tmp = os_strchr(pos, '=');
4171 if (tmp == NULL) {
4172 if (line < 0)
4173 return -1;
4174 wpa_printf(MSG_ERROR, "Line %d: invalid line "
4175 "'%s'", line, pos);
4176 return -1;
4177 }
4178 *tmp++ = '\0';
4179 if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
4180 tmp)) {
4181 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
4182 "AC item", line);
4183 return -1;
4184 }
4185 }
4186#endif /* CONFIG_AP */
1d47214a
JM
4187 if (line < 0)
4188 return -1;
121adf9c
JM
4189 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
4190 line, pos);
4191 ret = -1;
4192 }
4193
4194 return ret;
4195}