blob: be6fc5de49e1e0d333a6f74e84471f7368f09bd3 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * WPA Supplicant / Configuration parser and common functions
Roshan Pius3a1667e2018-07-03 15:17:14 -07003 * Copyright (c) 2003-2018, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "includes.h"
10
11#include "common.h"
12#include "utils/uuid.h"
Dmitry Shmidtcf32e602014-01-28 10:57:39 -080013#include "utils/ip_addr.h"
Dmitry Shmidt29333592017-01-09 12:27:11 -080014#include "common/ieee802_1x_defs.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070015#include "crypto/sha1.h"
16#include "rsn_supp/wpa.h"
17#include "eap_peer/eap.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070018#include "p2p/p2p.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080019#include "fst/fst.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070020#include "config.h"
21
22
23#if !defined(CONFIG_CTRL_IFACE) && defined(CONFIG_NO_CONFIG_WRITE)
24#define NO_CONFIG_WRITE
25#endif
26
27/*
28 * Structure for network configuration parsing. This data is used to implement
29 * a generic parser for each network block variable. The table of configuration
30 * variables is defined below in this file (ssid_fields[]).
31 */
32struct parse_data {
33 /* Configuration variable name */
34 char *name;
35
Dmitry Shmidte4663042016-04-04 10:07:49 -070036 /* Parser function for this variable. The parser functions return 0 or 1
37 * to indicate success. Value 0 indicates that the parameter value may
38 * have changed while value 1 means that the value did not change.
39 * Error cases (failure to parse the string) are indicated by returning
40 * -1. */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070041 int (*parser)(const struct parse_data *data, struct wpa_ssid *ssid,
42 int line, const char *value);
43
44#ifndef NO_CONFIG_WRITE
45 /* Writer function (i.e., to get the variable in text format from
46 * internal presentation). */
47 char * (*writer)(const struct parse_data *data, struct wpa_ssid *ssid);
48#endif /* NO_CONFIG_WRITE */
49
50 /* Variable specific parameters for the parser. */
51 void *param1, *param2, *param3, *param4;
52
53 /* 0 = this variable can be included in debug output and ctrl_iface
54 * 1 = this variable contains key/private data and it must not be
55 * included in debug output unless explicitly requested. In
56 * addition, this variable will not be readable through the
57 * ctrl_iface.
58 */
59 int key_data;
60};
61
62
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070063static int wpa_config_parse_str(const struct parse_data *data,
64 struct wpa_ssid *ssid,
65 int line, const char *value)
66{
Dmitry Shmidte4663042016-04-04 10:07:49 -070067 size_t res_len, *dst_len, prev_len;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070068 char **dst, *tmp;
69
70 if (os_strcmp(value, "NULL") == 0) {
71 wpa_printf(MSG_DEBUG, "Unset configuration string '%s'",
72 data->name);
73 tmp = NULL;
74 res_len = 0;
75 goto set;
76 }
77
78 tmp = wpa_config_parse_string(value, &res_len);
79 if (tmp == NULL) {
80 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
81 line, data->name,
82 data->key_data ? "[KEY DATA REMOVED]" : value);
83 return -1;
84 }
85
86 if (data->key_data) {
87 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
88 (u8 *) tmp, res_len);
89 } else {
90 wpa_hexdump_ascii(MSG_MSGDUMP, data->name,
91 (u8 *) tmp, res_len);
92 }
93
94 if (data->param3 && res_len < (size_t) data->param3) {
95 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
96 "min_len=%ld)", line, data->name,
97 (unsigned long) res_len, (long) data->param3);
98 os_free(tmp);
99 return -1;
100 }
101
102 if (data->param4 && res_len > (size_t) data->param4) {
103 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
104 "max_len=%ld)", line, data->name,
105 (unsigned long) res_len, (long) data->param4);
106 os_free(tmp);
107 return -1;
108 }
109
110set:
111 dst = (char **) (((u8 *) ssid) + (long) data->param1);
112 dst_len = (size_t *) (((u8 *) ssid) + (long) data->param2);
Dmitry Shmidte4663042016-04-04 10:07:49 -0700113
114 if (data->param2)
115 prev_len = *dst_len;
116 else if (*dst)
117 prev_len = os_strlen(*dst);
118 else
119 prev_len = 0;
120 if ((*dst == NULL && tmp == NULL) ||
121 (*dst && tmp && prev_len == res_len &&
122 os_memcmp(*dst, tmp, res_len) == 0)) {
123 /* No change to the previously configured value */
124 os_free(tmp);
125 return 1;
126 }
127
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700128 os_free(*dst);
129 *dst = tmp;
130 if (data->param2)
131 *dst_len = res_len;
132
133 return 0;
134}
135
136
137#ifndef NO_CONFIG_WRITE
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700138static char * wpa_config_write_string_ascii(const u8 *value, size_t len)
139{
140 char *buf;
141
142 buf = os_malloc(len + 3);
143 if (buf == NULL)
144 return NULL;
145 buf[0] = '"';
146 os_memcpy(buf + 1, value, len);
147 buf[len + 1] = '"';
148 buf[len + 2] = '\0';
149
150 return buf;
151}
152
153
154static char * wpa_config_write_string_hex(const u8 *value, size_t len)
155{
156 char *buf;
157
158 buf = os_zalloc(2 * len + 1);
159 if (buf == NULL)
160 return NULL;
161 wpa_snprintf_hex(buf, 2 * len + 1, value, len);
162
163 return buf;
164}
165
166
167static char * wpa_config_write_string(const u8 *value, size_t len)
168{
169 if (value == NULL)
170 return NULL;
171
172 if (is_hex(value, len))
173 return wpa_config_write_string_hex(value, len);
174 else
175 return wpa_config_write_string_ascii(value, len);
176}
177
178
179static char * wpa_config_write_str(const struct parse_data *data,
180 struct wpa_ssid *ssid)
181{
182 size_t len;
183 char **src;
184
185 src = (char **) (((u8 *) ssid) + (long) data->param1);
186 if (*src == NULL)
187 return NULL;
188
189 if (data->param2)
190 len = *((size_t *) (((u8 *) ssid) + (long) data->param2));
191 else
192 len = os_strlen(*src);
193
194 return wpa_config_write_string((const u8 *) *src, len);
195}
196#endif /* NO_CONFIG_WRITE */
197
198
199static int wpa_config_parse_int(const struct parse_data *data,
200 struct wpa_ssid *ssid,
201 int line, const char *value)
202{
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700203 int val, *dst;
204 char *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700205
206 dst = (int *) (((u8 *) ssid) + (long) data->param1);
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700207 val = strtol(value, &end, 0);
208 if (*end) {
209 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
210 line, value);
211 return -1;
212 }
Dmitry Shmidte4663042016-04-04 10:07:49 -0700213
214 if (*dst == val)
215 return 1;
Dmitry Shmidt2f023192013-03-12 12:44:17 -0700216 *dst = val;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700217 wpa_printf(MSG_MSGDUMP, "%s=%d (0x%x)", data->name, *dst, *dst);
218
219 if (data->param3 && *dst < (long) data->param3) {
220 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
221 "min_value=%ld)", line, data->name, *dst,
222 (long) data->param3);
223 *dst = (long) data->param3;
224 return -1;
225 }
226
227 if (data->param4 && *dst > (long) data->param4) {
228 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
229 "max_value=%ld)", line, data->name, *dst,
230 (long) data->param4);
231 *dst = (long) data->param4;
232 return -1;
233 }
234
235 return 0;
236}
237
238
239#ifndef NO_CONFIG_WRITE
240static char * wpa_config_write_int(const struct parse_data *data,
241 struct wpa_ssid *ssid)
242{
243 int *src, res;
244 char *value;
245
246 src = (int *) (((u8 *) ssid) + (long) data->param1);
247
248 value = os_malloc(20);
249 if (value == NULL)
250 return NULL;
251 res = os_snprintf(value, 20, "%d", *src);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800252 if (os_snprintf_error(20, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700253 os_free(value);
254 return NULL;
255 }
256 value[20 - 1] = '\0';
257 return value;
258}
259#endif /* NO_CONFIG_WRITE */
260
261
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800262static int wpa_config_parse_addr_list(const struct parse_data *data,
263 int line, const char *value,
264 u8 **list, size_t *num, char *name,
265 u8 abort_on_error, u8 masked)
266{
267 const char *pos;
268 u8 *buf, *n, addr[2 * ETH_ALEN];
269 size_t count;
270
271 buf = NULL;
272 count = 0;
273
274 pos = value;
275 while (pos && *pos) {
276 while (*pos == ' ')
277 pos++;
278
279 if (hwaddr_masked_aton(pos, addr, &addr[ETH_ALEN], masked)) {
280 if (abort_on_error || count == 0) {
281 wpa_printf(MSG_ERROR,
282 "Line %d: Invalid %s address '%s'",
283 line, name, value);
284 os_free(buf);
285 return -1;
286 }
287 /* continue anyway since this could have been from a
288 * truncated configuration file line */
289 wpa_printf(MSG_INFO,
290 "Line %d: Ignore likely truncated %s address '%s'",
291 line, name, pos);
292 } else {
293 n = os_realloc_array(buf, count + 1, 2 * ETH_ALEN);
294 if (n == NULL) {
295 os_free(buf);
296 return -1;
297 }
298 buf = n;
299 os_memmove(buf + 2 * ETH_ALEN, buf,
300 count * 2 * ETH_ALEN);
301 os_memcpy(buf, addr, 2 * ETH_ALEN);
302 count++;
303 wpa_printf(MSG_MSGDUMP,
304 "%s: addr=" MACSTR " mask=" MACSTR,
305 name, MAC2STR(addr),
306 MAC2STR(&addr[ETH_ALEN]));
307 }
308
309 pos = os_strchr(pos, ' ');
310 }
311
312 os_free(*list);
313 *list = buf;
314 *num = count;
315
316 return 0;
317}
318
319
320#ifndef NO_CONFIG_WRITE
321static char * wpa_config_write_addr_list(const struct parse_data *data,
322 const u8 *list, size_t num, char *name)
323{
324 char *value, *end, *pos;
325 int res;
326 size_t i;
327
328 if (list == NULL || num == 0)
329 return NULL;
330
331 value = os_malloc(2 * 20 * num);
332 if (value == NULL)
333 return NULL;
334 pos = value;
335 end = value + 2 * 20 * num;
336
337 for (i = num; i > 0; i--) {
338 const u8 *a = list + (i - 1) * 2 * ETH_ALEN;
339 const u8 *m = a + ETH_ALEN;
340
341 if (i < num)
342 *pos++ = ' ';
343 res = hwaddr_mask_txt(pos, end - pos, a, m);
344 if (res < 0) {
345 os_free(value);
346 return NULL;
347 }
348 pos += res;
349 }
350
351 return value;
352}
353#endif /* NO_CONFIG_WRITE */
354
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700355static int wpa_config_parse_bssid(const struct parse_data *data,
356 struct wpa_ssid *ssid, int line,
357 const char *value)
358{
359 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
360 os_strcmp(value, "any") == 0) {
361 ssid->bssid_set = 0;
362 wpa_printf(MSG_MSGDUMP, "BSSID any");
363 return 0;
364 }
365 if (hwaddr_aton(value, ssid->bssid)) {
366 wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID '%s'.",
367 line, value);
368 return -1;
369 }
370 ssid->bssid_set = 1;
371 wpa_hexdump(MSG_MSGDUMP, "BSSID", ssid->bssid, ETH_ALEN);
372 return 0;
373}
374
375
376#ifndef NO_CONFIG_WRITE
377static char * wpa_config_write_bssid(const struct parse_data *data,
378 struct wpa_ssid *ssid)
379{
380 char *value;
381 int res;
382
383 if (!ssid->bssid_set)
384 return NULL;
385
386 value = os_malloc(20);
387 if (value == NULL)
388 return NULL;
389 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800390 if (os_snprintf_error(20, res)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700391 os_free(value);
392 return NULL;
393 }
394 value[20 - 1] = '\0';
395 return value;
396}
397#endif /* NO_CONFIG_WRITE */
398
399
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700400static int wpa_config_parse_bssid_hint(const struct parse_data *data,
401 struct wpa_ssid *ssid, int line,
402 const char *value)
403{
404 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
405 os_strcmp(value, "any") == 0) {
406 ssid->bssid_hint_set = 0;
407 wpa_printf(MSG_MSGDUMP, "BSSID hint any");
408 return 0;
409 }
410 if (hwaddr_aton(value, ssid->bssid_hint)) {
411 wpa_printf(MSG_ERROR, "Line %d: Invalid BSSID hint '%s'.",
412 line, value);
413 return -1;
414 }
415 ssid->bssid_hint_set = 1;
416 wpa_hexdump(MSG_MSGDUMP, "BSSID hint", ssid->bssid_hint, ETH_ALEN);
417 return 0;
418}
419
420
421#ifndef NO_CONFIG_WRITE
422static char * wpa_config_write_bssid_hint(const struct parse_data *data,
423 struct wpa_ssid *ssid)
424{
425 char *value;
426 int res;
427
428 if (!ssid->bssid_hint_set)
429 return NULL;
430
431 value = os_malloc(20);
432 if (!value)
433 return NULL;
434 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->bssid_hint));
435 if (os_snprintf_error(20, res)) {
436 os_free(value);
437 return NULL;
438 }
439 return value;
440}
441#endif /* NO_CONFIG_WRITE */
442
443
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800444static int wpa_config_parse_bssid_blacklist(const struct parse_data *data,
445 struct wpa_ssid *ssid, int line,
446 const char *value)
447{
448 return wpa_config_parse_addr_list(data, line, value,
449 &ssid->bssid_blacklist,
450 &ssid->num_bssid_blacklist,
451 "bssid_blacklist", 1, 1);
452}
453
454
455#ifndef NO_CONFIG_WRITE
456static char * wpa_config_write_bssid_blacklist(const struct parse_data *data,
457 struct wpa_ssid *ssid)
458{
459 return wpa_config_write_addr_list(data, ssid->bssid_blacklist,
460 ssid->num_bssid_blacklist,
461 "bssid_blacklist");
462}
463#endif /* NO_CONFIG_WRITE */
464
465
466static int wpa_config_parse_bssid_whitelist(const struct parse_data *data,
467 struct wpa_ssid *ssid, int line,
468 const char *value)
469{
470 return wpa_config_parse_addr_list(data, line, value,
471 &ssid->bssid_whitelist,
472 &ssid->num_bssid_whitelist,
473 "bssid_whitelist", 1, 1);
474}
475
476
477#ifndef NO_CONFIG_WRITE
478static char * wpa_config_write_bssid_whitelist(const struct parse_data *data,
479 struct wpa_ssid *ssid)
480{
481 return wpa_config_write_addr_list(data, ssid->bssid_whitelist,
482 ssid->num_bssid_whitelist,
483 "bssid_whitelist");
484}
485#endif /* NO_CONFIG_WRITE */
486
487
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700488static int wpa_config_parse_psk(const struct parse_data *data,
489 struct wpa_ssid *ssid, int line,
490 const char *value)
491{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700492#ifdef CONFIG_EXT_PASSWORD
493 if (os_strncmp(value, "ext:", 4) == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700494 str_clear_free(ssid->passphrase);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700495 ssid->passphrase = NULL;
496 ssid->psk_set = 0;
497 os_free(ssid->ext_psk);
498 ssid->ext_psk = os_strdup(value + 4);
499 if (ssid->ext_psk == NULL)
500 return -1;
501 wpa_printf(MSG_DEBUG, "PSK: External password '%s'",
502 ssid->ext_psk);
503 return 0;
504 }
505#endif /* CONFIG_EXT_PASSWORD */
506
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700507 if (*value == '"') {
508#ifndef CONFIG_NO_PBKDF2
509 const char *pos;
510 size_t len;
511
512 value++;
513 pos = os_strrchr(value, '"');
514 if (pos)
515 len = pos - value;
516 else
517 len = os_strlen(value);
518 if (len < 8 || len > 63) {
519 wpa_printf(MSG_ERROR, "Line %d: Invalid passphrase "
520 "length %lu (expected: 8..63) '%s'.",
521 line, (unsigned long) len, value);
522 return -1;
523 }
524 wpa_hexdump_ascii_key(MSG_MSGDUMP, "PSK (ASCII passphrase)",
525 (u8 *) value, len);
Dmitry Shmidt849734c2016-05-27 09:59:01 -0700526 if (has_ctrl_char((u8 *) value, len)) {
527 wpa_printf(MSG_ERROR,
528 "Line %d: Invalid passphrase character",
529 line);
530 return -1;
531 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700532 if (ssid->passphrase && os_strlen(ssid->passphrase) == len &&
Dmitry Shmidte4663042016-04-04 10:07:49 -0700533 os_memcmp(ssid->passphrase, value, len) == 0) {
534 /* No change to the previously configured value */
535 return 1;
536 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700537 ssid->psk_set = 0;
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700538 str_clear_free(ssid->passphrase);
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700539 ssid->passphrase = dup_binstr(value, len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700540 if (ssid->passphrase == NULL)
541 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700542 return 0;
543#else /* CONFIG_NO_PBKDF2 */
544 wpa_printf(MSG_ERROR, "Line %d: ASCII passphrase not "
545 "supported.", line);
546 return -1;
547#endif /* CONFIG_NO_PBKDF2 */
548 }
549
550 if (hexstr2bin(value, ssid->psk, PMK_LEN) ||
551 value[PMK_LEN * 2] != '\0') {
552 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
553 line, value);
554 return -1;
555 }
556
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700557 str_clear_free(ssid->passphrase);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700558 ssid->passphrase = NULL;
559
560 ssid->psk_set = 1;
561 wpa_hexdump_key(MSG_MSGDUMP, "PSK", ssid->psk, PMK_LEN);
562 return 0;
563}
564
565
566#ifndef NO_CONFIG_WRITE
567static char * wpa_config_write_psk(const struct parse_data *data,
568 struct wpa_ssid *ssid)
569{
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700570#ifdef CONFIG_EXT_PASSWORD
571 if (ssid->ext_psk) {
572 size_t len = 4 + os_strlen(ssid->ext_psk) + 1;
573 char *buf = os_malloc(len);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800574 int res;
575
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700576 if (buf == NULL)
577 return NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800578 res = os_snprintf(buf, len, "ext:%s", ssid->ext_psk);
579 if (os_snprintf_error(len, res)) {
580 os_free(buf);
581 buf = NULL;
582 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700583 return buf;
584 }
585#endif /* CONFIG_EXT_PASSWORD */
586
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700587 if (ssid->passphrase)
588 return wpa_config_write_string_ascii(
589 (const u8 *) ssid->passphrase,
590 os_strlen(ssid->passphrase));
591
592 if (ssid->psk_set)
593 return wpa_config_write_string_hex(ssid->psk, PMK_LEN);
594
595 return NULL;
596}
597#endif /* NO_CONFIG_WRITE */
598
599
600static int wpa_config_parse_proto(const struct parse_data *data,
601 struct wpa_ssid *ssid, int line,
602 const char *value)
603{
604 int val = 0, last, errors = 0;
605 char *start, *end, *buf;
606
607 buf = os_strdup(value);
608 if (buf == NULL)
609 return -1;
610 start = buf;
611
612 while (*start != '\0') {
613 while (*start == ' ' || *start == '\t')
614 start++;
615 if (*start == '\0')
616 break;
617 end = start;
618 while (*end != ' ' && *end != '\t' && *end != '\0')
619 end++;
620 last = *end == '\0';
621 *end = '\0';
622 if (os_strcmp(start, "WPA") == 0)
623 val |= WPA_PROTO_WPA;
624 else if (os_strcmp(start, "RSN") == 0 ||
625 os_strcmp(start, "WPA2") == 0)
626 val |= WPA_PROTO_RSN;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800627 else if (os_strcmp(start, "OSEN") == 0)
628 val |= WPA_PROTO_OSEN;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700629 else {
630 wpa_printf(MSG_ERROR, "Line %d: invalid proto '%s'",
631 line, start);
632 errors++;
633 }
634
635 if (last)
636 break;
637 start = end + 1;
638 }
639 os_free(buf);
640
641 if (val == 0) {
642 wpa_printf(MSG_ERROR,
643 "Line %d: no proto values configured.", line);
644 errors++;
645 }
646
Dmitry Shmidte4663042016-04-04 10:07:49 -0700647 if (!errors && ssid->proto == val)
648 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700649 wpa_printf(MSG_MSGDUMP, "proto: 0x%x", val);
650 ssid->proto = val;
651 return errors ? -1 : 0;
652}
653
654
655#ifndef NO_CONFIG_WRITE
656static char * wpa_config_write_proto(const struct parse_data *data,
657 struct wpa_ssid *ssid)
658{
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700659 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700660 char *buf, *pos, *end;
661
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800662 pos = buf = os_zalloc(20);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700663 if (buf == NULL)
664 return NULL;
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800665 end = buf + 20;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700666
667 if (ssid->proto & WPA_PROTO_WPA) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700668 ret = os_snprintf(pos, end - pos, "%sWPA",
669 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800670 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700671 return buf;
672 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700673 }
674
675 if (ssid->proto & WPA_PROTO_RSN) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700676 ret = os_snprintf(pos, end - pos, "%sRSN",
677 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800678 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700679 return buf;
680 pos += ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700681 }
682
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800683 if (ssid->proto & WPA_PROTO_OSEN) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700684 ret = os_snprintf(pos, end - pos, "%sOSEN",
685 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800686 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800687 return buf;
688 pos += ret;
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700689 }
690
691 if (pos == buf) {
692 os_free(buf);
693 buf = NULL;
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800694 }
695
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700696 return buf;
697}
698#endif /* NO_CONFIG_WRITE */
699
700
701static int wpa_config_parse_key_mgmt(const struct parse_data *data,
702 struct wpa_ssid *ssid, int line,
703 const char *value)
704{
705 int val = 0, last, errors = 0;
706 char *start, *end, *buf;
707
708 buf = os_strdup(value);
709 if (buf == NULL)
710 return -1;
711 start = buf;
712
713 while (*start != '\0') {
714 while (*start == ' ' || *start == '\t')
715 start++;
716 if (*start == '\0')
717 break;
718 end = start;
719 while (*end != ' ' && *end != '\t' && *end != '\0')
720 end++;
721 last = *end == '\0';
722 *end = '\0';
723 if (os_strcmp(start, "WPA-PSK") == 0)
724 val |= WPA_KEY_MGMT_PSK;
725 else if (os_strcmp(start, "WPA-EAP") == 0)
726 val |= WPA_KEY_MGMT_IEEE8021X;
727 else if (os_strcmp(start, "IEEE8021X") == 0)
728 val |= WPA_KEY_MGMT_IEEE8021X_NO_WPA;
729 else if (os_strcmp(start, "NONE") == 0)
730 val |= WPA_KEY_MGMT_NONE;
731 else if (os_strcmp(start, "WPA-NONE") == 0)
732 val |= WPA_KEY_MGMT_WPA_NONE;
733#ifdef CONFIG_IEEE80211R
734 else if (os_strcmp(start, "FT-PSK") == 0)
735 val |= WPA_KEY_MGMT_FT_PSK;
736 else if (os_strcmp(start, "FT-EAP") == 0)
737 val |= WPA_KEY_MGMT_FT_IEEE8021X;
Roshan Pius3a1667e2018-07-03 15:17:14 -0700738#ifdef CONFIG_SHA384
739 else if (os_strcmp(start, "FT-EAP-SHA384") == 0)
740 val |= WPA_KEY_MGMT_FT_IEEE8021X_SHA384;
741#endif /* CONFIG_SHA384 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700742#endif /* CONFIG_IEEE80211R */
743#ifdef CONFIG_IEEE80211W
744 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
745 val |= WPA_KEY_MGMT_PSK_SHA256;
746 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
747 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
748#endif /* CONFIG_IEEE80211W */
749#ifdef CONFIG_WPS
750 else if (os_strcmp(start, "WPS") == 0)
751 val |= WPA_KEY_MGMT_WPS;
752#endif /* CONFIG_WPS */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800753#ifdef CONFIG_SAE
754 else if (os_strcmp(start, "SAE") == 0)
755 val |= WPA_KEY_MGMT_SAE;
756 else if (os_strcmp(start, "FT-SAE") == 0)
757 val |= WPA_KEY_MGMT_FT_SAE;
758#endif /* CONFIG_SAE */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800759#ifdef CONFIG_HS20
760 else if (os_strcmp(start, "OSEN") == 0)
761 val |= WPA_KEY_MGMT_OSEN;
762#endif /* CONFIG_HS20 */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800763#ifdef CONFIG_SUITEB
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800764 else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
765 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800766#endif /* CONFIG_SUITEB */
767#ifdef CONFIG_SUITEB192
768 else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
769 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
770#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800771#ifdef CONFIG_FILS
772 else if (os_strcmp(start, "FILS-SHA256") == 0)
773 val |= WPA_KEY_MGMT_FILS_SHA256;
774 else if (os_strcmp(start, "FILS-SHA384") == 0)
775 val |= WPA_KEY_MGMT_FILS_SHA384;
776#ifdef CONFIG_IEEE80211R
777 else if (os_strcmp(start, "FT-FILS-SHA256") == 0)
778 val |= WPA_KEY_MGMT_FT_FILS_SHA256;
779 else if (os_strcmp(start, "FT-FILS-SHA384") == 0)
780 val |= WPA_KEY_MGMT_FT_FILS_SHA384;
781#endif /* CONFIG_IEEE80211R */
782#endif /* CONFIG_FILS */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700783#ifdef CONFIG_OWE
784 else if (os_strcmp(start, "OWE") == 0)
785 val |= WPA_KEY_MGMT_OWE;
786#endif /* CONFIG_OWE */
787#ifdef CONFIG_DPP
788 else if (os_strcmp(start, "DPP") == 0)
789 val |= WPA_KEY_MGMT_DPP;
790#endif /* CONFIG_DPP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700791 else {
792 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
793 line, start);
794 errors++;
795 }
796
797 if (last)
798 break;
799 start = end + 1;
800 }
801 os_free(buf);
802
803 if (val == 0) {
804 wpa_printf(MSG_ERROR,
805 "Line %d: no key_mgmt values configured.", line);
806 errors++;
807 }
808
Dmitry Shmidte4663042016-04-04 10:07:49 -0700809 if (!errors && ssid->key_mgmt == val)
810 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700811 wpa_printf(MSG_MSGDUMP, "key_mgmt: 0x%x", val);
812 ssid->key_mgmt = val;
813 return errors ? -1 : 0;
814}
815
816
817#ifndef NO_CONFIG_WRITE
818static char * wpa_config_write_key_mgmt(const struct parse_data *data,
819 struct wpa_ssid *ssid)
820{
821 char *buf, *pos, *end;
822 int ret;
823
Dmitry Shmidt96571392013-10-14 12:54:46 -0700824 pos = buf = os_zalloc(100);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700825 if (buf == NULL)
826 return NULL;
Dmitry Shmidt96571392013-10-14 12:54:46 -0700827 end = buf + 100;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700828
829 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK) {
830 ret = os_snprintf(pos, end - pos, "%sWPA-PSK",
831 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800832 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700833 end[-1] = '\0';
834 return buf;
835 }
836 pos += ret;
837 }
838
839 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X) {
840 ret = os_snprintf(pos, end - pos, "%sWPA-EAP",
841 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800842 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700843 end[-1] = '\0';
844 return buf;
845 }
846 pos += ret;
847 }
848
849 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_NO_WPA) {
850 ret = os_snprintf(pos, end - pos, "%sIEEE8021X",
851 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800852 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700853 end[-1] = '\0';
854 return buf;
855 }
856 pos += ret;
857 }
858
859 if (ssid->key_mgmt & WPA_KEY_MGMT_NONE) {
860 ret = os_snprintf(pos, end - pos, "%sNONE",
861 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800862 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700863 end[-1] = '\0';
864 return buf;
865 }
866 pos += ret;
867 }
868
869 if (ssid->key_mgmt & WPA_KEY_MGMT_WPA_NONE) {
870 ret = os_snprintf(pos, end - pos, "%sWPA-NONE",
871 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800872 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700873 end[-1] = '\0';
874 return buf;
875 }
876 pos += ret;
877 }
878
879#ifdef CONFIG_IEEE80211R
Dmitry Shmidt96571392013-10-14 12:54:46 -0700880 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_PSK) {
881 ret = os_snprintf(pos, end - pos, "%sFT-PSK",
882 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800883 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96571392013-10-14 12:54:46 -0700884 end[-1] = '\0';
885 return buf;
886 }
887 pos += ret;
888 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700889
Dmitry Shmidt96571392013-10-14 12:54:46 -0700890 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X) {
891 ret = os_snprintf(pos, end - pos, "%sFT-EAP",
892 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800893 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96571392013-10-14 12:54:46 -0700894 end[-1] = '\0';
895 return buf;
896 }
897 pos += ret;
898 }
Roshan Pius3a1667e2018-07-03 15:17:14 -0700899
900#ifdef CONFIG_SHA384
901 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_IEEE8021X_SHA384) {
902 ret = os_snprintf(pos, end - pos, "%sFT-EAP-SHA384",
903 pos == buf ? "" : " ");
904 if (os_snprintf_error(end - pos, ret)) {
905 end[-1] = '\0';
906 return buf;
907 }
908 pos += ret;
909 }
910#endif /* CONFIG_SHA384 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700911#endif /* CONFIG_IEEE80211R */
912
913#ifdef CONFIG_IEEE80211W
Dmitry Shmidt96571392013-10-14 12:54:46 -0700914 if (ssid->key_mgmt & WPA_KEY_MGMT_PSK_SHA256) {
915 ret = os_snprintf(pos, end - pos, "%sWPA-PSK-SHA256",
916 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800917 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96571392013-10-14 12:54:46 -0700918 end[-1] = '\0';
919 return buf;
920 }
921 pos += ret;
922 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700923
Dmitry Shmidt96571392013-10-14 12:54:46 -0700924 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SHA256) {
925 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SHA256",
926 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800927 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96571392013-10-14 12:54:46 -0700928 end[-1] = '\0';
929 return buf;
930 }
931 pos += ret;
932 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700933#endif /* CONFIG_IEEE80211W */
934
935#ifdef CONFIG_WPS
Dmitry Shmidt96571392013-10-14 12:54:46 -0700936 if (ssid->key_mgmt & WPA_KEY_MGMT_WPS) {
937 ret = os_snprintf(pos, end - pos, "%sWPS",
938 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800939 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt96571392013-10-14 12:54:46 -0700940 end[-1] = '\0';
941 return buf;
942 }
943 pos += ret;
944 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700945#endif /* CONFIG_WPS */
946
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800947#ifdef CONFIG_SAE
948 if (ssid->key_mgmt & WPA_KEY_MGMT_SAE) {
949 ret = os_snprintf(pos, end - pos, "%sSAE",
950 pos == buf ? "" : " ");
951 if (os_snprintf_error(end - pos, ret)) {
952 end[-1] = '\0';
953 return buf;
954 }
955 pos += ret;
956 }
957
958 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_SAE) {
959 ret = os_snprintf(pos, end - pos, "%sFT-SAE",
960 pos == buf ? "" : " ");
961 if (os_snprintf_error(end - pos, ret)) {
962 end[-1] = '\0';
963 return buf;
964 }
965 pos += ret;
966 }
967#endif /* CONFIG_SAE */
968
969#ifdef CONFIG_HS20
970 if (ssid->key_mgmt & WPA_KEY_MGMT_OSEN) {
971 ret = os_snprintf(pos, end - pos, "%sOSEN",
972 pos == buf ? "" : " ");
973 if (os_snprintf_error(end - pos, ret)) {
974 end[-1] = '\0';
975 return buf;
976 }
977 pos += ret;
978 }
979#endif /* CONFIG_HS20 */
980
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800981#ifdef CONFIG_SUITEB
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800982 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B) {
983 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B",
984 pos == buf ? "" : " ");
985 if (os_snprintf_error(end - pos, ret)) {
986 end[-1] = '\0';
987 return buf;
988 }
989 pos += ret;
990 }
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800991#endif /* CONFIG_SUITEB */
992
993#ifdef CONFIG_SUITEB192
994 if (ssid->key_mgmt & WPA_KEY_MGMT_IEEE8021X_SUITE_B_192) {
995 ret = os_snprintf(pos, end - pos, "%sWPA-EAP-SUITE-B-192",
996 pos == buf ? "" : " ");
997 if (os_snprintf_error(end - pos, ret)) {
998 end[-1] = '\0';
999 return buf;
1000 }
1001 pos += ret;
1002 }
1003#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001004
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001005#ifdef CONFIG_FILS
1006 if (ssid->key_mgmt & WPA_KEY_MGMT_FILS_SHA256) {
1007 ret = os_snprintf(pos, end - pos, "%sFILS-SHA256",
1008 pos == buf ? "" : " ");
1009 if (os_snprintf_error(end - pos, ret)) {
1010 end[-1] = '\0';
1011 return buf;
1012 }
1013 pos += ret;
1014 }
1015 if (ssid->key_mgmt & WPA_KEY_MGMT_FILS_SHA384) {
1016 ret = os_snprintf(pos, end - pos, "%sFILS-SHA384",
1017 pos == buf ? "" : " ");
1018 if (os_snprintf_error(end - pos, ret)) {
1019 end[-1] = '\0';
1020 return buf;
1021 }
1022 pos += ret;
1023 }
1024#ifdef CONFIG_IEEE80211R
1025 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_FILS_SHA256) {
1026 ret = os_snprintf(pos, end - pos, "%sFT-FILS-SHA256",
1027 pos == buf ? "" : " ");
1028 if (os_snprintf_error(end - pos, ret)) {
1029 end[-1] = '\0';
1030 return buf;
1031 }
1032 pos += ret;
1033 }
1034 if (ssid->key_mgmt & WPA_KEY_MGMT_FT_FILS_SHA384) {
1035 ret = os_snprintf(pos, end - pos, "%sFT-FILS-SHA384",
1036 pos == buf ? "" : " ");
1037 if (os_snprintf_error(end - pos, ret)) {
1038 end[-1] = '\0';
1039 return buf;
1040 }
1041 pos += ret;
1042 }
1043#endif /* CONFIG_IEEE80211R */
1044#endif /* CONFIG_FILS */
1045
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001046 if (pos == buf) {
1047 os_free(buf);
1048 buf = NULL;
1049 }
1050
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001051 return buf;
1052}
1053#endif /* NO_CONFIG_WRITE */
1054
1055
1056static int wpa_config_parse_cipher(int line, const char *value)
1057{
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001058#ifdef CONFIG_NO_WPA
1059 return -1;
1060#else /* CONFIG_NO_WPA */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001061 int val = wpa_parse_cipher(value);
1062 if (val < 0) {
1063 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
1064 line, value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001065 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001066 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001067 if (val == 0) {
1068 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
1069 line);
1070 return -1;
1071 }
1072 return val;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001073#endif /* CONFIG_NO_WPA */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001074}
1075
1076
1077#ifndef NO_CONFIG_WRITE
1078static char * wpa_config_write_cipher(int cipher)
1079{
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001080#ifdef CONFIG_NO_WPA
1081 return NULL;
1082#else /* CONFIG_NO_WPA */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001083 char *buf = os_zalloc(50);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001084 if (buf == NULL)
1085 return NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001086
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001087 if (wpa_write_ciphers(buf, buf + 50, cipher, " ") < 0) {
1088 os_free(buf);
1089 return NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001090 }
1091
1092 return buf;
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08001093#endif /* CONFIG_NO_WPA */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001094}
1095#endif /* NO_CONFIG_WRITE */
1096
1097
1098static int wpa_config_parse_pairwise(const struct parse_data *data,
1099 struct wpa_ssid *ssid, int line,
1100 const char *value)
1101{
1102 int val;
1103 val = wpa_config_parse_cipher(line, value);
1104 if (val == -1)
1105 return -1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001106 if (val & ~WPA_ALLOWED_PAIRWISE_CIPHERS) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001107 wpa_printf(MSG_ERROR, "Line %d: not allowed pairwise cipher "
1108 "(0x%x).", line, val);
1109 return -1;
1110 }
1111
Dmitry Shmidte4663042016-04-04 10:07:49 -07001112 if (ssid->pairwise_cipher == val)
1113 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001114 wpa_printf(MSG_MSGDUMP, "pairwise: 0x%x", val);
1115 ssid->pairwise_cipher = val;
1116 return 0;
1117}
1118
1119
1120#ifndef NO_CONFIG_WRITE
1121static char * wpa_config_write_pairwise(const struct parse_data *data,
1122 struct wpa_ssid *ssid)
1123{
1124 return wpa_config_write_cipher(ssid->pairwise_cipher);
1125}
1126#endif /* NO_CONFIG_WRITE */
1127
1128
1129static int wpa_config_parse_group(const struct parse_data *data,
1130 struct wpa_ssid *ssid, int line,
1131 const char *value)
1132{
1133 int val;
1134 val = wpa_config_parse_cipher(line, value);
1135 if (val == -1)
1136 return -1;
Dmitry Shmidt41712582015-06-29 11:02:15 -07001137
1138 /*
1139 * Backwards compatibility - filter out WEP ciphers that were previously
1140 * allowed.
1141 */
1142 val &= ~(WPA_CIPHER_WEP104 | WPA_CIPHER_WEP40);
1143
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001144 if (val & ~WPA_ALLOWED_GROUP_CIPHERS) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001145 wpa_printf(MSG_ERROR, "Line %d: not allowed group cipher "
1146 "(0x%x).", line, val);
1147 return -1;
1148 }
1149
Dmitry Shmidte4663042016-04-04 10:07:49 -07001150 if (ssid->group_cipher == val)
1151 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001152 wpa_printf(MSG_MSGDUMP, "group: 0x%x", val);
1153 ssid->group_cipher = val;
1154 return 0;
1155}
1156
1157
1158#ifndef NO_CONFIG_WRITE
1159static char * wpa_config_write_group(const struct parse_data *data,
1160 struct wpa_ssid *ssid)
1161{
1162 return wpa_config_write_cipher(ssid->group_cipher);
1163}
1164#endif /* NO_CONFIG_WRITE */
1165
1166
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001167static int wpa_config_parse_group_mgmt(const struct parse_data *data,
1168 struct wpa_ssid *ssid, int line,
1169 const char *value)
1170{
1171 int val;
1172
1173 val = wpa_config_parse_cipher(line, value);
1174 if (val == -1)
1175 return -1;
1176
1177 if (val & ~WPA_ALLOWED_GROUP_MGMT_CIPHERS) {
1178 wpa_printf(MSG_ERROR,
1179 "Line %d: not allowed group management cipher (0x%x).",
1180 line, val);
1181 return -1;
1182 }
1183
1184 if (ssid->group_mgmt_cipher == val)
1185 return 1;
1186 wpa_printf(MSG_MSGDUMP, "group_mgmt: 0x%x", val);
1187 ssid->group_mgmt_cipher = val;
1188 return 0;
1189}
1190
1191
1192#ifndef NO_CONFIG_WRITE
1193static char * wpa_config_write_group_mgmt(const struct parse_data *data,
1194 struct wpa_ssid *ssid)
1195{
1196 return wpa_config_write_cipher(ssid->group_mgmt_cipher);
1197}
1198#endif /* NO_CONFIG_WRITE */
1199
1200
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001201static int wpa_config_parse_auth_alg(const struct parse_data *data,
1202 struct wpa_ssid *ssid, int line,
1203 const char *value)
1204{
1205 int val = 0, last, errors = 0;
1206 char *start, *end, *buf;
1207
1208 buf = os_strdup(value);
1209 if (buf == NULL)
1210 return -1;
1211 start = buf;
1212
1213 while (*start != '\0') {
1214 while (*start == ' ' || *start == '\t')
1215 start++;
1216 if (*start == '\0')
1217 break;
1218 end = start;
1219 while (*end != ' ' && *end != '\t' && *end != '\0')
1220 end++;
1221 last = *end == '\0';
1222 *end = '\0';
1223 if (os_strcmp(start, "OPEN") == 0)
1224 val |= WPA_AUTH_ALG_OPEN;
1225 else if (os_strcmp(start, "SHARED") == 0)
1226 val |= WPA_AUTH_ALG_SHARED;
1227 else if (os_strcmp(start, "LEAP") == 0)
1228 val |= WPA_AUTH_ALG_LEAP;
1229 else {
1230 wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'",
1231 line, start);
1232 errors++;
1233 }
1234
1235 if (last)
1236 break;
1237 start = end + 1;
1238 }
1239 os_free(buf);
1240
1241 if (val == 0) {
1242 wpa_printf(MSG_ERROR,
1243 "Line %d: no auth_alg values configured.", line);
1244 errors++;
1245 }
1246
Dmitry Shmidte4663042016-04-04 10:07:49 -07001247 if (!errors && ssid->auth_alg == val)
1248 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001249 wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val);
1250 ssid->auth_alg = val;
1251 return errors ? -1 : 0;
1252}
1253
1254
1255#ifndef NO_CONFIG_WRITE
1256static char * wpa_config_write_auth_alg(const struct parse_data *data,
1257 struct wpa_ssid *ssid)
1258{
1259 char *buf, *pos, *end;
1260 int ret;
1261
1262 pos = buf = os_zalloc(30);
1263 if (buf == NULL)
1264 return NULL;
1265 end = buf + 30;
1266
1267 if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) {
1268 ret = os_snprintf(pos, end - pos, "%sOPEN",
1269 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001270 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001271 end[-1] = '\0';
1272 return buf;
1273 }
1274 pos += ret;
1275 }
1276
1277 if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) {
1278 ret = os_snprintf(pos, end - pos, "%sSHARED",
1279 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001280 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001281 end[-1] = '\0';
1282 return buf;
1283 }
1284 pos += ret;
1285 }
1286
1287 if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) {
1288 ret = os_snprintf(pos, end - pos, "%sLEAP",
1289 pos == buf ? "" : " ");
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001290 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001291 end[-1] = '\0';
1292 return buf;
1293 }
1294 pos += ret;
1295 }
1296
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001297 if (pos == buf) {
1298 os_free(buf);
1299 buf = NULL;
1300 }
1301
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001302 return buf;
1303}
1304#endif /* NO_CONFIG_WRITE */
1305
1306
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001307static int * wpa_config_parse_int_array(const char *value)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001308{
1309 int *freqs;
1310 size_t used, len;
1311 const char *pos;
1312
1313 used = 0;
1314 len = 10;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001315 freqs = os_calloc(len + 1, sizeof(int));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001316 if (freqs == NULL)
1317 return NULL;
1318
1319 pos = value;
1320 while (pos) {
1321 while (*pos == ' ')
1322 pos++;
1323 if (used == len) {
1324 int *n;
1325 size_t i;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001326 n = os_realloc_array(freqs, len * 2 + 1, sizeof(int));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001327 if (n == NULL) {
1328 os_free(freqs);
1329 return NULL;
1330 }
1331 for (i = len; i <= len * 2; i++)
1332 n[i] = 0;
1333 freqs = n;
1334 len *= 2;
1335 }
1336
1337 freqs[used] = atoi(pos);
1338 if (freqs[used] == 0)
1339 break;
1340 used++;
1341 pos = os_strchr(pos + 1, ' ');
1342 }
1343
1344 return freqs;
1345}
1346
1347
1348static int wpa_config_parse_scan_freq(const struct parse_data *data,
1349 struct wpa_ssid *ssid, int line,
1350 const char *value)
1351{
1352 int *freqs;
1353
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001354 freqs = wpa_config_parse_int_array(value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001355 if (freqs == NULL)
1356 return -1;
Dmitry Shmidt56052862013-10-04 10:23:25 -07001357 if (freqs[0] == 0) {
1358 os_free(freqs);
1359 freqs = NULL;
1360 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001361 os_free(ssid->scan_freq);
1362 ssid->scan_freq = freqs;
1363
1364 return 0;
1365}
1366
1367
1368static int wpa_config_parse_freq_list(const struct parse_data *data,
1369 struct wpa_ssid *ssid, int line,
1370 const char *value)
1371{
1372 int *freqs;
1373
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001374 freqs = wpa_config_parse_int_array(value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001375 if (freqs == NULL)
1376 return -1;
Dmitry Shmidt56052862013-10-04 10:23:25 -07001377 if (freqs[0] == 0) {
1378 os_free(freqs);
1379 freqs = NULL;
1380 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001381 os_free(ssid->freq_list);
1382 ssid->freq_list = freqs;
1383
1384 return 0;
1385}
1386
1387
1388#ifndef NO_CONFIG_WRITE
1389static char * wpa_config_write_freqs(const struct parse_data *data,
1390 const int *freqs)
1391{
1392 char *buf, *pos, *end;
1393 int i, ret;
1394 size_t count;
1395
1396 if (freqs == NULL)
1397 return NULL;
1398
1399 count = 0;
1400 for (i = 0; freqs[i]; i++)
1401 count++;
1402
1403 pos = buf = os_zalloc(10 * count + 1);
1404 if (buf == NULL)
1405 return NULL;
1406 end = buf + 10 * count + 1;
1407
1408 for (i = 0; freqs[i]; i++) {
1409 ret = os_snprintf(pos, end - pos, "%s%u",
1410 i == 0 ? "" : " ", freqs[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001411 if (os_snprintf_error(end - pos, ret)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001412 end[-1] = '\0';
1413 return buf;
1414 }
1415 pos += ret;
1416 }
1417
1418 return buf;
1419}
1420
1421
1422static char * wpa_config_write_scan_freq(const struct parse_data *data,
1423 struct wpa_ssid *ssid)
1424{
1425 return wpa_config_write_freqs(data, ssid->scan_freq);
1426}
1427
1428
1429static char * wpa_config_write_freq_list(const struct parse_data *data,
1430 struct wpa_ssid *ssid)
1431{
1432 return wpa_config_write_freqs(data, ssid->freq_list);
1433}
1434#endif /* NO_CONFIG_WRITE */
1435
1436
1437#ifdef IEEE8021X_EAPOL
1438static int wpa_config_parse_eap(const struct parse_data *data,
1439 struct wpa_ssid *ssid, int line,
1440 const char *value)
1441{
1442 int last, errors = 0;
1443 char *start, *end, *buf;
1444 struct eap_method_type *methods = NULL, *tmp;
1445 size_t num_methods = 0;
1446
1447 buf = os_strdup(value);
1448 if (buf == NULL)
1449 return -1;
1450 start = buf;
1451
1452 while (*start != '\0') {
1453 while (*start == ' ' || *start == '\t')
1454 start++;
1455 if (*start == '\0')
1456 break;
1457 end = start;
1458 while (*end != ' ' && *end != '\t' && *end != '\0')
1459 end++;
1460 last = *end == '\0';
1461 *end = '\0';
1462 tmp = methods;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001463 methods = os_realloc_array(methods, num_methods + 1,
1464 sizeof(*methods));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001465 if (methods == NULL) {
1466 os_free(tmp);
1467 os_free(buf);
1468 return -1;
1469 }
1470 methods[num_methods].method = eap_peer_get_type(
1471 start, &methods[num_methods].vendor);
1472 if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1473 methods[num_methods].method == EAP_TYPE_NONE) {
1474 wpa_printf(MSG_ERROR, "Line %d: unknown EAP method "
1475 "'%s'", line, start);
1476 wpa_printf(MSG_ERROR, "You may need to add support for"
1477 " this EAP method during wpa_supplicant\n"
1478 "build time configuration.\n"
1479 "See README for more information.");
1480 errors++;
1481 } else if (methods[num_methods].vendor == EAP_VENDOR_IETF &&
1482 methods[num_methods].method == EAP_TYPE_LEAP)
1483 ssid->leap++;
1484 else
1485 ssid->non_leap++;
1486 num_methods++;
1487 if (last)
1488 break;
1489 start = end + 1;
1490 }
1491 os_free(buf);
1492
1493 tmp = methods;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001494 methods = os_realloc_array(methods, num_methods + 1, sizeof(*methods));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001495 if (methods == NULL) {
1496 os_free(tmp);
1497 return -1;
1498 }
1499 methods[num_methods].vendor = EAP_VENDOR_IETF;
1500 methods[num_methods].method = EAP_TYPE_NONE;
1501 num_methods++;
1502
Dmitry Shmidte4663042016-04-04 10:07:49 -07001503 if (!errors && ssid->eap.eap_methods) {
1504 struct eap_method_type *prev_m;
1505 size_t i, j, prev_methods, match = 0;
1506
1507 prev_m = ssid->eap.eap_methods;
1508 for (i = 0; prev_m[i].vendor != EAP_VENDOR_IETF ||
1509 prev_m[i].method != EAP_TYPE_NONE; i++) {
1510 /* Count the methods */
1511 }
1512 prev_methods = i + 1;
1513
1514 for (i = 0; prev_methods == num_methods && i < prev_methods;
1515 i++) {
1516 for (j = 0; j < num_methods; j++) {
1517 if (prev_m[i].vendor == methods[j].vendor &&
1518 prev_m[i].method == methods[j].method) {
1519 match++;
1520 break;
1521 }
1522 }
1523 }
1524 if (match == num_methods) {
1525 os_free(methods);
1526 return 1;
1527 }
1528 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001529 wpa_hexdump(MSG_MSGDUMP, "eap methods",
1530 (u8 *) methods, num_methods * sizeof(*methods));
Dmitry Shmidt04949592012-07-19 12:16:46 -07001531 os_free(ssid->eap.eap_methods);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001532 ssid->eap.eap_methods = methods;
1533 return errors ? -1 : 0;
1534}
1535
1536
Dmitry Shmidt83474442015-04-15 13:47:09 -07001537#ifndef NO_CONFIG_WRITE
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001538static char * wpa_config_write_eap(const struct parse_data *data,
1539 struct wpa_ssid *ssid)
1540{
1541 int i, ret;
1542 char *buf, *pos, *end;
1543 const struct eap_method_type *eap_methods = ssid->eap.eap_methods;
1544 const char *name;
1545
1546 if (eap_methods == NULL)
1547 return NULL;
1548
1549 pos = buf = os_zalloc(100);
1550 if (buf == NULL)
1551 return NULL;
1552 end = buf + 100;
1553
1554 for (i = 0; eap_methods[i].vendor != EAP_VENDOR_IETF ||
1555 eap_methods[i].method != EAP_TYPE_NONE; i++) {
1556 name = eap_get_name(eap_methods[i].vendor,
1557 eap_methods[i].method);
1558 if (name) {
1559 ret = os_snprintf(pos, end - pos, "%s%s",
1560 pos == buf ? "" : " ", name);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001561 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001562 break;
1563 pos += ret;
1564 }
1565 }
1566
1567 end[-1] = '\0';
1568
1569 return buf;
1570}
Dmitry Shmidt83474442015-04-15 13:47:09 -07001571#endif /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001572
1573
1574static int wpa_config_parse_password(const struct parse_data *data,
1575 struct wpa_ssid *ssid, int line,
1576 const char *value)
1577{
1578 u8 *hash;
1579
1580 if (os_strcmp(value, "NULL") == 0) {
Dmitry Shmidte4663042016-04-04 10:07:49 -07001581 if (!ssid->eap.password)
1582 return 1; /* Already unset */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001583 wpa_printf(MSG_DEBUG, "Unset configuration string 'password'");
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001584 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001585 ssid->eap.password = NULL;
1586 ssid->eap.password_len = 0;
1587 return 0;
1588 }
1589
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001590#ifdef CONFIG_EXT_PASSWORD
1591 if (os_strncmp(value, "ext:", 4) == 0) {
1592 char *name = os_strdup(value + 4);
1593 if (name == NULL)
1594 return -1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001595 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001596 ssid->eap.password = (u8 *) name;
1597 ssid->eap.password_len = os_strlen(name);
1598 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
1599 ssid->eap.flags |= EAP_CONFIG_FLAGS_EXT_PASSWORD;
1600 return 0;
1601 }
1602#endif /* CONFIG_EXT_PASSWORD */
1603
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001604 if (os_strncmp(value, "hash:", 5) != 0) {
1605 char *tmp;
1606 size_t res_len;
1607
1608 tmp = wpa_config_parse_string(value, &res_len);
1609 if (tmp == NULL) {
1610 wpa_printf(MSG_ERROR, "Line %d: failed to parse "
1611 "password.", line);
1612 return -1;
1613 }
1614 wpa_hexdump_ascii_key(MSG_MSGDUMP, data->name,
1615 (u8 *) tmp, res_len);
1616
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001617 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001618 ssid->eap.password = (u8 *) tmp;
1619 ssid->eap.password_len = res_len;
1620 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001621 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001622
1623 return 0;
1624 }
1625
1626
1627 /* NtPasswordHash: hash:<32 hex digits> */
1628 if (os_strlen(value + 5) != 2 * 16) {
1629 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash length "
1630 "(expected 32 hex digits)", line);
1631 return -1;
1632 }
1633
1634 hash = os_malloc(16);
1635 if (hash == NULL)
1636 return -1;
1637
1638 if (hexstr2bin(value + 5, hash, 16)) {
1639 os_free(hash);
1640 wpa_printf(MSG_ERROR, "Line %d: Invalid password hash", line);
1641 return -1;
1642 }
1643
1644 wpa_hexdump_key(MSG_MSGDUMP, data->name, hash, 16);
1645
Dmitry Shmidte4663042016-04-04 10:07:49 -07001646 if (ssid->eap.password && ssid->eap.password_len == 16 &&
1647 os_memcmp(ssid->eap.password, hash, 16) == 0 &&
1648 (ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
1649 bin_clear_free(hash, 16);
1650 return 1;
1651 }
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001652 bin_clear_free(ssid->eap.password, ssid->eap.password_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001653 ssid->eap.password = hash;
1654 ssid->eap.password_len = 16;
1655 ssid->eap.flags |= EAP_CONFIG_FLAGS_PASSWORD_NTHASH;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001656 ssid->eap.flags &= ~EAP_CONFIG_FLAGS_EXT_PASSWORD;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001657
1658 return 0;
1659}
1660
1661
Dmitry Shmidt83474442015-04-15 13:47:09 -07001662#ifndef NO_CONFIG_WRITE
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001663static char * wpa_config_write_password(const struct parse_data *data,
1664 struct wpa_ssid *ssid)
1665{
1666 char *buf;
1667
1668 if (ssid->eap.password == NULL)
1669 return NULL;
1670
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001671#ifdef CONFIG_EXT_PASSWORD
1672 if (ssid->eap.flags & EAP_CONFIG_FLAGS_EXT_PASSWORD) {
1673 buf = os_zalloc(4 + ssid->eap.password_len + 1);
1674 if (buf == NULL)
1675 return NULL;
1676 os_memcpy(buf, "ext:", 4);
1677 os_memcpy(buf + 4, ssid->eap.password, ssid->eap.password_len);
1678 return buf;
1679 }
1680#endif /* CONFIG_EXT_PASSWORD */
1681
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001682 if (!(ssid->eap.flags & EAP_CONFIG_FLAGS_PASSWORD_NTHASH)) {
1683 return wpa_config_write_string(
1684 ssid->eap.password, ssid->eap.password_len);
1685 }
1686
1687 buf = os_malloc(5 + 32 + 1);
1688 if (buf == NULL)
1689 return NULL;
1690
1691 os_memcpy(buf, "hash:", 5);
1692 wpa_snprintf_hex(buf + 5, 32 + 1, ssid->eap.password, 16);
1693
1694 return buf;
1695}
Dmitry Shmidt83474442015-04-15 13:47:09 -07001696#endif /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001697#endif /* IEEE8021X_EAPOL */
1698
1699
1700static int wpa_config_parse_wep_key(u8 *key, size_t *len, int line,
1701 const char *value, int idx)
1702{
1703 char *buf, title[20];
1704 int res;
1705
1706 buf = wpa_config_parse_string(value, len);
1707 if (buf == NULL) {
1708 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key %d '%s'.",
1709 line, idx, value);
1710 return -1;
1711 }
1712 if (*len > MAX_WEP_KEY_LEN) {
1713 wpa_printf(MSG_ERROR, "Line %d: Too long WEP key %d '%s'.",
1714 line, idx, value);
1715 os_free(buf);
1716 return -1;
1717 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001718 if (*len && *len != 5 && *len != 13 && *len != 16) {
1719 wpa_printf(MSG_ERROR, "Line %d: Invalid WEP key length %u - "
1720 "this network block will be ignored",
1721 line, (unsigned int) *len);
1722 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001723 os_memcpy(key, buf, *len);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07001724 str_clear_free(buf);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001725 res = os_snprintf(title, sizeof(title), "wep_key%d", idx);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001726 if (!os_snprintf_error(sizeof(title), res))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001727 wpa_hexdump_key(MSG_MSGDUMP, title, key, *len);
1728 return 0;
1729}
1730
1731
1732static int wpa_config_parse_wep_key0(const struct parse_data *data,
1733 struct wpa_ssid *ssid, int line,
1734 const char *value)
1735{
1736 return wpa_config_parse_wep_key(ssid->wep_key[0],
1737 &ssid->wep_key_len[0], line,
1738 value, 0);
1739}
1740
1741
1742static int wpa_config_parse_wep_key1(const struct parse_data *data,
1743 struct wpa_ssid *ssid, int line,
1744 const char *value)
1745{
1746 return wpa_config_parse_wep_key(ssid->wep_key[1],
1747 &ssid->wep_key_len[1], line,
1748 value, 1);
1749}
1750
1751
1752static int wpa_config_parse_wep_key2(const struct parse_data *data,
1753 struct wpa_ssid *ssid, int line,
1754 const char *value)
1755{
1756 return wpa_config_parse_wep_key(ssid->wep_key[2],
1757 &ssid->wep_key_len[2], line,
1758 value, 2);
1759}
1760
1761
1762static int wpa_config_parse_wep_key3(const struct parse_data *data,
1763 struct wpa_ssid *ssid, int line,
1764 const char *value)
1765{
1766 return wpa_config_parse_wep_key(ssid->wep_key[3],
1767 &ssid->wep_key_len[3], line,
1768 value, 3);
1769}
1770
1771
1772#ifndef NO_CONFIG_WRITE
1773static char * wpa_config_write_wep_key(struct wpa_ssid *ssid, int idx)
1774{
1775 if (ssid->wep_key_len[idx] == 0)
1776 return NULL;
1777 return wpa_config_write_string(ssid->wep_key[idx],
1778 ssid->wep_key_len[idx]);
1779}
1780
1781
1782static char * wpa_config_write_wep_key0(const struct parse_data *data,
1783 struct wpa_ssid *ssid)
1784{
1785 return wpa_config_write_wep_key(ssid, 0);
1786}
1787
1788
1789static char * wpa_config_write_wep_key1(const struct parse_data *data,
1790 struct wpa_ssid *ssid)
1791{
1792 return wpa_config_write_wep_key(ssid, 1);
1793}
1794
1795
1796static char * wpa_config_write_wep_key2(const struct parse_data *data,
1797 struct wpa_ssid *ssid)
1798{
1799 return wpa_config_write_wep_key(ssid, 2);
1800}
1801
1802
1803static char * wpa_config_write_wep_key3(const struct parse_data *data,
1804 struct wpa_ssid *ssid)
1805{
1806 return wpa_config_write_wep_key(ssid, 3);
1807}
1808#endif /* NO_CONFIG_WRITE */
1809
1810
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001811#ifdef CONFIG_P2P
1812
Dmitry Shmidt54605472013-11-08 11:10:19 -08001813static int wpa_config_parse_go_p2p_dev_addr(const struct parse_data *data,
1814 struct wpa_ssid *ssid, int line,
1815 const char *value)
1816{
1817 if (value[0] == '\0' || os_strcmp(value, "\"\"") == 0 ||
1818 os_strcmp(value, "any") == 0) {
1819 os_memset(ssid->go_p2p_dev_addr, 0, ETH_ALEN);
1820 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address any");
1821 return 0;
1822 }
1823 if (hwaddr_aton(value, ssid->go_p2p_dev_addr)) {
1824 wpa_printf(MSG_ERROR, "Line %d: Invalid GO P2P Device Address '%s'.",
1825 line, value);
1826 return -1;
1827 }
1828 ssid->bssid_set = 1;
1829 wpa_printf(MSG_MSGDUMP, "GO P2P Device Address " MACSTR,
1830 MAC2STR(ssid->go_p2p_dev_addr));
1831 return 0;
1832}
1833
1834
1835#ifndef NO_CONFIG_WRITE
1836static char * wpa_config_write_go_p2p_dev_addr(const struct parse_data *data,
1837 struct wpa_ssid *ssid)
1838{
1839 char *value;
1840 int res;
1841
1842 if (is_zero_ether_addr(ssid->go_p2p_dev_addr))
1843 return NULL;
1844
1845 value = os_malloc(20);
1846 if (value == NULL)
1847 return NULL;
1848 res = os_snprintf(value, 20, MACSTR, MAC2STR(ssid->go_p2p_dev_addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001849 if (os_snprintf_error(20, res)) {
Dmitry Shmidt54605472013-11-08 11:10:19 -08001850 os_free(value);
1851 return NULL;
1852 }
1853 value[20 - 1] = '\0';
1854 return value;
1855}
1856#endif /* NO_CONFIG_WRITE */
1857
1858
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001859static int wpa_config_parse_p2p_client_list(const struct parse_data *data,
1860 struct wpa_ssid *ssid, int line,
1861 const char *value)
1862{
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001863 return wpa_config_parse_addr_list(data, line, value,
1864 &ssid->p2p_client_list,
1865 &ssid->num_p2p_clients,
1866 "p2p_client_list", 0, 0);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001867}
1868
1869
1870#ifndef NO_CONFIG_WRITE
1871static char * wpa_config_write_p2p_client_list(const struct parse_data *data,
1872 struct wpa_ssid *ssid)
1873{
Dmitry Shmidtff787d52015-01-12 13:01:47 -08001874 return wpa_config_write_addr_list(data, ssid->p2p_client_list,
1875 ssid->num_p2p_clients,
1876 "p2p_client_list");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001877}
1878#endif /* NO_CONFIG_WRITE */
1879
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001880
1881static int wpa_config_parse_psk_list(const struct parse_data *data,
1882 struct wpa_ssid *ssid, int line,
1883 const char *value)
1884{
1885 struct psk_list_entry *p;
1886 const char *pos;
1887
1888 p = os_zalloc(sizeof(*p));
1889 if (p == NULL)
1890 return -1;
1891
1892 pos = value;
1893 if (os_strncmp(pos, "P2P-", 4) == 0) {
1894 p->p2p = 1;
1895 pos += 4;
1896 }
1897
1898 if (hwaddr_aton(pos, p->addr)) {
1899 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list address '%s'",
1900 line, pos);
1901 os_free(p);
1902 return -1;
1903 }
1904 pos += 17;
1905 if (*pos != '-') {
1906 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list '%s'",
1907 line, pos);
1908 os_free(p);
1909 return -1;
1910 }
1911 pos++;
1912
1913 if (hexstr2bin(pos, p->psk, PMK_LEN) || pos[PMK_LEN * 2] != '\0') {
1914 wpa_printf(MSG_ERROR, "Line %d: Invalid psk_list PSK '%s'",
1915 line, pos);
1916 os_free(p);
1917 return -1;
1918 }
1919
1920 dl_list_add(&ssid->psk_list, &p->list);
1921
1922 return 0;
1923}
1924
1925
1926#ifndef NO_CONFIG_WRITE
1927static char * wpa_config_write_psk_list(const struct parse_data *data,
1928 struct wpa_ssid *ssid)
1929{
1930 return NULL;
1931}
1932#endif /* NO_CONFIG_WRITE */
1933
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001934#endif /* CONFIG_P2P */
1935
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001936
1937#ifdef CONFIG_MESH
1938
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001939static int wpa_config_parse_mesh_basic_rates(const struct parse_data *data,
1940 struct wpa_ssid *ssid, int line,
1941 const char *value)
1942{
1943 int *rates = wpa_config_parse_int_array(value);
1944
1945 if (rates == NULL) {
1946 wpa_printf(MSG_ERROR, "Line %d: Invalid mesh_basic_rates '%s'",
1947 line, value);
1948 return -1;
1949 }
1950 if (rates[0] == 0) {
1951 os_free(rates);
1952 rates = NULL;
1953 }
1954
1955 os_free(ssid->mesh_basic_rates);
1956 ssid->mesh_basic_rates = rates;
1957
1958 return 0;
1959}
1960
1961
1962#ifndef NO_CONFIG_WRITE
1963
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001964static char * wpa_config_write_mesh_basic_rates(const struct parse_data *data,
1965 struct wpa_ssid *ssid)
1966{
1967 return wpa_config_write_freqs(data, ssid->mesh_basic_rates);
1968}
1969
1970#endif /* NO_CONFIG_WRITE */
1971
1972#endif /* CONFIG_MESH */
1973
1974
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08001975#ifdef CONFIG_MACSEC
1976
1977static int wpa_config_parse_mka_cak(const struct parse_data *data,
1978 struct wpa_ssid *ssid, int line,
1979 const char *value)
1980{
1981 if (hexstr2bin(value, ssid->mka_cak, MACSEC_CAK_LEN) ||
1982 value[MACSEC_CAK_LEN * 2] != '\0') {
1983 wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CAK '%s'.",
1984 line, value);
1985 return -1;
1986 }
1987
1988 ssid->mka_psk_set |= MKA_PSK_SET_CAK;
1989
1990 wpa_hexdump_key(MSG_MSGDUMP, "MKA-CAK", ssid->mka_cak, MACSEC_CAK_LEN);
1991 return 0;
1992}
1993
1994
1995static int wpa_config_parse_mka_ckn(const struct parse_data *data,
1996 struct wpa_ssid *ssid, int line,
1997 const char *value)
1998{
1999 if (hexstr2bin(value, ssid->mka_ckn, MACSEC_CKN_LEN) ||
2000 value[MACSEC_CKN_LEN * 2] != '\0') {
2001 wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CKN '%s'.",
2002 line, value);
2003 return -1;
2004 }
2005
2006 ssid->mka_psk_set |= MKA_PSK_SET_CKN;
2007
2008 wpa_hexdump_key(MSG_MSGDUMP, "MKA-CKN", ssid->mka_ckn, MACSEC_CKN_LEN);
2009 return 0;
2010}
2011
2012
2013#ifndef NO_CONFIG_WRITE
2014
2015static char * wpa_config_write_mka_cak(const struct parse_data *data,
2016 struct wpa_ssid *ssid)
2017{
2018 if (!(ssid->mka_psk_set & MKA_PSK_SET_CAK))
2019 return NULL;
2020
2021 return wpa_config_write_string_hex(ssid->mka_cak, MACSEC_CAK_LEN);
2022}
2023
2024
2025static char * wpa_config_write_mka_ckn(const struct parse_data *data,
2026 struct wpa_ssid *ssid)
2027{
2028 if (!(ssid->mka_psk_set & MKA_PSK_SET_CKN))
2029 return NULL;
2030 return wpa_config_write_string_hex(ssid->mka_ckn, MACSEC_CKN_LEN);
2031}
2032
2033#endif /* NO_CONFIG_WRITE */
2034
2035#endif /* CONFIG_MACSEC */
2036
2037
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002038static int wpa_config_parse_peerkey(const struct parse_data *data,
2039 struct wpa_ssid *ssid, int line,
2040 const char *value)
2041{
2042 wpa_printf(MSG_INFO, "NOTE: Obsolete peerkey parameter ignored");
2043 return 0;
2044}
2045
2046
2047#ifndef NO_CONFIG_WRITE
2048static char * wpa_config_write_peerkey(const struct parse_data *data,
2049 struct wpa_ssid *ssid)
2050{
2051 return NULL;
2052}
2053#endif /* NO_CONFIG_WRITE */
2054
2055
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002056/* Helper macros for network block parser */
2057
2058#ifdef OFFSET
2059#undef OFFSET
2060#endif /* OFFSET */
2061/* OFFSET: Get offset of a variable within the wpa_ssid structure */
2062#define OFFSET(v) ((void *) &((struct wpa_ssid *) 0)->v)
2063
2064/* STR: Define a string variable for an ASCII string; f = field name */
2065#ifdef NO_CONFIG_WRITE
2066#define _STR(f) #f, wpa_config_parse_str, OFFSET(f)
2067#define _STRe(f) #f, wpa_config_parse_str, OFFSET(eap.f)
2068#else /* NO_CONFIG_WRITE */
2069#define _STR(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(f)
2070#define _STRe(f) #f, wpa_config_parse_str, wpa_config_write_str, OFFSET(eap.f)
2071#endif /* NO_CONFIG_WRITE */
2072#define STR(f) _STR(f), NULL, NULL, NULL, 0
2073#define STRe(f) _STRe(f), NULL, NULL, NULL, 0
2074#define STR_KEY(f) _STR(f), NULL, NULL, NULL, 1
2075#define STR_KEYe(f) _STRe(f), NULL, NULL, NULL, 1
2076
2077/* STR_LEN: Define a string variable with a separate variable for storing the
2078 * data length. Unlike STR(), this can be used to store arbitrary binary data
2079 * (i.e., even nul termination character). */
2080#define _STR_LEN(f) _STR(f), OFFSET(f ## _len)
2081#define _STR_LENe(f) _STRe(f), OFFSET(eap.f ## _len)
2082#define STR_LEN(f) _STR_LEN(f), NULL, NULL, 0
2083#define STR_LENe(f) _STR_LENe(f), NULL, NULL, 0
2084#define STR_LEN_KEY(f) _STR_LEN(f), NULL, NULL, 1
2085
2086/* STR_RANGE: Like STR_LEN(), but with minimum and maximum allowed length
2087 * explicitly specified. */
2088#define _STR_RANGE(f, min, max) _STR_LEN(f), (void *) (min), (void *) (max)
2089#define STR_RANGE(f, min, max) _STR_RANGE(f, min, max), 0
2090#define STR_RANGE_KEY(f, min, max) _STR_RANGE(f, min, max), 1
2091
2092#ifdef NO_CONFIG_WRITE
2093#define _INT(f) #f, wpa_config_parse_int, OFFSET(f), (void *) 0
2094#define _INTe(f) #f, wpa_config_parse_int, OFFSET(eap.f), (void *) 0
2095#else /* NO_CONFIG_WRITE */
2096#define _INT(f) #f, wpa_config_parse_int, wpa_config_write_int, \
2097 OFFSET(f), (void *) 0
2098#define _INTe(f) #f, wpa_config_parse_int, wpa_config_write_int, \
2099 OFFSET(eap.f), (void *) 0
2100#endif /* NO_CONFIG_WRITE */
2101
2102/* INT: Define an integer variable */
2103#define INT(f) _INT(f), NULL, NULL, 0
2104#define INTe(f) _INTe(f), NULL, NULL, 0
2105
2106/* INT_RANGE: Define an integer variable with allowed value range */
2107#define INT_RANGE(f, min, max) _INT(f), (void *) (min), (void *) (max), 0
2108
2109/* FUNC: Define a configuration variable that uses a custom function for
2110 * parsing and writing the value. */
2111#ifdef NO_CONFIG_WRITE
2112#define _FUNC(f) #f, wpa_config_parse_ ## f, NULL, NULL, NULL, NULL
2113#else /* NO_CONFIG_WRITE */
2114#define _FUNC(f) #f, wpa_config_parse_ ## f, wpa_config_write_ ## f, \
2115 NULL, NULL, NULL, NULL
2116#endif /* NO_CONFIG_WRITE */
2117#define FUNC(f) _FUNC(f), 0
2118#define FUNC_KEY(f) _FUNC(f), 1
2119
2120/*
2121 * Table of network configuration variables. This table is used to parse each
2122 * network configuration variable, e.g., each line in wpa_supplicant.conf file
2123 * that is inside a network block.
2124 *
2125 * This table is generated using the helper macros defined above and with
2126 * generous help from the C pre-processor. The field name is stored as a string
2127 * into .name and for STR and INT types, the offset of the target buffer within
2128 * struct wpa_ssid is stored in .param1. .param2 (if not NULL) is similar
2129 * offset to the field containing the length of the configuration variable.
2130 * .param3 and .param4 can be used to mark the allowed range (length for STR
2131 * and value for INT).
2132 *
2133 * For each configuration line in wpa_supplicant.conf, the parser goes through
2134 * this table and select the entry that matches with the field name. The parser
2135 * function (.parser) is then called to parse the actual value of the field.
2136 *
2137 * This kind of mechanism makes it easy to add new configuration parameters,
2138 * since only one line needs to be added into this table and into the
2139 * struct wpa_ssid definition if the new variable is either a string or
2140 * integer. More complex types will need to use their own parser and writer
2141 * functions.
2142 */
2143static const struct parse_data ssid_fields[] = {
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07002144 { STR_RANGE(ssid, 0, SSID_MAX_LEN) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002145 { INT_RANGE(scan_ssid, 0, 1) },
2146 { FUNC(bssid) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002147 { FUNC(bssid_hint) },
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002148 { FUNC(bssid_blacklist) },
2149 { FUNC(bssid_whitelist) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002150 { FUNC_KEY(psk) },
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -07002151 { INT(mem_only_psk) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002152 { STR_KEY(sae_password) },
Roshan Pius3a1667e2018-07-03 15:17:14 -07002153 { STR(sae_password_id) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002154 { FUNC(proto) },
2155 { FUNC(key_mgmt) },
Dmitry Shmidt04949592012-07-19 12:16:46 -07002156 { INT(bg_scan_period) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002157 { FUNC(pairwise) },
2158 { FUNC(group) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002159 { FUNC(group_mgmt) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002160 { FUNC(auth_alg) },
2161 { FUNC(scan_freq) },
2162 { FUNC(freq_list) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002163 { INT_RANGE(ht, 0, 1) },
2164 { INT_RANGE(vht, 0, 1) },
2165 { INT_RANGE(ht40, -1, 1) },
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002166 { INT_RANGE(max_oper_chwidth, VHT_CHANWIDTH_USE_HT,
2167 VHT_CHANWIDTH_80P80MHZ) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002168 { INT(vht_center_freq1) },
2169 { INT(vht_center_freq2) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002170#ifdef IEEE8021X_EAPOL
2171 { FUNC(eap) },
2172 { STR_LENe(identity) },
2173 { STR_LENe(anonymous_identity) },
Jouni Malinena3cb6f02017-12-08 17:05:40 +02002174 { STR_LENe(imsi_identity) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002175 { FUNC_KEY(password) },
2176 { STRe(ca_cert) },
2177 { STRe(ca_path) },
2178 { STRe(client_cert) },
2179 { STRe(private_key) },
2180 { STR_KEYe(private_key_passwd) },
2181 { STRe(dh_file) },
2182 { STRe(subject_match) },
2183 { STRe(altsubject_match) },
Dmitry Shmidt051af732013-10-22 13:52:46 -07002184 { STRe(domain_suffix_match) },
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002185 { STRe(domain_match) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002186 { STRe(ca_cert2) },
2187 { STRe(ca_path2) },
2188 { STRe(client_cert2) },
2189 { STRe(private_key2) },
2190 { STR_KEYe(private_key2_passwd) },
2191 { STRe(dh_file2) },
2192 { STRe(subject_match2) },
2193 { STRe(altsubject_match2) },
Dmitry Shmidt051af732013-10-22 13:52:46 -07002194 { STRe(domain_suffix_match2) },
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002195 { STRe(domain_match2) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002196 { STRe(phase1) },
2197 { STRe(phase2) },
2198 { STRe(pcsc) },
2199 { STR_KEYe(pin) },
2200 { STRe(engine_id) },
2201 { STRe(key_id) },
2202 { STRe(cert_id) },
2203 { STRe(ca_cert_id) },
2204 { STR_KEYe(pin2) },
2205 { STRe(engine2_id) },
2206 { STRe(key2_id) },
2207 { STRe(cert2_id) },
2208 { STRe(ca_cert2_id) },
2209 { INTe(engine) },
2210 { INTe(engine2) },
2211 { INT(eapol_flags) },
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07002212 { INTe(sim_num) },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002213 { STRe(openssl_ciphers) },
2214 { INTe(erp) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002215#endif /* IEEE8021X_EAPOL */
2216 { FUNC_KEY(wep_key0) },
2217 { FUNC_KEY(wep_key1) },
2218 { FUNC_KEY(wep_key2) },
2219 { FUNC_KEY(wep_key3) },
2220 { INT(wep_tx_keyidx) },
2221 { INT(priority) },
2222#ifdef IEEE8021X_EAPOL
2223 { INT(eap_workaround) },
2224 { STRe(pac_file) },
2225 { INTe(fragment_size) },
Dmitry Shmidt34af3062013-07-11 10:46:32 -07002226 { INTe(ocsp) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002227#endif /* IEEE8021X_EAPOL */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002228#ifdef CONFIG_MESH
2229 { INT_RANGE(mode, 0, 5) },
2230 { INT_RANGE(no_auto_peer, 0, 1) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002231 { INT_RANGE(mesh_rssi_threshold, -255, 1) },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002232#else /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002233 { INT_RANGE(mode, 0, 4) },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002234#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002235 { INT_RANGE(proactive_key_caching, 0, 1) },
2236 { INT_RANGE(disabled, 0, 2) },
2237 { STR(id_str) },
2238#ifdef CONFIG_IEEE80211W
2239 { INT_RANGE(ieee80211w, 0, 2) },
2240#endif /* CONFIG_IEEE80211W */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002241 { FUNC(peerkey) /* obsolete - removed */ },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002242 { INT_RANGE(mixed_cell, 0, 1) },
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002243 { INT_RANGE(frequency, 0, 65000) },
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002244 { INT_RANGE(fixed_freq, 0, 1) },
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -08002245#ifdef CONFIG_ACS
2246 { INT_RANGE(acs, 0, 1) },
2247#endif /* CONFIG_ACS */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002248#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002249 { FUNC(mesh_basic_rates) },
2250 { INT(dot11MeshMaxRetries) },
2251 { INT(dot11MeshRetryTimeout) },
2252 { INT(dot11MeshConfirmTimeout) },
2253 { INT(dot11MeshHoldingTimeout) },
2254#endif /* CONFIG_MESH */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002255 { INT(wpa_ptk_rekey) },
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -07002256 { INT(group_rekey) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002257 { STR(bgscan) },
Dmitry Shmidt04949592012-07-19 12:16:46 -07002258 { INT_RANGE(ignore_broadcast_ssid, 0, 2) },
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002259#ifdef CONFIG_P2P
Dmitry Shmidt54605472013-11-08 11:10:19 -08002260 { FUNC(go_p2p_dev_addr) },
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002261 { FUNC(p2p_client_list) },
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002262 { FUNC(psk_list) },
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002263#endif /* CONFIG_P2P */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002264#ifdef CONFIG_HT_OVERRIDES
2265 { INT_RANGE(disable_ht, 0, 1) },
2266 { INT_RANGE(disable_ht40, -1, 1) },
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002267 { INT_RANGE(disable_sgi, 0, 1) },
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002268 { INT_RANGE(disable_ldpc, 0, 1) },
Dmitry Shmidt61593f02014-04-21 16:27:35 -07002269 { INT_RANGE(ht40_intolerant, 0, 1) },
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002270 { INT_RANGE(disable_max_amsdu, -1, 1) },
2271 { INT_RANGE(ampdu_factor, -1, 3) },
2272 { INT_RANGE(ampdu_density, -1, 7) },
2273 { STR(ht_mcs) },
2274#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002275#ifdef CONFIG_VHT_OVERRIDES
2276 { INT_RANGE(disable_vht, 0, 1) },
2277 { INT(vht_capa) },
2278 { INT(vht_capa_mask) },
2279 { INT_RANGE(vht_rx_mcs_nss_1, -1, 3) },
2280 { INT_RANGE(vht_rx_mcs_nss_2, -1, 3) },
2281 { INT_RANGE(vht_rx_mcs_nss_3, -1, 3) },
2282 { INT_RANGE(vht_rx_mcs_nss_4, -1, 3) },
2283 { INT_RANGE(vht_rx_mcs_nss_5, -1, 3) },
2284 { INT_RANGE(vht_rx_mcs_nss_6, -1, 3) },
2285 { INT_RANGE(vht_rx_mcs_nss_7, -1, 3) },
2286 { INT_RANGE(vht_rx_mcs_nss_8, -1, 3) },
2287 { INT_RANGE(vht_tx_mcs_nss_1, -1, 3) },
2288 { INT_RANGE(vht_tx_mcs_nss_2, -1, 3) },
2289 { INT_RANGE(vht_tx_mcs_nss_3, -1, 3) },
2290 { INT_RANGE(vht_tx_mcs_nss_4, -1, 3) },
2291 { INT_RANGE(vht_tx_mcs_nss_5, -1, 3) },
2292 { INT_RANGE(vht_tx_mcs_nss_6, -1, 3) },
2293 { INT_RANGE(vht_tx_mcs_nss_7, -1, 3) },
2294 { INT_RANGE(vht_tx_mcs_nss_8, -1, 3) },
2295#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidt04949592012-07-19 12:16:46 -07002296 { INT(ap_max_inactivity) },
2297 { INT(dtim_period) },
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08002298 { INT(beacon_int) },
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07002299#ifdef CONFIG_MACSEC
2300 { INT_RANGE(macsec_policy, 0, 1) },
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08002301 { INT_RANGE(macsec_integ_only, 0, 1) },
2302 { INT_RANGE(macsec_port, 1, 65534) },
Dmitry Shmidt29333592017-01-09 12:27:11 -08002303 { INT_RANGE(mka_priority, 0, 255) },
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08002304 { FUNC_KEY(mka_cak) },
2305 { FUNC_KEY(mka_ckn) },
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07002306#endif /* CONFIG_MACSEC */
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002307#ifdef CONFIG_HS20
2308 { INT(update_identifier) },
Roshan Pius3a1667e2018-07-03 15:17:14 -07002309 { STR_RANGE(roaming_consortium_selection, 0, MAX_ROAMING_CONS_OI_LEN) },
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002310#endif /* CONFIG_HS20 */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002311 { INT_RANGE(mac_addr, 0, 2) },
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002312 { INT_RANGE(pbss, 0, 2) },
2313 { INT_RANGE(wps_disabled, 0, 1) },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002314 { INT_RANGE(fils_dh_group, 0, 65535) },
2315#ifdef CONFIG_DPP
2316 { STR(dpp_connector) },
2317 { STR_LEN(dpp_netaccesskey) },
2318 { INT(dpp_netaccesskey_expiry) },
2319 { STR_LEN(dpp_csign) },
2320#endif /* CONFIG_DPP */
2321 { INT_RANGE(owe_group, 0, 65535) },
Roshan Pius3a1667e2018-07-03 15:17:14 -07002322 { INT_RANGE(owe_only, 0, 1) },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002323};
2324
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002325#undef OFFSET
2326#undef _STR
2327#undef STR
2328#undef STR_KEY
2329#undef _STR_LEN
2330#undef STR_LEN
2331#undef STR_LEN_KEY
2332#undef _STR_RANGE
2333#undef STR_RANGE
2334#undef STR_RANGE_KEY
2335#undef _INT
2336#undef INT
2337#undef INT_RANGE
2338#undef _FUNC
2339#undef FUNC
2340#undef FUNC_KEY
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002341#define NUM_SSID_FIELDS ARRAY_SIZE(ssid_fields)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002342
2343
2344/**
2345 * wpa_config_add_prio_network - Add a network to priority lists
2346 * @config: Configuration data from wpa_config_read()
2347 * @ssid: Pointer to the network configuration to be added to the list
2348 * Returns: 0 on success, -1 on failure
2349 *
2350 * This function is used to add a network block to the priority list of
2351 * networks. This must be called for each network when reading in the full
2352 * configuration. In addition, this can be used indirectly when updating
2353 * priorities by calling wpa_config_update_prio_list().
2354 */
2355int wpa_config_add_prio_network(struct wpa_config *config,
2356 struct wpa_ssid *ssid)
2357{
2358 int prio;
2359 struct wpa_ssid *prev, **nlist;
2360
2361 /*
2362 * Add to an existing priority list if one is available for the
2363 * configured priority level for this network.
2364 */
2365 for (prio = 0; prio < config->num_prio; prio++) {
2366 prev = config->pssid[prio];
2367 if (prev->priority == ssid->priority) {
2368 while (prev->pnext)
2369 prev = prev->pnext;
2370 prev->pnext = ssid;
2371 return 0;
2372 }
2373 }
2374
2375 /* First network for this priority - add a new priority list */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002376 nlist = os_realloc_array(config->pssid, config->num_prio + 1,
2377 sizeof(struct wpa_ssid *));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002378 if (nlist == NULL)
2379 return -1;
2380
2381 for (prio = 0; prio < config->num_prio; prio++) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07002382 if (nlist[prio]->priority < ssid->priority) {
2383 os_memmove(&nlist[prio + 1], &nlist[prio],
2384 (config->num_prio - prio) *
2385 sizeof(struct wpa_ssid *));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002386 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002387 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002388 }
2389
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002390 nlist[prio] = ssid;
2391 config->num_prio++;
2392 config->pssid = nlist;
2393
2394 return 0;
2395}
2396
2397
2398/**
2399 * wpa_config_update_prio_list - Update network priority list
2400 * @config: Configuration data from wpa_config_read()
2401 * Returns: 0 on success, -1 on failure
2402 *
2403 * This function is called to update the priority list of networks in the
2404 * configuration when a network is being added or removed. This is also called
2405 * if a priority for a network is changed.
2406 */
2407int wpa_config_update_prio_list(struct wpa_config *config)
2408{
2409 struct wpa_ssid *ssid;
2410 int ret = 0;
2411
2412 os_free(config->pssid);
2413 config->pssid = NULL;
2414 config->num_prio = 0;
2415
2416 ssid = config->ssid;
2417 while (ssid) {
2418 ssid->pnext = NULL;
2419 if (wpa_config_add_prio_network(config, ssid) < 0)
2420 ret = -1;
2421 ssid = ssid->next;
2422 }
2423
2424 return ret;
2425}
2426
2427
2428#ifdef IEEE8021X_EAPOL
2429static void eap_peer_config_free(struct eap_peer_config *eap)
2430{
2431 os_free(eap->eap_methods);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002432 bin_clear_free(eap->identity, eap->identity_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002433 os_free(eap->anonymous_identity);
Jouni Malinena3cb6f02017-12-08 17:05:40 +02002434 os_free(eap->imsi_identity);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002435 bin_clear_free(eap->password, eap->password_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002436 os_free(eap->ca_cert);
2437 os_free(eap->ca_path);
2438 os_free(eap->client_cert);
2439 os_free(eap->private_key);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002440 str_clear_free(eap->private_key_passwd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002441 os_free(eap->dh_file);
2442 os_free(eap->subject_match);
2443 os_free(eap->altsubject_match);
Dmitry Shmidt051af732013-10-22 13:52:46 -07002444 os_free(eap->domain_suffix_match);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002445 os_free(eap->domain_match);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002446 os_free(eap->ca_cert2);
2447 os_free(eap->ca_path2);
2448 os_free(eap->client_cert2);
2449 os_free(eap->private_key2);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002450 str_clear_free(eap->private_key2_passwd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002451 os_free(eap->dh_file2);
2452 os_free(eap->subject_match2);
2453 os_free(eap->altsubject_match2);
Dmitry Shmidt051af732013-10-22 13:52:46 -07002454 os_free(eap->domain_suffix_match2);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002455 os_free(eap->domain_match2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002456 os_free(eap->phase1);
2457 os_free(eap->phase2);
2458 os_free(eap->pcsc);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002459 str_clear_free(eap->pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002460 os_free(eap->engine_id);
2461 os_free(eap->key_id);
2462 os_free(eap->cert_id);
2463 os_free(eap->ca_cert_id);
2464 os_free(eap->key2_id);
2465 os_free(eap->cert2_id);
2466 os_free(eap->ca_cert2_id);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002467 str_clear_free(eap->pin2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002468 os_free(eap->engine2_id);
2469 os_free(eap->otp);
2470 os_free(eap->pending_req_otp);
2471 os_free(eap->pac_file);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002472 bin_clear_free(eap->new_password, eap->new_password_len);
2473 str_clear_free(eap->external_sim_resp);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002474 os_free(eap->openssl_ciphers);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002475}
2476#endif /* IEEE8021X_EAPOL */
2477
2478
2479/**
2480 * wpa_config_free_ssid - Free network/ssid configuration data
2481 * @ssid: Configuration data for the network
2482 *
2483 * This function frees all resources allocated for the network configuration
2484 * data.
2485 */
2486void wpa_config_free_ssid(struct wpa_ssid *ssid)
2487{
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002488 struct psk_list_entry *psk;
2489
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002490 os_free(ssid->ssid);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002491 str_clear_free(ssid->passphrase);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002492 os_free(ssid->ext_psk);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002493 str_clear_free(ssid->sae_password);
Roshan Pius3a1667e2018-07-03 15:17:14 -07002494 os_free(ssid->sae_password_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002495#ifdef IEEE8021X_EAPOL
2496 eap_peer_config_free(&ssid->eap);
2497#endif /* IEEE8021X_EAPOL */
2498 os_free(ssid->id_str);
2499 os_free(ssid->scan_freq);
2500 os_free(ssid->freq_list);
2501 os_free(ssid->bgscan);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002502 os_free(ssid->p2p_client_list);
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002503 os_free(ssid->bssid_blacklist);
2504 os_free(ssid->bssid_whitelist);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002505#ifdef CONFIG_HT_OVERRIDES
2506 os_free(ssid->ht_mcs);
2507#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002508#ifdef CONFIG_MESH
2509 os_free(ssid->mesh_basic_rates);
2510#endif /* CONFIG_MESH */
Roshan Pius3a1667e2018-07-03 15:17:14 -07002511#ifdef CONFIG_HS20
2512 os_free(ssid->roaming_consortium_selection);
2513#endif /* CONFIG_HS20 */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002514 os_free(ssid->dpp_connector);
2515 bin_clear_free(ssid->dpp_netaccesskey, ssid->dpp_netaccesskey_len);
2516 os_free(ssid->dpp_csign);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002517 while ((psk = dl_list_first(&ssid->psk_list, struct psk_list_entry,
2518 list))) {
2519 dl_list_del(&psk->list);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002520 bin_clear_free(psk, sizeof(*psk));
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002521 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002522 bin_clear_free(ssid, sizeof(*ssid));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002523}
2524
2525
Dmitry Shmidt04949592012-07-19 12:16:46 -07002526void wpa_config_free_cred(struct wpa_cred *cred)
2527{
Dmitry Shmidt051af732013-10-22 13:52:46 -07002528 size_t i;
2529
Dmitry Shmidt04949592012-07-19 12:16:46 -07002530 os_free(cred->realm);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002531 str_clear_free(cred->username);
2532 str_clear_free(cred->password);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002533 os_free(cred->ca_cert);
2534 os_free(cred->client_cert);
2535 os_free(cred->private_key);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002536 str_clear_free(cred->private_key_passwd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002537 os_free(cred->imsi);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002538 str_clear_free(cred->milenage);
Dmitry Shmidt051af732013-10-22 13:52:46 -07002539 for (i = 0; i < cred->num_domain; i++)
2540 os_free(cred->domain[i]);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002541 os_free(cred->domain);
Dmitry Shmidt051af732013-10-22 13:52:46 -07002542 os_free(cred->domain_suffix_match);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002543 os_free(cred->eap_method);
2544 os_free(cred->phase1);
2545 os_free(cred->phase2);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002546 os_free(cred->excluded_ssid);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002547 os_free(cred->roaming_partner);
2548 os_free(cred->provisioning_sp);
2549 for (i = 0; i < cred->num_req_conn_capab; i++)
2550 os_free(cred->req_conn_capab_port[i]);
2551 os_free(cred->req_conn_capab_port);
2552 os_free(cred->req_conn_capab_proto);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002553 os_free(cred);
2554}
2555
2556
Dmitry Shmidt344abd32014-01-14 13:17:00 -08002557void wpa_config_flush_blobs(struct wpa_config *config)
2558{
2559#ifndef CONFIG_NO_CONFIG_BLOBS
2560 struct wpa_config_blob *blob, *prev;
2561
2562 blob = config->blobs;
2563 config->blobs = NULL;
2564 while (blob) {
2565 prev = blob;
2566 blob = blob->next;
2567 wpa_config_free_blob(prev);
2568 }
2569#endif /* CONFIG_NO_CONFIG_BLOBS */
2570}
2571
2572
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002573/**
2574 * wpa_config_free - Free configuration data
2575 * @config: Configuration data from wpa_config_read()
2576 *
2577 * This function frees all resources allocated for the configuration data by
2578 * wpa_config_read().
2579 */
2580void wpa_config_free(struct wpa_config *config)
2581{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002582 struct wpa_ssid *ssid, *prev = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002583 struct wpa_cred *cred, *cprev;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002584 int i;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002585
2586 ssid = config->ssid;
2587 while (ssid) {
2588 prev = ssid;
2589 ssid = ssid->next;
2590 wpa_config_free_ssid(prev);
2591 }
2592
Dmitry Shmidt04949592012-07-19 12:16:46 -07002593 cred = config->cred;
2594 while (cred) {
2595 cprev = cred;
2596 cred = cred->next;
2597 wpa_config_free_cred(cprev);
2598 }
2599
Dmitry Shmidt344abd32014-01-14 13:17:00 -08002600 wpa_config_flush_blobs(config);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002601
Dmitry Shmidt04949592012-07-19 12:16:46 -07002602 wpabuf_free(config->wps_vendor_ext_m1);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002603 for (i = 0; i < MAX_WPS_VENDOR_EXT; i++)
2604 wpabuf_free(config->wps_vendor_ext[i]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002605 os_free(config->ctrl_interface);
2606 os_free(config->ctrl_interface_group);
2607 os_free(config->opensc_engine_path);
2608 os_free(config->pkcs11_engine_path);
2609 os_free(config->pkcs11_module_path);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002610 os_free(config->openssl_ciphers);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002611 os_free(config->pcsc_reader);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07002612 str_clear_free(config->pcsc_pin);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002613 os_free(config->driver_param);
2614 os_free(config->device_name);
2615 os_free(config->manufacturer);
2616 os_free(config->model_name);
2617 os_free(config->model_number);
2618 os_free(config->serial_number);
2619 os_free(config->config_methods);
2620 os_free(config->p2p_ssid_postfix);
2621 os_free(config->pssid);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002622 os_free(config->p2p_pref_chan);
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07002623 os_free(config->p2p_no_go_freq.range);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002624 os_free(config->autoscan);
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07002625 os_free(config->freq_list);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002626 wpabuf_free(config->wps_nfc_dh_pubkey);
2627 wpabuf_free(config->wps_nfc_dh_privkey);
2628 wpabuf_free(config->wps_nfc_dev_pw);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002629 os_free(config->ext_password_backend);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002630 os_free(config->sae_groups);
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07002631 wpabuf_free(config->ap_vendor_elements);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08002632 os_free(config->osu_dir);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08002633 os_free(config->bgscan);
Dmitry Shmidtb58836e2014-04-29 14:35:56 -07002634 os_free(config->wowlan_triggers);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002635 os_free(config->fst_group_id);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002636 os_free(config->sched_scan_plans);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08002637#ifdef CONFIG_MBO
2638 os_free(config->non_pref_chan);
2639#endif /* CONFIG_MBO */
Jimmy Chenf887c7b2018-11-13 15:19:57 +08002640 os_free(config->p2p_device_persistent_mac_addr);
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002641
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002642 os_free(config);
2643}
2644
2645
2646/**
2647 * wpa_config_foreach_network - Iterate over each configured network
2648 * @config: Configuration data from wpa_config_read()
2649 * @func: Callback function to process each network
2650 * @arg: Opaque argument to pass to callback function
2651 *
2652 * Iterate over the set of configured networks calling the specified
2653 * function for each item. We guard against callbacks removing the
2654 * supplied network.
2655 */
2656void wpa_config_foreach_network(struct wpa_config *config,
2657 void (*func)(void *, struct wpa_ssid *),
2658 void *arg)
2659{
2660 struct wpa_ssid *ssid, *next;
2661
2662 ssid = config->ssid;
2663 while (ssid) {
2664 next = ssid->next;
2665 func(arg, ssid);
2666 ssid = next;
2667 }
2668}
2669
2670
2671/**
2672 * wpa_config_get_network - Get configured network based on id
2673 * @config: Configuration data from wpa_config_read()
2674 * @id: Unique network id to search for
2675 * Returns: Network configuration or %NULL if not found
2676 */
2677struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
2678{
2679 struct wpa_ssid *ssid;
2680
2681 ssid = config->ssid;
2682 while (ssid) {
2683 if (id == ssid->id)
2684 break;
2685 ssid = ssid->next;
2686 }
2687
2688 return ssid;
2689}
2690
2691
2692/**
2693 * wpa_config_add_network - Add a new network with empty configuration
2694 * @config: Configuration data from wpa_config_read()
2695 * Returns: The new network configuration or %NULL if operation failed
2696 */
2697struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
2698{
2699 int id;
2700 struct wpa_ssid *ssid, *last = NULL;
2701
2702 id = -1;
2703 ssid = config->ssid;
2704 while (ssid) {
2705 if (ssid->id > id)
2706 id = ssid->id;
2707 last = ssid;
2708 ssid = ssid->next;
2709 }
2710 id++;
2711
2712 ssid = os_zalloc(sizeof(*ssid));
2713 if (ssid == NULL)
2714 return NULL;
2715 ssid->id = id;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002716 dl_list_init(&ssid->psk_list);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002717 if (last)
2718 last->next = ssid;
2719 else
2720 config->ssid = ssid;
2721
2722 wpa_config_update_prio_list(config);
2723
2724 return ssid;
2725}
2726
2727
2728/**
2729 * wpa_config_remove_network - Remove a configured network based on id
2730 * @config: Configuration data from wpa_config_read()
2731 * @id: Unique network id to search for
2732 * Returns: 0 on success, or -1 if the network was not found
2733 */
2734int wpa_config_remove_network(struct wpa_config *config, int id)
2735{
2736 struct wpa_ssid *ssid, *prev = NULL;
2737
2738 ssid = config->ssid;
2739 while (ssid) {
2740 if (id == ssid->id)
2741 break;
2742 prev = ssid;
2743 ssid = ssid->next;
2744 }
2745
2746 if (ssid == NULL)
2747 return -1;
2748
2749 if (prev)
2750 prev->next = ssid->next;
2751 else
2752 config->ssid = ssid->next;
2753
2754 wpa_config_update_prio_list(config);
2755 wpa_config_free_ssid(ssid);
2756 return 0;
2757}
2758
2759
2760/**
2761 * wpa_config_set_network_defaults - Set network default values
2762 * @ssid: Pointer to network configuration data
2763 */
2764void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
2765{
2766 ssid->proto = DEFAULT_PROTO;
2767 ssid->pairwise_cipher = DEFAULT_PAIRWISE;
2768 ssid->group_cipher = DEFAULT_GROUP;
2769 ssid->key_mgmt = DEFAULT_KEY_MGMT;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002770 ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002771 ssid->ht = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002772#ifdef IEEE8021X_EAPOL
2773 ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
2774 ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
2775 ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07002776 ssid->eap.sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002777#endif /* IEEE8021X_EAPOL */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002778#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002779 ssid->dot11MeshMaxRetries = DEFAULT_MESH_MAX_RETRIES;
2780 ssid->dot11MeshRetryTimeout = DEFAULT_MESH_RETRY_TIMEOUT;
2781 ssid->dot11MeshConfirmTimeout = DEFAULT_MESH_CONFIRM_TIMEOUT;
2782 ssid->dot11MeshHoldingTimeout = DEFAULT_MESH_HOLDING_TIMEOUT;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002783 ssid->mesh_rssi_threshold = DEFAULT_MESH_RSSI_THRESHOLD;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002784#endif /* CONFIG_MESH */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002785#ifdef CONFIG_HT_OVERRIDES
2786 ssid->disable_ht = DEFAULT_DISABLE_HT;
2787 ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002788 ssid->disable_sgi = DEFAULT_DISABLE_SGI;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002789 ssid->disable_ldpc = DEFAULT_DISABLE_LDPC;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002790 ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
2791 ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
2792 ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
2793#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002794#ifdef CONFIG_VHT_OVERRIDES
2795 ssid->vht_rx_mcs_nss_1 = -1;
2796 ssid->vht_rx_mcs_nss_2 = -1;
2797 ssid->vht_rx_mcs_nss_3 = -1;
2798 ssid->vht_rx_mcs_nss_4 = -1;
2799 ssid->vht_rx_mcs_nss_5 = -1;
2800 ssid->vht_rx_mcs_nss_6 = -1;
2801 ssid->vht_rx_mcs_nss_7 = -1;
2802 ssid->vht_rx_mcs_nss_8 = -1;
2803 ssid->vht_tx_mcs_nss_1 = -1;
2804 ssid->vht_tx_mcs_nss_2 = -1;
2805 ssid->vht_tx_mcs_nss_3 = -1;
2806 ssid->vht_tx_mcs_nss_4 = -1;
2807 ssid->vht_tx_mcs_nss_5 = -1;
2808 ssid->vht_tx_mcs_nss_6 = -1;
2809 ssid->vht_tx_mcs_nss_7 = -1;
2810 ssid->vht_tx_mcs_nss_8 = -1;
2811#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002812 ssid->proactive_key_caching = -1;
2813#ifdef CONFIG_IEEE80211W
2814 ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
2815#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt29333592017-01-09 12:27:11 -08002816#ifdef CONFIG_MACSEC
2817 ssid->mka_priority = DEFAULT_PRIO_NOT_KEY_SERVER;
2818#endif /* CONFIG_MACSEC */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002819 ssid->mac_addr = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002820}
2821
2822
2823/**
2824 * wpa_config_set - Set a variable in network configuration
2825 * @ssid: Pointer to network configuration data
2826 * @var: Variable name, e.g., "ssid"
2827 * @value: Variable value
2828 * @line: Line number in configuration file or 0 if not used
Dmitry Shmidte4663042016-04-04 10:07:49 -07002829 * Returns: 0 on success with possible change in the value, 1 on success with
2830 * no change to previously configured value, or -1 on failure
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002831 *
2832 * This function can be used to set network configuration variables based on
2833 * both the configuration file and management interface input. The value
2834 * parameter must be in the same format as the text-based configuration file is
2835 * using. For example, strings are using double quotation marks.
2836 */
2837int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
2838 int line)
2839{
2840 size_t i;
2841 int ret = 0;
2842
2843 if (ssid == NULL || var == NULL || value == NULL)
2844 return -1;
2845
2846 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2847 const struct parse_data *field = &ssid_fields[i];
2848 if (os_strcmp(var, field->name) != 0)
2849 continue;
2850
Dmitry Shmidte4663042016-04-04 10:07:49 -07002851 ret = field->parser(field, ssid, line, value);
2852 if (ret < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002853 if (line) {
2854 wpa_printf(MSG_ERROR, "Line %d: failed to "
2855 "parse %s '%s'.", line, var, value);
2856 }
2857 ret = -1;
2858 }
2859 break;
2860 }
2861 if (i == NUM_SSID_FIELDS) {
2862 if (line) {
2863 wpa_printf(MSG_ERROR, "Line %d: unknown network field "
2864 "'%s'.", line, var);
2865 }
2866 ret = -1;
2867 }
2868
2869 return ret;
2870}
2871
2872
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002873int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
2874 const char *value)
2875{
2876 size_t len;
2877 char *buf;
2878 int ret;
2879
2880 len = os_strlen(value);
2881 buf = os_malloc(len + 3);
2882 if (buf == NULL)
2883 return -1;
2884 buf[0] = '"';
2885 os_memcpy(buf + 1, value, len);
2886 buf[len + 1] = '"';
2887 buf[len + 2] = '\0';
2888 ret = wpa_config_set(ssid, var, buf, 0);
2889 os_free(buf);
2890 return ret;
2891}
2892
2893
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002894/**
2895 * wpa_config_get_all - Get all options from network configuration
2896 * @ssid: Pointer to network configuration data
2897 * @get_keys: Determines if keys/passwords will be included in returned list
2898 * (if they may be exported)
2899 * Returns: %NULL terminated list of all set keys and their values in the form
2900 * of [key1, val1, key2, val2, ... , NULL]
2901 *
2902 * This function can be used to get list of all configured network properties.
2903 * The caller is responsible for freeing the returned list and all its
2904 * elements.
2905 */
2906char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
2907{
Dmitry Shmidt83474442015-04-15 13:47:09 -07002908#ifdef NO_CONFIG_WRITE
2909 return NULL;
2910#else /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002911 const struct parse_data *field;
2912 char *key, *value;
2913 size_t i;
2914 char **props;
2915 int fields_num;
2916
2917 get_keys = get_keys && ssid->export_keys;
2918
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002919 props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002920 if (!props)
2921 return NULL;
2922
2923 fields_num = 0;
2924 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2925 field = &ssid_fields[i];
2926 if (field->key_data && !get_keys)
2927 continue;
2928 value = field->writer(field, ssid);
2929 if (value == NULL)
2930 continue;
2931 if (os_strlen(value) == 0) {
2932 os_free(value);
2933 continue;
2934 }
2935
2936 key = os_strdup(field->name);
2937 if (key == NULL) {
2938 os_free(value);
2939 goto err;
2940 }
2941
2942 props[fields_num * 2] = key;
2943 props[fields_num * 2 + 1] = value;
2944
2945 fields_num++;
2946 }
2947
2948 return props;
2949
2950err:
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07002951 for (i = 0; props[i]; i++)
2952 os_free(props[i]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002953 os_free(props);
2954 return NULL;
Dmitry Shmidt83474442015-04-15 13:47:09 -07002955#endif /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002956}
2957
2958
2959#ifndef NO_CONFIG_WRITE
2960/**
2961 * wpa_config_get - Get a variable in network configuration
2962 * @ssid: Pointer to network configuration data
2963 * @var: Variable name, e.g., "ssid"
2964 * Returns: Value of the variable or %NULL on failure
2965 *
2966 * This function can be used to get network configuration variables. The
2967 * returned value is a copy of the configuration variable in text format, i.e,.
2968 * the same format that the text-based configuration file and wpa_config_set()
2969 * are using for the value. The caller is responsible for freeing the returned
2970 * value.
2971 */
2972char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
2973{
2974 size_t i;
2975
2976 if (ssid == NULL || var == NULL)
2977 return NULL;
2978
2979 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2980 const struct parse_data *field = &ssid_fields[i];
Paul Stewart85c72c62016-03-03 15:33:47 -08002981 if (os_strcmp(var, field->name) == 0) {
2982 char *ret = field->writer(field, ssid);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002983
2984 if (ret && has_newline(ret)) {
Paul Stewart35800752016-03-18 18:14:26 -07002985 wpa_printf(MSG_ERROR,
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002986 "Found newline in value for %s; not returning it",
2987 var);
Paul Stewart85c72c62016-03-03 15:33:47 -08002988 os_free(ret);
2989 ret = NULL;
2990 }
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002991
Paul Stewart85c72c62016-03-03 15:33:47 -08002992 return ret;
2993 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002994 }
2995
2996 return NULL;
2997}
2998
2999
3000/**
3001 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
3002 * @ssid: Pointer to network configuration data
3003 * @var: Variable name, e.g., "ssid"
3004 * Returns: Value of the variable or %NULL on failure
3005 *
3006 * This function can be used to get network configuration variable like
3007 * wpa_config_get(). The only difference is that this functions does not expose
3008 * key/password material from the configuration. In case a key/password field
3009 * is requested, the returned value is an empty string or %NULL if the variable
3010 * is not set or "*" if the variable is set (regardless of its value). The
3011 * returned value is a copy of the configuration variable in text format, i.e,.
3012 * the same format that the text-based configuration file and wpa_config_set()
3013 * are using for the value. The caller is responsible for freeing the returned
3014 * value.
3015 */
3016char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
3017{
3018 size_t i;
3019
3020 if (ssid == NULL || var == NULL)
3021 return NULL;
3022
3023 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3024 const struct parse_data *field = &ssid_fields[i];
3025 if (os_strcmp(var, field->name) == 0) {
3026 char *res = field->writer(field, ssid);
3027 if (field->key_data) {
3028 if (res && res[0]) {
3029 wpa_printf(MSG_DEBUG, "Do not allow "
3030 "key_data field to be "
3031 "exposed");
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003032 str_clear_free(res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003033 return os_strdup("*");
3034 }
3035
3036 os_free(res);
3037 return NULL;
3038 }
3039 return res;
3040 }
3041 }
3042
3043 return NULL;
3044}
3045#endif /* NO_CONFIG_WRITE */
3046
3047
3048/**
3049 * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
3050 * @ssid: Pointer to network configuration data
3051 *
3052 * This function must be called to update WPA PSK when either SSID or the
3053 * passphrase has changed for the network configuration.
3054 */
3055void wpa_config_update_psk(struct wpa_ssid *ssid)
3056{
3057#ifndef CONFIG_NO_PBKDF2
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003058 pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003059 ssid->psk, PMK_LEN);
3060 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
3061 ssid->psk, PMK_LEN);
3062 ssid->psk_set = 1;
3063#endif /* CONFIG_NO_PBKDF2 */
3064}
3065
3066
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003067static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
3068 const char *value)
3069{
3070 u8 *proto;
3071 int **port;
3072 int *ports, *nports;
3073 const char *pos;
3074 unsigned int num_ports;
3075
3076 proto = os_realloc_array(cred->req_conn_capab_proto,
3077 cred->num_req_conn_capab + 1, sizeof(u8));
3078 if (proto == NULL)
3079 return -1;
3080 cred->req_conn_capab_proto = proto;
3081
3082 port = os_realloc_array(cred->req_conn_capab_port,
3083 cred->num_req_conn_capab + 1, sizeof(int *));
3084 if (port == NULL)
3085 return -1;
3086 cred->req_conn_capab_port = port;
3087
3088 proto[cred->num_req_conn_capab] = atoi(value);
3089
3090 pos = os_strchr(value, ':');
3091 if (pos == NULL) {
3092 port[cred->num_req_conn_capab] = NULL;
3093 cred->num_req_conn_capab++;
3094 return 0;
3095 }
3096 pos++;
3097
3098 ports = NULL;
3099 num_ports = 0;
3100
3101 while (*pos) {
3102 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3103 if (nports == NULL) {
3104 os_free(ports);
3105 return -1;
3106 }
3107 ports = nports;
3108 ports[num_ports++] = atoi(pos);
3109
3110 pos = os_strchr(pos, ',');
3111 if (pos == NULL)
3112 break;
3113 pos++;
3114 }
3115
3116 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3117 if (nports == NULL) {
3118 os_free(ports);
3119 return -1;
3120 }
3121 ports = nports;
3122 ports[num_ports] = -1;
3123
3124 port[cred->num_req_conn_capab] = ports;
3125 cred->num_req_conn_capab++;
3126 return 0;
3127}
3128
3129
Roshan Pius3a1667e2018-07-03 15:17:14 -07003130static int wpa_config_set_cred_roaming_consortiums(struct wpa_cred *cred,
3131 const char *value)
3132{
3133 u8 roaming_consortiums[MAX_ROAMING_CONS][MAX_ROAMING_CONS_OI_LEN];
3134 size_t roaming_consortiums_len[MAX_ROAMING_CONS];
3135 unsigned int num_roaming_consortiums = 0;
3136 const char *pos, *end;
3137 size_t len;
3138
3139 os_memset(roaming_consortiums, 0, sizeof(roaming_consortiums));
3140 os_memset(roaming_consortiums_len, 0, sizeof(roaming_consortiums_len));
3141
3142 for (pos = value;;) {
3143 end = os_strchr(pos, ',');
3144 len = end ? (size_t) (end - pos) : os_strlen(pos);
3145 if (!end && len == 0)
3146 break;
3147 if (len == 0 || (len & 1) != 0 ||
3148 len / 2 > MAX_ROAMING_CONS_OI_LEN ||
3149 hexstr2bin(pos,
3150 roaming_consortiums[num_roaming_consortiums],
3151 len / 2) < 0) {
3152 wpa_printf(MSG_INFO,
3153 "Invalid roaming_consortiums entry: %s",
3154 pos);
3155 return -1;
3156 }
3157 roaming_consortiums_len[num_roaming_consortiums] = len / 2;
3158 num_roaming_consortiums++;
3159 if (num_roaming_consortiums > MAX_ROAMING_CONS) {
3160 wpa_printf(MSG_INFO,
3161 "Too many roaming_consortiums OIs");
3162 return -1;
3163 }
3164
3165 if (!end)
3166 break;
3167 pos = end + 1;
3168 }
3169
3170 os_memcpy(cred->roaming_consortiums, roaming_consortiums,
3171 sizeof(roaming_consortiums));
3172 os_memcpy(cred->roaming_consortiums_len, roaming_consortiums_len,
3173 sizeof(roaming_consortiums_len));
3174 cred->num_roaming_consortiums = num_roaming_consortiums;
3175
3176 return 0;
3177}
3178
3179
Dmitry Shmidt04949592012-07-19 12:16:46 -07003180int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
3181 const char *value, int line)
3182{
3183 char *val;
3184 size_t len;
Roshan Pius3a1667e2018-07-03 15:17:14 -07003185 int res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003186
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003187 if (os_strcmp(var, "temporary") == 0) {
3188 cred->temporary = atoi(value);
3189 return 0;
3190 }
3191
Dmitry Shmidt04949592012-07-19 12:16:46 -07003192 if (os_strcmp(var, "priority") == 0) {
3193 cred->priority = atoi(value);
3194 return 0;
3195 }
3196
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003197 if (os_strcmp(var, "sp_priority") == 0) {
3198 int prio = atoi(value);
3199 if (prio < 0 || prio > 255)
3200 return -1;
3201 cred->sp_priority = prio;
3202 return 0;
3203 }
3204
Dmitry Shmidt04949592012-07-19 12:16:46 -07003205 if (os_strcmp(var, "pcsc") == 0) {
3206 cred->pcsc = atoi(value);
3207 return 0;
3208 }
3209
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003210 if (os_strcmp(var, "eap") == 0) {
3211 struct eap_method_type method;
3212 method.method = eap_peer_get_type(value, &method.vendor);
3213 if (method.vendor == EAP_VENDOR_IETF &&
3214 method.method == EAP_TYPE_NONE) {
3215 wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
3216 "for a credential", line, value);
3217 return -1;
3218 }
3219 os_free(cred->eap_method);
3220 cred->eap_method = os_malloc(sizeof(*cred->eap_method));
3221 if (cred->eap_method == NULL)
3222 return -1;
3223 os_memcpy(cred->eap_method, &method, sizeof(method));
3224 return 0;
3225 }
3226
3227 if (os_strcmp(var, "password") == 0 &&
3228 os_strncmp(value, "ext:", 4) == 0) {
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003229 if (has_newline(value))
3230 return -1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003231 str_clear_free(cred->password);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003232 cred->password = os_strdup(value);
3233 cred->ext_password = 1;
3234 return 0;
3235 }
3236
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003237 if (os_strcmp(var, "update_identifier") == 0) {
3238 cred->update_identifier = atoi(value);
3239 return 0;
3240 }
3241
3242 if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
3243 cred->min_dl_bandwidth_home = atoi(value);
3244 return 0;
3245 }
3246
3247 if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
3248 cred->min_ul_bandwidth_home = atoi(value);
3249 return 0;
3250 }
3251
3252 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
3253 cred->min_dl_bandwidth_roaming = atoi(value);
3254 return 0;
3255 }
3256
3257 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
3258 cred->min_ul_bandwidth_roaming = atoi(value);
3259 return 0;
3260 }
3261
3262 if (os_strcmp(var, "max_bss_load") == 0) {
3263 cred->max_bss_load = atoi(value);
3264 return 0;
3265 }
3266
3267 if (os_strcmp(var, "req_conn_capab") == 0)
3268 return wpa_config_set_cred_req_conn_capab(cred, value);
3269
3270 if (os_strcmp(var, "ocsp") == 0) {
3271 cred->ocsp = atoi(value);
3272 return 0;
3273 }
3274
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07003275 if (os_strcmp(var, "sim_num") == 0) {
3276 cred->sim_num = atoi(value);
3277 return 0;
3278 }
3279
Dmitry Shmidt04949592012-07-19 12:16:46 -07003280 val = wpa_config_parse_string(value, &len);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003281 if (val == NULL ||
3282 (os_strcmp(var, "excluded_ssid") != 0 &&
3283 os_strcmp(var, "roaming_consortium") != 0 &&
3284 os_strcmp(var, "required_roaming_consortium") != 0 &&
3285 has_newline(val))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003286 wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
3287 "value '%s'.", line, var, value);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003288 os_free(val);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003289 return -1;
3290 }
3291
3292 if (os_strcmp(var, "realm") == 0) {
3293 os_free(cred->realm);
3294 cred->realm = val;
3295 return 0;
3296 }
3297
3298 if (os_strcmp(var, "username") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003299 str_clear_free(cred->username);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003300 cred->username = val;
3301 return 0;
3302 }
3303
3304 if (os_strcmp(var, "password") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003305 str_clear_free(cred->password);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003306 cred->password = val;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003307 cred->ext_password = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003308 return 0;
3309 }
3310
3311 if (os_strcmp(var, "ca_cert") == 0) {
3312 os_free(cred->ca_cert);
3313 cred->ca_cert = val;
3314 return 0;
3315 }
3316
3317 if (os_strcmp(var, "client_cert") == 0) {
3318 os_free(cred->client_cert);
3319 cred->client_cert = val;
3320 return 0;
3321 }
3322
3323 if (os_strcmp(var, "private_key") == 0) {
3324 os_free(cred->private_key);
3325 cred->private_key = val;
3326 return 0;
3327 }
3328
3329 if (os_strcmp(var, "private_key_passwd") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003330 str_clear_free(cred->private_key_passwd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003331 cred->private_key_passwd = val;
3332 return 0;
3333 }
3334
3335 if (os_strcmp(var, "imsi") == 0) {
3336 os_free(cred->imsi);
3337 cred->imsi = val;
3338 return 0;
3339 }
3340
3341 if (os_strcmp(var, "milenage") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003342 str_clear_free(cred->milenage);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003343 cred->milenage = val;
3344 return 0;
3345 }
3346
Dmitry Shmidt051af732013-10-22 13:52:46 -07003347 if (os_strcmp(var, "domain_suffix_match") == 0) {
3348 os_free(cred->domain_suffix_match);
3349 cred->domain_suffix_match = val;
3350 return 0;
3351 }
3352
Dmitry Shmidt04949592012-07-19 12:16:46 -07003353 if (os_strcmp(var, "domain") == 0) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07003354 char **new_domain;
3355 new_domain = os_realloc_array(cred->domain,
3356 cred->num_domain + 1,
3357 sizeof(char *));
3358 if (new_domain == NULL) {
3359 os_free(val);
3360 return -1;
3361 }
3362 new_domain[cred->num_domain++] = val;
3363 cred->domain = new_domain;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003364 return 0;
3365 }
3366
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003367 if (os_strcmp(var, "phase1") == 0) {
3368 os_free(cred->phase1);
3369 cred->phase1 = val;
3370 return 0;
3371 }
3372
3373 if (os_strcmp(var, "phase2") == 0) {
3374 os_free(cred->phase2);
3375 cred->phase2 = val;
3376 return 0;
3377 }
3378
3379 if (os_strcmp(var, "roaming_consortium") == 0) {
3380 if (len < 3 || len > sizeof(cred->roaming_consortium)) {
3381 wpa_printf(MSG_ERROR, "Line %d: invalid "
3382 "roaming_consortium length %d (3..15 "
3383 "expected)", line, (int) len);
3384 os_free(val);
3385 return -1;
3386 }
3387 os_memcpy(cred->roaming_consortium, val, len);
3388 cred->roaming_consortium_len = len;
3389 os_free(val);
3390 return 0;
3391 }
3392
Dmitry Shmidt051af732013-10-22 13:52:46 -07003393 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3394 if (len < 3 || len > sizeof(cred->required_roaming_consortium))
3395 {
3396 wpa_printf(MSG_ERROR, "Line %d: invalid "
3397 "required_roaming_consortium length %d "
3398 "(3..15 expected)", line, (int) len);
3399 os_free(val);
3400 return -1;
3401 }
3402 os_memcpy(cred->required_roaming_consortium, val, len);
3403 cred->required_roaming_consortium_len = len;
3404 os_free(val);
3405 return 0;
3406 }
3407
Roshan Pius3a1667e2018-07-03 15:17:14 -07003408 if (os_strcmp(var, "roaming_consortiums") == 0) {
3409 res = wpa_config_set_cred_roaming_consortiums(cred, val);
3410 if (res < 0)
3411 wpa_printf(MSG_ERROR,
3412 "Line %d: invalid roaming_consortiums",
3413 line);
3414 os_free(val);
3415 return res;
3416 }
3417
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003418 if (os_strcmp(var, "excluded_ssid") == 0) {
3419 struct excluded_ssid *e;
3420
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07003421 if (len > SSID_MAX_LEN) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003422 wpa_printf(MSG_ERROR, "Line %d: invalid "
3423 "excluded_ssid length %d", line, (int) len);
3424 os_free(val);
3425 return -1;
3426 }
3427
3428 e = os_realloc_array(cred->excluded_ssid,
3429 cred->num_excluded_ssid + 1,
3430 sizeof(struct excluded_ssid));
3431 if (e == NULL) {
3432 os_free(val);
3433 return -1;
3434 }
3435 cred->excluded_ssid = e;
3436
3437 e = &cred->excluded_ssid[cred->num_excluded_ssid++];
3438 os_memcpy(e->ssid, val, len);
3439 e->ssid_len = len;
3440
3441 os_free(val);
3442
3443 return 0;
3444 }
3445
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003446 if (os_strcmp(var, "roaming_partner") == 0) {
3447 struct roaming_partner *p;
3448 char *pos;
3449
3450 p = os_realloc_array(cred->roaming_partner,
3451 cred->num_roaming_partner + 1,
3452 sizeof(struct roaming_partner));
3453 if (p == NULL) {
3454 os_free(val);
3455 return -1;
3456 }
3457 cred->roaming_partner = p;
3458
3459 p = &cred->roaming_partner[cred->num_roaming_partner];
3460
3461 pos = os_strchr(val, ',');
3462 if (pos == NULL) {
3463 os_free(val);
3464 return -1;
3465 }
3466 *pos++ = '\0';
3467 if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
3468 os_free(val);
3469 return -1;
3470 }
3471 os_memcpy(p->fqdn, val, pos - val);
3472
3473 p->exact_match = atoi(pos);
3474
3475 pos = os_strchr(pos, ',');
3476 if (pos == NULL) {
3477 os_free(val);
3478 return -1;
3479 }
3480 *pos++ = '\0';
3481
3482 p->priority = atoi(pos);
3483
3484 pos = os_strchr(pos, ',');
3485 if (pos == NULL) {
3486 os_free(val);
3487 return -1;
3488 }
3489 *pos++ = '\0';
3490
3491 if (os_strlen(pos) >= sizeof(p->country)) {
3492 os_free(val);
3493 return -1;
3494 }
3495 os_memcpy(p->country, pos, os_strlen(pos) + 1);
3496
3497 cred->num_roaming_partner++;
3498 os_free(val);
3499
3500 return 0;
3501 }
3502
3503 if (os_strcmp(var, "provisioning_sp") == 0) {
3504 os_free(cred->provisioning_sp);
3505 cred->provisioning_sp = val;
3506 return 0;
3507 }
3508
Dmitry Shmidt04949592012-07-19 12:16:46 -07003509 if (line) {
3510 wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
3511 line, var);
3512 }
3513
3514 os_free(val);
3515
3516 return -1;
3517}
3518
3519
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003520static char * alloc_int_str(int val)
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003521{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003522 const unsigned int bufsize = 20;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003523 char *buf;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003524 int res;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003525
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003526 buf = os_malloc(bufsize);
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003527 if (buf == NULL)
3528 return NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003529 res = os_snprintf(buf, bufsize, "%d", val);
3530 if (os_snprintf_error(bufsize, res)) {
3531 os_free(buf);
3532 buf = NULL;
3533 }
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003534 return buf;
3535}
3536
3537
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003538static char * alloc_strdup(const char *str)
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003539{
3540 if (str == NULL)
3541 return NULL;
3542 return os_strdup(str);
3543}
3544
3545
3546char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var)
3547{
3548 if (os_strcmp(var, "temporary") == 0)
3549 return alloc_int_str(cred->temporary);
3550
3551 if (os_strcmp(var, "priority") == 0)
3552 return alloc_int_str(cred->priority);
3553
3554 if (os_strcmp(var, "sp_priority") == 0)
3555 return alloc_int_str(cred->sp_priority);
3556
3557 if (os_strcmp(var, "pcsc") == 0)
3558 return alloc_int_str(cred->pcsc);
3559
3560 if (os_strcmp(var, "eap") == 0) {
3561 if (!cred->eap_method)
3562 return NULL;
3563 return alloc_strdup(eap_get_name(cred->eap_method[0].vendor,
3564 cred->eap_method[0].method));
3565 }
3566
3567 if (os_strcmp(var, "update_identifier") == 0)
3568 return alloc_int_str(cred->update_identifier);
3569
3570 if (os_strcmp(var, "min_dl_bandwidth_home") == 0)
3571 return alloc_int_str(cred->min_dl_bandwidth_home);
3572
3573 if (os_strcmp(var, "min_ul_bandwidth_home") == 0)
3574 return alloc_int_str(cred->min_ul_bandwidth_home);
3575
3576 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0)
3577 return alloc_int_str(cred->min_dl_bandwidth_roaming);
3578
3579 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0)
3580 return alloc_int_str(cred->min_ul_bandwidth_roaming);
3581
3582 if (os_strcmp(var, "max_bss_load") == 0)
3583 return alloc_int_str(cred->max_bss_load);
3584
3585 if (os_strcmp(var, "req_conn_capab") == 0) {
3586 unsigned int i;
3587 char *buf, *end, *pos;
3588 int ret;
3589
3590 if (!cred->num_req_conn_capab)
3591 return NULL;
3592
3593 buf = os_malloc(4000);
3594 if (buf == NULL)
3595 return NULL;
3596 pos = buf;
3597 end = pos + 4000;
3598 for (i = 0; i < cred->num_req_conn_capab; i++) {
3599 int *ports;
3600
3601 ret = os_snprintf(pos, end - pos, "%s%u",
3602 i > 0 ? "\n" : "",
3603 cred->req_conn_capab_proto[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003604 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003605 return buf;
3606 pos += ret;
3607
3608 ports = cred->req_conn_capab_port[i];
3609 if (ports) {
3610 int j;
3611 for (j = 0; ports[j] != -1; j++) {
3612 ret = os_snprintf(pos, end - pos,
3613 "%s%d",
3614 j > 0 ? "," : ":",
3615 ports[j]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003616 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003617 return buf;
3618 pos += ret;
3619 }
3620 }
3621 }
3622
3623 return buf;
3624 }
3625
3626 if (os_strcmp(var, "ocsp") == 0)
3627 return alloc_int_str(cred->ocsp);
3628
3629 if (os_strcmp(var, "realm") == 0)
3630 return alloc_strdup(cred->realm);
3631
3632 if (os_strcmp(var, "username") == 0)
3633 return alloc_strdup(cred->username);
3634
3635 if (os_strcmp(var, "password") == 0) {
3636 if (!cred->password)
3637 return NULL;
3638 return alloc_strdup("*");
3639 }
3640
3641 if (os_strcmp(var, "ca_cert") == 0)
3642 return alloc_strdup(cred->ca_cert);
3643
3644 if (os_strcmp(var, "client_cert") == 0)
3645 return alloc_strdup(cred->client_cert);
3646
3647 if (os_strcmp(var, "private_key") == 0)
3648 return alloc_strdup(cred->private_key);
3649
3650 if (os_strcmp(var, "private_key_passwd") == 0) {
3651 if (!cred->private_key_passwd)
3652 return NULL;
3653 return alloc_strdup("*");
3654 }
3655
3656 if (os_strcmp(var, "imsi") == 0)
3657 return alloc_strdup(cred->imsi);
3658
3659 if (os_strcmp(var, "milenage") == 0) {
3660 if (!(cred->milenage))
3661 return NULL;
3662 return alloc_strdup("*");
3663 }
3664
3665 if (os_strcmp(var, "domain_suffix_match") == 0)
3666 return alloc_strdup(cred->domain_suffix_match);
3667
3668 if (os_strcmp(var, "domain") == 0) {
3669 unsigned int i;
3670 char *buf, *end, *pos;
3671 int ret;
3672
3673 if (!cred->num_domain)
3674 return NULL;
3675
3676 buf = os_malloc(4000);
3677 if (buf == NULL)
3678 return NULL;
3679 pos = buf;
3680 end = pos + 4000;
3681
3682 for (i = 0; i < cred->num_domain; i++) {
3683 ret = os_snprintf(pos, end - pos, "%s%s",
3684 i > 0 ? "\n" : "", cred->domain[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003685 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003686 return buf;
3687 pos += ret;
3688 }
3689
3690 return buf;
3691 }
3692
3693 if (os_strcmp(var, "phase1") == 0)
3694 return alloc_strdup(cred->phase1);
3695
3696 if (os_strcmp(var, "phase2") == 0)
3697 return alloc_strdup(cred->phase2);
3698
3699 if (os_strcmp(var, "roaming_consortium") == 0) {
3700 size_t buflen;
3701 char *buf;
3702
3703 if (!cred->roaming_consortium_len)
3704 return NULL;
3705 buflen = cred->roaming_consortium_len * 2 + 1;
3706 buf = os_malloc(buflen);
3707 if (buf == NULL)
3708 return NULL;
3709 wpa_snprintf_hex(buf, buflen, cred->roaming_consortium,
3710 cred->roaming_consortium_len);
3711 return buf;
3712 }
3713
3714 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3715 size_t buflen;
3716 char *buf;
3717
3718 if (!cred->required_roaming_consortium_len)
3719 return NULL;
3720 buflen = cred->required_roaming_consortium_len * 2 + 1;
3721 buf = os_malloc(buflen);
3722 if (buf == NULL)
3723 return NULL;
3724 wpa_snprintf_hex(buf, buflen, cred->required_roaming_consortium,
3725 cred->required_roaming_consortium_len);
3726 return buf;
3727 }
3728
Roshan Pius3a1667e2018-07-03 15:17:14 -07003729 if (os_strcmp(var, "roaming_consortiums") == 0) {
3730 size_t buflen;
3731 char *buf, *pos;
3732 size_t i;
3733
3734 if (!cred->num_roaming_consortiums)
3735 return NULL;
3736 buflen = cred->num_roaming_consortiums *
3737 MAX_ROAMING_CONS_OI_LEN * 2 + 1;
3738 buf = os_malloc(buflen);
3739 if (!buf)
3740 return NULL;
3741 pos = buf;
3742 for (i = 0; i < cred->num_roaming_consortiums; i++) {
3743 if (i > 0)
3744 *pos++ = ',';
3745 pos += wpa_snprintf_hex(
3746 pos, buf + buflen - pos,
3747 cred->roaming_consortiums[i],
3748 cred->roaming_consortiums_len[i]);
3749 }
3750 *pos = '\0';
3751 return buf;
3752 }
3753
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003754 if (os_strcmp(var, "excluded_ssid") == 0) {
3755 unsigned int i;
3756 char *buf, *end, *pos;
3757
3758 if (!cred->num_excluded_ssid)
3759 return NULL;
3760
3761 buf = os_malloc(4000);
3762 if (buf == NULL)
3763 return NULL;
3764 pos = buf;
3765 end = pos + 4000;
3766
3767 for (i = 0; i < cred->num_excluded_ssid; i++) {
3768 struct excluded_ssid *e;
3769 int ret;
3770
3771 e = &cred->excluded_ssid[i];
3772 ret = os_snprintf(pos, end - pos, "%s%s",
3773 i > 0 ? "\n" : "",
3774 wpa_ssid_txt(e->ssid, e->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003775 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003776 return buf;
3777 pos += ret;
3778 }
3779
3780 return buf;
3781 }
3782
3783 if (os_strcmp(var, "roaming_partner") == 0) {
3784 unsigned int i;
3785 char *buf, *end, *pos;
3786
3787 if (!cred->num_roaming_partner)
3788 return NULL;
3789
3790 buf = os_malloc(4000);
3791 if (buf == NULL)
3792 return NULL;
3793 pos = buf;
3794 end = pos + 4000;
3795
3796 for (i = 0; i < cred->num_roaming_partner; i++) {
3797 struct roaming_partner *p;
3798 int ret;
3799
3800 p = &cred->roaming_partner[i];
3801 ret = os_snprintf(pos, end - pos, "%s%s,%d,%u,%s",
3802 i > 0 ? "\n" : "",
3803 p->fqdn, p->exact_match, p->priority,
3804 p->country);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003805 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003806 return buf;
3807 pos += ret;
3808 }
3809
3810 return buf;
3811 }
3812
3813 if (os_strcmp(var, "provisioning_sp") == 0)
3814 return alloc_strdup(cred->provisioning_sp);
3815
3816 return NULL;
3817}
3818
3819
Dmitry Shmidt04949592012-07-19 12:16:46 -07003820struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
3821{
3822 struct wpa_cred *cred;
3823
3824 cred = config->cred;
3825 while (cred) {
3826 if (id == cred->id)
3827 break;
3828 cred = cred->next;
3829 }
3830
3831 return cred;
3832}
3833
3834
3835struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
3836{
3837 int id;
3838 struct wpa_cred *cred, *last = NULL;
3839
3840 id = -1;
3841 cred = config->cred;
3842 while (cred) {
3843 if (cred->id > id)
3844 id = cred->id;
3845 last = cred;
3846 cred = cred->next;
3847 }
3848 id++;
3849
3850 cred = os_zalloc(sizeof(*cred));
3851 if (cred == NULL)
3852 return NULL;
3853 cred->id = id;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07003854 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003855 if (last)
3856 last->next = cred;
3857 else
3858 config->cred = cred;
3859
3860 return cred;
3861}
3862
3863
3864int wpa_config_remove_cred(struct wpa_config *config, int id)
3865{
3866 struct wpa_cred *cred, *prev = NULL;
3867
3868 cred = config->cred;
3869 while (cred) {
3870 if (id == cred->id)
3871 break;
3872 prev = cred;
3873 cred = cred->next;
3874 }
3875
3876 if (cred == NULL)
3877 return -1;
3878
3879 if (prev)
3880 prev->next = cred->next;
3881 else
3882 config->cred = cred->next;
3883
3884 wpa_config_free_cred(cred);
3885 return 0;
3886}
3887
3888
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003889#ifndef CONFIG_NO_CONFIG_BLOBS
3890/**
3891 * wpa_config_get_blob - Get a named configuration blob
3892 * @config: Configuration data from wpa_config_read()
3893 * @name: Name of the blob
3894 * Returns: Pointer to blob data or %NULL if not found
3895 */
3896const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
3897 const char *name)
3898{
3899 struct wpa_config_blob *blob = config->blobs;
3900
3901 while (blob) {
3902 if (os_strcmp(blob->name, name) == 0)
3903 return blob;
3904 blob = blob->next;
3905 }
3906 return NULL;
3907}
3908
3909
3910/**
3911 * wpa_config_set_blob - Set or add a named configuration blob
3912 * @config: Configuration data from wpa_config_read()
3913 * @blob: New value for the blob
3914 *
3915 * Adds a new configuration blob or replaces the current value of an existing
3916 * blob.
3917 */
3918void wpa_config_set_blob(struct wpa_config *config,
3919 struct wpa_config_blob *blob)
3920{
3921 wpa_config_remove_blob(config, blob->name);
3922 blob->next = config->blobs;
3923 config->blobs = blob;
3924}
3925
3926
3927/**
3928 * wpa_config_free_blob - Free blob data
3929 * @blob: Pointer to blob to be freed
3930 */
3931void wpa_config_free_blob(struct wpa_config_blob *blob)
3932{
3933 if (blob) {
3934 os_free(blob->name);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003935 bin_clear_free(blob->data, blob->len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003936 os_free(blob);
3937 }
3938}
3939
3940
3941/**
3942 * wpa_config_remove_blob - Remove a named configuration blob
3943 * @config: Configuration data from wpa_config_read()
3944 * @name: Name of the blob to remove
3945 * Returns: 0 if blob was removed or -1 if blob was not found
3946 */
3947int wpa_config_remove_blob(struct wpa_config *config, const char *name)
3948{
3949 struct wpa_config_blob *pos = config->blobs, *prev = NULL;
3950
3951 while (pos) {
3952 if (os_strcmp(pos->name, name) == 0) {
3953 if (prev)
3954 prev->next = pos->next;
3955 else
3956 config->blobs = pos->next;
3957 wpa_config_free_blob(pos);
3958 return 0;
3959 }
3960 prev = pos;
3961 pos = pos->next;
3962 }
3963
3964 return -1;
3965}
3966#endif /* CONFIG_NO_CONFIG_BLOBS */
3967
3968
3969/**
3970 * wpa_config_alloc_empty - Allocate an empty configuration
3971 * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
3972 * socket
3973 * @driver_param: Driver parameters
3974 * Returns: Pointer to allocated configuration data or %NULL on failure
3975 */
3976struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
3977 const char *driver_param)
3978{
3979 struct wpa_config *config;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003980 const int aCWmin = 4, aCWmax = 10;
3981 const struct hostapd_wmm_ac_params ac_bk =
3982 { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
3983 const struct hostapd_wmm_ac_params ac_be =
3984 { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
3985 const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
3986 { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
3987 const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
3988 { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003989
3990 config = os_zalloc(sizeof(*config));
3991 if (config == NULL)
3992 return NULL;
3993 config->eapol_version = DEFAULT_EAPOL_VERSION;
3994 config->ap_scan = DEFAULT_AP_SCAN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003995 config->user_mpm = DEFAULT_USER_MPM;
3996 config->max_peer_links = DEFAULT_MAX_PEER_LINKS;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08003997 config->mesh_max_inactivity = DEFAULT_MESH_MAX_INACTIVITY;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003998 config->dot11RSNASAERetransPeriod =
3999 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004000 config->fast_reauth = DEFAULT_FAST_REAUTH;
4001 config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
4002 config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004003 config->p2p_go_freq_change_policy = DEFAULT_P2P_GO_FREQ_MOVE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004004 config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004005 config->p2p_optimize_listen_chan = DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004006 config->p2p_go_ctwindow = DEFAULT_P2P_GO_CTWINDOW;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004007 config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
4008 config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
4009 config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
4010 config->max_num_sta = DEFAULT_MAX_NUM_STA;
Roshan Pius3a1667e2018-07-03 15:17:14 -07004011 config->ap_isolate = DEFAULT_AP_ISOLATE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004012 config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
Dmitry Shmidtea69e842013-05-13 14:52:28 -07004013 config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004014 config->wmm_ac_params[0] = ac_be;
4015 config->wmm_ac_params[1] = ac_bk;
4016 config->wmm_ac_params[2] = ac_vi;
4017 config->wmm_ac_params[3] = ac_vo;
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07004018 config->p2p_search_delay = DEFAULT_P2P_SEARCH_DELAY;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004019 config->rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004020 config->key_mgmt_offload = DEFAULT_KEY_MGMT_OFFLOAD;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08004021 config->cert_in_cb = DEFAULT_CERT_IN_CB;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004022 config->wpa_rsc_relaxation = DEFAULT_WPA_RSC_RELAXATION;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004023
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004024#ifdef CONFIG_MBO
4025 config->mbo_cell_capa = DEFAULT_MBO_CELL_CAPA;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004026 config->disassoc_imminent_rssi_threshold =
4027 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD;
4028 config->oce = DEFAULT_OCE_SUPPORT;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004029#endif /* CONFIG_MBO */
4030
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004031 if (ctrl_interface)
4032 config->ctrl_interface = os_strdup(ctrl_interface);
4033 if (driver_param)
4034 config->driver_param = os_strdup(driver_param);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08004035 config->gas_rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004036
4037 return config;
4038}
4039
4040
4041#ifndef CONFIG_NO_STDOUT_DEBUG
4042/**
4043 * wpa_config_debug_dump_networks - Debug dump of configured networks
4044 * @config: Configuration data from wpa_config_read()
4045 */
4046void wpa_config_debug_dump_networks(struct wpa_config *config)
4047{
4048 int prio;
4049 struct wpa_ssid *ssid;
4050
4051 for (prio = 0; prio < config->num_prio; prio++) {
4052 ssid = config->pssid[prio];
4053 wpa_printf(MSG_DEBUG, "Priority group %d",
4054 ssid->priority);
4055 while (ssid) {
4056 wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
4057 ssid->id,
4058 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
4059 ssid = ssid->pnext;
4060 }
4061 }
4062}
4063#endif /* CONFIG_NO_STDOUT_DEBUG */
4064
4065
4066struct global_parse_data {
4067 char *name;
4068 int (*parser)(const struct global_parse_data *data,
4069 struct wpa_config *config, int line, const char *value);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004070 int (*get)(const char *name, struct wpa_config *config, long offset,
4071 char *buf, size_t buflen, int pretty_print);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004072 void *param1, *param2, *param3;
4073 unsigned int changed_flag;
4074};
4075
4076
4077static int wpa_global_config_parse_int(const struct global_parse_data *data,
4078 struct wpa_config *config, int line,
4079 const char *pos)
4080{
Dmitry Shmidt2f023192013-03-12 12:44:17 -07004081 int val, *dst;
4082 char *end;
4083
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004084 dst = (int *) (((u8 *) config) + (long) data->param1);
Dmitry Shmidt2f023192013-03-12 12:44:17 -07004085 val = strtol(pos, &end, 0);
4086 if (*end) {
4087 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
4088 line, pos);
4089 return -1;
4090 }
4091 *dst = val;
4092
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004093 wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
4094
4095 if (data->param2 && *dst < (long) data->param2) {
4096 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
4097 "min_value=%ld)", line, data->name, *dst,
4098 (long) data->param2);
4099 *dst = (long) data->param2;
4100 return -1;
4101 }
4102
4103 if (data->param3 && *dst > (long) data->param3) {
4104 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
4105 "max_value=%ld)", line, data->name, *dst,
4106 (long) data->param3);
4107 *dst = (long) data->param3;
4108 return -1;
4109 }
4110
4111 return 0;
4112}
4113
4114
4115static int wpa_global_config_parse_str(const struct global_parse_data *data,
4116 struct wpa_config *config, int line,
4117 const char *pos)
4118{
4119 size_t len;
4120 char **dst, *tmp;
4121
4122 len = os_strlen(pos);
4123 if (data->param2 && len < (size_t) data->param2) {
4124 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
4125 "min_len=%ld)", line, data->name,
4126 (unsigned long) len, (long) data->param2);
4127 return -1;
4128 }
4129
4130 if (data->param3 && len > (size_t) data->param3) {
4131 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
4132 "max_len=%ld)", line, data->name,
4133 (unsigned long) len, (long) data->param3);
4134 return -1;
4135 }
4136
Dmitry Shmidt849734c2016-05-27 09:59:01 -07004137 if (has_newline(pos)) {
4138 wpa_printf(MSG_ERROR, "Line %d: invalid %s value with newline",
4139 line, data->name);
4140 return -1;
4141 }
4142
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004143 tmp = os_strdup(pos);
4144 if (tmp == NULL)
4145 return -1;
4146
4147 dst = (char **) (((u8 *) config) + (long) data->param1);
4148 os_free(*dst);
4149 *dst = tmp;
4150 wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
4151
4152 return 0;
4153}
4154
4155
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004156static int wpa_config_process_bgscan(const struct global_parse_data *data,
4157 struct wpa_config *config, int line,
4158 const char *pos)
4159{
4160 size_t len;
4161 char *tmp;
Dmitry Shmidt97672262014-02-03 13:02:54 -08004162 int res;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004163
4164 tmp = wpa_config_parse_string(pos, &len);
4165 if (tmp == NULL) {
4166 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
4167 line, data->name);
4168 return -1;
4169 }
4170
Dmitry Shmidt97672262014-02-03 13:02:54 -08004171 res = wpa_global_config_parse_str(data, config, line, tmp);
4172 os_free(tmp);
4173 return res;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004174}
4175
4176
Dmitry Shmidt04949592012-07-19 12:16:46 -07004177static int wpa_global_config_parse_bin(const struct global_parse_data *data,
4178 struct wpa_config *config, int line,
4179 const char *pos)
4180{
Dmitry Shmidt04949592012-07-19 12:16:46 -07004181 struct wpabuf **dst, *tmp;
4182
Dmitry Shmidt849734c2016-05-27 09:59:01 -07004183 tmp = wpabuf_parse_bin(pos);
4184 if (!tmp)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004185 return -1;
4186
Dmitry Shmidt04949592012-07-19 12:16:46 -07004187 dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
4188 wpabuf_free(*dst);
4189 *dst = tmp;
4190 wpa_printf(MSG_DEBUG, "%s", data->name);
4191
4192 return 0;
4193}
4194
4195
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004196static int wpa_config_process_freq_list(const struct global_parse_data *data,
4197 struct wpa_config *config, int line,
4198 const char *value)
4199{
4200 int *freqs;
4201
4202 freqs = wpa_config_parse_int_array(value);
4203 if (freqs == NULL)
4204 return -1;
Dmitry Shmidt56052862013-10-04 10:23:25 -07004205 if (freqs[0] == 0) {
4206 os_free(freqs);
4207 freqs = NULL;
4208 }
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004209 os_free(config->freq_list);
4210 config->freq_list = freqs;
4211 return 0;
4212}
4213
4214
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004215#ifdef CONFIG_P2P
4216static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
4217 struct wpa_config *config, int line,
4218 const char *pos)
4219{
4220 u32 *dst;
4221 struct hostapd_ip_addr addr;
4222
4223 if (hostapd_parse_ip_addr(pos, &addr) < 0)
4224 return -1;
4225 if (addr.af != AF_INET)
4226 return -1;
4227
4228 dst = (u32 *) (((u8 *) config) + (long) data->param1);
4229 os_memcpy(dst, &addr.u.v4.s_addr, 4);
4230 wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
4231 WPA_GET_BE32((u8 *) dst));
4232
4233 return 0;
4234}
4235#endif /* CONFIG_P2P */
4236
4237
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004238static int wpa_config_process_country(const struct global_parse_data *data,
4239 struct wpa_config *config, int line,
4240 const char *pos)
4241{
4242 if (!pos[0] || !pos[1]) {
4243 wpa_printf(MSG_DEBUG, "Invalid country set");
4244 return -1;
4245 }
4246 config->country[0] = pos[0];
4247 config->country[1] = pos[1];
4248 wpa_printf(MSG_DEBUG, "country='%c%c'",
4249 config->country[0], config->country[1]);
4250 return 0;
4251}
4252
4253
4254static int wpa_config_process_load_dynamic_eap(
4255 const struct global_parse_data *data, struct wpa_config *config,
4256 int line, const char *so)
4257{
4258 int ret;
4259 wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
4260 ret = eap_peer_method_load(so);
4261 if (ret == -2) {
4262 wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
4263 "reloading.");
4264 } else if (ret) {
4265 wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
4266 "method '%s'.", line, so);
4267 return -1;
4268 }
4269
4270 return 0;
4271}
4272
4273
4274#ifdef CONFIG_WPS
4275
4276static int wpa_config_process_uuid(const struct global_parse_data *data,
4277 struct wpa_config *config, int line,
4278 const char *pos)
4279{
4280 char buf[40];
4281 if (uuid_str2bin(pos, config->uuid)) {
4282 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
4283 return -1;
4284 }
4285 uuid_bin2str(config->uuid, buf, sizeof(buf));
4286 wpa_printf(MSG_DEBUG, "uuid=%s", buf);
4287 return 0;
4288}
4289
4290
4291static int wpa_config_process_device_type(
4292 const struct global_parse_data *data,
4293 struct wpa_config *config, int line, const char *pos)
4294{
4295 return wps_dev_type_str2bin(pos, config->device_type);
4296}
4297
4298
4299static int wpa_config_process_os_version(const struct global_parse_data *data,
4300 struct wpa_config *config, int line,
4301 const char *pos)
4302{
4303 if (hexstr2bin(pos, config->os_version, 4)) {
4304 wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
4305 return -1;
4306 }
4307 wpa_printf(MSG_DEBUG, "os_version=%08x",
4308 WPA_GET_BE32(config->os_version));
4309 return 0;
4310}
4311
Dmitry Shmidt04949592012-07-19 12:16:46 -07004312
4313static int wpa_config_process_wps_vendor_ext_m1(
4314 const struct global_parse_data *data,
4315 struct wpa_config *config, int line, const char *pos)
4316{
4317 struct wpabuf *tmp;
4318 int len = os_strlen(pos) / 2;
4319 u8 *p;
4320
4321 if (!len) {
4322 wpa_printf(MSG_ERROR, "Line %d: "
4323 "invalid wps_vendor_ext_m1", line);
4324 return -1;
4325 }
4326
4327 tmp = wpabuf_alloc(len);
4328 if (tmp) {
4329 p = wpabuf_put(tmp, len);
4330
4331 if (hexstr2bin(pos, p, len)) {
4332 wpa_printf(MSG_ERROR, "Line %d: "
4333 "invalid wps_vendor_ext_m1", line);
4334 wpabuf_free(tmp);
4335 return -1;
4336 }
4337
4338 wpabuf_free(config->wps_vendor_ext_m1);
4339 config->wps_vendor_ext_m1 = tmp;
4340 } else {
4341 wpa_printf(MSG_ERROR, "Can not allocate "
4342 "memory for wps_vendor_ext_m1");
4343 return -1;
4344 }
4345
4346 return 0;
4347}
4348
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004349#endif /* CONFIG_WPS */
4350
4351#ifdef CONFIG_P2P
4352static int wpa_config_process_sec_device_type(
4353 const struct global_parse_data *data,
4354 struct wpa_config *config, int line, const char *pos)
4355{
4356 int idx;
4357
4358 if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
4359 wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
4360 "items", line);
4361 return -1;
4362 }
4363
4364 idx = config->num_sec_device_types;
4365
4366 if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
4367 return -1;
4368
4369 config->num_sec_device_types++;
4370 return 0;
4371}
Dmitry Shmidt04949592012-07-19 12:16:46 -07004372
4373
4374static int wpa_config_process_p2p_pref_chan(
4375 const struct global_parse_data *data,
4376 struct wpa_config *config, int line, const char *pos)
4377{
4378 struct p2p_channel *pref = NULL, *n;
4379 unsigned int num = 0;
4380 const char *pos2;
4381 u8 op_class, chan;
4382
4383 /* format: class:chan,class:chan,... */
4384
4385 while (*pos) {
4386 op_class = atoi(pos);
4387 pos2 = os_strchr(pos, ':');
4388 if (pos2 == NULL)
4389 goto fail;
4390 pos2++;
4391 chan = atoi(pos2);
4392
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004393 n = os_realloc_array(pref, num + 1,
4394 sizeof(struct p2p_channel));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004395 if (n == NULL)
4396 goto fail;
4397 pref = n;
4398 pref[num].op_class = op_class;
4399 pref[num].chan = chan;
4400 num++;
4401
4402 pos = os_strchr(pos2, ',');
4403 if (pos == NULL)
4404 break;
4405 pos++;
4406 }
4407
4408 os_free(config->p2p_pref_chan);
4409 config->p2p_pref_chan = pref;
4410 config->num_p2p_pref_chan = num;
4411 wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
4412 (u8 *) config->p2p_pref_chan,
4413 config->num_p2p_pref_chan * sizeof(struct p2p_channel));
4414
4415 return 0;
4416
4417fail:
4418 os_free(pref);
4419 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
4420 return -1;
4421}
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004422
4423
4424static int wpa_config_process_p2p_no_go_freq(
4425 const struct global_parse_data *data,
4426 struct wpa_config *config, int line, const char *pos)
4427{
4428 int ret;
4429
4430 ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
4431 if (ret < 0) {
4432 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
4433 return -1;
4434 }
4435
4436 wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
4437 config->p2p_no_go_freq.num);
4438
4439 return 0;
4440}
4441
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004442#endif /* CONFIG_P2P */
4443
4444
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004445static int wpa_config_process_hessid(
4446 const struct global_parse_data *data,
4447 struct wpa_config *config, int line, const char *pos)
4448{
4449 if (hwaddr_aton2(pos, config->hessid) < 0) {
4450 wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
4451 line, pos);
4452 return -1;
4453 }
4454
4455 return 0;
4456}
4457
4458
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004459static int wpa_config_process_sae_groups(
4460 const struct global_parse_data *data,
4461 struct wpa_config *config, int line, const char *pos)
4462{
4463 int *groups = wpa_config_parse_int_array(pos);
4464 if (groups == NULL) {
4465 wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
4466 line, pos);
4467 return -1;
4468 }
4469
4470 os_free(config->sae_groups);
4471 config->sae_groups = groups;
4472
4473 return 0;
4474}
4475
4476
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07004477static int wpa_config_process_ap_vendor_elements(
4478 const struct global_parse_data *data,
4479 struct wpa_config *config, int line, const char *pos)
4480{
4481 struct wpabuf *tmp;
4482 int len = os_strlen(pos) / 2;
4483 u8 *p;
4484
4485 if (!len) {
4486 wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
4487 line);
4488 return -1;
4489 }
4490
4491 tmp = wpabuf_alloc(len);
4492 if (tmp) {
4493 p = wpabuf_put(tmp, len);
4494
4495 if (hexstr2bin(pos, p, len)) {
4496 wpa_printf(MSG_ERROR, "Line %d: invalid "
4497 "ap_vendor_elements", line);
4498 wpabuf_free(tmp);
4499 return -1;
4500 }
4501
4502 wpabuf_free(config->ap_vendor_elements);
4503 config->ap_vendor_elements = tmp;
4504 } else {
4505 wpa_printf(MSG_ERROR, "Cannot allocate memory for "
4506 "ap_vendor_elements");
4507 return -1;
4508 }
4509
4510 return 0;
4511}
4512
4513
Dmitry Shmidt56052862013-10-04 10:23:25 -07004514#ifdef CONFIG_CTRL_IFACE
4515static int wpa_config_process_no_ctrl_interface(
4516 const struct global_parse_data *data,
4517 struct wpa_config *config, int line, const char *pos)
4518{
4519 wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
4520 os_free(config->ctrl_interface);
4521 config->ctrl_interface = NULL;
4522 return 0;
4523}
4524#endif /* CONFIG_CTRL_IFACE */
4525
4526
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004527static int wpa_config_get_int(const char *name, struct wpa_config *config,
4528 long offset, char *buf, size_t buflen,
4529 int pretty_print)
4530{
4531 int *val = (int *) (((u8 *) config) + (long) offset);
4532
4533 if (pretty_print)
4534 return os_snprintf(buf, buflen, "%s=%d\n", name, *val);
4535 return os_snprintf(buf, buflen, "%d", *val);
4536}
4537
4538
4539static int wpa_config_get_str(const char *name, struct wpa_config *config,
4540 long offset, char *buf, size_t buflen,
4541 int pretty_print)
4542{
4543 char **val = (char **) (((u8 *) config) + (long) offset);
4544 int res;
4545
4546 if (pretty_print)
4547 res = os_snprintf(buf, buflen, "%s=%s\n", name,
4548 *val ? *val : "null");
4549 else if (!*val)
4550 return -1;
4551 else
4552 res = os_snprintf(buf, buflen, "%s", *val);
4553 if (os_snprintf_error(buflen, res))
4554 res = -1;
4555
4556 return res;
4557}
4558
4559
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07004560#ifdef CONFIG_P2P
4561static int wpa_config_get_ipv4(const char *name, struct wpa_config *config,
4562 long offset, char *buf, size_t buflen,
4563 int pretty_print)
4564{
4565 void *val = ((u8 *) config) + (long) offset;
4566 int res;
4567 char addr[INET_ADDRSTRLEN];
4568
4569 if (!val || !inet_ntop(AF_INET, val, addr, sizeof(addr)))
4570 return -1;
4571
4572 if (pretty_print)
4573 res = os_snprintf(buf, buflen, "%s=%s\n", name, addr);
4574 else
4575 res = os_snprintf(buf, buflen, "%s", addr);
4576
4577 if (os_snprintf_error(buflen, res))
4578 res = -1;
4579
4580 return res;
4581}
4582#endif /* CONFIG_P2P */
4583
4584
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004585#ifdef OFFSET
4586#undef OFFSET
4587#endif /* OFFSET */
4588/* OFFSET: Get offset of a variable within the wpa_config structure */
4589#define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
4590
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004591#define FUNC(f) #f, wpa_config_process_ ## f, NULL, OFFSET(f), NULL, NULL
4592#define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL, NULL
4593#define _INT(f) #f, wpa_global_config_parse_int, wpa_config_get_int, OFFSET(f)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004594#define INT(f) _INT(f), NULL, NULL
4595#define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004596#define _STR(f) #f, wpa_global_config_parse_str, wpa_config_get_str, OFFSET(f)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004597#define STR(f) _STR(f), NULL, NULL
4598#define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004599#define BIN(f) #f, wpa_global_config_parse_bin, NULL, OFFSET(f), NULL, NULL
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07004600#define IPV4(f) #f, wpa_global_config_parse_ipv4, wpa_config_get_ipv4, \
4601 OFFSET(f), NULL, NULL
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004602
4603static const struct global_parse_data global_fields[] = {
4604#ifdef CONFIG_CTRL_IFACE
4605 { STR(ctrl_interface), 0 },
Dmitry Shmidt56052862013-10-04 10:23:25 -07004606 { FUNC_NO_VAR(no_ctrl_interface), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004607 { STR(ctrl_interface_group), 0 } /* deprecated */,
4608#endif /* CONFIG_CTRL_IFACE */
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004609#ifdef CONFIG_MACSEC
4610 { INT_RANGE(eapol_version, 1, 3), 0 },
4611#else /* CONFIG_MACSEC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004612 { INT_RANGE(eapol_version, 1, 2), 0 },
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004613#endif /* CONFIG_MACSEC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004614 { INT(ap_scan), 0 },
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004615 { FUNC(bgscan), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004616#ifdef CONFIG_MESH
4617 { INT(user_mpm), 0 },
4618 { INT_RANGE(max_peer_links, 0, 255), 0 },
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08004619 { INT(mesh_max_inactivity), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004620 { INT(dot11RSNASAERetransPeriod), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004621#endif /* CONFIG_MESH */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004622 { INT(disable_scan_offload), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004623 { INT(fast_reauth), 0 },
4624 { STR(opensc_engine_path), 0 },
4625 { STR(pkcs11_engine_path), 0 },
4626 { STR(pkcs11_module_path), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004627 { STR(openssl_ciphers), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004628 { STR(pcsc_reader), 0 },
4629 { STR(pcsc_pin), 0 },
Dmitry Shmidt051af732013-10-22 13:52:46 -07004630 { INT(external_sim), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004631 { STR(driver_param), 0 },
4632 { INT(dot11RSNAConfigPMKLifetime), 0 },
4633 { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
4634 { INT(dot11RSNAConfigSATimeout), 0 },
4635#ifndef CONFIG_NO_CONFIG_WRITE
4636 { INT(update_config), 0 },
4637#endif /* CONFIG_NO_CONFIG_WRITE */
4638 { FUNC_NO_VAR(load_dynamic_eap), 0 },
4639#ifdef CONFIG_WPS
4640 { FUNC(uuid), CFG_CHANGED_UUID },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004641 { INT_RANGE(auto_uuid, 0, 1), 0 },
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07004642 { STR_RANGE(device_name, 0, WPS_DEV_NAME_MAX_LEN),
4643 CFG_CHANGED_DEVICE_NAME },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004644 { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
4645 { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
4646 { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
4647 { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
4648 { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
4649 { FUNC(os_version), CFG_CHANGED_OS_VERSION },
4650 { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
4651 { INT_RANGE(wps_cred_processing, 0, 2), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004652 { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004653#endif /* CONFIG_WPS */
4654#ifdef CONFIG_P2P
4655 { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004656 { INT(p2p_listen_reg_class), CFG_CHANGED_P2P_LISTEN_CHANNEL },
4657 { INT(p2p_listen_channel), CFG_CHANGED_P2P_LISTEN_CHANNEL },
Dmitry Shmidt56052862013-10-04 10:23:25 -07004658 { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
4659 { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004660 { INT_RANGE(p2p_go_intent, 0, 15), 0 },
4661 { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
4662 { INT_RANGE(persistent_reconnect, 0, 1), 0 },
4663 { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
4664 { INT(p2p_group_idle), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004665 { INT_RANGE(p2p_go_freq_change_policy, 0, P2P_GO_FREQ_MOVE_MAX), 0 },
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07004666 { INT_RANGE(p2p_passphrase_len, 8, 63),
4667 CFG_CHANGED_P2P_PASSPHRASE_LEN },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004668 { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004669 { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
4670 { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004671 { INT_RANGE(p2p_optimize_listen_chan, 0, 1), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004672 { INT(p2p_go_ht40), 0 },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004673 { INT(p2p_go_vht), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004674 { INT(p2p_disabled), 0 },
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004675 { INT_RANGE(p2p_go_ctwindow, 0, 127), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004676 { INT(p2p_no_group_iface), 0 },
Dmitry Shmidt700a1372013-03-15 14:14:44 -07004677 { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004678 { IPV4(ip_addr_go), 0 },
4679 { IPV4(ip_addr_mask), 0 },
4680 { IPV4(ip_addr_start), 0 },
4681 { IPV4(ip_addr_end), 0 },
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004682 { INT_RANGE(p2p_cli_probe, 0, 1), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004683#endif /* CONFIG_P2P */
4684 { FUNC(country), CFG_CHANGED_COUNTRY },
4685 { INT(bss_max_count), 0 },
4686 { INT(bss_expiration_age), 0 },
4687 { INT(bss_expiration_scan_count), 0 },
4688 { INT_RANGE(filter_ssids, 0, 1), 0 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004689 { INT_RANGE(filter_rssi, -100, 0), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004690 { INT(max_num_sta), 0 },
Roshan Pius3a1667e2018-07-03 15:17:14 -07004691 { INT_RANGE(ap_isolate, 0, 1), 0 },
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004692 { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004693#ifdef CONFIG_HS20
4694 { INT_RANGE(hs20, 0, 1), 0 },
4695#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004696 { INT_RANGE(interworking, 0, 1), 0 },
4697 { FUNC(hessid), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004698 { INT_RANGE(access_network_type, 0, 15), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004699 { INT_RANGE(go_interworking, 0, 1), 0 },
4700 { INT_RANGE(go_access_network_type, 0, 15), 0 },
4701 { INT_RANGE(go_internet, 0, 1), 0 },
4702 { INT_RANGE(go_venue_group, 0, 255), 0 },
4703 { INT_RANGE(go_venue_type, 0, 255), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004704 { INT_RANGE(pbc_in_m1, 0, 1), 0 },
4705 { STR(autoscan), 0 },
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004706 { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
4707 CFG_CHANGED_NFC_PASSWORD_TOKEN },
4708 { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4709 { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4710 { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004711 { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
4712 { INT(p2p_go_max_inactivity), 0 },
4713 { INT_RANGE(auto_interworking, 0, 1), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004714 { INT(okc), 0 },
4715 { INT(pmf), 0 },
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004716 { FUNC(sae_groups), 0 },
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004717 { INT(dtim_period), 0 },
4718 { INT(beacon_int), 0 },
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07004719 { FUNC(ap_vendor_elements), 0 },
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004720 { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004721 { FUNC(freq_list), 0 },
Dmitry Shmidtea69e842013-05-13 14:52:28 -07004722 { INT(scan_cur_freq), 0 },
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004723 { INT(sched_scan_interval), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004724 { INT(sched_scan_start_delay), 0 },
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08004725 { INT(tdls_external_control), 0},
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08004726 { STR(osu_dir), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004727 { STR(wowlan_triggers), CFG_CHANGED_WOWLAN_TRIGGERS },
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07004728 { INT(p2p_search_delay), 0},
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004729 { INT(mac_addr), 0 },
4730 { INT(rand_addr_lifetime), 0 },
4731 { INT(preassoc_mac_addr), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004732 { INT(key_mgmt_offload), 0},
Dmitry Shmidt807291d2015-01-27 13:40:23 -08004733 { INT(passive_scan), 0 },
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004734 { INT(reassoc_same_bss_optim), 0 },
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07004735 { INT(wps_priority), 0},
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004736#ifdef CONFIG_FST
4737 { STR_RANGE(fst_group_id, 1, FST_MAX_GROUP_ID_LEN), 0 },
4738 { INT_RANGE(fst_priority, 1, FST_MAX_PRIO_VALUE), 0 },
4739 { INT_RANGE(fst_llt, 1, FST_MAX_LLT_MS), 0 },
4740#endif /* CONFIG_FST */
Paul Stewart092955c2017-02-06 09:13:09 -08004741 { INT_RANGE(cert_in_cb, 0, 1), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004742 { INT_RANGE(wpa_rsc_relaxation, 0, 1), 0 },
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004743 { STR(sched_scan_plans), CFG_CHANGED_SCHED_SCAN_PLANS },
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004744#ifdef CONFIG_MBO
4745 { STR(non_pref_chan), 0 },
4746 { INT_RANGE(mbo_cell_capa, MBO_CELL_CAPA_AVAILABLE,
4747 MBO_CELL_CAPA_NOT_SUPPORTED), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004748 { INT_RANGE(disassoc_imminent_rssi_threshold, -120, 0), 0 },
4749 { INT_RANGE(oce, 0, 3), 0 },
4750#endif /* CONFIG_MBO */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07004751 { INT(gas_address3), 0 },
Dmitry Shmidt7d175302016-09-06 13:11:34 -07004752 { INT_RANGE(ftm_responder, 0, 1), 0 },
4753 { INT_RANGE(ftm_initiator, 0, 1), 0 },
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08004754 { INT(gas_rand_addr_lifetime), 0 },
4755 { INT_RANGE(gas_rand_mac_addr, 0, 2), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004756 { INT_RANGE(dpp_config_processing, 0, 2), 0 },
Jimmy Chenf887c7b2018-11-13 15:19:57 +08004757 { INT(p2p_device_random_mac_addr), 0 },
4758 { STR(p2p_device_persistent_mac_addr), 0 },
Jimmy Chen36c21992018-11-29 16:46:43 +08004759 { INT(p2p_interface_random_mac_addr), 0 },
xshud0ee72f2018-11-08 14:37:01 -08004760 { INT_RANGE(bss_no_flush_when_down, 0, 1), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004761};
4762
4763#undef FUNC
4764#undef _INT
4765#undef INT
4766#undef INT_RANGE
4767#undef _STR
4768#undef STR
4769#undef STR_RANGE
Dmitry Shmidt04949592012-07-19 12:16:46 -07004770#undef BIN
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004771#undef IPV4
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004772#define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004773
4774
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004775int wpa_config_dump_values(struct wpa_config *config, char *buf, size_t buflen)
4776{
4777 int result = 0;
4778 size_t i;
4779
4780 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4781 const struct global_parse_data *field = &global_fields[i];
4782 int tmp;
4783
4784 if (!field->get)
4785 continue;
4786
4787 tmp = field->get(field->name, config, (long) field->param1,
4788 buf, buflen, 1);
4789 if (tmp < 0)
4790 return -1;
4791 buf += tmp;
4792 buflen -= tmp;
4793 result += tmp;
4794 }
4795 return result;
4796}
4797
4798
4799int wpa_config_get_value(const char *name, struct wpa_config *config,
4800 char *buf, size_t buflen)
4801{
4802 size_t i;
4803
4804 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4805 const struct global_parse_data *field = &global_fields[i];
4806
4807 if (os_strcmp(name, field->name) != 0)
4808 continue;
4809 if (!field->get)
4810 break;
4811 return field->get(name, config, (long) field->param1,
4812 buf, buflen, 0);
4813 }
4814
4815 return -1;
4816}
4817
4818
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004819int wpa_config_get_num_global_field_names(void)
4820{
4821 return NUM_GLOBAL_FIELDS;
4822}
4823
4824
4825const char * wpa_config_get_global_field_name(unsigned int i, int *no_var)
4826{
4827 if (i >= NUM_GLOBAL_FIELDS)
4828 return NULL;
4829
4830 if (no_var)
4831 *no_var = !global_fields[i].param1;
4832 return global_fields[i].name;
4833}
4834
4835
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004836int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
4837{
4838 size_t i;
4839 int ret = 0;
4840
4841 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4842 const struct global_parse_data *field = &global_fields[i];
4843 size_t flen = os_strlen(field->name);
4844 if (os_strncmp(pos, field->name, flen) != 0 ||
4845 pos[flen] != '=')
4846 continue;
4847
4848 if (field->parser(field, config, line, pos + flen + 1)) {
4849 wpa_printf(MSG_ERROR, "Line %d: failed to "
4850 "parse '%s'.", line, pos);
4851 ret = -1;
4852 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004853 if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
4854 config->wps_nfc_pw_from_config = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004855 config->changed_parameters |= field->changed_flag;
4856 break;
4857 }
4858 if (i == NUM_GLOBAL_FIELDS) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004859#ifdef CONFIG_AP
4860 if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
4861 char *tmp = os_strchr(pos, '=');
4862 if (tmp == NULL) {
4863 if (line < 0)
4864 return -1;
4865 wpa_printf(MSG_ERROR, "Line %d: invalid line "
4866 "'%s'", line, pos);
4867 return -1;
4868 }
4869 *tmp++ = '\0';
4870 if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
4871 tmp)) {
4872 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
4873 "AC item", line);
4874 return -1;
4875 }
4876 }
4877#endif /* CONFIG_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004878 if (line < 0)
4879 return -1;
4880 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
4881 line, pos);
4882 ret = -1;
4883 }
4884
4885 return ret;
4886}