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