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