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