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