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