0554f1275cad37b6b8a4212a4e24be4baab56aac
[libeap.git] / hostapd / config_file.c
1 /*
2  * hostapd / Configuration file parser
3  * Copyright (c) 2003-2009, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16 #ifndef CONFIG_NATIVE_WINDOWS
17 #include <grp.h>
18 #endif /* CONFIG_NATIVE_WINDOWS */
19
20 #include "common.h"
21 #include "uuid.h"
22 #include "common/ieee802_11_defs.h"
23 #include "drivers/driver.h"
24 #include "eap_server/eap.h"
25 #include "radius/radius_client.h"
26 #include "wpa.h"
27 #include "config.h"
28
29
30 extern struct wpa_driver_ops *wpa_drivers[];
31
32
33 #ifndef CONFIG_NO_VLAN
34 static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
35                                          const char *fname)
36 {
37         FILE *f;
38         char buf[128], *pos, *pos2;
39         int line = 0, vlan_id;
40         struct hostapd_vlan *vlan;
41
42         f = fopen(fname, "r");
43         if (!f) {
44                 wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
45                 return -1;
46         }
47
48         while (fgets(buf, sizeof(buf), f)) {
49                 line++;
50
51                 if (buf[0] == '#')
52                         continue;
53                 pos = buf;
54                 while (*pos != '\0') {
55                         if (*pos == '\n') {
56                                 *pos = '\0';
57                                 break;
58                         }
59                         pos++;
60                 }
61                 if (buf[0] == '\0')
62                         continue;
63
64                 if (buf[0] == '*') {
65                         vlan_id = VLAN_ID_WILDCARD;
66                         pos = buf + 1;
67                 } else {
68                         vlan_id = strtol(buf, &pos, 10);
69                         if (buf == pos || vlan_id < 1 ||
70                             vlan_id > MAX_VLAN_ID) {
71                                 wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
72                                            "line %d in '%s'", line, fname);
73                                 fclose(f);
74                                 return -1;
75                         }
76                 }
77
78                 while (*pos == ' ' || *pos == '\t')
79                         pos++;
80                 pos2 = pos;
81                 while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
82                         pos2++;
83                 *pos2 = '\0';
84                 if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
85                         wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
86                                    "in '%s'", line, fname);
87                         fclose(f);
88                         return -1;
89                 }
90
91                 vlan = os_malloc(sizeof(*vlan));
92                 if (vlan == NULL) {
93                         wpa_printf(MSG_ERROR, "Out of memory while reading "
94                                    "VLAN interfaces from '%s'", fname);
95                         fclose(f);
96                         return -1;
97                 }
98
99                 os_memset(vlan, 0, sizeof(*vlan));
100                 vlan->vlan_id = vlan_id;
101                 os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
102                 if (bss->vlan_tail)
103                         bss->vlan_tail->next = vlan;
104                 else
105                         bss->vlan = vlan;
106                 bss->vlan_tail = vlan;
107         }
108
109         fclose(f);
110
111         return 0;
112 }
113 #endif /* CONFIG_NO_VLAN */
114
115
116 static int hostapd_acl_comp(const void *a, const void *b)
117 {
118         const struct mac_acl_entry *aa = a;
119         const struct mac_acl_entry *bb = b;
120         return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
121 }
122
123
124 static int hostapd_config_read_maclist(const char *fname,
125                                        struct mac_acl_entry **acl, int *num)
126 {
127         FILE *f;
128         char buf[128], *pos;
129         int line = 0;
130         u8 addr[ETH_ALEN];
131         struct mac_acl_entry *newacl;
132         int vlan_id;
133
134         if (!fname)
135                 return 0;
136
137         f = fopen(fname, "r");
138         if (!f) {
139                 wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
140                 return -1;
141         }
142
143         while (fgets(buf, sizeof(buf), f)) {
144                 line++;
145
146                 if (buf[0] == '#')
147                         continue;
148                 pos = buf;
149                 while (*pos != '\0') {
150                         if (*pos == '\n') {
151                                 *pos = '\0';
152                                 break;
153                         }
154                         pos++;
155                 }
156                 if (buf[0] == '\0')
157                         continue;
158
159                 if (hwaddr_aton(buf, addr)) {
160                         wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
161                                    "line %d in '%s'", buf, line, fname);
162                         fclose(f);
163                         return -1;
164                 }
165
166                 vlan_id = 0;
167                 pos = buf;
168                 while (*pos != '\0' && *pos != ' ' && *pos != '\t')
169                         pos++;
170                 while (*pos == ' ' || *pos == '\t')
171                         pos++;
172                 if (*pos != '\0')
173                         vlan_id = atoi(pos);
174
175                 newacl = os_realloc(*acl, (*num + 1) * sizeof(**acl));
176                 if (newacl == NULL) {
177                         wpa_printf(MSG_ERROR, "MAC list reallocation failed");
178                         fclose(f);
179                         return -1;
180                 }
181
182                 *acl = newacl;
183                 os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
184                 (*acl)[*num].vlan_id = vlan_id;
185                 (*num)++;
186         }
187
188         fclose(f);
189
190         qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
191
192         return 0;
193 }
194
195
196 #ifdef EAP_SERVER
197 static int hostapd_config_read_eap_user(const char *fname,
198                                         struct hostapd_bss_config *conf)
199 {
200         FILE *f;
201         char buf[512], *pos, *start, *pos2;
202         int line = 0, ret = 0, num_methods;
203         struct hostapd_eap_user *user, *tail = NULL;
204
205         if (!fname)
206                 return 0;
207
208         f = fopen(fname, "r");
209         if (!f) {
210                 wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
211                 return -1;
212         }
213
214         /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
215         while (fgets(buf, sizeof(buf), f)) {
216                 line++;
217
218                 if (buf[0] == '#')
219                         continue;
220                 pos = buf;
221                 while (*pos != '\0') {
222                         if (*pos == '\n') {
223                                 *pos = '\0';
224                                 break;
225                         }
226                         pos++;
227                 }
228                 if (buf[0] == '\0')
229                         continue;
230
231                 user = NULL;
232
233                 if (buf[0] != '"' && buf[0] != '*') {
234                         wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
235                                    "start) on line %d in '%s'", line, fname);
236                         goto failed;
237                 }
238
239                 user = os_zalloc(sizeof(*user));
240                 if (user == NULL) {
241                         wpa_printf(MSG_ERROR, "EAP user allocation failed");
242                         goto failed;
243                 }
244                 user->force_version = -1;
245
246                 if (buf[0] == '*') {
247                         pos = buf;
248                 } else {
249                         pos = buf + 1;
250                         start = pos;
251                         while (*pos != '"' && *pos != '\0')
252                                 pos++;
253                         if (*pos == '\0') {
254                                 wpa_printf(MSG_ERROR, "Invalid EAP identity "
255                                            "(no \" in end) on line %d in '%s'",
256                                            line, fname);
257                                 goto failed;
258                         }
259
260                         user->identity = os_malloc(pos - start);
261                         if (user->identity == NULL) {
262                                 wpa_printf(MSG_ERROR, "Failed to allocate "
263                                            "memory for EAP identity");
264                                 goto failed;
265                         }
266                         os_memcpy(user->identity, start, pos - start);
267                         user->identity_len = pos - start;
268
269                         if (pos[0] == '"' && pos[1] == '*') {
270                                 user->wildcard_prefix = 1;
271                                 pos++;
272                         }
273                 }
274                 pos++;
275                 while (*pos == ' ' || *pos == '\t')
276                         pos++;
277
278                 if (*pos == '\0') {
279                         wpa_printf(MSG_ERROR, "No EAP method on line %d in "
280                                    "'%s'", line, fname);
281                         goto failed;
282                 }
283
284                 start = pos;
285                 while (*pos != ' ' && *pos != '\t' && *pos != '\0')
286                         pos++;
287                 if (*pos == '\0') {
288                         pos = NULL;
289                 } else {
290                         *pos = '\0';
291                         pos++;
292                 }
293                 num_methods = 0;
294                 while (*start) {
295                         char *pos3 = os_strchr(start, ',');
296                         if (pos3) {
297                                 *pos3++ = '\0';
298                         }
299                         user->methods[num_methods].method =
300                                 eap_server_get_type(
301                                         start,
302                                         &user->methods[num_methods].vendor);
303                         if (user->methods[num_methods].vendor ==
304                             EAP_VENDOR_IETF &&
305                             user->methods[num_methods].method == EAP_TYPE_NONE)
306                         {
307                                 if (os_strcmp(start, "TTLS-PAP") == 0) {
308                                         user->ttls_auth |= EAP_TTLS_AUTH_PAP;
309                                         goto skip_eap;
310                                 }
311                                 if (os_strcmp(start, "TTLS-CHAP") == 0) {
312                                         user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
313                                         goto skip_eap;
314                                 }
315                                 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
316                                         user->ttls_auth |=
317                                                 EAP_TTLS_AUTH_MSCHAP;
318                                         goto skip_eap;
319                                 }
320                                 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
321                                         user->ttls_auth |=
322                                                 EAP_TTLS_AUTH_MSCHAPV2;
323                                         goto skip_eap;
324                                 }
325                                 wpa_printf(MSG_ERROR, "Unsupported EAP type "
326                                            "'%s' on line %d in '%s'",
327                                            start, line, fname);
328                                 goto failed;
329                         }
330
331                         num_methods++;
332                         if (num_methods >= EAP_USER_MAX_METHODS)
333                                 break;
334                 skip_eap:
335                         if (pos3 == NULL)
336                                 break;
337                         start = pos3;
338                 }
339                 if (num_methods == 0 && user->ttls_auth == 0) {
340                         wpa_printf(MSG_ERROR, "No EAP types configured on "
341                                    "line %d in '%s'", line, fname);
342                         goto failed;
343                 }
344
345                 if (pos == NULL)
346                         goto done;
347
348                 while (*pos == ' ' || *pos == '\t')
349                         pos++;
350                 if (*pos == '\0')
351                         goto done;
352
353                 if (os_strncmp(pos, "[ver=0]", 7) == 0) {
354                         user->force_version = 0;
355                         goto done;
356                 }
357
358                 if (os_strncmp(pos, "[ver=1]", 7) == 0) {
359                         user->force_version = 1;
360                         goto done;
361                 }
362
363                 if (os_strncmp(pos, "[2]", 3) == 0) {
364                         user->phase2 = 1;
365                         goto done;
366                 }
367
368                 if (*pos == '"') {
369                         pos++;
370                         start = pos;
371                         while (*pos != '"' && *pos != '\0')
372                                 pos++;
373                         if (*pos == '\0') {
374                                 wpa_printf(MSG_ERROR, "Invalid EAP password "
375                                            "(no \" in end) on line %d in '%s'",
376                                            line, fname);
377                                 goto failed;
378                         }
379
380                         user->password = os_malloc(pos - start);
381                         if (user->password == NULL) {
382                                 wpa_printf(MSG_ERROR, "Failed to allocate "
383                                            "memory for EAP password");
384                                 goto failed;
385                         }
386                         os_memcpy(user->password, start, pos - start);
387                         user->password_len = pos - start;
388
389                         pos++;
390                 } else if (os_strncmp(pos, "hash:", 5) == 0) {
391                         pos += 5;
392                         pos2 = pos;
393                         while (*pos2 != '\0' && *pos2 != ' ' &&
394                                *pos2 != '\t' && *pos2 != '#')
395                                 pos2++;
396                         if (pos2 - pos != 32) {
397                                 wpa_printf(MSG_ERROR, "Invalid password hash "
398                                            "on line %d in '%s'", line, fname);
399                                 goto failed;
400                         }
401                         user->password = os_malloc(16);
402                         if (user->password == NULL) {
403                                 wpa_printf(MSG_ERROR, "Failed to allocate "
404                                            "memory for EAP password hash");
405                                 goto failed;
406                         }
407                         if (hexstr2bin(pos, user->password, 16) < 0) {
408                                 wpa_printf(MSG_ERROR, "Invalid hash password "
409                                            "on line %d in '%s'", line, fname);
410                                 goto failed;
411                         }
412                         user->password_len = 16;
413                         user->password_hash = 1;
414                         pos = pos2;
415                 } else {
416                         pos2 = pos;
417                         while (*pos2 != '\0' && *pos2 != ' ' &&
418                                *pos2 != '\t' && *pos2 != '#')
419                                 pos2++;
420                         if ((pos2 - pos) & 1) {
421                                 wpa_printf(MSG_ERROR, "Invalid hex password "
422                                            "on line %d in '%s'", line, fname);
423                                 goto failed;
424                         }
425                         user->password = os_malloc((pos2 - pos) / 2);
426                         if (user->password == NULL) {
427                                 wpa_printf(MSG_ERROR, "Failed to allocate "
428                                            "memory for EAP password");
429                                 goto failed;
430                         }
431                         if (hexstr2bin(pos, user->password,
432                                        (pos2 - pos) / 2) < 0) {
433                                 wpa_printf(MSG_ERROR, "Invalid hex password "
434                                            "on line %d in '%s'", line, fname);
435                                 goto failed;
436                         }
437                         user->password_len = (pos2 - pos) / 2;
438                         pos = pos2;
439                 }
440
441                 while (*pos == ' ' || *pos == '\t')
442                         pos++;
443                 if (os_strncmp(pos, "[2]", 3) == 0) {
444                         user->phase2 = 1;
445                 }
446
447         done:
448                 if (tail == NULL) {
449                         tail = conf->eap_user = user;
450                 } else {
451                         tail->next = user;
452                         tail = user;
453                 }
454                 continue;
455
456         failed:
457                 if (user) {
458                         os_free(user->password);
459                         os_free(user->identity);
460                         os_free(user);
461                 }
462                 ret = -1;
463                 break;
464         }
465
466         fclose(f);
467
468         return ret;
469 }
470 #endif /* EAP_SERVER */
471
472
473 #ifndef CONFIG_NO_RADIUS
474 static int
475 hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
476                                 int *num_server, const char *val, int def_port,
477                                 struct hostapd_radius_server **curr_serv)
478 {
479         struct hostapd_radius_server *nserv;
480         int ret;
481         static int server_index = 1;
482
483         nserv = os_realloc(*server, (*num_server + 1) * sizeof(*nserv));
484         if (nserv == NULL)
485                 return -1;
486
487         *server = nserv;
488         nserv = &nserv[*num_server];
489         (*num_server)++;
490         (*curr_serv) = nserv;
491
492         os_memset(nserv, 0, sizeof(*nserv));
493         nserv->port = def_port;
494         ret = hostapd_parse_ip_addr(val, &nserv->addr);
495         nserv->index = server_index++;
496
497         return ret;
498 }
499 #endif /* CONFIG_NO_RADIUS */
500
501
502 static int hostapd_config_parse_key_mgmt(int line, const char *value)
503 {
504         int val = 0, last;
505         char *start, *end, *buf;
506
507         buf = os_strdup(value);
508         if (buf == NULL)
509                 return -1;
510         start = buf;
511
512         while (*start != '\0') {
513                 while (*start == ' ' || *start == '\t')
514                         start++;
515                 if (*start == '\0')
516                         break;
517                 end = start;
518                 while (*end != ' ' && *end != '\t' && *end != '\0')
519                         end++;
520                 last = *end == '\0';
521                 *end = '\0';
522                 if (os_strcmp(start, "WPA-PSK") == 0)
523                         val |= WPA_KEY_MGMT_PSK;
524                 else if (os_strcmp(start, "WPA-EAP") == 0)
525                         val |= WPA_KEY_MGMT_IEEE8021X;
526 #ifdef CONFIG_IEEE80211R
527                 else if (os_strcmp(start, "FT-PSK") == 0)
528                         val |= WPA_KEY_MGMT_FT_PSK;
529                 else if (os_strcmp(start, "FT-EAP") == 0)
530                         val |= WPA_KEY_MGMT_FT_IEEE8021X;
531 #endif /* CONFIG_IEEE80211R */
532 #ifdef CONFIG_IEEE80211W
533                 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
534                         val |= WPA_KEY_MGMT_PSK_SHA256;
535                 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
536                         val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
537 #endif /* CONFIG_IEEE80211W */
538                 else {
539                         wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
540                                    line, start);
541                         os_free(buf);
542                         return -1;
543                 }
544
545                 if (last)
546                         break;
547                 start = end + 1;
548         }
549
550         os_free(buf);
551         if (val == 0) {
552                 wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
553                            "configured.", line);
554                 return -1;
555         }
556
557         return val;
558 }
559
560
561 static int hostapd_config_parse_cipher(int line, const char *value)
562 {
563         int val = 0, last;
564         char *start, *end, *buf;
565
566         buf = os_strdup(value);
567         if (buf == NULL)
568                 return -1;
569         start = buf;
570
571         while (*start != '\0') {
572                 while (*start == ' ' || *start == '\t')
573                         start++;
574                 if (*start == '\0')
575                         break;
576                 end = start;
577                 while (*end != ' ' && *end != '\t' && *end != '\0')
578                         end++;
579                 last = *end == '\0';
580                 *end = '\0';
581                 if (os_strcmp(start, "CCMP") == 0)
582                         val |= WPA_CIPHER_CCMP;
583                 else if (os_strcmp(start, "TKIP") == 0)
584                         val |= WPA_CIPHER_TKIP;
585                 else if (os_strcmp(start, "WEP104") == 0)
586                         val |= WPA_CIPHER_WEP104;
587                 else if (os_strcmp(start, "WEP40") == 0)
588                         val |= WPA_CIPHER_WEP40;
589                 else if (os_strcmp(start, "NONE") == 0)
590                         val |= WPA_CIPHER_NONE;
591                 else {
592                         wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
593                                    line, start);
594                         os_free(buf);
595                         return -1;
596                 }
597
598                 if (last)
599                         break;
600                 start = end + 1;
601         }
602         os_free(buf);
603
604         if (val == 0) {
605                 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
606                            line);
607                 return -1;
608         }
609         return val;
610 }
611
612
613 static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
614                                    char *val)
615 {
616         size_t len = os_strlen(val);
617
618         if (keyidx < 0 || keyidx > 3 || wep->key[keyidx] != NULL)
619                 return -1;
620
621         if (val[0] == '"') {
622                 if (len < 2 || val[len - 1] != '"')
623                         return -1;
624                 len -= 2;
625                 wep->key[keyidx] = os_malloc(len);
626                 if (wep->key[keyidx] == NULL)
627                         return -1;
628                 os_memcpy(wep->key[keyidx], val + 1, len);
629                 wep->len[keyidx] = len;
630         } else {
631                 if (len & 1)
632                         return -1;
633                 len /= 2;
634                 wep->key[keyidx] = os_malloc(len);
635                 if (wep->key[keyidx] == NULL)
636                         return -1;
637                 wep->len[keyidx] = len;
638                 if (hexstr2bin(val, wep->key[keyidx], len) < 0)
639                         return -1;
640         }
641
642         wep->keys_set++;
643
644         return 0;
645 }
646
647
648 static int hostapd_parse_rates(int **rate_list, char *val)
649 {
650         int *list;
651         int count;
652         char *pos, *end;
653
654         os_free(*rate_list);
655         *rate_list = NULL;
656
657         pos = val;
658         count = 0;
659         while (*pos != '\0') {
660                 if (*pos == ' ')
661                         count++;
662                 pos++;
663         }
664
665         list = os_malloc(sizeof(int) * (count + 2));
666         if (list == NULL)
667                 return -1;
668         pos = val;
669         count = 0;
670         while (*pos != '\0') {
671                 end = os_strchr(pos, ' ');
672                 if (end)
673                         *end = '\0';
674
675                 list[count++] = atoi(pos);
676                 if (!end)
677                         break;
678                 pos = end + 1;
679         }
680         list[count] = -1;
681
682         *rate_list = list;
683         return 0;
684 }
685
686
687 static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
688 {
689         struct hostapd_bss_config *bss;
690
691         if (*ifname == '\0')
692                 return -1;
693
694         bss = os_realloc(conf->bss, (conf->num_bss + 1) *
695                          sizeof(struct hostapd_bss_config));
696         if (bss == NULL) {
697                 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
698                            "multi-BSS entry");
699                 return -1;
700         }
701         conf->bss = bss;
702
703         bss = &(conf->bss[conf->num_bss]);
704         os_memset(bss, 0, sizeof(*bss));
705         bss->radius = os_zalloc(sizeof(*bss->radius));
706         if (bss->radius == NULL) {
707                 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
708                            "multi-BSS RADIUS data");
709                 return -1;
710         }
711
712         conf->num_bss++;
713         conf->last_bss = bss;
714
715         hostapd_config_defaults_bss(bss);
716         os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
717         os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
718
719         return 0;
720 }
721
722
723 /* convert floats with one decimal place to value*10 int, i.e.,
724  * "1.5" will return 15 */
725 static int hostapd_config_read_int10(const char *value)
726 {
727         int i, d;
728         char *pos;
729
730         i = atoi(value);
731         pos = os_strchr(value, '.');
732         d = 0;
733         if (pos) {
734                 pos++;
735                 if (*pos >= '0' && *pos <= '9')
736                         d = *pos - '0';
737         }
738
739         return i * 10 + d;
740 }
741
742
743 static int valid_cw(int cw)
744 {
745         return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
746                 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023);
747 }
748
749
750 enum {
751         IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
752         IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
753         IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
754         IEEE80211_TX_QUEUE_DATA3 = 3, /* used for EDCA AC_BK data */
755         IEEE80211_TX_QUEUE_DATA4 = 4,
756         IEEE80211_TX_QUEUE_AFTER_BEACON = 6,
757         IEEE80211_TX_QUEUE_BEACON = 7
758 };
759
760 static int hostapd_config_tx_queue(struct hostapd_config *conf, char *name,
761                                    char *val)
762 {
763         int num;
764         char *pos;
765         struct hostapd_tx_queue_params *queue;
766
767         /* skip 'tx_queue_' prefix */
768         pos = name + 9;
769         if (os_strncmp(pos, "data", 4) == 0 &&
770             pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
771                 num = pos[4] - '0';
772                 pos += 6;
773         } else if (os_strncmp(pos, "after_beacon_", 13) == 0) {
774                 num = IEEE80211_TX_QUEUE_AFTER_BEACON;
775                 pos += 13;
776         } else if (os_strncmp(pos, "beacon_", 7) == 0) {
777                 num = IEEE80211_TX_QUEUE_BEACON;
778                 pos += 7;
779         } else {
780                 wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
781                 return -1;
782         }
783
784         queue = &conf->tx_queue[num];
785
786         if (os_strcmp(pos, "aifs") == 0) {
787                 queue->aifs = atoi(val);
788                 if (queue->aifs < 0 || queue->aifs > 255) {
789                         wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
790                                    queue->aifs);
791                         return -1;
792                 }
793         } else if (os_strcmp(pos, "cwmin") == 0) {
794                 queue->cwmin = atoi(val);
795                 if (!valid_cw(queue->cwmin)) {
796                         wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
797                                    queue->cwmin);
798                         return -1;
799                 }
800         } else if (os_strcmp(pos, "cwmax") == 0) {
801                 queue->cwmax = atoi(val);
802                 if (!valid_cw(queue->cwmax)) {
803                         wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
804                                    queue->cwmax);
805                         return -1;
806                 }
807         } else if (os_strcmp(pos, "burst") == 0) {
808                 queue->burst = hostapd_config_read_int10(val);
809         } else {
810                 wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
811                 return -1;
812         }
813
814         queue->configured = 1;
815
816         return 0;
817 }
818
819
820 static int hostapd_config_wmm_ac(struct hostapd_config *conf, char *name,
821                                  char *val)
822 {
823         int num, v;
824         char *pos;
825         struct hostapd_wmm_ac_params *ac;
826
827         /* skip 'wme_ac_' or 'wmm_ac_' prefix */
828         pos = name + 7;
829         if (os_strncmp(pos, "be_", 3) == 0) {
830                 num = 0;
831                 pos += 3;
832         } else if (os_strncmp(pos, "bk_", 3) == 0) {
833                 num = 1;
834                 pos += 3;
835         } else if (os_strncmp(pos, "vi_", 3) == 0) {
836                 num = 2;
837                 pos += 3;
838         } else if (os_strncmp(pos, "vo_", 3) == 0) {
839                 num = 3;
840                 pos += 3;
841         } else {
842                 wpa_printf(MSG_ERROR, "Unknown WMM name '%s'", pos);
843                 return -1;
844         }
845
846         ac = &conf->wmm_ac_params[num];
847
848         if (os_strcmp(pos, "aifs") == 0) {
849                 v = atoi(val);
850                 if (v < 1 || v > 255) {
851                         wpa_printf(MSG_ERROR, "Invalid AIFS value %d", v);
852                         return -1;
853                 }
854                 ac->aifs = v;
855         } else if (os_strcmp(pos, "cwmin") == 0) {
856                 v = atoi(val);
857                 if (v < 0 || v > 12) {
858                         wpa_printf(MSG_ERROR, "Invalid cwMin value %d", v);
859                         return -1;
860                 }
861                 ac->cwmin = v;
862         } else if (os_strcmp(pos, "cwmax") == 0) {
863                 v = atoi(val);
864                 if (v < 0 || v > 12) {
865                         wpa_printf(MSG_ERROR, "Invalid cwMax value %d", v);
866                         return -1;
867                 }
868                 ac->cwmax = v;
869         } else if (os_strcmp(pos, "txop_limit") == 0) {
870                 v = atoi(val);
871                 if (v < 0 || v > 0xffff) {
872                         wpa_printf(MSG_ERROR, "Invalid txop value %d", v);
873                         return -1;
874                 }
875                 ac->txop_limit = v;
876         } else if (os_strcmp(pos, "acm") == 0) {
877                 v = atoi(val);
878                 if (v < 0 || v > 1) {
879                         wpa_printf(MSG_ERROR, "Invalid acm value %d", v);
880                         return -1;
881                 }
882                 ac->admission_control_mandatory = v;
883         } else {
884                 wpa_printf(MSG_ERROR, "Unknown wmm_ac_ field '%s'", pos);
885                 return -1;
886         }
887
888         return 0;
889 }
890
891
892 #ifdef CONFIG_IEEE80211R
893 static int add_r0kh(struct hostapd_bss_config *bss, char *value)
894 {
895         struct ft_remote_r0kh *r0kh;
896         char *pos, *next;
897
898         r0kh = os_zalloc(sizeof(*r0kh));
899         if (r0kh == NULL)
900                 return -1;
901
902         /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
903         pos = value;
904         next = os_strchr(pos, ' ');
905         if (next)
906                 *next++ = '\0';
907         if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
908                 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
909                 os_free(r0kh);
910                 return -1;
911         }
912
913         pos = next;
914         next = os_strchr(pos, ' ');
915         if (next)
916                 *next++ = '\0';
917         if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
918                 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
919                 os_free(r0kh);
920                 return -1;
921         }
922         r0kh->id_len = next - pos - 1;
923         os_memcpy(r0kh->id, pos, r0kh->id_len);
924
925         pos = next;
926         if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
927                 wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
928                 os_free(r0kh);
929                 return -1;
930         }
931
932         r0kh->next = bss->r0kh_list;
933         bss->r0kh_list = r0kh;
934
935         return 0;
936 }
937
938
939 static int add_r1kh(struct hostapd_bss_config *bss, char *value)
940 {
941         struct ft_remote_r1kh *r1kh;
942         char *pos, *next;
943
944         r1kh = os_zalloc(sizeof(*r1kh));
945         if (r1kh == NULL)
946                 return -1;
947
948         /* 02:01:02:03:04:05 02:01:02:03:04:05
949          * 000102030405060708090a0b0c0d0e0f */
950         pos = value;
951         next = os_strchr(pos, ' ');
952         if (next)
953                 *next++ = '\0';
954         if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
955                 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
956                 os_free(r1kh);
957                 return -1;
958         }
959
960         pos = next;
961         next = os_strchr(pos, ' ');
962         if (next)
963                 *next++ = '\0';
964         if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
965                 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
966                 os_free(r1kh);
967                 return -1;
968         }
969
970         pos = next;
971         if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
972                 wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
973                 os_free(r1kh);
974                 return -1;
975         }
976
977         r1kh->next = bss->r1kh_list;
978         bss->r1kh_list = r1kh;
979
980         return 0;
981 }
982 #endif /* CONFIG_IEEE80211R */
983
984
985 #ifdef CONFIG_IEEE80211N
986 static int hostapd_config_ht_capab(struct hostapd_config *conf,
987                                    const char *capab)
988 {
989         if (os_strstr(capab, "[LDPC]"))
990                 conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
991         if (os_strstr(capab, "[HT40-]")) {
992                 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
993                 conf->secondary_channel = -1;
994         }
995         if (os_strstr(capab, "[HT40+]")) {
996                 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
997                 conf->secondary_channel = 1;
998         }
999         if (os_strstr(capab, "[SMPS-STATIC]")) {
1000                 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1001                 conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
1002         }
1003         if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
1004                 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1005                 conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
1006         }
1007         if (os_strstr(capab, "[GF]"))
1008                 conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
1009         if (os_strstr(capab, "[SHORT-GI-20]"))
1010                 conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
1011         if (os_strstr(capab, "[SHORT-GI-40]"))
1012                 conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
1013         if (os_strstr(capab, "[TX-STBC]"))
1014                 conf->ht_capab |= HT_CAP_INFO_TX_STBC;
1015         if (os_strstr(capab, "[RX-STBC1]")) {
1016                 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1017                 conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
1018         }
1019         if (os_strstr(capab, "[RX-STBC12]")) {
1020                 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1021                 conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
1022         }
1023         if (os_strstr(capab, "[RX-STBC123]")) {
1024                 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1025                 conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
1026         }
1027         if (os_strstr(capab, "[DELAYED-BA]"))
1028                 conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
1029         if (os_strstr(capab, "[MAX-AMSDU-7935]"))
1030                 conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
1031         if (os_strstr(capab, "[DSSS_CCK-40]"))
1032                 conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
1033         if (os_strstr(capab, "[PSMP]"))
1034                 conf->ht_capab |= HT_CAP_INFO_PSMP_SUPP;
1035         if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
1036                 conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
1037
1038         return 0;
1039 }
1040 #endif /* CONFIG_IEEE80211N */
1041
1042
1043 static int hostapd_config_check_bss(struct hostapd_bss_config *bss,
1044                                     struct hostapd_config *conf)
1045 {
1046         if (bss->ieee802_1x && !bss->eap_server &&
1047             !bss->radius->auth_servers) {
1048                 wpa_printf(MSG_ERROR, "Invalid IEEE 802.1X configuration (no "
1049                            "EAP authenticator configured).");
1050                 return -1;
1051         }
1052
1053         if (bss->wpa && (bss->wpa_key_mgmt & WPA_KEY_MGMT_PSK) &&
1054             bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
1055             bss->ssid.wpa_psk_file == NULL) {
1056                 wpa_printf(MSG_ERROR, "WPA-PSK enabled, but PSK or passphrase "
1057                            "is not configured.");
1058                 return -1;
1059         }
1060
1061         if (hostapd_mac_comp_empty(bss->bssid) != 0) {
1062                 size_t i;
1063
1064                 for (i = 0; i < conf->num_bss; i++) {
1065                         if ((&conf->bss[i] != bss) &&
1066                             (hostapd_mac_comp(conf->bss[i].bssid,
1067                                               bss->bssid) == 0)) {
1068                                 wpa_printf(MSG_ERROR, "Duplicate BSSID " MACSTR
1069                                            " on interface '%s' and '%s'.",
1070                                            MAC2STR(bss->bssid),
1071                                            conf->bss[i].iface, bss->iface);
1072                                 return -1;
1073                         }
1074                 }
1075         }
1076
1077 #ifdef CONFIG_IEEE80211R
1078         if ((bss->wpa_key_mgmt &
1079              (WPA_KEY_MGMT_FT_PSK | WPA_KEY_MGMT_FT_IEEE8021X)) &&
1080             (bss->nas_identifier == NULL ||
1081              os_strlen(bss->nas_identifier) < 1 ||
1082              os_strlen(bss->nas_identifier) > FT_R0KH_ID_MAX_LEN)) {
1083                 wpa_printf(MSG_ERROR, "FT (IEEE 802.11r) requires "
1084                            "nas_identifier to be configured as a 1..48 octet "
1085                            "string");
1086                 return -1;
1087         }
1088 #endif /* CONFIG_IEEE80211R */
1089
1090 #ifdef CONFIG_IEEE80211N
1091         if (conf->ieee80211n && bss->wpa &&
1092             !(bss->wpa_pairwise & WPA_CIPHER_CCMP) &&
1093             !(bss->rsn_pairwise & WPA_CIPHER_CCMP)) {
1094                 wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WPA/WPA2 "
1095                            "requires CCMP to be enabled");
1096                 return -1;
1097         }
1098 #endif /* CONFIG_IEEE80211N */
1099
1100         return 0;
1101 }
1102
1103
1104 static int hostapd_config_check(struct hostapd_config *conf)
1105 {
1106         size_t i;
1107
1108         if (conf->ieee80211d && (!conf->country[0] || !conf->country[1])) {
1109                 wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11d without "
1110                            "setting the country_code");
1111                 return -1;
1112         }
1113
1114         for (i = 0; i < conf->num_bss; i++) {
1115                 if (hostapd_config_check_bss(&conf->bss[i], conf))
1116                         return -1;
1117         }
1118
1119         return 0;
1120 }
1121
1122
1123 /**
1124  * hostapd_config_read - Read and parse a configuration file
1125  * @fname: Configuration file name (including path, if needed)
1126  * Returns: Allocated configuration data structure
1127  */
1128 struct hostapd_config * hostapd_config_read(const char *fname)
1129 {
1130         struct hostapd_config *conf;
1131         struct hostapd_bss_config *bss;
1132         FILE *f;
1133         char buf[256], *pos;
1134         int line = 0;
1135         int errors = 0;
1136         int pairwise;
1137         size_t i;
1138
1139         f = fopen(fname, "r");
1140         if (f == NULL) {
1141                 wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
1142                            "for reading.", fname);
1143                 return NULL;
1144         }
1145
1146         conf = hostapd_config_defaults();
1147         if (conf == NULL) {
1148                 fclose(f);
1149                 return NULL;
1150         }
1151         bss = conf->last_bss = conf->bss;
1152
1153         while (fgets(buf, sizeof(buf), f)) {
1154                 bss = conf->last_bss;
1155                 line++;
1156
1157                 if (buf[0] == '#')
1158                         continue;
1159                 pos = buf;
1160                 while (*pos != '\0') {
1161                         if (*pos == '\n') {
1162                                 *pos = '\0';
1163                                 break;
1164                         }
1165                         pos++;
1166                 }
1167                 if (buf[0] == '\0')
1168                         continue;
1169
1170                 pos = os_strchr(buf, '=');
1171                 if (pos == NULL) {
1172                         wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
1173                                    line, buf);
1174                         errors++;
1175                         continue;
1176                 }
1177                 *pos = '\0';
1178                 pos++;
1179
1180                 if (os_strcmp(buf, "interface") == 0) {
1181                         os_strlcpy(conf->bss[0].iface, pos,
1182                                    sizeof(conf->bss[0].iface));
1183                 } else if (os_strcmp(buf, "bridge") == 0) {
1184                         os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
1185                 } else if (os_strcmp(buf, "driver") == 0) {
1186                         int j;
1187                         /* clear to get error below if setting is invalid */
1188                         conf->driver = NULL;
1189                         for (j = 0; wpa_drivers[j]; j++) {
1190                                 if (os_strcmp(pos, wpa_drivers[j]->name) == 0)
1191                                 {
1192                                         conf->driver = wpa_drivers[j];
1193                                         break;
1194                                 }
1195                         }
1196                         if (conf->driver == NULL) {
1197                                 wpa_printf(MSG_ERROR, "Line %d: invalid/"
1198                                            "unknown driver '%s'", line, pos);
1199                                 errors++;
1200                         }
1201                 } else if (os_strcmp(buf, "debug") == 0) {
1202                         wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' "
1203                                    "configuration variable is not used "
1204                                    "anymore", line);
1205                 } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
1206                         bss->logger_syslog_level = atoi(pos);
1207                 } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
1208                         bss->logger_stdout_level = atoi(pos);
1209                 } else if (os_strcmp(buf, "logger_syslog") == 0) {
1210                         bss->logger_syslog = atoi(pos);
1211                 } else if (os_strcmp(buf, "logger_stdout") == 0) {
1212                         bss->logger_stdout = atoi(pos);
1213                 } else if (os_strcmp(buf, "dump_file") == 0) {
1214                         bss->dump_log_name = os_strdup(pos);
1215                 } else if (os_strcmp(buf, "ssid") == 0) {
1216                         bss->ssid.ssid_len = os_strlen(pos);
1217                         if (bss->ssid.ssid_len > HOSTAPD_MAX_SSID_LEN ||
1218                             bss->ssid.ssid_len < 1) {
1219                                 wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
1220                                            "'%s'", line, pos);
1221                                 errors++;
1222                         } else {
1223                                 os_memcpy(bss->ssid.ssid, pos,
1224                                           bss->ssid.ssid_len);
1225                                 bss->ssid.ssid[bss->ssid.ssid_len] = '\0';
1226                                 bss->ssid.ssid_set = 1;
1227                         }
1228                 } else if (os_strcmp(buf, "macaddr_acl") == 0) {
1229                         bss->macaddr_acl = atoi(pos);
1230                         if (bss->macaddr_acl != ACCEPT_UNLESS_DENIED &&
1231                             bss->macaddr_acl != DENY_UNLESS_ACCEPTED &&
1232                             bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
1233                                 wpa_printf(MSG_ERROR, "Line %d: unknown "
1234                                            "macaddr_acl %d",
1235                                            line, bss->macaddr_acl);
1236                         }
1237                 } else if (os_strcmp(buf, "accept_mac_file") == 0) {
1238                         if (hostapd_config_read_maclist(pos, &bss->accept_mac,
1239                                                         &bss->num_accept_mac))
1240                         {
1241                                 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1242                                            "read accept_mac_file '%s'",
1243                                            line, pos);
1244                                 errors++;
1245                         }
1246                 } else if (os_strcmp(buf, "deny_mac_file") == 0) {
1247                         if (hostapd_config_read_maclist(pos, &bss->deny_mac,
1248                                                         &bss->num_deny_mac)) {
1249                                 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1250                                            "read deny_mac_file '%s'",
1251                                            line, pos);
1252                                 errors++;
1253                         }
1254                 } else if (os_strcmp(buf, "wds_sta") == 0) {
1255                         bss->wds_sta = atoi(pos);
1256                 } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
1257                         bss->ap_max_inactivity = atoi(pos);
1258                 } else if (os_strcmp(buf, "country_code") == 0) {
1259                         os_memcpy(conf->country, pos, 2);
1260                         /* FIX: make this configurable */
1261                         conf->country[2] = ' ';
1262                 } else if (os_strcmp(buf, "ieee80211d") == 0) {
1263                         conf->ieee80211d = atoi(pos);
1264                 } else if (os_strcmp(buf, "ieee8021x") == 0) {
1265                         bss->ieee802_1x = atoi(pos);
1266                 } else if (os_strcmp(buf, "eapol_version") == 0) {
1267                         bss->eapol_version = atoi(pos);
1268                         if (bss->eapol_version < 1 ||
1269                             bss->eapol_version > 2) {
1270                                 wpa_printf(MSG_ERROR, "Line %d: invalid EAPOL "
1271                                            "version (%d): '%s'.",
1272                                            line, bss->eapol_version, pos);
1273                                 errors++;
1274                         } else
1275                                 wpa_printf(MSG_DEBUG, "eapol_version=%d",
1276                                            bss->eapol_version);
1277 #ifdef EAP_SERVER
1278                 } else if (os_strcmp(buf, "eap_authenticator") == 0) {
1279                         bss->eap_server = atoi(pos);
1280                         wpa_printf(MSG_ERROR, "Line %d: obsolete "
1281                                    "eap_authenticator used; this has been "
1282                                    "renamed to eap_server", line);
1283                 } else if (os_strcmp(buf, "eap_server") == 0) {
1284                         bss->eap_server = atoi(pos);
1285                 } else if (os_strcmp(buf, "eap_user_file") == 0) {
1286                         if (hostapd_config_read_eap_user(pos, bss))
1287                                 errors++;
1288                 } else if (os_strcmp(buf, "ca_cert") == 0) {
1289                         os_free(bss->ca_cert);
1290                         bss->ca_cert = os_strdup(pos);
1291                 } else if (os_strcmp(buf, "server_cert") == 0) {
1292                         os_free(bss->server_cert);
1293                         bss->server_cert = os_strdup(pos);
1294                 } else if (os_strcmp(buf, "private_key") == 0) {
1295                         os_free(bss->private_key);
1296                         bss->private_key = os_strdup(pos);
1297                 } else if (os_strcmp(buf, "private_key_passwd") == 0) {
1298                         os_free(bss->private_key_passwd);
1299                         bss->private_key_passwd = os_strdup(pos);
1300                 } else if (os_strcmp(buf, "check_crl") == 0) {
1301                         bss->check_crl = atoi(pos);
1302                 } else if (os_strcmp(buf, "dh_file") == 0) {
1303                         os_free(bss->dh_file);
1304                         bss->dh_file = os_strdup(pos);
1305 #ifdef EAP_SERVER_FAST
1306                 } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
1307                         os_free(bss->pac_opaque_encr_key);
1308                         bss->pac_opaque_encr_key = os_malloc(16);
1309                         if (bss->pac_opaque_encr_key == NULL) {
1310                                 wpa_printf(MSG_ERROR, "Line %d: No memory for "
1311                                            "pac_opaque_encr_key", line);
1312                                 errors++;
1313                         } else if (hexstr2bin(pos, bss->pac_opaque_encr_key,
1314                                               16)) {
1315                                 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1316                                            "pac_opaque_encr_key", line);
1317                                 errors++;
1318                         }
1319                 } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
1320                         size_t idlen = os_strlen(pos);
1321                         if (idlen & 1) {
1322                                 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1323                                            "eap_fast_a_id", line);
1324                                 errors++;
1325                         } else {
1326                                 os_free(bss->eap_fast_a_id);
1327                                 bss->eap_fast_a_id = os_malloc(idlen / 2);
1328                                 if (bss->eap_fast_a_id == NULL ||
1329                                     hexstr2bin(pos, bss->eap_fast_a_id,
1330                                                idlen / 2)) {
1331                                         wpa_printf(MSG_ERROR, "Line %d: "
1332                                                    "Failed to parse "
1333                                                    "eap_fast_a_id", line);
1334                                         errors++;
1335                                 } else
1336                                         bss->eap_fast_a_id_len = idlen / 2;
1337                         }
1338                 } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
1339                         os_free(bss->eap_fast_a_id_info);
1340                         bss->eap_fast_a_id_info = os_strdup(pos);
1341                 } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
1342                         bss->eap_fast_prov = atoi(pos);
1343                 } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
1344                         bss->pac_key_lifetime = atoi(pos);
1345                 } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
1346                         bss->pac_key_refresh_time = atoi(pos);
1347 #endif /* EAP_SERVER_FAST */
1348 #ifdef EAP_SERVER_SIM
1349                 } else if (os_strcmp(buf, "eap_sim_db") == 0) {
1350                         os_free(bss->eap_sim_db);
1351                         bss->eap_sim_db = os_strdup(pos);
1352                 } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
1353                         bss->eap_sim_aka_result_ind = atoi(pos);
1354 #endif /* EAP_SERVER_SIM */
1355 #ifdef EAP_SERVER_TNC
1356                 } else if (os_strcmp(buf, "tnc") == 0) {
1357                         bss->tnc = atoi(pos);
1358 #endif /* EAP_SERVER_TNC */
1359 #endif /* EAP_SERVER */
1360                 } else if (os_strcmp(buf, "eap_message") == 0) {
1361                         char *term;
1362                         bss->eap_req_id_text = os_strdup(pos);
1363                         if (bss->eap_req_id_text == NULL) {
1364                                 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1365                                            "allocate memory for "
1366                                            "eap_req_id_text", line);
1367                                 errors++;
1368                                 continue;
1369                         }
1370                         bss->eap_req_id_text_len =
1371                                 os_strlen(bss->eap_req_id_text);
1372                         term = os_strstr(bss->eap_req_id_text, "\\0");
1373                         if (term) {
1374                                 *term++ = '\0';
1375                                 os_memmove(term, term + 1,
1376                                            bss->eap_req_id_text_len -
1377                                            (term - bss->eap_req_id_text) - 1);
1378                                 bss->eap_req_id_text_len--;
1379                         }
1380                 } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
1381                         bss->default_wep_key_len = atoi(pos);
1382                         if (bss->default_wep_key_len > 13) {
1383                                 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
1384                                            "key len %lu (= %lu bits)", line,
1385                                            (unsigned long)
1386                                            bss->default_wep_key_len,
1387                                            (unsigned long)
1388                                            bss->default_wep_key_len * 8);
1389                                 errors++;
1390                         }
1391                 } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
1392                         bss->individual_wep_key_len = atoi(pos);
1393                         if (bss->individual_wep_key_len < 0 ||
1394                             bss->individual_wep_key_len > 13) {
1395                                 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
1396                                            "key len %d (= %d bits)", line,
1397                                            bss->individual_wep_key_len,
1398                                            bss->individual_wep_key_len * 8);
1399                                 errors++;
1400                         }
1401                 } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
1402                         bss->wep_rekeying_period = atoi(pos);
1403                         if (bss->wep_rekeying_period < 0) {
1404                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1405                                            "period %d",
1406                                            line, bss->wep_rekeying_period);
1407                                 errors++;
1408                         }
1409                 } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
1410                         bss->eap_reauth_period = atoi(pos);
1411                         if (bss->eap_reauth_period < 0) {
1412                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1413                                            "period %d",
1414                                            line, bss->eap_reauth_period);
1415                                 errors++;
1416                         }
1417                 } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
1418                         bss->eapol_key_index_workaround = atoi(pos);
1419 #ifdef CONFIG_IAPP
1420                 } else if (os_strcmp(buf, "iapp_interface") == 0) {
1421                         bss->ieee802_11f = 1;
1422                         os_strlcpy(bss->iapp_iface, pos,
1423                                    sizeof(bss->iapp_iface));
1424 #endif /* CONFIG_IAPP */
1425                 } else if (os_strcmp(buf, "own_ip_addr") == 0) {
1426                         if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
1427                                 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1428                                            "address '%s'", line, pos);
1429                                 errors++;
1430                         }
1431                 } else if (os_strcmp(buf, "nas_identifier") == 0) {
1432                         bss->nas_identifier = os_strdup(pos);
1433 #ifndef CONFIG_NO_RADIUS
1434                 } else if (os_strcmp(buf, "auth_server_addr") == 0) {
1435                         if (hostapd_config_read_radius_addr(
1436                                     &bss->radius->auth_servers,
1437                                     &bss->radius->num_auth_servers, pos, 1812,
1438                                     &bss->radius->auth_server)) {
1439                                 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1440                                            "address '%s'", line, pos);
1441                                 errors++;
1442                         }
1443                 } else if (bss->radius->auth_server &&
1444                            os_strcmp(buf, "auth_server_port") == 0) {
1445                         bss->radius->auth_server->port = atoi(pos);
1446                 } else if (bss->radius->auth_server &&
1447                            os_strcmp(buf, "auth_server_shared_secret") == 0) {
1448                         int len = os_strlen(pos);
1449                         if (len == 0) {
1450                                 /* RFC 2865, Ch. 3 */
1451                                 wpa_printf(MSG_ERROR, "Line %d: empty shared "
1452                                            "secret is not allowed.", line);
1453                                 errors++;
1454                         }
1455                         bss->radius->auth_server->shared_secret =
1456                                 (u8 *) os_strdup(pos);
1457                         bss->radius->auth_server->shared_secret_len = len;
1458                 } else if (os_strcmp(buf, "acct_server_addr") == 0) {
1459                         if (hostapd_config_read_radius_addr(
1460                                     &bss->radius->acct_servers,
1461                                     &bss->radius->num_acct_servers, pos, 1813,
1462                                     &bss->radius->acct_server)) {
1463                                 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1464                                            "address '%s'", line, pos);
1465                                 errors++;
1466                         }
1467                 } else if (bss->radius->acct_server &&
1468                            os_strcmp(buf, "acct_server_port") == 0) {
1469                         bss->radius->acct_server->port = atoi(pos);
1470                 } else if (bss->radius->acct_server &&
1471                            os_strcmp(buf, "acct_server_shared_secret") == 0) {
1472                         int len = os_strlen(pos);
1473                         if (len == 0) {
1474                                 /* RFC 2865, Ch. 3 */
1475                                 wpa_printf(MSG_ERROR, "Line %d: empty shared "
1476                                            "secret is not allowed.", line);
1477                                 errors++;
1478                         }
1479                         bss->radius->acct_server->shared_secret =
1480                                 (u8 *) os_strdup(pos);
1481                         bss->radius->acct_server->shared_secret_len = len;
1482                 } else if (os_strcmp(buf, "radius_retry_primary_interval") ==
1483                            0) {
1484                         bss->radius->retry_primary_interval = atoi(pos);
1485                 } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0)
1486                 {
1487                         bss->acct_interim_interval = atoi(pos);
1488 #endif /* CONFIG_NO_RADIUS */
1489                 } else if (os_strcmp(buf, "auth_algs") == 0) {
1490                         bss->auth_algs = atoi(pos);
1491                         if (bss->auth_algs == 0) {
1492                                 wpa_printf(MSG_ERROR, "Line %d: no "
1493                                            "authentication algorithms allowed",
1494                                            line);
1495                                 errors++;
1496                         }
1497                 } else if (os_strcmp(buf, "max_num_sta") == 0) {
1498                         bss->max_num_sta = atoi(pos);
1499                         if (bss->max_num_sta < 0 ||
1500                             bss->max_num_sta > MAX_STA_COUNT) {
1501                                 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1502                                            "max_num_sta=%d; allowed range "
1503                                            "0..%d", line, bss->max_num_sta,
1504                                            MAX_STA_COUNT);
1505                                 errors++;
1506                         }
1507                 } else if (os_strcmp(buf, "wpa") == 0) {
1508                         bss->wpa = atoi(pos);
1509                 } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
1510                         bss->wpa_group_rekey = atoi(pos);
1511                 } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
1512                         bss->wpa_strict_rekey = atoi(pos);
1513                 } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
1514                         bss->wpa_gmk_rekey = atoi(pos);
1515                 } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
1516                         bss->wpa_ptk_rekey = atoi(pos);
1517                 } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
1518                         int len = os_strlen(pos);
1519                         if (len < 8 || len > 63) {
1520                                 wpa_printf(MSG_ERROR, "Line %d: invalid WPA "
1521                                            "passphrase length %d (expected "
1522                                            "8..63)", line, len);
1523                                 errors++;
1524                         } else {
1525                                 os_free(bss->ssid.wpa_passphrase);
1526                                 bss->ssid.wpa_passphrase = os_strdup(pos);
1527                         }
1528                 } else if (os_strcmp(buf, "wpa_psk") == 0) {
1529                         os_free(bss->ssid.wpa_psk);
1530                         bss->ssid.wpa_psk =
1531                                 os_zalloc(sizeof(struct hostapd_wpa_psk));
1532                         if (bss->ssid.wpa_psk == NULL)
1533                                 errors++;
1534                         else if (hexstr2bin(pos, bss->ssid.wpa_psk->psk,
1535                                             PMK_LEN) ||
1536                                  pos[PMK_LEN * 2] != '\0') {
1537                                 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK "
1538                                            "'%s'.", line, pos);
1539                                 errors++;
1540                         } else {
1541                                 bss->ssid.wpa_psk->group = 1;
1542                         }
1543                 } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
1544                         os_free(bss->ssid.wpa_psk_file);
1545                         bss->ssid.wpa_psk_file = os_strdup(pos);
1546                         if (!bss->ssid.wpa_psk_file) {
1547                                 wpa_printf(MSG_ERROR, "Line %d: allocation "
1548                                            "failed", line);
1549                                 errors++;
1550                         }
1551                 } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
1552                         bss->wpa_key_mgmt =
1553                                 hostapd_config_parse_key_mgmt(line, pos);
1554                         if (bss->wpa_key_mgmt == -1)
1555                                 errors++;
1556                 } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
1557                         bss->wpa_pairwise =
1558                                 hostapd_config_parse_cipher(line, pos);
1559                         if (bss->wpa_pairwise == -1 ||
1560                             bss->wpa_pairwise == 0)
1561                                 errors++;
1562                         else if (bss->wpa_pairwise &
1563                                  (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
1564                                   WPA_CIPHER_WEP104)) {
1565                                 wpa_printf(MSG_ERROR, "Line %d: unsupported "
1566                                            "pairwise cipher suite '%s'",
1567                                            bss->wpa_pairwise, pos);
1568                                 errors++;
1569                         }
1570                 } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
1571                         bss->rsn_pairwise =
1572                                 hostapd_config_parse_cipher(line, pos);
1573                         if (bss->rsn_pairwise == -1 ||
1574                             bss->rsn_pairwise == 0)
1575                                 errors++;
1576                         else if (bss->rsn_pairwise &
1577                                  (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
1578                                   WPA_CIPHER_WEP104)) {
1579                                 wpa_printf(MSG_ERROR, "Line %d: unsupported "
1580                                            "pairwise cipher suite '%s'",
1581                                            bss->rsn_pairwise, pos);
1582                                 errors++;
1583                         }
1584 #ifdef CONFIG_RSN_PREAUTH
1585                 } else if (os_strcmp(buf, "rsn_preauth") == 0) {
1586                         bss->rsn_preauth = atoi(pos);
1587                 } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
1588                         bss->rsn_preauth_interfaces = os_strdup(pos);
1589 #endif /* CONFIG_RSN_PREAUTH */
1590 #ifdef CONFIG_PEERKEY
1591                 } else if (os_strcmp(buf, "peerkey") == 0) {
1592                         bss->peerkey = atoi(pos);
1593 #endif /* CONFIG_PEERKEY */
1594 #ifdef CONFIG_IEEE80211R
1595                 } else if (os_strcmp(buf, "mobility_domain") == 0) {
1596                         if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
1597                             hexstr2bin(pos, bss->mobility_domain,
1598                                        MOBILITY_DOMAIN_ID_LEN) != 0) {
1599                                 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
1600                                            "mobility_domain '%s'", line, pos);
1601                                 errors++;
1602                                 continue;
1603                         }
1604                 } else if (os_strcmp(buf, "r1_key_holder") == 0) {
1605                         if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
1606                             hexstr2bin(pos, bss->r1_key_holder,
1607                                        FT_R1KH_ID_LEN) != 0) {
1608                                 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
1609                                            "r1_key_holder '%s'", line, pos);
1610                                 errors++;
1611                                 continue;
1612                         }
1613                 } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
1614                         bss->r0_key_lifetime = atoi(pos);
1615                 } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
1616                         bss->reassociation_deadline = atoi(pos);
1617                 } else if (os_strcmp(buf, "r0kh") == 0) {
1618                         if (add_r0kh(bss, pos) < 0) {
1619                                 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
1620                                            "r0kh '%s'", line, pos);
1621                                 errors++;
1622                                 continue;
1623                         }
1624                 } else if (os_strcmp(buf, "r1kh") == 0) {
1625                         if (add_r1kh(bss, pos) < 0) {
1626                                 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
1627                                            "r1kh '%s'", line, pos);
1628                                 errors++;
1629                                 continue;
1630                         }
1631                 } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
1632                         bss->pmk_r1_push = atoi(pos);
1633 #endif /* CONFIG_IEEE80211R */
1634 #ifndef CONFIG_NO_CTRL_IFACE
1635                 } else if (os_strcmp(buf, "ctrl_interface") == 0) {
1636                         os_free(bss->ctrl_interface);
1637                         bss->ctrl_interface = os_strdup(pos);
1638                 } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
1639 #ifndef CONFIG_NATIVE_WINDOWS
1640                         struct group *grp;
1641                         char *endp;
1642                         const char *group = pos;
1643
1644                         grp = getgrnam(group);
1645                         if (grp) {
1646                                 bss->ctrl_interface_gid = grp->gr_gid;
1647                                 bss->ctrl_interface_gid_set = 1;
1648                                 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
1649                                            " (from group name '%s')",
1650                                            bss->ctrl_interface_gid, group);
1651                                 continue;
1652                         }
1653
1654                         /* Group name not found - try to parse this as gid */
1655                         bss->ctrl_interface_gid = strtol(group, &endp, 10);
1656                         if (*group == '\0' || *endp != '\0') {
1657                                 wpa_printf(MSG_DEBUG, "Line %d: Invalid group "
1658                                            "'%s'", line, group);
1659                                 errors++;
1660                                 continue;
1661                         }
1662                         bss->ctrl_interface_gid_set = 1;
1663                         wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
1664                                    bss->ctrl_interface_gid);
1665 #endif /* CONFIG_NATIVE_WINDOWS */
1666 #endif /* CONFIG_NO_CTRL_IFACE */
1667 #ifdef RADIUS_SERVER
1668                 } else if (os_strcmp(buf, "radius_server_clients") == 0) {
1669                         os_free(bss->radius_server_clients);
1670                         bss->radius_server_clients = os_strdup(pos);
1671                 } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
1672                         bss->radius_server_auth_port = atoi(pos);
1673                 } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
1674                         bss->radius_server_ipv6 = atoi(pos);
1675 #endif /* RADIUS_SERVER */
1676                 } else if (os_strcmp(buf, "test_socket") == 0) {
1677                         os_free(bss->test_socket);
1678                         bss->test_socket = os_strdup(pos);
1679                 } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
1680                         bss->use_pae_group_addr = atoi(pos);
1681                 } else if (os_strcmp(buf, "hw_mode") == 0) {
1682                         if (os_strcmp(pos, "a") == 0)
1683                                 conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
1684                         else if (os_strcmp(pos, "b") == 0)
1685                                 conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
1686                         else if (os_strcmp(pos, "g") == 0)
1687                                 conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
1688                         else {
1689                                 wpa_printf(MSG_ERROR, "Line %d: unknown "
1690                                            "hw_mode '%s'", line, pos);
1691                                 errors++;
1692                         }
1693                 } else if (os_strcmp(buf, "channel") == 0) {
1694                         conf->channel = atoi(pos);
1695                 } else if (os_strcmp(buf, "beacon_int") == 0) {
1696                         int val = atoi(pos);
1697                         /* MIB defines range as 1..65535, but very small values
1698                          * cause problems with the current implementation.
1699                          * Since it is unlikely that this small numbers are
1700                          * useful in real life scenarios, do not allow beacon
1701                          * period to be set below 15 TU. */
1702                         if (val < 15 || val > 65535) {
1703                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1704                                            "beacon_int %d (expected "
1705                                            "15..65535)", line, val);
1706                                 errors++;
1707                         } else
1708                                 conf->beacon_int = val;
1709                 } else if (os_strcmp(buf, "dtim_period") == 0) {
1710                         bss->dtim_period = atoi(pos);
1711                         if (bss->dtim_period < 1 || bss->dtim_period > 255) {
1712                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1713                                            "dtim_period %d",
1714                                            line, bss->dtim_period);
1715                                 errors++;
1716                         }
1717                 } else if (os_strcmp(buf, "rts_threshold") == 0) {
1718                         conf->rts_threshold = atoi(pos);
1719                         if (conf->rts_threshold < 0 ||
1720                             conf->rts_threshold > 2347) {
1721                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1722                                            "rts_threshold %d",
1723                                            line, conf->rts_threshold);
1724                                 errors++;
1725                         }
1726                 } else if (os_strcmp(buf, "fragm_threshold") == 0) {
1727                         conf->fragm_threshold = atoi(pos);
1728                         if (conf->fragm_threshold < 256 ||
1729                             conf->fragm_threshold > 2346) {
1730                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1731                                            "fragm_threshold %d",
1732                                            line, conf->fragm_threshold);
1733                                 errors++;
1734                         }
1735                 } else if (os_strcmp(buf, "send_probe_response") == 0) {
1736                         int val = atoi(pos);
1737                         if (val != 0 && val != 1) {
1738                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1739                                            "send_probe_response %d (expected "
1740                                            "0 or 1)", line, val);
1741                         } else
1742                                 conf->send_probe_response = val;
1743                 } else if (os_strcmp(buf, "supported_rates") == 0) {
1744                         if (hostapd_parse_rates(&conf->supported_rates, pos)) {
1745                                 wpa_printf(MSG_ERROR, "Line %d: invalid rate "
1746                                            "list", line);
1747                                 errors++;
1748                         }
1749                 } else if (os_strcmp(buf, "basic_rates") == 0) {
1750                         if (hostapd_parse_rates(&conf->basic_rates, pos)) {
1751                                 wpa_printf(MSG_ERROR, "Line %d: invalid rate "
1752                                            "list", line);
1753                                 errors++;
1754                         }
1755                 } else if (os_strcmp(buf, "preamble") == 0) {
1756                         if (atoi(pos))
1757                                 conf->preamble = SHORT_PREAMBLE;
1758                         else
1759                                 conf->preamble = LONG_PREAMBLE;
1760                 } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
1761                         bss->ignore_broadcast_ssid = atoi(pos);
1762                 } else if (os_strcmp(buf, "wep_default_key") == 0) {
1763                         bss->ssid.wep.idx = atoi(pos);
1764                         if (bss->ssid.wep.idx > 3) {
1765                                 wpa_printf(MSG_ERROR, "Invalid "
1766                                            "wep_default_key index %d",
1767                                            bss->ssid.wep.idx);
1768                                 errors++;
1769                         }
1770                 } else if (os_strcmp(buf, "wep_key0") == 0 ||
1771                            os_strcmp(buf, "wep_key1") == 0 ||
1772                            os_strcmp(buf, "wep_key2") == 0 ||
1773                            os_strcmp(buf, "wep_key3") == 0) {
1774                         if (hostapd_config_read_wep(&bss->ssid.wep,
1775                                                     buf[7] - '0', pos)) {
1776                                 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
1777                                            "key '%s'", line, buf);
1778                                 errors++;
1779                         }
1780 #ifndef CONFIG_NO_VLAN
1781                 } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
1782                         bss->ssid.dynamic_vlan = atoi(pos);
1783                 } else if (os_strcmp(buf, "vlan_file") == 0) {
1784                         if (hostapd_config_read_vlan_file(bss, pos)) {
1785                                 wpa_printf(MSG_ERROR, "Line %d: failed to "
1786                                            "read VLAN file '%s'", line, pos);
1787                                 errors++;
1788                         }
1789 #ifdef CONFIG_FULL_DYNAMIC_VLAN
1790                 } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
1791                         bss->ssid.vlan_tagged_interface = os_strdup(pos);
1792 #endif /* CONFIG_FULL_DYNAMIC_VLAN */
1793 #endif /* CONFIG_NO_VLAN */
1794                 } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
1795                         conf->ap_table_max_size = atoi(pos);
1796                 } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
1797                         conf->ap_table_expiration_time = atoi(pos);
1798                 } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
1799                         if (hostapd_config_tx_queue(conf, buf, pos)) {
1800                                 wpa_printf(MSG_ERROR, "Line %d: invalid TX "
1801                                            "queue item", line);
1802                                 errors++;
1803                         }
1804                 } else if (os_strcmp(buf, "wme_enabled") == 0 ||
1805                            os_strcmp(buf, "wmm_enabled") == 0) {
1806                         bss->wmm_enabled = atoi(pos);
1807                 } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
1808                            os_strncmp(buf, "wmm_ac_", 7) == 0) {
1809                         if (hostapd_config_wmm_ac(conf, buf, pos)) {
1810                                 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
1811                                            "ac item", line);
1812                                 errors++;
1813                         }
1814                 } else if (os_strcmp(buf, "bss") == 0) {
1815                         if (hostapd_config_bss(conf, pos)) {
1816                                 wpa_printf(MSG_ERROR, "Line %d: invalid bss "
1817                                            "item", line);
1818                                 errors++;
1819                         }
1820                 } else if (os_strcmp(buf, "bssid") == 0) {
1821                         if (hwaddr_aton(pos, bss->bssid)) {
1822                                 wpa_printf(MSG_ERROR, "Line %d: invalid bssid "
1823                                            "item", line);
1824                                 errors++;
1825                         }
1826 #ifdef CONFIG_IEEE80211W
1827                 } else if (os_strcmp(buf, "ieee80211w") == 0) {
1828                         bss->ieee80211w = atoi(pos);
1829                 } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
1830                         bss->assoc_sa_query_max_timeout = atoi(pos);
1831                         if (bss->assoc_sa_query_max_timeout == 0) {
1832                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1833                                            "assoc_sa_query_max_timeout", line);
1834                                 errors++;
1835                         }
1836                 } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0)
1837                 {
1838                         bss->assoc_sa_query_retry_timeout = atoi(pos);
1839                         if (bss->assoc_sa_query_retry_timeout == 0) {
1840                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1841                                            "assoc_sa_query_retry_timeout",
1842                                            line);
1843                                 errors++;
1844                         }
1845 #endif /* CONFIG_IEEE80211W */
1846 #ifdef CONFIG_IEEE80211N
1847                 } else if (os_strcmp(buf, "ieee80211n") == 0) {
1848                         conf->ieee80211n = atoi(pos);
1849                 } else if (os_strcmp(buf, "ht_capab") == 0) {
1850                         if (hostapd_config_ht_capab(conf, pos) < 0) {
1851                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1852                                            "ht_capab", line);
1853                                 errors++;
1854                         }
1855 #endif /* CONFIG_IEEE80211N */
1856                 } else if (os_strcmp(buf, "max_listen_interval") == 0) {
1857                         bss->max_listen_interval = atoi(pos);
1858                 } else if (os_strcmp(buf, "okc") == 0) {
1859                         bss->okc = atoi(pos);
1860 #ifdef CONFIG_WPS
1861                 } else if (os_strcmp(buf, "wps_state") == 0) {
1862                         bss->wps_state = atoi(pos);
1863                         if (bss->wps_state < 0 || bss->wps_state > 2) {
1864                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1865                                            "wps_state", line);
1866                                 errors++;
1867                         }
1868                 } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
1869                         bss->ap_setup_locked = atoi(pos);
1870                 } else if (os_strcmp(buf, "uuid") == 0) {
1871                         if (uuid_str2bin(pos, bss->uuid)) {
1872                                 wpa_printf(MSG_ERROR, "Line %d: invalid UUID",
1873                                            line);
1874                                 errors++;
1875                         }
1876                 } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
1877                         os_free(bss->wps_pin_requests);
1878                         bss->wps_pin_requests = os_strdup(pos);
1879                 } else if (os_strcmp(buf, "device_name") == 0) {
1880                         if (os_strlen(pos) > 32) {
1881                                 wpa_printf(MSG_ERROR, "Line %d: Too long "
1882                                            "device_name", line);
1883                                 errors++;
1884                         }
1885                         os_free(bss->device_name);
1886                         bss->device_name = os_strdup(pos);
1887                 } else if (os_strcmp(buf, "manufacturer") == 0) {
1888                         if (os_strlen(pos) > 64) {
1889                                 wpa_printf(MSG_ERROR, "Line %d: Too long "
1890                                            "manufacturer", line);
1891                                 errors++;
1892                         }
1893                         os_free(bss->manufacturer);
1894                         bss->manufacturer = os_strdup(pos);
1895                 } else if (os_strcmp(buf, "model_name") == 0) {
1896                         if (os_strlen(pos) > 32) {
1897                                 wpa_printf(MSG_ERROR, "Line %d: Too long "
1898                                            "model_name", line);
1899                                 errors++;
1900                         }
1901                         os_free(bss->model_name);
1902                         bss->model_name = os_strdup(pos);
1903                 } else if (os_strcmp(buf, "model_number") == 0) {
1904                         if (os_strlen(pos) > 32) {
1905                                 wpa_printf(MSG_ERROR, "Line %d: Too long "
1906                                            "model_number", line);
1907                                 errors++;
1908                         }
1909                         os_free(bss->model_number);
1910                         bss->model_number = os_strdup(pos);
1911                 } else if (os_strcmp(buf, "serial_number") == 0) {
1912                         if (os_strlen(pos) > 32) {
1913                                 wpa_printf(MSG_ERROR, "Line %d: Too long "
1914                                            "serial_number", line);
1915                                 errors++;
1916                         }
1917                         os_free(bss->serial_number);
1918                         bss->serial_number = os_strdup(pos);
1919                 } else if (os_strcmp(buf, "device_type") == 0) {
1920                         os_free(bss->device_type);
1921                         bss->device_type = os_strdup(pos);
1922                 } else if (os_strcmp(buf, "config_methods") == 0) {
1923                         os_free(bss->config_methods);
1924                         bss->config_methods = os_strdup(pos);
1925                 } else if (os_strcmp(buf, "os_version") == 0) {
1926                         if (hexstr2bin(pos, bss->os_version, 4)) {
1927                                 wpa_printf(MSG_ERROR, "Line %d: invalid "
1928                                            "os_version", line);
1929                                 errors++;
1930                         }
1931                 } else if (os_strcmp(buf, "ap_pin") == 0) {
1932                         os_free(bss->ap_pin);
1933                         bss->ap_pin = os_strdup(pos);
1934                 } else if (os_strcmp(buf, "skip_cred_build") == 0) {
1935                         bss->skip_cred_build = atoi(pos);
1936                 } else if (os_strcmp(buf, "extra_cred") == 0) {
1937                         os_free(bss->extra_cred);
1938                         bss->extra_cred =
1939                                 (u8 *) os_readfile(pos, &bss->extra_cred_len);
1940                         if (bss->extra_cred == NULL) {
1941                                 wpa_printf(MSG_ERROR, "Line %d: could not "
1942                                            "read Credentials from '%s'",
1943                                            line, pos);
1944                                 errors++;
1945                         }
1946                 } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
1947                         bss->wps_cred_processing = atoi(pos);
1948                 } else if (os_strcmp(buf, "ap_settings") == 0) {
1949                         os_free(bss->ap_settings);
1950                         bss->ap_settings =
1951                                 (u8 *) os_readfile(pos, &bss->ap_settings_len);
1952                         if (bss->ap_settings == NULL) {
1953                                 wpa_printf(MSG_ERROR, "Line %d: could not "
1954                                            "read AP Settings from '%s'",
1955                                            line, pos);
1956                                 errors++;
1957                         }
1958                 } else if (os_strcmp(buf, "upnp_iface") == 0) {
1959                         bss->upnp_iface = os_strdup(pos);
1960                 } else if (os_strcmp(buf, "friendly_name") == 0) {
1961                         os_free(bss->friendly_name);
1962                         bss->friendly_name = os_strdup(pos);
1963                 } else if (os_strcmp(buf, "manufacturer_url") == 0) {
1964                         os_free(bss->manufacturer_url);
1965                         bss->manufacturer_url = os_strdup(pos);
1966                 } else if (os_strcmp(buf, "model_description") == 0) {
1967                         os_free(bss->model_description);
1968                         bss->model_description = os_strdup(pos);
1969                 } else if (os_strcmp(buf, "model_url") == 0) {
1970                         os_free(bss->model_url);
1971                         bss->model_url = os_strdup(pos);
1972                 } else if (os_strcmp(buf, "upc") == 0) {
1973                         os_free(bss->upc);
1974                         bss->upc = os_strdup(pos);
1975 #endif /* CONFIG_WPS */
1976                 } else {
1977                         wpa_printf(MSG_ERROR, "Line %d: unknown configuration "
1978                                    "item '%s'", line, buf);
1979                         errors++;
1980                 }
1981         }
1982
1983         fclose(f);
1984
1985         for (i = 0; i < conf->num_bss; i++) {
1986                 bss = &conf->bss[i];
1987
1988                 if (bss->individual_wep_key_len == 0) {
1989                         /* individual keys are not use; can use key idx0 for
1990                          * broadcast keys */
1991                         bss->broadcast_key_idx_min = 0;
1992                 }
1993
1994                 /* Select group cipher based on the enabled pairwise cipher
1995                  * suites */
1996                 pairwise = 0;
1997                 if (bss->wpa & 1)
1998                         pairwise |= bss->wpa_pairwise;
1999                 if (bss->wpa & 2) {
2000                         if (bss->rsn_pairwise == 0)
2001                                 bss->rsn_pairwise = bss->wpa_pairwise;
2002                         pairwise |= bss->rsn_pairwise;
2003                 }
2004                 if (pairwise & WPA_CIPHER_TKIP)
2005                         bss->wpa_group = WPA_CIPHER_TKIP;
2006                 else
2007                         bss->wpa_group = WPA_CIPHER_CCMP;
2008
2009                 bss->radius->auth_server = bss->radius->auth_servers;
2010                 bss->radius->acct_server = bss->radius->acct_servers;
2011
2012                 if (bss->wpa && bss->ieee802_1x) {
2013                         bss->ssid.security_policy = SECURITY_WPA;
2014                 } else if (bss->wpa) {
2015                         bss->ssid.security_policy = SECURITY_WPA_PSK;
2016                 } else if (bss->ieee802_1x) {
2017                         bss->ssid.security_policy = SECURITY_IEEE_802_1X;
2018                         bss->ssid.wep.default_len = bss->default_wep_key_len;
2019                 } else if (bss->ssid.wep.keys_set)
2020                         bss->ssid.security_policy = SECURITY_STATIC_WEP;
2021                 else
2022                         bss->ssid.security_policy = SECURITY_PLAINTEXT;
2023         }
2024
2025         if (hostapd_config_check(conf))
2026                 errors++;
2027
2028         if (errors) {
2029                 wpa_printf(MSG_ERROR, "%d errors found in configuration file "
2030                            "'%s'", errors, fname);
2031                 hostapd_config_free(conf);
2032                 conf = NULL;
2033         }
2034
2035         return conf;
2036 }