]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/config_file.c
QCA vendor subcommand for LL_STATS extension
[thirdparty/hostap.git] / hostapd / config_file.c
CommitLineData
41d719d6
JM
1/*
2 * hostapd / Configuration file parser
5e3b5197 3 * Copyright (c) 2003-2015, 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
d0ee16ed
JM
25#ifndef CONFIG_NO_RADIUS
26#ifdef EAP_SERVER
27static struct hostapd_radius_attr *
28hostapd_parse_radius_attr(const char *value);
29#endif /* EAP_SERVER */
30#endif /* CONFIG_NO_RADIUS */
31
32
41d719d6
JM
33#ifndef CONFIG_NO_VLAN
34static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
35 const char *fname)
36{
37 FILE *f;
38 char buf[128], *pos, *pos2;
39 int line = 0, vlan_id;
40 struct hostapd_vlan *vlan;
41
42 f = fopen(fname, "r");
43 if (!f) {
44 wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
45 return -1;
46 }
47
48 while (fgets(buf, sizeof(buf), f)) {
49 line++;
50
51 if (buf[0] == '#')
52 continue;
53 pos = buf;
54 while (*pos != '\0') {
55 if (*pos == '\n') {
56 *pos = '\0';
57 break;
58 }
59 pos++;
60 }
61 if (buf[0] == '\0')
62 continue;
63
64 if (buf[0] == '*') {
65 vlan_id = VLAN_ID_WILDCARD;
66 pos = buf + 1;
67 } else {
68 vlan_id = strtol(buf, &pos, 10);
69 if (buf == pos || vlan_id < 1 ||
70 vlan_id > MAX_VLAN_ID) {
71 wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
72 "line %d in '%s'", line, fname);
73 fclose(f);
74 return -1;
75 }
76 }
77
78 while (*pos == ' ' || *pos == '\t')
79 pos++;
80 pos2 = pos;
81 while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
82 pos2++;
83 *pos2 = '\0';
84 if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
85 wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
86 "in '%s'", line, fname);
87 fclose(f);
88 return -1;
89 }
90
8b44ad7e 91 vlan = os_zalloc(sizeof(*vlan));
41d719d6
JM
92 if (vlan == NULL) {
93 wpa_printf(MSG_ERROR, "Out of memory while reading "
94 "VLAN interfaces from '%s'", fname);
95 fclose(f);
96 return -1;
97 }
98
41d719d6 99 vlan->vlan_id = vlan_id;
1889af2e
MB
100 vlan->vlan_desc.untagged = vlan_id;
101 vlan->vlan_desc.notempty = !!vlan_id;
41d719d6 102 os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
c2db79f2
MB
103 vlan->next = bss->vlan;
104 bss->vlan = vlan;
41d719d6
JM
105 }
106
107 fclose(f);
108
109 return 0;
110}
111#endif /* CONFIG_NO_VLAN */
112
113
114static int hostapd_acl_comp(const void *a, const void *b)
115{
116 const struct mac_acl_entry *aa = a;
117 const struct mac_acl_entry *bb = b;
118 return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
119}
120
121
122static int hostapd_config_read_maclist(const char *fname,
123 struct mac_acl_entry **acl, int *num)
124{
125 FILE *f;
126 char buf[128], *pos;
127 int line = 0;
128 u8 addr[ETH_ALEN];
129 struct mac_acl_entry *newacl;
130 int vlan_id;
131
132 if (!fname)
133 return 0;
134
135 f = fopen(fname, "r");
136 if (!f) {
137 wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
138 return -1;
139 }
140
141 while (fgets(buf, sizeof(buf), f)) {
1748f1da
ET
142 int i, rem = 0;
143
41d719d6
JM
144 line++;
145
146 if (buf[0] == '#')
147 continue;
148 pos = buf;
149 while (*pos != '\0') {
150 if (*pos == '\n') {
151 *pos = '\0';
152 break;
153 }
154 pos++;
155 }
156 if (buf[0] == '\0')
157 continue;
1748f1da
ET
158 pos = buf;
159 if (buf[0] == '-') {
160 rem = 1;
161 pos++;
162 }
41d719d6 163
1748f1da 164 if (hwaddr_aton(pos, addr)) {
41d719d6 165 wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
1748f1da 166 "line %d in '%s'", pos, line, fname);
41d719d6
JM
167 fclose(f);
168 return -1;
169 }
170
1748f1da
ET
171 if (rem) {
172 i = 0;
173 while (i < *num) {
174 if (os_memcmp((*acl)[i].addr, addr, ETH_ALEN) ==
175 0) {
176 os_remove_in_array(*acl, *num,
177 sizeof(**acl), i);
178 (*num)--;
179 } else
180 i++;
181 }
182 continue;
183 }
41d719d6
JM
184 vlan_id = 0;
185 pos = buf;
186 while (*pos != '\0' && *pos != ' ' && *pos != '\t')
187 pos++;
188 while (*pos == ' ' || *pos == '\t')
189 pos++;
190 if (*pos != '\0')
191 vlan_id = atoi(pos);
192
067ffa26 193 newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
41d719d6
JM
194 if (newacl == NULL) {
195 wpa_printf(MSG_ERROR, "MAC list reallocation failed");
196 fclose(f);
197 return -1;
198 }
199
200 *acl = newacl;
201 os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
1889af2e
MB
202 os_memset(&(*acl)[*num].vlan_id, 0,
203 sizeof((*acl)[*num].vlan_id));
204 (*acl)[*num].vlan_id.untagged = vlan_id;
205 (*acl)[*num].vlan_id.notempty = !!vlan_id;
41d719d6
JM
206 (*num)++;
207 }
208
209 fclose(f);
210
211 qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
212
213 return 0;
214}
215
216
217#ifdef EAP_SERVER
218static int hostapd_config_read_eap_user(const char *fname,
219 struct hostapd_bss_config *conf)
220{
221 FILE *f;
222 char buf[512], *pos, *start, *pos2;
223 int line = 0, ret = 0, num_methods;
4437f8fc 224 struct hostapd_eap_user *user = NULL, *tail = NULL, *new_user = NULL;
41d719d6
JM
225
226 if (!fname)
227 return 0;
228
ee431d77 229 if (os_strncmp(fname, "sqlite:", 7) == 0) {
c469d622 230#ifdef CONFIG_SQLITE
ee431d77
JM
231 os_free(conf->eap_user_sqlite);
232 conf->eap_user_sqlite = os_strdup(fname + 7);
233 return 0;
c469d622
BG
234#else /* CONFIG_SQLITE */
235 wpa_printf(MSG_ERROR,
236 "EAP user file in SQLite DB, but CONFIG_SQLITE was not enabled in the build.");
237 return -1;
238#endif /* CONFIG_SQLITE */
ee431d77
JM
239 }
240
41d719d6
JM
241 f = fopen(fname, "r");
242 if (!f) {
243 wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
244 return -1;
245 }
246
247 /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
248 while (fgets(buf, sizeof(buf), f)) {
249 line++;
250
251 if (buf[0] == '#')
252 continue;
253 pos = buf;
254 while (*pos != '\0') {
255 if (*pos == '\n') {
256 *pos = '\0';
257 break;
258 }
259 pos++;
260 }
261 if (buf[0] == '\0')
262 continue;
263
d0ee16ed
JM
264#ifndef CONFIG_NO_RADIUS
265 if (user && os_strncmp(buf, "radius_accept_attr=", 19) == 0) {
266 struct hostapd_radius_attr *attr, *a;
267 attr = hostapd_parse_radius_attr(buf + 19);
268 if (attr == NULL) {
269 wpa_printf(MSG_ERROR, "Invalid radius_auth_req_attr: %s",
270 buf + 19);
4fb363c6 271 user = NULL; /* already in the BSS list */
d0ee16ed
JM
272 goto failed;
273 }
274 if (user->accept_attr == NULL) {
275 user->accept_attr = attr;
276 } else {
277 a = user->accept_attr;
278 while (a->next)
279 a = a->next;
280 a->next = attr;
281 }
282 continue;
283 }
284#endif /* CONFIG_NO_RADIUS */
285
41d719d6
JM
286 user = NULL;
287
288 if (buf[0] != '"' && buf[0] != '*') {
289 wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
290 "start) on line %d in '%s'", line, fname);
291 goto failed;
292 }
293
294 user = os_zalloc(sizeof(*user));
295 if (user == NULL) {
296 wpa_printf(MSG_ERROR, "EAP user allocation failed");
297 goto failed;
298 }
299 user->force_version = -1;
300
301 if (buf[0] == '*') {
302 pos = buf;
303 } else {
304 pos = buf + 1;
305 start = pos;
306 while (*pos != '"' && *pos != '\0')
307 pos++;
308 if (*pos == '\0') {
309 wpa_printf(MSG_ERROR, "Invalid EAP identity "
310 "(no \" in end) on line %d in '%s'",
311 line, fname);
312 goto failed;
313 }
314
315 user->identity = os_malloc(pos - start);
316 if (user->identity == NULL) {
317 wpa_printf(MSG_ERROR, "Failed to allocate "
318 "memory for EAP identity");
319 goto failed;
320 }
321 os_memcpy(user->identity, start, pos - start);
322 user->identity_len = pos - start;
323
324 if (pos[0] == '"' && pos[1] == '*') {
325 user->wildcard_prefix = 1;
326 pos++;
327 }
328 }
329 pos++;
330 while (*pos == ' ' || *pos == '\t')
331 pos++;
332
333 if (*pos == '\0') {
334 wpa_printf(MSG_ERROR, "No EAP method on line %d in "
335 "'%s'", line, fname);
336 goto failed;
337 }
338
339 start = pos;
340 while (*pos != ' ' && *pos != '\t' && *pos != '\0')
341 pos++;
342 if (*pos == '\0') {
343 pos = NULL;
344 } else {
345 *pos = '\0';
346 pos++;
347 }
348 num_methods = 0;
349 while (*start) {
350 char *pos3 = os_strchr(start, ',');
351 if (pos3) {
352 *pos3++ = '\0';
353 }
354 user->methods[num_methods].method =
355 eap_server_get_type(
356 start,
357 &user->methods[num_methods].vendor);
358 if (user->methods[num_methods].vendor ==
359 EAP_VENDOR_IETF &&
360 user->methods[num_methods].method == EAP_TYPE_NONE)
361 {
362 if (os_strcmp(start, "TTLS-PAP") == 0) {
363 user->ttls_auth |= EAP_TTLS_AUTH_PAP;
364 goto skip_eap;
365 }
366 if (os_strcmp(start, "TTLS-CHAP") == 0) {
367 user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
368 goto skip_eap;
369 }
370 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
371 user->ttls_auth |=
372 EAP_TTLS_AUTH_MSCHAP;
373 goto skip_eap;
374 }
375 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
376 user->ttls_auth |=
377 EAP_TTLS_AUTH_MSCHAPV2;
378 goto skip_eap;
379 }
8943cc99
JM
380 if (os_strcmp(start, "MACACL") == 0) {
381 user->macacl = 1;
382 goto skip_eap;
383 }
41d719d6
JM
384 wpa_printf(MSG_ERROR, "Unsupported EAP type "
385 "'%s' on line %d in '%s'",
386 start, line, fname);
387 goto failed;
388 }
389
390 num_methods++;
e9447a94 391 if (num_methods >= EAP_MAX_METHODS)
41d719d6
JM
392 break;
393 skip_eap:
394 if (pos3 == NULL)
395 break;
396 start = pos3;
397 }
8943cc99 398 if (num_methods == 0 && user->ttls_auth == 0 && !user->macacl) {
41d719d6
JM
399 wpa_printf(MSG_ERROR, "No EAP types configured on "
400 "line %d in '%s'", line, fname);
401 goto failed;
402 }
403
404 if (pos == NULL)
405 goto done;
406
407 while (*pos == ' ' || *pos == '\t')
408 pos++;
409 if (*pos == '\0')
410 goto done;
411
412 if (os_strncmp(pos, "[ver=0]", 7) == 0) {
413 user->force_version = 0;
414 goto done;
415 }
416
417 if (os_strncmp(pos, "[ver=1]", 7) == 0) {
418 user->force_version = 1;
419 goto done;
420 }
421
422 if (os_strncmp(pos, "[2]", 3) == 0) {
423 user->phase2 = 1;
424 goto done;
425 }
426
427 if (*pos == '"') {
428 pos++;
429 start = pos;
430 while (*pos != '"' && *pos != '\0')
431 pos++;
432 if (*pos == '\0') {
433 wpa_printf(MSG_ERROR, "Invalid EAP password "
434 "(no \" in end) on line %d in '%s'",
435 line, fname);
436 goto failed;
437 }
438
439 user->password = os_malloc(pos - start);
440 if (user->password == NULL) {
441 wpa_printf(MSG_ERROR, "Failed to allocate "
442 "memory for EAP password");
443 goto failed;
444 }
445 os_memcpy(user->password, start, pos - start);
446 user->password_len = pos - start;
447
448 pos++;
449 } else if (os_strncmp(pos, "hash:", 5) == 0) {
450 pos += 5;
451 pos2 = pos;
452 while (*pos2 != '\0' && *pos2 != ' ' &&
453 *pos2 != '\t' && *pos2 != '#')
454 pos2++;
455 if (pos2 - pos != 32) {
456 wpa_printf(MSG_ERROR, "Invalid password hash "
457 "on line %d in '%s'", line, fname);
458 goto failed;
459 }
460 user->password = os_malloc(16);
461 if (user->password == NULL) {
462 wpa_printf(MSG_ERROR, "Failed to allocate "
463 "memory for EAP password hash");
464 goto failed;
465 }
466 if (hexstr2bin(pos, user->password, 16) < 0) {
467 wpa_printf(MSG_ERROR, "Invalid hash password "
468 "on line %d in '%s'", line, fname);
469 goto failed;
470 }
471 user->password_len = 16;
472 user->password_hash = 1;
473 pos = pos2;
474 } else {
475 pos2 = pos;
476 while (*pos2 != '\0' && *pos2 != ' ' &&
477 *pos2 != '\t' && *pos2 != '#')
478 pos2++;
479 if ((pos2 - pos) & 1) {
480 wpa_printf(MSG_ERROR, "Invalid hex password "
481 "on line %d in '%s'", line, fname);
482 goto failed;
483 }
484 user->password = os_malloc((pos2 - pos) / 2);
485 if (user->password == NULL) {
486 wpa_printf(MSG_ERROR, "Failed to allocate "
487 "memory for EAP password");
488 goto failed;
489 }
490 if (hexstr2bin(pos, user->password,
491 (pos2 - pos) / 2) < 0) {
492 wpa_printf(MSG_ERROR, "Invalid hex password "
493 "on line %d in '%s'", line, fname);
494 goto failed;
495 }
496 user->password_len = (pos2 - pos) / 2;
497 pos = pos2;
498 }
499
500 while (*pos == ' ' || *pos == '\t')
501 pos++;
502 if (os_strncmp(pos, "[2]", 3) == 0) {
503 user->phase2 = 1;
504 }
505
506 done:
507 if (tail == NULL) {
4437f8fc 508 tail = new_user = user;
41d719d6
JM
509 } else {
510 tail->next = user;
511 tail = user;
512 }
513 continue;
514
515 failed:
d0ee16ed
JM
516 if (user)
517 hostapd_config_free_eap_user(user);
41d719d6
JM
518 ret = -1;
519 break;
520 }
521
522 fclose(f);
523
4437f8fc
JM
524 if (ret == 0) {
525 user = conf->eap_user;
526 while (user) {
527 struct hostapd_eap_user *prev;
528
529 prev = user;
530 user = user->next;
531 hostapd_config_free_eap_user(prev);
532 }
533 conf->eap_user = new_user;
534 }
535
41d719d6
JM
536 return ret;
537}
538#endif /* EAP_SERVER */
539
540
541#ifndef CONFIG_NO_RADIUS
542static int
543hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
544 int *num_server, const char *val, int def_port,
545 struct hostapd_radius_server **curr_serv)
546{
547 struct hostapd_radius_server *nserv;
548 int ret;
549 static int server_index = 1;
550
067ffa26 551 nserv = os_realloc_array(*server, *num_server + 1, sizeof(*nserv));
41d719d6
JM
552 if (nserv == NULL)
553 return -1;
554
555 *server = nserv;
556 nserv = &nserv[*num_server];
557 (*num_server)++;
558 (*curr_serv) = nserv;
559
560 os_memset(nserv, 0, sizeof(*nserv));
561 nserv->port = def_port;
562 ret = hostapd_parse_ip_addr(val, &nserv->addr);
563 nserv->index = server_index++;
564
565 return ret;
566}
af35e7af
JM
567
568
569static struct hostapd_radius_attr *
570hostapd_parse_radius_attr(const char *value)
571{
572 const char *pos;
573 char syntax;
574 struct hostapd_radius_attr *attr;
575 size_t len;
576
577 attr = os_zalloc(sizeof(*attr));
578 if (attr == NULL)
579 return NULL;
580
581 attr->type = atoi(value);
582
583 pos = os_strchr(value, ':');
584 if (pos == NULL) {
585 attr->val = wpabuf_alloc(1);
586 if (attr->val == NULL) {
587 os_free(attr);
588 return NULL;
589 }
590 wpabuf_put_u8(attr->val, 0);
591 return attr;
592 }
593
594 pos++;
595 if (pos[0] == '\0' || pos[1] != ':') {
596 os_free(attr);
597 return NULL;
598 }
599 syntax = *pos++;
600 pos++;
601
602 switch (syntax) {
603 case 's':
604 attr->val = wpabuf_alloc_copy(pos, os_strlen(pos));
605 break;
606 case 'x':
607 len = os_strlen(pos);
608 if (len & 1)
609 break;
610 len /= 2;
611 attr->val = wpabuf_alloc(len);
612 if (attr->val == NULL)
613 break;
614 if (hexstr2bin(pos, wpabuf_put(attr->val, len), len) < 0) {
615 wpabuf_free(attr->val);
616 os_free(attr);
617 return NULL;
618 }
619 break;
620 case 'd':
621 attr->val = wpabuf_alloc(4);
622 if (attr->val)
623 wpabuf_put_be32(attr->val, atoi(pos));
624 break;
625 default:
626 os_free(attr);
627 return NULL;
628 }
629
630 if (attr->val == NULL) {
631 os_free(attr);
632 return NULL;
633 }
634
635 return attr;
636}
b031338c
JM
637
638
79931efa 639static int hostapd_parse_das_client(struct hostapd_bss_config *bss, char *val)
b031338c
JM
640{
641 char *secret;
b031338c
JM
642
643 secret = os_strchr(val, ' ');
644 if (secret == NULL)
645 return -1;
646
79931efa 647 *secret++ = '\0';
b031338c
JM
648
649 if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
650 return -1;
651
652 os_free(bss->radius_das_shared_secret);
6e459875 653 bss->radius_das_shared_secret = (u8 *) os_strdup(secret);
b031338c
JM
654 if (bss->radius_das_shared_secret == NULL)
655 return -1;
6e459875 656 bss->radius_das_shared_secret_len = os_strlen(secret);
b031338c
JM
657
658 return 0;
659}
41d719d6
JM
660#endif /* CONFIG_NO_RADIUS */
661
662
663static int hostapd_config_parse_key_mgmt(int line, const char *value)
664{
665 int val = 0, last;
666 char *start, *end, *buf;
667
668 buf = os_strdup(value);
669 if (buf == NULL)
670 return -1;
671 start = buf;
672
673 while (*start != '\0') {
674 while (*start == ' ' || *start == '\t')
675 start++;
676 if (*start == '\0')
677 break;
678 end = start;
679 while (*end != ' ' && *end != '\t' && *end != '\0')
680 end++;
681 last = *end == '\0';
682 *end = '\0';
683 if (os_strcmp(start, "WPA-PSK") == 0)
684 val |= WPA_KEY_MGMT_PSK;
685 else if (os_strcmp(start, "WPA-EAP") == 0)
686 val |= WPA_KEY_MGMT_IEEE8021X;
687#ifdef CONFIG_IEEE80211R
688 else if (os_strcmp(start, "FT-PSK") == 0)
689 val |= WPA_KEY_MGMT_FT_PSK;
690 else if (os_strcmp(start, "FT-EAP") == 0)
691 val |= WPA_KEY_MGMT_FT_IEEE8021X;
692#endif /* CONFIG_IEEE80211R */
693#ifdef CONFIG_IEEE80211W
694 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
695 val |= WPA_KEY_MGMT_PSK_SHA256;
696 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
697 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
698#endif /* CONFIG_IEEE80211W */
c10347f2
JM
699#ifdef CONFIG_SAE
700 else if (os_strcmp(start, "SAE") == 0)
701 val |= WPA_KEY_MGMT_SAE;
702 else if (os_strcmp(start, "FT-SAE") == 0)
703 val |= WPA_KEY_MGMT_FT_SAE;
704#endif /* CONFIG_SAE */
5e3b5197 705#ifdef CONFIG_SUITEB
666497c8
JM
706 else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
707 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
5e3b5197
JM
708#endif /* CONFIG_SUITEB */
709#ifdef CONFIG_SUITEB192
710 else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
711 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
712#endif /* CONFIG_SUITEB192 */
41d719d6
JM
713 else {
714 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
715 line, start);
716 os_free(buf);
717 return -1;
718 }
719
720 if (last)
721 break;
722 start = end + 1;
723 }
724
725 os_free(buf);
726 if (val == 0) {
727 wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
728 "configured.", line);
729 return -1;
730 }
731
732 return val;
733}
734
735
736static int hostapd_config_parse_cipher(int line, const char *value)
737{
a39c78be
JM
738 int val = wpa_parse_cipher(value);
739 if (val < 0) {
740 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
741 line, value);
41d719d6 742 return -1;
41d719d6 743 }
41d719d6
JM
744 if (val == 0) {
745 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
746 line);
747 return -1;
748 }
749 return val;
750}
751
752
753static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
754 char *val)
755{
756 size_t len = os_strlen(val);
757
758 if (keyidx < 0 || keyidx > 3 || wep->key[keyidx] != NULL)
759 return -1;
760
761 if (val[0] == '"') {
762 if (len < 2 || val[len - 1] != '"')
763 return -1;
764 len -= 2;
765 wep->key[keyidx] = os_malloc(len);
766 if (wep->key[keyidx] == NULL)
767 return -1;
768 os_memcpy(wep->key[keyidx], val + 1, len);
769 wep->len[keyidx] = len;
770 } else {
771 if (len & 1)
772 return -1;
773 len /= 2;
774 wep->key[keyidx] = os_malloc(len);
775 if (wep->key[keyidx] == NULL)
776 return -1;
777 wep->len[keyidx] = len;
778 if (hexstr2bin(val, wep->key[keyidx], len) < 0)
779 return -1;
780 }
781
782 wep->keys_set++;
783
784 return 0;
785}
786
787
857d9422
MM
788static int hostapd_parse_chanlist(struct hostapd_config *conf, char *val)
789{
790 char *pos;
791
792 /* for backwards compatibility, translate ' ' in conf str to ',' */
793 pos = val;
794 while (pos) {
795 pos = os_strchr(pos, ' ');
796 if (pos)
797 *pos++ = ',';
798 }
799 if (freq_range_list_parse(&conf->acs_ch_list, val))
800 return -1;
801
802 return 0;
803}
804
805
732118ec 806static int hostapd_parse_intlist(int **int_list, char *val)
41d719d6
JM
807{
808 int *list;
809 int count;
810 char *pos, *end;
811
732118ec
SW
812 os_free(*int_list);
813 *int_list = NULL;
41d719d6
JM
814
815 pos = val;
816 count = 0;
817 while (*pos != '\0') {
818 if (*pos == ' ')
819 count++;
820 pos++;
821 }
822
823 list = os_malloc(sizeof(int) * (count + 2));
824 if (list == NULL)
825 return -1;
826 pos = val;
827 count = 0;
828 while (*pos != '\0') {
829 end = os_strchr(pos, ' ');
830 if (end)
831 *end = '\0';
832
833 list[count++] = atoi(pos);
834 if (!end)
835 break;
836 pos = end + 1;
837 }
838 list[count] = -1;
839
732118ec 840 *int_list = list;
41d719d6
JM
841 return 0;
842}
843
844
845static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
846{
ebd79f07 847 struct hostapd_bss_config **all, *bss;
41d719d6
JM
848
849 if (*ifname == '\0')
850 return -1;
851
ebd79f07
JM
852 all = os_realloc_array(conf->bss, conf->num_bss + 1,
853 sizeof(struct hostapd_bss_config *));
854 if (all == NULL) {
41d719d6
JM
855 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
856 "multi-BSS entry");
857 return -1;
858 }
ebd79f07 859 conf->bss = all;
41d719d6 860
2fe210ce
JM
861 bss = os_zalloc(sizeof(*bss));
862 if (bss == NULL)
863 return -1;
41d719d6
JM
864 bss->radius = os_zalloc(sizeof(*bss->radius));
865 if (bss->radius == NULL) {
866 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
867 "multi-BSS RADIUS data");
2fe210ce 868 os_free(bss);
41d719d6
JM
869 return -1;
870 }
871
2fe210ce 872 conf->bss[conf->num_bss++] = bss;
41d719d6
JM
873 conf->last_bss = bss;
874
875 hostapd_config_defaults_bss(bss);
876 os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
877 os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
878
879 return 0;
880}
881
882
883/* convert floats with one decimal place to value*10 int, i.e.,
884 * "1.5" will return 15 */
885static int hostapd_config_read_int10(const char *value)
886{
887 int i, d;
888 char *pos;
889
890 i = atoi(value);
891 pos = os_strchr(value, '.');
892 d = 0;
893 if (pos) {
894 pos++;
895 if (*pos >= '0' && *pos <= '9')
896 d = *pos - '0';
897 }
898
899 return i * 10 + d;
900}
901
902
903static int valid_cw(int cw)
904{
905 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
6c731491
JM
906 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023 ||
907 cw == 2047 || cw == 4095 || cw == 8191 || cw == 16383 ||
908 cw == 32767);
41d719d6
JM
909}
910
911
912enum {
913 IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
914 IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
915 IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
7e3c1781 916 IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
41d719d6
JM
917};
918
63e169e1
JM
919static int hostapd_config_tx_queue(struct hostapd_config *conf,
920 const char *name, const char *val)
41d719d6
JM
921{
922 int num;
63e169e1 923 const char *pos;
41d719d6
JM
924 struct hostapd_tx_queue_params *queue;
925
926 /* skip 'tx_queue_' prefix */
927 pos = name + 9;
928 if (os_strncmp(pos, "data", 4) == 0 &&
929 pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
930 num = pos[4] - '0';
931 pos += 6;
7e3c1781
JM
932 } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
933 os_strncmp(pos, "beacon_", 7) == 0) {
934 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
935 return 0;
41d719d6
JM
936 } else {
937 wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
938 return -1;
939 }
940
7e3c1781 941 if (num >= NUM_TX_QUEUES) {
d2da2249 942 /* for backwards compatibility, do not trigger failure */
7e3c1781
JM
943 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
944 return 0;
945 }
946
41d719d6
JM
947 queue = &conf->tx_queue[num];
948
949 if (os_strcmp(pos, "aifs") == 0) {
950 queue->aifs = atoi(val);
951 if (queue->aifs < 0 || queue->aifs > 255) {
952 wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
953 queue->aifs);
954 return -1;
955 }
956 } else if (os_strcmp(pos, "cwmin") == 0) {
957 queue->cwmin = atoi(val);
958 if (!valid_cw(queue->cwmin)) {
959 wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
960 queue->cwmin);
961 return -1;
962 }
963 } else if (os_strcmp(pos, "cwmax") == 0) {
964 queue->cwmax = atoi(val);
965 if (!valid_cw(queue->cwmax)) {
966 wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
967 queue->cwmax);
968 return -1;
969 }
970 } else if (os_strcmp(pos, "burst") == 0) {
971 queue->burst = hostapd_config_read_int10(val);
972 } else {
973 wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
974 return -1;
975 }
976
41d719d6
JM
977 return 0;
978}
979
980
41d719d6
JM
981#ifdef CONFIG_IEEE80211R
982static int add_r0kh(struct hostapd_bss_config *bss, char *value)
983{
984 struct ft_remote_r0kh *r0kh;
985 char *pos, *next;
986
987 r0kh = os_zalloc(sizeof(*r0kh));
988 if (r0kh == NULL)
989 return -1;
990
991 /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
992 pos = value;
993 next = os_strchr(pos, ' ');
994 if (next)
995 *next++ = '\0';
996 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
997 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
998 os_free(r0kh);
999 return -1;
1000 }
1001
1002 pos = next;
1003 next = os_strchr(pos, ' ');
1004 if (next)
1005 *next++ = '\0';
1006 if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
1007 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
1008 os_free(r0kh);
1009 return -1;
1010 }
1011 r0kh->id_len = next - pos - 1;
1012 os_memcpy(r0kh->id, pos, r0kh->id_len);
1013
1014 pos = next;
1015 if (hexstr2bin(pos, r0kh->key, sizeof(r0kh->key))) {
1016 wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
1017 os_free(r0kh);
1018 return -1;
1019 }
1020
1021 r0kh->next = bss->r0kh_list;
1022 bss->r0kh_list = r0kh;
1023
1024 return 0;
1025}
1026
1027
1028static int add_r1kh(struct hostapd_bss_config *bss, char *value)
1029{
1030 struct ft_remote_r1kh *r1kh;
1031 char *pos, *next;
1032
1033 r1kh = os_zalloc(sizeof(*r1kh));
1034 if (r1kh == NULL)
1035 return -1;
1036
1037 /* 02:01:02:03:04:05 02:01:02:03:04:05
1038 * 000102030405060708090a0b0c0d0e0f */
1039 pos = value;
1040 next = os_strchr(pos, ' ');
1041 if (next)
1042 *next++ = '\0';
1043 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
1044 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
1045 os_free(r1kh);
1046 return -1;
1047 }
1048
1049 pos = next;
1050 next = os_strchr(pos, ' ');
1051 if (next)
1052 *next++ = '\0';
1053 if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
1054 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
1055 os_free(r1kh);
1056 return -1;
1057 }
1058
1059 pos = next;
1060 if (hexstr2bin(pos, r1kh->key, sizeof(r1kh->key))) {
1061 wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
1062 os_free(r1kh);
1063 return -1;
1064 }
1065
1066 r1kh->next = bss->r1kh_list;
1067 bss->r1kh_list = r1kh;
1068
1069 return 0;
1070}
1071#endif /* CONFIG_IEEE80211R */
1072
1073
1074#ifdef CONFIG_IEEE80211N
1075static int hostapd_config_ht_capab(struct hostapd_config *conf,
1076 const char *capab)
1077{
1078 if (os_strstr(capab, "[LDPC]"))
1079 conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
1080 if (os_strstr(capab, "[HT40-]")) {
1081 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1082 conf->secondary_channel = -1;
1083 }
1084 if (os_strstr(capab, "[HT40+]")) {
1085 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1086 conf->secondary_channel = 1;
1087 }
1088 if (os_strstr(capab, "[SMPS-STATIC]")) {
1089 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1090 conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
1091 }
1092 if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
1093 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1094 conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
1095 }
1096 if (os_strstr(capab, "[GF]"))
1097 conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
1098 if (os_strstr(capab, "[SHORT-GI-20]"))
1099 conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
1100 if (os_strstr(capab, "[SHORT-GI-40]"))
1101 conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
1102 if (os_strstr(capab, "[TX-STBC]"))
1103 conf->ht_capab |= HT_CAP_INFO_TX_STBC;
1104 if (os_strstr(capab, "[RX-STBC1]")) {
1105 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1106 conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
1107 }
1108 if (os_strstr(capab, "[RX-STBC12]")) {
1109 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1110 conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
1111 }
1112 if (os_strstr(capab, "[RX-STBC123]")) {
1113 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1114 conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
1115 }
1116 if (os_strstr(capab, "[DELAYED-BA]"))
1117 conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
1118 if (os_strstr(capab, "[MAX-AMSDU-7935]"))
1119 conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
1120 if (os_strstr(capab, "[DSSS_CCK-40]"))
1121 conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
b7a8d67f
JM
1122 if (os_strstr(capab, "[40-INTOLERANT]"))
1123 conf->ht_capab |= HT_CAP_INFO_40MHZ_INTOLERANT;
41d719d6
JM
1124 if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
1125 conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
1126
1127 return 0;
1128}
1129#endif /* CONFIG_IEEE80211N */
1130
1131
efe45d14
MP
1132#ifdef CONFIG_IEEE80211AC
1133static int hostapd_config_vht_capab(struct hostapd_config *conf,
1134 const char *capab)
1135{
1136 if (os_strstr(capab, "[MAX-MPDU-7991]"))
1137 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
1138 if (os_strstr(capab, "[MAX-MPDU-11454]"))
1139 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
1140 if (os_strstr(capab, "[VHT160]"))
1141 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
1142 if (os_strstr(capab, "[VHT160-80PLUS80]"))
1143 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
efe45d14
MP
1144 if (os_strstr(capab, "[RXLDPC]"))
1145 conf->vht_capab |= VHT_CAP_RXLDPC;
1146 if (os_strstr(capab, "[SHORT-GI-80]"))
1147 conf->vht_capab |= VHT_CAP_SHORT_GI_80;
1148 if (os_strstr(capab, "[SHORT-GI-160]"))
1149 conf->vht_capab |= VHT_CAP_SHORT_GI_160;
1150 if (os_strstr(capab, "[TX-STBC-2BY1]"))
1151 conf->vht_capab |= VHT_CAP_TXSTBC;
1152 if (os_strstr(capab, "[RX-STBC-1]"))
1153 conf->vht_capab |= VHT_CAP_RXSTBC_1;
1154 if (os_strstr(capab, "[RX-STBC-12]"))
1155 conf->vht_capab |= VHT_CAP_RXSTBC_2;
1156 if (os_strstr(capab, "[RX-STBC-123]"))
1157 conf->vht_capab |= VHT_CAP_RXSTBC_3;
1158 if (os_strstr(capab, "[RX-STBC-1234]"))
1159 conf->vht_capab |= VHT_CAP_RXSTBC_4;
1160 if (os_strstr(capab, "[SU-BEAMFORMER]"))
7066a8e7 1161 conf->vht_capab |= VHT_CAP_SU_BEAMFORMER_CAPABLE;
efe45d14 1162 if (os_strstr(capab, "[SU-BEAMFORMEE]"))
7066a8e7 1163 conf->vht_capab |= VHT_CAP_SU_BEAMFORMEE_CAPABLE;
efe45d14 1164 if (os_strstr(capab, "[BF-ANTENNA-2]") &&
b29b012c
EP
1165 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1166 conf->vht_capab |= (1 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
442ffc51
VN
1167 if (os_strstr(capab, "[BF-ANTENNA-3]") &&
1168 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1169 conf->vht_capab |= (2 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
1170 if (os_strstr(capab, "[BF-ANTENNA-4]") &&
1171 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1172 conf->vht_capab |= (3 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
efe45d14 1173 if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
b29b012c
EP
1174 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1175 conf->vht_capab |= (1 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
442ffc51
VN
1176 if (os_strstr(capab, "[SOUNDING-DIMENSION-3]") &&
1177 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1178 conf->vht_capab |= (2 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
1179 if (os_strstr(capab, "[SOUNDING-DIMENSION-4]") &&
1180 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1181 conf->vht_capab |= (3 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
efe45d14
MP
1182 if (os_strstr(capab, "[MU-BEAMFORMER]"))
1183 conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
efe45d14
MP
1184 if (os_strstr(capab, "[VHT-TXOP-PS]"))
1185 conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
1186 if (os_strstr(capab, "[HTC-VHT]"))
1187 conf->vht_capab |= VHT_CAP_HTC_VHT;
905828fe
BM
1188 if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP7]"))
1189 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX;
1190 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP6]"))
1191 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_6;
1192 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP5]"))
1193 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_5;
1194 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP4]"))
1195 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_4;
1196 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP3]"))
1197 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_3;
1198 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP2]"))
1199 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_2;
1200 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP1]"))
1201 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_1;
efe45d14
MP
1202 if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
1203 (conf->vht_capab & VHT_CAP_HTC_VHT))
1204 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
1205 if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
1206 (conf->vht_capab & VHT_CAP_HTC_VHT))
1207 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
1208 if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
1209 conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
1210 if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
1211 conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
1212 return 0;
1213}
1214#endif /* CONFIG_IEEE80211AC */
1215
1216
4b2a77ab
JM
1217#ifdef CONFIG_INTERWORKING
1218static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
1219 int line)
1220{
1221 size_t len = os_strlen(pos);
1222 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
1223
1224 struct hostapd_roaming_consortium *rc;
1225
1226 if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
1227 hexstr2bin(pos, oi, len / 2)) {
1228 wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
1229 "'%s'", line, pos);
1230 return -1;
1231 }
1232 len /= 2;
1233
067ffa26
JM
1234 rc = os_realloc_array(bss->roaming_consortium,
1235 bss->roaming_consortium_count + 1,
1236 sizeof(struct hostapd_roaming_consortium));
4b2a77ab
JM
1237 if (rc == NULL)
1238 return -1;
1239
1240 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
1241 rc[bss->roaming_consortium_count].len = len;
1242
1243 bss->roaming_consortium = rc;
1244 bss->roaming_consortium_count++;
1245
1246 return 0;
1247}
648cc711
JM
1248
1249
1792e58d
JM
1250static int parse_lang_string(struct hostapd_lang_string **array,
1251 unsigned int *count, char *pos)
648cc711 1252{
f224cf05
KP
1253 char *sep, *str = NULL;
1254 size_t clen, nlen, slen;
1792e58d 1255 struct hostapd_lang_string *ls;
f224cf05
KP
1256 int ret = -1;
1257
1258 if (*pos == '"' || (*pos == 'P' && pos[1] == '"')) {
1259 str = wpa_config_parse_string(pos, &slen);
1260 if (!str)
1261 return -1;
1262 pos = str;
1263 }
648cc711
JM
1264
1265 sep = os_strchr(pos, ':');
1266 if (sep == NULL)
f224cf05 1267 goto fail;
648cc711
JM
1268 *sep++ = '\0';
1269
1270 clen = os_strlen(pos);
04e533e2 1271 if (clen < 2 || clen > sizeof(ls->lang))
f224cf05 1272 goto fail;
648cc711
JM
1273 nlen = os_strlen(sep);
1274 if (nlen > 252)
f224cf05 1275 goto fail;
648cc711 1276
1792e58d
JM
1277 ls = os_realloc_array(*array, *count + 1,
1278 sizeof(struct hostapd_lang_string));
1279 if (ls == NULL)
f224cf05 1280 goto fail;
648cc711 1281
1792e58d
JM
1282 *array = ls;
1283 ls = &(*array)[*count];
1284 (*count)++;
648cc711 1285
1792e58d
JM
1286 os_memset(ls->lang, 0, sizeof(ls->lang));
1287 os_memcpy(ls->lang, pos, clen);
1288 ls->name_len = nlen;
1289 os_memcpy(ls->name, sep, nlen);
648cc711 1290
f224cf05
KP
1291 ret = 0;
1292fail:
1293 os_free(str);
1294 return ret;
1792e58d
JM
1295}
1296
648cc711 1297
1792e58d
JM
1298static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
1299 int line)
1300{
1301 if (parse_lang_string(&bss->venue_name, &bss->venue_name_count, pos)) {
1302 wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
1303 line, pos);
1304 return -1;
1305 }
1306 return 0;
648cc711 1307}
7515adb2
JK
1308
1309
1310static int parse_3gpp_cell_net(struct hostapd_bss_config *bss, char *buf,
1311 int line)
1312{
1313 size_t count;
1314 char *pos;
1315 u8 *info = NULL, *ipos;
1316
1317 /* format: <MCC1,MNC1>[;<MCC2,MNC2>][;...] */
1318
1319 count = 1;
1320 for (pos = buf; *pos; pos++) {
4be20bf9 1321 if ((*pos < '0' || *pos > '9') && *pos != ';' && *pos != ',')
7515adb2
JK
1322 goto fail;
1323 if (*pos == ';')
1324 count++;
1325 }
1326 if (1 + count * 3 > 0x7f)
1327 goto fail;
1328
1329 info = os_zalloc(2 + 3 + count * 3);
1330 if (info == NULL)
1331 return -1;
1332
1333 ipos = info;
1334 *ipos++ = 0; /* GUD - Version 1 */
1335 *ipos++ = 3 + count * 3; /* User Data Header Length (UDHL) */
1336 *ipos++ = 0; /* PLMN List IEI */
1337 /* ext(b8) | Length of PLMN List value contents(b7..1) */
1338 *ipos++ = 1 + count * 3;
1339 *ipos++ = count; /* Number of PLMNs */
1340
1341 pos = buf;
1342 while (pos && *pos) {
1343 char *mcc, *mnc;
1344 size_t mnc_len;
1345
1346 mcc = pos;
1347 mnc = os_strchr(pos, ',');
1348 if (mnc == NULL)
1349 goto fail;
1350 *mnc++ = '\0';
1351 pos = os_strchr(mnc, ';');
1352 if (pos)
1353 *pos++ = '\0';
1354
1355 mnc_len = os_strlen(mnc);
1356 if (os_strlen(mcc) != 3 || (mnc_len != 2 && mnc_len != 3))
1357 goto fail;
1358
1359 /* BC coded MCC,MNC */
1360 /* MCC digit 2 | MCC digit 1 */
1361 *ipos++ = ((mcc[1] - '0') << 4) | (mcc[0] - '0');
1362 /* MNC digit 3 | MCC digit 3 */
1363 *ipos++ = (((mnc_len == 2) ? 0xf0 : ((mnc[2] - '0') << 4))) |
1364 (mcc[2] - '0');
1365 /* MNC digit 2 | MNC digit 1 */
1366 *ipos++ = ((mnc[1] - '0') << 4) | (mnc[0] - '0');
1367 }
1368
1369 os_free(bss->anqp_3gpp_cell_net);
1370 bss->anqp_3gpp_cell_net = info;
1371 bss->anqp_3gpp_cell_net_len = 2 + 3 + 3 * count;
1372 wpa_hexdump(MSG_MSGDUMP, "3GPP Cellular Network information",
1373 bss->anqp_3gpp_cell_net, bss->anqp_3gpp_cell_net_len);
1374
1375 return 0;
1376
1377fail:
1378 wpa_printf(MSG_ERROR, "Line %d: Invalid anqp_3gpp_cell_net: %s",
1379 line, buf);
1380 os_free(info);
1381 return -1;
1382}
1383
8047b186
JK
1384
1385static int parse_nai_realm(struct hostapd_bss_config *bss, char *buf, int line)
1386{
1387 struct hostapd_nai_realm_data *realm;
1388 size_t i, j, len;
1389 int *offsets;
1390 char *pos, *end, *rpos;
1391
1392 offsets = os_calloc(bss->nai_realm_count * MAX_NAI_REALMS,
1393 sizeof(int));
1394 if (offsets == NULL)
1395 return -1;
1396
1397 for (i = 0; i < bss->nai_realm_count; i++) {
1398 realm = &bss->nai_realm_data[i];
1399 for (j = 0; j < MAX_NAI_REALMS; j++) {
1400 offsets[i * MAX_NAI_REALMS + j] =
1401 realm->realm[j] ?
1402 realm->realm[j] - realm->realm_buf : -1;
1403 }
1404 }
1405
1406 realm = os_realloc_array(bss->nai_realm_data, bss->nai_realm_count + 1,
1407 sizeof(struct hostapd_nai_realm_data));
1408 if (realm == NULL) {
1409 os_free(offsets);
1410 return -1;
1411 }
1412 bss->nai_realm_data = realm;
1413
1414 /* patch the pointers after realloc */
1415 for (i = 0; i < bss->nai_realm_count; i++) {
1416 realm = &bss->nai_realm_data[i];
1417 for (j = 0; j < MAX_NAI_REALMS; j++) {
1418 int offs = offsets[i * MAX_NAI_REALMS + j];
1419 if (offs >= 0)
1420 realm->realm[j] = realm->realm_buf + offs;
1421 else
1422 realm->realm[j] = NULL;
1423 }
1424 }
1425 os_free(offsets);
1426
1427 realm = &bss->nai_realm_data[bss->nai_realm_count];
1428 os_memset(realm, 0, sizeof(*realm));
1429
1430 pos = buf;
1431 realm->encoding = atoi(pos);
1432 pos = os_strchr(pos, ',');
1433 if (pos == NULL)
1434 goto fail;
1435 pos++;
1436
1437 end = os_strchr(pos, ',');
1438 if (end) {
1439 len = end - pos;
1440 *end = '\0';
1441 } else {
1442 len = os_strlen(pos);
1443 }
1444
1445 if (len > MAX_NAI_REALMLEN) {
1446 wpa_printf(MSG_ERROR, "Too long a realm string (%d > max %d "
1447 "characters)", (int) len, MAX_NAI_REALMLEN);
1448 goto fail;
1449 }
1450 os_memcpy(realm->realm_buf, pos, len);
1451
1452 if (end)
1453 pos = end + 1;
1454 else
1455 pos = NULL;
1456
1457 while (pos && *pos) {
1458 struct hostapd_nai_realm_eap *eap;
1459
1460 if (realm->eap_method_count >= MAX_NAI_EAP_METHODS) {
1461 wpa_printf(MSG_ERROR, "Too many EAP methods");
1462 goto fail;
1463 }
1464
1465 eap = &realm->eap_method[realm->eap_method_count];
1466 realm->eap_method_count++;
1467
1468 end = os_strchr(pos, ',');
1469 if (end == NULL)
1470 end = pos + os_strlen(pos);
1471
1472 eap->eap_method = atoi(pos);
1473 for (;;) {
1474 pos = os_strchr(pos, '[');
1475 if (pos == NULL || pos > end)
1476 break;
1477 pos++;
1478 if (eap->num_auths >= MAX_NAI_AUTH_TYPES) {
1479 wpa_printf(MSG_ERROR, "Too many auth params");
1480 goto fail;
1481 }
1482 eap->auth_id[eap->num_auths] = atoi(pos);
1483 pos = os_strchr(pos, ':');
1484 if (pos == NULL || pos > end)
1485 goto fail;
1486 pos++;
1487 eap->auth_val[eap->num_auths] = atoi(pos);
1488 pos = os_strchr(pos, ']');
1489 if (pos == NULL || pos > end)
1490 goto fail;
1491 pos++;
1492 eap->num_auths++;
1493 }
1494
1495 if (*end != ',')
1496 break;
1497
1498 pos = end + 1;
1499 }
1500
1501 /* Split realm list into null terminated realms */
1502 rpos = realm->realm_buf;
1503 i = 0;
1504 while (*rpos) {
1505 if (i >= MAX_NAI_REALMS) {
1506 wpa_printf(MSG_ERROR, "Too many realms");
1507 goto fail;
1508 }
1509 realm->realm[i++] = rpos;
1510 rpos = os_strchr(rpos, ';');
1511 if (rpos == NULL)
1512 break;
1513 *rpos++ = '\0';
1514 }
1515
1516 bss->nai_realm_count++;
1517
1518 return 0;
1519
1520fail:
1521 wpa_printf(MSG_ERROR, "Line %d: invalid nai_realm '%s'", line, buf);
1522 return -1;
1523}
1524
c551700f 1525
695dbbea
JM
1526static int parse_anqp_elem(struct hostapd_bss_config *bss, char *buf, int line)
1527{
1528 char *delim;
1529 u16 infoid;
1530 size_t len;
1531 struct wpabuf *payload;
1532 struct anqp_element *elem;
1533
1534 delim = os_strchr(buf, ':');
1535 if (!delim)
1536 return -1;
1537 delim++;
1538 infoid = atoi(buf);
1539 len = os_strlen(delim);
1540 if (len & 1)
1541 return -1;
1542 len /= 2;
1543 payload = wpabuf_alloc(len);
1544 if (!payload)
1545 return -1;
1546 if (hexstr2bin(delim, wpabuf_put(payload, len), len) < 0) {
1547 wpabuf_free(payload);
1548 return -1;
1549 }
1550
1551 dl_list_for_each(elem, &bss->anqp_elem, struct anqp_element, list) {
1552 if (elem->infoid == infoid) {
1553 /* Update existing entry */
1554 wpabuf_free(elem->payload);
1555 elem->payload = payload;
1556 return 0;
1557 }
1558 }
1559
1560 /* Add a new entry */
1561 elem = os_zalloc(sizeof(*elem));
1562 if (!elem) {
1563 wpabuf_free(payload);
1564 return -1;
1565 }
1566 elem->infoid = infoid;
1567 elem->payload = payload;
1568 dl_list_add(&bss->anqp_elem, &elem->list);
1569
1570 return 0;
1571}
1572
1573
c551700f
KP
1574static int parse_qos_map_set(struct hostapd_bss_config *bss,
1575 char *buf, int line)
1576{
1577 u8 qos_map_set[16 + 2 * 21], count = 0;
1578 char *pos = buf;
1579 int val;
1580
1581 for (;;) {
1582 if (count == sizeof(qos_map_set)) {
1583 wpa_printf(MSG_ERROR, "Line %d: Too many qos_map_set "
1584 "parameters '%s'", line, buf);
1585 return -1;
1586 }
1587
1588 val = atoi(pos);
1589 if (val > 255 || val < 0) {
1590 wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set "
1591 "'%s'", line, buf);
1592 return -1;
1593 }
1594
1595 qos_map_set[count++] = val;
1596 pos = os_strchr(pos, ',');
1597 if (!pos)
1598 break;
1599 pos++;
1600 }
1601
1602 if (count < 16 || count & 1) {
1603 wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set '%s'",
1604 line, buf);
1605 return -1;
1606 }
1607
1608 os_memcpy(bss->qos_map_set, qos_map_set, count);
1609 bss->qos_map_set_len = count;
1610
1611 return 0;
1612}
1613
4b2a77ab
JM
1614#endif /* CONFIG_INTERWORKING */
1615
1616
5ccc54aa
JK
1617#ifdef CONFIG_HS20
1618static int hs20_parse_conn_capab(struct hostapd_bss_config *bss, char *buf,
1619 int line)
1620{
1621 u8 *conn_cap;
1622 char *pos;
1623
1624 if (bss->hs20_connection_capability_len >= 0xfff0)
1625 return -1;
1626
1627 conn_cap = os_realloc(bss->hs20_connection_capability,
1628 bss->hs20_connection_capability_len + 4);
1629 if (conn_cap == NULL)
1630 return -1;
1631
1632 bss->hs20_connection_capability = conn_cap;
1633 conn_cap += bss->hs20_connection_capability_len;
1634 pos = buf;
1635 conn_cap[0] = atoi(pos);
1636 pos = os_strchr(pos, ':');
1637 if (pos == NULL)
1638 return -1;
1639 pos++;
1640 WPA_PUT_LE16(conn_cap + 1, atoi(pos));
1641 pos = os_strchr(pos, ':');
1642 if (pos == NULL)
1643 return -1;
1644 pos++;
1645 conn_cap[3] = atoi(pos);
1646 bss->hs20_connection_capability_len += 4;
1647
1648 return 0;
1649}
4065a309
JK
1650
1651
1652static int hs20_parse_wan_metrics(struct hostapd_bss_config *bss, char *buf,
1653 int line)
1654{
1655 u8 *wan_metrics;
1656 char *pos;
1657
1658 /* <WAN Info>:<DL Speed>:<UL Speed>:<DL Load>:<UL Load>:<LMD> */
1659
1660 wan_metrics = os_zalloc(13);
1661 if (wan_metrics == NULL)
1662 return -1;
1663
1664 pos = buf;
1665 /* WAN Info */
1666 if (hexstr2bin(pos, wan_metrics, 1) < 0)
1667 goto fail;
1668 pos += 2;
1669 if (*pos != ':')
1670 goto fail;
1671 pos++;
1672
1673 /* Downlink Speed */
1674 WPA_PUT_LE32(wan_metrics + 1, atoi(pos));
1675 pos = os_strchr(pos, ':');
1676 if (pos == NULL)
1677 goto fail;
1678 pos++;
1679
1680 /* Uplink Speed */
1681 WPA_PUT_LE32(wan_metrics + 5, atoi(pos));
1682 pos = os_strchr(pos, ':');
1683 if (pos == NULL)
1684 goto fail;
1685 pos++;
1686
1687 /* Downlink Load */
1688 wan_metrics[9] = atoi(pos);
1689 pos = os_strchr(pos, ':');
1690 if (pos == NULL)
1691 goto fail;
1692 pos++;
1693
1694 /* Uplink Load */
1695 wan_metrics[10] = atoi(pos);
1696 pos = os_strchr(pos, ':');
1697 if (pos == NULL)
1698 goto fail;
1699 pos++;
1700
1701 /* LMD */
1702 WPA_PUT_LE16(wan_metrics + 11, atoi(pos));
1703
1704 os_free(bss->hs20_wan_metrics);
1705 bss->hs20_wan_metrics = wan_metrics;
1706
1707 return 0;
1708
1709fail:
1710 wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_wan_metrics '%s'",
5cfc87b7 1711 line, buf);
4065a309
JK
1712 os_free(wan_metrics);
1713 return -1;
1714}
a9277e85
JK
1715
1716
1717static int hs20_parse_oper_friendly_name(struct hostapd_bss_config *bss,
1718 char *pos, int line)
1719{
1720 if (parse_lang_string(&bss->hs20_oper_friendly_name,
1721 &bss->hs20_oper_friendly_name_count, pos)) {
1722 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1723 "hs20_oper_friendly_name '%s'", line, pos);
1724 return -1;
1725 }
1726 return 0;
1727}
f7bd7a01
JM
1728
1729
1730static int hs20_parse_icon(struct hostapd_bss_config *bss, char *pos)
1731{
1732 struct hs20_icon *icon;
1733 char *end;
1734
1735 icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
1736 sizeof(struct hs20_icon));
1737 if (icon == NULL)
1738 return -1;
1739 bss->hs20_icons = icon;
1740 icon = &bss->hs20_icons[bss->hs20_icons_count];
1741 os_memset(icon, 0, sizeof(*icon));
1742
1743 icon->width = atoi(pos);
1744 pos = os_strchr(pos, ':');
1745 if (pos == NULL)
1746 return -1;
1747 pos++;
1748
1749 icon->height = atoi(pos);
1750 pos = os_strchr(pos, ':');
1751 if (pos == NULL)
1752 return -1;
1753 pos++;
1754
1755 end = os_strchr(pos, ':');
1756 if (end == NULL || end - pos > 3)
1757 return -1;
1758 os_memcpy(icon->language, pos, end - pos);
1759 pos = end + 1;
1760
1761 end = os_strchr(pos, ':');
1762 if (end == NULL || end - pos > 255)
1763 return -1;
1764 os_memcpy(icon->type, pos, end - pos);
1765 pos = end + 1;
1766
1767 end = os_strchr(pos, ':');
1768 if (end == NULL || end - pos > 255)
1769 return -1;
1770 os_memcpy(icon->name, pos, end - pos);
1771 pos = end + 1;
1772
1773 if (os_strlen(pos) > 255)
1774 return -1;
1775 os_memcpy(icon->file, pos, os_strlen(pos));
1776
1777 bss->hs20_icons_count++;
1778
1779 return 0;
1780}
1781
ae6d15c7
JM
1782
1783static int hs20_parse_osu_ssid(struct hostapd_bss_config *bss,
1784 char *pos, int line)
1785{
1786 size_t slen;
1787 char *str;
1788
1789 str = wpa_config_parse_string(pos, &slen);
81847c22 1790 if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
ae6d15c7 1791 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID '%s'", line, pos);
b2e32cde 1792 os_free(str);
ae6d15c7
JM
1793 return -1;
1794 }
1795
1796 os_memcpy(bss->osu_ssid, str, slen);
1797 bss->osu_ssid_len = slen;
1798 os_free(str);
1799
1800 return 0;
1801}
1802
1803
1804static int hs20_parse_osu_server_uri(struct hostapd_bss_config *bss,
1805 char *pos, int line)
1806{
1807 struct hs20_osu_provider *p;
1808
1809 p = os_realloc_array(bss->hs20_osu_providers,
1810 bss->hs20_osu_providers_count + 1, sizeof(*p));
1811 if (p == NULL)
1812 return -1;
1813
1814 bss->hs20_osu_providers = p;
1815 bss->last_osu = &bss->hs20_osu_providers[bss->hs20_osu_providers_count];
1816 bss->hs20_osu_providers_count++;
1817 os_memset(bss->last_osu, 0, sizeof(*p));
1818 bss->last_osu->server_uri = os_strdup(pos);
1819
1820 return 0;
1821}
1822
1823
1824static int hs20_parse_osu_friendly_name(struct hostapd_bss_config *bss,
1825 char *pos, int line)
1826{
1827 if (bss->last_osu == NULL) {
1828 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1829 return -1;
1830 }
1831
1832 if (parse_lang_string(&bss->last_osu->friendly_name,
1833 &bss->last_osu->friendly_name_count, pos)) {
1834 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_friendly_name '%s'",
1835 line, pos);
1836 return -1;
1837 }
1838
1839 return 0;
1840}
1841
1842
1843static int hs20_parse_osu_nai(struct hostapd_bss_config *bss,
1844 char *pos, int line)
1845{
1846 if (bss->last_osu == NULL) {
1847 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1848 return -1;
1849 }
1850
1851 os_free(bss->last_osu->osu_nai);
1852 bss->last_osu->osu_nai = os_strdup(pos);
1853 if (bss->last_osu->osu_nai == NULL)
1854 return -1;
1855
1856 return 0;
1857}
1858
1859
1860static int hs20_parse_osu_method_list(struct hostapd_bss_config *bss, char *pos,
1861 int line)
1862{
1863 if (bss->last_osu == NULL) {
1864 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1865 return -1;
1866 }
1867
1868 if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) {
1869 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_method_list", line);
1870 return -1;
1871 }
1872
1873 return 0;
1874}
1875
1876
1877static int hs20_parse_osu_icon(struct hostapd_bss_config *bss, char *pos,
1878 int line)
1879{
1880 char **n;
1881 struct hs20_osu_provider *p = bss->last_osu;
1882
1883 if (p == NULL) {
1884 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1885 return -1;
1886 }
1887
1888 n = os_realloc_array(p->icons, p->icons_count + 1, sizeof(char *));
1889 if (n == NULL)
1890 return -1;
1891 p->icons = n;
1892 p->icons[p->icons_count] = os_strdup(pos);
1893 if (p->icons[p->icons_count] == NULL)
1894 return -1;
1895 p->icons_count++;
1896
1897 return 0;
1898}
1899
1900
1901static int hs20_parse_osu_service_desc(struct hostapd_bss_config *bss,
1902 char *pos, int line)
1903{
1904 if (bss->last_osu == NULL) {
1905 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1906 return -1;
1907 }
1908
1909 if (parse_lang_string(&bss->last_osu->service_desc,
1910 &bss->last_osu->service_desc_count, pos)) {
1911 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_service_desc '%s'",
1912 line, pos);
1913 return -1;
1914 }
1915
1916 return 0;
1917}
1918
5ccc54aa
JK
1919#endif /* CONFIG_HS20 */
1920
1921
68fa00c3
JM
1922#ifdef CONFIG_ACS
1923static int hostapd_config_parse_acs_chan_bias(struct hostapd_config *conf,
1924 char *pos)
1925{
1926 struct acs_bias *bias = NULL, *tmp;
1927 unsigned int num = 0;
1928 char *end;
1929
1930 while (*pos) {
1931 tmp = os_realloc_array(bias, num + 1, sizeof(*bias));
1932 if (!tmp)
1933 goto fail;
1934 bias = tmp;
1935
1936 bias[num].channel = atoi(pos);
1937 if (bias[num].channel <= 0)
1938 goto fail;
1939 pos = os_strchr(pos, ':');
1940 if (!pos)
1941 goto fail;
1942 pos++;
1943 bias[num].bias = strtod(pos, &end);
1944 if (end == pos || bias[num].bias < 0.0)
1945 goto fail;
1946 pos = end;
1947 if (*pos != ' ' && *pos != '\0')
1948 goto fail;
1949 num++;
1950 }
1951
1952 os_free(conf->acs_chan_bias);
1953 conf->acs_chan_bias = bias;
1954 conf->num_acs_chan_bias = num;
1955
1956 return 0;
1957fail:
1958 os_free(bias);
1959 return -1;
1960}
1961#endif /* CONFIG_ACS */
1962
1963
4ac33989
JM
1964static int parse_wpabuf_hex(int line, const char *name, struct wpabuf **buf,
1965 const char *val)
1966{
1967 struct wpabuf *elems;
1968
1969 if (val[0] == '\0') {
1970 wpabuf_free(*buf);
1971 *buf = NULL;
1972 return 0;
1973 }
1974
1975 elems = wpabuf_parse_bin(val);
1976 if (!elems) {
1977 wpa_printf(MSG_ERROR, "Line %d: Invalid %s '%s'",
1978 line, name, val);
1979 return -1;
1980 }
1981
1982 wpabuf_free(*buf);
1983 *buf = elems;
1984
1985 return 0;
1986}
1987
1988
ef45bc89
SP
1989static int hostapd_config_fill(struct hostapd_config *conf,
1990 struct hostapd_bss_config *bss,
63e169e1 1991 const char *buf, char *pos, int line)
41d719d6 1992{
599f40db
JM
1993 if (os_strcmp(buf, "interface") == 0) {
1994 os_strlcpy(conf->bss[0]->iface, pos,
1995 sizeof(conf->bss[0]->iface));
1996 } else if (os_strcmp(buf, "bridge") == 0) {
1997 os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
1998 } else if (os_strcmp(buf, "vlan_bridge") == 0) {
1999 os_strlcpy(bss->vlan_bridge, pos, sizeof(bss->vlan_bridge));
2000 } else if (os_strcmp(buf, "wds_bridge") == 0) {
2001 os_strlcpy(bss->wds_bridge, pos, sizeof(bss->wds_bridge));
2002 } else if (os_strcmp(buf, "driver") == 0) {
2003 int j;
2004 /* clear to get error below if setting is invalid */
2005 conf->driver = NULL;
2006 for (j = 0; wpa_drivers[j]; j++) {
2007 if (os_strcmp(pos, wpa_drivers[j]->name) == 0) {
2008 conf->driver = wpa_drivers[j];
2009 break;
41d719d6 2010 }
599f40db
JM
2011 }
2012 if (conf->driver == NULL) {
2013 wpa_printf(MSG_ERROR,
2014 "Line %d: invalid/unknown driver '%s'",
2015 line, pos);
a0b728b7 2016 return 1;
599f40db 2017 }
0ecff8d7
JM
2018 } else if (os_strcmp(buf, "driver_params") == 0) {
2019 os_free(conf->driver_params);
2020 conf->driver_params = os_strdup(pos);
599f40db
JM
2021 } else if (os_strcmp(buf, "debug") == 0) {
2022 wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' configuration variable is not used anymore",
2023 line);
2024 } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
2025 bss->logger_syslog_level = atoi(pos);
2026 } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
2027 bss->logger_stdout_level = atoi(pos);
2028 } else if (os_strcmp(buf, "logger_syslog") == 0) {
2029 bss->logger_syslog = atoi(pos);
2030 } else if (os_strcmp(buf, "logger_stdout") == 0) {
2031 bss->logger_stdout = atoi(pos);
2032 } else if (os_strcmp(buf, "dump_file") == 0) {
2033 wpa_printf(MSG_INFO, "Line %d: DEPRECATED: 'dump_file' configuration variable is not used anymore",
2034 line);
2035 } else if (os_strcmp(buf, "ssid") == 0) {
2036 bss->ssid.ssid_len = os_strlen(pos);
81847c22 2037 if (bss->ssid.ssid_len > SSID_MAX_LEN ||
599f40db
JM
2038 bss->ssid.ssid_len < 1) {
2039 wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2040 line, pos);
a0b728b7 2041 return 1;
599f40db 2042 }
b4c26ef9
JM
2043 os_memcpy(bss->ssid.ssid, pos, bss->ssid.ssid_len);
2044 bss->ssid.ssid_set = 1;
599f40db
JM
2045 } else if (os_strcmp(buf, "ssid2") == 0) {
2046 size_t slen;
2047 char *str = wpa_config_parse_string(pos, &slen);
81847c22 2048 if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
599f40db
JM
2049 wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2050 line, pos);
b2e32cde 2051 os_free(str);
a0b728b7 2052 return 1;
599f40db 2053 }
b2e32cde
JM
2054 os_memcpy(bss->ssid.ssid, str, slen);
2055 bss->ssid.ssid_len = slen;
2056 bss->ssid.ssid_set = 1;
599f40db
JM
2057 os_free(str);
2058 } else if (os_strcmp(buf, "utf8_ssid") == 0) {
2059 bss->ssid.utf8_ssid = atoi(pos) > 0;
2060 } else if (os_strcmp(buf, "macaddr_acl") == 0) {
2061 bss->macaddr_acl = atoi(pos);
2062 if (bss->macaddr_acl != ACCEPT_UNLESS_DENIED &&
2063 bss->macaddr_acl != DENY_UNLESS_ACCEPTED &&
2064 bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
2065 wpa_printf(MSG_ERROR, "Line %d: unknown macaddr_acl %d",
2066 line, bss->macaddr_acl);
2067 }
2068 } else if (os_strcmp(buf, "accept_mac_file") == 0) {
2069 if (hostapd_config_read_maclist(pos, &bss->accept_mac,
2070 &bss->num_accept_mac)) {
2071 wpa_printf(MSG_ERROR, "Line %d: Failed to read accept_mac_file '%s'",
2072 line, pos);
a0b728b7 2073 return 1;
599f40db
JM
2074 }
2075 } else if (os_strcmp(buf, "deny_mac_file") == 0) {
2076 if (hostapd_config_read_maclist(pos, &bss->deny_mac,
2077 &bss->num_deny_mac)) {
2078 wpa_printf(MSG_ERROR, "Line %d: Failed to read deny_mac_file '%s'",
2079 line, pos);
a0b728b7 2080 return 1;
599f40db
JM
2081 }
2082 } else if (os_strcmp(buf, "wds_sta") == 0) {
2083 bss->wds_sta = atoi(pos);
2084 } else if (os_strcmp(buf, "start_disabled") == 0) {
2085 bss->start_disabled = atoi(pos);
2086 } else if (os_strcmp(buf, "ap_isolate") == 0) {
2087 bss->isolate = atoi(pos);
2088 } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
2089 bss->ap_max_inactivity = atoi(pos);
2090 } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
2091 bss->skip_inactivity_poll = atoi(pos);
2092 } else if (os_strcmp(buf, "country_code") == 0) {
2093 os_memcpy(conf->country, pos, 2);
2094 /* FIX: make this configurable */
2095 conf->country[2] = ' ';
2096 } else if (os_strcmp(buf, "ieee80211d") == 0) {
2097 conf->ieee80211d = atoi(pos);
2098 } else if (os_strcmp(buf, "ieee80211h") == 0) {
2099 conf->ieee80211h = atoi(pos);
2100 } else if (os_strcmp(buf, "ieee8021x") == 0) {
2101 bss->ieee802_1x = atoi(pos);
2102 } else if (os_strcmp(buf, "eapol_version") == 0) {
2103 bss->eapol_version = atoi(pos);
2104 if (bss->eapol_version < 1 || bss->eapol_version > 2) {
2105 wpa_printf(MSG_ERROR,
2106 "Line %d: invalid EAPOL version (%d): '%s'.",
2107 line, bss->eapol_version, pos);
a0b728b7 2108 return 1;
b4c26ef9
JM
2109 }
2110 wpa_printf(MSG_DEBUG, "eapol_version=%d", bss->eapol_version);
41d719d6 2111#ifdef EAP_SERVER
599f40db
JM
2112 } else if (os_strcmp(buf, "eap_authenticator") == 0) {
2113 bss->eap_server = atoi(pos);
2114 wpa_printf(MSG_ERROR, "Line %d: obsolete eap_authenticator used; this has been renamed to eap_server", line);
2115 } else if (os_strcmp(buf, "eap_server") == 0) {
2116 bss->eap_server = atoi(pos);
2117 } else if (os_strcmp(buf, "eap_user_file") == 0) {
2118 if (hostapd_config_read_eap_user(pos, bss))
a0b728b7 2119 return 1;
599f40db
JM
2120 } else if (os_strcmp(buf, "ca_cert") == 0) {
2121 os_free(bss->ca_cert);
2122 bss->ca_cert = os_strdup(pos);
2123 } else if (os_strcmp(buf, "server_cert") == 0) {
2124 os_free(bss->server_cert);
2125 bss->server_cert = os_strdup(pos);
2126 } else if (os_strcmp(buf, "private_key") == 0) {
2127 os_free(bss->private_key);
2128 bss->private_key = os_strdup(pos);
2129 } else if (os_strcmp(buf, "private_key_passwd") == 0) {
2130 os_free(bss->private_key_passwd);
2131 bss->private_key_passwd = os_strdup(pos);
2132 } else if (os_strcmp(buf, "check_crl") == 0) {
2133 bss->check_crl = atoi(pos);
681e199d
JM
2134 } else if (os_strcmp(buf, "tls_session_lifetime") == 0) {
2135 bss->tls_session_lifetime = atoi(pos);
599f40db
JM
2136 } else if (os_strcmp(buf, "ocsp_stapling_response") == 0) {
2137 os_free(bss->ocsp_stapling_response);
2138 bss->ocsp_stapling_response = os_strdup(pos);
5addb0df
JM
2139 } else if (os_strcmp(buf, "ocsp_stapling_response_multi") == 0) {
2140 os_free(bss->ocsp_stapling_response_multi);
2141 bss->ocsp_stapling_response_multi = os_strdup(pos);
599f40db
JM
2142 } else if (os_strcmp(buf, "dh_file") == 0) {
2143 os_free(bss->dh_file);
2144 bss->dh_file = os_strdup(pos);
f8995f8f
JM
2145 } else if (os_strcmp(buf, "openssl_ciphers") == 0) {
2146 os_free(bss->openssl_ciphers);
2147 bss->openssl_ciphers = os_strdup(pos);
599f40db
JM
2148 } else if (os_strcmp(buf, "fragment_size") == 0) {
2149 bss->fragment_size = atoi(pos);
41d719d6 2150#ifdef EAP_SERVER_FAST
599f40db
JM
2151 } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
2152 os_free(bss->pac_opaque_encr_key);
2153 bss->pac_opaque_encr_key = os_malloc(16);
2154 if (bss->pac_opaque_encr_key == NULL) {
2155 wpa_printf(MSG_ERROR,
2156 "Line %d: No memory for pac_opaque_encr_key",
2157 line);
a0b728b7 2158 return 1;
599f40db
JM
2159 } else if (hexstr2bin(pos, bss->pac_opaque_encr_key, 16)) {
2160 wpa_printf(MSG_ERROR, "Line %d: Invalid pac_opaque_encr_key",
2161 line);
a0b728b7 2162 return 1;
599f40db
JM
2163 }
2164 } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
2165 size_t idlen = os_strlen(pos);
2166 if (idlen & 1) {
2167 wpa_printf(MSG_ERROR, "Line %d: Invalid eap_fast_a_id",
2168 line);
a0b728b7 2169 return 1;
b4c26ef9
JM
2170 }
2171 os_free(bss->eap_fast_a_id);
2172 bss->eap_fast_a_id = os_malloc(idlen / 2);
2173 if (bss->eap_fast_a_id == NULL ||
2174 hexstr2bin(pos, bss->eap_fast_a_id, idlen / 2)) {
2175 wpa_printf(MSG_ERROR, "Line %d: Failed to parse eap_fast_a_id",
2176 line);
599f40db 2177 os_free(bss->eap_fast_a_id);
b4c26ef9
JM
2178 bss->eap_fast_a_id = NULL;
2179 return 1;
2180 } else {
2181 bss->eap_fast_a_id_len = idlen / 2;
599f40db
JM
2182 }
2183 } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
2184 os_free(bss->eap_fast_a_id_info);
2185 bss->eap_fast_a_id_info = os_strdup(pos);
2186 } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
2187 bss->eap_fast_prov = atoi(pos);
2188 } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
2189 bss->pac_key_lifetime = atoi(pos);
2190 } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
2191 bss->pac_key_refresh_time = atoi(pos);
41d719d6
JM
2192#endif /* EAP_SERVER_FAST */
2193#ifdef EAP_SERVER_SIM
599f40db
JM
2194 } else if (os_strcmp(buf, "eap_sim_db") == 0) {
2195 os_free(bss->eap_sim_db);
2196 bss->eap_sim_db = os_strdup(pos);
7b0f5500
FL
2197 } else if (os_strcmp(buf, "eap_sim_db_timeout") == 0) {
2198 bss->eap_sim_db_timeout = atoi(pos);
599f40db
JM
2199 } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
2200 bss->eap_sim_aka_result_ind = atoi(pos);
41d719d6
JM
2201#endif /* EAP_SERVER_SIM */
2202#ifdef EAP_SERVER_TNC
599f40db
JM
2203 } else if (os_strcmp(buf, "tnc") == 0) {
2204 bss->tnc = atoi(pos);
41d719d6 2205#endif /* EAP_SERVER_TNC */
df684d82 2206#ifdef EAP_SERVER_PWD
599f40db
JM
2207 } else if (os_strcmp(buf, "pwd_group") == 0) {
2208 bss->pwd_group = atoi(pos);
df684d82 2209#endif /* EAP_SERVER_PWD */
d3bddd8b
JM
2210 } else if (os_strcmp(buf, "eap_server_erp") == 0) {
2211 bss->eap_server_erp = atoi(pos);
41d719d6 2212#endif /* EAP_SERVER */
599f40db
JM
2213 } else if (os_strcmp(buf, "eap_message") == 0) {
2214 char *term;
5784b9a4 2215 os_free(bss->eap_req_id_text);
599f40db
JM
2216 bss->eap_req_id_text = os_strdup(pos);
2217 if (bss->eap_req_id_text == NULL) {
2218 wpa_printf(MSG_ERROR, "Line %d: Failed to allocate memory for eap_req_id_text",
2219 line);
a0b728b7 2220 return 1;
599f40db
JM
2221 }
2222 bss->eap_req_id_text_len = os_strlen(bss->eap_req_id_text);
2223 term = os_strstr(bss->eap_req_id_text, "\\0");
2224 if (term) {
2225 *term++ = '\0';
2226 os_memmove(term, term + 1,
2227 bss->eap_req_id_text_len -
2228 (term - bss->eap_req_id_text) - 1);
2229 bss->eap_req_id_text_len--;
2230 }
2a5156a6
JM
2231 } else if (os_strcmp(buf, "erp_send_reauth_start") == 0) {
2232 bss->erp_send_reauth_start = atoi(pos);
2233 } else if (os_strcmp(buf, "erp_domain") == 0) {
2234 os_free(bss->erp_domain);
2235 bss->erp_domain = os_strdup(pos);
599f40db
JM
2236 } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
2237 bss->default_wep_key_len = atoi(pos);
2238 if (bss->default_wep_key_len > 13) {
2239 wpa_printf(MSG_ERROR, "Line %d: invalid WEP key len %lu (= %lu bits)",
2240 line,
2241 (unsigned long) bss->default_wep_key_len,
2242 (unsigned long)
2243 bss->default_wep_key_len * 8);
a0b728b7 2244 return 1;
599f40db
JM
2245 }
2246 } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
2247 bss->individual_wep_key_len = atoi(pos);
2248 if (bss->individual_wep_key_len < 0 ||
2249 bss->individual_wep_key_len > 13) {
2250 wpa_printf(MSG_ERROR, "Line %d: invalid WEP key len %d (= %d bits)",
2251 line, bss->individual_wep_key_len,
2252 bss->individual_wep_key_len * 8);
a0b728b7 2253 return 1;
599f40db
JM
2254 }
2255 } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
2256 bss->wep_rekeying_period = atoi(pos);
2257 if (bss->wep_rekeying_period < 0) {
2258 wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2259 line, bss->wep_rekeying_period);
a0b728b7 2260 return 1;
599f40db
JM
2261 }
2262 } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
2263 bss->eap_reauth_period = atoi(pos);
2264 if (bss->eap_reauth_period < 0) {
2265 wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2266 line, bss->eap_reauth_period);
a0b728b7 2267 return 1;
599f40db
JM
2268 }
2269 } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
2270 bss->eapol_key_index_workaround = atoi(pos);
41d719d6 2271#ifdef CONFIG_IAPP
599f40db
JM
2272 } else if (os_strcmp(buf, "iapp_interface") == 0) {
2273 bss->ieee802_11f = 1;
2274 os_strlcpy(bss->iapp_iface, pos, sizeof(bss->iapp_iface));
41d719d6 2275#endif /* CONFIG_IAPP */
599f40db
JM
2276 } else if (os_strcmp(buf, "own_ip_addr") == 0) {
2277 if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
2278 wpa_printf(MSG_ERROR,
2279 "Line %d: invalid IP address '%s'",
2280 line, pos);
a0b728b7 2281 return 1;
599f40db
JM
2282 }
2283 } else if (os_strcmp(buf, "nas_identifier") == 0) {
5784b9a4 2284 os_free(bss->nas_identifier);
599f40db 2285 bss->nas_identifier = os_strdup(pos);
41d719d6 2286#ifndef CONFIG_NO_RADIUS
9836cb53
JM
2287 } else if (os_strcmp(buf, "radius_client_addr") == 0) {
2288 if (hostapd_parse_ip_addr(pos, &bss->radius->client_addr)) {
2289 wpa_printf(MSG_ERROR,
2290 "Line %d: invalid IP address '%s'",
2291 line, pos);
2292 return 1;
2293 }
2294 bss->radius->force_client_addr = 1;
599f40db
JM
2295 } else if (os_strcmp(buf, "auth_server_addr") == 0) {
2296 if (hostapd_config_read_radius_addr(
2297 &bss->radius->auth_servers,
2298 &bss->radius->num_auth_servers, pos, 1812,
2299 &bss->radius->auth_server)) {
2300 wpa_printf(MSG_ERROR,
2301 "Line %d: invalid IP address '%s'",
2302 line, pos);
a0b728b7 2303 return 1;
599f40db 2304 }
bbee36e3
JM
2305 } else if (bss->radius->auth_server &&
2306 os_strcmp(buf, "auth_server_addr_replace") == 0) {
2307 if (hostapd_parse_ip_addr(pos,
2308 &bss->radius->auth_server->addr)) {
2309 wpa_printf(MSG_ERROR,
2310 "Line %d: invalid IP address '%s'",
2311 line, pos);
2312 return 1;
2313 }
599f40db
JM
2314 } else if (bss->radius->auth_server &&
2315 os_strcmp(buf, "auth_server_port") == 0) {
2316 bss->radius->auth_server->port = atoi(pos);
2317 } else if (bss->radius->auth_server &&
2318 os_strcmp(buf, "auth_server_shared_secret") == 0) {
2319 int len = os_strlen(pos);
2320 if (len == 0) {
2321 /* RFC 2865, Ch. 3 */
2322 wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2323 line);
a0b728b7 2324 return 1;
599f40db 2325 }
5784b9a4 2326 os_free(bss->radius->auth_server->shared_secret);
599f40db
JM
2327 bss->radius->auth_server->shared_secret = (u8 *) os_strdup(pos);
2328 bss->radius->auth_server->shared_secret_len = len;
2329 } else if (os_strcmp(buf, "acct_server_addr") == 0) {
2330 if (hostapd_config_read_radius_addr(
2331 &bss->radius->acct_servers,
2332 &bss->radius->num_acct_servers, pos, 1813,
2333 &bss->radius->acct_server)) {
2334 wpa_printf(MSG_ERROR,
2335 "Line %d: invalid IP address '%s'",
2336 line, pos);
a0b728b7 2337 return 1;
bbee36e3
JM
2338 }
2339 } else if (bss->radius->acct_server &&
2340 os_strcmp(buf, "acct_server_addr_replace") == 0) {
2341 if (hostapd_parse_ip_addr(pos,
2342 &bss->radius->acct_server->addr)) {
2343 wpa_printf(MSG_ERROR,
2344 "Line %d: invalid IP address '%s'",
2345 line, pos);
2346 return 1;
599f40db
JM
2347 }
2348 } else if (bss->radius->acct_server &&
2349 os_strcmp(buf, "acct_server_port") == 0) {
2350 bss->radius->acct_server->port = atoi(pos);
2351 } else if (bss->radius->acct_server &&
2352 os_strcmp(buf, "acct_server_shared_secret") == 0) {
2353 int len = os_strlen(pos);
2354 if (len == 0) {
2355 /* RFC 2865, Ch. 3 */
2356 wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2357 line);
a0b728b7 2358 return 1;
599f40db 2359 }
5784b9a4 2360 os_free(bss->radius->acct_server->shared_secret);
599f40db
JM
2361 bss->radius->acct_server->shared_secret = (u8 *) os_strdup(pos);
2362 bss->radius->acct_server->shared_secret_len = len;
2363 } else if (os_strcmp(buf, "radius_retry_primary_interval") == 0) {
2364 bss->radius->retry_primary_interval = atoi(pos);
2365 } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0) {
2366 bss->acct_interim_interval = atoi(pos);
2367 } else if (os_strcmp(buf, "radius_request_cui") == 0) {
2368 bss->radius_request_cui = atoi(pos);
2369 } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
2370 struct hostapd_radius_attr *attr, *a;
2371 attr = hostapd_parse_radius_attr(pos);
2372 if (attr == NULL) {
2373 wpa_printf(MSG_ERROR,
2374 "Line %d: invalid radius_auth_req_attr",
2375 line);
a0b728b7 2376 return 1;
599f40db
JM
2377 } else if (bss->radius_auth_req_attr == NULL) {
2378 bss->radius_auth_req_attr = attr;
2379 } else {
2380 a = bss->radius_auth_req_attr;
2381 while (a->next)
2382 a = a->next;
2383 a->next = attr;
2384 }
2385 } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
2386 struct hostapd_radius_attr *attr, *a;
2387 attr = hostapd_parse_radius_attr(pos);
2388 if (attr == NULL) {
2389 wpa_printf(MSG_ERROR,
2390 "Line %d: invalid radius_acct_req_attr",
2391 line);
a0b728b7 2392 return 1;
599f40db
JM
2393 } else if (bss->radius_acct_req_attr == NULL) {
2394 bss->radius_acct_req_attr = attr;
2395 } else {
2396 a = bss->radius_acct_req_attr;
2397 while (a->next)
2398 a = a->next;
2399 a->next = attr;
2400 }
2401 } else if (os_strcmp(buf, "radius_das_port") == 0) {
2402 bss->radius_das_port = atoi(pos);
2403 } else if (os_strcmp(buf, "radius_das_client") == 0) {
2404 if (hostapd_parse_das_client(bss, pos) < 0) {
2405 wpa_printf(MSG_ERROR, "Line %d: invalid DAS client",
2406 line);
a0b728b7 2407 return 1;
599f40db
JM
2408 }
2409 } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
2410 bss->radius_das_time_window = atoi(pos);
2411 } else if (os_strcmp(buf, "radius_das_require_event_timestamp") == 0) {
2412 bss->radius_das_require_event_timestamp = atoi(pos);
42d30e9e
NL
2413 } else if (os_strcmp(buf, "radius_das_require_message_authenticator") ==
2414 0) {
2415 bss->radius_das_require_message_authenticator = atoi(pos);
41d719d6 2416#endif /* CONFIG_NO_RADIUS */
599f40db
JM
2417 } else if (os_strcmp(buf, "auth_algs") == 0) {
2418 bss->auth_algs = atoi(pos);
2419 if (bss->auth_algs == 0) {
2420 wpa_printf(MSG_ERROR, "Line %d: no authentication algorithms allowed",
2421 line);
a0b728b7 2422 return 1;
599f40db
JM
2423 }
2424 } else if (os_strcmp(buf, "max_num_sta") == 0) {
2425 bss->max_num_sta = atoi(pos);
2426 if (bss->max_num_sta < 0 ||
2427 bss->max_num_sta > MAX_STA_COUNT) {
2428 wpa_printf(MSG_ERROR, "Line %d: Invalid max_num_sta=%d; allowed range 0..%d",
2429 line, bss->max_num_sta, MAX_STA_COUNT);
a0b728b7 2430 return 1;
599f40db
JM
2431 }
2432 } else if (os_strcmp(buf, "wpa") == 0) {
2433 bss->wpa = atoi(pos);
2434 } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
2435 bss->wpa_group_rekey = atoi(pos);
2436 } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
2437 bss->wpa_strict_rekey = atoi(pos);
2438 } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
2439 bss->wpa_gmk_rekey = atoi(pos);
2440 } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
2441 bss->wpa_ptk_rekey = atoi(pos);
2442 } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
2443 int len = os_strlen(pos);
2444 if (len < 8 || len > 63) {
2445 wpa_printf(MSG_ERROR, "Line %d: invalid WPA passphrase length %d (expected 8..63)",
2446 line, len);
a0b728b7 2447 return 1;
b4c26ef9
JM
2448 }
2449 os_free(bss->ssid.wpa_passphrase);
2450 bss->ssid.wpa_passphrase = os_strdup(pos);
2451 if (bss->ssid.wpa_passphrase) {
891dfb33 2452 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
b4c26ef9 2453 bss->ssid.wpa_passphrase_set = 1;
599f40db
JM
2454 }
2455 } else if (os_strcmp(buf, "wpa_psk") == 0) {
891dfb33 2456 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
599f40db
JM
2457 bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
2458 if (bss->ssid.wpa_psk == NULL)
a0b728b7 2459 return 1;
b4c26ef9
JM
2460 if (hexstr2bin(pos, bss->ssid.wpa_psk->psk, PMK_LEN) ||
2461 pos[PMK_LEN * 2] != '\0') {
599f40db
JM
2462 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
2463 line, pos);
891dfb33 2464 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
a0b728b7 2465 return 1;
599f40db 2466 }
b4c26ef9
JM
2467 bss->ssid.wpa_psk->group = 1;
2468 os_free(bss->ssid.wpa_passphrase);
2469 bss->ssid.wpa_passphrase = NULL;
2470 bss->ssid.wpa_psk_set = 1;
599f40db
JM
2471 } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
2472 os_free(bss->ssid.wpa_psk_file);
2473 bss->ssid.wpa_psk_file = os_strdup(pos);
2474 if (!bss->ssid.wpa_psk_file) {
2475 wpa_printf(MSG_ERROR, "Line %d: allocation failed",
2476 line);
a0b728b7 2477 return 1;
599f40db
JM
2478 }
2479 } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
2480 bss->wpa_key_mgmt = hostapd_config_parse_key_mgmt(line, pos);
2481 if (bss->wpa_key_mgmt == -1)
a0b728b7 2482 return 1;
599f40db
JM
2483 } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
2484 bss->wpa_psk_radius = atoi(pos);
2485 if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
2486 bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
2487 bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
2488 wpa_printf(MSG_ERROR,
2489 "Line %d: unknown wpa_psk_radius %d",
2490 line, bss->wpa_psk_radius);
a0b728b7 2491 return 1;
599f40db
JM
2492 }
2493 } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
2494 bss->wpa_pairwise = hostapd_config_parse_cipher(line, pos);
2495 if (bss->wpa_pairwise == -1 || bss->wpa_pairwise == 0)
a0b728b7 2496 return 1;
b4c26ef9
JM
2497 if (bss->wpa_pairwise &
2498 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
599f40db
JM
2499 wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
2500 bss->wpa_pairwise, pos);
a0b728b7 2501 return 1;
599f40db
JM
2502 }
2503 } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
2504 bss->rsn_pairwise = hostapd_config_parse_cipher(line, pos);
2505 if (bss->rsn_pairwise == -1 || bss->rsn_pairwise == 0)
a0b728b7 2506 return 1;
b4c26ef9
JM
2507 if (bss->rsn_pairwise &
2508 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
599f40db
JM
2509 wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
2510 bss->rsn_pairwise, pos);
a0b728b7 2511 return 1;
599f40db 2512 }
41d719d6 2513#ifdef CONFIG_RSN_PREAUTH
599f40db
JM
2514 } else if (os_strcmp(buf, "rsn_preauth") == 0) {
2515 bss->rsn_preauth = atoi(pos);
2516 } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
5784b9a4 2517 os_free(bss->rsn_preauth_interfaces);
599f40db 2518 bss->rsn_preauth_interfaces = os_strdup(pos);
41d719d6
JM
2519#endif /* CONFIG_RSN_PREAUTH */
2520#ifdef CONFIG_PEERKEY
599f40db
JM
2521 } else if (os_strcmp(buf, "peerkey") == 0) {
2522 bss->peerkey = atoi(pos);
41d719d6
JM
2523#endif /* CONFIG_PEERKEY */
2524#ifdef CONFIG_IEEE80211R
599f40db
JM
2525 } else if (os_strcmp(buf, "mobility_domain") == 0) {
2526 if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
2527 hexstr2bin(pos, bss->mobility_domain,
2528 MOBILITY_DOMAIN_ID_LEN) != 0) {
2529 wpa_printf(MSG_ERROR,
2530 "Line %d: Invalid mobility_domain '%s'",
2531 line, pos);
a0b728b7 2532 return 1;
599f40db
JM
2533 }
2534 } else if (os_strcmp(buf, "r1_key_holder") == 0) {
2535 if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
2536 hexstr2bin(pos, bss->r1_key_holder, FT_R1KH_ID_LEN) != 0) {
2537 wpa_printf(MSG_ERROR,
2538 "Line %d: Invalid r1_key_holder '%s'",
2539 line, pos);
a0b728b7 2540 return 1;
599f40db
JM
2541 }
2542 } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
2543 bss->r0_key_lifetime = atoi(pos);
2544 } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
2545 bss->reassociation_deadline = atoi(pos);
2546 } else if (os_strcmp(buf, "r0kh") == 0) {
2547 if (add_r0kh(bss, pos) < 0) {
2548 wpa_printf(MSG_DEBUG, "Line %d: Invalid r0kh '%s'",
2549 line, pos);
a0b728b7 2550 return 1;
599f40db
JM
2551 }
2552 } else if (os_strcmp(buf, "r1kh") == 0) {
2553 if (add_r1kh(bss, pos) < 0) {
2554 wpa_printf(MSG_DEBUG, "Line %d: Invalid r1kh '%s'",
2555 line, pos);
a0b728b7 2556 return 1;
599f40db
JM
2557 }
2558 } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
2559 bss->pmk_r1_push = atoi(pos);
2560 } else if (os_strcmp(buf, "ft_over_ds") == 0) {
2561 bss->ft_over_ds = atoi(pos);
41d719d6
JM
2562#endif /* CONFIG_IEEE80211R */
2563#ifndef CONFIG_NO_CTRL_IFACE
599f40db
JM
2564 } else if (os_strcmp(buf, "ctrl_interface") == 0) {
2565 os_free(bss->ctrl_interface);
2566 bss->ctrl_interface = os_strdup(pos);
2567 } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
41d719d6 2568#ifndef CONFIG_NATIVE_WINDOWS
599f40db
JM
2569 struct group *grp;
2570 char *endp;
2571 const char *group = pos;
41d719d6 2572
599f40db
JM
2573 grp = getgrnam(group);
2574 if (grp) {
2575 bss->ctrl_interface_gid = grp->gr_gid;
41d719d6 2576 bss->ctrl_interface_gid_set = 1;
599f40db
JM
2577 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d (from group name '%s')",
2578 bss->ctrl_interface_gid, group);
2579 return 0;
2580 }
2581
2582 /* Group name not found - try to parse this as gid */
2583 bss->ctrl_interface_gid = strtol(group, &endp, 10);
2584 if (*group == '\0' || *endp != '\0') {
2585 wpa_printf(MSG_DEBUG, "Line %d: Invalid group '%s'",
2586 line, group);
2587 return 1;
2588 }
2589 bss->ctrl_interface_gid_set = 1;
2590 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
2591 bss->ctrl_interface_gid);
41d719d6
JM
2592#endif /* CONFIG_NATIVE_WINDOWS */
2593#endif /* CONFIG_NO_CTRL_IFACE */
2594#ifdef RADIUS_SERVER
599f40db
JM
2595 } else if (os_strcmp(buf, "radius_server_clients") == 0) {
2596 os_free(bss->radius_server_clients);
2597 bss->radius_server_clients = os_strdup(pos);
2598 } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
2599 bss->radius_server_auth_port = atoi(pos);
2600 } else if (os_strcmp(buf, "radius_server_acct_port") == 0) {
2601 bss->radius_server_acct_port = atoi(pos);
2602 } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
2603 bss->radius_server_ipv6 = atoi(pos);
41d719d6 2604#endif /* RADIUS_SERVER */
599f40db
JM
2605 } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
2606 bss->use_pae_group_addr = atoi(pos);
2607 } else if (os_strcmp(buf, "hw_mode") == 0) {
2608 if (os_strcmp(pos, "a") == 0)
2609 conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
2610 else if (os_strcmp(pos, "b") == 0)
2611 conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
2612 else if (os_strcmp(pos, "g") == 0)
2613 conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
2614 else if (os_strcmp(pos, "ad") == 0)
2615 conf->hw_mode = HOSTAPD_MODE_IEEE80211AD;
3784c058
PX
2616 else if (os_strcmp(pos, "any") == 0)
2617 conf->hw_mode = HOSTAPD_MODE_IEEE80211ANY;
599f40db
JM
2618 else {
2619 wpa_printf(MSG_ERROR, "Line %d: unknown hw_mode '%s'",
2620 line, pos);
a0b728b7 2621 return 1;
599f40db
JM
2622 }
2623 } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
01a02593
HK
2624 if (os_strcmp(pos, "ad") == 0)
2625 bss->wps_rf_bands = WPS_RF_60GHZ;
2626 else if (os_strcmp(pos, "a") == 0)
599f40db
JM
2627 bss->wps_rf_bands = WPS_RF_50GHZ;
2628 else if (os_strcmp(pos, "g") == 0 ||
2629 os_strcmp(pos, "b") == 0)
2630 bss->wps_rf_bands = WPS_RF_24GHZ;
2631 else if (os_strcmp(pos, "ag") == 0 ||
2632 os_strcmp(pos, "ga") == 0)
2633 bss->wps_rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
2634 else {
2635 wpa_printf(MSG_ERROR,
2636 "Line %d: unknown wps_rf_band '%s'",
2637 line, pos);
a0b728b7 2638 return 1;
599f40db
JM
2639 }
2640 } else if (os_strcmp(buf, "channel") == 0) {
2641 if (os_strcmp(pos, "acs_survey") == 0) {
50f4f2a0 2642#ifndef CONFIG_ACS
599f40db
JM
2643 wpa_printf(MSG_ERROR, "Line %d: tries to enable ACS but CONFIG_ACS disabled",
2644 line);
a0b728b7 2645 return 1;
9670f877 2646#else /* CONFIG_ACS */
857d9422 2647 conf->acs = 1;
599f40db 2648 conf->channel = 0;
9670f877 2649#endif /* CONFIG_ACS */
857d9422 2650 } else {
599f40db 2651 conf->channel = atoi(pos);
857d9422
MM
2652 conf->acs = conf->channel == 0;
2653 }
599f40db 2654 } else if (os_strcmp(buf, "chanlist") == 0) {
857d9422 2655 if (hostapd_parse_chanlist(conf, pos)) {
599f40db
JM
2656 wpa_printf(MSG_ERROR, "Line %d: invalid channel list",
2657 line);
a0b728b7 2658 return 1;
599f40db
JM
2659 }
2660 } else if (os_strcmp(buf, "beacon_int") == 0) {
2661 int val = atoi(pos);
2662 /* MIB defines range as 1..65535, but very small values
2663 * cause problems with the current implementation.
2664 * Since it is unlikely that this small numbers are
2665 * useful in real life scenarios, do not allow beacon
2666 * period to be set below 15 TU. */
2667 if (val < 15 || val > 65535) {
2668 wpa_printf(MSG_ERROR, "Line %d: invalid beacon_int %d (expected 15..65535)",
2669 line, val);
a0b728b7 2670 return 1;
b4c26ef9
JM
2671 }
2672 conf->beacon_int = val;
50f4f2a0 2673#ifdef CONFIG_ACS
599f40db
JM
2674 } else if (os_strcmp(buf, "acs_num_scans") == 0) {
2675 int val = atoi(pos);
2676 if (val <= 0 || val > 100) {
2677 wpa_printf(MSG_ERROR, "Line %d: invalid acs_num_scans %d (expected 1..100)",
2678 line, val);
a0b728b7 2679 return 1;
b4c26ef9
JM
2680 }
2681 conf->acs_num_scans = val;
68fa00c3
JM
2682 } else if (os_strcmp(buf, "acs_chan_bias") == 0) {
2683 if (hostapd_config_parse_acs_chan_bias(conf, pos)) {
2684 wpa_printf(MSG_ERROR, "Line %d: invalid acs_chan_bias",
2685 line);
2686 return -1;
2687 }
50f4f2a0 2688#endif /* CONFIG_ACS */
599f40db
JM
2689 } else if (os_strcmp(buf, "dtim_period") == 0) {
2690 bss->dtim_period = atoi(pos);
2691 if (bss->dtim_period < 1 || bss->dtim_period > 255) {
2692 wpa_printf(MSG_ERROR, "Line %d: invalid dtim_period %d",
2693 line, bss->dtim_period);
a0b728b7 2694 return 1;
599f40db 2695 }
ec8f36af
KP
2696 } else if (os_strcmp(buf, "bss_load_update_period") == 0) {
2697 bss->bss_load_update_period = atoi(pos);
2698 if (bss->bss_load_update_period < 0 ||
2699 bss->bss_load_update_period > 100) {
2700 wpa_printf(MSG_ERROR,
2701 "Line %d: invalid bss_load_update_period %d",
2702 line, bss->bss_load_update_period);
2703 return 1;
2704 }
599f40db
JM
2705 } else if (os_strcmp(buf, "rts_threshold") == 0) {
2706 conf->rts_threshold = atoi(pos);
bc50bb0a 2707 if (conf->rts_threshold < -1 || conf->rts_threshold > 65535) {
599f40db
JM
2708 wpa_printf(MSG_ERROR,
2709 "Line %d: invalid rts_threshold %d",
2710 line, conf->rts_threshold);
a0b728b7 2711 return 1;
599f40db
JM
2712 }
2713 } else if (os_strcmp(buf, "fragm_threshold") == 0) {
2714 conf->fragm_threshold = atoi(pos);
95be79f1
MM
2715 if (conf->fragm_threshold == -1) {
2716 /* allow a value of -1 */
2717 } else if (conf->fragm_threshold < 256 ||
2718 conf->fragm_threshold > 2346) {
599f40db
JM
2719 wpa_printf(MSG_ERROR,
2720 "Line %d: invalid fragm_threshold %d",
2721 line, conf->fragm_threshold);
a0b728b7 2722 return 1;
599f40db
JM
2723 }
2724 } else if (os_strcmp(buf, "send_probe_response") == 0) {
2725 int val = atoi(pos);
2726 if (val != 0 && val != 1) {
2727 wpa_printf(MSG_ERROR, "Line %d: invalid send_probe_response %d (expected 0 or 1)",
2728 line, val);
b4c26ef9
JM
2729 return 1;
2730 }
2731 conf->send_probe_response = val;
599f40db
JM
2732 } else if (os_strcmp(buf, "supported_rates") == 0) {
2733 if (hostapd_parse_intlist(&conf->supported_rates, pos)) {
2734 wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
2735 line);
a0b728b7 2736 return 1;
599f40db
JM
2737 }
2738 } else if (os_strcmp(buf, "basic_rates") == 0) {
2739 if (hostapd_parse_intlist(&conf->basic_rates, pos)) {
2740 wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
2741 line);
a0b728b7 2742 return 1;
599f40db
JM
2743 }
2744 } else if (os_strcmp(buf, "preamble") == 0) {
2745 if (atoi(pos))
2746 conf->preamble = SHORT_PREAMBLE;
2747 else
2748 conf->preamble = LONG_PREAMBLE;
2749 } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
2750 bss->ignore_broadcast_ssid = atoi(pos);
9b7a1bd7
JM
2751 } else if (os_strcmp(buf, "no_probe_resp_if_max_sta") == 0) {
2752 bss->no_probe_resp_if_max_sta = atoi(pos);
599f40db
JM
2753 } else if (os_strcmp(buf, "wep_default_key") == 0) {
2754 bss->ssid.wep.idx = atoi(pos);
2755 if (bss->ssid.wep.idx > 3) {
2756 wpa_printf(MSG_ERROR,
2757 "Invalid wep_default_key index %d",
2758 bss->ssid.wep.idx);
a0b728b7 2759 return 1;
599f40db
JM
2760 }
2761 } else if (os_strcmp(buf, "wep_key0") == 0 ||
2762 os_strcmp(buf, "wep_key1") == 0 ||
2763 os_strcmp(buf, "wep_key2") == 0 ||
2764 os_strcmp(buf, "wep_key3") == 0) {
2765 if (hostapd_config_read_wep(&bss->ssid.wep,
2766 buf[7] - '0', pos)) {
2767 wpa_printf(MSG_ERROR, "Line %d: invalid WEP key '%s'",
2768 line, buf);
a0b728b7 2769 return 1;
599f40db 2770 }
41d719d6 2771#ifndef CONFIG_NO_VLAN
599f40db
JM
2772 } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
2773 bss->ssid.dynamic_vlan = atoi(pos);
8be640b7
MB
2774 } else if (os_strcmp(buf, "per_sta_vif") == 0) {
2775 bss->ssid.per_sta_vif = atoi(pos);
599f40db
JM
2776 } else if (os_strcmp(buf, "vlan_file") == 0) {
2777 if (hostapd_config_read_vlan_file(bss, pos)) {
2778 wpa_printf(MSG_ERROR, "Line %d: failed to read VLAN file '%s'",
2779 line, pos);
a0b728b7 2780 return 1;
599f40db
JM
2781 }
2782 } else if (os_strcmp(buf, "vlan_naming") == 0) {
2783 bss->ssid.vlan_naming = atoi(pos);
2784 if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
2785 bss->ssid.vlan_naming < 0) {
2786 wpa_printf(MSG_ERROR,
2787 "Line %d: invalid naming scheme %d",
2788 line, bss->ssid.vlan_naming);
a0b728b7 2789 return 1;
599f40db 2790 }
41d719d6 2791#ifdef CONFIG_FULL_DYNAMIC_VLAN
599f40db 2792 } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
5784b9a4 2793 os_free(bss->ssid.vlan_tagged_interface);
599f40db 2794 bss->ssid.vlan_tagged_interface = os_strdup(pos);
41d719d6
JM
2795#endif /* CONFIG_FULL_DYNAMIC_VLAN */
2796#endif /* CONFIG_NO_VLAN */
599f40db
JM
2797 } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
2798 conf->ap_table_max_size = atoi(pos);
2799 } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
2800 conf->ap_table_expiration_time = atoi(pos);
2801 } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
2802 if (hostapd_config_tx_queue(conf, buf, pos)) {
2803 wpa_printf(MSG_ERROR, "Line %d: invalid TX queue item",
2804 line);
a0b728b7 2805 return 1;
599f40db
JM
2806 }
2807 } else if (os_strcmp(buf, "wme_enabled") == 0 ||
2808 os_strcmp(buf, "wmm_enabled") == 0) {
2809 bss->wmm_enabled = atoi(pos);
2810 } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
2811 bss->wmm_uapsd = atoi(pos);
2812 } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
2813 os_strncmp(buf, "wmm_ac_", 7) == 0) {
2814 if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf, pos)) {
2815 wpa_printf(MSG_ERROR, "Line %d: invalid WMM ac item",
2816 line);
a0b728b7 2817 return 1;
599f40db
JM
2818 }
2819 } else if (os_strcmp(buf, "bss") == 0) {
2820 if (hostapd_config_bss(conf, pos)) {
2821 wpa_printf(MSG_ERROR, "Line %d: invalid bss item",
2822 line);
a0b728b7 2823 return 1;
599f40db
JM
2824 }
2825 } else if (os_strcmp(buf, "bssid") == 0) {
2826 if (hwaddr_aton(pos, bss->bssid)) {
2827 wpa_printf(MSG_ERROR, "Line %d: invalid bssid item",
2828 line);
a0b728b7 2829 return 1;
599f40db 2830 }
6448e064
EP
2831 } else if (os_strcmp(buf, "use_driver_iface_addr") == 0) {
2832 conf->use_driver_iface_addr = atoi(pos);
41d719d6 2833#ifdef CONFIG_IEEE80211W
599f40db
JM
2834 } else if (os_strcmp(buf, "ieee80211w") == 0) {
2835 bss->ieee80211w = atoi(pos);
8dd9f9cd
JM
2836 } else if (os_strcmp(buf, "group_mgmt_cipher") == 0) {
2837 if (os_strcmp(pos, "AES-128-CMAC") == 0) {
2838 bss->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
2839 } else if (os_strcmp(pos, "BIP-GMAC-128") == 0) {
2840 bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_128;
2841 } else if (os_strcmp(pos, "BIP-GMAC-256") == 0) {
2842 bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256;
2843 } else if (os_strcmp(pos, "BIP-CMAC-256") == 0) {
2844 bss->group_mgmt_cipher = WPA_CIPHER_BIP_CMAC_256;
2845 } else {
2846 wpa_printf(MSG_ERROR, "Line %d: invalid group_mgmt_cipher: %s",
2847 line, pos);
2848 return 1;
2849 }
599f40db
JM
2850 } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
2851 bss->assoc_sa_query_max_timeout = atoi(pos);
2852 if (bss->assoc_sa_query_max_timeout == 0) {
2853 wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_max_timeout",
2854 line);
a0b728b7 2855 return 1;
599f40db
JM
2856 }
2857 } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0) {
2858 bss->assoc_sa_query_retry_timeout = atoi(pos);
2859 if (bss->assoc_sa_query_retry_timeout == 0) {
2860 wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_retry_timeout",
2861 line);
a0b728b7 2862 return 1;
599f40db 2863 }
41d719d6
JM
2864#endif /* CONFIG_IEEE80211W */
2865#ifdef CONFIG_IEEE80211N
599f40db
JM
2866 } else if (os_strcmp(buf, "ieee80211n") == 0) {
2867 conf->ieee80211n = atoi(pos);
2868 } else if (os_strcmp(buf, "ht_capab") == 0) {
2869 if (hostapd_config_ht_capab(conf, pos) < 0) {
2870 wpa_printf(MSG_ERROR, "Line %d: invalid ht_capab",
2871 line);
a0b728b7 2872 return 1;
599f40db
JM
2873 }
2874 } else if (os_strcmp(buf, "require_ht") == 0) {
2875 conf->require_ht = atoi(pos);
2876 } else if (os_strcmp(buf, "obss_interval") == 0) {
2877 conf->obss_interval = atoi(pos);
41d719d6 2878#endif /* CONFIG_IEEE80211N */
efe45d14 2879#ifdef CONFIG_IEEE80211AC
599f40db
JM
2880 } else if (os_strcmp(buf, "ieee80211ac") == 0) {
2881 conf->ieee80211ac = atoi(pos);
2882 } else if (os_strcmp(buf, "vht_capab") == 0) {
2883 if (hostapd_config_vht_capab(conf, pos) < 0) {
2884 wpa_printf(MSG_ERROR, "Line %d: invalid vht_capab",
2885 line);
a0b728b7 2886 return 1;
599f40db
JM
2887 }
2888 } else if (os_strcmp(buf, "require_vht") == 0) {
2889 conf->require_vht = atoi(pos);
2890 } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
2891 conf->vht_oper_chwidth = atoi(pos);
2892 } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0) {
2893 conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
2894 } else if (os_strcmp(buf, "vht_oper_centr_freq_seg1_idx") == 0) {
2895 conf->vht_oper_centr_freq_seg1_idx = atoi(pos);
e7d0e97b
YL
2896 } else if (os_strcmp(buf, "vendor_vht") == 0) {
2897 bss->vendor_vht = atoi(pos);
efe45d14 2898#endif /* CONFIG_IEEE80211AC */
599f40db
JM
2899 } else if (os_strcmp(buf, "max_listen_interval") == 0) {
2900 bss->max_listen_interval = atoi(pos);
2901 } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
2902 bss->disable_pmksa_caching = atoi(pos);
2903 } else if (os_strcmp(buf, "okc") == 0) {
2904 bss->okc = atoi(pos);
41d719d6 2905#ifdef CONFIG_WPS
599f40db
JM
2906 } else if (os_strcmp(buf, "wps_state") == 0) {
2907 bss->wps_state = atoi(pos);
2908 if (bss->wps_state < 0 || bss->wps_state > 2) {
2909 wpa_printf(MSG_ERROR, "Line %d: invalid wps_state",
2910 line);
a0b728b7 2911 return 1;
599f40db
JM
2912 }
2913 } else if (os_strcmp(buf, "wps_independent") == 0) {
2914 bss->wps_independent = atoi(pos);
2915 } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
2916 bss->ap_setup_locked = atoi(pos);
2917 } else if (os_strcmp(buf, "uuid") == 0) {
2918 if (uuid_str2bin(pos, bss->uuid)) {
2919 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
a0b728b7 2920 return 1;
599f40db
JM
2921 }
2922 } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
2923 os_free(bss->wps_pin_requests);
2924 bss->wps_pin_requests = os_strdup(pos);
2925 } else if (os_strcmp(buf, "device_name") == 0) {
cc6f2438 2926 if (os_strlen(pos) > WPS_DEV_NAME_MAX_LEN) {
599f40db
JM
2927 wpa_printf(MSG_ERROR, "Line %d: Too long "
2928 "device_name", line);
a0b728b7 2929 return 1;
599f40db
JM
2930 }
2931 os_free(bss->device_name);
2932 bss->device_name = os_strdup(pos);
2933 } else if (os_strcmp(buf, "manufacturer") == 0) {
2934 if (os_strlen(pos) > 64) {
2935 wpa_printf(MSG_ERROR, "Line %d: Too long manufacturer",
2936 line);
a0b728b7 2937 return 1;
599f40db
JM
2938 }
2939 os_free(bss->manufacturer);
2940 bss->manufacturer = os_strdup(pos);
2941 } else if (os_strcmp(buf, "model_name") == 0) {
2942 if (os_strlen(pos) > 32) {
2943 wpa_printf(MSG_ERROR, "Line %d: Too long model_name",
2944 line);
a0b728b7 2945 return 1;
599f40db
JM
2946 }
2947 os_free(bss->model_name);
2948 bss->model_name = os_strdup(pos);
2949 } else if (os_strcmp(buf, "model_number") == 0) {
2950 if (os_strlen(pos) > 32) {
2951 wpa_printf(MSG_ERROR, "Line %d: Too long model_number",
2952 line);
a0b728b7 2953 return 1;
599f40db
JM
2954 }
2955 os_free(bss->model_number);
2956 bss->model_number = os_strdup(pos);
2957 } else if (os_strcmp(buf, "serial_number") == 0) {
2958 if (os_strlen(pos) > 32) {
2959 wpa_printf(MSG_ERROR, "Line %d: Too long serial_number",
2960 line);
a0b728b7 2961 return 1;
599f40db
JM
2962 }
2963 os_free(bss->serial_number);
2964 bss->serial_number = os_strdup(pos);
2965 } else if (os_strcmp(buf, "device_type") == 0) {
2966 if (wps_dev_type_str2bin(pos, bss->device_type))
a0b728b7 2967 return 1;
599f40db
JM
2968 } else if (os_strcmp(buf, "config_methods") == 0) {
2969 os_free(bss->config_methods);
2970 bss->config_methods = os_strdup(pos);
2971 } else if (os_strcmp(buf, "os_version") == 0) {
2972 if (hexstr2bin(pos, bss->os_version, 4)) {
2973 wpa_printf(MSG_ERROR, "Line %d: invalid os_version",
2974 line);
a0b728b7 2975 return 1;
599f40db
JM
2976 }
2977 } else if (os_strcmp(buf, "ap_pin") == 0) {
2978 os_free(bss->ap_pin);
2979 bss->ap_pin = os_strdup(pos);
2980 } else if (os_strcmp(buf, "skip_cred_build") == 0) {
2981 bss->skip_cred_build = atoi(pos);
2982 } else if (os_strcmp(buf, "extra_cred") == 0) {
2983 os_free(bss->extra_cred);
2984 bss->extra_cred = (u8 *) os_readfile(pos, &bss->extra_cred_len);
2985 if (bss->extra_cred == NULL) {
2986 wpa_printf(MSG_ERROR, "Line %d: could not read Credentials from '%s'",
2987 line, pos);
a0b728b7 2988 return 1;
599f40db
JM
2989 }
2990 } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
2991 bss->wps_cred_processing = atoi(pos);
2992 } else if (os_strcmp(buf, "ap_settings") == 0) {
2993 os_free(bss->ap_settings);
2994 bss->ap_settings =
2995 (u8 *) os_readfile(pos, &bss->ap_settings_len);
2996 if (bss->ap_settings == NULL) {
2997 wpa_printf(MSG_ERROR, "Line %d: could not read AP Settings from '%s'",
2998 line, pos);
a0b728b7 2999 return 1;
599f40db
JM
3000 }
3001 } else if (os_strcmp(buf, "upnp_iface") == 0) {
5784b9a4 3002 os_free(bss->upnp_iface);
599f40db
JM
3003 bss->upnp_iface = os_strdup(pos);
3004 } else if (os_strcmp(buf, "friendly_name") == 0) {
3005 os_free(bss->friendly_name);
3006 bss->friendly_name = os_strdup(pos);
3007 } else if (os_strcmp(buf, "manufacturer_url") == 0) {
3008 os_free(bss->manufacturer_url);
3009 bss->manufacturer_url = os_strdup(pos);
3010 } else if (os_strcmp(buf, "model_description") == 0) {
3011 os_free(bss->model_description);
3012 bss->model_description = os_strdup(pos);
3013 } else if (os_strcmp(buf, "model_url") == 0) {
3014 os_free(bss->model_url);
3015 bss->model_url = os_strdup(pos);
3016 } else if (os_strcmp(buf, "upc") == 0) {
3017 os_free(bss->upc);
3018 bss->upc = os_strdup(pos);
3019 } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
3020 bss->pbc_in_m1 = atoi(pos);
3021 } else if (os_strcmp(buf, "server_id") == 0) {
3022 os_free(bss->server_id);
3023 bss->server_id = os_strdup(pos);
ffdaa05a 3024#ifdef CONFIG_WPS_NFC
599f40db
JM
3025 } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
3026 bss->wps_nfc_dev_pw_id = atoi(pos);
3027 if (bss->wps_nfc_dev_pw_id < 0x10 ||
3028 bss->wps_nfc_dev_pw_id > 0xffff) {
3029 wpa_printf(MSG_ERROR, "Line %d: Invalid wps_nfc_dev_pw_id value",
3030 line);
a0b728b7 3031 return 1;
599f40db
JM
3032 }
3033 bss->wps_nfc_pw_from_config = 1;
3034 } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
3035 wpabuf_free(bss->wps_nfc_dh_pubkey);
9d955f75 3036 bss->wps_nfc_dh_pubkey = wpabuf_parse_bin(pos);
599f40db
JM
3037 bss->wps_nfc_pw_from_config = 1;
3038 } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
3039 wpabuf_free(bss->wps_nfc_dh_privkey);
9d955f75 3040 bss->wps_nfc_dh_privkey = wpabuf_parse_bin(pos);
599f40db
JM
3041 bss->wps_nfc_pw_from_config = 1;
3042 } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
3043 wpabuf_free(bss->wps_nfc_dev_pw);
9d955f75 3044 bss->wps_nfc_dev_pw = wpabuf_parse_bin(pos);
599f40db 3045 bss->wps_nfc_pw_from_config = 1;
ffdaa05a 3046#endif /* CONFIG_WPS_NFC */
41d719d6 3047#endif /* CONFIG_WPS */
962473c1 3048#ifdef CONFIG_P2P_MANAGER
599f40db 3049 } else if (os_strcmp(buf, "manage_p2p") == 0) {
b4c26ef9 3050 if (atoi(pos))
599f40db
JM
3051 bss->p2p |= P2P_MANAGE;
3052 else
3053 bss->p2p &= ~P2P_MANAGE;
3054 } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
3055 if (atoi(pos))
3056 bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
3057 else
3058 bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
962473c1 3059#endif /* CONFIG_P2P_MANAGER */
599f40db
JM
3060 } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
3061 bss->disassoc_low_ack = atoi(pos);
3062 } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
b4c26ef9 3063 if (atoi(pos))
599f40db
JM
3064 bss->tdls |= TDLS_PROHIBIT;
3065 else
3066 bss->tdls &= ~TDLS_PROHIBIT;
3067 } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
b4c26ef9 3068 if (atoi(pos))
599f40db
JM
3069 bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
3070 else
3071 bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
cd9fc786 3072#ifdef CONFIG_RSN_TESTING
599f40db
JM
3073 } else if (os_strcmp(buf, "rsn_testing") == 0) {
3074 extern int rsn_testing;
3075 rsn_testing = atoi(pos);
cd9fc786 3076#endif /* CONFIG_RSN_TESTING */
599f40db
JM
3077 } else if (os_strcmp(buf, "time_advertisement") == 0) {
3078 bss->time_advertisement = atoi(pos);
3079 } else if (os_strcmp(buf, "time_zone") == 0) {
3080 size_t tz_len = os_strlen(pos);
3081 if (tz_len < 4 || tz_len > 255) {
3082 wpa_printf(MSG_DEBUG, "Line %d: invalid time_zone",
3083 line);
a0b728b7 3084 return 1;
599f40db
JM
3085 }
3086 os_free(bss->time_zone);
3087 bss->time_zone = os_strdup(pos);
3088 if (bss->time_zone == NULL)
a0b728b7 3089 return 1;
2049a875 3090#ifdef CONFIG_WNM
599f40db
JM
3091 } else if (os_strcmp(buf, "wnm_sleep_mode") == 0) {
3092 bss->wnm_sleep_mode = atoi(pos);
3093 } else if (os_strcmp(buf, "bss_transition") == 0) {
3094 bss->bss_transition = atoi(pos);
2049a875 3095#endif /* CONFIG_WNM */
b83e3e93 3096#ifdef CONFIG_INTERWORKING
599f40db
JM
3097 } else if (os_strcmp(buf, "interworking") == 0) {
3098 bss->interworking = atoi(pos);
3099 } else if (os_strcmp(buf, "access_network_type") == 0) {
3100 bss->access_network_type = atoi(pos);
3101 if (bss->access_network_type < 0 ||
3102 bss->access_network_type > 15) {
3103 wpa_printf(MSG_ERROR,
3104 "Line %d: invalid access_network_type",
3105 line);
a0b728b7 3106 return 1;
599f40db
JM
3107 }
3108 } else if (os_strcmp(buf, "internet") == 0) {
3109 bss->internet = atoi(pos);
3110 } else if (os_strcmp(buf, "asra") == 0) {
3111 bss->asra = atoi(pos);
3112 } else if (os_strcmp(buf, "esr") == 0) {
3113 bss->esr = atoi(pos);
3114 } else if (os_strcmp(buf, "uesa") == 0) {
3115 bss->uesa = atoi(pos);
3116 } else if (os_strcmp(buf, "venue_group") == 0) {
3117 bss->venue_group = atoi(pos);
3118 bss->venue_info_set = 1;
3119 } else if (os_strcmp(buf, "venue_type") == 0) {
3120 bss->venue_type = atoi(pos);
3121 bss->venue_info_set = 1;
3122 } else if (os_strcmp(buf, "hessid") == 0) {
3123 if (hwaddr_aton(pos, bss->hessid)) {
3124 wpa_printf(MSG_ERROR, "Line %d: invalid hessid", line);
a0b728b7 3125 return 1;
599f40db
JM
3126 }
3127 } else if (os_strcmp(buf, "roaming_consortium") == 0) {
3128 if (parse_roaming_consortium(bss, pos, line) < 0)
a0b728b7 3129 return 1;
599f40db
JM
3130 } else if (os_strcmp(buf, "venue_name") == 0) {
3131 if (parse_venue_name(bss, pos, line) < 0)
a0b728b7 3132 return 1;
599f40db
JM
3133 } else if (os_strcmp(buf, "network_auth_type") == 0) {
3134 u8 auth_type;
3135 u16 redirect_url_len;
3136 if (hexstr2bin(pos, &auth_type, 1)) {
3137 wpa_printf(MSG_ERROR,
3138 "Line %d: Invalid network_auth_type '%s'",
3139 line, pos);
a0b728b7 3140 return 1;
599f40db
JM
3141 }
3142 if (auth_type == 0 || auth_type == 2)
3143 redirect_url_len = os_strlen(pos + 2);
3144 else
3145 redirect_url_len = 0;
3146 os_free(bss->network_auth_type);
3147 bss->network_auth_type = os_malloc(redirect_url_len + 3 + 1);
a0b728b7
JM
3148 if (bss->network_auth_type == NULL)
3149 return 1;
599f40db
JM
3150 *bss->network_auth_type = auth_type;
3151 WPA_PUT_LE16(bss->network_auth_type + 1, redirect_url_len);
3152 if (redirect_url_len)
3153 os_memcpy(bss->network_auth_type + 3, pos + 2,
3154 redirect_url_len);
3155 bss->network_auth_type_len = 3 + redirect_url_len;
3156 } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
3157 if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1)) {
3158 wpa_printf(MSG_ERROR, "Line %d: Invalid ipaddr_type_availability '%s'",
3159 line, pos);
3160 bss->ipaddr_type_configured = 0;
a0b728b7 3161 return 1;
599f40db
JM
3162 }
3163 bss->ipaddr_type_configured = 1;
b4c26ef9 3164 } else if (os_strcmp(buf, "domain_name") == 0) {
599f40db
JM
3165 int j, num_domains, domain_len, domain_list_len = 0;
3166 char *tok_start, *tok_prev;
3167 u8 *domain_list, *domain_ptr;
26fac8b6 3168
599f40db
JM
3169 domain_list_len = os_strlen(pos) + 1;
3170 domain_list = os_malloc(domain_list_len);
a0b728b7
JM
3171 if (domain_list == NULL)
3172 return 1;
26fac8b6 3173
599f40db
JM
3174 domain_ptr = domain_list;
3175 tok_prev = pos;
3176 num_domains = 1;
3177 while ((tok_prev = os_strchr(tok_prev, ','))) {
3178 num_domains++;
3179 tok_prev++;
3180 }
3181 tok_prev = pos;
3182 for (j = 0; j < num_domains; j++) {
3183 tok_start = os_strchr(tok_prev, ',');
3184 if (tok_start) {
3185 domain_len = tok_start - tok_prev;
3186 *domain_ptr = domain_len;
3187 os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3188 domain_ptr += domain_len + 1;
3189 tok_prev = ++tok_start;
3190 } else {
3191 domain_len = os_strlen(tok_prev);
3192 *domain_ptr = domain_len;
3193 os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3194 domain_ptr += domain_len + 1;
26fac8b6 3195 }
599f40db 3196 }
26fac8b6 3197
599f40db
JM
3198 os_free(bss->domain_name);
3199 bss->domain_name = domain_list;
3200 bss->domain_name_len = domain_list_len;
3201 } else if (os_strcmp(buf, "anqp_3gpp_cell_net") == 0) {
3202 if (parse_3gpp_cell_net(bss, pos, line) < 0)
a0b728b7 3203 return 1;
599f40db
JM
3204 } else if (os_strcmp(buf, "nai_realm") == 0) {
3205 if (parse_nai_realm(bss, pos, line) < 0)
a0b728b7 3206 return 1;
695dbbea
JM
3207 } else if (os_strcmp(buf, "anqp_elem") == 0) {
3208 if (parse_anqp_elem(bss, pos, line) < 0)
3209 return 1;
599f40db
JM
3210 } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
3211 bss->gas_frag_limit = atoi(pos);
3212 } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
3213 bss->gas_comeback_delay = atoi(pos);
3214 } else if (os_strcmp(buf, "qos_map_set") == 0) {
3215 if (parse_qos_map_set(bss, pos, line) < 0)
a0b728b7 3216 return 1;
b83e3e93 3217#endif /* CONFIG_INTERWORKING */
505a3694 3218#ifdef CONFIG_RADIUS_TEST
599f40db
JM
3219 } else if (os_strcmp(buf, "dump_msk_file") == 0) {
3220 os_free(bss->dump_msk_file);
3221 bss->dump_msk_file = os_strdup(pos);
505a3694 3222#endif /* CONFIG_RADIUS_TEST */
7b991b47
MW
3223#ifdef CONFIG_PROXYARP
3224 } else if (os_strcmp(buf, "proxy_arp") == 0) {
3225 bss->proxy_arp = atoi(pos);
3226#endif /* CONFIG_PROXYARP */
159c89ab 3227#ifdef CONFIG_HS20
599f40db
JM
3228 } else if (os_strcmp(buf, "hs20") == 0) {
3229 bss->hs20 = atoi(pos);
3230 } else if (os_strcmp(buf, "disable_dgaf") == 0) {
3231 bss->disable_dgaf = atoi(pos);
4a7ce984
JM
3232 } else if (os_strcmp(buf, "na_mcast_to_ucast") == 0) {
3233 bss->na_mcast_to_ucast = atoi(pos);
599f40db
JM
3234 } else if (os_strcmp(buf, "osen") == 0) {
3235 bss->osen = atoi(pos);
3236 } else if (os_strcmp(buf, "anqp_domain_id") == 0) {
3237 bss->anqp_domain_id = atoi(pos);
3238 } else if (os_strcmp(buf, "hs20_deauth_req_timeout") == 0) {
3239 bss->hs20_deauth_req_timeout = atoi(pos);
3240 } else if (os_strcmp(buf, "hs20_oper_friendly_name") == 0) {
3241 if (hs20_parse_oper_friendly_name(bss, pos, line) < 0)
a0b728b7 3242 return 1;
599f40db 3243 } else if (os_strcmp(buf, "hs20_wan_metrics") == 0) {
a0b728b7
JM
3244 if (hs20_parse_wan_metrics(bss, pos, line) < 0)
3245 return 1;
599f40db
JM
3246 } else if (os_strcmp(buf, "hs20_conn_capab") == 0) {
3247 if (hs20_parse_conn_capab(bss, pos, line) < 0) {
a0b728b7 3248 return 1;
599f40db
JM
3249 }
3250 } else if (os_strcmp(buf, "hs20_operating_class") == 0) {
3251 u8 *oper_class;
3252 size_t oper_class_len;
3253 oper_class_len = os_strlen(pos);
3254 if (oper_class_len < 2 || (oper_class_len & 0x01)) {
3255 wpa_printf(MSG_ERROR,
3256 "Line %d: Invalid hs20_operating_class '%s'",
3257 line, pos);
a0b728b7 3258 return 1;
599f40db
JM
3259 }
3260 oper_class_len /= 2;
3261 oper_class = os_malloc(oper_class_len);
a0b728b7
JM
3262 if (oper_class == NULL)
3263 return 1;
599f40db
JM
3264 if (hexstr2bin(pos, oper_class, oper_class_len)) {
3265 wpa_printf(MSG_ERROR,
3266 "Line %d: Invalid hs20_operating_class '%s'",
3267 line, pos);
3268 os_free(oper_class);
a0b728b7 3269 return 1;
599f40db
JM
3270 }
3271 os_free(bss->hs20_operating_class);
3272 bss->hs20_operating_class = oper_class;
3273 bss->hs20_operating_class_len = oper_class_len;
3274 } else if (os_strcmp(buf, "hs20_icon") == 0) {
3275 if (hs20_parse_icon(bss, pos) < 0) {
3276 wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_icon '%s'",
3277 line, pos);
a0b728b7 3278 return 1;
599f40db
JM
3279 }
3280 } else if (os_strcmp(buf, "osu_ssid") == 0) {
3281 if (hs20_parse_osu_ssid(bss, pos, line) < 0)
a0b728b7 3282 return 1;
599f40db
JM
3283 } else if (os_strcmp(buf, "osu_server_uri") == 0) {
3284 if (hs20_parse_osu_server_uri(bss, pos, line) < 0)
a0b728b7 3285 return 1;
599f40db
JM
3286 } else if (os_strcmp(buf, "osu_friendly_name") == 0) {
3287 if (hs20_parse_osu_friendly_name(bss, pos, line) < 0)
a0b728b7 3288 return 1;
599f40db
JM
3289 } else if (os_strcmp(buf, "osu_nai") == 0) {
3290 if (hs20_parse_osu_nai(bss, pos, line) < 0)
a0b728b7 3291 return 1;
599f40db
JM
3292 } else if (os_strcmp(buf, "osu_method_list") == 0) {
3293 if (hs20_parse_osu_method_list(bss, pos, line) < 0)
a0b728b7 3294 return 1;
599f40db
JM
3295 } else if (os_strcmp(buf, "osu_icon") == 0) {
3296 if (hs20_parse_osu_icon(bss, pos, line) < 0)
a0b728b7 3297 return 1;
599f40db
JM
3298 } else if (os_strcmp(buf, "osu_service_desc") == 0) {
3299 if (hs20_parse_osu_service_desc(bss, pos, line) < 0)
a0b728b7 3300 return 1;
599f40db
JM
3301 } else if (os_strcmp(buf, "subscr_remediation_url") == 0) {
3302 os_free(bss->subscr_remediation_url);
3303 bss->subscr_remediation_url = os_strdup(pos);
3304 } else if (os_strcmp(buf, "subscr_remediation_method") == 0) {
3305 bss->subscr_remediation_method = atoi(pos);
159c89ab 3306#endif /* CONFIG_HS20 */
fb9a1c3e
AS
3307#ifdef CONFIG_MBO
3308 } else if (os_strcmp(buf, "mbo") == 0) {
3309 bss->mbo_enabled = atoi(pos);
3310#endif /* CONFIG_MBO */
c2aff6b1 3311#ifdef CONFIG_TESTING_OPTIONS
599f40db
JM
3312#define PARSE_TEST_PROBABILITY(_val) \
3313 } else if (os_strcmp(buf, #_val) == 0) { \
3314 char *end; \
3315 \
3316 conf->_val = strtod(pos, &end); \
06df2aa6
JM
3317 if (*end || conf->_val < 0.0 || \
3318 conf->_val > 1.0) { \
599f40db
JM
3319 wpa_printf(MSG_ERROR, \
3320 "Line %d: Invalid value '%s'", \
3321 line, pos); \
a0b728b7 3322 return 1; \
599f40db
JM
3323 }
3324 PARSE_TEST_PROBABILITY(ignore_probe_probability)
3325 PARSE_TEST_PROBABILITY(ignore_auth_probability)
3326 PARSE_TEST_PROBABILITY(ignore_assoc_probability)
3327 PARSE_TEST_PROBABILITY(ignore_reassoc_probability)
3328 PARSE_TEST_PROBABILITY(corrupt_gtk_rekey_mic_probability)
2b6e1216
JB
3329 } else if (os_strcmp(buf, "ecsa_ie_only") == 0) {
3330 conf->ecsa_ie_only = atoi(pos);
599f40db
JM
3331 } else if (os_strcmp(buf, "bss_load_test") == 0) {
3332 WPA_PUT_LE16(bss->bss_load_test, atoi(pos));
3333 pos = os_strchr(pos, ':');
3334 if (pos == NULL) {
3335 wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
3336 line);
3337 return 1;
3338 }
3339 pos++;
3340 bss->bss_load_test[2] = atoi(pos);
3341 pos = os_strchr(pos, ':');
3342 if (pos == NULL) {
3343 wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
3344 line);
3345 return 1;
3346 }
3347 pos++;
3348 WPA_PUT_LE16(&bss->bss_load_test[3], atoi(pos));
3349 bss->bss_load_test_set = 1;
0629eeb4 3350 } else if (os_strcmp(buf, "radio_measurements") == 0) {
01018212
DS
3351 /*
3352 * DEPRECATED: This parameter will be removed in the future.
3353 * Use rrm_neighbor_report instead.
3354 */
3355 int val = atoi(pos);
3356
3357 if (val & BIT(0))
3358 bss->radio_measurements[0] |=
3359 WLAN_RRM_CAPS_NEIGHBOR_REPORT;
bc02843e
JM
3360 } else if (os_strcmp(buf, "own_ie_override") == 0) {
3361 struct wpabuf *tmp;
3362 size_t len = os_strlen(pos) / 2;
3363
3364 tmp = wpabuf_alloc(len);
3365 if (!tmp)
3366 return 1;
3367
3368 if (hexstr2bin(pos, wpabuf_put(tmp, len), len)) {
3369 wpabuf_free(tmp);
3370 wpa_printf(MSG_ERROR,
3371 "Line %d: Invalid own_ie_override '%s'",
3372 line, pos);
3373 return 1;
3374 }
3375
3376 wpabuf_free(bss->own_ie_override);
3377 bss->own_ie_override = tmp;
c2aff6b1 3378#endif /* CONFIG_TESTING_OPTIONS */
599f40db 3379 } else if (os_strcmp(buf, "vendor_elements") == 0) {
4ac33989 3380 if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
599f40db 3381 return 1;
a9112270 3382 } else if (os_strcmp(buf, "assocresp_elements") == 0) {
4ac33989 3383 if (parse_wpabuf_hex(line, buf, &bss->assocresp_elements, pos))
a9112270 3384 return 1;
599f40db
JM
3385 } else if (os_strcmp(buf, "sae_anti_clogging_threshold") == 0) {
3386 bss->sae_anti_clogging_threshold = atoi(pos);
3387 } else if (os_strcmp(buf, "sae_groups") == 0) {
3388 if (hostapd_parse_intlist(&bss->sae_groups, pos)) {
3389 wpa_printf(MSG_ERROR,
3390 "Line %d: Invalid sae_groups value '%s'",
3391 line, pos);
3392 return 1;
41d719d6 3393 }
599f40db
JM
3394 } else if (os_strcmp(buf, "local_pwr_constraint") == 0) {
3395 int val = atoi(pos);
3396 if (val < 0 || val > 255) {
3397 wpa_printf(MSG_ERROR, "Line %d: Invalid local_pwr_constraint %d (expected 0..255)",
3398 line, val);
3399 return 1;
3400 }
3401 conf->local_pwr_constraint = val;
3402 } else if (os_strcmp(buf, "spectrum_mgmt_required") == 0) {
3403 conf->spectrum_mgmt_required = atoi(pos);
88cb27c7
DS
3404 } else if (os_strcmp(buf, "wowlan_triggers") == 0) {
3405 os_free(bss->wowlan_triggers);
3406 bss->wowlan_triggers = os_strdup(pos);
104bef45
AN
3407#ifdef CONFIG_FST
3408 } else if (os_strcmp(buf, "fst_group_id") == 0) {
3409 size_t len = os_strlen(pos);
3410
3411 if (!len || len >= sizeof(conf->fst_cfg.group_id)) {
3412 wpa_printf(MSG_ERROR,
3413 "Line %d: Invalid fst_group_id value '%s'",
3414 line, pos);
3415 return 1;
3416 }
3417
3418 if (conf->fst_cfg.group_id[0]) {
3419 wpa_printf(MSG_ERROR,
3420 "Line %d: Duplicate fst_group value '%s'",
3421 line, pos);
3422 return 1;
3423 }
3424
3425 os_strlcpy(conf->fst_cfg.group_id, pos,
3426 sizeof(conf->fst_cfg.group_id));
3427 } else if (os_strcmp(buf, "fst_priority") == 0) {
3428 char *endp;
3429 long int val;
3430
3431 if (!*pos) {
3432 wpa_printf(MSG_ERROR,
3433 "Line %d: fst_priority value not supplied (expected 1..%u)",
3434 line, FST_MAX_PRIO_VALUE);
3435 return -1;
3436 }
3437
3438 val = strtol(pos, &endp, 0);
3439 if (*endp || val < 1 || val > FST_MAX_PRIO_VALUE) {
3440 wpa_printf(MSG_ERROR,
3441 "Line %d: Invalid fst_priority %ld (%s) (expected 1..%u)",
3442 line, val, pos, FST_MAX_PRIO_VALUE);
3443 return 1;
3444 }
3445 conf->fst_cfg.priority = (u8) val;
3446 } else if (os_strcmp(buf, "fst_llt") == 0) {
3447 char *endp;
3448 long int val;
3449
3450 if (!*pos) {
3451 wpa_printf(MSG_ERROR,
3452 "Line %d: fst_llt value not supplied (expected 1..%u)",
3453 line, FST_MAX_LLT_MS);
3454 return -1;
3455 }
3456 val = strtol(pos, &endp, 0);
24bce46e
JM
3457 if (*endp || val < 1 ||
3458 (unsigned long int) val > FST_MAX_LLT_MS) {
104bef45
AN
3459 wpa_printf(MSG_ERROR,
3460 "Line %d: Invalid fst_llt %ld (%s) (expected 1..%u)",
3461 line, val, pos, FST_MAX_LLT_MS);
3462 return 1;
3463 }
3464 conf->fst_cfg.llt = (u32) val;
3465#endif /* CONFIG_FST */
a65a9b8d
JM
3466 } else if (os_strcmp(buf, "track_sta_max_num") == 0) {
3467 conf->track_sta_max_num = atoi(pos);
3468 } else if (os_strcmp(buf, "track_sta_max_age") == 0) {
3469 conf->track_sta_max_age = atoi(pos);
964f64e2
JM
3470 } else if (os_strcmp(buf, "no_probe_resp_if_seen_on") == 0) {
3471 os_free(bss->no_probe_resp_if_seen_on);
3472 bss->no_probe_resp_if_seen_on = os_strdup(pos);
0e2412d0
JM
3473 } else if (os_strcmp(buf, "no_auth_if_seen_on") == 0) {
3474 os_free(bss->no_auth_if_seen_on);
3475 bss->no_auth_if_seen_on = os_strdup(pos);
74e982d8
DS
3476 } else if (os_strcmp(buf, "lci") == 0) {
3477 wpabuf_free(conf->lci);
9d955f75 3478 conf->lci = wpabuf_parse_bin(pos);
74e982d8
DS
3479 } else if (os_strcmp(buf, "civic") == 0) {
3480 wpabuf_free(conf->civic);
9d955f75 3481 conf->civic = wpabuf_parse_bin(pos);
01018212
DS
3482 } else if (os_strcmp(buf, "rrm_neighbor_report") == 0) {
3483 if (atoi(pos))
3484 bss->radio_measurements[0] |=
3485 WLAN_RRM_CAPS_NEIGHBOR_REPORT;
83594725
JM
3486 } else if (os_strcmp(buf, "gas_address3") == 0) {
3487 bss->gas_address3 = atoi(pos);
599f40db
JM
3488 } else {
3489 wpa_printf(MSG_ERROR,
3490 "Line %d: unknown configuration item '%s'",
3491 line, buf);
a0b728b7 3492 return 1;
41d719d6
JM
3493 }
3494
a0b728b7 3495 return 0;
ef45bc89
SP
3496}
3497
3498
3499/**
3500 * hostapd_config_read - Read and parse a configuration file
3501 * @fname: Configuration file name (including path, if needed)
3502 * Returns: Allocated configuration data structure
3503 */
3504struct hostapd_config * hostapd_config_read(const char *fname)
3505{
3506 struct hostapd_config *conf;
ef45bc89 3507 FILE *f;
ef50e410 3508 char buf[4096], *pos;
ef45bc89
SP
3509 int line = 0;
3510 int errors = 0;
ef45bc89
SP
3511 size_t i;
3512
3513 f = fopen(fname, "r");
3514 if (f == NULL) {
3515 wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
3516 "for reading.", fname);
3517 return NULL;
3518 }
3519
3520 conf = hostapd_config_defaults();
3521 if (conf == NULL) {
3522 fclose(f);
3523 return NULL;
3524 }
3525
3526 /* set default driver based on configuration */
3527 conf->driver = wpa_drivers[0];
3528 if (conf->driver == NULL) {
3529 wpa_printf(MSG_ERROR, "No driver wrappers registered!");
3530 hostapd_config_free(conf);
3531 fclose(f);
3532 return NULL;
3533 }
3534
df756b37 3535 conf->last_bss = conf->bss[0];
ef45bc89
SP
3536
3537 while (fgets(buf, sizeof(buf), f)) {
df756b37
JM
3538 struct hostapd_bss_config *bss;
3539
ef45bc89
SP
3540 bss = conf->last_bss;
3541 line++;
3542
3543 if (buf[0] == '#')
3544 continue;
3545 pos = buf;
3546 while (*pos != '\0') {
3547 if (*pos == '\n') {
3548 *pos = '\0';
3549 break;
3550 }
3551 pos++;
3552 }
3553 if (buf[0] == '\0')
3554 continue;
3555
3556 pos = os_strchr(buf, '=');
3557 if (pos == NULL) {
3558 wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
3559 line, buf);
3560 errors++;
3561 continue;
3562 }
3563 *pos = '\0';
3564 pos++;
3565 errors += hostapd_config_fill(conf, bss, buf, pos, line);
3566 }
3567
41d719d6
JM
3568 fclose(f);
3569
a7f5b74d 3570 for (i = 0; i < conf->num_bss; i++)
5d67bf15 3571 hostapd_set_security_params(conf->bss[i], 1);
41d719d6 3572
08081ad8 3573 if (hostapd_config_check(conf, 1))
41d719d6
JM
3574 errors++;
3575
ae6e1bee 3576#ifndef WPA_IGNORE_CONFIG_ERRORS
41d719d6
JM
3577 if (errors) {
3578 wpa_printf(MSG_ERROR, "%d errors found in configuration file "
3579 "'%s'", errors, fname);
3580 hostapd_config_free(conf);
3581 conf = NULL;
3582 }
ae6e1bee 3583#endif /* WPA_IGNORE_CONFIG_ERRORS */
41d719d6
JM
3584
3585 return conf;
3586}
31b79e11
SP
3587
3588
3589int hostapd_set_iface(struct hostapd_config *conf,
63e169e1
JM
3590 struct hostapd_bss_config *bss, const char *field,
3591 char *value)
31b79e11 3592{
4929898d 3593 int errors;
31b79e11
SP
3594 size_t i;
3595
3596 errors = hostapd_config_fill(conf, bss, field, value, 0);
3597 if (errors) {
3598 wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
3599 "to value '%s'", field, value);
3600 return -1;
3601 }
3602
3603 for (i = 0; i < conf->num_bss; i++)
5d67bf15 3604 hostapd_set_security_params(conf->bss[i], 0);
31b79e11 3605
08081ad8 3606 if (hostapd_config_check(conf, 0)) {
31b79e11 3607 wpa_printf(MSG_ERROR, "Configuration check failed");
17706d1c 3608 return -1;
31b79e11
SP
3609 }
3610
3611 return 0;
3612}