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