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