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