blob: e2a470c5ba4e4ec18455398c692bf32543e77b07 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Configuration file parser
Dmitry Shmidt807291d2015-01-27 13:40:23 -08003 * Copyright (c) 2003-2015, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10#ifndef CONFIG_NATIVE_WINDOWS
11#include <grp.h>
12#endif /* CONFIG_NATIVE_WINDOWS */
13
14#include "utils/common.h"
15#include "utils/uuid.h"
16#include "common/ieee802_11_defs.h"
Dmitry Shmidtd2986c22017-10-23 14:22:09 -070017#include "crypto/sha256.h"
18#include "crypto/tls.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070019#include "drivers/driver.h"
20#include "eap_server/eap.h"
21#include "radius/radius_client.h"
22#include "ap/wpa_auth.h"
23#include "ap/ap_config.h"
24#include "config_file.h"
25
26
Dmitry Shmidt818ea482014-03-10 13:15:21 -070027#ifndef CONFIG_NO_RADIUS
28#ifdef EAP_SERVER
29static struct hostapd_radius_attr *
30hostapd_parse_radius_attr(const char *value);
31#endif /* EAP_SERVER */
32#endif /* CONFIG_NO_RADIUS */
33
34
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070035#ifndef CONFIG_NO_VLAN
36static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
37 const char *fname)
38{
39 FILE *f;
40 char buf[128], *pos, *pos2;
41 int line = 0, vlan_id;
42 struct hostapd_vlan *vlan;
43
44 f = fopen(fname, "r");
45 if (!f) {
46 wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
47 return -1;
48 }
49
50 while (fgets(buf, sizeof(buf), f)) {
51 line++;
52
53 if (buf[0] == '#')
54 continue;
55 pos = buf;
56 while (*pos != '\0') {
57 if (*pos == '\n') {
58 *pos = '\0';
59 break;
60 }
61 pos++;
62 }
63 if (buf[0] == '\0')
64 continue;
65
66 if (buf[0] == '*') {
67 vlan_id = VLAN_ID_WILDCARD;
68 pos = buf + 1;
69 } else {
70 vlan_id = strtol(buf, &pos, 10);
71 if (buf == pos || vlan_id < 1 ||
72 vlan_id > MAX_VLAN_ID) {
73 wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
74 "line %d in '%s'", line, fname);
75 fclose(f);
76 return -1;
77 }
78 }
79
80 while (*pos == ' ' || *pos == '\t')
81 pos++;
82 pos2 = pos;
83 while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
84 pos2++;
85 *pos2 = '\0';
86 if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
87 wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
88 "in '%s'", line, fname);
89 fclose(f);
90 return -1;
91 }
92
Dmitry Shmidt4b060592013-04-29 16:42:49 -070093 vlan = os_zalloc(sizeof(*vlan));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070094 if (vlan == NULL) {
95 wpa_printf(MSG_ERROR, "Out of memory while reading "
96 "VLAN interfaces from '%s'", fname);
97 fclose(f);
98 return -1;
99 }
100
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101 vlan->vlan_id = vlan_id;
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800102 vlan->vlan_desc.untagged = vlan_id;
103 vlan->vlan_desc.notempty = !!vlan_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700104 os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700105 vlan->next = bss->vlan;
106 bss->vlan = vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700107 }
108
109 fclose(f);
110
111 return 0;
112}
113#endif /* CONFIG_NO_VLAN */
114
115
116static int hostapd_acl_comp(const void *a, const void *b)
117{
118 const struct mac_acl_entry *aa = a;
119 const struct mac_acl_entry *bb = b;
120 return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
121}
122
123
124static int hostapd_config_read_maclist(const char *fname,
125 struct mac_acl_entry **acl, int *num)
126{
127 FILE *f;
128 char buf[128], *pos;
129 int line = 0;
130 u8 addr[ETH_ALEN];
131 struct mac_acl_entry *newacl;
132 int vlan_id;
133
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700134 f = fopen(fname, "r");
135 if (!f) {
136 wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
137 return -1;
138 }
139
140 while (fgets(buf, sizeof(buf), f)) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800141 int i, rem = 0;
142
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700143 line++;
144
145 if (buf[0] == '#')
146 continue;
147 pos = buf;
148 while (*pos != '\0') {
149 if (*pos == '\n') {
150 *pos = '\0';
151 break;
152 }
153 pos++;
154 }
155 if (buf[0] == '\0')
156 continue;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800157 pos = buf;
158 if (buf[0] == '-') {
159 rem = 1;
160 pos++;
161 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700162
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800163 if (hwaddr_aton(pos, addr)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700164 wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800165 "line %d in '%s'", pos, line, fname);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700166 fclose(f);
167 return -1;
168 }
169
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800170 if (rem) {
171 i = 0;
172 while (i < *num) {
173 if (os_memcmp((*acl)[i].addr, addr, ETH_ALEN) ==
174 0) {
175 os_remove_in_array(*acl, *num,
176 sizeof(**acl), i);
177 (*num)--;
178 } else
179 i++;
180 }
181 continue;
182 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700183 vlan_id = 0;
184 pos = buf;
185 while (*pos != '\0' && *pos != ' ' && *pos != '\t')
186 pos++;
187 while (*pos == ' ' || *pos == '\t')
188 pos++;
189 if (*pos != '\0')
190 vlan_id = atoi(pos);
191
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700192 newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700193 if (newacl == NULL) {
194 wpa_printf(MSG_ERROR, "MAC list reallocation failed");
195 fclose(f);
196 return -1;
197 }
198
199 *acl = newacl;
200 os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -0800201 os_memset(&(*acl)[*num].vlan_id, 0,
202 sizeof((*acl)[*num].vlan_id));
203 (*acl)[*num].vlan_id.untagged = vlan_id;
204 (*acl)[*num].vlan_id.notempty = !!vlan_id;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700205 (*num)++;
206 }
207
208 fclose(f);
209
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800210 if (*acl)
211 qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700212
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;
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800224 struct hostapd_eap_user *user = NULL, *tail = NULL, *new_user = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700225
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800226 if (os_strncmp(fname, "sqlite:", 7) == 0) {
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700227#ifdef CONFIG_SQLITE
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800228 os_free(conf->eap_user_sqlite);
229 conf->eap_user_sqlite = os_strdup(fname + 7);
230 return 0;
Dmitry Shmidt912c6ec2015-03-30 13:16:51 -0700231#else /* CONFIG_SQLITE */
232 wpa_printf(MSG_ERROR,
233 "EAP user file in SQLite DB, but CONFIG_SQLITE was not enabled in the build.");
234 return -1;
235#endif /* CONFIG_SQLITE */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800236 }
237
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700238 f = fopen(fname, "r");
239 if (!f) {
240 wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
241 return -1;
242 }
243
244 /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
245 while (fgets(buf, sizeof(buf), f)) {
246 line++;
247
248 if (buf[0] == '#')
249 continue;
250 pos = buf;
251 while (*pos != '\0') {
252 if (*pos == '\n') {
253 *pos = '\0';
254 break;
255 }
256 pos++;
257 }
258 if (buf[0] == '\0')
259 continue;
260
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700261#ifndef CONFIG_NO_RADIUS
262 if (user && os_strncmp(buf, "radius_accept_attr=", 19) == 0) {
263 struct hostapd_radius_attr *attr, *a;
264 attr = hostapd_parse_radius_attr(buf + 19);
265 if (attr == NULL) {
266 wpa_printf(MSG_ERROR, "Invalid radius_auth_req_attr: %s",
267 buf + 19);
Dmitry Shmidt98660862014-03-11 17:26:21 -0700268 user = NULL; /* already in the BSS list */
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700269 goto failed;
270 }
271 if (user->accept_attr == NULL) {
272 user->accept_attr = attr;
273 } else {
274 a = user->accept_attr;
275 while (a->next)
276 a = a->next;
277 a->next = attr;
278 }
279 continue;
280 }
281#endif /* CONFIG_NO_RADIUS */
282
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700283 user = NULL;
284
285 if (buf[0] != '"' && buf[0] != '*') {
286 wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
287 "start) on line %d in '%s'", line, fname);
288 goto failed;
289 }
290
291 user = os_zalloc(sizeof(*user));
292 if (user == NULL) {
293 wpa_printf(MSG_ERROR, "EAP user allocation failed");
294 goto failed;
295 }
296 user->force_version = -1;
297
298 if (buf[0] == '*') {
299 pos = buf;
300 } else {
301 pos = buf + 1;
302 start = pos;
303 while (*pos != '"' && *pos != '\0')
304 pos++;
305 if (*pos == '\0') {
306 wpa_printf(MSG_ERROR, "Invalid EAP identity "
307 "(no \" in end) on line %d in '%s'",
308 line, fname);
309 goto failed;
310 }
311
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700312 user->identity = os_memdup(start, pos - start);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700313 if (user->identity == NULL) {
314 wpa_printf(MSG_ERROR, "Failed to allocate "
315 "memory for EAP identity");
316 goto failed;
317 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700318 user->identity_len = pos - start;
319
320 if (pos[0] == '"' && pos[1] == '*') {
321 user->wildcard_prefix = 1;
322 pos++;
323 }
324 }
325 pos++;
326 while (*pos == ' ' || *pos == '\t')
327 pos++;
328
329 if (*pos == '\0') {
330 wpa_printf(MSG_ERROR, "No EAP method on line %d in "
331 "'%s'", line, fname);
332 goto failed;
333 }
334
335 start = pos;
336 while (*pos != ' ' && *pos != '\t' && *pos != '\0')
337 pos++;
338 if (*pos == '\0') {
339 pos = NULL;
340 } else {
341 *pos = '\0';
342 pos++;
343 }
344 num_methods = 0;
345 while (*start) {
346 char *pos3 = os_strchr(start, ',');
347 if (pos3) {
348 *pos3++ = '\0';
349 }
350 user->methods[num_methods].method =
351 eap_server_get_type(
352 start,
353 &user->methods[num_methods].vendor);
354 if (user->methods[num_methods].vendor ==
355 EAP_VENDOR_IETF &&
356 user->methods[num_methods].method == EAP_TYPE_NONE)
357 {
358 if (os_strcmp(start, "TTLS-PAP") == 0) {
359 user->ttls_auth |= EAP_TTLS_AUTH_PAP;
360 goto skip_eap;
361 }
362 if (os_strcmp(start, "TTLS-CHAP") == 0) {
363 user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
364 goto skip_eap;
365 }
366 if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
367 user->ttls_auth |=
368 EAP_TTLS_AUTH_MSCHAP;
369 goto skip_eap;
370 }
371 if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
372 user->ttls_auth |=
373 EAP_TTLS_AUTH_MSCHAPV2;
374 goto skip_eap;
375 }
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700376 if (os_strcmp(start, "MACACL") == 0) {
377 user->macacl = 1;
378 goto skip_eap;
379 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700380 wpa_printf(MSG_ERROR, "Unsupported EAP type "
381 "'%s' on line %d in '%s'",
382 start, line, fname);
383 goto failed;
384 }
385
386 num_methods++;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800387 if (num_methods >= EAP_MAX_METHODS)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388 break;
389 skip_eap:
390 if (pos3 == NULL)
391 break;
392 start = pos3;
393 }
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700394 if (num_methods == 0 && user->ttls_auth == 0 && !user->macacl) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700395 wpa_printf(MSG_ERROR, "No EAP types configured on "
396 "line %d in '%s'", line, fname);
397 goto failed;
398 }
399
400 if (pos == NULL)
401 goto done;
402
403 while (*pos == ' ' || *pos == '\t')
404 pos++;
405 if (*pos == '\0')
406 goto done;
407
408 if (os_strncmp(pos, "[ver=0]", 7) == 0) {
409 user->force_version = 0;
410 goto done;
411 }
412
413 if (os_strncmp(pos, "[ver=1]", 7) == 0) {
414 user->force_version = 1;
415 goto done;
416 }
417
418 if (os_strncmp(pos, "[2]", 3) == 0) {
419 user->phase2 = 1;
420 goto done;
421 }
422
423 if (*pos == '"') {
424 pos++;
425 start = pos;
426 while (*pos != '"' && *pos != '\0')
427 pos++;
428 if (*pos == '\0') {
429 wpa_printf(MSG_ERROR, "Invalid EAP password "
430 "(no \" in end) on line %d in '%s'",
431 line, fname);
432 goto failed;
433 }
434
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700435 user->password = os_memdup(start, pos - start);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700436 if (user->password == NULL) {
437 wpa_printf(MSG_ERROR, "Failed to allocate "
438 "memory for EAP password");
439 goto failed;
440 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700441 user->password_len = pos - start;
442
443 pos++;
444 } else if (os_strncmp(pos, "hash:", 5) == 0) {
445 pos += 5;
446 pos2 = pos;
447 while (*pos2 != '\0' && *pos2 != ' ' &&
448 *pos2 != '\t' && *pos2 != '#')
449 pos2++;
450 if (pos2 - pos != 32) {
451 wpa_printf(MSG_ERROR, "Invalid password hash "
452 "on line %d in '%s'", line, fname);
453 goto failed;
454 }
455 user->password = os_malloc(16);
456 if (user->password == NULL) {
457 wpa_printf(MSG_ERROR, "Failed to allocate "
458 "memory for EAP password hash");
459 goto failed;
460 }
461 if (hexstr2bin(pos, user->password, 16) < 0) {
462 wpa_printf(MSG_ERROR, "Invalid hash password "
463 "on line %d in '%s'", line, fname);
464 goto failed;
465 }
466 user->password_len = 16;
467 user->password_hash = 1;
468 pos = pos2;
469 } else {
470 pos2 = pos;
471 while (*pos2 != '\0' && *pos2 != ' ' &&
472 *pos2 != '\t' && *pos2 != '#')
473 pos2++;
474 if ((pos2 - pos) & 1) {
475 wpa_printf(MSG_ERROR, "Invalid hex password "
476 "on line %d in '%s'", line, fname);
477 goto failed;
478 }
479 user->password = os_malloc((pos2 - pos) / 2);
480 if (user->password == NULL) {
481 wpa_printf(MSG_ERROR, "Failed to allocate "
482 "memory for EAP password");
483 goto failed;
484 }
485 if (hexstr2bin(pos, user->password,
486 (pos2 - pos) / 2) < 0) {
487 wpa_printf(MSG_ERROR, "Invalid hex password "
488 "on line %d in '%s'", line, fname);
489 goto failed;
490 }
491 user->password_len = (pos2 - pos) / 2;
492 pos = pos2;
493 }
494
495 while (*pos == ' ' || *pos == '\t')
496 pos++;
497 if (os_strncmp(pos, "[2]", 3) == 0) {
498 user->phase2 = 1;
499 }
500
501 done:
502 if (tail == NULL) {
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800503 tail = new_user = user;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700504 } else {
505 tail->next = user;
506 tail = user;
507 }
508 continue;
509
510 failed:
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700511 if (user)
512 hostapd_config_free_eap_user(user);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700513 ret = -1;
514 break;
515 }
516
517 fclose(f);
518
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800519 if (ret == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -0800520 hostapd_config_free_eap_users(conf->eap_user);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800521 conf->eap_user = new_user;
Dmitry Shmidt29333592017-01-09 12:27:11 -0800522 } else {
523 hostapd_config_free_eap_users(new_user);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800524 }
525
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700526 return ret;
527}
528#endif /* EAP_SERVER */
529
530
531#ifndef CONFIG_NO_RADIUS
532static int
533hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
534 int *num_server, const char *val, int def_port,
535 struct hostapd_radius_server **curr_serv)
536{
537 struct hostapd_radius_server *nserv;
538 int ret;
539 static int server_index = 1;
540
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700541 nserv = os_realloc_array(*server, *num_server + 1, sizeof(*nserv));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700542 if (nserv == NULL)
543 return -1;
544
545 *server = nserv;
546 nserv = &nserv[*num_server];
547 (*num_server)++;
548 (*curr_serv) = nserv;
549
550 os_memset(nserv, 0, sizeof(*nserv));
551 nserv->port = def_port;
552 ret = hostapd_parse_ip_addr(val, &nserv->addr);
553 nserv->index = server_index++;
554
555 return ret;
556}
Dmitry Shmidt04949592012-07-19 12:16:46 -0700557
558
559static struct hostapd_radius_attr *
560hostapd_parse_radius_attr(const char *value)
561{
562 const char *pos;
563 char syntax;
564 struct hostapd_radius_attr *attr;
565 size_t len;
566
567 attr = os_zalloc(sizeof(*attr));
568 if (attr == NULL)
569 return NULL;
570
571 attr->type = atoi(value);
572
573 pos = os_strchr(value, ':');
574 if (pos == NULL) {
575 attr->val = wpabuf_alloc(1);
576 if (attr->val == NULL) {
577 os_free(attr);
578 return NULL;
579 }
580 wpabuf_put_u8(attr->val, 0);
581 return attr;
582 }
583
584 pos++;
585 if (pos[0] == '\0' || pos[1] != ':') {
586 os_free(attr);
587 return NULL;
588 }
589 syntax = *pos++;
590 pos++;
591
592 switch (syntax) {
593 case 's':
594 attr->val = wpabuf_alloc_copy(pos, os_strlen(pos));
595 break;
596 case 'x':
597 len = os_strlen(pos);
598 if (len & 1)
599 break;
600 len /= 2;
601 attr->val = wpabuf_alloc(len);
602 if (attr->val == NULL)
603 break;
604 if (hexstr2bin(pos, wpabuf_put(attr->val, len), len) < 0) {
605 wpabuf_free(attr->val);
606 os_free(attr);
607 return NULL;
608 }
609 break;
610 case 'd':
611 attr->val = wpabuf_alloc(4);
612 if (attr->val)
613 wpabuf_put_be32(attr->val, atoi(pos));
614 break;
615 default:
616 os_free(attr);
617 return NULL;
618 }
619
620 if (attr->val == NULL) {
621 os_free(attr);
622 return NULL;
623 }
624
625 return attr;
626}
627
628
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700629static int hostapd_parse_das_client(struct hostapd_bss_config *bss, char *val)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700630{
631 char *secret;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700632
633 secret = os_strchr(val, ' ');
634 if (secret == NULL)
635 return -1;
636
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -0700637 *secret++ = '\0';
Dmitry Shmidt04949592012-07-19 12:16:46 -0700638
639 if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
640 return -1;
641
642 os_free(bss->radius_das_shared_secret);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700643 bss->radius_das_shared_secret = (u8 *) os_strdup(secret);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700644 if (bss->radius_das_shared_secret == NULL)
645 return -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700646 bss->radius_das_shared_secret_len = os_strlen(secret);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700647
648 return 0;
649}
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700650#endif /* CONFIG_NO_RADIUS */
651
652
653static int hostapd_config_parse_key_mgmt(int line, const char *value)
654{
655 int val = 0, last;
656 char *start, *end, *buf;
657
658 buf = os_strdup(value);
659 if (buf == NULL)
660 return -1;
661 start = buf;
662
663 while (*start != '\0') {
664 while (*start == ' ' || *start == '\t')
665 start++;
666 if (*start == '\0')
667 break;
668 end = start;
669 while (*end != ' ' && *end != '\t' && *end != '\0')
670 end++;
671 last = *end == '\0';
672 *end = '\0';
673 if (os_strcmp(start, "WPA-PSK") == 0)
674 val |= WPA_KEY_MGMT_PSK;
675 else if (os_strcmp(start, "WPA-EAP") == 0)
676 val |= WPA_KEY_MGMT_IEEE8021X;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800677#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700678 else if (os_strcmp(start, "FT-PSK") == 0)
679 val |= WPA_KEY_MGMT_FT_PSK;
680 else if (os_strcmp(start, "FT-EAP") == 0)
681 val |= WPA_KEY_MGMT_FT_IEEE8021X;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800682#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700683#ifdef CONFIG_IEEE80211W
684 else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
685 val |= WPA_KEY_MGMT_PSK_SHA256;
686 else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
687 val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
688#endif /* CONFIG_IEEE80211W */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800689#ifdef CONFIG_SAE
690 else if (os_strcmp(start, "SAE") == 0)
691 val |= WPA_KEY_MGMT_SAE;
692 else if (os_strcmp(start, "FT-SAE") == 0)
693 val |= WPA_KEY_MGMT_FT_SAE;
694#endif /* CONFIG_SAE */
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800695#ifdef CONFIG_SUITEB
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800696 else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
697 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
Dmitry Shmidt807291d2015-01-27 13:40:23 -0800698#endif /* CONFIG_SUITEB */
699#ifdef CONFIG_SUITEB192
700 else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
701 val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
702#endif /* CONFIG_SUITEB192 */
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800703#ifdef CONFIG_FILS
704 else if (os_strcmp(start, "FILS-SHA256") == 0)
705 val |= WPA_KEY_MGMT_FILS_SHA256;
706 else if (os_strcmp(start, "FILS-SHA384") == 0)
707 val |= WPA_KEY_MGMT_FILS_SHA384;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800708#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800709 else if (os_strcmp(start, "FT-FILS-SHA256") == 0)
710 val |= WPA_KEY_MGMT_FT_FILS_SHA256;
711 else if (os_strcmp(start, "FT-FILS-SHA384") == 0)
712 val |= WPA_KEY_MGMT_FT_FILS_SHA384;
Dmitry Shmidtabb90a32016-12-05 15:34:39 -0800713#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -0800714#endif /* CONFIG_FILS */
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700715#ifdef CONFIG_OWE
716 else if (os_strcmp(start, "OWE") == 0)
717 val |= WPA_KEY_MGMT_OWE;
718#endif /* CONFIG_OWE */
719#ifdef CONFIG_DPP
720 else if (os_strcmp(start, "DPP") == 0)
721 val |= WPA_KEY_MGMT_DPP;
722#endif /* CONFIG_DPP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700723 else {
724 wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
725 line, start);
726 os_free(buf);
727 return -1;
728 }
729
730 if (last)
731 break;
732 start = end + 1;
733 }
734
735 os_free(buf);
736 if (val == 0) {
737 wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
738 "configured.", line);
739 return -1;
740 }
741
742 return val;
743}
744
745
746static int hostapd_config_parse_cipher(int line, const char *value)
747{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800748 int val = wpa_parse_cipher(value);
749 if (val < 0) {
750 wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
751 line, value);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700752 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700753 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700754 if (val == 0) {
755 wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
756 line);
757 return -1;
758 }
759 return val;
760}
761
762
763static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
764 char *val)
765{
766 size_t len = os_strlen(val);
767
Dmitry Shmidt29333592017-01-09 12:27:11 -0800768 if (keyidx < 0 || keyidx > 3)
769 return -1;
770
771 if (len == 0) {
772 int i, set = 0;
773
774 bin_clear_free(wep->key[keyidx], wep->len[keyidx]);
775 wep->key[keyidx] = NULL;
776 wep->len[keyidx] = 0;
777 for (i = 0; i < NUM_WEP_KEYS; i++) {
778 if (wep->key[i])
779 set++;
780 }
781 if (!set)
782 wep->keys_set = 0;
783 return 0;
784 }
785
786 if (wep->key[keyidx] != NULL)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700787 return -1;
788
789 if (val[0] == '"') {
790 if (len < 2 || val[len - 1] != '"')
791 return -1;
792 len -= 2;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -0700793 wep->key[keyidx] = os_memdup(val + 1, len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700794 if (wep->key[keyidx] == NULL)
795 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700796 wep->len[keyidx] = len;
797 } else {
798 if (len & 1)
799 return -1;
800 len /= 2;
801 wep->key[keyidx] = os_malloc(len);
802 if (wep->key[keyidx] == NULL)
803 return -1;
804 wep->len[keyidx] = len;
805 if (hexstr2bin(val, wep->key[keyidx], len) < 0)
806 return -1;
807 }
808
809 wep->keys_set++;
810
811 return 0;
812}
813
814
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700815static int hostapd_parse_chanlist(struct hostapd_config *conf, char *val)
816{
817 char *pos;
818
819 /* for backwards compatibility, translate ' ' in conf str to ',' */
820 pos = val;
821 while (pos) {
822 pos = os_strchr(pos, ' ');
823 if (pos)
824 *pos++ = ',';
825 }
826 if (freq_range_list_parse(&conf->acs_ch_list, val))
827 return -1;
828
829 return 0;
830}
831
832
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700833static int hostapd_parse_intlist(int **int_list, char *val)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700834{
835 int *list;
836 int count;
837 char *pos, *end;
838
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700839 os_free(*int_list);
840 *int_list = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700841
842 pos = val;
843 count = 0;
844 while (*pos != '\0') {
845 if (*pos == ' ')
846 count++;
847 pos++;
848 }
849
850 list = os_malloc(sizeof(int) * (count + 2));
851 if (list == NULL)
852 return -1;
853 pos = val;
854 count = 0;
855 while (*pos != '\0') {
856 end = os_strchr(pos, ' ');
857 if (end)
858 *end = '\0';
859
860 list[count++] = atoi(pos);
861 if (!end)
862 break;
863 pos = end + 1;
864 }
865 list[count] = -1;
866
Dmitry Shmidtea69e842013-05-13 14:52:28 -0700867 *int_list = list;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700868 return 0;
869}
870
871
872static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
873{
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800874 struct hostapd_bss_config **all, *bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700875
876 if (*ifname == '\0')
877 return -1;
878
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800879 all = os_realloc_array(conf->bss, conf->num_bss + 1,
880 sizeof(struct hostapd_bss_config *));
881 if (all == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700882 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
883 "multi-BSS entry");
884 return -1;
885 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800886 conf->bss = all;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700887
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800888 bss = os_zalloc(sizeof(*bss));
889 if (bss == NULL)
890 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700891 bss->radius = os_zalloc(sizeof(*bss->radius));
892 if (bss->radius == NULL) {
893 wpa_printf(MSG_ERROR, "Failed to allocate memory for "
894 "multi-BSS RADIUS data");
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800895 os_free(bss);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700896 return -1;
897 }
898
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800899 conf->bss[conf->num_bss++] = bss;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700900 conf->last_bss = bss;
901
902 hostapd_config_defaults_bss(bss);
903 os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
904 os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
905
906 return 0;
907}
908
909
910/* convert floats with one decimal place to value*10 int, i.e.,
911 * "1.5" will return 15 */
912static int hostapd_config_read_int10(const char *value)
913{
914 int i, d;
915 char *pos;
916
917 i = atoi(value);
918 pos = os_strchr(value, '.');
919 d = 0;
920 if (pos) {
921 pos++;
922 if (*pos >= '0' && *pos <= '9')
923 d = *pos - '0';
924 }
925
926 return i * 10 + d;
927}
928
929
930static int valid_cw(int cw)
931{
932 return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
Dmitry Shmidt41712582015-06-29 11:02:15 -0700933 cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023 ||
934 cw == 2047 || cw == 4095 || cw == 8191 || cw == 16383 ||
935 cw == 32767);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700936}
937
938
939enum {
940 IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
941 IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
942 IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
943 IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
944};
945
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800946static int hostapd_config_tx_queue(struct hostapd_config *conf,
947 const char *name, const char *val)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700948{
949 int num;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800950 const char *pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700951 struct hostapd_tx_queue_params *queue;
952
953 /* skip 'tx_queue_' prefix */
954 pos = name + 9;
955 if (os_strncmp(pos, "data", 4) == 0 &&
956 pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
957 num = pos[4] - '0';
958 pos += 6;
959 } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
960 os_strncmp(pos, "beacon_", 7) == 0) {
961 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
962 return 0;
963 } else {
964 wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
965 return -1;
966 }
967
968 if (num >= NUM_TX_QUEUES) {
969 /* for backwards compatibility, do not trigger failure */
970 wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
971 return 0;
972 }
973
974 queue = &conf->tx_queue[num];
975
976 if (os_strcmp(pos, "aifs") == 0) {
977 queue->aifs = atoi(val);
978 if (queue->aifs < 0 || queue->aifs > 255) {
979 wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
980 queue->aifs);
981 return -1;
982 }
983 } else if (os_strcmp(pos, "cwmin") == 0) {
984 queue->cwmin = atoi(val);
985 if (!valid_cw(queue->cwmin)) {
986 wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
987 queue->cwmin);
988 return -1;
989 }
990 } else if (os_strcmp(pos, "cwmax") == 0) {
991 queue->cwmax = atoi(val);
992 if (!valid_cw(queue->cwmax)) {
993 wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
994 queue->cwmax);
995 return -1;
996 }
997 } else if (os_strcmp(pos, "burst") == 0) {
998 queue->burst = hostapd_config_read_int10(val);
999 } else {
1000 wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
1001 return -1;
1002 }
1003
1004 return 0;
1005}
1006
1007
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08001008#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001009
1010static int rkh_derive_key(const char *pos, u8 *key, size_t key_len)
1011{
1012 u8 oldkey[16];
1013 int ret;
1014
1015 if (!hexstr2bin(pos, key, key_len))
1016 return 0;
1017
1018 /* Try to use old short key for backwards compatibility */
1019 if (hexstr2bin(pos, oldkey, sizeof(oldkey)))
1020 return -1;
1021
1022 ret = hmac_sha256_kdf(oldkey, sizeof(oldkey), "FT OLDKEY", NULL, 0,
1023 key, key_len);
1024 os_memset(oldkey, 0, sizeof(oldkey));
1025 return ret;
1026}
1027
1028
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001029static int add_r0kh(struct hostapd_bss_config *bss, char *value)
1030{
1031 struct ft_remote_r0kh *r0kh;
1032 char *pos, *next;
1033
1034 r0kh = os_zalloc(sizeof(*r0kh));
1035 if (r0kh == NULL)
1036 return -1;
1037
1038 /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
1039 pos = value;
1040 next = os_strchr(pos, ' ');
1041 if (next)
1042 *next++ = '\0';
1043 if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
1044 wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
1045 os_free(r0kh);
1046 return -1;
1047 }
1048
1049 pos = next;
1050 next = os_strchr(pos, ' ');
1051 if (next)
1052 *next++ = '\0';
1053 if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
1054 wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
1055 os_free(r0kh);
1056 return -1;
1057 }
1058 r0kh->id_len = next - pos - 1;
1059 os_memcpy(r0kh->id, pos, r0kh->id_len);
1060
1061 pos = next;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001062 if (rkh_derive_key(pos, r0kh->key, sizeof(r0kh->key)) < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001063 wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
1064 os_free(r0kh);
1065 return -1;
1066 }
1067
1068 r0kh->next = bss->r0kh_list;
1069 bss->r0kh_list = r0kh;
1070
1071 return 0;
1072}
1073
1074
1075static int add_r1kh(struct hostapd_bss_config *bss, char *value)
1076{
1077 struct ft_remote_r1kh *r1kh;
1078 char *pos, *next;
1079
1080 r1kh = os_zalloc(sizeof(*r1kh));
1081 if (r1kh == NULL)
1082 return -1;
1083
1084 /* 02:01:02:03:04:05 02:01:02:03:04:05
1085 * 000102030405060708090a0b0c0d0e0f */
1086 pos = value;
1087 next = os_strchr(pos, ' ');
1088 if (next)
1089 *next++ = '\0';
1090 if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
1091 wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
1092 os_free(r1kh);
1093 return -1;
1094 }
1095
1096 pos = next;
1097 next = os_strchr(pos, ' ');
1098 if (next)
1099 *next++ = '\0';
1100 if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
1101 wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
1102 os_free(r1kh);
1103 return -1;
1104 }
1105
1106 pos = next;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001107 if (rkh_derive_key(pos, r1kh->key, sizeof(r1kh->key)) < 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001108 wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
1109 os_free(r1kh);
1110 return -1;
1111 }
1112
1113 r1kh->next = bss->r1kh_list;
1114 bss->r1kh_list = r1kh;
1115
1116 return 0;
1117}
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08001118#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001119
1120
1121#ifdef CONFIG_IEEE80211N
1122static int hostapd_config_ht_capab(struct hostapd_config *conf,
1123 const char *capab)
1124{
1125 if (os_strstr(capab, "[LDPC]"))
1126 conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
1127 if (os_strstr(capab, "[HT40-]")) {
1128 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1129 conf->secondary_channel = -1;
1130 }
1131 if (os_strstr(capab, "[HT40+]")) {
1132 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1133 conf->secondary_channel = 1;
1134 }
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07001135 if (os_strstr(capab, "[HT40+]") && os_strstr(capab, "[HT40-]")) {
1136 conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1137 conf->ht40_plus_minus_allowed = 1;
1138 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001139 if (os_strstr(capab, "[SMPS-STATIC]")) {
1140 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1141 conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
1142 }
1143 if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
1144 conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1145 conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
1146 }
1147 if (os_strstr(capab, "[GF]"))
1148 conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
1149 if (os_strstr(capab, "[SHORT-GI-20]"))
1150 conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
1151 if (os_strstr(capab, "[SHORT-GI-40]"))
1152 conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
1153 if (os_strstr(capab, "[TX-STBC]"))
1154 conf->ht_capab |= HT_CAP_INFO_TX_STBC;
1155 if (os_strstr(capab, "[RX-STBC1]")) {
1156 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1157 conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
1158 }
1159 if (os_strstr(capab, "[RX-STBC12]")) {
1160 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1161 conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
1162 }
1163 if (os_strstr(capab, "[RX-STBC123]")) {
1164 conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1165 conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
1166 }
1167 if (os_strstr(capab, "[DELAYED-BA]"))
1168 conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
1169 if (os_strstr(capab, "[MAX-AMSDU-7935]"))
1170 conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
1171 if (os_strstr(capab, "[DSSS_CCK-40]"))
1172 conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
Dmitry Shmidtd11f0192014-03-24 12:09:47 -07001173 if (os_strstr(capab, "[40-INTOLERANT]"))
1174 conf->ht_capab |= HT_CAP_INFO_40MHZ_INTOLERANT;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001175 if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
1176 conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
1177
1178 return 0;
1179}
1180#endif /* CONFIG_IEEE80211N */
1181
1182
Dmitry Shmidt04949592012-07-19 12:16:46 -07001183#ifdef CONFIG_IEEE80211AC
1184static int hostapd_config_vht_capab(struct hostapd_config *conf,
1185 const char *capab)
1186{
1187 if (os_strstr(capab, "[MAX-MPDU-7991]"))
1188 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
1189 if (os_strstr(capab, "[MAX-MPDU-11454]"))
1190 conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
1191 if (os_strstr(capab, "[VHT160]"))
1192 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
1193 if (os_strstr(capab, "[VHT160-80PLUS80]"))
1194 conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001195 if (os_strstr(capab, "[RXLDPC]"))
1196 conf->vht_capab |= VHT_CAP_RXLDPC;
1197 if (os_strstr(capab, "[SHORT-GI-80]"))
1198 conf->vht_capab |= VHT_CAP_SHORT_GI_80;
1199 if (os_strstr(capab, "[SHORT-GI-160]"))
1200 conf->vht_capab |= VHT_CAP_SHORT_GI_160;
1201 if (os_strstr(capab, "[TX-STBC-2BY1]"))
1202 conf->vht_capab |= VHT_CAP_TXSTBC;
1203 if (os_strstr(capab, "[RX-STBC-1]"))
1204 conf->vht_capab |= VHT_CAP_RXSTBC_1;
1205 if (os_strstr(capab, "[RX-STBC-12]"))
1206 conf->vht_capab |= VHT_CAP_RXSTBC_2;
1207 if (os_strstr(capab, "[RX-STBC-123]"))
1208 conf->vht_capab |= VHT_CAP_RXSTBC_3;
1209 if (os_strstr(capab, "[RX-STBC-1234]"))
1210 conf->vht_capab |= VHT_CAP_RXSTBC_4;
1211 if (os_strstr(capab, "[SU-BEAMFORMER]"))
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001212 conf->vht_capab |= VHT_CAP_SU_BEAMFORMER_CAPABLE;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001213 if (os_strstr(capab, "[SU-BEAMFORMEE]"))
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001214 conf->vht_capab |= VHT_CAP_SU_BEAMFORMEE_CAPABLE;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001215 if (os_strstr(capab, "[BF-ANTENNA-2]") &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001216 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1217 conf->vht_capab |= (1 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001218 if (os_strstr(capab, "[BF-ANTENNA-3]") &&
1219 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1220 conf->vht_capab |= (2 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
1221 if (os_strstr(capab, "[BF-ANTENNA-4]") &&
1222 (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1223 conf->vht_capab |= (3 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001224 if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
Dmitry Shmidt68d0e3e2013-10-28 17:59:21 -07001225 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1226 conf->vht_capab |= (1 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001227 if (os_strstr(capab, "[SOUNDING-DIMENSION-3]") &&
1228 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1229 conf->vht_capab |= (2 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
1230 if (os_strstr(capab, "[SOUNDING-DIMENSION-4]") &&
1231 (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1232 conf->vht_capab |= (3 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001233 if (os_strstr(capab, "[MU-BEAMFORMER]"))
1234 conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001235 if (os_strstr(capab, "[VHT-TXOP-PS]"))
1236 conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
1237 if (os_strstr(capab, "[HTC-VHT]"))
1238 conf->vht_capab |= VHT_CAP_HTC_VHT;
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001239 if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP7]"))
1240 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX;
1241 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP6]"))
1242 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_6;
1243 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP5]"))
1244 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_5;
1245 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP4]"))
1246 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_4;
1247 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP3]"))
1248 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_3;
1249 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP2]"))
1250 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_2;
1251 else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP1]"))
1252 conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001253 if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
1254 (conf->vht_capab & VHT_CAP_HTC_VHT))
1255 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
1256 if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
1257 (conf->vht_capab & VHT_CAP_HTC_VHT))
1258 conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
1259 if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
1260 conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
1261 if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
1262 conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
1263 return 0;
1264}
1265#endif /* CONFIG_IEEE80211AC */
1266
1267
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001268#ifdef CONFIG_INTERWORKING
1269static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
1270 int line)
1271{
1272 size_t len = os_strlen(pos);
1273 u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
1274
1275 struct hostapd_roaming_consortium *rc;
1276
1277 if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
1278 hexstr2bin(pos, oi, len / 2)) {
1279 wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
1280 "'%s'", line, pos);
1281 return -1;
1282 }
1283 len /= 2;
1284
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001285 rc = os_realloc_array(bss->roaming_consortium,
1286 bss->roaming_consortium_count + 1,
1287 sizeof(struct hostapd_roaming_consortium));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001288 if (rc == NULL)
1289 return -1;
1290
1291 os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
1292 rc[bss->roaming_consortium_count].len = len;
1293
1294 bss->roaming_consortium = rc;
1295 bss->roaming_consortium_count++;
1296
1297 return 0;
1298}
Dmitry Shmidt04949592012-07-19 12:16:46 -07001299
1300
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001301static int parse_lang_string(struct hostapd_lang_string **array,
1302 unsigned int *count, char *pos)
Dmitry Shmidt04949592012-07-19 12:16:46 -07001303{
Dmitry Shmidt56052862013-10-04 10:23:25 -07001304 char *sep, *str = NULL;
1305 size_t clen, nlen, slen;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001306 struct hostapd_lang_string *ls;
Dmitry Shmidt56052862013-10-04 10:23:25 -07001307 int ret = -1;
1308
1309 if (*pos == '"' || (*pos == 'P' && pos[1] == '"')) {
1310 str = wpa_config_parse_string(pos, &slen);
1311 if (!str)
1312 return -1;
1313 pos = str;
1314 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001315
1316 sep = os_strchr(pos, ':');
1317 if (sep == NULL)
Dmitry Shmidt56052862013-10-04 10:23:25 -07001318 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001319 *sep++ = '\0';
1320
1321 clen = os_strlen(pos);
Dmitry Shmidt56052862013-10-04 10:23:25 -07001322 if (clen < 2 || clen > sizeof(ls->lang))
1323 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001324 nlen = os_strlen(sep);
1325 if (nlen > 252)
Dmitry Shmidt56052862013-10-04 10:23:25 -07001326 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001327
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001328 ls = os_realloc_array(*array, *count + 1,
1329 sizeof(struct hostapd_lang_string));
1330 if (ls == NULL)
Dmitry Shmidt56052862013-10-04 10:23:25 -07001331 goto fail;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001332
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001333 *array = ls;
1334 ls = &(*array)[*count];
1335 (*count)++;
1336
1337 os_memset(ls->lang, 0, sizeof(ls->lang));
1338 os_memcpy(ls->lang, pos, clen);
1339 ls->name_len = nlen;
1340 os_memcpy(ls->name, sep, nlen);
1341
Dmitry Shmidt56052862013-10-04 10:23:25 -07001342 ret = 0;
1343fail:
1344 os_free(str);
1345 return ret;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001346}
1347
1348
1349static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
1350 int line)
1351{
1352 if (parse_lang_string(&bss->venue_name, &bss->venue_name_count, pos)) {
1353 wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
1354 line, pos);
1355 return -1;
1356 }
1357 return 0;
1358}
1359
1360
1361static int parse_3gpp_cell_net(struct hostapd_bss_config *bss, char *buf,
1362 int line)
1363{
1364 size_t count;
1365 char *pos;
1366 u8 *info = NULL, *ipos;
1367
1368 /* format: <MCC1,MNC1>[;<MCC2,MNC2>][;...] */
1369
1370 count = 1;
1371 for (pos = buf; *pos; pos++) {
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001372 if ((*pos < '0' || *pos > '9') && *pos != ';' && *pos != ',')
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001373 goto fail;
1374 if (*pos == ';')
1375 count++;
1376 }
1377 if (1 + count * 3 > 0x7f)
1378 goto fail;
1379
1380 info = os_zalloc(2 + 3 + count * 3);
1381 if (info == NULL)
1382 return -1;
1383
1384 ipos = info;
1385 *ipos++ = 0; /* GUD - Version 1 */
1386 *ipos++ = 3 + count * 3; /* User Data Header Length (UDHL) */
1387 *ipos++ = 0; /* PLMN List IEI */
1388 /* ext(b8) | Length of PLMN List value contents(b7..1) */
1389 *ipos++ = 1 + count * 3;
1390 *ipos++ = count; /* Number of PLMNs */
1391
1392 pos = buf;
1393 while (pos && *pos) {
1394 char *mcc, *mnc;
1395 size_t mnc_len;
1396
1397 mcc = pos;
1398 mnc = os_strchr(pos, ',');
1399 if (mnc == NULL)
1400 goto fail;
1401 *mnc++ = '\0';
1402 pos = os_strchr(mnc, ';');
1403 if (pos)
1404 *pos++ = '\0';
1405
1406 mnc_len = os_strlen(mnc);
1407 if (os_strlen(mcc) != 3 || (mnc_len != 2 && mnc_len != 3))
1408 goto fail;
1409
1410 /* BC coded MCC,MNC */
1411 /* MCC digit 2 | MCC digit 1 */
1412 *ipos++ = ((mcc[1] - '0') << 4) | (mcc[0] - '0');
1413 /* MNC digit 3 | MCC digit 3 */
1414 *ipos++ = (((mnc_len == 2) ? 0xf0 : ((mnc[2] - '0') << 4))) |
1415 (mcc[2] - '0');
1416 /* MNC digit 2 | MNC digit 1 */
1417 *ipos++ = ((mnc[1] - '0') << 4) | (mnc[0] - '0');
1418 }
1419
1420 os_free(bss->anqp_3gpp_cell_net);
1421 bss->anqp_3gpp_cell_net = info;
1422 bss->anqp_3gpp_cell_net_len = 2 + 3 + 3 * count;
1423 wpa_hexdump(MSG_MSGDUMP, "3GPP Cellular Network information",
1424 bss->anqp_3gpp_cell_net, bss->anqp_3gpp_cell_net_len);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001425
1426 return 0;
1427
1428fail:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001429 wpa_printf(MSG_ERROR, "Line %d: Invalid anqp_3gpp_cell_net: %s",
1430 line, buf);
1431 os_free(info);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001432 return -1;
1433}
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001434
1435
1436static int parse_nai_realm(struct hostapd_bss_config *bss, char *buf, int line)
1437{
1438 struct hostapd_nai_realm_data *realm;
1439 size_t i, j, len;
1440 int *offsets;
1441 char *pos, *end, *rpos;
1442
1443 offsets = os_calloc(bss->nai_realm_count * MAX_NAI_REALMS,
1444 sizeof(int));
1445 if (offsets == NULL)
1446 return -1;
1447
1448 for (i = 0; i < bss->nai_realm_count; i++) {
1449 realm = &bss->nai_realm_data[i];
1450 for (j = 0; j < MAX_NAI_REALMS; j++) {
1451 offsets[i * MAX_NAI_REALMS + j] =
1452 realm->realm[j] ?
1453 realm->realm[j] - realm->realm_buf : -1;
1454 }
1455 }
1456
1457 realm = os_realloc_array(bss->nai_realm_data, bss->nai_realm_count + 1,
1458 sizeof(struct hostapd_nai_realm_data));
1459 if (realm == NULL) {
1460 os_free(offsets);
1461 return -1;
1462 }
1463 bss->nai_realm_data = realm;
1464
1465 /* patch the pointers after realloc */
1466 for (i = 0; i < bss->nai_realm_count; i++) {
1467 realm = &bss->nai_realm_data[i];
1468 for (j = 0; j < MAX_NAI_REALMS; j++) {
1469 int offs = offsets[i * MAX_NAI_REALMS + j];
1470 if (offs >= 0)
1471 realm->realm[j] = realm->realm_buf + offs;
1472 else
1473 realm->realm[j] = NULL;
1474 }
1475 }
1476 os_free(offsets);
1477
1478 realm = &bss->nai_realm_data[bss->nai_realm_count];
1479 os_memset(realm, 0, sizeof(*realm));
1480
1481 pos = buf;
1482 realm->encoding = atoi(pos);
1483 pos = os_strchr(pos, ',');
1484 if (pos == NULL)
1485 goto fail;
1486 pos++;
1487
1488 end = os_strchr(pos, ',');
1489 if (end) {
1490 len = end - pos;
1491 *end = '\0';
1492 } else {
1493 len = os_strlen(pos);
1494 }
1495
1496 if (len > MAX_NAI_REALMLEN) {
1497 wpa_printf(MSG_ERROR, "Too long a realm string (%d > max %d "
1498 "characters)", (int) len, MAX_NAI_REALMLEN);
1499 goto fail;
1500 }
1501 os_memcpy(realm->realm_buf, pos, len);
1502
1503 if (end)
1504 pos = end + 1;
1505 else
1506 pos = NULL;
1507
1508 while (pos && *pos) {
1509 struct hostapd_nai_realm_eap *eap;
1510
1511 if (realm->eap_method_count >= MAX_NAI_EAP_METHODS) {
1512 wpa_printf(MSG_ERROR, "Too many EAP methods");
1513 goto fail;
1514 }
1515
1516 eap = &realm->eap_method[realm->eap_method_count];
1517 realm->eap_method_count++;
1518
1519 end = os_strchr(pos, ',');
1520 if (end == NULL)
1521 end = pos + os_strlen(pos);
1522
1523 eap->eap_method = atoi(pos);
1524 for (;;) {
1525 pos = os_strchr(pos, '[');
1526 if (pos == NULL || pos > end)
1527 break;
1528 pos++;
1529 if (eap->num_auths >= MAX_NAI_AUTH_TYPES) {
1530 wpa_printf(MSG_ERROR, "Too many auth params");
1531 goto fail;
1532 }
1533 eap->auth_id[eap->num_auths] = atoi(pos);
1534 pos = os_strchr(pos, ':');
1535 if (pos == NULL || pos > end)
1536 goto fail;
1537 pos++;
1538 eap->auth_val[eap->num_auths] = atoi(pos);
1539 pos = os_strchr(pos, ']');
1540 if (pos == NULL || pos > end)
1541 goto fail;
1542 pos++;
1543 eap->num_auths++;
1544 }
1545
1546 if (*end != ',')
1547 break;
1548
1549 pos = end + 1;
1550 }
1551
1552 /* Split realm list into null terminated realms */
1553 rpos = realm->realm_buf;
1554 i = 0;
1555 while (*rpos) {
1556 if (i >= MAX_NAI_REALMS) {
1557 wpa_printf(MSG_ERROR, "Too many realms");
1558 goto fail;
1559 }
1560 realm->realm[i++] = rpos;
1561 rpos = os_strchr(rpos, ';');
1562 if (rpos == NULL)
1563 break;
1564 *rpos++ = '\0';
1565 }
1566
1567 bss->nai_realm_count++;
1568
1569 return 0;
1570
1571fail:
1572 wpa_printf(MSG_ERROR, "Line %d: invalid nai_realm '%s'", line, buf);
1573 return -1;
1574}
1575
Dmitry Shmidt051af732013-10-22 13:52:46 -07001576
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001577static int parse_anqp_elem(struct hostapd_bss_config *bss, char *buf, int line)
1578{
1579 char *delim;
1580 u16 infoid;
1581 size_t len;
1582 struct wpabuf *payload;
1583 struct anqp_element *elem;
1584
1585 delim = os_strchr(buf, ':');
1586 if (!delim)
1587 return -1;
1588 delim++;
1589 infoid = atoi(buf);
1590 len = os_strlen(delim);
1591 if (len & 1)
1592 return -1;
1593 len /= 2;
1594 payload = wpabuf_alloc(len);
1595 if (!payload)
1596 return -1;
1597 if (hexstr2bin(delim, wpabuf_put(payload, len), len) < 0) {
1598 wpabuf_free(payload);
1599 return -1;
1600 }
1601
1602 dl_list_for_each(elem, &bss->anqp_elem, struct anqp_element, list) {
1603 if (elem->infoid == infoid) {
1604 /* Update existing entry */
1605 wpabuf_free(elem->payload);
1606 elem->payload = payload;
1607 return 0;
1608 }
1609 }
1610
1611 /* Add a new entry */
1612 elem = os_zalloc(sizeof(*elem));
1613 if (!elem) {
1614 wpabuf_free(payload);
1615 return -1;
1616 }
1617 elem->infoid = infoid;
1618 elem->payload = payload;
1619 dl_list_add(&bss->anqp_elem, &elem->list);
1620
1621 return 0;
1622}
1623
1624
Dmitry Shmidt051af732013-10-22 13:52:46 -07001625static int parse_qos_map_set(struct hostapd_bss_config *bss,
1626 char *buf, int line)
1627{
1628 u8 qos_map_set[16 + 2 * 21], count = 0;
1629 char *pos = buf;
1630 int val;
1631
1632 for (;;) {
1633 if (count == sizeof(qos_map_set)) {
1634 wpa_printf(MSG_ERROR, "Line %d: Too many qos_map_set "
1635 "parameters '%s'", line, buf);
1636 return -1;
1637 }
1638
1639 val = atoi(pos);
1640 if (val > 255 || val < 0) {
1641 wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set "
1642 "'%s'", line, buf);
1643 return -1;
1644 }
1645
1646 qos_map_set[count++] = val;
1647 pos = os_strchr(pos, ',');
1648 if (!pos)
1649 break;
1650 pos++;
1651 }
1652
1653 if (count < 16 || count & 1) {
1654 wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set '%s'",
1655 line, buf);
1656 return -1;
1657 }
1658
1659 os_memcpy(bss->qos_map_set, qos_map_set, count);
1660 bss->qos_map_set_len = count;
1661
1662 return 0;
1663}
1664
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001665#endif /* CONFIG_INTERWORKING */
1666
1667
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001668#ifdef CONFIG_HS20
1669static int hs20_parse_conn_capab(struct hostapd_bss_config *bss, char *buf,
1670 int line)
1671{
1672 u8 *conn_cap;
1673 char *pos;
1674
1675 if (bss->hs20_connection_capability_len >= 0xfff0)
1676 return -1;
1677
1678 conn_cap = os_realloc(bss->hs20_connection_capability,
1679 bss->hs20_connection_capability_len + 4);
1680 if (conn_cap == NULL)
1681 return -1;
1682
1683 bss->hs20_connection_capability = conn_cap;
1684 conn_cap += bss->hs20_connection_capability_len;
1685 pos = buf;
1686 conn_cap[0] = atoi(pos);
1687 pos = os_strchr(pos, ':');
1688 if (pos == NULL)
1689 return -1;
1690 pos++;
1691 WPA_PUT_LE16(conn_cap + 1, atoi(pos));
1692 pos = os_strchr(pos, ':');
1693 if (pos == NULL)
1694 return -1;
1695 pos++;
1696 conn_cap[3] = atoi(pos);
1697 bss->hs20_connection_capability_len += 4;
1698
1699 return 0;
1700}
1701
1702
1703static int hs20_parse_wan_metrics(struct hostapd_bss_config *bss, char *buf,
1704 int line)
1705{
1706 u8 *wan_metrics;
1707 char *pos;
1708
1709 /* <WAN Info>:<DL Speed>:<UL Speed>:<DL Load>:<UL Load>:<LMD> */
1710
1711 wan_metrics = os_zalloc(13);
1712 if (wan_metrics == NULL)
1713 return -1;
1714
1715 pos = buf;
1716 /* WAN Info */
1717 if (hexstr2bin(pos, wan_metrics, 1) < 0)
1718 goto fail;
1719 pos += 2;
1720 if (*pos != ':')
1721 goto fail;
1722 pos++;
1723
1724 /* Downlink Speed */
1725 WPA_PUT_LE32(wan_metrics + 1, atoi(pos));
1726 pos = os_strchr(pos, ':');
1727 if (pos == NULL)
1728 goto fail;
1729 pos++;
1730
1731 /* Uplink Speed */
1732 WPA_PUT_LE32(wan_metrics + 5, atoi(pos));
1733 pos = os_strchr(pos, ':');
1734 if (pos == NULL)
1735 goto fail;
1736 pos++;
1737
1738 /* Downlink Load */
1739 wan_metrics[9] = atoi(pos);
1740 pos = os_strchr(pos, ':');
1741 if (pos == NULL)
1742 goto fail;
1743 pos++;
1744
1745 /* Uplink Load */
1746 wan_metrics[10] = atoi(pos);
1747 pos = os_strchr(pos, ':');
1748 if (pos == NULL)
1749 goto fail;
1750 pos++;
1751
1752 /* LMD */
1753 WPA_PUT_LE16(wan_metrics + 11, atoi(pos));
1754
1755 os_free(bss->hs20_wan_metrics);
1756 bss->hs20_wan_metrics = wan_metrics;
1757
1758 return 0;
1759
1760fail:
1761 wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_wan_metrics '%s'",
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -07001762 line, buf);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001763 os_free(wan_metrics);
1764 return -1;
1765}
1766
1767
1768static int hs20_parse_oper_friendly_name(struct hostapd_bss_config *bss,
1769 char *pos, int line)
1770{
1771 if (parse_lang_string(&bss->hs20_oper_friendly_name,
1772 &bss->hs20_oper_friendly_name_count, pos)) {
1773 wpa_printf(MSG_ERROR, "Line %d: Invalid "
1774 "hs20_oper_friendly_name '%s'", line, pos);
1775 return -1;
1776 }
1777 return 0;
1778}
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001779
1780
1781static int hs20_parse_icon(struct hostapd_bss_config *bss, char *pos)
1782{
1783 struct hs20_icon *icon;
1784 char *end;
1785
1786 icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
1787 sizeof(struct hs20_icon));
1788 if (icon == NULL)
1789 return -1;
1790 bss->hs20_icons = icon;
1791 icon = &bss->hs20_icons[bss->hs20_icons_count];
1792 os_memset(icon, 0, sizeof(*icon));
1793
1794 icon->width = atoi(pos);
1795 pos = os_strchr(pos, ':');
1796 if (pos == NULL)
1797 return -1;
1798 pos++;
1799
1800 icon->height = atoi(pos);
1801 pos = os_strchr(pos, ':');
1802 if (pos == NULL)
1803 return -1;
1804 pos++;
1805
1806 end = os_strchr(pos, ':');
1807 if (end == NULL || end - pos > 3)
1808 return -1;
1809 os_memcpy(icon->language, pos, end - pos);
1810 pos = end + 1;
1811
1812 end = os_strchr(pos, ':');
1813 if (end == NULL || end - pos > 255)
1814 return -1;
1815 os_memcpy(icon->type, pos, end - pos);
1816 pos = end + 1;
1817
1818 end = os_strchr(pos, ':');
1819 if (end == NULL || end - pos > 255)
1820 return -1;
1821 os_memcpy(icon->name, pos, end - pos);
1822 pos = end + 1;
1823
1824 if (os_strlen(pos) > 255)
1825 return -1;
1826 os_memcpy(icon->file, pos, os_strlen(pos));
1827
1828 bss->hs20_icons_count++;
1829
1830 return 0;
1831}
1832
1833
1834static int hs20_parse_osu_ssid(struct hostapd_bss_config *bss,
1835 char *pos, int line)
1836{
1837 size_t slen;
1838 char *str;
1839
1840 str = wpa_config_parse_string(pos, &slen);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07001841 if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001842 wpa_printf(MSG_ERROR, "Line %d: Invalid SSID '%s'", line, pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07001843 os_free(str);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001844 return -1;
1845 }
1846
1847 os_memcpy(bss->osu_ssid, str, slen);
1848 bss->osu_ssid_len = slen;
1849 os_free(str);
1850
1851 return 0;
1852}
1853
1854
1855static int hs20_parse_osu_server_uri(struct hostapd_bss_config *bss,
1856 char *pos, int line)
1857{
1858 struct hs20_osu_provider *p;
1859
1860 p = os_realloc_array(bss->hs20_osu_providers,
1861 bss->hs20_osu_providers_count + 1, sizeof(*p));
1862 if (p == NULL)
1863 return -1;
1864
1865 bss->hs20_osu_providers = p;
1866 bss->last_osu = &bss->hs20_osu_providers[bss->hs20_osu_providers_count];
1867 bss->hs20_osu_providers_count++;
1868 os_memset(bss->last_osu, 0, sizeof(*p));
1869 bss->last_osu->server_uri = os_strdup(pos);
1870
1871 return 0;
1872}
1873
1874
1875static int hs20_parse_osu_friendly_name(struct hostapd_bss_config *bss,
1876 char *pos, int line)
1877{
1878 if (bss->last_osu == NULL) {
1879 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1880 return -1;
1881 }
1882
1883 if (parse_lang_string(&bss->last_osu->friendly_name,
1884 &bss->last_osu->friendly_name_count, pos)) {
1885 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_friendly_name '%s'",
1886 line, pos);
1887 return -1;
1888 }
1889
1890 return 0;
1891}
1892
1893
1894static int hs20_parse_osu_nai(struct hostapd_bss_config *bss,
1895 char *pos, int line)
1896{
1897 if (bss->last_osu == NULL) {
1898 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1899 return -1;
1900 }
1901
1902 os_free(bss->last_osu->osu_nai);
1903 bss->last_osu->osu_nai = os_strdup(pos);
1904 if (bss->last_osu->osu_nai == NULL)
1905 return -1;
1906
1907 return 0;
1908}
1909
1910
1911static int hs20_parse_osu_method_list(struct hostapd_bss_config *bss, char *pos,
1912 int line)
1913{
1914 if (bss->last_osu == NULL) {
1915 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1916 return -1;
1917 }
1918
1919 if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) {
1920 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_method_list", line);
1921 return -1;
1922 }
1923
1924 return 0;
1925}
1926
1927
1928static int hs20_parse_osu_icon(struct hostapd_bss_config *bss, char *pos,
1929 int line)
1930{
1931 char **n;
1932 struct hs20_osu_provider *p = bss->last_osu;
1933
1934 if (p == NULL) {
1935 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1936 return -1;
1937 }
1938
1939 n = os_realloc_array(p->icons, p->icons_count + 1, sizeof(char *));
1940 if (n == NULL)
1941 return -1;
1942 p->icons = n;
1943 p->icons[p->icons_count] = os_strdup(pos);
1944 if (p->icons[p->icons_count] == NULL)
1945 return -1;
1946 p->icons_count++;
1947
1948 return 0;
1949}
1950
1951
1952static int hs20_parse_osu_service_desc(struct hostapd_bss_config *bss,
1953 char *pos, int line)
1954{
1955 if (bss->last_osu == NULL) {
1956 wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1957 return -1;
1958 }
1959
1960 if (parse_lang_string(&bss->last_osu->service_desc,
1961 &bss->last_osu->service_desc_count, pos)) {
1962 wpa_printf(MSG_ERROR, "Line %d: Invalid osu_service_desc '%s'",
1963 line, pos);
1964 return -1;
1965 }
1966
1967 return 0;
1968}
1969
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001970#endif /* CONFIG_HS20 */
1971
1972
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001973#ifdef CONFIG_ACS
1974static int hostapd_config_parse_acs_chan_bias(struct hostapd_config *conf,
1975 char *pos)
1976{
1977 struct acs_bias *bias = NULL, *tmp;
1978 unsigned int num = 0;
1979 char *end;
1980
1981 while (*pos) {
1982 tmp = os_realloc_array(bias, num + 1, sizeof(*bias));
1983 if (!tmp)
1984 goto fail;
1985 bias = tmp;
1986
1987 bias[num].channel = atoi(pos);
1988 if (bias[num].channel <= 0)
1989 goto fail;
1990 pos = os_strchr(pos, ':');
1991 if (!pos)
1992 goto fail;
1993 pos++;
1994 bias[num].bias = strtod(pos, &end);
1995 if (end == pos || bias[num].bias < 0.0)
1996 goto fail;
1997 pos = end;
1998 if (*pos != ' ' && *pos != '\0')
1999 goto fail;
2000 num++;
2001 }
2002
2003 os_free(conf->acs_chan_bias);
2004 conf->acs_chan_bias = bias;
2005 conf->num_acs_chan_bias = num;
2006
2007 return 0;
2008fail:
2009 os_free(bias);
2010 return -1;
2011}
2012#endif /* CONFIG_ACS */
2013
2014
Dmitry Shmidt849734c2016-05-27 09:59:01 -07002015static int parse_wpabuf_hex(int line, const char *name, struct wpabuf **buf,
2016 const char *val)
2017{
2018 struct wpabuf *elems;
2019
2020 if (val[0] == '\0') {
2021 wpabuf_free(*buf);
2022 *buf = NULL;
2023 return 0;
2024 }
2025
2026 elems = wpabuf_parse_bin(val);
2027 if (!elems) {
2028 wpa_printf(MSG_ERROR, "Line %d: Invalid %s '%s'",
2029 line, name, val);
2030 return -1;
2031 }
2032
2033 wpabuf_free(*buf);
2034 *buf = elems;
2035
2036 return 0;
2037}
2038
2039
Dmitry Shmidt29333592017-01-09 12:27:11 -08002040#ifdef CONFIG_FILS
2041static int parse_fils_realm(struct hostapd_bss_config *bss, const char *val)
2042{
2043 struct fils_realm *realm;
2044 size_t len;
2045
2046 len = os_strlen(val);
2047 realm = os_zalloc(sizeof(*realm) + len + 1);
2048 if (!realm)
2049 return -1;
2050
2051 os_memcpy(realm->realm, val, len);
2052 if (fils_domain_name_hash(val, realm->hash) < 0) {
2053 os_free(realm);
2054 return -1;
2055 }
2056 dl_list_add_tail(&bss->fils_realms, &realm->list);
2057
2058 return 0;
2059}
2060#endif /* CONFIG_FILS */
2061
2062
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002063#ifdef EAP_SERVER
2064static unsigned int parse_tls_flags(const char *val)
2065{
2066 unsigned int flags = 0;
2067
2068 if (os_strstr(val, "[ALLOW-SIGN-RSA-MD5]"))
2069 flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
2070 if (os_strstr(val, "[DISABLE-TIME-CHECKS]"))
2071 flags |= TLS_CONN_DISABLE_TIME_CHECKS;
2072 if (os_strstr(val, "[DISABLE-TLSv1.0]"))
2073 flags |= TLS_CONN_DISABLE_TLSv1_0;
2074 if (os_strstr(val, "[DISABLE-TLSv1.1]"))
2075 flags |= TLS_CONN_DISABLE_TLSv1_1;
2076 if (os_strstr(val, "[DISABLE-TLSv1.2]"))
2077 flags |= TLS_CONN_DISABLE_TLSv1_2;
2078 if (os_strstr(val, "[SUITEB]"))
2079 flags |= TLS_CONN_SUITEB;
2080 if (os_strstr(val, "[SUITEB-NO-ECDH]"))
2081 flags |= TLS_CONN_SUITEB_NO_ECDH | TLS_CONN_SUITEB;
2082
2083 return flags;
2084}
2085#endif /* EAP_SERVER */
2086
2087
Dmitry Shmidt04949592012-07-19 12:16:46 -07002088static int hostapd_config_fill(struct hostapd_config *conf,
2089 struct hostapd_bss_config *bss,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002090 const char *buf, char *pos, int line)
Dmitry Shmidt04949592012-07-19 12:16:46 -07002091{
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002092 if (os_strcmp(buf, "interface") == 0) {
2093 os_strlcpy(conf->bss[0]->iface, pos,
2094 sizeof(conf->bss[0]->iface));
2095 } else if (os_strcmp(buf, "bridge") == 0) {
2096 os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
2097 } else if (os_strcmp(buf, "vlan_bridge") == 0) {
2098 os_strlcpy(bss->vlan_bridge, pos, sizeof(bss->vlan_bridge));
2099 } else if (os_strcmp(buf, "wds_bridge") == 0) {
2100 os_strlcpy(bss->wds_bridge, pos, sizeof(bss->wds_bridge));
2101 } else if (os_strcmp(buf, "driver") == 0) {
2102 int j;
Dmitry Shmidt29333592017-01-09 12:27:11 -08002103 const struct wpa_driver_ops *driver = NULL;
2104
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002105 for (j = 0; wpa_drivers[j]; j++) {
2106 if (os_strcmp(pos, wpa_drivers[j]->name) == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002107 driver = wpa_drivers[j];
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002108 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002109 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002110 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002111 if (!driver) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002112 wpa_printf(MSG_ERROR,
2113 "Line %d: invalid/unknown driver '%s'",
2114 line, pos);
2115 return 1;
2116 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002117 conf->driver = driver;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002118 } else if (os_strcmp(buf, "driver_params") == 0) {
2119 os_free(conf->driver_params);
2120 conf->driver_params = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002121 } else if (os_strcmp(buf, "debug") == 0) {
2122 wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' configuration variable is not used anymore",
2123 line);
2124 } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
2125 bss->logger_syslog_level = atoi(pos);
2126 } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
2127 bss->logger_stdout_level = atoi(pos);
2128 } else if (os_strcmp(buf, "logger_syslog") == 0) {
2129 bss->logger_syslog = atoi(pos);
2130 } else if (os_strcmp(buf, "logger_stdout") == 0) {
2131 bss->logger_stdout = atoi(pos);
2132 } else if (os_strcmp(buf, "dump_file") == 0) {
2133 wpa_printf(MSG_INFO, "Line %d: DEPRECATED: 'dump_file' configuration variable is not used anymore",
2134 line);
2135 } else if (os_strcmp(buf, "ssid") == 0) {
2136 bss->ssid.ssid_len = os_strlen(pos);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07002137 if (bss->ssid.ssid_len > SSID_MAX_LEN ||
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002138 bss->ssid.ssid_len < 1) {
2139 wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2140 line, pos);
2141 return 1;
2142 }
2143 os_memcpy(bss->ssid.ssid, pos, bss->ssid.ssid_len);
2144 bss->ssid.ssid_set = 1;
2145 } else if (os_strcmp(buf, "ssid2") == 0) {
2146 size_t slen;
2147 char *str = wpa_config_parse_string(pos, &slen);
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07002148 if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002149 wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2150 line, pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002151 os_free(str);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002152 return 1;
2153 }
2154 os_memcpy(bss->ssid.ssid, str, slen);
2155 bss->ssid.ssid_len = slen;
2156 bss->ssid.ssid_set = 1;
2157 os_free(str);
2158 } else if (os_strcmp(buf, "utf8_ssid") == 0) {
2159 bss->ssid.utf8_ssid = atoi(pos) > 0;
2160 } else if (os_strcmp(buf, "macaddr_acl") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002161 enum macaddr_acl acl = atoi(pos);
2162
2163 if (acl != ACCEPT_UNLESS_DENIED &&
2164 acl != DENY_UNLESS_ACCEPTED &&
2165 acl != USE_EXTERNAL_RADIUS_AUTH) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002166 wpa_printf(MSG_ERROR, "Line %d: unknown macaddr_acl %d",
Dmitry Shmidt29333592017-01-09 12:27:11 -08002167 line, acl);
2168 return 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002169 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002170 bss->macaddr_acl = acl;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002171 } else if (os_strcmp(buf, "accept_mac_file") == 0) {
2172 if (hostapd_config_read_maclist(pos, &bss->accept_mac,
2173 &bss->num_accept_mac)) {
2174 wpa_printf(MSG_ERROR, "Line %d: Failed to read accept_mac_file '%s'",
2175 line, pos);
2176 return 1;
2177 }
2178 } else if (os_strcmp(buf, "deny_mac_file") == 0) {
2179 if (hostapd_config_read_maclist(pos, &bss->deny_mac,
2180 &bss->num_deny_mac)) {
2181 wpa_printf(MSG_ERROR, "Line %d: Failed to read deny_mac_file '%s'",
2182 line, pos);
2183 return 1;
2184 }
2185 } else if (os_strcmp(buf, "wds_sta") == 0) {
2186 bss->wds_sta = atoi(pos);
2187 } else if (os_strcmp(buf, "start_disabled") == 0) {
2188 bss->start_disabled = atoi(pos);
2189 } else if (os_strcmp(buf, "ap_isolate") == 0) {
2190 bss->isolate = atoi(pos);
2191 } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
2192 bss->ap_max_inactivity = atoi(pos);
2193 } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
2194 bss->skip_inactivity_poll = atoi(pos);
2195 } else if (os_strcmp(buf, "country_code") == 0) {
2196 os_memcpy(conf->country, pos, 2);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002197 } else if (os_strcmp(buf, "country3") == 0) {
2198 conf->country[2] = strtol(pos, NULL, 16);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002199 } else if (os_strcmp(buf, "ieee80211d") == 0) {
2200 conf->ieee80211d = atoi(pos);
2201 } else if (os_strcmp(buf, "ieee80211h") == 0) {
2202 conf->ieee80211h = atoi(pos);
2203 } else if (os_strcmp(buf, "ieee8021x") == 0) {
2204 bss->ieee802_1x = atoi(pos);
2205 } else if (os_strcmp(buf, "eapol_version") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002206 int eapol_version = atoi(pos);
2207
2208 if (eapol_version < 1 || eapol_version > 2) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002209 wpa_printf(MSG_ERROR,
2210 "Line %d: invalid EAPOL version (%d): '%s'.",
Dmitry Shmidt29333592017-01-09 12:27:11 -08002211 line, eapol_version, pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002212 return 1;
2213 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002214 bss->eapol_version = eapol_version;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002215 wpa_printf(MSG_DEBUG, "eapol_version=%d", bss->eapol_version);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002216#ifdef EAP_SERVER
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002217 } else if (os_strcmp(buf, "eap_authenticator") == 0) {
2218 bss->eap_server = atoi(pos);
2219 wpa_printf(MSG_ERROR, "Line %d: obsolete eap_authenticator used; this has been renamed to eap_server", line);
2220 } else if (os_strcmp(buf, "eap_server") == 0) {
2221 bss->eap_server = atoi(pos);
2222 } else if (os_strcmp(buf, "eap_user_file") == 0) {
2223 if (hostapd_config_read_eap_user(pos, bss))
2224 return 1;
2225 } else if (os_strcmp(buf, "ca_cert") == 0) {
2226 os_free(bss->ca_cert);
2227 bss->ca_cert = os_strdup(pos);
2228 } else if (os_strcmp(buf, "server_cert") == 0) {
2229 os_free(bss->server_cert);
2230 bss->server_cert = os_strdup(pos);
2231 } else if (os_strcmp(buf, "private_key") == 0) {
2232 os_free(bss->private_key);
2233 bss->private_key = os_strdup(pos);
2234 } else if (os_strcmp(buf, "private_key_passwd") == 0) {
2235 os_free(bss->private_key_passwd);
2236 bss->private_key_passwd = os_strdup(pos);
2237 } else if (os_strcmp(buf, "check_crl") == 0) {
2238 bss->check_crl = atoi(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002239 } else if (os_strcmp(buf, "tls_session_lifetime") == 0) {
2240 bss->tls_session_lifetime = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002241 } else if (os_strcmp(buf, "tls_flags") == 0) {
2242 bss->tls_flags = parse_tls_flags(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002243 } else if (os_strcmp(buf, "ocsp_stapling_response") == 0) {
2244 os_free(bss->ocsp_stapling_response);
2245 bss->ocsp_stapling_response = os_strdup(pos);
Dmitry Shmidt014a3ff2015-12-28 13:27:49 -08002246 } else if (os_strcmp(buf, "ocsp_stapling_response_multi") == 0) {
2247 os_free(bss->ocsp_stapling_response_multi);
2248 bss->ocsp_stapling_response_multi = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002249 } else if (os_strcmp(buf, "dh_file") == 0) {
2250 os_free(bss->dh_file);
2251 bss->dh_file = os_strdup(pos);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002252 } else if (os_strcmp(buf, "openssl_ciphers") == 0) {
2253 os_free(bss->openssl_ciphers);
2254 bss->openssl_ciphers = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002255 } else if (os_strcmp(buf, "fragment_size") == 0) {
2256 bss->fragment_size = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002257#ifdef EAP_SERVER_FAST
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002258 } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
2259 os_free(bss->pac_opaque_encr_key);
2260 bss->pac_opaque_encr_key = os_malloc(16);
2261 if (bss->pac_opaque_encr_key == NULL) {
2262 wpa_printf(MSG_ERROR,
2263 "Line %d: No memory for pac_opaque_encr_key",
2264 line);
2265 return 1;
2266 } else if (hexstr2bin(pos, bss->pac_opaque_encr_key, 16)) {
2267 wpa_printf(MSG_ERROR, "Line %d: Invalid pac_opaque_encr_key",
2268 line);
2269 return 1;
2270 }
2271 } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
2272 size_t idlen = os_strlen(pos);
2273 if (idlen & 1) {
2274 wpa_printf(MSG_ERROR, "Line %d: Invalid eap_fast_a_id",
2275 line);
2276 return 1;
2277 }
2278 os_free(bss->eap_fast_a_id);
2279 bss->eap_fast_a_id = os_malloc(idlen / 2);
2280 if (bss->eap_fast_a_id == NULL ||
2281 hexstr2bin(pos, bss->eap_fast_a_id, idlen / 2)) {
2282 wpa_printf(MSG_ERROR, "Line %d: Failed to parse eap_fast_a_id",
2283 line);
2284 os_free(bss->eap_fast_a_id);
2285 bss->eap_fast_a_id = NULL;
2286 return 1;
2287 } else {
2288 bss->eap_fast_a_id_len = idlen / 2;
2289 }
2290 } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
2291 os_free(bss->eap_fast_a_id_info);
2292 bss->eap_fast_a_id_info = os_strdup(pos);
2293 } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
2294 bss->eap_fast_prov = atoi(pos);
2295 } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
2296 bss->pac_key_lifetime = atoi(pos);
2297 } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
2298 bss->pac_key_refresh_time = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002299#endif /* EAP_SERVER_FAST */
2300#ifdef EAP_SERVER_SIM
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002301 } else if (os_strcmp(buf, "eap_sim_db") == 0) {
2302 os_free(bss->eap_sim_db);
2303 bss->eap_sim_db = os_strdup(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002304 } else if (os_strcmp(buf, "eap_sim_db_timeout") == 0) {
2305 bss->eap_sim_db_timeout = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002306 } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
2307 bss->eap_sim_aka_result_ind = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002308#endif /* EAP_SERVER_SIM */
2309#ifdef EAP_SERVER_TNC
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002310 } else if (os_strcmp(buf, "tnc") == 0) {
2311 bss->tnc = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002312#endif /* EAP_SERVER_TNC */
2313#ifdef EAP_SERVER_PWD
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002314 } else if (os_strcmp(buf, "pwd_group") == 0) {
2315 bss->pwd_group = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002316#endif /* EAP_SERVER_PWD */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002317 } else if (os_strcmp(buf, "eap_server_erp") == 0) {
2318 bss->eap_server_erp = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002319#endif /* EAP_SERVER */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002320 } else if (os_strcmp(buf, "eap_message") == 0) {
2321 char *term;
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002322 os_free(bss->eap_req_id_text);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002323 bss->eap_req_id_text = os_strdup(pos);
2324 if (bss->eap_req_id_text == NULL) {
2325 wpa_printf(MSG_ERROR, "Line %d: Failed to allocate memory for eap_req_id_text",
2326 line);
2327 return 1;
2328 }
2329 bss->eap_req_id_text_len = os_strlen(bss->eap_req_id_text);
2330 term = os_strstr(bss->eap_req_id_text, "\\0");
2331 if (term) {
2332 *term++ = '\0';
2333 os_memmove(term, term + 1,
2334 bss->eap_req_id_text_len -
2335 (term - bss->eap_req_id_text) - 1);
2336 bss->eap_req_id_text_len--;
2337 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002338 } else if (os_strcmp(buf, "erp_send_reauth_start") == 0) {
2339 bss->erp_send_reauth_start = atoi(pos);
2340 } else if (os_strcmp(buf, "erp_domain") == 0) {
2341 os_free(bss->erp_domain);
2342 bss->erp_domain = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002343 } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002344 int val = atoi(pos);
2345
2346 if (val < 0 || val > 13) {
2347 wpa_printf(MSG_ERROR,
2348 "Line %d: invalid WEP key len %d (= %d bits)",
2349 line, val, val * 8);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002350 return 1;
2351 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002352 bss->default_wep_key_len = val;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002353 } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002354 int val = atoi(pos);
2355
2356 if (val < 0 || val > 13) {
2357 wpa_printf(MSG_ERROR,
2358 "Line %d: invalid WEP key len %d (= %d bits)",
2359 line, val, val * 8);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002360 return 1;
2361 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002362 bss->individual_wep_key_len = val;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002363 } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
2364 bss->wep_rekeying_period = atoi(pos);
2365 if (bss->wep_rekeying_period < 0) {
2366 wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2367 line, bss->wep_rekeying_period);
2368 return 1;
2369 }
2370 } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
2371 bss->eap_reauth_period = atoi(pos);
2372 if (bss->eap_reauth_period < 0) {
2373 wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2374 line, bss->eap_reauth_period);
2375 return 1;
2376 }
2377 } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
2378 bss->eapol_key_index_workaround = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002379#ifdef CONFIG_IAPP
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002380 } else if (os_strcmp(buf, "iapp_interface") == 0) {
2381 bss->ieee802_11f = 1;
2382 os_strlcpy(bss->iapp_iface, pos, sizeof(bss->iapp_iface));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002383#endif /* CONFIG_IAPP */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002384 } else if (os_strcmp(buf, "own_ip_addr") == 0) {
2385 if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
2386 wpa_printf(MSG_ERROR,
2387 "Line %d: invalid IP address '%s'",
2388 line, pos);
2389 return 1;
2390 }
2391 } else if (os_strcmp(buf, "nas_identifier") == 0) {
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002392 os_free(bss->nas_identifier);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002393 bss->nas_identifier = os_strdup(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002394#ifndef CONFIG_NO_RADIUS
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08002395 } else if (os_strcmp(buf, "radius_client_addr") == 0) {
2396 if (hostapd_parse_ip_addr(pos, &bss->radius->client_addr)) {
2397 wpa_printf(MSG_ERROR,
2398 "Line %d: invalid IP address '%s'",
2399 line, pos);
2400 return 1;
2401 }
2402 bss->radius->force_client_addr = 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002403 } else if (os_strcmp(buf, "auth_server_addr") == 0) {
2404 if (hostapd_config_read_radius_addr(
2405 &bss->radius->auth_servers,
2406 &bss->radius->num_auth_servers, pos, 1812,
2407 &bss->radius->auth_server)) {
2408 wpa_printf(MSG_ERROR,
2409 "Line %d: invalid IP address '%s'",
2410 line, pos);
2411 return 1;
2412 }
2413 } else if (bss->radius->auth_server &&
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08002414 os_strcmp(buf, "auth_server_addr_replace") == 0) {
2415 if (hostapd_parse_ip_addr(pos,
2416 &bss->radius->auth_server->addr)) {
2417 wpa_printf(MSG_ERROR,
2418 "Line %d: invalid IP address '%s'",
2419 line, pos);
2420 return 1;
2421 }
2422 } else if (bss->radius->auth_server &&
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002423 os_strcmp(buf, "auth_server_port") == 0) {
2424 bss->radius->auth_server->port = atoi(pos);
2425 } else if (bss->radius->auth_server &&
2426 os_strcmp(buf, "auth_server_shared_secret") == 0) {
2427 int len = os_strlen(pos);
2428 if (len == 0) {
2429 /* RFC 2865, Ch. 3 */
2430 wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2431 line);
2432 return 1;
2433 }
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002434 os_free(bss->radius->auth_server->shared_secret);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002435 bss->radius->auth_server->shared_secret = (u8 *) os_strdup(pos);
2436 bss->radius->auth_server->shared_secret_len = len;
2437 } else if (os_strcmp(buf, "acct_server_addr") == 0) {
2438 if (hostapd_config_read_radius_addr(
2439 &bss->radius->acct_servers,
2440 &bss->radius->num_acct_servers, pos, 1813,
2441 &bss->radius->acct_server)) {
2442 wpa_printf(MSG_ERROR,
2443 "Line %d: invalid IP address '%s'",
2444 line, pos);
2445 return 1;
2446 }
2447 } else if (bss->radius->acct_server &&
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08002448 os_strcmp(buf, "acct_server_addr_replace") == 0) {
2449 if (hostapd_parse_ip_addr(pos,
2450 &bss->radius->acct_server->addr)) {
2451 wpa_printf(MSG_ERROR,
2452 "Line %d: invalid IP address '%s'",
2453 line, pos);
2454 return 1;
2455 }
2456 } else if (bss->radius->acct_server &&
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002457 os_strcmp(buf, "acct_server_port") == 0) {
2458 bss->radius->acct_server->port = atoi(pos);
2459 } else if (bss->radius->acct_server &&
2460 os_strcmp(buf, "acct_server_shared_secret") == 0) {
2461 int len = os_strlen(pos);
2462 if (len == 0) {
2463 /* RFC 2865, Ch. 3 */
2464 wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2465 line);
2466 return 1;
2467 }
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002468 os_free(bss->radius->acct_server->shared_secret);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002469 bss->radius->acct_server->shared_secret = (u8 *) os_strdup(pos);
2470 bss->radius->acct_server->shared_secret_len = len;
2471 } else if (os_strcmp(buf, "radius_retry_primary_interval") == 0) {
2472 bss->radius->retry_primary_interval = atoi(pos);
2473 } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0) {
2474 bss->acct_interim_interval = atoi(pos);
2475 } else if (os_strcmp(buf, "radius_request_cui") == 0) {
2476 bss->radius_request_cui = atoi(pos);
2477 } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
2478 struct hostapd_radius_attr *attr, *a;
2479 attr = hostapd_parse_radius_attr(pos);
2480 if (attr == NULL) {
2481 wpa_printf(MSG_ERROR,
2482 "Line %d: invalid radius_auth_req_attr",
2483 line);
2484 return 1;
2485 } else if (bss->radius_auth_req_attr == NULL) {
2486 bss->radius_auth_req_attr = attr;
2487 } else {
2488 a = bss->radius_auth_req_attr;
2489 while (a->next)
2490 a = a->next;
2491 a->next = attr;
2492 }
2493 } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
2494 struct hostapd_radius_attr *attr, *a;
2495 attr = hostapd_parse_radius_attr(pos);
2496 if (attr == NULL) {
2497 wpa_printf(MSG_ERROR,
2498 "Line %d: invalid radius_acct_req_attr",
2499 line);
2500 return 1;
2501 } else if (bss->radius_acct_req_attr == NULL) {
2502 bss->radius_acct_req_attr = attr;
2503 } else {
2504 a = bss->radius_acct_req_attr;
2505 while (a->next)
2506 a = a->next;
2507 a->next = attr;
2508 }
2509 } else if (os_strcmp(buf, "radius_das_port") == 0) {
2510 bss->radius_das_port = atoi(pos);
2511 } else if (os_strcmp(buf, "radius_das_client") == 0) {
2512 if (hostapd_parse_das_client(bss, pos) < 0) {
2513 wpa_printf(MSG_ERROR, "Line %d: invalid DAS client",
2514 line);
2515 return 1;
2516 }
2517 } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
2518 bss->radius_das_time_window = atoi(pos);
2519 } else if (os_strcmp(buf, "radius_das_require_event_timestamp") == 0) {
2520 bss->radius_das_require_event_timestamp = atoi(pos);
Dmitry Shmidt7f2c7532016-08-15 09:48:12 -07002521 } else if (os_strcmp(buf, "radius_das_require_message_authenticator") ==
2522 0) {
2523 bss->radius_das_require_message_authenticator = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002524#endif /* CONFIG_NO_RADIUS */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002525 } else if (os_strcmp(buf, "auth_algs") == 0) {
2526 bss->auth_algs = atoi(pos);
2527 if (bss->auth_algs == 0) {
2528 wpa_printf(MSG_ERROR, "Line %d: no authentication algorithms allowed",
2529 line);
2530 return 1;
2531 }
2532 } else if (os_strcmp(buf, "max_num_sta") == 0) {
2533 bss->max_num_sta = atoi(pos);
2534 if (bss->max_num_sta < 0 ||
2535 bss->max_num_sta > MAX_STA_COUNT) {
2536 wpa_printf(MSG_ERROR, "Line %d: Invalid max_num_sta=%d; allowed range 0..%d",
2537 line, bss->max_num_sta, MAX_STA_COUNT);
2538 return 1;
2539 }
2540 } else if (os_strcmp(buf, "wpa") == 0) {
2541 bss->wpa = atoi(pos);
2542 } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
2543 bss->wpa_group_rekey = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002544 bss->wpa_group_rekey_set = 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002545 } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
2546 bss->wpa_strict_rekey = atoi(pos);
2547 } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
2548 bss->wpa_gmk_rekey = atoi(pos);
2549 } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
2550 bss->wpa_ptk_rekey = atoi(pos);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08002551 } else if (os_strcmp(buf, "wpa_group_update_count") == 0) {
2552 char *endp;
2553 unsigned long val = strtoul(pos, &endp, 0);
2554
2555 if (*endp || val < 1 || val > (u32) -1) {
2556 wpa_printf(MSG_ERROR,
2557 "Line %d: Invalid wpa_group_update_count=%lu; allowed range 1..4294967295",
2558 line, val);
2559 return 1;
2560 }
2561 bss->wpa_group_update_count = (u32) val;
2562 } else if (os_strcmp(buf, "wpa_pairwise_update_count") == 0) {
2563 char *endp;
2564 unsigned long val = strtoul(pos, &endp, 0);
2565
2566 if (*endp || val < 1 || val > (u32) -1) {
2567 wpa_printf(MSG_ERROR,
2568 "Line %d: Invalid wpa_pairwise_update_count=%lu; allowed range 1..4294967295",
2569 line, val);
2570 return 1;
2571 }
2572 bss->wpa_pairwise_update_count = (u32) val;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002573 } else if (os_strcmp(buf, "wpa_disable_eapol_key_retries") == 0) {
2574 bss->wpa_disable_eapol_key_retries = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002575 } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
2576 int len = os_strlen(pos);
2577 if (len < 8 || len > 63) {
2578 wpa_printf(MSG_ERROR, "Line %d: invalid WPA passphrase length %d (expected 8..63)",
2579 line, len);
2580 return 1;
2581 }
2582 os_free(bss->ssid.wpa_passphrase);
2583 bss->ssid.wpa_passphrase = os_strdup(pos);
2584 if (bss->ssid.wpa_passphrase) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002585 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002586 bss->ssid.wpa_passphrase_set = 1;
2587 }
2588 } else if (os_strcmp(buf, "wpa_psk") == 0) {
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002589 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002590 bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
2591 if (bss->ssid.wpa_psk == NULL)
2592 return 1;
2593 if (hexstr2bin(pos, bss->ssid.wpa_psk->psk, PMK_LEN) ||
2594 pos[PMK_LEN * 2] != '\0') {
2595 wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
2596 line, pos);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002597 hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002598 return 1;
2599 }
2600 bss->ssid.wpa_psk->group = 1;
2601 os_free(bss->ssid.wpa_passphrase);
2602 bss->ssid.wpa_passphrase = NULL;
2603 bss->ssid.wpa_psk_set = 1;
2604 } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
2605 os_free(bss->ssid.wpa_psk_file);
2606 bss->ssid.wpa_psk_file = os_strdup(pos);
2607 if (!bss->ssid.wpa_psk_file) {
2608 wpa_printf(MSG_ERROR, "Line %d: allocation failed",
2609 line);
2610 return 1;
2611 }
2612 } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
2613 bss->wpa_key_mgmt = hostapd_config_parse_key_mgmt(line, pos);
2614 if (bss->wpa_key_mgmt == -1)
2615 return 1;
2616 } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
2617 bss->wpa_psk_radius = atoi(pos);
2618 if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
2619 bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
2620 bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
2621 wpa_printf(MSG_ERROR,
2622 "Line %d: unknown wpa_psk_radius %d",
2623 line, bss->wpa_psk_radius);
2624 return 1;
2625 }
2626 } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
2627 bss->wpa_pairwise = hostapd_config_parse_cipher(line, pos);
2628 if (bss->wpa_pairwise == -1 || bss->wpa_pairwise == 0)
2629 return 1;
2630 if (bss->wpa_pairwise &
2631 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
2632 wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002633 line, pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002634 return 1;
2635 }
2636 } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
2637 bss->rsn_pairwise = hostapd_config_parse_cipher(line, pos);
2638 if (bss->rsn_pairwise == -1 || bss->rsn_pairwise == 0)
2639 return 1;
2640 if (bss->rsn_pairwise &
2641 (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
2642 wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002643 line, pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002644 return 1;
2645 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002646#ifdef CONFIG_RSN_PREAUTH
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002647 } else if (os_strcmp(buf, "rsn_preauth") == 0) {
2648 bss->rsn_preauth = atoi(pos);
2649 } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002650 os_free(bss->rsn_preauth_interfaces);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002651 bss->rsn_preauth_interfaces = os_strdup(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002652#endif /* CONFIG_RSN_PREAUTH */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002653 } else if (os_strcmp(buf, "peerkey") == 0) {
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002654 wpa_printf(MSG_INFO,
2655 "Line %d: Obsolete peerkey parameter ignored", line);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08002656#ifdef CONFIG_IEEE80211R_AP
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002657 } else if (os_strcmp(buf, "mobility_domain") == 0) {
2658 if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
2659 hexstr2bin(pos, bss->mobility_domain,
2660 MOBILITY_DOMAIN_ID_LEN) != 0) {
2661 wpa_printf(MSG_ERROR,
2662 "Line %d: Invalid mobility_domain '%s'",
2663 line, pos);
2664 return 1;
2665 }
2666 } else if (os_strcmp(buf, "r1_key_holder") == 0) {
2667 if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
2668 hexstr2bin(pos, bss->r1_key_holder, FT_R1KH_ID_LEN) != 0) {
2669 wpa_printf(MSG_ERROR,
2670 "Line %d: Invalid r1_key_holder '%s'",
2671 line, pos);
2672 return 1;
2673 }
2674 } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
2675 bss->r0_key_lifetime = atoi(pos);
2676 } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
2677 bss->reassociation_deadline = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002678 } else if (os_strcmp(buf, "rkh_pos_timeout") == 0) {
2679 bss->rkh_pos_timeout = atoi(pos);
2680 } else if (os_strcmp(buf, "rkh_neg_timeout") == 0) {
2681 bss->rkh_neg_timeout = atoi(pos);
2682 } else if (os_strcmp(buf, "rkh_pull_timeout") == 0) {
2683 bss->rkh_pull_timeout = atoi(pos);
2684 } else if (os_strcmp(buf, "rkh_pull_retries") == 0) {
2685 bss->rkh_pull_retries = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002686 } else if (os_strcmp(buf, "r0kh") == 0) {
2687 if (add_r0kh(bss, pos) < 0) {
2688 wpa_printf(MSG_DEBUG, "Line %d: Invalid r0kh '%s'",
2689 line, pos);
2690 return 1;
2691 }
2692 } else if (os_strcmp(buf, "r1kh") == 0) {
2693 if (add_r1kh(bss, pos) < 0) {
2694 wpa_printf(MSG_DEBUG, "Line %d: Invalid r1kh '%s'",
2695 line, pos);
2696 return 1;
2697 }
2698 } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
2699 bss->pmk_r1_push = atoi(pos);
2700 } else if (os_strcmp(buf, "ft_over_ds") == 0) {
2701 bss->ft_over_ds = atoi(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08002702 } else if (os_strcmp(buf, "ft_psk_generate_local") == 0) {
2703 bss->ft_psk_generate_local = atoi(pos);
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08002704#endif /* CONFIG_IEEE80211R_AP */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002705#ifndef CONFIG_NO_CTRL_IFACE
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002706 } else if (os_strcmp(buf, "ctrl_interface") == 0) {
2707 os_free(bss->ctrl_interface);
2708 bss->ctrl_interface = os_strdup(pos);
2709 } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002710#ifndef CONFIG_NATIVE_WINDOWS
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002711 struct group *grp;
2712 char *endp;
2713 const char *group = pos;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002714
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002715 grp = getgrnam(group);
2716 if (grp) {
2717 bss->ctrl_interface_gid = grp->gr_gid;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002718 bss->ctrl_interface_gid_set = 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002719 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d (from group name '%s')",
2720 bss->ctrl_interface_gid, group);
2721 return 0;
2722 }
2723
2724 /* Group name not found - try to parse this as gid */
2725 bss->ctrl_interface_gid = strtol(group, &endp, 10);
2726 if (*group == '\0' || *endp != '\0') {
2727 wpa_printf(MSG_DEBUG, "Line %d: Invalid group '%s'",
2728 line, group);
2729 return 1;
2730 }
2731 bss->ctrl_interface_gid_set = 1;
2732 wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
2733 bss->ctrl_interface_gid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002734#endif /* CONFIG_NATIVE_WINDOWS */
2735#endif /* CONFIG_NO_CTRL_IFACE */
2736#ifdef RADIUS_SERVER
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002737 } else if (os_strcmp(buf, "radius_server_clients") == 0) {
2738 os_free(bss->radius_server_clients);
2739 bss->radius_server_clients = os_strdup(pos);
2740 } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
2741 bss->radius_server_auth_port = atoi(pos);
2742 } else if (os_strcmp(buf, "radius_server_acct_port") == 0) {
2743 bss->radius_server_acct_port = atoi(pos);
2744 } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
2745 bss->radius_server_ipv6 = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002746#endif /* RADIUS_SERVER */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002747 } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
2748 bss->use_pae_group_addr = atoi(pos);
2749 } else if (os_strcmp(buf, "hw_mode") == 0) {
2750 if (os_strcmp(pos, "a") == 0)
2751 conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
2752 else if (os_strcmp(pos, "b") == 0)
2753 conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
2754 else if (os_strcmp(pos, "g") == 0)
2755 conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
2756 else if (os_strcmp(pos, "ad") == 0)
2757 conf->hw_mode = HOSTAPD_MODE_IEEE80211AD;
Dmitry Shmidtb1e52102015-05-29 12:36:29 -07002758 else if (os_strcmp(pos, "any") == 0)
2759 conf->hw_mode = HOSTAPD_MODE_IEEE80211ANY;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002760 else {
2761 wpa_printf(MSG_ERROR, "Line %d: unknown hw_mode '%s'",
2762 line, pos);
2763 return 1;
2764 }
2765 } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07002766 if (os_strcmp(pos, "ad") == 0)
2767 bss->wps_rf_bands = WPS_RF_60GHZ;
2768 else if (os_strcmp(pos, "a") == 0)
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002769 bss->wps_rf_bands = WPS_RF_50GHZ;
2770 else if (os_strcmp(pos, "g") == 0 ||
2771 os_strcmp(pos, "b") == 0)
2772 bss->wps_rf_bands = WPS_RF_24GHZ;
2773 else if (os_strcmp(pos, "ag") == 0 ||
2774 os_strcmp(pos, "ga") == 0)
2775 bss->wps_rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
2776 else {
2777 wpa_printf(MSG_ERROR,
2778 "Line %d: unknown wps_rf_band '%s'",
2779 line, pos);
2780 return 1;
2781 }
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07002782 } else if (os_strcmp(buf, "acs_exclude_dfs") == 0) {
2783 conf->acs_exclude_dfs = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002784 } else if (os_strcmp(buf, "channel") == 0) {
2785 if (os_strcmp(pos, "acs_survey") == 0) {
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002786#ifndef CONFIG_ACS
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002787 wpa_printf(MSG_ERROR, "Line %d: tries to enable ACS but CONFIG_ACS disabled",
2788 line);
2789 return 1;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07002790#else /* CONFIG_ACS */
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07002791 conf->acs = 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002792 conf->channel = 0;
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07002793#endif /* CONFIG_ACS */
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07002794 } else {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002795 conf->channel = atoi(pos);
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07002796 conf->acs = conf->channel == 0;
2797 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002798 } else if (os_strcmp(buf, "chanlist") == 0) {
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07002799 if (hostapd_parse_chanlist(conf, pos)) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002800 wpa_printf(MSG_ERROR, "Line %d: invalid channel list",
2801 line);
2802 return 1;
2803 }
2804 } else if (os_strcmp(buf, "beacon_int") == 0) {
2805 int val = atoi(pos);
2806 /* MIB defines range as 1..65535, but very small values
2807 * cause problems with the current implementation.
2808 * Since it is unlikely that this small numbers are
2809 * useful in real life scenarios, do not allow beacon
2810 * period to be set below 15 TU. */
2811 if (val < 15 || val > 65535) {
2812 wpa_printf(MSG_ERROR, "Line %d: invalid beacon_int %d (expected 15..65535)",
2813 line, val);
2814 return 1;
2815 }
2816 conf->beacon_int = val;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002817#ifdef CONFIG_ACS
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002818 } else if (os_strcmp(buf, "acs_num_scans") == 0) {
2819 int val = atoi(pos);
2820 if (val <= 0 || val > 100) {
2821 wpa_printf(MSG_ERROR, "Line %d: invalid acs_num_scans %d (expected 1..100)",
2822 line, val);
2823 return 1;
2824 }
2825 conf->acs_num_scans = val;
Dmitry Shmidt7f656022015-02-25 14:36:37 -08002826 } else if (os_strcmp(buf, "acs_chan_bias") == 0) {
2827 if (hostapd_config_parse_acs_chan_bias(conf, pos)) {
2828 wpa_printf(MSG_ERROR, "Line %d: invalid acs_chan_bias",
2829 line);
2830 return -1;
2831 }
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07002832#endif /* CONFIG_ACS */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002833 } else if (os_strcmp(buf, "dtim_period") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08002834 int val = atoi(pos);
2835
2836 if (val < 1 || val > 255) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002837 wpa_printf(MSG_ERROR, "Line %d: invalid dtim_period %d",
Dmitry Shmidt29333592017-01-09 12:27:11 -08002838 line, val);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002839 return 1;
2840 }
Dmitry Shmidt29333592017-01-09 12:27:11 -08002841 bss->dtim_period = val;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002842 } else if (os_strcmp(buf, "bss_load_update_period") == 0) {
2843 bss->bss_load_update_period = atoi(pos);
2844 if (bss->bss_load_update_period < 0 ||
2845 bss->bss_load_update_period > 100) {
2846 wpa_printf(MSG_ERROR,
2847 "Line %d: invalid bss_load_update_period %d",
2848 line, bss->bss_load_update_period);
2849 return 1;
2850 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002851 } else if (os_strcmp(buf, "rts_threshold") == 0) {
2852 conf->rts_threshold = atoi(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002853 if (conf->rts_threshold < -1 || conf->rts_threshold > 65535) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002854 wpa_printf(MSG_ERROR,
2855 "Line %d: invalid rts_threshold %d",
2856 line, conf->rts_threshold);
2857 return 1;
2858 }
2859 } else if (os_strcmp(buf, "fragm_threshold") == 0) {
2860 conf->fragm_threshold = atoi(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002861 if (conf->fragm_threshold == -1) {
2862 /* allow a value of -1 */
2863 } else if (conf->fragm_threshold < 256 ||
2864 conf->fragm_threshold > 2346) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002865 wpa_printf(MSG_ERROR,
2866 "Line %d: invalid fragm_threshold %d",
2867 line, conf->fragm_threshold);
2868 return 1;
2869 }
2870 } else if (os_strcmp(buf, "send_probe_response") == 0) {
2871 int val = atoi(pos);
2872 if (val != 0 && val != 1) {
2873 wpa_printf(MSG_ERROR, "Line %d: invalid send_probe_response %d (expected 0 or 1)",
2874 line, val);
2875 return 1;
2876 }
2877 conf->send_probe_response = val;
2878 } else if (os_strcmp(buf, "supported_rates") == 0) {
2879 if (hostapd_parse_intlist(&conf->supported_rates, pos)) {
2880 wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
2881 line);
2882 return 1;
2883 }
2884 } else if (os_strcmp(buf, "basic_rates") == 0) {
2885 if (hostapd_parse_intlist(&conf->basic_rates, pos)) {
2886 wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
2887 line);
2888 return 1;
2889 }
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08002890 } else if (os_strcmp(buf, "beacon_rate") == 0) {
2891 int val;
2892
2893 if (os_strncmp(pos, "ht:", 3) == 0) {
2894 val = atoi(pos + 3);
2895 if (val < 0 || val > 31) {
2896 wpa_printf(MSG_ERROR,
2897 "Line %d: invalid beacon_rate HT-MCS %d",
2898 line, val);
2899 return 1;
2900 }
2901 conf->rate_type = BEACON_RATE_HT;
2902 conf->beacon_rate = val;
2903 } else if (os_strncmp(pos, "vht:", 4) == 0) {
2904 val = atoi(pos + 4);
2905 if (val < 0 || val > 9) {
2906 wpa_printf(MSG_ERROR,
2907 "Line %d: invalid beacon_rate VHT-MCS %d",
2908 line, val);
2909 return 1;
2910 }
2911 conf->rate_type = BEACON_RATE_VHT;
2912 conf->beacon_rate = val;
2913 } else {
2914 val = atoi(pos);
2915 if (val < 10 || val > 10000) {
2916 wpa_printf(MSG_ERROR,
2917 "Line %d: invalid legacy beacon_rate %d",
2918 line, val);
2919 return 1;
2920 }
2921 conf->rate_type = BEACON_RATE_LEGACY;
2922 conf->beacon_rate = val;
2923 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002924 } else if (os_strcmp(buf, "preamble") == 0) {
2925 if (atoi(pos))
2926 conf->preamble = SHORT_PREAMBLE;
2927 else
2928 conf->preamble = LONG_PREAMBLE;
2929 } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
2930 bss->ignore_broadcast_ssid = atoi(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08002931 } else if (os_strcmp(buf, "no_probe_resp_if_max_sta") == 0) {
2932 bss->no_probe_resp_if_max_sta = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002933 } else if (os_strcmp(buf, "wep_default_key") == 0) {
2934 bss->ssid.wep.idx = atoi(pos);
2935 if (bss->ssid.wep.idx > 3) {
2936 wpa_printf(MSG_ERROR,
2937 "Invalid wep_default_key index %d",
2938 bss->ssid.wep.idx);
2939 return 1;
2940 }
2941 } else if (os_strcmp(buf, "wep_key0") == 0 ||
2942 os_strcmp(buf, "wep_key1") == 0 ||
2943 os_strcmp(buf, "wep_key2") == 0 ||
2944 os_strcmp(buf, "wep_key3") == 0) {
2945 if (hostapd_config_read_wep(&bss->ssid.wep,
2946 buf[7] - '0', pos)) {
2947 wpa_printf(MSG_ERROR, "Line %d: invalid WEP key '%s'",
2948 line, buf);
2949 return 1;
2950 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002951#ifndef CONFIG_NO_VLAN
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002952 } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
2953 bss->ssid.dynamic_vlan = atoi(pos);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08002954 } else if (os_strcmp(buf, "per_sta_vif") == 0) {
2955 bss->ssid.per_sta_vif = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002956 } else if (os_strcmp(buf, "vlan_file") == 0) {
2957 if (hostapd_config_read_vlan_file(bss, pos)) {
2958 wpa_printf(MSG_ERROR, "Line %d: failed to read VLAN file '%s'",
2959 line, pos);
2960 return 1;
2961 }
2962 } else if (os_strcmp(buf, "vlan_naming") == 0) {
2963 bss->ssid.vlan_naming = atoi(pos);
2964 if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
2965 bss->ssid.vlan_naming < 0) {
2966 wpa_printf(MSG_ERROR,
2967 "Line %d: invalid naming scheme %d",
2968 line, bss->ssid.vlan_naming);
2969 return 1;
2970 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002971#ifdef CONFIG_FULL_DYNAMIC_VLAN
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002972 } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
Dmitry Shmidt21de2142014-04-08 10:50:52 -07002973 os_free(bss->ssid.vlan_tagged_interface);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002974 bss->ssid.vlan_tagged_interface = os_strdup(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002975#endif /* CONFIG_FULL_DYNAMIC_VLAN */
2976#endif /* CONFIG_NO_VLAN */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07002977 } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
2978 conf->ap_table_max_size = atoi(pos);
2979 } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
2980 conf->ap_table_expiration_time = atoi(pos);
2981 } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
2982 if (hostapd_config_tx_queue(conf, buf, pos)) {
2983 wpa_printf(MSG_ERROR, "Line %d: invalid TX queue item",
2984 line);
2985 return 1;
2986 }
2987 } else if (os_strcmp(buf, "wme_enabled") == 0 ||
2988 os_strcmp(buf, "wmm_enabled") == 0) {
2989 bss->wmm_enabled = atoi(pos);
2990 } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
2991 bss->wmm_uapsd = atoi(pos);
2992 } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
2993 os_strncmp(buf, "wmm_ac_", 7) == 0) {
2994 if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf, pos)) {
2995 wpa_printf(MSG_ERROR, "Line %d: invalid WMM ac item",
2996 line);
2997 return 1;
2998 }
2999 } else if (os_strcmp(buf, "bss") == 0) {
3000 if (hostapd_config_bss(conf, pos)) {
3001 wpa_printf(MSG_ERROR, "Line %d: invalid bss item",
3002 line);
3003 return 1;
3004 }
3005 } else if (os_strcmp(buf, "bssid") == 0) {
3006 if (hwaddr_aton(pos, bss->bssid)) {
3007 wpa_printf(MSG_ERROR, "Line %d: invalid bssid item",
3008 line);
3009 return 1;
3010 }
Dmitry Shmidt31a29cc2016-03-09 15:58:17 -08003011 } else if (os_strcmp(buf, "use_driver_iface_addr") == 0) {
3012 conf->use_driver_iface_addr = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003013#ifdef CONFIG_IEEE80211W
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003014 } else if (os_strcmp(buf, "ieee80211w") == 0) {
3015 bss->ieee80211w = atoi(pos);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07003016 } else if (os_strcmp(buf, "group_mgmt_cipher") == 0) {
3017 if (os_strcmp(pos, "AES-128-CMAC") == 0) {
3018 bss->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
3019 } else if (os_strcmp(pos, "BIP-GMAC-128") == 0) {
3020 bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_128;
3021 } else if (os_strcmp(pos, "BIP-GMAC-256") == 0) {
3022 bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256;
3023 } else if (os_strcmp(pos, "BIP-CMAC-256") == 0) {
3024 bss->group_mgmt_cipher = WPA_CIPHER_BIP_CMAC_256;
3025 } else {
3026 wpa_printf(MSG_ERROR, "Line %d: invalid group_mgmt_cipher: %s",
3027 line, pos);
3028 return 1;
3029 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003030 } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
3031 bss->assoc_sa_query_max_timeout = atoi(pos);
3032 if (bss->assoc_sa_query_max_timeout == 0) {
3033 wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_max_timeout",
3034 line);
3035 return 1;
3036 }
3037 } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0) {
3038 bss->assoc_sa_query_retry_timeout = atoi(pos);
3039 if (bss->assoc_sa_query_retry_timeout == 0) {
3040 wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_retry_timeout",
3041 line);
3042 return 1;
3043 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003044#endif /* CONFIG_IEEE80211W */
3045#ifdef CONFIG_IEEE80211N
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003046 } else if (os_strcmp(buf, "ieee80211n") == 0) {
3047 conf->ieee80211n = atoi(pos);
3048 } else if (os_strcmp(buf, "ht_capab") == 0) {
3049 if (hostapd_config_ht_capab(conf, pos) < 0) {
3050 wpa_printf(MSG_ERROR, "Line %d: invalid ht_capab",
3051 line);
3052 return 1;
3053 }
3054 } else if (os_strcmp(buf, "require_ht") == 0) {
3055 conf->require_ht = atoi(pos);
3056 } else if (os_strcmp(buf, "obss_interval") == 0) {
3057 conf->obss_interval = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003058#endif /* CONFIG_IEEE80211N */
Dmitry Shmidt04949592012-07-19 12:16:46 -07003059#ifdef CONFIG_IEEE80211AC
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003060 } else if (os_strcmp(buf, "ieee80211ac") == 0) {
3061 conf->ieee80211ac = atoi(pos);
3062 } else if (os_strcmp(buf, "vht_capab") == 0) {
3063 if (hostapd_config_vht_capab(conf, pos) < 0) {
3064 wpa_printf(MSG_ERROR, "Line %d: invalid vht_capab",
3065 line);
3066 return 1;
3067 }
3068 } else if (os_strcmp(buf, "require_vht") == 0) {
3069 conf->require_vht = atoi(pos);
3070 } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
3071 conf->vht_oper_chwidth = atoi(pos);
3072 } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0) {
3073 conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
3074 } else if (os_strcmp(buf, "vht_oper_centr_freq_seg1_idx") == 0) {
3075 conf->vht_oper_centr_freq_seg1_idx = atoi(pos);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08003076 } else if (os_strcmp(buf, "vendor_vht") == 0) {
3077 bss->vendor_vht = atoi(pos);
Dmitry Shmidt7d175302016-09-06 13:11:34 -07003078 } else if (os_strcmp(buf, "use_sta_nsts") == 0) {
3079 bss->use_sta_nsts = atoi(pos);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003080#endif /* CONFIG_IEEE80211AC */
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08003081#ifdef CONFIG_IEEE80211AX
3082 } else if (os_strcmp(buf, "ieee80211ax") == 0) {
3083 conf->ieee80211ax = atoi(pos);
3084 } else if (os_strcmp(buf, "he_su_beamformer") == 0) {
3085 conf->he_phy_capab.he_su_beamformer = atoi(pos);
3086 } else if (os_strcmp(buf, "he_su_beamformee") == 0) {
3087 conf->he_phy_capab.he_su_beamformee = atoi(pos);
3088 } else if (os_strcmp(buf, "he_mu_beamformer") == 0) {
3089 conf->he_phy_capab.he_mu_beamformer = atoi(pos);
3090 } else if (os_strcmp(buf, "he_bss_color") == 0) {
3091 conf->he_op.he_bss_color = atoi(pos);
3092 } else if (os_strcmp(buf, "he_default_pe_duration") == 0) {
3093 conf->he_op.he_default_pe_duration = atoi(pos);
3094 } else if (os_strcmp(buf, "he_twt_required") == 0) {
3095 conf->he_op.he_twt_required = atoi(pos);
3096 } else if (os_strcmp(buf, "he_rts_threshold") == 0) {
3097 conf->he_op.he_rts_threshold = atoi(pos);
3098#endif /* CONFIG_IEEE80211AX */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003099 } else if (os_strcmp(buf, "max_listen_interval") == 0) {
3100 bss->max_listen_interval = atoi(pos);
3101 } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
3102 bss->disable_pmksa_caching = atoi(pos);
3103 } else if (os_strcmp(buf, "okc") == 0) {
3104 bss->okc = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003105#ifdef CONFIG_WPS
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003106 } else if (os_strcmp(buf, "wps_state") == 0) {
3107 bss->wps_state = atoi(pos);
3108 if (bss->wps_state < 0 || bss->wps_state > 2) {
3109 wpa_printf(MSG_ERROR, "Line %d: invalid wps_state",
3110 line);
3111 return 1;
3112 }
3113 } else if (os_strcmp(buf, "wps_independent") == 0) {
3114 bss->wps_independent = atoi(pos);
3115 } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
3116 bss->ap_setup_locked = atoi(pos);
3117 } else if (os_strcmp(buf, "uuid") == 0) {
3118 if (uuid_str2bin(pos, bss->uuid)) {
3119 wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
3120 return 1;
3121 }
3122 } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
3123 os_free(bss->wps_pin_requests);
3124 bss->wps_pin_requests = os_strdup(pos);
3125 } else if (os_strcmp(buf, "device_name") == 0) {
Dmitry Shmidt9d9e6022015-04-23 10:34:55 -07003126 if (os_strlen(pos) > WPS_DEV_NAME_MAX_LEN) {
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003127 wpa_printf(MSG_ERROR, "Line %d: Too long "
3128 "device_name", line);
3129 return 1;
3130 }
3131 os_free(bss->device_name);
3132 bss->device_name = os_strdup(pos);
3133 } else if (os_strcmp(buf, "manufacturer") == 0) {
3134 if (os_strlen(pos) > 64) {
3135 wpa_printf(MSG_ERROR, "Line %d: Too long manufacturer",
3136 line);
3137 return 1;
3138 }
3139 os_free(bss->manufacturer);
3140 bss->manufacturer = os_strdup(pos);
3141 } else if (os_strcmp(buf, "model_name") == 0) {
3142 if (os_strlen(pos) > 32) {
3143 wpa_printf(MSG_ERROR, "Line %d: Too long model_name",
3144 line);
3145 return 1;
3146 }
3147 os_free(bss->model_name);
3148 bss->model_name = os_strdup(pos);
3149 } else if (os_strcmp(buf, "model_number") == 0) {
3150 if (os_strlen(pos) > 32) {
3151 wpa_printf(MSG_ERROR, "Line %d: Too long model_number",
3152 line);
3153 return 1;
3154 }
3155 os_free(bss->model_number);
3156 bss->model_number = os_strdup(pos);
3157 } else if (os_strcmp(buf, "serial_number") == 0) {
3158 if (os_strlen(pos) > 32) {
3159 wpa_printf(MSG_ERROR, "Line %d: Too long serial_number",
3160 line);
3161 return 1;
3162 }
3163 os_free(bss->serial_number);
3164 bss->serial_number = os_strdup(pos);
3165 } else if (os_strcmp(buf, "device_type") == 0) {
3166 if (wps_dev_type_str2bin(pos, bss->device_type))
3167 return 1;
3168 } else if (os_strcmp(buf, "config_methods") == 0) {
3169 os_free(bss->config_methods);
3170 bss->config_methods = os_strdup(pos);
3171 } else if (os_strcmp(buf, "os_version") == 0) {
3172 if (hexstr2bin(pos, bss->os_version, 4)) {
3173 wpa_printf(MSG_ERROR, "Line %d: invalid os_version",
3174 line);
3175 return 1;
3176 }
3177 } else if (os_strcmp(buf, "ap_pin") == 0) {
3178 os_free(bss->ap_pin);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003179 if (*pos == '\0')
3180 bss->ap_pin = NULL;
3181 else
3182 bss->ap_pin = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003183 } else if (os_strcmp(buf, "skip_cred_build") == 0) {
3184 bss->skip_cred_build = atoi(pos);
3185 } else if (os_strcmp(buf, "extra_cred") == 0) {
3186 os_free(bss->extra_cred);
3187 bss->extra_cred = (u8 *) os_readfile(pos, &bss->extra_cred_len);
3188 if (bss->extra_cred == NULL) {
3189 wpa_printf(MSG_ERROR, "Line %d: could not read Credentials from '%s'",
3190 line, pos);
3191 return 1;
3192 }
3193 } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
3194 bss->wps_cred_processing = atoi(pos);
3195 } else if (os_strcmp(buf, "ap_settings") == 0) {
3196 os_free(bss->ap_settings);
3197 bss->ap_settings =
3198 (u8 *) os_readfile(pos, &bss->ap_settings_len);
3199 if (bss->ap_settings == NULL) {
3200 wpa_printf(MSG_ERROR, "Line %d: could not read AP Settings from '%s'",
3201 line, pos);
3202 return 1;
3203 }
3204 } else if (os_strcmp(buf, "upnp_iface") == 0) {
Dmitry Shmidt21de2142014-04-08 10:50:52 -07003205 os_free(bss->upnp_iface);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003206 bss->upnp_iface = os_strdup(pos);
3207 } else if (os_strcmp(buf, "friendly_name") == 0) {
3208 os_free(bss->friendly_name);
3209 bss->friendly_name = os_strdup(pos);
3210 } else if (os_strcmp(buf, "manufacturer_url") == 0) {
3211 os_free(bss->manufacturer_url);
3212 bss->manufacturer_url = os_strdup(pos);
3213 } else if (os_strcmp(buf, "model_description") == 0) {
3214 os_free(bss->model_description);
3215 bss->model_description = os_strdup(pos);
3216 } else if (os_strcmp(buf, "model_url") == 0) {
3217 os_free(bss->model_url);
3218 bss->model_url = os_strdup(pos);
3219 } else if (os_strcmp(buf, "upc") == 0) {
3220 os_free(bss->upc);
3221 bss->upc = os_strdup(pos);
3222 } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
3223 bss->pbc_in_m1 = atoi(pos);
3224 } else if (os_strcmp(buf, "server_id") == 0) {
3225 os_free(bss->server_id);
3226 bss->server_id = os_strdup(pos);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003227#ifdef CONFIG_WPS_NFC
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003228 } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
3229 bss->wps_nfc_dev_pw_id = atoi(pos);
3230 if (bss->wps_nfc_dev_pw_id < 0x10 ||
3231 bss->wps_nfc_dev_pw_id > 0xffff) {
3232 wpa_printf(MSG_ERROR, "Line %d: Invalid wps_nfc_dev_pw_id value",
3233 line);
3234 return 1;
3235 }
3236 bss->wps_nfc_pw_from_config = 1;
3237 } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
3238 wpabuf_free(bss->wps_nfc_dh_pubkey);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003239 bss->wps_nfc_dh_pubkey = wpabuf_parse_bin(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003240 bss->wps_nfc_pw_from_config = 1;
3241 } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
3242 wpabuf_free(bss->wps_nfc_dh_privkey);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003243 bss->wps_nfc_dh_privkey = wpabuf_parse_bin(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003244 bss->wps_nfc_pw_from_config = 1;
3245 } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
3246 wpabuf_free(bss->wps_nfc_dev_pw);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003247 bss->wps_nfc_dev_pw = wpabuf_parse_bin(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003248 bss->wps_nfc_pw_from_config = 1;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003249#endif /* CONFIG_WPS_NFC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003250#endif /* CONFIG_WPS */
3251#ifdef CONFIG_P2P_MANAGER
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003252 } else if (os_strcmp(buf, "manage_p2p") == 0) {
3253 if (atoi(pos))
3254 bss->p2p |= P2P_MANAGE;
3255 else
3256 bss->p2p &= ~P2P_MANAGE;
3257 } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
3258 if (atoi(pos))
3259 bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
3260 else
3261 bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003262#endif /* CONFIG_P2P_MANAGER */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003263 } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
3264 bss->disassoc_low_ack = atoi(pos);
3265 } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
3266 if (atoi(pos))
3267 bss->tdls |= TDLS_PROHIBIT;
3268 else
3269 bss->tdls &= ~TDLS_PROHIBIT;
3270 } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
3271 if (atoi(pos))
3272 bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
3273 else
3274 bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003275#ifdef CONFIG_RSN_TESTING
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003276 } else if (os_strcmp(buf, "rsn_testing") == 0) {
3277 extern int rsn_testing;
3278 rsn_testing = atoi(pos);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003279#endif /* CONFIG_RSN_TESTING */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003280 } else if (os_strcmp(buf, "time_advertisement") == 0) {
3281 bss->time_advertisement = atoi(pos);
3282 } else if (os_strcmp(buf, "time_zone") == 0) {
3283 size_t tz_len = os_strlen(pos);
3284 if (tz_len < 4 || tz_len > 255) {
3285 wpa_printf(MSG_DEBUG, "Line %d: invalid time_zone",
3286 line);
3287 return 1;
3288 }
3289 os_free(bss->time_zone);
3290 bss->time_zone = os_strdup(pos);
3291 if (bss->time_zone == NULL)
3292 return 1;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003293#ifdef CONFIG_WNM_AP
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003294 } else if (os_strcmp(buf, "wnm_sleep_mode") == 0) {
3295 bss->wnm_sleep_mode = atoi(pos);
3296 } else if (os_strcmp(buf, "bss_transition") == 0) {
3297 bss->bss_transition = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003298#endif /* CONFIG_WNM_AP */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003299#ifdef CONFIG_INTERWORKING
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003300 } else if (os_strcmp(buf, "interworking") == 0) {
3301 bss->interworking = atoi(pos);
3302 } else if (os_strcmp(buf, "access_network_type") == 0) {
3303 bss->access_network_type = atoi(pos);
3304 if (bss->access_network_type < 0 ||
3305 bss->access_network_type > 15) {
3306 wpa_printf(MSG_ERROR,
3307 "Line %d: invalid access_network_type",
3308 line);
3309 return 1;
3310 }
3311 } else if (os_strcmp(buf, "internet") == 0) {
3312 bss->internet = atoi(pos);
3313 } else if (os_strcmp(buf, "asra") == 0) {
3314 bss->asra = atoi(pos);
3315 } else if (os_strcmp(buf, "esr") == 0) {
3316 bss->esr = atoi(pos);
3317 } else if (os_strcmp(buf, "uesa") == 0) {
3318 bss->uesa = atoi(pos);
3319 } else if (os_strcmp(buf, "venue_group") == 0) {
3320 bss->venue_group = atoi(pos);
3321 bss->venue_info_set = 1;
3322 } else if (os_strcmp(buf, "venue_type") == 0) {
3323 bss->venue_type = atoi(pos);
3324 bss->venue_info_set = 1;
3325 } else if (os_strcmp(buf, "hessid") == 0) {
3326 if (hwaddr_aton(pos, bss->hessid)) {
3327 wpa_printf(MSG_ERROR, "Line %d: invalid hessid", line);
3328 return 1;
3329 }
3330 } else if (os_strcmp(buf, "roaming_consortium") == 0) {
3331 if (parse_roaming_consortium(bss, pos, line) < 0)
3332 return 1;
3333 } else if (os_strcmp(buf, "venue_name") == 0) {
3334 if (parse_venue_name(bss, pos, line) < 0)
3335 return 1;
3336 } else if (os_strcmp(buf, "network_auth_type") == 0) {
3337 u8 auth_type;
3338 u16 redirect_url_len;
3339 if (hexstr2bin(pos, &auth_type, 1)) {
3340 wpa_printf(MSG_ERROR,
3341 "Line %d: Invalid network_auth_type '%s'",
3342 line, pos);
3343 return 1;
3344 }
3345 if (auth_type == 0 || auth_type == 2)
3346 redirect_url_len = os_strlen(pos + 2);
3347 else
3348 redirect_url_len = 0;
3349 os_free(bss->network_auth_type);
3350 bss->network_auth_type = os_malloc(redirect_url_len + 3 + 1);
3351 if (bss->network_auth_type == NULL)
3352 return 1;
3353 *bss->network_auth_type = auth_type;
3354 WPA_PUT_LE16(bss->network_auth_type + 1, redirect_url_len);
3355 if (redirect_url_len)
3356 os_memcpy(bss->network_auth_type + 3, pos + 2,
3357 redirect_url_len);
3358 bss->network_auth_type_len = 3 + redirect_url_len;
3359 } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
3360 if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1)) {
3361 wpa_printf(MSG_ERROR, "Line %d: Invalid ipaddr_type_availability '%s'",
3362 line, pos);
3363 bss->ipaddr_type_configured = 0;
3364 return 1;
3365 }
3366 bss->ipaddr_type_configured = 1;
3367 } else if (os_strcmp(buf, "domain_name") == 0) {
3368 int j, num_domains, domain_len, domain_list_len = 0;
3369 char *tok_start, *tok_prev;
3370 u8 *domain_list, *domain_ptr;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003371
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003372 domain_list_len = os_strlen(pos) + 1;
3373 domain_list = os_malloc(domain_list_len);
3374 if (domain_list == NULL)
3375 return 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003376
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003377 domain_ptr = domain_list;
3378 tok_prev = pos;
3379 num_domains = 1;
3380 while ((tok_prev = os_strchr(tok_prev, ','))) {
3381 num_domains++;
3382 tok_prev++;
3383 }
3384 tok_prev = pos;
3385 for (j = 0; j < num_domains; j++) {
3386 tok_start = os_strchr(tok_prev, ',');
3387 if (tok_start) {
3388 domain_len = tok_start - tok_prev;
3389 *domain_ptr = domain_len;
3390 os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3391 domain_ptr += domain_len + 1;
3392 tok_prev = ++tok_start;
3393 } else {
3394 domain_len = os_strlen(tok_prev);
3395 *domain_ptr = domain_len;
3396 os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3397 domain_ptr += domain_len + 1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003398 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003399 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003400
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003401 os_free(bss->domain_name);
3402 bss->domain_name = domain_list;
3403 bss->domain_name_len = domain_list_len;
3404 } else if (os_strcmp(buf, "anqp_3gpp_cell_net") == 0) {
3405 if (parse_3gpp_cell_net(bss, pos, line) < 0)
3406 return 1;
3407 } else if (os_strcmp(buf, "nai_realm") == 0) {
3408 if (parse_nai_realm(bss, pos, line) < 0)
3409 return 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003410 } else if (os_strcmp(buf, "anqp_elem") == 0) {
3411 if (parse_anqp_elem(bss, pos, line) < 0)
3412 return 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003413 } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
Dmitry Shmidt29333592017-01-09 12:27:11 -08003414 int val = atoi(pos);
3415
3416 if (val <= 0) {
3417 wpa_printf(MSG_ERROR,
3418 "Line %d: Invalid gas_frag_limit '%s'",
3419 line, pos);
3420 return 1;
3421 }
3422 bss->gas_frag_limit = val;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003423 } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
3424 bss->gas_comeback_delay = atoi(pos);
3425 } else if (os_strcmp(buf, "qos_map_set") == 0) {
3426 if (parse_qos_map_set(bss, pos, line) < 0)
3427 return 1;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003428#endif /* CONFIG_INTERWORKING */
3429#ifdef CONFIG_RADIUS_TEST
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003430 } else if (os_strcmp(buf, "dump_msk_file") == 0) {
3431 os_free(bss->dump_msk_file);
3432 bss->dump_msk_file = os_strdup(pos);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003433#endif /* CONFIG_RADIUS_TEST */
Dmitry Shmidt55840ad2015-12-14 12:45:46 -08003434#ifdef CONFIG_PROXYARP
3435 } else if (os_strcmp(buf, "proxy_arp") == 0) {
3436 bss->proxy_arp = atoi(pos);
3437#endif /* CONFIG_PROXYARP */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003438#ifdef CONFIG_HS20
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003439 } else if (os_strcmp(buf, "hs20") == 0) {
3440 bss->hs20 = atoi(pos);
3441 } else if (os_strcmp(buf, "disable_dgaf") == 0) {
3442 bss->disable_dgaf = atoi(pos);
Dmitry Shmidt1d755d02015-04-28 10:34:29 -07003443 } else if (os_strcmp(buf, "na_mcast_to_ucast") == 0) {
3444 bss->na_mcast_to_ucast = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003445 } else if (os_strcmp(buf, "osen") == 0) {
3446 bss->osen = atoi(pos);
3447 } else if (os_strcmp(buf, "anqp_domain_id") == 0) {
3448 bss->anqp_domain_id = atoi(pos);
3449 } else if (os_strcmp(buf, "hs20_deauth_req_timeout") == 0) {
3450 bss->hs20_deauth_req_timeout = atoi(pos);
3451 } else if (os_strcmp(buf, "hs20_oper_friendly_name") == 0) {
3452 if (hs20_parse_oper_friendly_name(bss, pos, line) < 0)
3453 return 1;
3454 } else if (os_strcmp(buf, "hs20_wan_metrics") == 0) {
3455 if (hs20_parse_wan_metrics(bss, pos, line) < 0)
3456 return 1;
3457 } else if (os_strcmp(buf, "hs20_conn_capab") == 0) {
3458 if (hs20_parse_conn_capab(bss, pos, line) < 0) {
3459 return 1;
3460 }
3461 } else if (os_strcmp(buf, "hs20_operating_class") == 0) {
3462 u8 *oper_class;
3463 size_t oper_class_len;
3464 oper_class_len = os_strlen(pos);
3465 if (oper_class_len < 2 || (oper_class_len & 0x01)) {
3466 wpa_printf(MSG_ERROR,
3467 "Line %d: Invalid hs20_operating_class '%s'",
3468 line, pos);
3469 return 1;
3470 }
3471 oper_class_len /= 2;
3472 oper_class = os_malloc(oper_class_len);
3473 if (oper_class == NULL)
3474 return 1;
3475 if (hexstr2bin(pos, oper_class, oper_class_len)) {
3476 wpa_printf(MSG_ERROR,
3477 "Line %d: Invalid hs20_operating_class '%s'",
3478 line, pos);
3479 os_free(oper_class);
3480 return 1;
3481 }
3482 os_free(bss->hs20_operating_class);
3483 bss->hs20_operating_class = oper_class;
3484 bss->hs20_operating_class_len = oper_class_len;
3485 } else if (os_strcmp(buf, "hs20_icon") == 0) {
3486 if (hs20_parse_icon(bss, pos) < 0) {
3487 wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_icon '%s'",
3488 line, pos);
3489 return 1;
3490 }
3491 } else if (os_strcmp(buf, "osu_ssid") == 0) {
3492 if (hs20_parse_osu_ssid(bss, pos, line) < 0)
3493 return 1;
3494 } else if (os_strcmp(buf, "osu_server_uri") == 0) {
3495 if (hs20_parse_osu_server_uri(bss, pos, line) < 0)
3496 return 1;
3497 } else if (os_strcmp(buf, "osu_friendly_name") == 0) {
3498 if (hs20_parse_osu_friendly_name(bss, pos, line) < 0)
3499 return 1;
3500 } else if (os_strcmp(buf, "osu_nai") == 0) {
3501 if (hs20_parse_osu_nai(bss, pos, line) < 0)
3502 return 1;
3503 } else if (os_strcmp(buf, "osu_method_list") == 0) {
3504 if (hs20_parse_osu_method_list(bss, pos, line) < 0)
3505 return 1;
3506 } else if (os_strcmp(buf, "osu_icon") == 0) {
3507 if (hs20_parse_osu_icon(bss, pos, line) < 0)
3508 return 1;
3509 } else if (os_strcmp(buf, "osu_service_desc") == 0) {
3510 if (hs20_parse_osu_service_desc(bss, pos, line) < 0)
3511 return 1;
3512 } else if (os_strcmp(buf, "subscr_remediation_url") == 0) {
3513 os_free(bss->subscr_remediation_url);
3514 bss->subscr_remediation_url = os_strdup(pos);
3515 } else if (os_strcmp(buf, "subscr_remediation_method") == 0) {
3516 bss->subscr_remediation_method = atoi(pos);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07003517#endif /* CONFIG_HS20 */
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08003518#ifdef CONFIG_MBO
3519 } else if (os_strcmp(buf, "mbo") == 0) {
3520 bss->mbo_enabled = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003521 } else if (os_strcmp(buf, "mbo_cell_data_conn_pref") == 0) {
3522 bss->mbo_cell_data_conn_pref = atoi(pos);
3523 } else if (os_strcmp(buf, "oce") == 0) {
3524 bss->oce = atoi(pos);
Dmitry Shmidt57c2d392016-02-23 13:40:19 -08003525#endif /* CONFIG_MBO */
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07003526#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003527#define PARSE_TEST_PROBABILITY(_val) \
3528 } else if (os_strcmp(buf, #_val) == 0) { \
3529 char *end; \
3530 \
3531 conf->_val = strtod(pos, &end); \
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07003532 if (*end || conf->_val < 0.0 || \
3533 conf->_val > 1.0) { \
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003534 wpa_printf(MSG_ERROR, \
3535 "Line %d: Invalid value '%s'", \
3536 line, pos); \
3537 return 1; \
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003538 }
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003539 PARSE_TEST_PROBABILITY(ignore_probe_probability)
3540 PARSE_TEST_PROBABILITY(ignore_auth_probability)
3541 PARSE_TEST_PROBABILITY(ignore_assoc_probability)
3542 PARSE_TEST_PROBABILITY(ignore_reassoc_probability)
3543 PARSE_TEST_PROBABILITY(corrupt_gtk_rekey_mic_probability)
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003544 } else if (os_strcmp(buf, "ecsa_ie_only") == 0) {
3545 conf->ecsa_ie_only = atoi(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003546 } else if (os_strcmp(buf, "bss_load_test") == 0) {
3547 WPA_PUT_LE16(bss->bss_load_test, atoi(pos));
3548 pos = os_strchr(pos, ':');
3549 if (pos == NULL) {
3550 wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
3551 line);
3552 return 1;
3553 }
3554 pos++;
3555 bss->bss_load_test[2] = atoi(pos);
3556 pos = os_strchr(pos, ':');
3557 if (pos == NULL) {
3558 wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
3559 line);
3560 return 1;
3561 }
3562 pos++;
3563 WPA_PUT_LE16(&bss->bss_load_test[3], atoi(pos));
3564 bss->bss_load_test_set = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08003565 } else if (os_strcmp(buf, "radio_measurements") == 0) {
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003566 /*
3567 * DEPRECATED: This parameter will be removed in the future.
3568 * Use rrm_neighbor_report instead.
3569 */
3570 int val = atoi(pos);
3571
3572 if (val & BIT(0))
3573 bss->radio_measurements[0] |=
3574 WLAN_RRM_CAPS_NEIGHBOR_REPORT;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003575 } else if (os_strcmp(buf, "own_ie_override") == 0) {
3576 struct wpabuf *tmp;
3577 size_t len = os_strlen(pos) / 2;
3578
3579 tmp = wpabuf_alloc(len);
3580 if (!tmp)
3581 return 1;
3582
3583 if (hexstr2bin(pos, wpabuf_put(tmp, len), len)) {
3584 wpabuf_free(tmp);
3585 wpa_printf(MSG_ERROR,
3586 "Line %d: Invalid own_ie_override '%s'",
3587 line, pos);
3588 return 1;
3589 }
3590
3591 wpabuf_free(bss->own_ie_override);
3592 bss->own_ie_override = tmp;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003593 } else if (os_strcmp(buf, "sae_reflection_attack") == 0) {
3594 bss->sae_reflection_attack = atoi(pos);
3595 } else if (os_strcmp(buf, "sae_commit_override") == 0) {
3596 wpabuf_free(bss->sae_commit_override);
3597 bss->sae_commit_override = wpabuf_parse_bin(pos);
3598 } else if (os_strcmp(buf, "sae_password") == 0) {
3599 os_free(bss->sae_password);
3600 bss->sae_password = os_strdup(pos);
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003601#endif /* CONFIG_TESTING_OPTIONS */
3602 } else if (os_strcmp(buf, "vendor_elements") == 0) {
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003603 if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003604 return 1;
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003605 } else if (os_strcmp(buf, "assocresp_elements") == 0) {
3606 if (parse_wpabuf_hex(line, buf, &bss->assocresp_elements, pos))
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003607 return 1;
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003608 } else if (os_strcmp(buf, "sae_anti_clogging_threshold") == 0) {
3609 bss->sae_anti_clogging_threshold = atoi(pos);
3610 } else if (os_strcmp(buf, "sae_groups") == 0) {
3611 if (hostapd_parse_intlist(&bss->sae_groups, pos)) {
3612 wpa_printf(MSG_ERROR,
3613 "Line %d: Invalid sae_groups value '%s'",
3614 line, pos);
3615 return 1;
3616 }
3617 } else if (os_strcmp(buf, "local_pwr_constraint") == 0) {
3618 int val = atoi(pos);
3619 if (val < 0 || val > 255) {
3620 wpa_printf(MSG_ERROR, "Line %d: Invalid local_pwr_constraint %d (expected 0..255)",
3621 line, val);
3622 return 1;
3623 }
3624 conf->local_pwr_constraint = val;
3625 } else if (os_strcmp(buf, "spectrum_mgmt_required") == 0) {
3626 conf->spectrum_mgmt_required = atoi(pos);
Dmitry Shmidt0207e232014-09-03 14:58:37 -07003627 } else if (os_strcmp(buf, "wowlan_triggers") == 0) {
3628 os_free(bss->wowlan_triggers);
3629 bss->wowlan_triggers = os_strdup(pos);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003630#ifdef CONFIG_FST
3631 } else if (os_strcmp(buf, "fst_group_id") == 0) {
3632 size_t len = os_strlen(pos);
3633
3634 if (!len || len >= sizeof(conf->fst_cfg.group_id)) {
3635 wpa_printf(MSG_ERROR,
3636 "Line %d: Invalid fst_group_id value '%s'",
3637 line, pos);
3638 return 1;
3639 }
3640
3641 if (conf->fst_cfg.group_id[0]) {
3642 wpa_printf(MSG_ERROR,
3643 "Line %d: Duplicate fst_group value '%s'",
3644 line, pos);
3645 return 1;
3646 }
3647
3648 os_strlcpy(conf->fst_cfg.group_id, pos,
3649 sizeof(conf->fst_cfg.group_id));
3650 } else if (os_strcmp(buf, "fst_priority") == 0) {
3651 char *endp;
3652 long int val;
3653
3654 if (!*pos) {
3655 wpa_printf(MSG_ERROR,
3656 "Line %d: fst_priority value not supplied (expected 1..%u)",
3657 line, FST_MAX_PRIO_VALUE);
3658 return -1;
3659 }
3660
3661 val = strtol(pos, &endp, 0);
3662 if (*endp || val < 1 || val > FST_MAX_PRIO_VALUE) {
3663 wpa_printf(MSG_ERROR,
3664 "Line %d: Invalid fst_priority %ld (%s) (expected 1..%u)",
3665 line, val, pos, FST_MAX_PRIO_VALUE);
3666 return 1;
3667 }
3668 conf->fst_cfg.priority = (u8) val;
3669 } else if (os_strcmp(buf, "fst_llt") == 0) {
3670 char *endp;
3671 long int val;
3672
3673 if (!*pos) {
3674 wpa_printf(MSG_ERROR,
3675 "Line %d: fst_llt value not supplied (expected 1..%u)",
3676 line, FST_MAX_LLT_MS);
3677 return -1;
3678 }
3679 val = strtol(pos, &endp, 0);
Dmitry Shmidte4663042016-04-04 10:07:49 -07003680 if (*endp || val < 1 ||
3681 (unsigned long int) val > FST_MAX_LLT_MS) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003682 wpa_printf(MSG_ERROR,
3683 "Line %d: Invalid fst_llt %ld (%s) (expected 1..%u)",
3684 line, val, pos, FST_MAX_LLT_MS);
3685 return 1;
3686 }
3687 conf->fst_cfg.llt = (u32) val;
3688#endif /* CONFIG_FST */
3689 } else if (os_strcmp(buf, "track_sta_max_num") == 0) {
3690 conf->track_sta_max_num = atoi(pos);
3691 } else if (os_strcmp(buf, "track_sta_max_age") == 0) {
3692 conf->track_sta_max_age = atoi(pos);
3693 } else if (os_strcmp(buf, "no_probe_resp_if_seen_on") == 0) {
3694 os_free(bss->no_probe_resp_if_seen_on);
3695 bss->no_probe_resp_if_seen_on = os_strdup(pos);
3696 } else if (os_strcmp(buf, "no_auth_if_seen_on") == 0) {
3697 os_free(bss->no_auth_if_seen_on);
3698 bss->no_auth_if_seen_on = os_strdup(pos);
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003699 } else if (os_strcmp(buf, "lci") == 0) {
3700 wpabuf_free(conf->lci);
3701 conf->lci = wpabuf_parse_bin(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08003702 if (conf->lci && wpabuf_len(conf->lci) == 0) {
3703 wpabuf_free(conf->lci);
3704 conf->lci = NULL;
3705 }
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003706 } else if (os_strcmp(buf, "civic") == 0) {
3707 wpabuf_free(conf->civic);
3708 conf->civic = wpabuf_parse_bin(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08003709 if (conf->civic && wpabuf_len(conf->civic) == 0) {
3710 wpabuf_free(conf->civic);
3711 conf->civic = NULL;
3712 }
Dmitry Shmidt849734c2016-05-27 09:59:01 -07003713 } else if (os_strcmp(buf, "rrm_neighbor_report") == 0) {
3714 if (atoi(pos))
3715 bss->radio_measurements[0] |=
3716 WLAN_RRM_CAPS_NEIGHBOR_REPORT;
Dmitry Shmidt29333592017-01-09 12:27:11 -08003717 } else if (os_strcmp(buf, "rrm_beacon_report") == 0) {
3718 if (atoi(pos))
3719 bss->radio_measurements[0] |=
3720 WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE |
3721 WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE |
3722 WLAN_RRM_CAPS_BEACON_REPORT_TABLE;
Dmitry Shmidtd5ab1b52016-06-21 12:38:41 -07003723 } else if (os_strcmp(buf, "gas_address3") == 0) {
3724 bss->gas_address3 = atoi(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08003725 } else if (os_strcmp(buf, "stationary_ap") == 0) {
3726 conf->stationary_ap = atoi(pos);
Dmitry Shmidt7d175302016-09-06 13:11:34 -07003727 } else if (os_strcmp(buf, "ftm_responder") == 0) {
3728 bss->ftm_responder = atoi(pos);
3729 } else if (os_strcmp(buf, "ftm_initiator") == 0) {
3730 bss->ftm_initiator = atoi(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08003731#ifdef CONFIG_FILS
3732 } else if (os_strcmp(buf, "fils_cache_id") == 0) {
3733 if (hexstr2bin(pos, bss->fils_cache_id, FILS_CACHE_ID_LEN)) {
3734 wpa_printf(MSG_ERROR,
3735 "Line %d: Invalid fils_cache_id '%s'",
3736 line, pos);
3737 return 1;
3738 }
3739 bss->fils_cache_id_set = 1;
Dmitry Shmidt29333592017-01-09 12:27:11 -08003740 } else if (os_strcmp(buf, "fils_realm") == 0) {
3741 if (parse_fils_realm(bss, pos) < 0)
3742 return 1;
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003743 } else if (os_strcmp(buf, "fils_dh_group") == 0) {
3744 bss->fils_dh_group = atoi(pos);
Dmitry Shmidtebd93af2017-02-21 13:40:44 -08003745 } else if (os_strcmp(buf, "dhcp_server") == 0) {
3746 if (hostapd_parse_ip_addr(pos, &bss->dhcp_server)) {
3747 wpa_printf(MSG_ERROR,
3748 "Line %d: invalid IP address '%s'",
3749 line, pos);
3750 return 1;
3751 }
3752 } else if (os_strcmp(buf, "dhcp_rapid_commit_proxy") == 0) {
3753 bss->dhcp_rapid_commit_proxy = atoi(pos);
3754 } else if (os_strcmp(buf, "fils_hlp_wait_time") == 0) {
3755 bss->fils_hlp_wait_time = atoi(pos);
3756 } else if (os_strcmp(buf, "dhcp_server_port") == 0) {
3757 bss->dhcp_server_port = atoi(pos);
3758 } else if (os_strcmp(buf, "dhcp_relay_port") == 0) {
3759 bss->dhcp_relay_port = atoi(pos);
Dmitry Shmidt9839ecd2016-11-07 11:05:47 -08003760#endif /* CONFIG_FILS */
Dmitry Shmidtabb90a32016-12-05 15:34:39 -08003761 } else if (os_strcmp(buf, "multicast_to_unicast") == 0) {
3762 bss->multicast_to_unicast = atoi(pos);
Dmitry Shmidtd2986c22017-10-23 14:22:09 -07003763 } else if (os_strcmp(buf, "broadcast_deauth") == 0) {
3764 bss->broadcast_deauth = atoi(pos);
3765#ifdef CONFIG_DPP
3766 } else if (os_strcmp(buf, "dpp_connector") == 0) {
3767 os_free(bss->dpp_connector);
3768 bss->dpp_connector = os_strdup(pos);
3769 } else if (os_strcmp(buf, "dpp_netaccesskey") == 0) {
3770 if (parse_wpabuf_hex(line, buf, &bss->dpp_netaccesskey, pos))
3771 return 1;
3772 } else if (os_strcmp(buf, "dpp_netaccesskey_expiry") == 0) {
3773 bss->dpp_netaccesskey_expiry = strtol(pos, NULL, 0);
3774 } else if (os_strcmp(buf, "dpp_csign") == 0) {
3775 if (parse_wpabuf_hex(line, buf, &bss->dpp_csign, pos))
3776 return 1;
3777#endif /* CONFIG_DPP */
3778#ifdef CONFIG_OWE
3779 } else if (os_strcmp(buf, "owe_transition_bssid") == 0) {
3780 if (hwaddr_aton(pos, bss->owe_transition_bssid)) {
3781 wpa_printf(MSG_ERROR,
3782 "Line %d: invalid owe_transition_bssid",
3783 line);
3784 return 1;
3785 }
3786 } else if (os_strcmp(buf, "owe_transition_ssid") == 0) {
3787 size_t slen;
3788 char *str = wpa_config_parse_string(pos, &slen);
3789
3790 if (!str || slen < 1 || slen > SSID_MAX_LEN) {
3791 wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
3792 line, pos);
3793 os_free(str);
3794 return 1;
3795 }
3796 os_memcpy(bss->owe_transition_ssid, str, slen);
3797 bss->owe_transition_ssid_len = slen;
3798 os_free(str);
3799 } else if (os_strcmp(buf, "owe_transition_ifname") == 0) {
3800 os_strlcpy(bss->owe_transition_ifname, pos,
3801 sizeof(bss->owe_transition_ifname));
3802 } else if (os_strcmp(buf, "owe_groups") == 0) {
3803 if (hostapd_parse_intlist(&bss->owe_groups, pos)) {
3804 wpa_printf(MSG_ERROR,
3805 "Line %d: Invalid owe_groups value '%s'",
3806 line, pos);
3807 return 1;
3808 }
3809#endif /* CONFIG_OWE */
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003810 } else {
3811 wpa_printf(MSG_ERROR,
3812 "Line %d: unknown configuration item '%s'",
3813 line, buf);
3814 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003815 }
3816
Dmitry Shmidtd5dc24e2014-03-12 14:22:04 -07003817 return 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003818}
3819
3820
Dmitry Shmidt04949592012-07-19 12:16:46 -07003821/**
3822 * hostapd_config_read - Read and parse a configuration file
3823 * @fname: Configuration file name (including path, if needed)
3824 * Returns: Allocated configuration data structure
3825 */
3826struct hostapd_config * hostapd_config_read(const char *fname)
3827{
3828 struct hostapd_config *conf;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003829 FILE *f;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003830 char buf[4096], *pos;
Dmitry Shmidt04949592012-07-19 12:16:46 -07003831 int line = 0;
3832 int errors = 0;
3833 size_t i;
3834
3835 f = fopen(fname, "r");
3836 if (f == NULL) {
3837 wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
3838 "for reading.", fname);
3839 return NULL;
3840 }
3841
3842 conf = hostapd_config_defaults();
3843 if (conf == NULL) {
3844 fclose(f);
3845 return NULL;
3846 }
3847
3848 /* set default driver based on configuration */
3849 conf->driver = wpa_drivers[0];
3850 if (conf->driver == NULL) {
3851 wpa_printf(MSG_ERROR, "No driver wrappers registered!");
3852 hostapd_config_free(conf);
3853 fclose(f);
3854 return NULL;
3855 }
3856
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003857 conf->last_bss = conf->bss[0];
Dmitry Shmidt04949592012-07-19 12:16:46 -07003858
3859 while (fgets(buf, sizeof(buf), f)) {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07003860 struct hostapd_bss_config *bss;
3861
Dmitry Shmidt04949592012-07-19 12:16:46 -07003862 bss = conf->last_bss;
3863 line++;
3864
3865 if (buf[0] == '#')
3866 continue;
3867 pos = buf;
3868 while (*pos != '\0') {
3869 if (*pos == '\n') {
3870 *pos = '\0';
3871 break;
3872 }
3873 pos++;
3874 }
3875 if (buf[0] == '\0')
3876 continue;
3877
3878 pos = os_strchr(buf, '=');
3879 if (pos == NULL) {
3880 wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
3881 line, buf);
3882 errors++;
3883 continue;
3884 }
3885 *pos = '\0';
3886 pos++;
3887 errors += hostapd_config_fill(conf, bss, buf, pos, line);
3888 }
3889
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003890 fclose(f);
3891
Dmitry Shmidt04949592012-07-19 12:16:46 -07003892 for (i = 0; i < conf->num_bss; i++)
Dmitry Shmidt71757432014-06-02 13:50:35 -07003893 hostapd_set_security_params(conf->bss[i], 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003894
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003895 if (hostapd_config_check(conf, 1))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07003896 errors++;
3897
3898#ifndef WPA_IGNORE_CONFIG_ERRORS
3899 if (errors) {
3900 wpa_printf(MSG_ERROR, "%d errors found in configuration file "
3901 "'%s'", errors, fname);
3902 hostapd_config_free(conf);
3903 conf = NULL;
3904 }
3905#endif /* WPA_IGNORE_CONFIG_ERRORS */
3906
3907 return conf;
3908}
Dmitry Shmidt04949592012-07-19 12:16:46 -07003909
3910
3911int hostapd_set_iface(struct hostapd_config *conf,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08003912 struct hostapd_bss_config *bss, const char *field,
3913 char *value)
Dmitry Shmidt04949592012-07-19 12:16:46 -07003914{
3915 int errors;
3916 size_t i;
3917
3918 errors = hostapd_config_fill(conf, bss, field, value, 0);
3919 if (errors) {
3920 wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
3921 "to value '%s'", field, value);
3922 return -1;
3923 }
3924
3925 for (i = 0; i < conf->num_bss; i++)
Dmitry Shmidt71757432014-06-02 13:50:35 -07003926 hostapd_set_security_params(conf->bss[i], 0);
Dmitry Shmidt04949592012-07-19 12:16:46 -07003927
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003928 if (hostapd_config_check(conf, 0)) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07003929 wpa_printf(MSG_ERROR, "Configuration check failed");
3930 return -1;
3931 }
3932
3933 return 0;
3934}