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