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