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