]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/config_file.c
Interworking: Use generic language,string parser
[thirdparty/hostap.git] / hostapd / config_file.c
CommitLineData
41d719d6
JM
1/*
2 * hostapd / Configuration file parser
86f6053a 3 * Copyright (c) 2003-2012, Jouni Malinen <j@w1.fi>
41d719d6 4 *
0f3d578e
JM
5 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
41d719d6
JM
7 */
8
6226e38d 9#include "utils/includes.h"
41d719d6
JM
10#ifndef CONFIG_NATIVE_WINDOWS
11#include <grp.h>
12#endif /* CONFIG_NATIVE_WINDOWS */
13
6226e38d
JM
14#include "utils/common.h"
15#include "utils/uuid.h"
41d719d6
JM
16#include "common/ieee802_11_defs.h"
17#include "drivers/driver.h"
18#include "eap_server/eap.h"
19#include "radius/radius_client.h"
6226e38d
JM
20#include "ap/wpa_auth.h"
21#include "ap/ap_config.h"
1057d78e 22#include "config_file.h"
41d719d6
JM
23
24
25extern struct wpa_driver_ops *wpa_drivers[];
26
27
28#ifndef CONFIG_NO_VLAN
29static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
30 const char *fname)
31{
32 FILE *f;
33 char buf[128], *pos, *pos2;
34 int line = 0, vlan_id;
35 struct hostapd_vlan *vlan;
36
37 f = fopen(fname, "r");
38 if (!f) {
39 wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
40 return -1;
41 }
42
43 while (fgets(buf, sizeof(buf), f)) {
44 line++;
45
46 if (buf[0] == '#')
47 continue;
48 pos = buf;
49 while (*pos != '\0') {
50 if (*pos == '\n') {
51 *pos = '\0';
52 break;
53 }
54 pos++;
55 }
56 if (buf[0] == '\0')
57 continue;
58
59 if (buf[0] == '*') {
60 vlan_id = VLAN_ID_WILDCARD;
61 pos = buf + 1;
62 } else {
63 vlan_id = strtol(buf, &pos, 10);
64 if (buf == pos || vlan_id < 1 ||
65 vlan_id > MAX_VLAN_ID) {
66 wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
67 "line %d in '%s'", line, fname);
68 fclose(f);
69 return -1;
70 }
71 }
72
73 while (*pos == ' ' || *pos == '\t')
74 pos++;
75 pos2 = pos;
76 while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
77 pos2++;
78 *pos2 = '\0';
79 if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
80 wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
81 "in '%s'", line, fname);
82 fclose(f);
83 return -1;
84 }
85
86 vlan = os_malloc(sizeof(*vlan));
87 if (vlan == NULL) {
88 wpa_printf(MSG_ERROR, "Out of memory while reading "
89 "VLAN interfaces from '%s'", fname);
90 fclose(f);
91 return -1;
92 }
93
94 os_memset(vlan, 0, sizeof(*vlan));
95 vlan->vlan_id = vlan_id;
96 os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
97 if (bss->vlan_tail)
98 bss->vlan_tail->next = vlan;
99 else
100 bss->vlan = vlan;
101 bss->vlan_tail = vlan;
102 }
103
104 fclose(f);
105
106 return 0;
107}
108#endif /* CONFIG_NO_VLAN */
109
110
111static int hostapd_acl_comp(const void *a, const void *b)
112{
113 const struct mac_acl_entry *aa = a;
114 const struct mac_acl_entry *bb = b;
115 return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
116}
117
118
119static int hostapd_config_read_maclist(const char *fname,
120 struct mac_acl_entry **acl, int *num)
121{
122 FILE *f;
123 char buf[128], *pos;
124 int line = 0;
125 u8 addr[ETH_ALEN];
126 struct mac_acl_entry *newacl;
127 int vlan_id;
128
129 if (!fname)
130 return 0;
131
132 f = fopen(fname, "r");
133 if (!f) {
134 wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
135 return -1;
136 }
137
138 while (fgets(buf, sizeof(buf), f)) {
139 line++;
140
141 if (buf[0] == '#')
142 continue;
143 pos = buf;
144 while (*pos != '\0') {
145 if (*pos == '\n') {
146 *pos = '\0';
147 break;
148 }
149 pos++;
150 }
151 if (buf[0] == '\0')
152 continue;
153
154 if (hwaddr_aton(buf, addr)) {
155 wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
156 "line %d in '%s'", buf, line, fname);
157 fclose(f);
158 return -1;
159 }
160
161 vlan_id = 0;
162 pos = buf;
163 while (*pos != '\0' && *pos != ' ' && *pos != '\t')
164 pos++;
165 while (*pos == ' ' || *pos == '\t')
166 pos++;
167 if (*pos != '\0')
168 vlan_id = atoi(pos);
169
067ffa26 170 newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
41d719d6
JM
171 if (newacl == NULL) {
172 wpa_printf(MSG_ERROR, "MAC list reallocation failed");
173 fclose(f);
174 return -1;
175 }
176
177 *acl = newacl;
178 os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
179 (*acl)[*num].vlan_id = vlan_id;
180 (*num)++;
181 }
182
183 fclose(f);
184
185 qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
186
187 return 0;
188}
189
190
191#ifdef EAP_SERVER
192static int hostapd_config_read_eap_user(const char *fname,
193 struct hostapd_bss_config *conf)
194{
195 FILE *f;
196 char buf[512], *pos, *start, *pos2;
197 int line = 0, ret = 0, num_methods;
198 struct hostapd_eap_user *user, *tail = NULL;
199
200 if (!fname)
201 return 0;
202
203 f = fopen(fname, "r");
204 if (!f) {
205 wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
206 return -1;
207 }
208
209 /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
210 while (fgets(buf, sizeof(buf), f)) {
211 line++;
212
213 if (buf[0] == '#')
214 continue;
215 pos = buf;
216 while (*pos != '\0') {
217 if (*pos == '\n') {
218 *pos = '\0';
219 break;
220 }
221 pos++;
222 }
223 if (buf[0] == '\0')
224 continue;
225
226 user = NULL;
227
228 if (buf[0] != '"' && buf[0] != '*') {
229 wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
230 "start) on line %d in '%s'", line, fname);
231 goto failed;
232 }
233
234 user = os_zalloc(sizeof(*user));
235 if (user == NULL) {
236 wpa_printf(MSG_ERROR, "EAP user allocation failed");
237 goto failed;
238 }
239 user->force_version = -1;
240
241 if (buf[0] == '*') {
242 pos = buf;
243 } else {
244 pos = buf + 1;
245 start = pos;
246 while (*pos != '"' && *pos != '\0')
247 pos++;
248 if (*pos == '\0') {
249 wpa_printf(MSG_ERROR, "Invalid EAP identity "
250 "(no \" in end) on line %d in '%s'",
251 line, fname);
252 goto failed;
253 }
254
255 user->identity = os_malloc(pos - start);
256 if (user->identity == NULL) {
257 wpa_printf(MSG_ERROR, "Failed to allocate "
258 "memory for EAP identity");
259 goto failed;
260 }
261 os_memcpy(user->identity, start, pos - start);
262 user->identity_len = pos - start;
263
264 if (pos[0] == '"' && pos[1] == '*') {
265 user->wildcard_prefix = 1;
266 pos++;
267 }
268 }
269 pos++;
270 while (*pos == ' ' || *pos == '\t')
271 pos++;
272
273 if (*pos == '\0') {
274 wpa_printf(MSG_ERROR, "No EAP method on line %d in "
275 "'%s'", line, fname);
276 goto failed;
277 }
278
279 start = pos;
280 while (*pos != ' ' && *pos != '\t' && *pos != '\0')
281 pos++;
282 if (*pos == '\0') {
283 pos = NULL;
284 } else {
285 *pos = '\0';
286 pos++;
287 }
288 num_methods = 0;
289 while (*start) {
290 char *pos3 = os_strchr(start, ',');
291 if (pos3) {
292 *pos3++ = '\0';
293 }
294 user->methods[num_methods].method =
295 eap_server_get_type(
296 start,
297 &user->methods[num_methods].vendor);
298 if (user->methods[num_methods].vendor ==
299 EAP_VENDOR_IETF &&
300 user->methods[num_methods].method == EAP_TYPE_NONE)
301 {
302 if (os_strcmp(start, "TTLS-PAP") == 0) {
303 user->ttls_auth |= EAP_TTLS_AUTH_PAP;
304 goto skip_eap;
305 }
306 if (os_strcmp(start, "TTLS-CHAP") == 0) {
307 user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
308 goto skip_eap;
309 }
310 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
311 user->ttls_auth |=
312 EAP_TTLS_AUTH_MSCHAP;
313 goto skip_eap;
314 }
315 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
316 user->ttls_auth |=
317 EAP_TTLS_AUTH_MSCHAPV2;
318 goto skip_eap;
319 }
320 wpa_printf(MSG_ERROR, "Unsupported EAP type "
321 "'%s' on line %d in '%s'",
322 start, line, fname);
323 goto failed;
324 }
325
326 num_methods++;
e9447a94 327 if (num_methods >= EAP_MAX_METHODS)
41d719d6
JM
328 break;
329 skip_eap:
330 if (pos3 == NULL)
331 break;
332 start = pos3;
333 }
334 if (num_methods == 0 && user->ttls_auth == 0) {
335 wpa_printf(MSG_ERROR, "No EAP types configured on "
336 "line %d in '%s'", line, fname);
337 goto failed;
338 }
339
340 if (pos == NULL)
341 goto done;
342
343 while (*pos == ' ' || *pos == '\t')
344 pos++;
345 if (*pos == '\0')
346 goto done;
347
348 if (os_strncmp(pos, "[ver=0]", 7) == 0) {
349 user->force_version = 0;
350 goto done;
351 }
352
353 if (os_strncmp(pos, "[ver=1]", 7) == 0) {
354 user->force_version = 1;
355 goto done;
356 }
357
358 if (os_strncmp(pos, "[2]", 3) == 0) {
359 user->phase2 = 1;
360 goto done;
361 }
362
363 if (*pos == '"') {
364 pos++;
365 start = pos;
366 while (*pos != '"' && *pos != '\0')
367 pos++;
368 if (*pos == '\0') {
369 wpa_printf(MSG_ERROR, "Invalid EAP password "
370 "(no \" in end) on line %d in '%s'",
371 line, fname);
372 goto failed;
373 }
374
375 user->password = os_malloc(pos - start);
376 if (user->password == NULL) {
377 wpa_printf(MSG_ERROR, "Failed to allocate "
378 "memory for EAP password");
379 goto failed;
380 }
381 os_memcpy(user->password, start, pos - start);
382 user->password_len = pos - start;
383
384 pos++;
385 } else if (os_strncmp(pos, "hash:", 5) == 0) {
386 pos += 5;
387 pos2 = pos;
388 while (*pos2 != '\0' && *pos2 != ' ' &&
389 *pos2 != '\t' && *pos2 != '#')
390 pos2++;
391 if (pos2 - pos != 32) {
392 wpa_printf(MSG_ERROR, "Invalid password hash "
393 "on line %d in '%s'", line, fname);
394 goto failed;
395 }
396 user->password = os_malloc(16);
397 if (user->password == NULL) {
398 wpa_printf(MSG_ERROR, "Failed to allocate "
399 "memory for EAP password hash");
400 goto failed;
401 }
402 if (hexstr2bin(pos, user->password, 16) < 0) {
403 wpa_printf(MSG_ERROR, "Invalid hash password "
404 "on line %d in '%s'", line, fname);
405 goto failed;
406 }
407 user->password_len = 16;
408 user->password_hash = 1;
409 pos = pos2;
410 } else {
411 pos2 = pos;
412 while (*pos2 != '\0' && *pos2 != ' ' &&
413 *pos2 != '\t' && *pos2 != '#')
414 pos2++;
415 if ((pos2 - pos) & 1) {
416 wpa_printf(MSG_ERROR, "Invalid hex password "
417 "on line %d in '%s'", line, fname);
418 goto failed;
419 }
420 user->password = os_malloc((pos2 - pos) / 2);
421 if (user->password == NULL) {
422 wpa_printf(MSG_ERROR, "Failed to allocate "
423 "memory for EAP password");
424 goto failed;
425 }
426 if (hexstr2bin(pos, user->password,
427 (pos2 - pos) / 2) < 0) {
428 wpa_printf(MSG_ERROR, "Invalid hex password "
429 "on line %d in '%s'", line, fname);
430 goto failed;
431 }
432 user->password_len = (pos2 - pos) / 2;
433 pos = pos2;
434 }
435
436 while (*pos == ' ' || *pos == '\t')
437 pos++;
438 if (os_strncmp(pos, "[2]", 3) == 0) {
439 user->phase2 = 1;
440 }
441
442 done:
443 if (tail == NULL) {
444 tail = conf->eap_user = user;
445 } else {
446 tail->next = user;
447 tail = user;
448 }
449 continue;
450
451 failed:
452 if (user) {
453 os_free(user->password);
454 os_free(user->identity);
455 os_free(user);
456 }
457 ret = -1;
458 break;
459 }
460
461 fclose(f);
462
463 return ret;
464}
465#endif /* EAP_SERVER */
466
467
468#ifndef CONFIG_NO_RADIUS
469static int
470hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
471 int *num_server, const char *val, int def_port,
472 struct hostapd_radius_server **curr_serv)
473{
474 struct hostapd_radius_server *nserv;
475 int ret;
476 static int server_index = 1;
477
067ffa26 478 nserv = os_realloc_array(*server, *num_server + 1, sizeof(*nserv));
41d719d6
JM
479 if (nserv == NULL)
480 return -1;
481
482 *server = nserv;
483 nserv = &nserv[*num_server];
484 (*num_server)++;
485 (*curr_serv) = nserv;
486
487 os_memset(nserv, 0, sizeof(*nserv));
488 nserv->port = def_port;
489 ret = hostapd_parse_ip_addr(val, &nserv->addr);
490 nserv->index = server_index++;
491
492 return ret;
493}
af35e7af
JM
494
495
496static struct hostapd_radius_attr *
497hostapd_parse_radius_attr(const char *value)
498{
499 const char *pos;
500 char syntax;
501 struct hostapd_radius_attr *attr;
502 size_t len;
503
504 attr = os_zalloc(sizeof(*attr));
505 if (attr == NULL)
506 return NULL;
507
508 attr->type = atoi(value);
509
510 pos = os_strchr(value, ':');
511 if (pos == NULL) {
512 attr->val = wpabuf_alloc(1);
513 if (attr->val == NULL) {
514 os_free(attr);
515 return NULL;
516 }
517 wpabuf_put_u8(attr->val, 0);
518 return attr;
519 }
520
521 pos++;
522 if (pos[0] == '\0' || pos[1] != ':') {
523 os_free(attr);
524 return NULL;
525 }
526 syntax = *pos++;
527 pos++;
528
529 switch (syntax) {
530 case 's':
531 attr->val = wpabuf_alloc_copy(pos, os_strlen(pos));
532 break;
533 case 'x':
534 len = os_strlen(pos);
535 if (len & 1)
536 break;
537 len /= 2;
538 attr->val = wpabuf_alloc(len);
539 if (attr->val == NULL)
540 break;
541 if (hexstr2bin(pos, wpabuf_put(attr->val, len), len) < 0) {
542 wpabuf_free(attr->val);
543 os_free(attr);
544 return NULL;
545 }
546 break;
547 case 'd':
548 attr->val = wpabuf_alloc(4);
549 if (attr->val)
550 wpabuf_put_be32(attr->val, atoi(pos));
551 break;
552 default:
553 os_free(attr);
554 return NULL;
555 }
556
557 if (attr->val == NULL) {
558 os_free(attr);
559 return NULL;
560 }
561
562 return attr;
563}
b031338c
JM
564
565
566static int hostapd_parse_das_client(struct hostapd_bss_config *bss,
567 const char *val)
568{
569 char *secret;
b031338c
JM
570
571 secret = os_strchr(val, ' ');
572 if (secret == NULL)
573 return -1;
574
575 secret++;
b031338c
JM
576
577 if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
578 return -1;
579
580 os_free(bss->radius_das_shared_secret);
6e459875 581 bss->radius_das_shared_secret = (u8 *) os_strdup(secret);
b031338c
JM
582 if (bss->radius_das_shared_secret == NULL)
583 return -1;
6e459875 584 bss->radius_das_shared_secret_len = os_strlen(secret);
b031338c
JM
585
586 return 0;
587}
41d719d6
JM
588#endif /* CONFIG_NO_RADIUS */
589
590
591static int hostapd_config_parse_key_mgmt(int line, const char *value)
592{
593 int val = 0, last;
594 char *start, *end, *buf;
595
596 buf = os_strdup(value);
597 if (buf == NULL)
598 return -1;
599 start = buf;
600
601 while (*start != '\0') {
602 while (*start == ' ' || *start == '\t')
603 start++;
604 if (*start == '\0')
605 break;
606 end = start;
607 while (*end != ' ' && *end != '\t' && *end != '\0')
608 end++;
609 last = *end == '\0';
610 *end = '\0';
611 if (os_strcmp(start, "WPA-PSK") == 0)
612 val |= WPA_KEY_MGMT_PSK;
613 else if (os_strcmp(start, "WPA-EAP") == 0)
614 val |= WPA_KEY_MGMT_IEEE8021X;
615#ifdef CONFIG_IEEE80211R
616 else if (os_strcmp(start, "FT-PSK") == 0)
617 val |= WPA_KEY_MGMT_FT_PSK;
618 else if (os_strcmp(start, "FT-EAP") == 0)
619 val |= WPA_KEY_MGMT_FT_IEEE8021X;
620#endif /* CONFIG_IEEE80211R */
621#ifdef CONFIG_IEEE80211W
622 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
623 val |= WPA_KEY_MGMT_PSK_SHA256;
624 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
625 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
626#endif /* CONFIG_IEEE80211W */
627 else {
628 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
629 line, start);
630 os_free(buf);
631 return -1;
632 }
633
634 if (last)
635 break;
636 start = end + 1;
637 }
638
639 os_free(buf);
640 if (val == 0) {
641 wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
642 "configured.", line);
643 return -1;
644 }
645
646 return val;
647}
648
649
650static int hostapd_config_parse_cipher(int line, const char *value)
651{
652 int val = 0, last;
653 char *start, *end, *buf;
654
655 buf = os_strdup(value);
656 if (buf == NULL)
657 return -1;
658 start = buf;
659
660 while (*start != '\0') {
661 while (*start == ' ' || *start == '\t')
662 start++;
663 if (*start == '\0')
664 break;
665 end = start;
666 while (*end != ' ' && *end != '\t' && *end != '\0')
667 end++;
668 last = *end == '\0';
669 *end = '\0';
670 if (os_strcmp(start, "CCMP") == 0)
671 val |= WPA_CIPHER_CCMP;
672 else if (os_strcmp(start, "TKIP") == 0)
673 val |= WPA_CIPHER_TKIP;
674 else if (os_strcmp(start, "WEP104") == 0)
675 val |= WPA_CIPHER_WEP104;
676 else if (os_strcmp(start, "WEP40") == 0)
677 val |= WPA_CIPHER_WEP40;
678 else if (os_strcmp(start, "NONE") == 0)
679 val |= WPA_CIPHER_NONE;
680 else {
681 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
682 line, start);
683 os_free(buf);
684 return -1;
685 }
686
687 if (last)
688 break;
689 start = end + 1;
690 }
691 os_free(buf);
692
693 if (val == 0) {
694 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
695 line);
696 return -1;
697 }
698 return val;
699}
700
701
702static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
703 char *val)
704{
705 size_t len = os_strlen(val);
706
707 if (keyidx < 0 || keyidx > 3 || wep->key[keyidx] != NULL)
708 return -1;
709
710 if (val[0] == '"') {
711 if (len < 2 || val[len - 1] != '"')
712 return -1;
713 len -= 2;
714 wep->key[keyidx] = os_malloc(len);
715 if (wep->key[keyidx] == NULL)
716 return -1;
717 os_memcpy(wep->key[keyidx], val + 1, len);
718 wep->len[keyidx] = len;
719 } else {
720 if (len & 1)
721 return -1;
722 len /= 2;
723 wep->key[keyidx] = os_malloc(len);
724 if (wep->key[keyidx] == NULL)
725 return -1;
726 wep->len[keyidx] = len;
727 if (hexstr2bin(val, wep->key[keyidx], len) < 0)
728 return -1;
729 }
730
731 wep->keys_set++;
732
733 return 0;
734}
735
736
737static int hostapd_parse_rates(int **rate_list, char *val)
738{
739 int *list;
740 int count;
741 char *pos, *end;
742
743 os_free(*rate_list);
744 *rate_list = NULL;
745
746 pos = val;
747 count = 0;
748 while (*pos != '\0') {
749 if (*pos == ' ')
750 count++;
751 pos++;
752 }
753
754 list = os_malloc(sizeof(int) * (count + 2));
755 if (list == NULL)
756 return -1;
757 pos = val;
758 count = 0;
759 while (*pos != '\0') {
760 end = os_strchr(pos, ' ');
761 if (end)
762 *end = '\0';
763
764 list[count++] = atoi(pos);
765 if (!end)
766 break;
767 pos = end + 1;
768 }
769 list[count] = -1;
770
771 *rate_list = list;
772 return 0;
773}
774
775
776static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
777{
778 struct hostapd_bss_config *bss;
779
780 if (*ifname == '\0')
781 return -1;
782
067ffa26
JM
783 bss = os_realloc_array(conf->bss, conf->num_bss + 1,
784 sizeof(struct hostapd_bss_config));
41d719d6
JM
785 if (bss == NULL) {
786 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
787 "multi-BSS entry");
788 return -1;
789 }
790 conf->bss = bss;
791
792 bss = &(conf->bss[conf->num_bss]);
793 os_memset(bss, 0, sizeof(*bss));
794 bss->radius = os_zalloc(sizeof(*bss->radius));
795 if (bss->radius == NULL) {
796 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
797 "multi-BSS RADIUS data");
798 return -1;
799 }
800
801 conf->num_bss++;
802 conf->last_bss = bss;
803
804 hostapd_config_defaults_bss(bss);
805 os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
806 os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
807
808 return 0;
809}
810
811
812/* convert floats with one decimal place to value*10 int, i.e.,
813 * "1.5" will return 15 */
814static int hostapd_config_read_int10(const char *value)
815{
816 int i, d;
817 char *pos;
818
819 i = atoi(value);
820 pos = os_strchr(value, '.');
821 d = 0;
822 if (pos) {
823 pos++;
824 if (*pos >= '0' && *pos <= '9')
825 d = *pos - '0';
826 }
827
828 return i * 10 + d;
829}
830
831
832static int valid_cw(int cw)
833{
834 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
835 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023);
836}
837
838
839enum {
840 IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
841 IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
842 IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
7e3c1781 843 IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
41d719d6
JM
844};
845
846static int hostapd_config_tx_queue(struct hostapd_config *conf, char *name,
847 char *val)
848{
849 int num;
850 char *pos;
851 struct hostapd_tx_queue_params *queue;
852
853 /* skip 'tx_queue_' prefix */
854 pos = name + 9;
855 if (os_strncmp(pos, "data", 4) == 0 &&
856 pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
857 num = pos[4] - '0';
858 pos += 6;
7e3c1781
JM
859 } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
860 os_strncmp(pos, "beacon_", 7) == 0) {
861 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
862 return 0;
41d719d6
JM
863 } else {
864 wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
865 return -1;
866 }
867
7e3c1781 868 if (num >= NUM_TX_QUEUES) {
d2da2249 869 /* for backwards compatibility, do not trigger failure */
7e3c1781
JM
870 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
871 return 0;
872 }
873
41d719d6
JM
874 queue = &conf->tx_queue[num];
875
876 if (os_strcmp(pos, "aifs") == 0) {
877 queue->aifs = atoi(val);
878 if (queue->aifs < 0 || queue->aifs > 255) {
879 wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
880 queue->aifs);
881 return -1;
882 }
883 } else if (os_strcmp(pos, "cwmin") == 0) {
884 queue->cwmin = atoi(val);
885 if (!valid_cw(queue->cwmin)) {
886 wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
887 queue->cwmin);
888 return -1;
889 }
890 } else if (os_strcmp(pos, "cwmax") == 0) {
891 queue->cwmax = atoi(val);
892 if (!valid_cw(queue->cwmax)) {
893 wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
894 queue->cwmax);
895 return -1;
896 }
897 } else if (os_strcmp(pos, "burst") == 0) {
898 queue->burst = hostapd_config_read_int10(val);
899 } else {
900 wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
901 return -1;
902 }
903
41d719d6
JM
904 return 0;
905}
906
907
41d719d6
JM
908#ifdef CONFIG_IEEE80211R
909static int add_r0kh(struct hostapd_bss_config *bss, char *value)
910{
911 struct ft_remote_r0kh *r0kh;
912 char *pos, *next;
913
914 r0kh = os_zalloc(sizeof(*r0kh));
915 if (r0kh == NULL)
916 return -1;
917
918 /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
919 pos = value;
920 next = os_strchr(pos, ' ');
921 if (next)
922 *next++ = '\0';
923 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
924 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
925 os_free(r0kh);
926 return -1;
927 }
928
929 pos = next;
930 next = os_strchr(pos, ' ');
931 if (next)
932 *next++ = '\0';
933 if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
934 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
935 os_free(r0kh);
936 return -1;
937 }
938 r0kh->id_len = next - pos - 1;
939 os_memcpy(r0kh->id, pos, r0kh->id_len);
940
941 pos = next;
942 if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
943 wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
944 os_free(r0kh);
945 return -1;
946 }
947
948 r0kh->next = bss->r0kh_list;
949 bss->r0kh_list = r0kh;
950
951 return 0;
952}
953
954
955static int add_r1kh(struct hostapd_bss_config *bss, char *value)
956{
957 struct ft_remote_r1kh *r1kh;
958 char *pos, *next;
959
960 r1kh = os_zalloc(sizeof(*r1kh));
961 if (r1kh == NULL)
962 return -1;
963
964 /* 02:01:02:03:04:05 02:01:02:03:04:05
965 * 000102030405060708090a0b0c0d0e0f */
966 pos = value;
967 next = os_strchr(pos, ' ');
968 if (next)
969 *next++ = '\0';
970 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
971 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
972 os_free(r1kh);
973 return -1;
974 }
975
976 pos = next;
977 next = os_strchr(pos, ' ');
978 if (next)
979 *next++ = '\0';
980 if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
981 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
982 os_free(r1kh);
983 return -1;
984 }
985
986 pos = next;
987 if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
988 wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
989 os_free(r1kh);
990 return -1;
991 }
992
993 r1kh->next = bss->r1kh_list;
994 bss->r1kh_list = r1kh;
995
996 return 0;
997}
998#endif /* CONFIG_IEEE80211R */
999
1000
1001#ifdef CONFIG_IEEE80211N
1002static int hostapd_config_ht_capab(struct hostapd_config *conf,
1003 const char *capab)
1004{
1005 if (os_strstr(capab, "[LDPC]"))
1006 conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
1007 if (os_strstr(capab, "[HT40-]")) {
1008 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1009 conf->secondary_channel = -1;
1010 }
1011 if (os_strstr(capab, "[HT40+]")) {
1012 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1013 conf->secondary_channel = 1;
1014 }
1015 if (os_strstr(capab, "[SMPS-STATIC]")) {
1016 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1017 conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
1018 }
1019 if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
1020 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1021 conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
1022 }
1023 if (os_strstr(capab, "[GF]"))
1024 conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
1025 if (os_strstr(capab, "[SHORT-GI-20]"))
1026 conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
1027 if (os_strstr(capab, "[SHORT-GI-40]"))
1028 conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
1029 if (os_strstr(capab, "[TX-STBC]"))
1030 conf->ht_capab |= HT_CAP_INFO_TX_STBC;
1031 if (os_strstr(capab, "[RX-STBC1]")) {
1032 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1033 conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
1034 }
1035 if (os_strstr(capab, "[RX-STBC12]")) {
1036 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1037 conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
1038 }
1039 if (os_strstr(capab, "[RX-STBC123]")) {
1040 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1041 conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
1042 }
1043 if (os_strstr(capab, "[DELAYED-BA]"))
1044 conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
1045 if (os_strstr(capab, "[MAX-AMSDU-7935]"))
1046 conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
1047 if (os_strstr(capab, "[DSSS_CCK-40]"))
1048 conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
1049 if (os_strstr(capab, "[PSMP]"))
1050 conf->ht_capab |= HT_CAP_INFO_PSMP_SUPP;
1051 if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
1052 conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
1053
1054 return 0;
1055}
1056#endif /* CONFIG_IEEE80211N */
1057
1058
efe45d14
MP
1059#ifdef CONFIG_IEEE80211AC
1060static int hostapd_config_vht_capab(struct hostapd_config *conf,
1061 const char *capab)
1062{
1063 if (os_strstr(capab, "[MAX-MPDU-7991]"))
1064 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
1065 if (os_strstr(capab, "[MAX-MPDU-11454]"))
1066 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
1067 if (os_strstr(capab, "[VHT160]"))
1068 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
1069 if (os_strstr(capab, "[VHT160-80PLUS80]"))
1070 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
1071 if (os_strstr(capab, "[VHT160-80PLUS80]"))
1072 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
1073 if (os_strstr(capab, "[RXLDPC]"))
1074 conf->vht_capab |= VHT_CAP_RXLDPC;
1075 if (os_strstr(capab, "[SHORT-GI-80]"))
1076 conf->vht_capab |= VHT_CAP_SHORT_GI_80;
1077 if (os_strstr(capab, "[SHORT-GI-160]"))
1078 conf->vht_capab |= VHT_CAP_SHORT_GI_160;
1079 if (os_strstr(capab, "[TX-STBC-2BY1]"))
1080 conf->vht_capab |= VHT_CAP_TXSTBC;
1081 if (os_strstr(capab, "[RX-STBC-1]"))
1082 conf->vht_capab |= VHT_CAP_RXSTBC_1;
1083 if (os_strstr(capab, "[RX-STBC-12]"))
1084 conf->vht_capab |= VHT_CAP_RXSTBC_2;
1085 if (os_strstr(capab, "[RX-STBC-123]"))
1086 conf->vht_capab |= VHT_CAP_RXSTBC_3;
1087 if (os_strstr(capab, "[RX-STBC-1234]"))
1088 conf->vht_capab |= VHT_CAP_RXSTBC_4;
1089 if (os_strstr(capab, "[SU-BEAMFORMER]"))
1090 conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
1091 if (os_strstr(capab, "[SU-BEAMFORMEE]"))
1092 conf->vht_capab |= VHT_CAP_MU_BEAMFORMEE_CAPABLE;
1093 if (os_strstr(capab, "[BF-ANTENNA-2]") &&
1094 (conf->vht_capab & VHT_CAP_MU_BEAMFORMER_CAPABLE))
1095 conf->vht_capab |= VHT_CAP_BEAMFORMER_ANTENNAS_MAX;
1096 if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
1097 (conf->vht_capab & VHT_CAP_MU_BEAMFORMER_CAPABLE))
1098 conf->vht_capab |= VHT_CAP_SOUNDING_DIMENTION_MAX;
1099 if (os_strstr(capab, "[MU-BEAMFORMER]"))
1100 conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
1101 if (os_strstr(capab, "[MU-BEAMFORMEE]"))
1102 conf->vht_capab |= VHT_CAP_MU_BEAMFORMEE_CAPABLE;
1103 if (os_strstr(capab, "[VHT-TXOP-PS]"))
1104 conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
1105 if (os_strstr(capab, "[HTC-VHT]"))
1106 conf->vht_capab |= VHT_CAP_HTC_VHT;
1107 if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP0]"))
1108 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT;
1109 if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
1110 (conf->vht_capab & VHT_CAP_HTC_VHT))
1111 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
1112 if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
1113 (conf->vht_capab & VHT_CAP_HTC_VHT))
1114 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
1115 if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
1116 conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
1117 if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
1118 conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
1119 return 0;
1120}
1121#endif /* CONFIG_IEEE80211AC */
1122
1123
41d719d6
JM
1124static int hostapd_config_check_bss(struct hostapd_bss_config *bss,
1125 struct hostapd_config *conf)
1126{
1127 if (bss->ieee802_1x && !bss->eap_server &&
1128 !bss->radius->auth_servers) {
1129 wpa_printf(MSG_ERROR, "Invalid IEEE 802.1X configuration (no "
1130 "EAP authenticator configured).");
1131 return -1;
1132 }
1133
05ab9712
MB
1134 if (bss->wpa && bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
1135 bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
1136 wpa_printf(MSG_ERROR, "WPA-PSK using RADIUS enabled, but no "
1137 "RADIUS checking (macaddr_acl=2) enabled.");
1138 return -1;
1139 }
1140
41d719d6
JM
1141 if (bss->wpa && (bss->wpa_key_mgmt & WPA_KEY_MGMT_PSK) &&
1142 bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
05ab9712
MB
1143 bss->ssid.wpa_psk_file == NULL &&
1144 (bss->wpa_psk_radius != PSK_RADIUS_REQUIRED ||
1145 bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH)) {
41d719d6
JM
1146 wpa_printf(MSG_ERROR, "WPA-PSK enabled, but PSK or passphrase "
1147 "is not configured.");
1148 return -1;
1149 }
1150
1151 if (hostapd_mac_comp_empty(bss->bssid) != 0) {
1152 size_t i;
1153
1154 for (i = 0; i < conf->num_bss; i++) {
1155 if ((&conf->bss[i] != bss) &&
1156 (hostapd_mac_comp(conf->bss[i].bssid,
1157 bss->bssid) == 0)) {
1158 wpa_printf(MSG_ERROR, "Duplicate BSSID " MACSTR
1159 " on interface '%s' and '%s'.",
1160 MAC2STR(bss->bssid),
1161 conf->bss[i].iface, bss->iface);
1162 return -1;
1163 }
1164 }
1165 }
1166
1167#ifdef CONFIG_IEEE80211R
0bf927a0 1168 if (wpa_key_mgmt_ft(bss->wpa_key_mgmt) &&
41d719d6
JM
1169 (bss->nas_identifier == NULL ||
1170 os_strlen(bss->nas_identifier) < 1 ||
1171 os_strlen(bss->nas_identifier) > FT_R0KH_ID_MAX_LEN)) {
1172 wpa_printf(MSG_ERROR, "FT (IEEE 802.11r) requires "
1173 "nas_identifier to be configured as a 1..48 octet "
1174 "string");
1175 return -1;
1176 }
1177#endif /* CONFIG_IEEE80211R */
1178
1179#ifdef CONFIG_IEEE80211N
1ed08baf
SM
1180 if (conf->ieee80211n && conf->hw_mode == HOSTAPD_MODE_IEEE80211B) {
1181 bss->disable_11n = 1;
1182 wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) in 11b mode is not "
1183 "allowed, disabling HT capabilites");
1184 }
1185
6950b2ca
YAP
1186 if (conf->ieee80211n &&
1187 bss->ssid.security_policy == SECURITY_STATIC_WEP) {
f39b07d7 1188 bss->disable_11n = 1;
6950b2ca 1189 wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WEP is not "
f39b07d7 1190 "allowed, disabling HT capabilities");
6950b2ca
YAP
1191 }
1192
41d719d6
JM
1193 if (conf->ieee80211n && bss->wpa &&
1194 !(bss->wpa_pairwise & WPA_CIPHER_CCMP) &&
1195 !(bss->rsn_pairwise & WPA_CIPHER_CCMP)) {
f39b07d7 1196 bss->disable_11n = 1;
41d719d6 1197 wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WPA/WPA2 "
f39b07d7
HS
1198 "requires CCMP to be enabled, disabling HT "
1199 "capabilities");
41d719d6
JM
1200 }
1201#endif /* CONFIG_IEEE80211N */
1202
f61039c7
JM
1203#ifdef CONFIG_WPS2
1204 if (bss->wps_state && bss->ignore_broadcast_ssid) {
1205 wpa_printf(MSG_INFO, "WPS: ignore_broadcast_ssid "
1206 "configuration forced WPS to be disabled");
1207 bss->wps_state = 0;
1208 }
1209
1210 if (bss->wps_state && bss->ssid.wep.keys_set && bss->wpa == 0) {
1211 wpa_printf(MSG_INFO, "WPS: WEP configuration forced WPS to be "
1212 "disabled");
1213 bss->wps_state = 0;
1214 }
d8a08550
AP
1215
1216 if (bss->wps_state && bss->wpa &&
1217 (!(bss->wpa & 2) ||
1218 !(bss->rsn_pairwise & WPA_CIPHER_CCMP))) {
1219 wpa_printf(MSG_INFO, "WPS: WPA/TKIP configuration without "
1220 "WPA2/CCMP forced WPS to be disabled");
1221 bss->wps_state = 0;
1222 }
f61039c7
JM
1223#endif /* CONFIG_WPS2 */
1224
99be648c
JM
1225#ifdef CONFIG_HS20
1226 if (bss->hs20 &&
1227 (!(bss->wpa & 2) ||
1228 !(bss->rsn_pairwise & WPA_CIPHER_CCMP))) {
1229 wpa_printf(MSG_ERROR, "HS 2.0: WPA2-Enterprise/CCMP "
1230 "configuration is required for Hotspot 2.0 "
1231 "functionality");
1232 return -1;
1233 }
1234#endif /* CONFIG_HS20 */
1235
41d719d6
JM
1236 return 0;
1237}
1238
1239
1240static int hostapd_config_check(struct hostapd_config *conf)
1241{
1242 size_t i;
1243
1244 if (conf->ieee80211d && (!conf->country[0] || !conf->country[1])) {
1245 wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11d without "
1246 "setting the country_code");
1247 return -1;
1248 }
1249
1250 for (i = 0; i < conf->num_bss; i++) {
1251 if (hostapd_config_check_bss(&conf->bss[i], conf))
1252 return -1;
1253 }
1254
1255 return 0;
1256}
1257
1258
4b2a77ab
JM
1259#ifdef CONFIG_INTERWORKING
1260static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
1261 int line)
1262{
1263 size_t len = os_strlen(pos);
1264 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
1265
1266 struct hostapd_roaming_consortium *rc;
1267
1268 if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
1269 hexstr2bin(pos, oi, len / 2)) {
1270 wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
1271 "'%s'", line, pos);
1272 return -1;
1273 }
1274 len /= 2;
1275
067ffa26
JM
1276 rc = os_realloc_array(bss->roaming_consortium,
1277 bss->roaming_consortium_count + 1,
1278 sizeof(struct hostapd_roaming_consortium));
4b2a77ab
JM
1279 if (rc == NULL)
1280 return -1;
1281
1282 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
1283 rc[bss->roaming_consortium_count].len = len;
1284
1285 bss->roaming_consortium = rc;
1286 bss->roaming_consortium_count++;
1287
1288 return 0;
1289}
648cc711
JM
1290
1291
1792e58d
JM
1292static int parse_lang_string(struct hostapd_lang_string **array,
1293 unsigned int *count, char *pos)
648cc711
JM
1294{
1295 char *sep;
1296 size_t clen, nlen;
1792e58d 1297 struct hostapd_lang_string *ls;
648cc711
JM
1298
1299 sep = os_strchr(pos, ':');
1300 if (sep == NULL)
1792e58d 1301 return -1;
648cc711
JM
1302 *sep++ = '\0';
1303
1304 clen = os_strlen(pos);
1305 if (clen < 2)
1792e58d 1306 return -1;
648cc711
JM
1307 nlen = os_strlen(sep);
1308 if (nlen > 252)
1792e58d 1309 return -1;
648cc711 1310
1792e58d
JM
1311 ls = os_realloc_array(*array, *count + 1,
1312 sizeof(struct hostapd_lang_string));
1313 if (ls == NULL)
648cc711
JM
1314 return -1;
1315
1792e58d
JM
1316 *array = ls;
1317 ls = &(*array)[*count];
1318 (*count)++;
648cc711 1319
1792e58d
JM
1320 os_memset(ls->lang, 0, sizeof(ls->lang));
1321 os_memcpy(ls->lang, pos, clen);
1322 ls->name_len = nlen;
1323 os_memcpy(ls->name, sep, nlen);
648cc711
JM
1324
1325 return 0;
1792e58d
JM
1326}
1327
648cc711 1328
1792e58d
JM
1329static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
1330 int line)
1331{
1332 if (parse_lang_string(&bss->venue_name, &bss->venue_name_count, pos)) {
1333 wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
1334 line, pos);
1335 return -1;
1336 }
1337 return 0;
648cc711 1338}
7515adb2
JK
1339
1340
1341static int parse_3gpp_cell_net(struct hostapd_bss_config *bss, char *buf,
1342 int line)
1343{
1344 size_t count;
1345 char *pos;
1346 u8 *info = NULL, *ipos;
1347
1348 /* format: <MCC1,MNC1>[;<MCC2,MNC2>][;...] */
1349
1350 count = 1;
1351 for (pos = buf; *pos; pos++) {
1352 if ((*pos < '0' && *pos > '9') && *pos != ';' && *pos != ',')
1353 goto fail;
1354 if (*pos == ';')
1355 count++;
1356 }
1357 if (1 + count * 3 > 0x7f)
1358 goto fail;
1359
1360 info = os_zalloc(2 + 3 + count * 3);
1361 if (info == NULL)
1362 return -1;
1363
1364 ipos = info;
1365 *ipos++ = 0; /* GUD - Version 1 */
1366 *ipos++ = 3 + count * 3; /* User Data Header Length (UDHL) */
1367 *ipos++ = 0; /* PLMN List IEI */
1368 /* ext(b8) | Length of PLMN List value contents(b7..1) */
1369 *ipos++ = 1 + count * 3;
1370 *ipos++ = count; /* Number of PLMNs */
1371
1372 pos = buf;
1373 while (pos && *pos) {
1374 char *mcc, *mnc;
1375 size_t mnc_len;
1376
1377 mcc = pos;
1378 mnc = os_strchr(pos, ',');
1379 if (mnc == NULL)
1380 goto fail;
1381 *mnc++ = '\0';
1382 pos = os_strchr(mnc, ';');
1383 if (pos)
1384 *pos++ = '\0';
1385
1386 mnc_len = os_strlen(mnc);
1387 if (os_strlen(mcc) != 3 || (mnc_len != 2 && mnc_len != 3))
1388 goto fail;
1389
1390 /* BC coded MCC,MNC */
1391 /* MCC digit 2 | MCC digit 1 */
1392 *ipos++ = ((mcc[1] - '0') << 4) | (mcc[0] - '0');
1393 /* MNC digit 3 | MCC digit 3 */
1394 *ipos++ = (((mnc_len == 2) ? 0xf0 : ((mnc[2] - '0') << 4))) |
1395 (mcc[2] - '0');
1396 /* MNC digit 2 | MNC digit 1 */
1397 *ipos++ = ((mnc[1] - '0') << 4) | (mnc[0] - '0');
1398 }
1399
1400 os_free(bss->anqp_3gpp_cell_net);
1401 bss->anqp_3gpp_cell_net = info;
1402 bss->anqp_3gpp_cell_net_len = 2 + 3 + 3 * count;
1403 wpa_hexdump(MSG_MSGDUMP, "3GPP Cellular Network information",
1404 bss->anqp_3gpp_cell_net, bss->anqp_3gpp_cell_net_len);
1405
1406 return 0;
1407
1408fail:
1409 wpa_printf(MSG_ERROR, "Line %d: Invalid anqp_3gpp_cell_net: %s",
1410 line, buf);
1411 os_free(info);
1412 return -1;
1413}
1414
4b2a77ab
JM
1415#endif /* CONFIG_INTERWORKING */
1416
1417
5ccc54aa
JK
1418#ifdef CONFIG_HS20
1419static int hs20_parse_conn_capab(struct hostapd_bss_config *bss, char *buf,
1420 int line)
1421{
1422 u8 *conn_cap;
1423 char *pos;
1424
1425 if (bss->hs20_connection_capability_len >= 0xfff0)
1426 return -1;
1427
1428 conn_cap = os_realloc(bss->hs20_connection_capability,
1429 bss->hs20_connection_capability_len + 4);
1430 if (conn_cap == NULL)
1431 return -1;
1432
1433 bss->hs20_connection_capability = conn_cap;
1434 conn_cap += bss->hs20_connection_capability_len;
1435 pos = buf;
1436 conn_cap[0] = atoi(pos);
1437 pos = os_strchr(pos, ':');
1438 if (pos == NULL)
1439 return -1;
1440 pos++;
1441 WPA_PUT_LE16(conn_cap + 1, atoi(pos));
1442 pos = os_strchr(pos, ':');
1443 if (pos == NULL)
1444 return -1;
1445 pos++;
1446 conn_cap[3] = atoi(pos);
1447 bss->hs20_connection_capability_len += 4;
1448
1449 return 0;
1450}
4065a309
JK
1451
1452
1453static int hs20_parse_wan_metrics(struct hostapd_bss_config *bss, char *buf,
1454 int line)
1455{
1456 u8 *wan_metrics;
1457 char *pos;
1458
1459 /* <WAN Info>:<DL Speed>:<UL Speed>:<DL Load>:<UL Load>:<LMD> */
1460
1461 wan_metrics = os_zalloc(13);
1462 if (wan_metrics == NULL)
1463 return -1;
1464
1465 pos = buf;
1466 /* WAN Info */
1467 if (hexstr2bin(pos, wan_metrics, 1) < 0)
1468 goto fail;
1469 pos += 2;
1470 if (*pos != ':')
1471 goto fail;
1472 pos++;
1473
1474 /* Downlink Speed */
1475 WPA_PUT_LE32(wan_metrics + 1, atoi(pos));
1476 pos = os_strchr(pos, ':');
1477 if (pos == NULL)
1478 goto fail;
1479 pos++;
1480
1481 /* Uplink Speed */
1482 WPA_PUT_LE32(wan_metrics + 5, atoi(pos));
1483 pos = os_strchr(pos, ':');
1484 if (pos == NULL)
1485 goto fail;
1486 pos++;
1487
1488 /* Downlink Load */
1489 wan_metrics[9] = atoi(pos);
1490 pos = os_strchr(pos, ':');
1491 if (pos == NULL)
1492 goto fail;
1493 pos++;
1494
1495 /* Uplink Load */
1496 wan_metrics[10] = atoi(pos);
1497 pos = os_strchr(pos, ':');
1498 if (pos == NULL)
1499 goto fail;
1500 pos++;
1501
1502 /* LMD */
1503 WPA_PUT_LE16(wan_metrics + 11, atoi(pos));
1504
1505 os_free(bss->hs20_wan_metrics);
1506 bss->hs20_wan_metrics = wan_metrics;
1507
1508 return 0;
1509
1510fail:
1511 wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_wan_metrics '%s'",
1512 line, pos);
1513 os_free(wan_metrics);
1514 return -1;
1515}
5ccc54aa
JK
1516#endif /* CONFIG_HS20 */
1517
1518
ffdaa05a
JM
1519#ifdef CONFIG_WPS_NFC
1520static struct wpabuf * hostapd_parse_bin(const char *buf)
1521{
1522 size_t len;
1523 struct wpabuf *ret;
1524
1525 len = os_strlen(buf);
1526 if (len & 0x01)
1527 return NULL;
1528 len /= 2;
1529
1530 ret = wpabuf_alloc(len);
1531 if (ret == NULL)
1532 return NULL;
1533
1534 if (hexstr2bin(buf, wpabuf_put(ret, len), len)) {
1535 wpabuf_free(ret);
1536 return NULL;
1537 }
1538
1539 return ret;
1540}
1541#endif /* CONFIG_WPS_NFC */
1542
1543
ef45bc89
SP
1544static int hostapd_config_fill(struct hostapd_config *conf,
1545 struct hostapd_bss_config *bss,
1546 char *buf, char *pos, int line)
41d719d6 1547{
41d719d6 1548 int errors = 0;
41d719d6 1549
ef45bc89 1550 {
41d719d6
JM
1551 if (os_strcmp(buf, "interface") == 0) {
1552 os_strlcpy(conf->bss[0].iface, pos,
1553 sizeof(conf->bss[0].iface));
1554 } else if (os_strcmp(buf, "bridge") == 0) {
1555 os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
d38ae2ea
FF
1556 } else if (os_strcmp(buf, "wds_bridge") == 0) {
1557 os_strlcpy(bss->wds_bridge, pos,
1558 sizeof(bss->wds_bridge));
41d719d6
JM
1559 } else if (os_strcmp(buf, "driver") == 0) {
1560 int j;
1561 /* clear to get error below if setting is invalid */
1562 conf->driver = NULL;
1563 for (j = 0; wpa_drivers[j]; j++) {
1564 if (os_strcmp(pos, wpa_drivers[j]->name) == 0)
1565 {
1566 conf->driver = wpa_drivers[j];
1567 break;
1568 }
1569 }
1570 if (conf->driver == NULL) {
1571 wpa_printf(MSG_ERROR, "Line %d: invalid/"
1572 "unknown driver '%s'", line, pos);
1573 errors++;
1574 }
1575 } else if (os_strcmp(buf, "debug") == 0) {
1576 wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' "
1577 "configuration variable is not used "
1578 "anymore", line);
1579 } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
1580 bss->logger_syslog_level = atoi(pos);
1581 } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
1582 bss->logger_stdout_level = atoi(pos);
1583 } else if (os_strcmp(buf, "logger_syslog") == 0) {
1584 bss->logger_syslog = atoi(pos);
1585 } else if (os_strcmp(buf, "logger_stdout") == 0) {
1586 bss->logger_stdout = atoi(pos);
1587 } else if (os_strcmp(buf, "dump_file") == 0) {
1588 bss->dump_log_name = os_strdup(pos);
1589 } else if (os_strcmp(buf, "ssid") == 0) {
1590 bss->ssid.ssid_len = os_strlen(pos);
1591 if (bss->ssid.ssid_len > HOSTAPD_MAX_SSID_LEN ||
1592 bss->ssid.ssid_len < 1) {
1593 wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
1594 "'%s'", line, pos);
1595 errors++;
1596 } else {
1597 os_memcpy(bss->ssid.ssid, pos,
1598 bss->ssid.ssid_len);
41d719d6
JM
1599 bss->ssid.ssid_set = 1;
1600 }
e122bb70
JM
1601 } else if (os_strcmp(buf, "ssid2") == 0) {
1602 size_t slen;
1603 char *str = wpa_config_parse_string(pos, &slen);
1604 if (str == NULL || slen < 1 ||
1605 slen > HOSTAPD_MAX_SSID_LEN) {
1606 wpa_printf(MSG_ERROR, "Line %d: invalid SSID "
1607 "'%s'", line, pos);
1608 errors++;
1609 } else {
1610 os_memcpy(bss->ssid.ssid, str, slen);
1611 bss->ssid.ssid_len = slen;
1612 bss->ssid.ssid_set = 1;
1613 }
1614 os_free(str);
41d719d6
JM
1615 } else if (os_strcmp(buf, "macaddr_acl") == 0) {
1616 bss->macaddr_acl = atoi(pos);
1617 if (bss->macaddr_acl != ACCEPT_UNLESS_DENIED &&
1618 bss->macaddr_acl != DENY_UNLESS_ACCEPTED &&
1619 bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
1620 wpa_printf(MSG_ERROR, "Line %d: unknown "
1621 "macaddr_acl %d",
1622 line, bss->macaddr_acl);
1623 }
1624 } else if (os_strcmp(buf, "accept_mac_file") == 0) {
1625 if (hostapd_config_read_maclist(pos, &bss->accept_mac,
1626 &bss->num_accept_mac))
1627 {
1628 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1629 "read accept_mac_file '%s'",
1630 line, pos);
1631 errors++;
1632 }
1633 } else if (os_strcmp(buf, "deny_mac_file") == 0) {
1634 if (hostapd_config_read_maclist(pos, &bss->deny_mac,
1635 &bss->num_deny_mac)) {
1636 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1637 "read deny_mac_file '%s'",
1638 line, pos);
1639 errors++;
1640 }
1641 } else if (os_strcmp(buf, "wds_sta") == 0) {
1642 bss->wds_sta = atoi(pos);
d3b42869
FF
1643 } else if (os_strcmp(buf, "ap_isolate") == 0) {
1644 bss->isolate = atoi(pos);
41d719d6
JM
1645 } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
1646 bss->ap_max_inactivity = atoi(pos);
ef01fa7b
YAP
1647 } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
1648 bss->skip_inactivity_poll = atoi(pos);
41d719d6
JM
1649 } else if (os_strcmp(buf, "country_code") == 0) {
1650 os_memcpy(conf->country, pos, 2);
1651 /* FIX: make this configurable */
1652 conf->country[2] = ' ';
1653 } else if (os_strcmp(buf, "ieee80211d") == 0) {
1654 conf->ieee80211d = atoi(pos);
1655 } else if (os_strcmp(buf, "ieee8021x") == 0) {
1656 bss->ieee802_1x = atoi(pos);
1657 } else if (os_strcmp(buf, "eapol_version") == 0) {
1658 bss->eapol_version = atoi(pos);
1659 if (bss->eapol_version < 1 ||
1660 bss->eapol_version > 2) {
1661 wpa_printf(MSG_ERROR, "Line %d: invalid EAPOL "
1662 "version (%d): '%s'.",
1663 line, bss->eapol_version, pos);
1664 errors++;
1665 } else
1666 wpa_printf(MSG_DEBUG, "eapol_version=%d",
1667 bss->eapol_version);
1668#ifdef EAP_SERVER
1669 } else if (os_strcmp(buf, "eap_authenticator") == 0) {
1670 bss->eap_server = atoi(pos);
1671 wpa_printf(MSG_ERROR, "Line %d: obsolete "
1672 "eap_authenticator used; this has been "
1673 "renamed to eap_server", line);
1674 } else if (os_strcmp(buf, "eap_server") == 0) {
1675 bss->eap_server = atoi(pos);
1676 } else if (os_strcmp(buf, "eap_user_file") == 0) {
1677 if (hostapd_config_read_eap_user(pos, bss))
1678 errors++;
1679 } else if (os_strcmp(buf, "ca_cert") == 0) {
1680 os_free(bss->ca_cert);
1681 bss->ca_cert = os_strdup(pos);
1682 } else if (os_strcmp(buf, "server_cert") == 0) {
1683 os_free(bss->server_cert);
1684 bss->server_cert = os_strdup(pos);
1685 } else if (os_strcmp(buf, "private_key") == 0) {
1686 os_free(bss->private_key);
1687 bss->private_key = os_strdup(pos);
1688 } else if (os_strcmp(buf, "private_key_passwd") == 0) {
1689 os_free(bss->private_key_passwd);
1690 bss->private_key_passwd = os_strdup(pos);
1691 } else if (os_strcmp(buf, "check_crl") == 0) {
1692 bss->check_crl = atoi(pos);
1693 } else if (os_strcmp(buf, "dh_file") == 0) {
1694 os_free(bss->dh_file);
1695 bss->dh_file = os_strdup(pos);
7f6ec672
JM
1696 } else if (os_strcmp(buf, "fragment_size") == 0) {
1697 bss->fragment_size = atoi(pos);
41d719d6
JM
1698#ifdef EAP_SERVER_FAST
1699 } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
1700 os_free(bss->pac_opaque_encr_key);
1701 bss->pac_opaque_encr_key = os_malloc(16);
1702 if (bss->pac_opaque_encr_key == NULL) {
1703 wpa_printf(MSG_ERROR, "Line %d: No memory for "
1704 "pac_opaque_encr_key", line);
1705 errors++;
1706 } else if (hexstr2bin(pos, bss->pac_opaque_encr_key,
1707 16)) {
1708 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1709 "pac_opaque_encr_key", line);
1710 errors++;
1711 }
1712 } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
1713 size_t idlen = os_strlen(pos);
1714 if (idlen & 1) {
1715 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1716 "eap_fast_a_id", line);
1717 errors++;
1718 } else {
1719 os_free(bss->eap_fast_a_id);
1720 bss->eap_fast_a_id = os_malloc(idlen / 2);
1721 if (bss->eap_fast_a_id == NULL ||
1722 hexstr2bin(pos, bss->eap_fast_a_id,
1723 idlen / 2)) {
1724 wpa_printf(MSG_ERROR, "Line %d: "
1725 "Failed to parse "
1726 "eap_fast_a_id", line);
1727 errors++;
1728 } else
1729 bss->eap_fast_a_id_len = idlen / 2;
1730 }
1731 } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
1732 os_free(bss->eap_fast_a_id_info);
1733 bss->eap_fast_a_id_info = os_strdup(pos);
1734 } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
1735 bss->eap_fast_prov = atoi(pos);
1736 } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
1737 bss->pac_key_lifetime = atoi(pos);
1738 } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
1739 bss->pac_key_refresh_time = atoi(pos);
1740#endif /* EAP_SERVER_FAST */
1741#ifdef EAP_SERVER_SIM
1742 } else if (os_strcmp(buf, "eap_sim_db") == 0) {
1743 os_free(bss->eap_sim_db);
1744 bss->eap_sim_db = os_strdup(pos);
1745 } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
1746 bss->eap_sim_aka_result_ind = atoi(pos);
1747#endif /* EAP_SERVER_SIM */
1748#ifdef EAP_SERVER_TNC
1749 } else if (os_strcmp(buf, "tnc") == 0) {
1750 bss->tnc = atoi(pos);
1751#endif /* EAP_SERVER_TNC */
df684d82
DH
1752#ifdef EAP_SERVER_PWD
1753 } else if (os_strcmp(buf, "pwd_group") == 0) {
1754 bss->pwd_group = atoi(pos);
1755#endif /* EAP_SERVER_PWD */
41d719d6
JM
1756#endif /* EAP_SERVER */
1757 } else if (os_strcmp(buf, "eap_message") == 0) {
1758 char *term;
1759 bss->eap_req_id_text = os_strdup(pos);
1760 if (bss->eap_req_id_text == NULL) {
1761 wpa_printf(MSG_ERROR, "Line %d: Failed to "
1762 "allocate memory for "
1763 "eap_req_id_text", line);
1764 errors++;
ef45bc89 1765 return errors;
41d719d6
JM
1766 }
1767 bss->eap_req_id_text_len =
1768 os_strlen(bss->eap_req_id_text);
1769 term = os_strstr(bss->eap_req_id_text, "\\0");
1770 if (term) {
1771 *term++ = '\0';
1772 os_memmove(term, term + 1,
1773 bss->eap_req_id_text_len -
1774 (term - bss->eap_req_id_text) - 1);
1775 bss->eap_req_id_text_len--;
1776 }
1777 } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
1778 bss->default_wep_key_len = atoi(pos);
1779 if (bss->default_wep_key_len > 13) {
1780 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
1781 "key len %lu (= %lu bits)", line,
1782 (unsigned long)
1783 bss->default_wep_key_len,
1784 (unsigned long)
1785 bss->default_wep_key_len * 8);
1786 errors++;
1787 }
1788 } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
1789 bss->individual_wep_key_len = atoi(pos);
1790 if (bss->individual_wep_key_len < 0 ||
1791 bss->individual_wep_key_len > 13) {
1792 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
1793 "key len %d (= %d bits)", line,
1794 bss->individual_wep_key_len,
1795 bss->individual_wep_key_len * 8);
1796 errors++;
1797 }
1798 } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
1799 bss->wep_rekeying_period = atoi(pos);
1800 if (bss->wep_rekeying_period < 0) {
1801 wpa_printf(MSG_ERROR, "Line %d: invalid "
1802 "period %d",
1803 line, bss->wep_rekeying_period);
1804 errors++;
1805 }
1806 } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
1807 bss->eap_reauth_period = atoi(pos);
1808 if (bss->eap_reauth_period < 0) {
1809 wpa_printf(MSG_ERROR, "Line %d: invalid "
1810 "period %d",
1811 line, bss->eap_reauth_period);
1812 errors++;
1813 }
1814 } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
1815 bss->eapol_key_index_workaround = atoi(pos);
1816#ifdef CONFIG_IAPP
1817 } else if (os_strcmp(buf, "iapp_interface") == 0) {
1818 bss->ieee802_11f = 1;
1819 os_strlcpy(bss->iapp_iface, pos,
1820 sizeof(bss->iapp_iface));
1821#endif /* CONFIG_IAPP */
1822 } else if (os_strcmp(buf, "own_ip_addr") == 0) {
1823 if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
1824 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1825 "address '%s'", line, pos);
1826 errors++;
1827 }
1828 } else if (os_strcmp(buf, "nas_identifier") == 0) {
1829 bss->nas_identifier = os_strdup(pos);
1830#ifndef CONFIG_NO_RADIUS
1831 } else if (os_strcmp(buf, "auth_server_addr") == 0) {
1832 if (hostapd_config_read_radius_addr(
1833 &bss->radius->auth_servers,
1834 &bss->radius->num_auth_servers, pos, 1812,
1835 &bss->radius->auth_server)) {
1836 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1837 "address '%s'", line, pos);
1838 errors++;
1839 }
1840 } else if (bss->radius->auth_server &&
1841 os_strcmp(buf, "auth_server_port") == 0) {
1842 bss->radius->auth_server->port = atoi(pos);
1843 } else if (bss->radius->auth_server &&
1844 os_strcmp(buf, "auth_server_shared_secret") == 0) {
1845 int len = os_strlen(pos);
1846 if (len == 0) {
1847 /* RFC 2865, Ch. 3 */
1848 wpa_printf(MSG_ERROR, "Line %d: empty shared "
1849 "secret is not allowed.", line);
1850 errors++;
1851 }
1852 bss->radius->auth_server->shared_secret =
1853 (u8 *) os_strdup(pos);
1854 bss->radius->auth_server->shared_secret_len = len;
1855 } else if (os_strcmp(buf, "acct_server_addr") == 0) {
1856 if (hostapd_config_read_radius_addr(
1857 &bss->radius->acct_servers,
1858 &bss->radius->num_acct_servers, pos, 1813,
1859 &bss->radius->acct_server)) {
1860 wpa_printf(MSG_ERROR, "Line %d: invalid IP "
1861 "address '%s'", line, pos);
1862 errors++;
1863 }
1864 } else if (bss->radius->acct_server &&
1865 os_strcmp(buf, "acct_server_port") == 0) {
1866 bss->radius->acct_server->port = atoi(pos);
1867 } else if (bss->radius->acct_server &&
1868 os_strcmp(buf, "acct_server_shared_secret") == 0) {
1869 int len = os_strlen(pos);
1870 if (len == 0) {
1871 /* RFC 2865, Ch. 3 */
1872 wpa_printf(MSG_ERROR, "Line %d: empty shared "
1873 "secret is not allowed.", line);
1874 errors++;
1875 }
1876 bss->radius->acct_server->shared_secret =
1877 (u8 *) os_strdup(pos);
1878 bss->radius->acct_server->shared_secret_len = len;
1879 } else if (os_strcmp(buf, "radius_retry_primary_interval") ==
1880 0) {
1881 bss->radius->retry_primary_interval = atoi(pos);
1882 } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0)
1883 {
1884 bss->acct_interim_interval = atoi(pos);
86f6053a
JM
1885 } else if (os_strcmp(buf, "radius_request_cui") == 0) {
1886 bss->radius_request_cui = atoi(pos);
af35e7af
JM
1887 } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
1888 struct hostapd_radius_attr *attr, *a;
1889 attr = hostapd_parse_radius_attr(pos);
1890 if (attr == NULL) {
1891 wpa_printf(MSG_ERROR, "Line %d: invalid "
1892 "radius_auth_req_attr", line);
1893 errors++;
1894 } else if (bss->radius_auth_req_attr == NULL) {
1895 bss->radius_auth_req_attr = attr;
1896 } else {
1897 a = bss->radius_auth_req_attr;
1898 while (a->next)
1899 a = a->next;
1900 a->next = attr;
1901 }
1902 } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
1903 struct hostapd_radius_attr *attr, *a;
1904 attr = hostapd_parse_radius_attr(pos);
1905 if (attr == NULL) {
1906 wpa_printf(MSG_ERROR, "Line %d: invalid "
1907 "radius_acct_req_attr", line);
1908 errors++;
1909 } else if (bss->radius_acct_req_attr == NULL) {
1910 bss->radius_acct_req_attr = attr;
1911 } else {
1912 a = bss->radius_acct_req_attr;
1913 while (a->next)
1914 a = a->next;
1915 a->next = attr;
1916 }
b031338c
JM
1917 } else if (os_strcmp(buf, "radius_das_port") == 0) {
1918 bss->radius_das_port = atoi(pos);
1919 } else if (os_strcmp(buf, "radius_das_client") == 0) {
1920 if (hostapd_parse_das_client(bss, pos) < 0) {
1921 wpa_printf(MSG_ERROR, "Line %d: invalid "
1922 "DAS client", line);
1923 errors++;
1924 }
bde7ba6c
JM
1925 } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
1926 bss->radius_das_time_window = atoi(pos);
1927 } else if (os_strcmp(buf, "radius_das_require_event_timestamp")
1928 == 0) {
1929 bss->radius_das_require_event_timestamp = atoi(pos);
41d719d6
JM
1930#endif /* CONFIG_NO_RADIUS */
1931 } else if (os_strcmp(buf, "auth_algs") == 0) {
1932 bss->auth_algs = atoi(pos);
1933 if (bss->auth_algs == 0) {
1934 wpa_printf(MSG_ERROR, "Line %d: no "
1935 "authentication algorithms allowed",
1936 line);
1937 errors++;
1938 }
1939 } else if (os_strcmp(buf, "max_num_sta") == 0) {
1940 bss->max_num_sta = atoi(pos);
1941 if (bss->max_num_sta < 0 ||
1942 bss->max_num_sta > MAX_STA_COUNT) {
1943 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1944 "max_num_sta=%d; allowed range "
1945 "0..%d", line, bss->max_num_sta,
1946 MAX_STA_COUNT);
1947 errors++;
1948 }
1949 } else if (os_strcmp(buf, "wpa") == 0) {
1950 bss->wpa = atoi(pos);
1951 } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
1952 bss->wpa_group_rekey = atoi(pos);
1953 } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
1954 bss->wpa_strict_rekey = atoi(pos);
1955 } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
1956 bss->wpa_gmk_rekey = atoi(pos);
1957 } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
1958 bss->wpa_ptk_rekey = atoi(pos);
1959 } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
1960 int len = os_strlen(pos);
1961 if (len < 8 || len > 63) {
1962 wpa_printf(MSG_ERROR, "Line %d: invalid WPA "
1963 "passphrase length %d (expected "
1964 "8..63)", line, len);
1965 errors++;
1966 } else {
1967 os_free(bss->ssid.wpa_passphrase);
1968 bss->ssid.wpa_passphrase = os_strdup(pos);
31b540eb
SP
1969 os_free(bss->ssid.wpa_psk);
1970 bss->ssid.wpa_psk = NULL;
41d719d6
JM
1971 }
1972 } else if (os_strcmp(buf, "wpa_psk") == 0) {
1973 os_free(bss->ssid.wpa_psk);
1974 bss->ssid.wpa_psk =
1975 os_zalloc(sizeof(struct hostapd_wpa_psk));
1976 if (bss->ssid.wpa_psk == NULL)
1977 errors++;
1978 else if (hexstr2bin(pos, bss->ssid.wpa_psk->psk,
1979 PMK_LEN) ||
1980 pos[PMK_LEN * 2] != '\0') {
1981 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK "
1982 "'%s'.", line, pos);
1983 errors++;
1984 } else {
1985 bss->ssid.wpa_psk->group = 1;
31b540eb
SP
1986 os_free(bss->ssid.wpa_passphrase);
1987 bss->ssid.wpa_passphrase = NULL;
41d719d6
JM
1988 }
1989 } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
1990 os_free(bss->ssid.wpa_psk_file);
1991 bss->ssid.wpa_psk_file = os_strdup(pos);
1992 if (!bss->ssid.wpa_psk_file) {
1993 wpa_printf(MSG_ERROR, "Line %d: allocation "
1994 "failed", line);
1995 errors++;
1996 }
1997 } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
1998 bss->wpa_key_mgmt =
1999 hostapd_config_parse_key_mgmt(line, pos);
2000 if (bss->wpa_key_mgmt == -1)
2001 errors++;
05ab9712
MB
2002 } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
2003 bss->wpa_psk_radius = atoi(pos);
2004 if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
2005 bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
2006 bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
2007 wpa_printf(MSG_ERROR, "Line %d: unknown "
2008 "wpa_psk_radius %d",
2009 line, bss->wpa_psk_radius);
2010 errors++;
2011 }
41d719d6
JM
2012 } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
2013 bss->wpa_pairwise =
2014 hostapd_config_parse_cipher(line, pos);
2015 if (bss->wpa_pairwise == -1 ||
2016 bss->wpa_pairwise == 0)
2017 errors++;
2018 else if (bss->wpa_pairwise &
2019 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
2020 WPA_CIPHER_WEP104)) {
2021 wpa_printf(MSG_ERROR, "Line %d: unsupported "
2022 "pairwise cipher suite '%s'",
2023 bss->wpa_pairwise, pos);
2024 errors++;
2025 }
2026 } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
2027 bss->rsn_pairwise =
2028 hostapd_config_parse_cipher(line, pos);
2029 if (bss->rsn_pairwise == -1 ||
2030 bss->rsn_pairwise == 0)
2031 errors++;
2032 else if (bss->rsn_pairwise &
2033 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 |
2034 WPA_CIPHER_WEP104)) {
2035 wpa_printf(MSG_ERROR, "Line %d: unsupported "
2036 "pairwise cipher suite '%s'",
2037 bss->rsn_pairwise, pos);
2038 errors++;
2039 }
2040#ifdef CONFIG_RSN_PREAUTH
2041 } else if (os_strcmp(buf, "rsn_preauth") == 0) {
2042 bss->rsn_preauth = atoi(pos);
2043 } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
2044 bss->rsn_preauth_interfaces = os_strdup(pos);
2045#endif /* CONFIG_RSN_PREAUTH */
2046#ifdef CONFIG_PEERKEY
2047 } else if (os_strcmp(buf, "peerkey") == 0) {
2048 bss->peerkey = atoi(pos);
2049#endif /* CONFIG_PEERKEY */
2050#ifdef CONFIG_IEEE80211R
2051 } else if (os_strcmp(buf, "mobility_domain") == 0) {
2052 if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
2053 hexstr2bin(pos, bss->mobility_domain,
2054 MOBILITY_DOMAIN_ID_LEN) != 0) {
2055 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
2056 "mobility_domain '%s'", line, pos);
2057 errors++;
ef45bc89 2058 return errors;
41d719d6
JM
2059 }
2060 } else if (os_strcmp(buf, "r1_key_holder") == 0) {
2061 if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
2062 hexstr2bin(pos, bss->r1_key_holder,
2063 FT_R1KH_ID_LEN) != 0) {
2064 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
2065 "r1_key_holder '%s'", line, pos);
2066 errors++;
ef45bc89 2067 return errors;
41d719d6
JM
2068 }
2069 } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
2070 bss->r0_key_lifetime = atoi(pos);
2071 } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
2072 bss->reassociation_deadline = atoi(pos);
2073 } else if (os_strcmp(buf, "r0kh") == 0) {
2074 if (add_r0kh(bss, pos) < 0) {
2075 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
2076 "r0kh '%s'", line, pos);
2077 errors++;
ef45bc89 2078 return errors;
41d719d6
JM
2079 }
2080 } else if (os_strcmp(buf, "r1kh") == 0) {
2081 if (add_r1kh(bss, pos) < 0) {
2082 wpa_printf(MSG_DEBUG, "Line %d: Invalid "
2083 "r1kh '%s'", line, pos);
2084 errors++;
ef45bc89 2085 return errors;
41d719d6
JM
2086 }
2087 } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
2088 bss->pmk_r1_push = atoi(pos);
d7956add
SP
2089 } else if (os_strcmp(buf, "ft_over_ds") == 0) {
2090 bss->ft_over_ds = atoi(pos);
41d719d6
JM
2091#endif /* CONFIG_IEEE80211R */
2092#ifndef CONFIG_NO_CTRL_IFACE
2093 } else if (os_strcmp(buf, "ctrl_interface") == 0) {
2094 os_free(bss->ctrl_interface);
2095 bss->ctrl_interface = os_strdup(pos);
2096 } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
2097#ifndef CONFIG_NATIVE_WINDOWS
2098 struct group *grp;
2099 char *endp;
2100 const char *group = pos;
2101
2102 grp = getgrnam(group);
2103 if (grp) {
2104 bss->ctrl_interface_gid = grp->gr_gid;
2105 bss->ctrl_interface_gid_set = 1;
2106 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d"
2107 " (from group name '%s')",
2108 bss->ctrl_interface_gid, group);
ef45bc89 2109 return errors;
41d719d6
JM
2110 }
2111
2112 /* Group name not found - try to parse this as gid */
2113 bss->ctrl_interface_gid = strtol(group, &endp, 10);
2114 if (*group == '\0' || *endp != '\0') {
2115 wpa_printf(MSG_DEBUG, "Line %d: Invalid group "
2116 "'%s'", line, group);
2117 errors++;
ef45bc89 2118 return errors;
41d719d6
JM
2119 }
2120 bss->ctrl_interface_gid_set = 1;
2121 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
2122 bss->ctrl_interface_gid);
2123#endif /* CONFIG_NATIVE_WINDOWS */
2124#endif /* CONFIG_NO_CTRL_IFACE */
2125#ifdef RADIUS_SERVER
2126 } else if (os_strcmp(buf, "radius_server_clients") == 0) {
2127 os_free(bss->radius_server_clients);
2128 bss->radius_server_clients = os_strdup(pos);
2129 } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
2130 bss->radius_server_auth_port = atoi(pos);
2131 } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
2132 bss->radius_server_ipv6 = atoi(pos);
2133#endif /* RADIUS_SERVER */
2134 } else if (os_strcmp(buf, "test_socket") == 0) {
2135 os_free(bss->test_socket);
2136 bss->test_socket = os_strdup(pos);
2137 } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
2138 bss->use_pae_group_addr = atoi(pos);
2139 } else if (os_strcmp(buf, "hw_mode") == 0) {
2140 if (os_strcmp(pos, "a") == 0)
2141 conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
2142 else if (os_strcmp(pos, "b") == 0)
2143 conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
2144 else if (os_strcmp(pos, "g") == 0)
2145 conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
2146 else {
2147 wpa_printf(MSG_ERROR, "Line %d: unknown "
2148 "hw_mode '%s'", line, pos);
2149 errors++;
2150 }
8e5f9134
BC
2151 } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
2152 if (os_strcmp(pos, "a") == 0)
2153 bss->wps_rf_bands = WPS_RF_50GHZ;
2154 else if (os_strcmp(pos, "g") == 0 ||
2155 os_strcmp(pos, "b") == 0)
2156 bss->wps_rf_bands = WPS_RF_24GHZ;
2157 else if (os_strcmp(pos, "ag") == 0 ||
2158 os_strcmp(pos, "ga") == 0)
2159 bss->wps_rf_bands =
2160 WPS_RF_24GHZ | WPS_RF_50GHZ;
2161 else {
2162 wpa_printf(MSG_ERROR, "Line %d: unknown "
2163 "wps_rf_band '%s'", line, pos);
2164 errors++;
2165 }
41d719d6
JM
2166 } else if (os_strcmp(buf, "channel") == 0) {
2167 conf->channel = atoi(pos);
2168 } else if (os_strcmp(buf, "beacon_int") == 0) {
2169 int val = atoi(pos);
2170 /* MIB defines range as 1..65535, but very small values
2171 * cause problems with the current implementation.
2172 * Since it is unlikely that this small numbers are
2173 * useful in real life scenarios, do not allow beacon
2174 * period to be set below 15 TU. */
2175 if (val < 15 || val > 65535) {
2176 wpa_printf(MSG_ERROR, "Line %d: invalid "
2177 "beacon_int %d (expected "
2178 "15..65535)", line, val);
2179 errors++;
2180 } else
2181 conf->beacon_int = val;
2182 } else if (os_strcmp(buf, "dtim_period") == 0) {
2183 bss->dtim_period = atoi(pos);
2184 if (bss->dtim_period < 1 || bss->dtim_period > 255) {
2185 wpa_printf(MSG_ERROR, "Line %d: invalid "
2186 "dtim_period %d",
2187 line, bss->dtim_period);
2188 errors++;
2189 }
2190 } else if (os_strcmp(buf, "rts_threshold") == 0) {
2191 conf->rts_threshold = atoi(pos);
2192 if (conf->rts_threshold < 0 ||
2193 conf->rts_threshold > 2347) {
2194 wpa_printf(MSG_ERROR, "Line %d: invalid "
2195 "rts_threshold %d",
2196 line, conf->rts_threshold);
2197 errors++;
2198 }
2199 } else if (os_strcmp(buf, "fragm_threshold") == 0) {
2200 conf->fragm_threshold = atoi(pos);
2201 if (conf->fragm_threshold < 256 ||
2202 conf->fragm_threshold > 2346) {
2203 wpa_printf(MSG_ERROR, "Line %d: invalid "
2204 "fragm_threshold %d",
2205 line, conf->fragm_threshold);
2206 errors++;
2207 }
2208 } else if (os_strcmp(buf, "send_probe_response") == 0) {
2209 int val = atoi(pos);
2210 if (val != 0 && val != 1) {
2211 wpa_printf(MSG_ERROR, "Line %d: invalid "
2212 "send_probe_response %d (expected "
2213 "0 or 1)", line, val);
2214 } else
2215 conf->send_probe_response = val;
2216 } else if (os_strcmp(buf, "supported_rates") == 0) {
2217 if (hostapd_parse_rates(&conf->supported_rates, pos)) {
2218 wpa_printf(MSG_ERROR, "Line %d: invalid rate "
2219 "list", line);
2220 errors++;
2221 }
2222 } else if (os_strcmp(buf, "basic_rates") == 0) {
2223 if (hostapd_parse_rates(&conf->basic_rates, pos)) {
2224 wpa_printf(MSG_ERROR, "Line %d: invalid rate "
2225 "list", line);
2226 errors++;
2227 }
2228 } else if (os_strcmp(buf, "preamble") == 0) {
2229 if (atoi(pos))
2230 conf->preamble = SHORT_PREAMBLE;
2231 else
2232 conf->preamble = LONG_PREAMBLE;
2233 } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
2234 bss->ignore_broadcast_ssid = atoi(pos);
2235 } else if (os_strcmp(buf, "wep_default_key") == 0) {
2236 bss->ssid.wep.idx = atoi(pos);
2237 if (bss->ssid.wep.idx > 3) {
2238 wpa_printf(MSG_ERROR, "Invalid "
2239 "wep_default_key index %d",
2240 bss->ssid.wep.idx);
2241 errors++;
2242 }
2243 } else if (os_strcmp(buf, "wep_key0") == 0 ||
2244 os_strcmp(buf, "wep_key1") == 0 ||
2245 os_strcmp(buf, "wep_key2") == 0 ||
2246 os_strcmp(buf, "wep_key3") == 0) {
2247 if (hostapd_config_read_wep(&bss->ssid.wep,
2248 buf[7] - '0', pos)) {
2249 wpa_printf(MSG_ERROR, "Line %d: invalid WEP "
2250 "key '%s'", line, buf);
2251 errors++;
2252 }
2253#ifndef CONFIG_NO_VLAN
2254 } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
2255 bss->ssid.dynamic_vlan = atoi(pos);
2256 } else if (os_strcmp(buf, "vlan_file") == 0) {
2257 if (hostapd_config_read_vlan_file(bss, pos)) {
2258 wpa_printf(MSG_ERROR, "Line %d: failed to "
2259 "read VLAN file '%s'", line, pos);
2260 errors++;
2261 }
a00237ce
MB
2262 } else if (os_strcmp(buf, "vlan_naming") == 0) {
2263 bss->ssid.vlan_naming = atoi(pos);
2264 if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
2265 bss->ssid.vlan_naming < 0) {
2266 wpa_printf(MSG_ERROR, "Line %d: invalid "
2267 "naming scheme %d", line,
2268 bss->ssid.vlan_naming);
2269 errors++;
2270 }
41d719d6
JM
2271#ifdef CONFIG_FULL_DYNAMIC_VLAN
2272 } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
2273 bss->ssid.vlan_tagged_interface = os_strdup(pos);
2274#endif /* CONFIG_FULL_DYNAMIC_VLAN */
2275#endif /* CONFIG_NO_VLAN */
2276 } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
2277 conf->ap_table_max_size = atoi(pos);
2278 } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
2279 conf->ap_table_expiration_time = atoi(pos);
2280 } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
2281 if (hostapd_config_tx_queue(conf, buf, pos)) {
2282 wpa_printf(MSG_ERROR, "Line %d: invalid TX "
2283 "queue item", line);
2284 errors++;
2285 }
2286 } else if (os_strcmp(buf, "wme_enabled") == 0 ||
2287 os_strcmp(buf, "wmm_enabled") == 0) {
2288 bss->wmm_enabled = atoi(pos);
721abef9
YAP
2289 } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
2290 bss->wmm_uapsd = atoi(pos);
41d719d6
JM
2291 } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
2292 os_strncmp(buf, "wmm_ac_", 7) == 0) {
eda070f1
YD
2293 if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf,
2294 pos)) {
41d719d6
JM
2295 wpa_printf(MSG_ERROR, "Line %d: invalid WMM "
2296 "ac item", line);
2297 errors++;
2298 }
2299 } else if (os_strcmp(buf, "bss") == 0) {
2300 if (hostapd_config_bss(conf, pos)) {
2301 wpa_printf(MSG_ERROR, "Line %d: invalid bss "
2302 "item", line);
2303 errors++;
2304 }
2305 } else if (os_strcmp(buf, "bssid") == 0) {
2306 if (hwaddr_aton(pos, bss->bssid)) {
2307 wpa_printf(MSG_ERROR, "Line %d: invalid bssid "
2308 "item", line);
2309 errors++;
2310 }
2311#ifdef CONFIG_IEEE80211W
2312 } else if (os_strcmp(buf, "ieee80211w") == 0) {
2313 bss->ieee80211w = atoi(pos);
2314 } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
2315 bss->assoc_sa_query_max_timeout = atoi(pos);
2316 if (bss->assoc_sa_query_max_timeout == 0) {
2317 wpa_printf(MSG_ERROR, "Line %d: invalid "
2318 "assoc_sa_query_max_timeout", line);
2319 errors++;
2320 }
2321 } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0)
2322 {
2323 bss->assoc_sa_query_retry_timeout = atoi(pos);
2324 if (bss->assoc_sa_query_retry_timeout == 0) {
2325 wpa_printf(MSG_ERROR, "Line %d: invalid "
2326 "assoc_sa_query_retry_timeout",
2327 line);
2328 errors++;
2329 }
2330#endif /* CONFIG_IEEE80211W */
2331#ifdef CONFIG_IEEE80211N
2332 } else if (os_strcmp(buf, "ieee80211n") == 0) {
2333 conf->ieee80211n = atoi(pos);
2334 } else if (os_strcmp(buf, "ht_capab") == 0) {
2335 if (hostapd_config_ht_capab(conf, pos) < 0) {
2336 wpa_printf(MSG_ERROR, "Line %d: invalid "
2337 "ht_capab", line);
2338 errors++;
2339 }
29448243
JM
2340 } else if (os_strcmp(buf, "require_ht") == 0) {
2341 conf->require_ht = atoi(pos);
41d719d6 2342#endif /* CONFIG_IEEE80211N */
efe45d14
MP
2343#ifdef CONFIG_IEEE80211AC
2344 } else if (os_strcmp(buf, "ieee80211ac") == 0) {
2345 conf->ieee80211ac = atoi(pos);
2346 } else if (os_strcmp(buf, "vht_capab") == 0) {
2347 if (hostapd_config_vht_capab(conf, pos) < 0) {
2348 wpa_printf(MSG_ERROR, "Line %d: invalid "
2349 "vht_capab", line);
2350 errors++;
2351 }
140e850a
MP
2352 } else if (os_strcmp(buf, "require_vht") == 0) {
2353 conf->require_vht = atoi(pos);
efe45d14 2354 } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
6c93c38d 2355 conf->vht_oper_chwidth = atoi(pos);
9615994e
MP
2356 } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0)
2357 {
2358 conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
efe45d14 2359#endif /* CONFIG_IEEE80211AC */
41d719d6
JM
2360 } else if (os_strcmp(buf, "max_listen_interval") == 0) {
2361 bss->max_listen_interval = atoi(pos);
cb465555
JM
2362 } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
2363 bss->disable_pmksa_caching = atoi(pos);
41d719d6
JM
2364 } else if (os_strcmp(buf, "okc") == 0) {
2365 bss->okc = atoi(pos);
2366#ifdef CONFIG_WPS
2367 } else if (os_strcmp(buf, "wps_state") == 0) {
2368 bss->wps_state = atoi(pos);
2369 if (bss->wps_state < 0 || bss->wps_state > 2) {
2370 wpa_printf(MSG_ERROR, "Line %d: invalid "
2371 "wps_state", line);
2372 errors++;
2373 }
2374 } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
2375 bss->ap_setup_locked = atoi(pos);
2376 } else if (os_strcmp(buf, "uuid") == 0) {
2377 if (uuid_str2bin(pos, bss->uuid)) {
2378 wpa_printf(MSG_ERROR, "Line %d: invalid UUID",
2379 line);
2380 errors++;
2381 }
2382 } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
2383 os_free(bss->wps_pin_requests);
2384 bss->wps_pin_requests = os_strdup(pos);
2385 } else if (os_strcmp(buf, "device_name") == 0) {
2386 if (os_strlen(pos) > 32) {
2387 wpa_printf(MSG_ERROR, "Line %d: Too long "
2388 "device_name", line);
2389 errors++;
2390 }
2391 os_free(bss->device_name);
2392 bss->device_name = os_strdup(pos);
2393 } else if (os_strcmp(buf, "manufacturer") == 0) {
2394 if (os_strlen(pos) > 64) {
2395 wpa_printf(MSG_ERROR, "Line %d: Too long "
2396 "manufacturer", line);
2397 errors++;
2398 }
2399 os_free(bss->manufacturer);
2400 bss->manufacturer = os_strdup(pos);
2401 } else if (os_strcmp(buf, "model_name") == 0) {
2402 if (os_strlen(pos) > 32) {
2403 wpa_printf(MSG_ERROR, "Line %d: Too long "
2404 "model_name", line);
2405 errors++;
2406 }
2407 os_free(bss->model_name);
2408 bss->model_name = os_strdup(pos);
2409 } else if (os_strcmp(buf, "model_number") == 0) {
2410 if (os_strlen(pos) > 32) {
2411 wpa_printf(MSG_ERROR, "Line %d: Too long "
2412 "model_number", line);
2413 errors++;
2414 }
2415 os_free(bss->model_number);
2416 bss->model_number = os_strdup(pos);
2417 } else if (os_strcmp(buf, "serial_number") == 0) {
2418 if (os_strlen(pos) > 32) {
2419 wpa_printf(MSG_ERROR, "Line %d: Too long "
2420 "serial_number", line);
2421 errors++;
2422 }
2423 os_free(bss->serial_number);
2424 bss->serial_number = os_strdup(pos);
2425 } else if (os_strcmp(buf, "device_type") == 0) {
2f646b6e
JB
2426 if (wps_dev_type_str2bin(pos, bss->device_type))
2427 errors++;
41d719d6
JM
2428 } else if (os_strcmp(buf, "config_methods") == 0) {
2429 os_free(bss->config_methods);
2430 bss->config_methods = os_strdup(pos);
2431 } else if (os_strcmp(buf, "os_version") == 0) {
2432 if (hexstr2bin(pos, bss->os_version, 4)) {
2433 wpa_printf(MSG_ERROR, "Line %d: invalid "
2434 "os_version", line);
2435 errors++;
2436 }
2437 } else if (os_strcmp(buf, "ap_pin") == 0) {
2438 os_free(bss->ap_pin);
2439 bss->ap_pin = os_strdup(pos);
2440 } else if (os_strcmp(buf, "skip_cred_build") == 0) {
2441 bss->skip_cred_build = atoi(pos);
2442 } else if (os_strcmp(buf, "extra_cred") == 0) {
2443 os_free(bss->extra_cred);
2444 bss->extra_cred =
2445 (u8 *) os_readfile(pos, &bss->extra_cred_len);
2446 if (bss->extra_cred == NULL) {
2447 wpa_printf(MSG_ERROR, "Line %d: could not "
2448 "read Credentials from '%s'",
2449 line, pos);
2450 errors++;
2451 }
2452 } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
2453 bss->wps_cred_processing = atoi(pos);
2454 } else if (os_strcmp(buf, "ap_settings") == 0) {
2455 os_free(bss->ap_settings);
2456 bss->ap_settings =
2457 (u8 *) os_readfile(pos, &bss->ap_settings_len);
2458 if (bss->ap_settings == NULL) {
2459 wpa_printf(MSG_ERROR, "Line %d: could not "
2460 "read AP Settings from '%s'",
2461 line, pos);
2462 errors++;
2463 }
2464 } else if (os_strcmp(buf, "upnp_iface") == 0) {
2465 bss->upnp_iface = os_strdup(pos);
2466 } else if (os_strcmp(buf, "friendly_name") == 0) {
2467 os_free(bss->friendly_name);
2468 bss->friendly_name = os_strdup(pos);
2469 } else if (os_strcmp(buf, "manufacturer_url") == 0) {
2470 os_free(bss->manufacturer_url);
2471 bss->manufacturer_url = os_strdup(pos);
2472 } else if (os_strcmp(buf, "model_description") == 0) {
2473 os_free(bss->model_description);
2474 bss->model_description = os_strdup(pos);
2475 } else if (os_strcmp(buf, "model_url") == 0) {
2476 os_free(bss->model_url);
2477 bss->model_url = os_strdup(pos);
2478 } else if (os_strcmp(buf, "upc") == 0) {
2479 os_free(bss->upc);
2480 bss->upc = os_strdup(pos);
fa516558
JM
2481 } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
2482 bss->pbc_in_m1 = atoi(pos);
ffdaa05a
JM
2483#ifdef CONFIG_WPS_NFC
2484 } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
2485 bss->wps_nfc_dev_pw_id = atoi(pos);
2486 if (bss->wps_nfc_dev_pw_id < 0x10 ||
2487 bss->wps_nfc_dev_pw_id > 0xffff) {
2488 wpa_printf(MSG_ERROR, "Line %d: Invalid "
2489 "wps_nfc_dev_pw_id value", line);
2490 errors++;
2491 }
2492 } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
2493 wpabuf_free(bss->wps_nfc_dh_pubkey);
2494 bss->wps_nfc_dh_pubkey = hostapd_parse_bin(pos);
2495 } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
2496 wpabuf_free(bss->wps_nfc_dh_privkey);
2497 bss->wps_nfc_dh_privkey = hostapd_parse_bin(pos);
2498 } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
2499 wpabuf_free(bss->wps_nfc_dev_pw);
2500 bss->wps_nfc_dev_pw = hostapd_parse_bin(pos);
2501#endif /* CONFIG_WPS_NFC */
41d719d6 2502#endif /* CONFIG_WPS */
962473c1
JM
2503#ifdef CONFIG_P2P_MANAGER
2504 } else if (os_strcmp(buf, "manage_p2p") == 0) {
2505 int manage = atoi(pos);
2506 if (manage)
2507 bss->p2p |= P2P_MANAGE;
2508 else
2509 bss->p2p &= ~P2P_MANAGE;
2510 } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
2511 if (atoi(pos))
2512 bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
2513 else
2514 bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
2515#endif /* CONFIG_P2P_MANAGER */
0d7e5a3a
JB
2516 } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
2517 bss->disassoc_low_ack = atoi(pos);
1161ff1e
JM
2518 } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
2519 int val = atoi(pos);
2520 if (val)
2521 bss->tdls |= TDLS_PROHIBIT;
2522 else
2523 bss->tdls &= ~TDLS_PROHIBIT;
2524 } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
2525 int val = atoi(pos);
2526 if (val)
2527 bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
2528 else
2529 bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
cd9fc786
JM
2530#ifdef CONFIG_RSN_TESTING
2531 } else if (os_strcmp(buf, "rsn_testing") == 0) {
2532 extern int rsn_testing;
2533 rsn_testing = atoi(pos);
2534#endif /* CONFIG_RSN_TESTING */
39b97072
JM
2535 } else if (os_strcmp(buf, "time_advertisement") == 0) {
2536 bss->time_advertisement = atoi(pos);
2537 } else if (os_strcmp(buf, "time_zone") == 0) {
2538 size_t tz_len = os_strlen(pos);
2539 if (tz_len < 4 || tz_len > 255) {
2540 wpa_printf(MSG_DEBUG, "Line %d: invalid "
2541 "time_zone", line);
2542 errors++;
ef45bc89 2543 return errors;
39b97072
JM
2544 }
2545 os_free(bss->time_zone);
2546 bss->time_zone = os_strdup(pos);
2547 if (bss->time_zone == NULL)
2548 errors++;
b83e3e93
JM
2549#ifdef CONFIG_INTERWORKING
2550 } else if (os_strcmp(buf, "interworking") == 0) {
2551 bss->interworking = atoi(pos);
2552 } else if (os_strcmp(buf, "access_network_type") == 0) {
2553 bss->access_network_type = atoi(pos);
2554 if (bss->access_network_type < 0 ||
2555 bss->access_network_type > 15) {
2556 wpa_printf(MSG_ERROR, "Line %d: invalid "
2557 "access_network_type", line);
2558 errors++;
2559 }
2560 } else if (os_strcmp(buf, "internet") == 0) {
2561 bss->internet = atoi(pos);
2562 } else if (os_strcmp(buf, "asra") == 0) {
2563 bss->asra = atoi(pos);
2564 } else if (os_strcmp(buf, "esr") == 0) {
2565 bss->esr = atoi(pos);
2566 } else if (os_strcmp(buf, "uesa") == 0) {
2567 bss->uesa = atoi(pos);
2568 } else if (os_strcmp(buf, "venue_group") == 0) {
2569 bss->venue_group = atoi(pos);
2570 bss->venue_info_set = 1;
2571 } else if (os_strcmp(buf, "venue_type") == 0) {
2572 bss->venue_type = atoi(pos);
2573 bss->venue_info_set = 1;
2574 } else if (os_strcmp(buf, "hessid") == 0) {
2575 if (hwaddr_aton(pos, bss->hessid)) {
2576 wpa_printf(MSG_ERROR, "Line %d: invalid "
2577 "hessid", line);
2578 errors++;
2579 }
4b2a77ab
JM
2580 } else if (os_strcmp(buf, "roaming_consortium") == 0) {
2581 if (parse_roaming_consortium(bss, pos, line) < 0)
2582 errors++;
648cc711
JM
2583 } else if (os_strcmp(buf, "venue_name") == 0) {
2584 if (parse_venue_name(bss, pos, line) < 0)
2585 errors++;
550a3958
JK
2586 } else if (os_strcmp(buf, "network_auth_type") == 0) {
2587 u8 auth_type;
2588 u16 redirect_url_len;
2589 if (hexstr2bin(pos, &auth_type, 1)) {
2590 wpa_printf(MSG_ERROR, "Line %d: Invalid "
2591 "network_auth_type '%s'",
2592 line, pos);
2593 errors++;
2594 return errors;
2595 }
2596 if (auth_type == 0 || auth_type == 2)
2597 redirect_url_len = os_strlen(pos + 2);
2598 else
2599 redirect_url_len = 0;
2600 os_free(bss->network_auth_type);
2601 bss->network_auth_type =
2602 os_malloc(redirect_url_len + 3 + 1);
2603 if (bss->network_auth_type == NULL) {
2604 errors++;
2605 return errors;
2606 }
2607 *bss->network_auth_type = auth_type;
2608 WPA_PUT_LE16(bss->network_auth_type + 1,
2609 redirect_url_len);
2610 if (redirect_url_len)
2611 os_memcpy(bss->network_auth_type + 3,
2612 pos + 2, redirect_url_len);
2613 bss->network_auth_type_len = 3 + redirect_url_len;
78bda93e
JK
2614 } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
2615 if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1))
2616 {
2617 wpa_printf(MSG_ERROR, "Line %d: Invalid "
2618 "ipaddr_type_availability '%s'",
2619 line, pos);
2620 bss->ipaddr_type_configured = 0;
2621 errors++;
2622 return errors;
2623 }
2624 bss->ipaddr_type_configured = 1;
26fac8b6
JK
2625 } else if (os_strcmp(buf, "domain_name") == 0) {
2626 int j, num_domains, domain_len, domain_list_len = 0;
2627 char *tok_start, *tok_prev;
2628 u8 *domain_list, *domain_ptr;
2629
2630 domain_list_len = os_strlen(pos) + 1;
2631 domain_list = os_malloc(domain_list_len);
2632 if (domain_list == NULL) {
2633 errors++;
2634 return errors;
2635 }
2636
2637 domain_ptr = domain_list;
2638 tok_prev = pos;
2639 num_domains = 1;
2640 while ((tok_prev = os_strchr(tok_prev, ','))) {
2641 num_domains++;
2642 tok_prev++;
2643 }
2644 tok_prev = pos;
2645 for (j = 0; j < num_domains; j++) {
2646 tok_start = os_strchr(tok_prev, ',');
2647 if (tok_start) {
2648 domain_len = tok_start - tok_prev;
2649 *domain_ptr = domain_len;
2650 os_memcpy(domain_ptr + 1, tok_prev,
2651 domain_len);
2652 domain_ptr += domain_len + 1;
2653 tok_prev = ++tok_start;
2654 } else {
2655 domain_len = os_strlen(tok_prev);
2656 *domain_ptr = domain_len;
2657 os_memcpy(domain_ptr + 1, tok_prev,
2658 domain_len);
2659 domain_ptr += domain_len + 1;
2660 }
2661 }
2662
2663 os_free(bss->domain_name);
2664 bss->domain_name = domain_list;
2665 bss->domain_name_len = domain_list_len;
7515adb2
JK
2666 } else if (os_strcmp(buf, "anqp_3gpp_cell_net") == 0) {
2667 if (parse_3gpp_cell_net(bss, pos, line) < 0)
2668 errors++;
dca30c3f
JK
2669 } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
2670 bss->gas_frag_limit = atoi(pos);
2671 } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
2672 bss->gas_comeback_delay = atoi(pos);
b83e3e93 2673#endif /* CONFIG_INTERWORKING */
505a3694
JM
2674#ifdef CONFIG_RADIUS_TEST
2675 } else if (os_strcmp(buf, "dump_msk_file") == 0) {
2676 os_free(bss->dump_msk_file);
2677 bss->dump_msk_file = os_strdup(pos);
2678#endif /* CONFIG_RADIUS_TEST */
159c89ab
JK
2679#ifdef CONFIG_HS20
2680 } else if (os_strcmp(buf, "hs20") == 0) {
2681 bss->hs20 = atoi(pos);
83421850
JM
2682 } else if (os_strcmp(buf, "disable_dgaf") == 0) {
2683 bss->disable_dgaf = atoi(pos);
4065a309
JK
2684 } else if (os_strcmp(buf, "hs20_wan_metrics") == 0) {
2685 if (hs20_parse_wan_metrics(bss, pos, line) < 0) {
2686 errors++;
2687 return errors;
2688 }
5ccc54aa
JK
2689 } else if (os_strcmp(buf, "hs20_conn_capab") == 0) {
2690 if (hs20_parse_conn_capab(bss, pos, line) < 0) {
2691 errors++;
2692 return errors;
2693 }
df5934f1
JK
2694 } else if (os_strcmp(buf, "hs20_operating_class") == 0) {
2695 u8 *oper_class;
2696 size_t oper_class_len;
2697 oper_class_len = os_strlen(pos);
2698 if (oper_class_len < 2 || (oper_class_len & 0x01)) {
2699 wpa_printf(MSG_ERROR, "Line %d: Invalid "
2700 "hs20_operating_class '%s'",
2701 line, pos);
2702 errors++;
2703 return errors;
2704 }
2705 oper_class_len /= 2;
2706 oper_class = os_malloc(oper_class_len);
2707 if (oper_class == NULL) {
2708 errors++;
2709 return errors;
2710 }
2711 if (hexstr2bin(pos, oper_class, oper_class_len)) {
2712 wpa_printf(MSG_ERROR, "Line %d: Invalid "
2713 "hs20_operating_class '%s'",
2714 line, pos);
2715 os_free(oper_class);
2716 errors++;
2717 return errors;
2718 }
2719 os_free(bss->hs20_operating_class);
2720 bss->hs20_operating_class = oper_class;
2721 bss->hs20_operating_class_len = oper_class_len;
159c89ab 2722#endif /* CONFIG_HS20 */
41d719d6
JM
2723 } else {
2724 wpa_printf(MSG_ERROR, "Line %d: unknown configuration "
2725 "item '%s'", line, buf);
2726 errors++;
2727 }
2728 }
2729
ef45bc89
SP
2730 return errors;
2731}
2732
2733
a7f5b74d
JM
2734static void hostapd_set_security_params(struct hostapd_bss_config *bss)
2735{
2736 int pairwise;
2737
2738 if (bss->individual_wep_key_len == 0) {
2739 /* individual keys are not use; can use key idx0 for
2740 * broadcast keys */
2741 bss->broadcast_key_idx_min = 0;
2742 }
2743
2744 /* Select group cipher based on the enabled pairwise cipher
2745 * suites */
2746 pairwise = 0;
2747 if (bss->wpa & 1)
2748 pairwise |= bss->wpa_pairwise;
2749 if (bss->wpa & 2) {
2750 if (bss->rsn_pairwise == 0)
2751 bss->rsn_pairwise = bss->wpa_pairwise;
2752 pairwise |= bss->rsn_pairwise;
2753 }
2754 if (pairwise & WPA_CIPHER_TKIP)
2755 bss->wpa_group = WPA_CIPHER_TKIP;
2756 else
2757 bss->wpa_group = WPA_CIPHER_CCMP;
2758
2759 bss->radius->auth_server = bss->radius->auth_servers;
2760 bss->radius->acct_server = bss->radius->acct_servers;
2761
2762 if (bss->wpa && bss->ieee802_1x) {
2763 bss->ssid.security_policy = SECURITY_WPA;
2764 } else if (bss->wpa) {
2765 bss->ssid.security_policy = SECURITY_WPA_PSK;
2766 } else if (bss->ieee802_1x) {
2767 int cipher = WPA_CIPHER_NONE;
2768 bss->ssid.security_policy = SECURITY_IEEE_802_1X;
2769 bss->ssid.wep.default_len = bss->default_wep_key_len;
2770 if (bss->default_wep_key_len)
2771 cipher = bss->default_wep_key_len >= 13 ?
2772 WPA_CIPHER_WEP104 : WPA_CIPHER_WEP40;
2773 bss->wpa_group = cipher;
2774 bss->wpa_pairwise = cipher;
2775 bss->rsn_pairwise = cipher;
2776 } else if (bss->ssid.wep.keys_set) {
2777 int cipher = WPA_CIPHER_WEP40;
2778 if (bss->ssid.wep.len[0] >= 13)
2779 cipher = WPA_CIPHER_WEP104;
2780 bss->ssid.security_policy = SECURITY_STATIC_WEP;
2781 bss->wpa_group = cipher;
2782 bss->wpa_pairwise = cipher;
2783 bss->rsn_pairwise = cipher;
2784 } else {
2785 bss->ssid.security_policy = SECURITY_PLAINTEXT;
2786 bss->wpa_group = WPA_CIPHER_NONE;
2787 bss->wpa_pairwise = WPA_CIPHER_NONE;
2788 bss->rsn_pairwise = WPA_CIPHER_NONE;
2789 }
2790}
2791
2792
ef45bc89
SP
2793/**
2794 * hostapd_config_read - Read and parse a configuration file
2795 * @fname: Configuration file name (including path, if needed)
2796 * Returns: Allocated configuration data structure
2797 */
2798struct hostapd_config * hostapd_config_read(const char *fname)
2799{
2800 struct hostapd_config *conf;
2801 struct hostapd_bss_config *bss;
2802 FILE *f;
ffdaa05a 2803 char buf[512], *pos;
ef45bc89
SP
2804 int line = 0;
2805 int errors = 0;
ef45bc89
SP
2806 size_t i;
2807
2808 f = fopen(fname, "r");
2809 if (f == NULL) {
2810 wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
2811 "for reading.", fname);
2812 return NULL;
2813 }
2814
2815 conf = hostapd_config_defaults();
2816 if (conf == NULL) {
2817 fclose(f);
2818 return NULL;
2819 }
2820
2821 /* set default driver based on configuration */
2822 conf->driver = wpa_drivers[0];
2823 if (conf->driver == NULL) {
2824 wpa_printf(MSG_ERROR, "No driver wrappers registered!");
2825 hostapd_config_free(conf);
2826 fclose(f);
2827 return NULL;
2828 }
2829
2830 bss = conf->last_bss = conf->bss;
2831
2832 while (fgets(buf, sizeof(buf), f)) {
2833 bss = conf->last_bss;
2834 line++;
2835
2836 if (buf[0] == '#')
2837 continue;
2838 pos = buf;
2839 while (*pos != '\0') {
2840 if (*pos == '\n') {
2841 *pos = '\0';
2842 break;
2843 }
2844 pos++;
2845 }
2846 if (buf[0] == '\0')
2847 continue;
2848
2849 pos = os_strchr(buf, '=');
2850 if (pos == NULL) {
2851 wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
2852 line, buf);
2853 errors++;
2854 continue;
2855 }
2856 *pos = '\0';
2857 pos++;
2858 errors += hostapd_config_fill(conf, bss, buf, pos, line);
2859 }
2860
41d719d6
JM
2861 fclose(f);
2862
a7f5b74d
JM
2863 for (i = 0; i < conf->num_bss; i++)
2864 hostapd_set_security_params(&conf->bss[i]);
41d719d6
JM
2865
2866 if (hostapd_config_check(conf))
2867 errors++;
2868
ae6e1bee 2869#ifndef WPA_IGNORE_CONFIG_ERRORS
41d719d6
JM
2870 if (errors) {
2871 wpa_printf(MSG_ERROR, "%d errors found in configuration file "
2872 "'%s'", errors, fname);
2873 hostapd_config_free(conf);
2874 conf = NULL;
2875 }
ae6e1bee 2876#endif /* WPA_IGNORE_CONFIG_ERRORS */
41d719d6
JM
2877
2878 return conf;
2879}
31b79e11
SP
2880
2881
2882int hostapd_set_iface(struct hostapd_config *conf,
2883 struct hostapd_bss_config *bss, char *field, char *value)
2884{
4929898d 2885 int errors;
31b79e11
SP
2886 size_t i;
2887
2888 errors = hostapd_config_fill(conf, bss, field, value, 0);
2889 if (errors) {
2890 wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
2891 "to value '%s'", field, value);
2892 return -1;
2893 }
2894
2895 for (i = 0; i < conf->num_bss; i++)
2896 hostapd_set_security_params(&conf->bss[i]);
2897
2898 if (hostapd_config_check(conf)) {
2899 wpa_printf(MSG_ERROR, "Configuration check failed");
17706d1c 2900 return -1;
31b79e11
SP
2901 }
2902
2903 return 0;
2904}