blob: dd7f6036c89aa594ae94761e5bf37d32a8d72000 [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 */
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08002640
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002641 os_free(config);
2642}
2643
2644
2645/**
2646 * wpa_config_foreach_network - Iterate over each configured network
2647 * @config: Configuration data from wpa_config_read()
2648 * @func: Callback function to process each network
2649 * @arg: Opaque argument to pass to callback function
2650 *
2651 * Iterate over the set of configured networks calling the specified
2652 * function for each item. We guard against callbacks removing the
2653 * supplied network.
2654 */
2655void wpa_config_foreach_network(struct wpa_config *config,
2656 void (*func)(void *, struct wpa_ssid *),
2657 void *arg)
2658{
2659 struct wpa_ssid *ssid, *next;
2660
2661 ssid = config->ssid;
2662 while (ssid) {
2663 next = ssid->next;
2664 func(arg, ssid);
2665 ssid = next;
2666 }
2667}
2668
2669
2670/**
2671 * wpa_config_get_network - Get configured network based on id
2672 * @config: Configuration data from wpa_config_read()
2673 * @id: Unique network id to search for
2674 * Returns: Network configuration or %NULL if not found
2675 */
2676struct wpa_ssid * wpa_config_get_network(struct wpa_config *config, int id)
2677{
2678 struct wpa_ssid *ssid;
2679
2680 ssid = config->ssid;
2681 while (ssid) {
2682 if (id == ssid->id)
2683 break;
2684 ssid = ssid->next;
2685 }
2686
2687 return ssid;
2688}
2689
2690
2691/**
2692 * wpa_config_add_network - Add a new network with empty configuration
2693 * @config: Configuration data from wpa_config_read()
2694 * Returns: The new network configuration or %NULL if operation failed
2695 */
2696struct wpa_ssid * wpa_config_add_network(struct wpa_config *config)
2697{
2698 int id;
2699 struct wpa_ssid *ssid, *last = NULL;
2700
2701 id = -1;
2702 ssid = config->ssid;
2703 while (ssid) {
2704 if (ssid->id > id)
2705 id = ssid->id;
2706 last = ssid;
2707 ssid = ssid->next;
2708 }
2709 id++;
2710
2711 ssid = os_zalloc(sizeof(*ssid));
2712 if (ssid == NULL)
2713 return NULL;
2714 ssid->id = id;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002715 dl_list_init(&ssid->psk_list);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002716 if (last)
2717 last->next = ssid;
2718 else
2719 config->ssid = ssid;
2720
2721 wpa_config_update_prio_list(config);
2722
2723 return ssid;
2724}
2725
2726
2727/**
2728 * wpa_config_remove_network - Remove a configured network based on id
2729 * @config: Configuration data from wpa_config_read()
2730 * @id: Unique network id to search for
2731 * Returns: 0 on success, or -1 if the network was not found
2732 */
2733int wpa_config_remove_network(struct wpa_config *config, int id)
2734{
2735 struct wpa_ssid *ssid, *prev = NULL;
2736
2737 ssid = config->ssid;
2738 while (ssid) {
2739 if (id == ssid->id)
2740 break;
2741 prev = ssid;
2742 ssid = ssid->next;
2743 }
2744
2745 if (ssid == NULL)
2746 return -1;
2747
2748 if (prev)
2749 prev->next = ssid->next;
2750 else
2751 config->ssid = ssid->next;
2752
2753 wpa_config_update_prio_list(config);
2754 wpa_config_free_ssid(ssid);
2755 return 0;
2756}
2757
2758
2759/**
2760 * wpa_config_set_network_defaults - Set network default values
2761 * @ssid: Pointer to network configuration data
2762 */
2763void wpa_config_set_network_defaults(struct wpa_ssid *ssid)
2764{
2765 ssid->proto = DEFAULT_PROTO;
2766 ssid->pairwise_cipher = DEFAULT_PAIRWISE;
2767 ssid->group_cipher = DEFAULT_GROUP;
2768 ssid->key_mgmt = DEFAULT_KEY_MGMT;
Dmitry Shmidt04949592012-07-19 12:16:46 -07002769 ssid->bg_scan_period = DEFAULT_BG_SCAN_PERIOD;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002770 ssid->ht = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002771#ifdef IEEE8021X_EAPOL
2772 ssid->eapol_flags = DEFAULT_EAPOL_FLAGS;
2773 ssid->eap_workaround = DEFAULT_EAP_WORKAROUND;
2774 ssid->eap.fragment_size = DEFAULT_FRAGMENT_SIZE;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07002775 ssid->eap.sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002776#endif /* IEEE8021X_EAPOL */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002777#ifdef CONFIG_MESH
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002778 ssid->dot11MeshMaxRetries = DEFAULT_MESH_MAX_RETRIES;
2779 ssid->dot11MeshRetryTimeout = DEFAULT_MESH_RETRY_TIMEOUT;
2780 ssid->dot11MeshConfirmTimeout = DEFAULT_MESH_CONFIRM_TIMEOUT;
2781 ssid->dot11MeshHoldingTimeout = DEFAULT_MESH_HOLDING_TIMEOUT;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002782 ssid->mesh_rssi_threshold = DEFAULT_MESH_RSSI_THRESHOLD;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002783#endif /* CONFIG_MESH */
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002784#ifdef CONFIG_HT_OVERRIDES
2785 ssid->disable_ht = DEFAULT_DISABLE_HT;
2786 ssid->disable_ht40 = DEFAULT_DISABLE_HT40;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08002787 ssid->disable_sgi = DEFAULT_DISABLE_SGI;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07002788 ssid->disable_ldpc = DEFAULT_DISABLE_LDPC;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002789 ssid->disable_max_amsdu = DEFAULT_DISABLE_MAX_AMSDU;
2790 ssid->ampdu_factor = DEFAULT_AMPDU_FACTOR;
2791 ssid->ampdu_density = DEFAULT_AMPDU_DENSITY;
2792#endif /* CONFIG_HT_OVERRIDES */
Dmitry Shmidt2f023192013-03-12 12:44:17 -07002793#ifdef CONFIG_VHT_OVERRIDES
2794 ssid->vht_rx_mcs_nss_1 = -1;
2795 ssid->vht_rx_mcs_nss_2 = -1;
2796 ssid->vht_rx_mcs_nss_3 = -1;
2797 ssid->vht_rx_mcs_nss_4 = -1;
2798 ssid->vht_rx_mcs_nss_5 = -1;
2799 ssid->vht_rx_mcs_nss_6 = -1;
2800 ssid->vht_rx_mcs_nss_7 = -1;
2801 ssid->vht_rx_mcs_nss_8 = -1;
2802 ssid->vht_tx_mcs_nss_1 = -1;
2803 ssid->vht_tx_mcs_nss_2 = -1;
2804 ssid->vht_tx_mcs_nss_3 = -1;
2805 ssid->vht_tx_mcs_nss_4 = -1;
2806 ssid->vht_tx_mcs_nss_5 = -1;
2807 ssid->vht_tx_mcs_nss_6 = -1;
2808 ssid->vht_tx_mcs_nss_7 = -1;
2809 ssid->vht_tx_mcs_nss_8 = -1;
2810#endif /* CONFIG_VHT_OVERRIDES */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002811 ssid->proactive_key_caching = -1;
2812#ifdef CONFIG_IEEE80211W
2813 ssid->ieee80211w = MGMT_FRAME_PROTECTION_DEFAULT;
2814#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt29333592017-01-09 12:27:11 -08002815#ifdef CONFIG_MACSEC
2816 ssid->mka_priority = DEFAULT_PRIO_NOT_KEY_SERVER;
2817#endif /* CONFIG_MACSEC */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07002818 ssid->mac_addr = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002819}
2820
2821
2822/**
2823 * wpa_config_set - Set a variable in network configuration
2824 * @ssid: Pointer to network configuration data
2825 * @var: Variable name, e.g., "ssid"
2826 * @value: Variable value
2827 * @line: Line number in configuration file or 0 if not used
Dmitry Shmidte4663042016-04-04 10:07:49 -07002828 * Returns: 0 on success with possible change in the value, 1 on success with
2829 * no change to previously configured value, or -1 on failure
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002830 *
2831 * This function can be used to set network configuration variables based on
2832 * both the configuration file and management interface input. The value
2833 * parameter must be in the same format as the text-based configuration file is
2834 * using. For example, strings are using double quotation marks.
2835 */
2836int wpa_config_set(struct wpa_ssid *ssid, const char *var, const char *value,
2837 int line)
2838{
2839 size_t i;
2840 int ret = 0;
2841
2842 if (ssid == NULL || var == NULL || value == NULL)
2843 return -1;
2844
2845 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2846 const struct parse_data *field = &ssid_fields[i];
2847 if (os_strcmp(var, field->name) != 0)
2848 continue;
2849
Dmitry Shmidte4663042016-04-04 10:07:49 -07002850 ret = field->parser(field, ssid, line, value);
2851 if (ret < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002852 if (line) {
2853 wpa_printf(MSG_ERROR, "Line %d: failed to "
2854 "parse %s '%s'.", line, var, value);
2855 }
2856 ret = -1;
2857 }
2858 break;
2859 }
2860 if (i == NUM_SSID_FIELDS) {
2861 if (line) {
2862 wpa_printf(MSG_ERROR, "Line %d: unknown network field "
2863 "'%s'.", line, var);
2864 }
2865 ret = -1;
2866 }
2867
2868 return ret;
2869}
2870
2871
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002872int wpa_config_set_quoted(struct wpa_ssid *ssid, const char *var,
2873 const char *value)
2874{
2875 size_t len;
2876 char *buf;
2877 int ret;
2878
2879 len = os_strlen(value);
2880 buf = os_malloc(len + 3);
2881 if (buf == NULL)
2882 return -1;
2883 buf[0] = '"';
2884 os_memcpy(buf + 1, value, len);
2885 buf[len + 1] = '"';
2886 buf[len + 2] = '\0';
2887 ret = wpa_config_set(ssid, var, buf, 0);
2888 os_free(buf);
2889 return ret;
2890}
2891
2892
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002893/**
2894 * wpa_config_get_all - Get all options from network configuration
2895 * @ssid: Pointer to network configuration data
2896 * @get_keys: Determines if keys/passwords will be included in returned list
2897 * (if they may be exported)
2898 * Returns: %NULL terminated list of all set keys and their values in the form
2899 * of [key1, val1, key2, val2, ... , NULL]
2900 *
2901 * This function can be used to get list of all configured network properties.
2902 * The caller is responsible for freeing the returned list and all its
2903 * elements.
2904 */
2905char ** wpa_config_get_all(struct wpa_ssid *ssid, int get_keys)
2906{
Dmitry Shmidt83474442015-04-15 13:47:09 -07002907#ifdef NO_CONFIG_WRITE
2908 return NULL;
2909#else /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002910 const struct parse_data *field;
2911 char *key, *value;
2912 size_t i;
2913 char **props;
2914 int fields_num;
2915
2916 get_keys = get_keys && ssid->export_keys;
2917
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002918 props = os_calloc(2 * NUM_SSID_FIELDS + 1, sizeof(char *));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002919 if (!props)
2920 return NULL;
2921
2922 fields_num = 0;
2923 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2924 field = &ssid_fields[i];
2925 if (field->key_data && !get_keys)
2926 continue;
2927 value = field->writer(field, ssid);
2928 if (value == NULL)
2929 continue;
2930 if (os_strlen(value) == 0) {
2931 os_free(value);
2932 continue;
2933 }
2934
2935 key = os_strdup(field->name);
2936 if (key == NULL) {
2937 os_free(value);
2938 goto err;
2939 }
2940
2941 props[fields_num * 2] = key;
2942 props[fields_num * 2 + 1] = value;
2943
2944 fields_num++;
2945 }
2946
2947 return props;
2948
2949err:
Dmitry Shmidt58d12ad2016-07-28 10:07:03 -07002950 for (i = 0; props[i]; i++)
2951 os_free(props[i]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002952 os_free(props);
2953 return NULL;
Dmitry Shmidt83474442015-04-15 13:47:09 -07002954#endif /* NO_CONFIG_WRITE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002955}
2956
2957
2958#ifndef NO_CONFIG_WRITE
2959/**
2960 * wpa_config_get - Get a variable in network configuration
2961 * @ssid: Pointer to network configuration data
2962 * @var: Variable name, e.g., "ssid"
2963 * Returns: Value of the variable or %NULL on failure
2964 *
2965 * This function can be used to get network configuration variables. The
2966 * returned value is a copy of the configuration variable in text format, i.e,.
2967 * the same format that the text-based configuration file and wpa_config_set()
2968 * are using for the value. The caller is responsible for freeing the returned
2969 * value.
2970 */
2971char * wpa_config_get(struct wpa_ssid *ssid, const char *var)
2972{
2973 size_t i;
2974
2975 if (ssid == NULL || var == NULL)
2976 return NULL;
2977
2978 for (i = 0; i < NUM_SSID_FIELDS; i++) {
2979 const struct parse_data *field = &ssid_fields[i];
Paul Stewart85c72c62016-03-03 15:33:47 -08002980 if (os_strcmp(var, field->name) == 0) {
2981 char *ret = field->writer(field, ssid);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002982
2983 if (ret && has_newline(ret)) {
Paul Stewart35800752016-03-18 18:14:26 -07002984 wpa_printf(MSG_ERROR,
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002985 "Found newline in value for %s; not returning it",
2986 var);
Paul Stewart85c72c62016-03-03 15:33:47 -08002987 os_free(ret);
2988 ret = NULL;
2989 }
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002990
Paul Stewart85c72c62016-03-03 15:33:47 -08002991 return ret;
2992 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002993 }
2994
2995 return NULL;
2996}
2997
2998
2999/**
3000 * wpa_config_get_no_key - Get a variable in network configuration (no keys)
3001 * @ssid: Pointer to network configuration data
3002 * @var: Variable name, e.g., "ssid"
3003 * Returns: Value of the variable or %NULL on failure
3004 *
3005 * This function can be used to get network configuration variable like
3006 * wpa_config_get(). The only difference is that this functions does not expose
3007 * key/password material from the configuration. In case a key/password field
3008 * is requested, the returned value is an empty string or %NULL if the variable
3009 * is not set or "*" if the variable is set (regardless of its value). The
3010 * returned value is a copy of the configuration variable in text format, i.e,.
3011 * the same format that the text-based configuration file and wpa_config_set()
3012 * are using for the value. The caller is responsible for freeing the returned
3013 * value.
3014 */
3015char * wpa_config_get_no_key(struct wpa_ssid *ssid, const char *var)
3016{
3017 size_t i;
3018
3019 if (ssid == NULL || var == NULL)
3020 return NULL;
3021
3022 for (i = 0; i < NUM_SSID_FIELDS; i++) {
3023 const struct parse_data *field = &ssid_fields[i];
3024 if (os_strcmp(var, field->name) == 0) {
3025 char *res = field->writer(field, ssid);
3026 if (field->key_data) {
3027 if (res && res[0]) {
3028 wpa_printf(MSG_DEBUG, "Do not allow "
3029 "key_data field to be "
3030 "exposed");
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003031 str_clear_free(res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003032 return os_strdup("*");
3033 }
3034
3035 os_free(res);
3036 return NULL;
3037 }
3038 return res;
3039 }
3040 }
3041
3042 return NULL;
3043}
3044#endif /* NO_CONFIG_WRITE */
3045
3046
3047/**
3048 * wpa_config_update_psk - Update WPA PSK based on passphrase and SSID
3049 * @ssid: Pointer to network configuration data
3050 *
3051 * This function must be called to update WPA PSK when either SSID or the
3052 * passphrase has changed for the network configuration.
3053 */
3054void wpa_config_update_psk(struct wpa_ssid *ssid)
3055{
3056#ifndef CONFIG_NO_PBKDF2
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003057 pbkdf2_sha1(ssid->passphrase, ssid->ssid, ssid->ssid_len, 4096,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003058 ssid->psk, PMK_LEN);
3059 wpa_hexdump_key(MSG_MSGDUMP, "PSK (from passphrase)",
3060 ssid->psk, PMK_LEN);
3061 ssid->psk_set = 1;
3062#endif /* CONFIG_NO_PBKDF2 */
3063}
3064
3065
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003066static int wpa_config_set_cred_req_conn_capab(struct wpa_cred *cred,
3067 const char *value)
3068{
3069 u8 *proto;
3070 int **port;
3071 int *ports, *nports;
3072 const char *pos;
3073 unsigned int num_ports;
3074
3075 proto = os_realloc_array(cred->req_conn_capab_proto,
3076 cred->num_req_conn_capab + 1, sizeof(u8));
3077 if (proto == NULL)
3078 return -1;
3079 cred->req_conn_capab_proto = proto;
3080
3081 port = os_realloc_array(cred->req_conn_capab_port,
3082 cred->num_req_conn_capab + 1, sizeof(int *));
3083 if (port == NULL)
3084 return -1;
3085 cred->req_conn_capab_port = port;
3086
3087 proto[cred->num_req_conn_capab] = atoi(value);
3088
3089 pos = os_strchr(value, ':');
3090 if (pos == NULL) {
3091 port[cred->num_req_conn_capab] = NULL;
3092 cred->num_req_conn_capab++;
3093 return 0;
3094 }
3095 pos++;
3096
3097 ports = NULL;
3098 num_ports = 0;
3099
3100 while (*pos) {
3101 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3102 if (nports == NULL) {
3103 os_free(ports);
3104 return -1;
3105 }
3106 ports = nports;
3107 ports[num_ports++] = atoi(pos);
3108
3109 pos = os_strchr(pos, ',');
3110 if (pos == NULL)
3111 break;
3112 pos++;
3113 }
3114
3115 nports = os_realloc_array(ports, num_ports + 1, sizeof(int));
3116 if (nports == NULL) {
3117 os_free(ports);
3118 return -1;
3119 }
3120 ports = nports;
3121 ports[num_ports] = -1;
3122
3123 port[cred->num_req_conn_capab] = ports;
3124 cred->num_req_conn_capab++;
3125 return 0;
3126}
3127
3128
Roshan Pius3a1667e2018-07-03 15:17:14 -07003129static int wpa_config_set_cred_roaming_consortiums(struct wpa_cred *cred,
3130 const char *value)
3131{
3132 u8 roaming_consortiums[MAX_ROAMING_CONS][MAX_ROAMING_CONS_OI_LEN];
3133 size_t roaming_consortiums_len[MAX_ROAMING_CONS];
3134 unsigned int num_roaming_consortiums = 0;
3135 const char *pos, *end;
3136 size_t len;
3137
3138 os_memset(roaming_consortiums, 0, sizeof(roaming_consortiums));
3139 os_memset(roaming_consortiums_len, 0, sizeof(roaming_consortiums_len));
3140
3141 for (pos = value;;) {
3142 end = os_strchr(pos, ',');
3143 len = end ? (size_t) (end - pos) : os_strlen(pos);
3144 if (!end && len == 0)
3145 break;
3146 if (len == 0 || (len & 1) != 0 ||
3147 len / 2 > MAX_ROAMING_CONS_OI_LEN ||
3148 hexstr2bin(pos,
3149 roaming_consortiums[num_roaming_consortiums],
3150 len / 2) < 0) {
3151 wpa_printf(MSG_INFO,
3152 "Invalid roaming_consortiums entry: %s",
3153 pos);
3154 return -1;
3155 }
3156 roaming_consortiums_len[num_roaming_consortiums] = len / 2;
3157 num_roaming_consortiums++;
3158 if (num_roaming_consortiums > MAX_ROAMING_CONS) {
3159 wpa_printf(MSG_INFO,
3160 "Too many roaming_consortiums OIs");
3161 return -1;
3162 }
3163
3164 if (!end)
3165 break;
3166 pos = end + 1;
3167 }
3168
3169 os_memcpy(cred->roaming_consortiums, roaming_consortiums,
3170 sizeof(roaming_consortiums));
3171 os_memcpy(cred->roaming_consortiums_len, roaming_consortiums_len,
3172 sizeof(roaming_consortiums_len));
3173 cred->num_roaming_consortiums = num_roaming_consortiums;
3174
3175 return 0;
3176}
3177
3178
Dmitry Shmidt04949592012-07-19 12:16:46 -07003179int wpa_config_set_cred(struct wpa_cred *cred, const char *var,
3180 const char *value, int line)
3181{
3182 char *val;
3183 size_t len;
Roshan Pius3a1667e2018-07-03 15:17:14 -07003184 int res;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003185
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08003186 if (os_strcmp(var, "temporary") == 0) {
3187 cred->temporary = atoi(value);
3188 return 0;
3189 }
3190
Dmitry Shmidt04949592012-07-19 12:16:46 -07003191 if (os_strcmp(var, "priority") == 0) {
3192 cred->priority = atoi(value);
3193 return 0;
3194 }
3195
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003196 if (os_strcmp(var, "sp_priority") == 0) {
3197 int prio = atoi(value);
3198 if (prio < 0 || prio > 255)
3199 return -1;
3200 cred->sp_priority = prio;
3201 return 0;
3202 }
3203
Dmitry Shmidt04949592012-07-19 12:16:46 -07003204 if (os_strcmp(var, "pcsc") == 0) {
3205 cred->pcsc = atoi(value);
3206 return 0;
3207 }
3208
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003209 if (os_strcmp(var, "eap") == 0) {
3210 struct eap_method_type method;
3211 method.method = eap_peer_get_type(value, &method.vendor);
3212 if (method.vendor == EAP_VENDOR_IETF &&
3213 method.method == EAP_TYPE_NONE) {
3214 wpa_printf(MSG_ERROR, "Line %d: unknown EAP type '%s' "
3215 "for a credential", line, value);
3216 return -1;
3217 }
3218 os_free(cred->eap_method);
3219 cred->eap_method = os_malloc(sizeof(*cred->eap_method));
3220 if (cred->eap_method == NULL)
3221 return -1;
3222 os_memcpy(cred->eap_method, &method, sizeof(method));
3223 return 0;
3224 }
3225
3226 if (os_strcmp(var, "password") == 0 &&
3227 os_strncmp(value, "ext:", 4) == 0) {
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003228 if (has_newline(value))
3229 return -1;
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003230 str_clear_free(cred->password);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003231 cred->password = os_strdup(value);
3232 cred->ext_password = 1;
3233 return 0;
3234 }
3235
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003236 if (os_strcmp(var, "update_identifier") == 0) {
3237 cred->update_identifier = atoi(value);
3238 return 0;
3239 }
3240
3241 if (os_strcmp(var, "min_dl_bandwidth_home") == 0) {
3242 cred->min_dl_bandwidth_home = atoi(value);
3243 return 0;
3244 }
3245
3246 if (os_strcmp(var, "min_ul_bandwidth_home") == 0) {
3247 cred->min_ul_bandwidth_home = atoi(value);
3248 return 0;
3249 }
3250
3251 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0) {
3252 cred->min_dl_bandwidth_roaming = atoi(value);
3253 return 0;
3254 }
3255
3256 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0) {
3257 cred->min_ul_bandwidth_roaming = atoi(value);
3258 return 0;
3259 }
3260
3261 if (os_strcmp(var, "max_bss_load") == 0) {
3262 cred->max_bss_load = atoi(value);
3263 return 0;
3264 }
3265
3266 if (os_strcmp(var, "req_conn_capab") == 0)
3267 return wpa_config_set_cred_req_conn_capab(cred, value);
3268
3269 if (os_strcmp(var, "ocsp") == 0) {
3270 cred->ocsp = atoi(value);
3271 return 0;
3272 }
3273
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07003274 if (os_strcmp(var, "sim_num") == 0) {
3275 cred->sim_num = atoi(value);
3276 return 0;
3277 }
3278
Dmitry Shmidt04949592012-07-19 12:16:46 -07003279 val = wpa_config_parse_string(value, &len);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003280 if (val == NULL ||
3281 (os_strcmp(var, "excluded_ssid") != 0 &&
3282 os_strcmp(var, "roaming_consortium") != 0 &&
3283 os_strcmp(var, "required_roaming_consortium") != 0 &&
3284 has_newline(val))) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003285 wpa_printf(MSG_ERROR, "Line %d: invalid field '%s' string "
3286 "value '%s'.", line, var, value);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003287 os_free(val);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003288 return -1;
3289 }
3290
3291 if (os_strcmp(var, "realm") == 0) {
3292 os_free(cred->realm);
3293 cred->realm = val;
3294 return 0;
3295 }
3296
3297 if (os_strcmp(var, "username") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003298 str_clear_free(cred->username);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003299 cred->username = val;
3300 return 0;
3301 }
3302
3303 if (os_strcmp(var, "password") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003304 str_clear_free(cred->password);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003305 cred->password = val;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003306 cred->ext_password = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003307 return 0;
3308 }
3309
3310 if (os_strcmp(var, "ca_cert") == 0) {
3311 os_free(cred->ca_cert);
3312 cred->ca_cert = val;
3313 return 0;
3314 }
3315
3316 if (os_strcmp(var, "client_cert") == 0) {
3317 os_free(cred->client_cert);
3318 cred->client_cert = val;
3319 return 0;
3320 }
3321
3322 if (os_strcmp(var, "private_key") == 0) {
3323 os_free(cred->private_key);
3324 cred->private_key = val;
3325 return 0;
3326 }
3327
3328 if (os_strcmp(var, "private_key_passwd") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003329 str_clear_free(cred->private_key_passwd);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003330 cred->private_key_passwd = val;
3331 return 0;
3332 }
3333
3334 if (os_strcmp(var, "imsi") == 0) {
3335 os_free(cred->imsi);
3336 cred->imsi = val;
3337 return 0;
3338 }
3339
3340 if (os_strcmp(var, "milenage") == 0) {
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003341 str_clear_free(cred->milenage);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003342 cred->milenage = val;
3343 return 0;
3344 }
3345
Dmitry Shmidt051af732013-10-22 13:52:46 -07003346 if (os_strcmp(var, "domain_suffix_match") == 0) {
3347 os_free(cred->domain_suffix_match);
3348 cred->domain_suffix_match = val;
3349 return 0;
3350 }
3351
Dmitry Shmidt04949592012-07-19 12:16:46 -07003352 if (os_strcmp(var, "domain") == 0) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07003353 char **new_domain;
3354 new_domain = os_realloc_array(cred->domain,
3355 cred->num_domain + 1,
3356 sizeof(char *));
3357 if (new_domain == NULL) {
3358 os_free(val);
3359 return -1;
3360 }
3361 new_domain[cred->num_domain++] = val;
3362 cred->domain = new_domain;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003363 return 0;
3364 }
3365
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003366 if (os_strcmp(var, "phase1") == 0) {
3367 os_free(cred->phase1);
3368 cred->phase1 = val;
3369 return 0;
3370 }
3371
3372 if (os_strcmp(var, "phase2") == 0) {
3373 os_free(cred->phase2);
3374 cred->phase2 = val;
3375 return 0;
3376 }
3377
3378 if (os_strcmp(var, "roaming_consortium") == 0) {
3379 if (len < 3 || len > sizeof(cred->roaming_consortium)) {
3380 wpa_printf(MSG_ERROR, "Line %d: invalid "
3381 "roaming_consortium length %d (3..15 "
3382 "expected)", line, (int) len);
3383 os_free(val);
3384 return -1;
3385 }
3386 os_memcpy(cred->roaming_consortium, val, len);
3387 cred->roaming_consortium_len = len;
3388 os_free(val);
3389 return 0;
3390 }
3391
Dmitry Shmidt051af732013-10-22 13:52:46 -07003392 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3393 if (len < 3 || len > sizeof(cred->required_roaming_consortium))
3394 {
3395 wpa_printf(MSG_ERROR, "Line %d: invalid "
3396 "required_roaming_consortium length %d "
3397 "(3..15 expected)", line, (int) len);
3398 os_free(val);
3399 return -1;
3400 }
3401 os_memcpy(cred->required_roaming_consortium, val, len);
3402 cred->required_roaming_consortium_len = len;
3403 os_free(val);
3404 return 0;
3405 }
3406
Roshan Pius3a1667e2018-07-03 15:17:14 -07003407 if (os_strcmp(var, "roaming_consortiums") == 0) {
3408 res = wpa_config_set_cred_roaming_consortiums(cred, val);
3409 if (res < 0)
3410 wpa_printf(MSG_ERROR,
3411 "Line %d: invalid roaming_consortiums",
3412 line);
3413 os_free(val);
3414 return res;
3415 }
3416
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003417 if (os_strcmp(var, "excluded_ssid") == 0) {
3418 struct excluded_ssid *e;
3419
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07003420 if (len > SSID_MAX_LEN) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08003421 wpa_printf(MSG_ERROR, "Line %d: invalid "
3422 "excluded_ssid length %d", line, (int) len);
3423 os_free(val);
3424 return -1;
3425 }
3426
3427 e = os_realloc_array(cred->excluded_ssid,
3428 cred->num_excluded_ssid + 1,
3429 sizeof(struct excluded_ssid));
3430 if (e == NULL) {
3431 os_free(val);
3432 return -1;
3433 }
3434 cred->excluded_ssid = e;
3435
3436 e = &cred->excluded_ssid[cred->num_excluded_ssid++];
3437 os_memcpy(e->ssid, val, len);
3438 e->ssid_len = len;
3439
3440 os_free(val);
3441
3442 return 0;
3443 }
3444
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08003445 if (os_strcmp(var, "roaming_partner") == 0) {
3446 struct roaming_partner *p;
3447 char *pos;
3448
3449 p = os_realloc_array(cred->roaming_partner,
3450 cred->num_roaming_partner + 1,
3451 sizeof(struct roaming_partner));
3452 if (p == NULL) {
3453 os_free(val);
3454 return -1;
3455 }
3456 cred->roaming_partner = p;
3457
3458 p = &cred->roaming_partner[cred->num_roaming_partner];
3459
3460 pos = os_strchr(val, ',');
3461 if (pos == NULL) {
3462 os_free(val);
3463 return -1;
3464 }
3465 *pos++ = '\0';
3466 if (pos - val - 1 >= (int) sizeof(p->fqdn)) {
3467 os_free(val);
3468 return -1;
3469 }
3470 os_memcpy(p->fqdn, val, pos - val);
3471
3472 p->exact_match = atoi(pos);
3473
3474 pos = os_strchr(pos, ',');
3475 if (pos == NULL) {
3476 os_free(val);
3477 return -1;
3478 }
3479 *pos++ = '\0';
3480
3481 p->priority = atoi(pos);
3482
3483 pos = os_strchr(pos, ',');
3484 if (pos == NULL) {
3485 os_free(val);
3486 return -1;
3487 }
3488 *pos++ = '\0';
3489
3490 if (os_strlen(pos) >= sizeof(p->country)) {
3491 os_free(val);
3492 return -1;
3493 }
3494 os_memcpy(p->country, pos, os_strlen(pos) + 1);
3495
3496 cred->num_roaming_partner++;
3497 os_free(val);
3498
3499 return 0;
3500 }
3501
3502 if (os_strcmp(var, "provisioning_sp") == 0) {
3503 os_free(cred->provisioning_sp);
3504 cred->provisioning_sp = val;
3505 return 0;
3506 }
3507
Dmitry Shmidt04949592012-07-19 12:16:46 -07003508 if (line) {
3509 wpa_printf(MSG_ERROR, "Line %d: unknown cred field '%s'.",
3510 line, var);
3511 }
3512
3513 os_free(val);
3514
3515 return -1;
3516}
3517
3518
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003519static char * alloc_int_str(int val)
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003520{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003521 const unsigned int bufsize = 20;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003522 char *buf;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003523 int res;
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003524
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003525 buf = os_malloc(bufsize);
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003526 if (buf == NULL)
3527 return NULL;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003528 res = os_snprintf(buf, bufsize, "%d", val);
3529 if (os_snprintf_error(bufsize, res)) {
3530 os_free(buf);
3531 buf = NULL;
3532 }
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003533 return buf;
3534}
3535
3536
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003537static char * alloc_strdup(const char *str)
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003538{
3539 if (str == NULL)
3540 return NULL;
3541 return os_strdup(str);
3542}
3543
3544
3545char * wpa_config_get_cred_no_key(struct wpa_cred *cred, const char *var)
3546{
3547 if (os_strcmp(var, "temporary") == 0)
3548 return alloc_int_str(cred->temporary);
3549
3550 if (os_strcmp(var, "priority") == 0)
3551 return alloc_int_str(cred->priority);
3552
3553 if (os_strcmp(var, "sp_priority") == 0)
3554 return alloc_int_str(cred->sp_priority);
3555
3556 if (os_strcmp(var, "pcsc") == 0)
3557 return alloc_int_str(cred->pcsc);
3558
3559 if (os_strcmp(var, "eap") == 0) {
3560 if (!cred->eap_method)
3561 return NULL;
3562 return alloc_strdup(eap_get_name(cred->eap_method[0].vendor,
3563 cred->eap_method[0].method));
3564 }
3565
3566 if (os_strcmp(var, "update_identifier") == 0)
3567 return alloc_int_str(cred->update_identifier);
3568
3569 if (os_strcmp(var, "min_dl_bandwidth_home") == 0)
3570 return alloc_int_str(cred->min_dl_bandwidth_home);
3571
3572 if (os_strcmp(var, "min_ul_bandwidth_home") == 0)
3573 return alloc_int_str(cred->min_ul_bandwidth_home);
3574
3575 if (os_strcmp(var, "min_dl_bandwidth_roaming") == 0)
3576 return alloc_int_str(cred->min_dl_bandwidth_roaming);
3577
3578 if (os_strcmp(var, "min_ul_bandwidth_roaming") == 0)
3579 return alloc_int_str(cred->min_ul_bandwidth_roaming);
3580
3581 if (os_strcmp(var, "max_bss_load") == 0)
3582 return alloc_int_str(cred->max_bss_load);
3583
3584 if (os_strcmp(var, "req_conn_capab") == 0) {
3585 unsigned int i;
3586 char *buf, *end, *pos;
3587 int ret;
3588
3589 if (!cred->num_req_conn_capab)
3590 return NULL;
3591
3592 buf = os_malloc(4000);
3593 if (buf == NULL)
3594 return NULL;
3595 pos = buf;
3596 end = pos + 4000;
3597 for (i = 0; i < cred->num_req_conn_capab; i++) {
3598 int *ports;
3599
3600 ret = os_snprintf(pos, end - pos, "%s%u",
3601 i > 0 ? "\n" : "",
3602 cred->req_conn_capab_proto[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003603 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003604 return buf;
3605 pos += ret;
3606
3607 ports = cred->req_conn_capab_port[i];
3608 if (ports) {
3609 int j;
3610 for (j = 0; ports[j] != -1; j++) {
3611 ret = os_snprintf(pos, end - pos,
3612 "%s%d",
3613 j > 0 ? "," : ":",
3614 ports[j]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003615 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003616 return buf;
3617 pos += ret;
3618 }
3619 }
3620 }
3621
3622 return buf;
3623 }
3624
3625 if (os_strcmp(var, "ocsp") == 0)
3626 return alloc_int_str(cred->ocsp);
3627
3628 if (os_strcmp(var, "realm") == 0)
3629 return alloc_strdup(cred->realm);
3630
3631 if (os_strcmp(var, "username") == 0)
3632 return alloc_strdup(cred->username);
3633
3634 if (os_strcmp(var, "password") == 0) {
3635 if (!cred->password)
3636 return NULL;
3637 return alloc_strdup("*");
3638 }
3639
3640 if (os_strcmp(var, "ca_cert") == 0)
3641 return alloc_strdup(cred->ca_cert);
3642
3643 if (os_strcmp(var, "client_cert") == 0)
3644 return alloc_strdup(cred->client_cert);
3645
3646 if (os_strcmp(var, "private_key") == 0)
3647 return alloc_strdup(cred->private_key);
3648
3649 if (os_strcmp(var, "private_key_passwd") == 0) {
3650 if (!cred->private_key_passwd)
3651 return NULL;
3652 return alloc_strdup("*");
3653 }
3654
3655 if (os_strcmp(var, "imsi") == 0)
3656 return alloc_strdup(cred->imsi);
3657
3658 if (os_strcmp(var, "milenage") == 0) {
3659 if (!(cred->milenage))
3660 return NULL;
3661 return alloc_strdup("*");
3662 }
3663
3664 if (os_strcmp(var, "domain_suffix_match") == 0)
3665 return alloc_strdup(cred->domain_suffix_match);
3666
3667 if (os_strcmp(var, "domain") == 0) {
3668 unsigned int i;
3669 char *buf, *end, *pos;
3670 int ret;
3671
3672 if (!cred->num_domain)
3673 return NULL;
3674
3675 buf = os_malloc(4000);
3676 if (buf == NULL)
3677 return NULL;
3678 pos = buf;
3679 end = pos + 4000;
3680
3681 for (i = 0; i < cred->num_domain; i++) {
3682 ret = os_snprintf(pos, end - pos, "%s%s",
3683 i > 0 ? "\n" : "", cred->domain[i]);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003684 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003685 return buf;
3686 pos += ret;
3687 }
3688
3689 return buf;
3690 }
3691
3692 if (os_strcmp(var, "phase1") == 0)
3693 return alloc_strdup(cred->phase1);
3694
3695 if (os_strcmp(var, "phase2") == 0)
3696 return alloc_strdup(cred->phase2);
3697
3698 if (os_strcmp(var, "roaming_consortium") == 0) {
3699 size_t buflen;
3700 char *buf;
3701
3702 if (!cred->roaming_consortium_len)
3703 return NULL;
3704 buflen = cred->roaming_consortium_len * 2 + 1;
3705 buf = os_malloc(buflen);
3706 if (buf == NULL)
3707 return NULL;
3708 wpa_snprintf_hex(buf, buflen, cred->roaming_consortium,
3709 cred->roaming_consortium_len);
3710 return buf;
3711 }
3712
3713 if (os_strcmp(var, "required_roaming_consortium") == 0) {
3714 size_t buflen;
3715 char *buf;
3716
3717 if (!cred->required_roaming_consortium_len)
3718 return NULL;
3719 buflen = cred->required_roaming_consortium_len * 2 + 1;
3720 buf = os_malloc(buflen);
3721 if (buf == NULL)
3722 return NULL;
3723 wpa_snprintf_hex(buf, buflen, cred->required_roaming_consortium,
3724 cred->required_roaming_consortium_len);
3725 return buf;
3726 }
3727
Roshan Pius3a1667e2018-07-03 15:17:14 -07003728 if (os_strcmp(var, "roaming_consortiums") == 0) {
3729 size_t buflen;
3730 char *buf, *pos;
3731 size_t i;
3732
3733 if (!cred->num_roaming_consortiums)
3734 return NULL;
3735 buflen = cred->num_roaming_consortiums *
3736 MAX_ROAMING_CONS_OI_LEN * 2 + 1;
3737 buf = os_malloc(buflen);
3738 if (!buf)
3739 return NULL;
3740 pos = buf;
3741 for (i = 0; i < cred->num_roaming_consortiums; i++) {
3742 if (i > 0)
3743 *pos++ = ',';
3744 pos += wpa_snprintf_hex(
3745 pos, buf + buflen - pos,
3746 cred->roaming_consortiums[i],
3747 cred->roaming_consortiums_len[i]);
3748 }
3749 *pos = '\0';
3750 return buf;
3751 }
3752
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003753 if (os_strcmp(var, "excluded_ssid") == 0) {
3754 unsigned int i;
3755 char *buf, *end, *pos;
3756
3757 if (!cred->num_excluded_ssid)
3758 return NULL;
3759
3760 buf = os_malloc(4000);
3761 if (buf == NULL)
3762 return NULL;
3763 pos = buf;
3764 end = pos + 4000;
3765
3766 for (i = 0; i < cred->num_excluded_ssid; i++) {
3767 struct excluded_ssid *e;
3768 int ret;
3769
3770 e = &cred->excluded_ssid[i];
3771 ret = os_snprintf(pos, end - pos, "%s%s",
3772 i > 0 ? "\n" : "",
3773 wpa_ssid_txt(e->ssid, e->ssid_len));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003774 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003775 return buf;
3776 pos += ret;
3777 }
3778
3779 return buf;
3780 }
3781
3782 if (os_strcmp(var, "roaming_partner") == 0) {
3783 unsigned int i;
3784 char *buf, *end, *pos;
3785
3786 if (!cred->num_roaming_partner)
3787 return NULL;
3788
3789 buf = os_malloc(4000);
3790 if (buf == NULL)
3791 return NULL;
3792 pos = buf;
3793 end = pos + 4000;
3794
3795 for (i = 0; i < cred->num_roaming_partner; i++) {
3796 struct roaming_partner *p;
3797 int ret;
3798
3799 p = &cred->roaming_partner[i];
3800 ret = os_snprintf(pos, end - pos, "%s%s,%d,%u,%s",
3801 i > 0 ? "\n" : "",
3802 p->fqdn, p->exact_match, p->priority,
3803 p->country);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003804 if (os_snprintf_error(end - pos, ret))
Dmitry Shmidt0cfd5f72014-04-04 14:48:05 -07003805 return buf;
3806 pos += ret;
3807 }
3808
3809 return buf;
3810 }
3811
3812 if (os_strcmp(var, "provisioning_sp") == 0)
3813 return alloc_strdup(cred->provisioning_sp);
3814
3815 return NULL;
3816}
3817
3818
Dmitry Shmidt04949592012-07-19 12:16:46 -07003819struct wpa_cred * wpa_config_get_cred(struct wpa_config *config, int id)
3820{
3821 struct wpa_cred *cred;
3822
3823 cred = config->cred;
3824 while (cred) {
3825 if (id == cred->id)
3826 break;
3827 cred = cred->next;
3828 }
3829
3830 return cred;
3831}
3832
3833
3834struct wpa_cred * wpa_config_add_cred(struct wpa_config *config)
3835{
3836 int id;
3837 struct wpa_cred *cred, *last = NULL;
3838
3839 id = -1;
3840 cred = config->cred;
3841 while (cred) {
3842 if (cred->id > id)
3843 id = cred->id;
3844 last = cred;
3845 cred = cred->next;
3846 }
3847 id++;
3848
3849 cred = os_zalloc(sizeof(*cred));
3850 if (cred == NULL)
3851 return NULL;
3852 cred->id = id;
Dmitry Shmidtf9bdef92014-04-25 10:46:36 -07003853 cred->sim_num = DEFAULT_USER_SELECTED_SIM;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003854 if (last)
3855 last->next = cred;
3856 else
3857 config->cred = cred;
3858
3859 return cred;
3860}
3861
3862
3863int wpa_config_remove_cred(struct wpa_config *config, int id)
3864{
3865 struct wpa_cred *cred, *prev = NULL;
3866
3867 cred = config->cred;
3868 while (cred) {
3869 if (id == cred->id)
3870 break;
3871 prev = cred;
3872 cred = cred->next;
3873 }
3874
3875 if (cred == NULL)
3876 return -1;
3877
3878 if (prev)
3879 prev->next = cred->next;
3880 else
3881 config->cred = cred->next;
3882
3883 wpa_config_free_cred(cred);
3884 return 0;
3885}
3886
3887
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003888#ifndef CONFIG_NO_CONFIG_BLOBS
3889/**
3890 * wpa_config_get_blob - Get a named configuration blob
3891 * @config: Configuration data from wpa_config_read()
3892 * @name: Name of the blob
3893 * Returns: Pointer to blob data or %NULL if not found
3894 */
3895const struct wpa_config_blob * wpa_config_get_blob(struct wpa_config *config,
3896 const char *name)
3897{
3898 struct wpa_config_blob *blob = config->blobs;
3899
3900 while (blob) {
3901 if (os_strcmp(blob->name, name) == 0)
3902 return blob;
3903 blob = blob->next;
3904 }
3905 return NULL;
3906}
3907
3908
3909/**
3910 * wpa_config_set_blob - Set or add a named configuration blob
3911 * @config: Configuration data from wpa_config_read()
3912 * @blob: New value for the blob
3913 *
3914 * Adds a new configuration blob or replaces the current value of an existing
3915 * blob.
3916 */
3917void wpa_config_set_blob(struct wpa_config *config,
3918 struct wpa_config_blob *blob)
3919{
3920 wpa_config_remove_blob(config, blob->name);
3921 blob->next = config->blobs;
3922 config->blobs = blob;
3923}
3924
3925
3926/**
3927 * wpa_config_free_blob - Free blob data
3928 * @blob: Pointer to blob to be freed
3929 */
3930void wpa_config_free_blob(struct wpa_config_blob *blob)
3931{
3932 if (blob) {
3933 os_free(blob->name);
Dmitry Shmidtc2817022014-07-02 10:32:10 -07003934 bin_clear_free(blob->data, blob->len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003935 os_free(blob);
3936 }
3937}
3938
3939
3940/**
3941 * wpa_config_remove_blob - Remove a named configuration blob
3942 * @config: Configuration data from wpa_config_read()
3943 * @name: Name of the blob to remove
3944 * Returns: 0 if blob was removed or -1 if blob was not found
3945 */
3946int wpa_config_remove_blob(struct wpa_config *config, const char *name)
3947{
3948 struct wpa_config_blob *pos = config->blobs, *prev = NULL;
3949
3950 while (pos) {
3951 if (os_strcmp(pos->name, name) == 0) {
3952 if (prev)
3953 prev->next = pos->next;
3954 else
3955 config->blobs = pos->next;
3956 wpa_config_free_blob(pos);
3957 return 0;
3958 }
3959 prev = pos;
3960 pos = pos->next;
3961 }
3962
3963 return -1;
3964}
3965#endif /* CONFIG_NO_CONFIG_BLOBS */
3966
3967
3968/**
3969 * wpa_config_alloc_empty - Allocate an empty configuration
3970 * @ctrl_interface: Control interface parameters, e.g., path to UNIX domain
3971 * socket
3972 * @driver_param: Driver parameters
3973 * Returns: Pointer to allocated configuration data or %NULL on failure
3974 */
3975struct wpa_config * wpa_config_alloc_empty(const char *ctrl_interface,
3976 const char *driver_param)
3977{
3978 struct wpa_config *config;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003979 const int aCWmin = 4, aCWmax = 10;
3980 const struct hostapd_wmm_ac_params ac_bk =
3981 { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
3982 const struct hostapd_wmm_ac_params ac_be =
3983 { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
3984 const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
3985 { aCWmin - 1, aCWmin, 2, 3000 / 32, 0 };
3986 const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
3987 { aCWmin - 2, aCWmin - 1, 2, 1500 / 32, 0 };
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003988
3989 config = os_zalloc(sizeof(*config));
3990 if (config == NULL)
3991 return NULL;
3992 config->eapol_version = DEFAULT_EAPOL_VERSION;
3993 config->ap_scan = DEFAULT_AP_SCAN;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003994 config->user_mpm = DEFAULT_USER_MPM;
3995 config->max_peer_links = DEFAULT_MAX_PEER_LINKS;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08003996 config->mesh_max_inactivity = DEFAULT_MESH_MAX_INACTIVITY;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003997 config->dot11RSNASAERetransPeriod =
3998 DEFAULT_DOT11_RSNA_SAE_RETRANS_PERIOD;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003999 config->fast_reauth = DEFAULT_FAST_REAUTH;
4000 config->p2p_go_intent = DEFAULT_P2P_GO_INTENT;
4001 config->p2p_intra_bss = DEFAULT_P2P_INTRA_BSS;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004002 config->p2p_go_freq_change_policy = DEFAULT_P2P_GO_FREQ_MOVE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004003 config->p2p_go_max_inactivity = DEFAULT_P2P_GO_MAX_INACTIVITY;
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004004 config->p2p_optimize_listen_chan = DEFAULT_P2P_OPTIMIZE_LISTEN_CHAN;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004005 config->p2p_go_ctwindow = DEFAULT_P2P_GO_CTWINDOW;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004006 config->bss_max_count = DEFAULT_BSS_MAX_COUNT;
4007 config->bss_expiration_age = DEFAULT_BSS_EXPIRATION_AGE;
4008 config->bss_expiration_scan_count = DEFAULT_BSS_EXPIRATION_SCAN_COUNT;
4009 config->max_num_sta = DEFAULT_MAX_NUM_STA;
Roshan Pius3a1667e2018-07-03 15:17:14 -07004010 config->ap_isolate = DEFAULT_AP_ISOLATE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004011 config->access_network_type = DEFAULT_ACCESS_NETWORK_TYPE;
Dmitry Shmidtea69e842013-05-13 14:52:28 -07004012 config->scan_cur_freq = DEFAULT_SCAN_CUR_FREQ;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004013 config->wmm_ac_params[0] = ac_be;
4014 config->wmm_ac_params[1] = ac_bk;
4015 config->wmm_ac_params[2] = ac_vi;
4016 config->wmm_ac_params[3] = ac_vo;
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07004017 config->p2p_search_delay = DEFAULT_P2P_SEARCH_DELAY;
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004018 config->rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004019 config->key_mgmt_offload = DEFAULT_KEY_MGMT_OFFLOAD;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08004020 config->cert_in_cb = DEFAULT_CERT_IN_CB;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004021 config->wpa_rsc_relaxation = DEFAULT_WPA_RSC_RELAXATION;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004022
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004023#ifdef CONFIG_MBO
4024 config->mbo_cell_capa = DEFAULT_MBO_CELL_CAPA;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004025 config->disassoc_imminent_rssi_threshold =
4026 DEFAULT_DISASSOC_IMMINENT_RSSI_THRESHOLD;
4027 config->oce = DEFAULT_OCE_SUPPORT;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004028#endif /* CONFIG_MBO */
4029
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004030 if (ctrl_interface)
4031 config->ctrl_interface = os_strdup(ctrl_interface);
4032 if (driver_param)
4033 config->driver_param = os_strdup(driver_param);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08004034 config->gas_rand_addr_lifetime = DEFAULT_RAND_ADDR_LIFETIME;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004035
4036 return config;
4037}
4038
4039
4040#ifndef CONFIG_NO_STDOUT_DEBUG
4041/**
4042 * wpa_config_debug_dump_networks - Debug dump of configured networks
4043 * @config: Configuration data from wpa_config_read()
4044 */
4045void wpa_config_debug_dump_networks(struct wpa_config *config)
4046{
4047 int prio;
4048 struct wpa_ssid *ssid;
4049
4050 for (prio = 0; prio < config->num_prio; prio++) {
4051 ssid = config->pssid[prio];
4052 wpa_printf(MSG_DEBUG, "Priority group %d",
4053 ssid->priority);
4054 while (ssid) {
4055 wpa_printf(MSG_DEBUG, " id=%d ssid='%s'",
4056 ssid->id,
4057 wpa_ssid_txt(ssid->ssid, ssid->ssid_len));
4058 ssid = ssid->pnext;
4059 }
4060 }
4061}
4062#endif /* CONFIG_NO_STDOUT_DEBUG */
4063
4064
4065struct global_parse_data {
4066 char *name;
4067 int (*parser)(const struct global_parse_data *data,
4068 struct wpa_config *config, int line, const char *value);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004069 int (*get)(const char *name, struct wpa_config *config, long offset,
4070 char *buf, size_t buflen, int pretty_print);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004071 void *param1, *param2, *param3;
4072 unsigned int changed_flag;
4073};
4074
4075
4076static int wpa_global_config_parse_int(const struct global_parse_data *data,
4077 struct wpa_config *config, int line,
4078 const char *pos)
4079{
Dmitry Shmidt2f023192013-03-12 12:44:17 -07004080 int val, *dst;
4081 char *end;
4082
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004083 dst = (int *) (((u8 *) config) + (long) data->param1);
Dmitry Shmidt2f023192013-03-12 12:44:17 -07004084 val = strtol(pos, &end, 0);
4085 if (*end) {
4086 wpa_printf(MSG_ERROR, "Line %d: invalid number \"%s\"",
4087 line, pos);
4088 return -1;
4089 }
4090 *dst = val;
4091
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004092 wpa_printf(MSG_DEBUG, "%s=%d", data->name, *dst);
4093
4094 if (data->param2 && *dst < (long) data->param2) {
4095 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d "
4096 "min_value=%ld)", line, data->name, *dst,
4097 (long) data->param2);
4098 *dst = (long) data->param2;
4099 return -1;
4100 }
4101
4102 if (data->param3 && *dst > (long) data->param3) {
4103 wpa_printf(MSG_ERROR, "Line %d: too large %s (value=%d "
4104 "max_value=%ld)", line, data->name, *dst,
4105 (long) data->param3);
4106 *dst = (long) data->param3;
4107 return -1;
4108 }
4109
4110 return 0;
4111}
4112
4113
4114static int wpa_global_config_parse_str(const struct global_parse_data *data,
4115 struct wpa_config *config, int line,
4116 const char *pos)
4117{
4118 size_t len;
4119 char **dst, *tmp;
4120
4121 len = os_strlen(pos);
4122 if (data->param2 && len < (size_t) data->param2) {
4123 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
4124 "min_len=%ld)", line, data->name,
4125 (unsigned long) len, (long) data->param2);
4126 return -1;
4127 }
4128
4129 if (data->param3 && len > (size_t) data->param3) {
4130 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
4131 "max_len=%ld)", line, data->name,
4132 (unsigned long) len, (long) data->param3);
4133 return -1;
4134 }
4135
Dmitry Shmidt849734c2016-05-27 09:59:01 -07004136 if (has_newline(pos)) {
4137 wpa_printf(MSG_ERROR, "Line %d: invalid %s value with newline",
4138 line, data->name);
4139 return -1;
4140 }
4141
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004142 tmp = os_strdup(pos);
4143 if (tmp == NULL)
4144 return -1;
4145
4146 dst = (char **) (((u8 *) config) + (long) data->param1);
4147 os_free(*dst);
4148 *dst = tmp;
4149 wpa_printf(MSG_DEBUG, "%s='%s'", data->name, *dst);
4150
4151 return 0;
4152}
4153
4154
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004155static int wpa_config_process_bgscan(const struct global_parse_data *data,
4156 struct wpa_config *config, int line,
4157 const char *pos)
4158{
4159 size_t len;
4160 char *tmp;
Dmitry Shmidt97672262014-02-03 13:02:54 -08004161 int res;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004162
4163 tmp = wpa_config_parse_string(pos, &len);
4164 if (tmp == NULL) {
4165 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s",
4166 line, data->name);
4167 return -1;
4168 }
4169
Dmitry Shmidt97672262014-02-03 13:02:54 -08004170 res = wpa_global_config_parse_str(data, config, line, tmp);
4171 os_free(tmp);
4172 return res;
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004173}
4174
4175
Dmitry Shmidt04949592012-07-19 12:16:46 -07004176static int wpa_global_config_parse_bin(const struct global_parse_data *data,
4177 struct wpa_config *config, int line,
4178 const char *pos)
4179{
Dmitry Shmidt04949592012-07-19 12:16:46 -07004180 struct wpabuf **dst, *tmp;
4181
Dmitry Shmidt849734c2016-05-27 09:59:01 -07004182 tmp = wpabuf_parse_bin(pos);
4183 if (!tmp)
Dmitry Shmidt04949592012-07-19 12:16:46 -07004184 return -1;
4185
Dmitry Shmidt04949592012-07-19 12:16:46 -07004186 dst = (struct wpabuf **) (((u8 *) config) + (long) data->param1);
4187 wpabuf_free(*dst);
4188 *dst = tmp;
4189 wpa_printf(MSG_DEBUG, "%s", data->name);
4190
4191 return 0;
4192}
4193
4194
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004195static int wpa_config_process_freq_list(const struct global_parse_data *data,
4196 struct wpa_config *config, int line,
4197 const char *value)
4198{
4199 int *freqs;
4200
4201 freqs = wpa_config_parse_int_array(value);
4202 if (freqs == NULL)
4203 return -1;
Dmitry Shmidt56052862013-10-04 10:23:25 -07004204 if (freqs[0] == 0) {
4205 os_free(freqs);
4206 freqs = NULL;
4207 }
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004208 os_free(config->freq_list);
4209 config->freq_list = freqs;
4210 return 0;
4211}
4212
4213
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004214#ifdef CONFIG_P2P
4215static int wpa_global_config_parse_ipv4(const struct global_parse_data *data,
4216 struct wpa_config *config, int line,
4217 const char *pos)
4218{
4219 u32 *dst;
4220 struct hostapd_ip_addr addr;
4221
4222 if (hostapd_parse_ip_addr(pos, &addr) < 0)
4223 return -1;
4224 if (addr.af != AF_INET)
4225 return -1;
4226
4227 dst = (u32 *) (((u8 *) config) + (long) data->param1);
4228 os_memcpy(dst, &addr.u.v4.s_addr, 4);
4229 wpa_printf(MSG_DEBUG, "%s = 0x%x", data->name,
4230 WPA_GET_BE32((u8 *) dst));
4231
4232 return 0;
4233}
4234#endif /* CONFIG_P2P */
4235
4236
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004237static int wpa_config_process_country(const struct global_parse_data *data,
4238 struct wpa_config *config, int line,
4239 const char *pos)
4240{
4241 if (!pos[0] || !pos[1]) {
4242 wpa_printf(MSG_DEBUG, "Invalid country set");
4243 return -1;
4244 }
4245 config->country[0] = pos[0];
4246 config->country[1] = pos[1];
4247 wpa_printf(MSG_DEBUG, "country='%c%c'",
4248 config->country[0], config->country[1]);
4249 return 0;
4250}
4251
4252
4253static int wpa_config_process_load_dynamic_eap(
4254 const struct global_parse_data *data, struct wpa_config *config,
4255 int line, const char *so)
4256{
4257 int ret;
4258 wpa_printf(MSG_DEBUG, "load_dynamic_eap=%s", so);
4259 ret = eap_peer_method_load(so);
4260 if (ret == -2) {
4261 wpa_printf(MSG_DEBUG, "This EAP type was already loaded - not "
4262 "reloading.");
4263 } else if (ret) {
4264 wpa_printf(MSG_ERROR, "Line %d: Failed to load dynamic EAP "
4265 "method '%s'.", line, so);
4266 return -1;
4267 }
4268
4269 return 0;
4270}
4271
4272
4273#ifdef CONFIG_WPS
4274
4275static int wpa_config_process_uuid(const struct global_parse_data *data,
4276 struct wpa_config *config, int line,
4277 const char *pos)
4278{
4279 char buf[40];
4280 if (uuid_str2bin(pos, config->uuid)) {
4281 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
4282 return -1;
4283 }
4284 uuid_bin2str(config->uuid, buf, sizeof(buf));
4285 wpa_printf(MSG_DEBUG, "uuid=%s", buf);
4286 return 0;
4287}
4288
4289
4290static int wpa_config_process_device_type(
4291 const struct global_parse_data *data,
4292 struct wpa_config *config, int line, const char *pos)
4293{
4294 return wps_dev_type_str2bin(pos, config->device_type);
4295}
4296
4297
4298static int wpa_config_process_os_version(const struct global_parse_data *data,
4299 struct wpa_config *config, int line,
4300 const char *pos)
4301{
4302 if (hexstr2bin(pos, config->os_version, 4)) {
4303 wpa_printf(MSG_ERROR, "Line %d: invalid os_version", line);
4304 return -1;
4305 }
4306 wpa_printf(MSG_DEBUG, "os_version=%08x",
4307 WPA_GET_BE32(config->os_version));
4308 return 0;
4309}
4310
Dmitry Shmidt04949592012-07-19 12:16:46 -07004311
4312static int wpa_config_process_wps_vendor_ext_m1(
4313 const struct global_parse_data *data,
4314 struct wpa_config *config, int line, const char *pos)
4315{
4316 struct wpabuf *tmp;
4317 int len = os_strlen(pos) / 2;
4318 u8 *p;
4319
4320 if (!len) {
4321 wpa_printf(MSG_ERROR, "Line %d: "
4322 "invalid wps_vendor_ext_m1", line);
4323 return -1;
4324 }
4325
4326 tmp = wpabuf_alloc(len);
4327 if (tmp) {
4328 p = wpabuf_put(tmp, len);
4329
4330 if (hexstr2bin(pos, p, len)) {
4331 wpa_printf(MSG_ERROR, "Line %d: "
4332 "invalid wps_vendor_ext_m1", line);
4333 wpabuf_free(tmp);
4334 return -1;
4335 }
4336
4337 wpabuf_free(config->wps_vendor_ext_m1);
4338 config->wps_vendor_ext_m1 = tmp;
4339 } else {
4340 wpa_printf(MSG_ERROR, "Can not allocate "
4341 "memory for wps_vendor_ext_m1");
4342 return -1;
4343 }
4344
4345 return 0;
4346}
4347
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004348#endif /* CONFIG_WPS */
4349
4350#ifdef CONFIG_P2P
4351static int wpa_config_process_sec_device_type(
4352 const struct global_parse_data *data,
4353 struct wpa_config *config, int line, const char *pos)
4354{
4355 int idx;
4356
4357 if (config->num_sec_device_types >= MAX_SEC_DEVICE_TYPES) {
4358 wpa_printf(MSG_ERROR, "Line %d: too many sec_device_type "
4359 "items", line);
4360 return -1;
4361 }
4362
4363 idx = config->num_sec_device_types;
4364
4365 if (wps_dev_type_str2bin(pos, config->sec_device_type[idx]))
4366 return -1;
4367
4368 config->num_sec_device_types++;
4369 return 0;
4370}
Dmitry Shmidt04949592012-07-19 12:16:46 -07004371
4372
4373static int wpa_config_process_p2p_pref_chan(
4374 const struct global_parse_data *data,
4375 struct wpa_config *config, int line, const char *pos)
4376{
4377 struct p2p_channel *pref = NULL, *n;
4378 unsigned int num = 0;
4379 const char *pos2;
4380 u8 op_class, chan;
4381
4382 /* format: class:chan,class:chan,... */
4383
4384 while (*pos) {
4385 op_class = atoi(pos);
4386 pos2 = os_strchr(pos, ':');
4387 if (pos2 == NULL)
4388 goto fail;
4389 pos2++;
4390 chan = atoi(pos2);
4391
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004392 n = os_realloc_array(pref, num + 1,
4393 sizeof(struct p2p_channel));
Dmitry Shmidt04949592012-07-19 12:16:46 -07004394 if (n == NULL)
4395 goto fail;
4396 pref = n;
4397 pref[num].op_class = op_class;
4398 pref[num].chan = chan;
4399 num++;
4400
4401 pos = os_strchr(pos2, ',');
4402 if (pos == NULL)
4403 break;
4404 pos++;
4405 }
4406
4407 os_free(config->p2p_pref_chan);
4408 config->p2p_pref_chan = pref;
4409 config->num_p2p_pref_chan = num;
4410 wpa_hexdump(MSG_DEBUG, "P2P: Preferred class/channel pairs",
4411 (u8 *) config->p2p_pref_chan,
4412 config->num_p2p_pref_chan * sizeof(struct p2p_channel));
4413
4414 return 0;
4415
4416fail:
4417 os_free(pref);
4418 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_pref_chan list", line);
4419 return -1;
4420}
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004421
4422
4423static int wpa_config_process_p2p_no_go_freq(
4424 const struct global_parse_data *data,
4425 struct wpa_config *config, int line, const char *pos)
4426{
4427 int ret;
4428
4429 ret = freq_range_list_parse(&config->p2p_no_go_freq, pos);
4430 if (ret < 0) {
4431 wpa_printf(MSG_ERROR, "Line %d: Invalid p2p_no_go_freq", line);
4432 return -1;
4433 }
4434
4435 wpa_printf(MSG_DEBUG, "P2P: p2p_no_go_freq with %u items",
4436 config->p2p_no_go_freq.num);
4437
4438 return 0;
4439}
4440
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004441#endif /* CONFIG_P2P */
4442
4443
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004444static int wpa_config_process_hessid(
4445 const struct global_parse_data *data,
4446 struct wpa_config *config, int line, const char *pos)
4447{
4448 if (hwaddr_aton2(pos, config->hessid) < 0) {
4449 wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
4450 line, pos);
4451 return -1;
4452 }
4453
4454 return 0;
4455}
4456
4457
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004458static int wpa_config_process_sae_groups(
4459 const struct global_parse_data *data,
4460 struct wpa_config *config, int line, const char *pos)
4461{
4462 int *groups = wpa_config_parse_int_array(pos);
4463 if (groups == NULL) {
4464 wpa_printf(MSG_ERROR, "Line %d: Invalid sae_groups '%s'",
4465 line, pos);
4466 return -1;
4467 }
4468
4469 os_free(config->sae_groups);
4470 config->sae_groups = groups;
4471
4472 return 0;
4473}
4474
4475
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07004476static int wpa_config_process_ap_vendor_elements(
4477 const struct global_parse_data *data,
4478 struct wpa_config *config, int line, const char *pos)
4479{
4480 struct wpabuf *tmp;
4481 int len = os_strlen(pos) / 2;
4482 u8 *p;
4483
4484 if (!len) {
4485 wpa_printf(MSG_ERROR, "Line %d: invalid ap_vendor_elements",
4486 line);
4487 return -1;
4488 }
4489
4490 tmp = wpabuf_alloc(len);
4491 if (tmp) {
4492 p = wpabuf_put(tmp, len);
4493
4494 if (hexstr2bin(pos, p, len)) {
4495 wpa_printf(MSG_ERROR, "Line %d: invalid "
4496 "ap_vendor_elements", line);
4497 wpabuf_free(tmp);
4498 return -1;
4499 }
4500
4501 wpabuf_free(config->ap_vendor_elements);
4502 config->ap_vendor_elements = tmp;
4503 } else {
4504 wpa_printf(MSG_ERROR, "Cannot allocate memory for "
4505 "ap_vendor_elements");
4506 return -1;
4507 }
4508
4509 return 0;
4510}
4511
4512
Dmitry Shmidt56052862013-10-04 10:23:25 -07004513#ifdef CONFIG_CTRL_IFACE
4514static int wpa_config_process_no_ctrl_interface(
4515 const struct global_parse_data *data,
4516 struct wpa_config *config, int line, const char *pos)
4517{
4518 wpa_printf(MSG_DEBUG, "no_ctrl_interface -> ctrl_interface=NULL");
4519 os_free(config->ctrl_interface);
4520 config->ctrl_interface = NULL;
4521 return 0;
4522}
4523#endif /* CONFIG_CTRL_IFACE */
4524
4525
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004526static int wpa_config_get_int(const char *name, struct wpa_config *config,
4527 long offset, char *buf, size_t buflen,
4528 int pretty_print)
4529{
4530 int *val = (int *) (((u8 *) config) + (long) offset);
4531
4532 if (pretty_print)
4533 return os_snprintf(buf, buflen, "%s=%d\n", name, *val);
4534 return os_snprintf(buf, buflen, "%d", *val);
4535}
4536
4537
4538static int wpa_config_get_str(const char *name, struct wpa_config *config,
4539 long offset, char *buf, size_t buflen,
4540 int pretty_print)
4541{
4542 char **val = (char **) (((u8 *) config) + (long) offset);
4543 int res;
4544
4545 if (pretty_print)
4546 res = os_snprintf(buf, buflen, "%s=%s\n", name,
4547 *val ? *val : "null");
4548 else if (!*val)
4549 return -1;
4550 else
4551 res = os_snprintf(buf, buflen, "%s", *val);
4552 if (os_snprintf_error(buflen, res))
4553 res = -1;
4554
4555 return res;
4556}
4557
4558
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07004559#ifdef CONFIG_P2P
4560static int wpa_config_get_ipv4(const char *name, struct wpa_config *config,
4561 long offset, char *buf, size_t buflen,
4562 int pretty_print)
4563{
4564 void *val = ((u8 *) config) + (long) offset;
4565 int res;
4566 char addr[INET_ADDRSTRLEN];
4567
4568 if (!val || !inet_ntop(AF_INET, val, addr, sizeof(addr)))
4569 return -1;
4570
4571 if (pretty_print)
4572 res = os_snprintf(buf, buflen, "%s=%s\n", name, addr);
4573 else
4574 res = os_snprintf(buf, buflen, "%s", addr);
4575
4576 if (os_snprintf_error(buflen, res))
4577 res = -1;
4578
4579 return res;
4580}
4581#endif /* CONFIG_P2P */
4582
4583
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004584#ifdef OFFSET
4585#undef OFFSET
4586#endif /* OFFSET */
4587/* OFFSET: Get offset of a variable within the wpa_config structure */
4588#define OFFSET(v) ((void *) &((struct wpa_config *) 0)->v)
4589
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004590#define FUNC(f) #f, wpa_config_process_ ## f, NULL, OFFSET(f), NULL, NULL
4591#define FUNC_NO_VAR(f) #f, wpa_config_process_ ## f, NULL, NULL, NULL, NULL
4592#define _INT(f) #f, wpa_global_config_parse_int, wpa_config_get_int, OFFSET(f)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004593#define INT(f) _INT(f), NULL, NULL
4594#define INT_RANGE(f, min, max) _INT(f), (void *) min, (void *) max
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004595#define _STR(f) #f, wpa_global_config_parse_str, wpa_config_get_str, OFFSET(f)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004596#define STR(f) _STR(f), NULL, NULL
4597#define STR_RANGE(f, min, max) _STR(f), (void *) min, (void *) max
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004598#define BIN(f) #f, wpa_global_config_parse_bin, NULL, OFFSET(f), NULL, NULL
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07004599#define IPV4(f) #f, wpa_global_config_parse_ipv4, wpa_config_get_ipv4, \
4600 OFFSET(f), NULL, NULL
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004601
4602static const struct global_parse_data global_fields[] = {
4603#ifdef CONFIG_CTRL_IFACE
4604 { STR(ctrl_interface), 0 },
Dmitry Shmidt56052862013-10-04 10:23:25 -07004605 { FUNC_NO_VAR(no_ctrl_interface), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004606 { STR(ctrl_interface_group), 0 } /* deprecated */,
4607#endif /* CONFIG_CTRL_IFACE */
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004608#ifdef CONFIG_MACSEC
4609 { INT_RANGE(eapol_version, 1, 3), 0 },
4610#else /* CONFIG_MACSEC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004611 { INT_RANGE(eapol_version, 1, 2), 0 },
Dmitry Shmidt5a1480c2014-05-12 09:46:02 -07004612#endif /* CONFIG_MACSEC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004613 { INT(ap_scan), 0 },
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08004614 { FUNC(bgscan), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004615#ifdef CONFIG_MESH
4616 { INT(user_mpm), 0 },
4617 { INT_RANGE(max_peer_links, 0, 255), 0 },
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08004618 { INT(mesh_max_inactivity), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004619 { INT(dot11RSNASAERetransPeriod), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004620#endif /* CONFIG_MESH */
Dmitry Shmidt04949592012-07-19 12:16:46 -07004621 { INT(disable_scan_offload), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004622 { INT(fast_reauth), 0 },
4623 { STR(opensc_engine_path), 0 },
4624 { STR(pkcs11_engine_path), 0 },
4625 { STR(pkcs11_module_path), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004626 { STR(openssl_ciphers), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004627 { STR(pcsc_reader), 0 },
4628 { STR(pcsc_pin), 0 },
Dmitry Shmidt051af732013-10-22 13:52:46 -07004629 { INT(external_sim), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004630 { STR(driver_param), 0 },
4631 { INT(dot11RSNAConfigPMKLifetime), 0 },
4632 { INT(dot11RSNAConfigPMKReauthThreshold), 0 },
4633 { INT(dot11RSNAConfigSATimeout), 0 },
4634#ifndef CONFIG_NO_CONFIG_WRITE
4635 { INT(update_config), 0 },
4636#endif /* CONFIG_NO_CONFIG_WRITE */
4637 { FUNC_NO_VAR(load_dynamic_eap), 0 },
4638#ifdef CONFIG_WPS
4639 { FUNC(uuid), CFG_CHANGED_UUID },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004640 { INT_RANGE(auto_uuid, 0, 1), 0 },
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07004641 { STR_RANGE(device_name, 0, WPS_DEV_NAME_MAX_LEN),
4642 CFG_CHANGED_DEVICE_NAME },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004643 { STR_RANGE(manufacturer, 0, 64), CFG_CHANGED_WPS_STRING },
4644 { STR_RANGE(model_name, 0, 32), CFG_CHANGED_WPS_STRING },
4645 { STR_RANGE(model_number, 0, 32), CFG_CHANGED_WPS_STRING },
4646 { STR_RANGE(serial_number, 0, 32), CFG_CHANGED_WPS_STRING },
4647 { FUNC(device_type), CFG_CHANGED_DEVICE_TYPE },
4648 { FUNC(os_version), CFG_CHANGED_OS_VERSION },
4649 { STR(config_methods), CFG_CHANGED_CONFIG_METHODS },
4650 { INT_RANGE(wps_cred_processing, 0, 2), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004651 { FUNC(wps_vendor_ext_m1), CFG_CHANGED_VENDOR_EXTENSION },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004652#endif /* CONFIG_WPS */
4653#ifdef CONFIG_P2P
4654 { FUNC(sec_device_type), CFG_CHANGED_SEC_DEVICE_TYPE },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004655 { INT(p2p_listen_reg_class), CFG_CHANGED_P2P_LISTEN_CHANNEL },
4656 { INT(p2p_listen_channel), CFG_CHANGED_P2P_LISTEN_CHANNEL },
Dmitry Shmidt56052862013-10-04 10:23:25 -07004657 { INT(p2p_oper_reg_class), CFG_CHANGED_P2P_OPER_CHANNEL },
4658 { INT(p2p_oper_channel), CFG_CHANGED_P2P_OPER_CHANNEL },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004659 { INT_RANGE(p2p_go_intent, 0, 15), 0 },
4660 { STR(p2p_ssid_postfix), CFG_CHANGED_P2P_SSID_POSTFIX },
4661 { INT_RANGE(persistent_reconnect, 0, 1), 0 },
4662 { INT_RANGE(p2p_intra_bss, 0, 1), CFG_CHANGED_P2P_INTRA_BSS },
4663 { INT(p2p_group_idle), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004664 { INT_RANGE(p2p_go_freq_change_policy, 0, P2P_GO_FREQ_MOVE_MAX), 0 },
Dmitry Shmidt2271d3f2014-06-23 12:16:31 -07004665 { INT_RANGE(p2p_passphrase_len, 8, 63),
4666 CFG_CHANGED_P2P_PASSPHRASE_LEN },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004667 { FUNC(p2p_pref_chan), CFG_CHANGED_P2P_PREF_CHAN },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004668 { FUNC(p2p_no_go_freq), CFG_CHANGED_P2P_PREF_CHAN },
4669 { INT_RANGE(p2p_add_cli_chan, 0, 1), 0 },
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07004670 { INT_RANGE(p2p_optimize_listen_chan, 0, 1), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004671 { INT(p2p_go_ht40), 0 },
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004672 { INT(p2p_go_vht), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004673 { INT(p2p_disabled), 0 },
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004674 { INT_RANGE(p2p_go_ctwindow, 0, 127), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004675 { INT(p2p_no_group_iface), 0 },
Dmitry Shmidt700a1372013-03-15 14:14:44 -07004676 { INT_RANGE(p2p_ignore_shared_freq, 0, 1), 0 },
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004677 { IPV4(ip_addr_go), 0 },
4678 { IPV4(ip_addr_mask), 0 },
4679 { IPV4(ip_addr_start), 0 },
4680 { IPV4(ip_addr_end), 0 },
Dmitry Shmidta3dc3092015-06-23 11:21:28 -07004681 { INT_RANGE(p2p_cli_probe, 0, 1), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004682#endif /* CONFIG_P2P */
4683 { FUNC(country), CFG_CHANGED_COUNTRY },
4684 { INT(bss_max_count), 0 },
4685 { INT(bss_expiration_age), 0 },
4686 { INT(bss_expiration_scan_count), 0 },
4687 { INT_RANGE(filter_ssids, 0, 1), 0 },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004688 { INT_RANGE(filter_rssi, -100, 0), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004689 { INT(max_num_sta), 0 },
Roshan Pius3a1667e2018-07-03 15:17:14 -07004690 { INT_RANGE(ap_isolate, 0, 1), 0 },
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004691 { INT_RANGE(disassoc_low_ack, 0, 1), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004692#ifdef CONFIG_HS20
4693 { INT_RANGE(hs20, 0, 1), 0 },
4694#endif /* CONFIG_HS20 */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08004695 { INT_RANGE(interworking, 0, 1), 0 },
4696 { FUNC(hessid), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004697 { INT_RANGE(access_network_type, 0, 15), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004698 { INT_RANGE(go_interworking, 0, 1), 0 },
4699 { INT_RANGE(go_access_network_type, 0, 15), 0 },
4700 { INT_RANGE(go_internet, 0, 1), 0 },
4701 { INT_RANGE(go_venue_group, 0, 255), 0 },
4702 { INT_RANGE(go_venue_type, 0, 255), 0 },
Dmitry Shmidt04949592012-07-19 12:16:46 -07004703 { INT_RANGE(pbc_in_m1, 0, 1), 0 },
4704 { STR(autoscan), 0 },
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004705 { INT_RANGE(wps_nfc_dev_pw_id, 0x10, 0xffff),
4706 CFG_CHANGED_NFC_PASSWORD_TOKEN },
4707 { BIN(wps_nfc_dh_pubkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4708 { BIN(wps_nfc_dh_privkey), CFG_CHANGED_NFC_PASSWORD_TOKEN },
4709 { BIN(wps_nfc_dev_pw), CFG_CHANGED_NFC_PASSWORD_TOKEN },
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004710 { STR(ext_password_backend), CFG_CHANGED_EXT_PW_BACKEND },
4711 { INT(p2p_go_max_inactivity), 0 },
4712 { INT_RANGE(auto_interworking, 0, 1), 0 },
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08004713 { INT(okc), 0 },
4714 { INT(pmf), 0 },
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08004715 { FUNC(sae_groups), 0 },
Dmitry Shmidt7a5e50a2013-03-05 12:37:16 -08004716 { INT(dtim_period), 0 },
4717 { INT(beacon_int), 0 },
Dmitry Shmidt0ccb66e2013-03-29 16:41:28 -07004718 { FUNC(ap_vendor_elements), 0 },
Dmitry Shmidt444d5672013-04-01 13:08:44 -07004719 { INT_RANGE(ignore_old_scan_res, 0, 1), 0 },
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004720 { FUNC(freq_list), 0 },
Dmitry Shmidtea69e842013-05-13 14:52:28 -07004721 { INT(scan_cur_freq), 0 },
Dmitry Shmidt51b6ea82013-05-08 10:42:09 -07004722 { INT(sched_scan_interval), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004723 { INT(sched_scan_start_delay), 0 },
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08004724 { INT(tdls_external_control), 0},
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08004725 { STR(osu_dir), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004726 { STR(wowlan_triggers), CFG_CHANGED_WOWLAN_TRIGGERS },
Dmitry Shmidt09f57ba2014-06-10 16:07:13 -07004727 { INT(p2p_search_delay), 0},
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07004728 { INT(mac_addr), 0 },
4729 { INT(rand_addr_lifetime), 0 },
4730 { INT(preassoc_mac_addr), 0 },
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08004731 { INT(key_mgmt_offload), 0},
Dmitry Shmidt807291d2015-01-27 13:40:23 -08004732 { INT(passive_scan), 0 },
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004733 { INT(reassoc_same_bss_optim), 0 },
Dmitry Shmidt7a53dbb2015-06-11 13:13:53 -07004734 { INT(wps_priority), 0},
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004735#ifdef CONFIG_FST
4736 { STR_RANGE(fst_group_id, 1, FST_MAX_GROUP_ID_LEN), 0 },
4737 { INT_RANGE(fst_priority, 1, FST_MAX_PRIO_VALUE), 0 },
4738 { INT_RANGE(fst_llt, 1, FST_MAX_LLT_MS), 0 },
4739#endif /* CONFIG_FST */
Paul Stewart092955c2017-02-06 09:13:09 -08004740 { INT_RANGE(cert_in_cb, 0, 1), 0 },
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004741 { INT_RANGE(wpa_rsc_relaxation, 0, 1), 0 },
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -08004742 { STR(sched_scan_plans), CFG_CHANGED_SCHED_SCAN_PLANS },
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08004743#ifdef CONFIG_MBO
4744 { STR(non_pref_chan), 0 },
4745 { INT_RANGE(mbo_cell_capa, MBO_CELL_CAPA_AVAILABLE,
4746 MBO_CELL_CAPA_NOT_SUPPORTED), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004747 { INT_RANGE(disassoc_imminent_rssi_threshold, -120, 0), 0 },
4748 { INT_RANGE(oce, 0, 3), 0 },
4749#endif /* CONFIG_MBO */
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07004750 { INT(gas_address3), 0 },
Dmitry Shmidt7d175302016-09-06 13:11:34 -07004751 { INT_RANGE(ftm_responder, 0, 1), 0 },
4752 { INT_RANGE(ftm_initiator, 0, 1), 0 },
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08004753 { INT(gas_rand_addr_lifetime), 0 },
4754 { INT_RANGE(gas_rand_mac_addr, 0, 2), 0 },
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07004755 { INT_RANGE(dpp_config_processing, 0, 2), 0 },
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004756};
4757
4758#undef FUNC
4759#undef _INT
4760#undef INT
4761#undef INT_RANGE
4762#undef _STR
4763#undef STR
4764#undef STR_RANGE
Dmitry Shmidt04949592012-07-19 12:16:46 -07004765#undef BIN
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08004766#undef IPV4
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07004767#define NUM_GLOBAL_FIELDS ARRAY_SIZE(global_fields)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004768
4769
Dmitry Shmidt7f656022015-02-25 14:36:37 -08004770int wpa_config_dump_values(struct wpa_config *config, char *buf, size_t buflen)
4771{
4772 int result = 0;
4773 size_t i;
4774
4775 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4776 const struct global_parse_data *field = &global_fields[i];
4777 int tmp;
4778
4779 if (!field->get)
4780 continue;
4781
4782 tmp = field->get(field->name, config, (long) field->param1,
4783 buf, buflen, 1);
4784 if (tmp < 0)
4785 return -1;
4786 buf += tmp;
4787 buflen -= tmp;
4788 result += tmp;
4789 }
4790 return result;
4791}
4792
4793
4794int wpa_config_get_value(const char *name, struct wpa_config *config,
4795 char *buf, size_t buflen)
4796{
4797 size_t i;
4798
4799 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4800 const struct global_parse_data *field = &global_fields[i];
4801
4802 if (os_strcmp(name, field->name) != 0)
4803 continue;
4804 if (!field->get)
4805 break;
4806 return field->get(name, config, (long) field->param1,
4807 buf, buflen, 0);
4808 }
4809
4810 return -1;
4811}
4812
4813
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08004814int wpa_config_get_num_global_field_names(void)
4815{
4816 return NUM_GLOBAL_FIELDS;
4817}
4818
4819
4820const char * wpa_config_get_global_field_name(unsigned int i, int *no_var)
4821{
4822 if (i >= NUM_GLOBAL_FIELDS)
4823 return NULL;
4824
4825 if (no_var)
4826 *no_var = !global_fields[i].param1;
4827 return global_fields[i].name;
4828}
4829
4830
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004831int wpa_config_process_global(struct wpa_config *config, char *pos, int line)
4832{
4833 size_t i;
4834 int ret = 0;
4835
4836 for (i = 0; i < NUM_GLOBAL_FIELDS; i++) {
4837 const struct global_parse_data *field = &global_fields[i];
4838 size_t flen = os_strlen(field->name);
4839 if (os_strncmp(pos, field->name, flen) != 0 ||
4840 pos[flen] != '=')
4841 continue;
4842
4843 if (field->parser(field, config, line, pos + flen + 1)) {
4844 wpa_printf(MSG_ERROR, "Line %d: failed to "
4845 "parse '%s'.", line, pos);
4846 ret = -1;
4847 }
Dmitry Shmidtf8623282013-02-20 14:34:59 -08004848 if (field->changed_flag == CFG_CHANGED_NFC_PASSWORD_TOKEN)
4849 config->wps_nfc_pw_from_config = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004850 config->changed_parameters |= field->changed_flag;
4851 break;
4852 }
4853 if (i == NUM_GLOBAL_FIELDS) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07004854#ifdef CONFIG_AP
4855 if (os_strncmp(pos, "wmm_ac_", 7) == 0) {
4856 char *tmp = os_strchr(pos, '=');
4857 if (tmp == NULL) {
4858 if (line < 0)
4859 return -1;
4860 wpa_printf(MSG_ERROR, "Line %d: invalid line "
4861 "'%s'", line, pos);
4862 return -1;
4863 }
4864 *tmp++ = '\0';
4865 if (hostapd_config_wmm_ac(config->wmm_ac_params, pos,
4866 tmp)) {
4867 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
4868 "AC item", line);
4869 return -1;
4870 }
4871 }
4872#endif /* CONFIG_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004873 if (line < 0)
4874 return -1;
4875 wpa_printf(MSG_ERROR, "Line %d: unknown global field '%s'.",
4876 line, pos);
4877 ret = -1;
4878 }
4879
4880 return ret;
4881}