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