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