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