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