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