config_file.c revision 1.1.1.8 1 1.1 christos /*
2 1.1 christos * hostapd / Configuration file parser
3 1.1.1.7 christos * Copyright (c) 2003-2018, Jouni Malinen <j (at) w1.fi>
4 1.1 christos *
5 1.1.1.3 christos * This software may be distributed under the terms of the BSD license.
6 1.1.1.3 christos * 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.1.7 christos #include "crypto/sha256.h"
18 1.1.1.7 christos #include "crypto/tls.h"
19 1.1 christos #include "drivers/driver.h"
20 1.1 christos #include "eap_server/eap.h"
21 1.1 christos #include "radius/radius_client.h"
22 1.1 christos #include "ap/wpa_auth.h"
23 1.1 christos #include "ap/ap_config.h"
24 1.1 christos #include "config_file.h"
25 1.1 christos
26 1.1 christos
27 1.1 christos #ifndef CONFIG_NO_VLAN
28 1.1 christos static int hostapd_config_read_vlan_file(struct hostapd_bss_config *bss,
29 1.1 christos const char *fname)
30 1.1 christos {
31 1.1 christos FILE *f;
32 1.1.1.8 christos char buf[128], *pos, *pos2, *pos3;
33 1.1 christos int line = 0, vlan_id;
34 1.1 christos struct hostapd_vlan *vlan;
35 1.1 christos
36 1.1 christos f = fopen(fname, "r");
37 1.1 christos if (!f) {
38 1.1 christos wpa_printf(MSG_ERROR, "VLAN file '%s' not readable.", fname);
39 1.1 christos return -1;
40 1.1 christos }
41 1.1 christos
42 1.1 christos while (fgets(buf, sizeof(buf), f)) {
43 1.1 christos line++;
44 1.1 christos
45 1.1 christos if (buf[0] == '#')
46 1.1 christos continue;
47 1.1 christos pos = buf;
48 1.1 christos while (*pos != '\0') {
49 1.1 christos if (*pos == '\n') {
50 1.1 christos *pos = '\0';
51 1.1 christos break;
52 1.1 christos }
53 1.1 christos pos++;
54 1.1 christos }
55 1.1 christos if (buf[0] == '\0')
56 1.1 christos continue;
57 1.1 christos
58 1.1 christos if (buf[0] == '*') {
59 1.1 christos vlan_id = VLAN_ID_WILDCARD;
60 1.1 christos pos = buf + 1;
61 1.1 christos } else {
62 1.1 christos vlan_id = strtol(buf, &pos, 10);
63 1.1 christos if (buf == pos || vlan_id < 1 ||
64 1.1 christos vlan_id > MAX_VLAN_ID) {
65 1.1 christos wpa_printf(MSG_ERROR, "Invalid VLAN ID at "
66 1.1 christos "line %d in '%s'", line, fname);
67 1.1 christos fclose(f);
68 1.1 christos return -1;
69 1.1 christos }
70 1.1 christos }
71 1.1 christos
72 1.1 christos while (*pos == ' ' || *pos == '\t')
73 1.1 christos pos++;
74 1.1 christos pos2 = pos;
75 1.1 christos while (*pos2 != ' ' && *pos2 != '\t' && *pos2 != '\0')
76 1.1 christos pos2++;
77 1.1.1.8 christos
78 1.1.1.8 christos if (*pos2 != '\0')
79 1.1.1.8 christos *(pos2++) = '\0';
80 1.1.1.8 christos
81 1.1 christos if (*pos == '\0' || os_strlen(pos) > IFNAMSIZ) {
82 1.1 christos wpa_printf(MSG_ERROR, "Invalid VLAN ifname at line %d "
83 1.1 christos "in '%s'", line, fname);
84 1.1 christos fclose(f);
85 1.1 christos return -1;
86 1.1 christos }
87 1.1 christos
88 1.1.1.8 christos while (*pos2 == ' ' || *pos2 == '\t')
89 1.1.1.8 christos pos2++;
90 1.1.1.8 christos pos3 = pos2;
91 1.1.1.8 christos while (*pos3 != ' ' && *pos3 != '\t' && *pos3 != '\0')
92 1.1.1.8 christos pos3++;
93 1.1.1.8 christos *pos3 = '\0';
94 1.1.1.8 christos
95 1.1.1.4 christos vlan = os_zalloc(sizeof(*vlan));
96 1.1 christos if (vlan == NULL) {
97 1.1 christos wpa_printf(MSG_ERROR, "Out of memory while reading "
98 1.1 christos "VLAN interfaces from '%s'", fname);
99 1.1 christos fclose(f);
100 1.1 christos return -1;
101 1.1 christos }
102 1.1 christos
103 1.1 christos vlan->vlan_id = vlan_id;
104 1.1.1.6 christos vlan->vlan_desc.untagged = vlan_id;
105 1.1.1.6 christos vlan->vlan_desc.notempty = !!vlan_id;
106 1.1 christos os_strlcpy(vlan->ifname, pos, sizeof(vlan->ifname));
107 1.1.1.8 christos os_strlcpy(vlan->bridge, pos2, sizeof(vlan->bridge));
108 1.1.1.4 christos vlan->next = bss->vlan;
109 1.1.1.4 christos bss->vlan = vlan;
110 1.1 christos }
111 1.1 christos
112 1.1 christos fclose(f);
113 1.1 christos
114 1.1 christos return 0;
115 1.1 christos }
116 1.1 christos #endif /* CONFIG_NO_VLAN */
117 1.1 christos
118 1.1 christos
119 1.1.1.7 christos int hostapd_acl_comp(const void *a, const void *b)
120 1.1 christos {
121 1.1 christos const struct mac_acl_entry *aa = a;
122 1.1 christos const struct mac_acl_entry *bb = b;
123 1.1 christos return os_memcmp(aa->addr, bb->addr, sizeof(macaddr));
124 1.1 christos }
125 1.1 christos
126 1.1 christos
127 1.1.1.7 christos int hostapd_add_acl_maclist(struct mac_acl_entry **acl, int *num,
128 1.1.1.7 christos int vlan_id, const u8 *addr)
129 1.1.1.7 christos {
130 1.1.1.7 christos struct mac_acl_entry *newacl;
131 1.1.1.7 christos
132 1.1.1.7 christos newacl = os_realloc_array(*acl, *num + 1, sizeof(**acl));
133 1.1.1.7 christos if (!newacl) {
134 1.1.1.7 christos wpa_printf(MSG_ERROR, "MAC list reallocation failed");
135 1.1.1.7 christos return -1;
136 1.1.1.7 christos }
137 1.1.1.7 christos
138 1.1.1.7 christos *acl = newacl;
139 1.1.1.7 christos os_memcpy((*acl)[*num].addr, addr, ETH_ALEN);
140 1.1.1.7 christos os_memset(&(*acl)[*num].vlan_id, 0, sizeof((*acl)[*num].vlan_id));
141 1.1.1.7 christos (*acl)[*num].vlan_id.untagged = vlan_id;
142 1.1.1.7 christos (*acl)[*num].vlan_id.notempty = !!vlan_id;
143 1.1.1.7 christos (*num)++;
144 1.1.1.7 christos
145 1.1.1.7 christos return 0;
146 1.1.1.7 christos }
147 1.1.1.7 christos
148 1.1.1.7 christos
149 1.1.1.7 christos void hostapd_remove_acl_mac(struct mac_acl_entry **acl, int *num,
150 1.1.1.7 christos const u8 *addr)
151 1.1.1.7 christos {
152 1.1.1.7 christos int i = 0;
153 1.1.1.7 christos
154 1.1.1.7 christos while (i < *num) {
155 1.1.1.7 christos if (os_memcmp((*acl)[i].addr, addr, ETH_ALEN) == 0) {
156 1.1.1.7 christos os_remove_in_array(*acl, *num, sizeof(**acl), i);
157 1.1.1.7 christos (*num)--;
158 1.1.1.7 christos } else {
159 1.1.1.7 christos i++;
160 1.1.1.7 christos }
161 1.1.1.7 christos }
162 1.1.1.7 christos }
163 1.1.1.7 christos
164 1.1.1.7 christos
165 1.1 christos static int hostapd_config_read_maclist(const char *fname,
166 1.1 christos struct mac_acl_entry **acl, int *num)
167 1.1 christos {
168 1.1 christos FILE *f;
169 1.1 christos char buf[128], *pos;
170 1.1 christos int line = 0;
171 1.1 christos u8 addr[ETH_ALEN];
172 1.1 christos int vlan_id;
173 1.1 christos
174 1.1 christos f = fopen(fname, "r");
175 1.1 christos if (!f) {
176 1.1 christos wpa_printf(MSG_ERROR, "MAC list file '%s' not found.", fname);
177 1.1 christos return -1;
178 1.1 christos }
179 1.1 christos
180 1.1 christos while (fgets(buf, sizeof(buf), f)) {
181 1.1.1.7 christos int rem = 0;
182 1.1.1.4 christos
183 1.1 christos line++;
184 1.1 christos
185 1.1 christos if (buf[0] == '#')
186 1.1 christos continue;
187 1.1 christos pos = buf;
188 1.1 christos while (*pos != '\0') {
189 1.1 christos if (*pos == '\n') {
190 1.1 christos *pos = '\0';
191 1.1 christos break;
192 1.1 christos }
193 1.1 christos pos++;
194 1.1 christos }
195 1.1 christos if (buf[0] == '\0')
196 1.1 christos continue;
197 1.1.1.4 christos pos = buf;
198 1.1.1.4 christos if (buf[0] == '-') {
199 1.1.1.4 christos rem = 1;
200 1.1.1.4 christos pos++;
201 1.1.1.4 christos }
202 1.1 christos
203 1.1.1.4 christos if (hwaddr_aton(pos, addr)) {
204 1.1 christos wpa_printf(MSG_ERROR, "Invalid MAC address '%s' at "
205 1.1.1.4 christos "line %d in '%s'", pos, line, fname);
206 1.1 christos fclose(f);
207 1.1 christos return -1;
208 1.1 christos }
209 1.1 christos
210 1.1.1.4 christos if (rem) {
211 1.1.1.7 christos hostapd_remove_acl_mac(acl, num, addr);
212 1.1.1.4 christos continue;
213 1.1.1.4 christos }
214 1.1 christos vlan_id = 0;
215 1.1 christos pos = buf;
216 1.1 christos while (*pos != '\0' && *pos != ' ' && *pos != '\t')
217 1.1 christos pos++;
218 1.1 christos while (*pos == ' ' || *pos == '\t')
219 1.1 christos pos++;
220 1.1 christos if (*pos != '\0')
221 1.1 christos vlan_id = atoi(pos);
222 1.1 christos
223 1.1.1.7 christos if (hostapd_add_acl_maclist(acl, num, vlan_id, addr) < 0) {
224 1.1 christos fclose(f);
225 1.1 christos return -1;
226 1.1 christos }
227 1.1 christos }
228 1.1 christos
229 1.1 christos fclose(f);
230 1.1 christos
231 1.1.1.7 christos if (*acl)
232 1.1.1.7 christos qsort(*acl, *num, sizeof(**acl), hostapd_acl_comp);
233 1.1 christos
234 1.1 christos return 0;
235 1.1 christos }
236 1.1 christos
237 1.1 christos
238 1.1 christos #ifdef EAP_SERVER
239 1.1.1.7 christos
240 1.1.1.7 christos static int hostapd_config_eap_user_salted(struct hostapd_eap_user *user,
241 1.1.1.7 christos const char *hash, size_t len,
242 1.1.1.7 christos char **pos, int line,
243 1.1.1.7 christos const char *fname)
244 1.1.1.7 christos {
245 1.1.1.7 christos char *pos2 = *pos;
246 1.1.1.7 christos
247 1.1.1.7 christos while (*pos2 != '\0' && *pos2 != ' ' && *pos2 != '\t' && *pos2 != '#')
248 1.1.1.7 christos pos2++;
249 1.1.1.7 christos
250 1.1.1.7 christos if (pos2 - *pos < (int) (2 * (len + 1))) { /* at least 1 byte of salt */
251 1.1.1.7 christos wpa_printf(MSG_ERROR,
252 1.1.1.7 christos "Invalid salted %s hash on line %d in '%s'",
253 1.1.1.7 christos hash, line, fname);
254 1.1.1.7 christos return -1;
255 1.1.1.7 christos }
256 1.1.1.7 christos
257 1.1.1.7 christos user->password = os_malloc(len);
258 1.1.1.7 christos if (!user->password) {
259 1.1.1.7 christos wpa_printf(MSG_ERROR,
260 1.1.1.7 christos "Failed to allocate memory for salted %s hash",
261 1.1.1.7 christos hash);
262 1.1.1.7 christos return -1;
263 1.1.1.7 christos }
264 1.1.1.7 christos
265 1.1.1.7 christos if (hexstr2bin(*pos, user->password, len) < 0) {
266 1.1.1.7 christos wpa_printf(MSG_ERROR,
267 1.1.1.7 christos "Invalid salted password on line %d in '%s'",
268 1.1.1.7 christos line, fname);
269 1.1.1.7 christos return -1;
270 1.1.1.7 christos }
271 1.1.1.7 christos user->password_len = len;
272 1.1.1.7 christos *pos += 2 * len;
273 1.1.1.7 christos
274 1.1.1.7 christos user->salt_len = (pos2 - *pos) / 2;
275 1.1.1.7 christos user->salt = os_malloc(user->salt_len);
276 1.1.1.7 christos if (!user->salt) {
277 1.1.1.7 christos wpa_printf(MSG_ERROR,
278 1.1.1.7 christos "Failed to allocate memory for salted %s hash",
279 1.1.1.7 christos hash);
280 1.1.1.7 christos return -1;
281 1.1.1.7 christos }
282 1.1.1.7 christos
283 1.1.1.7 christos if (hexstr2bin(*pos, user->salt, user->salt_len) < 0) {
284 1.1.1.7 christos wpa_printf(MSG_ERROR,
285 1.1.1.7 christos "Invalid salt for password on line %d in '%s'",
286 1.1.1.7 christos line, fname);
287 1.1.1.7 christos return -1;
288 1.1.1.7 christos }
289 1.1.1.7 christos
290 1.1.1.7 christos *pos = pos2;
291 1.1.1.7 christos return 0;
292 1.1.1.7 christos }
293 1.1.1.7 christos
294 1.1.1.7 christos
295 1.1 christos static int hostapd_config_read_eap_user(const char *fname,
296 1.1 christos struct hostapd_bss_config *conf)
297 1.1 christos {
298 1.1 christos FILE *f;
299 1.1 christos char buf[512], *pos, *start, *pos2;
300 1.1 christos int line = 0, ret = 0, num_methods;
301 1.1.1.5 christos struct hostapd_eap_user *user = NULL, *tail = NULL, *new_user = NULL;
302 1.1 christos
303 1.1.1.3 christos if (os_strncmp(fname, "sqlite:", 7) == 0) {
304 1.1.1.6 christos #ifdef CONFIG_SQLITE
305 1.1.1.3 christos os_free(conf->eap_user_sqlite);
306 1.1.1.3 christos conf->eap_user_sqlite = os_strdup(fname + 7);
307 1.1.1.3 christos return 0;
308 1.1.1.6 christos #else /* CONFIG_SQLITE */
309 1.1.1.6 christos wpa_printf(MSG_ERROR,
310 1.1.1.6 christos "EAP user file in SQLite DB, but CONFIG_SQLITE was not enabled in the build.");
311 1.1.1.6 christos return -1;
312 1.1.1.6 christos #endif /* CONFIG_SQLITE */
313 1.1.1.3 christos }
314 1.1.1.3 christos
315 1.1 christos f = fopen(fname, "r");
316 1.1 christos if (!f) {
317 1.1 christos wpa_printf(MSG_ERROR, "EAP user file '%s' not found.", fname);
318 1.1 christos return -1;
319 1.1 christos }
320 1.1 christos
321 1.1 christos /* Lines: "user" METHOD,METHOD2 "password" (password optional) */
322 1.1 christos while (fgets(buf, sizeof(buf), f)) {
323 1.1 christos line++;
324 1.1 christos
325 1.1 christos if (buf[0] == '#')
326 1.1 christos continue;
327 1.1 christos pos = buf;
328 1.1 christos while (*pos != '\0') {
329 1.1 christos if (*pos == '\n') {
330 1.1 christos *pos = '\0';
331 1.1 christos break;
332 1.1 christos }
333 1.1 christos pos++;
334 1.1 christos }
335 1.1 christos if (buf[0] == '\0')
336 1.1 christos continue;
337 1.1 christos
338 1.1.1.4 christos #ifndef CONFIG_NO_RADIUS
339 1.1.1.4 christos if (user && os_strncmp(buf, "radius_accept_attr=", 19) == 0) {
340 1.1.1.4 christos struct hostapd_radius_attr *attr, *a;
341 1.1.1.4 christos attr = hostapd_parse_radius_attr(buf + 19);
342 1.1.1.4 christos if (attr == NULL) {
343 1.1.1.4 christos wpa_printf(MSG_ERROR, "Invalid radius_auth_req_attr: %s",
344 1.1.1.4 christos buf + 19);
345 1.1.1.4 christos user = NULL; /* already in the BSS list */
346 1.1.1.4 christos goto failed;
347 1.1.1.4 christos }
348 1.1.1.4 christos if (user->accept_attr == NULL) {
349 1.1.1.4 christos user->accept_attr = attr;
350 1.1.1.4 christos } else {
351 1.1.1.4 christos a = user->accept_attr;
352 1.1.1.4 christos while (a->next)
353 1.1.1.4 christos a = a->next;
354 1.1.1.4 christos a->next = attr;
355 1.1.1.4 christos }
356 1.1.1.4 christos continue;
357 1.1.1.4 christos }
358 1.1.1.4 christos #endif /* CONFIG_NO_RADIUS */
359 1.1.1.4 christos
360 1.1 christos user = NULL;
361 1.1 christos
362 1.1 christos if (buf[0] != '"' && buf[0] != '*') {
363 1.1 christos wpa_printf(MSG_ERROR, "Invalid EAP identity (no \" in "
364 1.1 christos "start) on line %d in '%s'", line, fname);
365 1.1 christos goto failed;
366 1.1 christos }
367 1.1 christos
368 1.1 christos user = os_zalloc(sizeof(*user));
369 1.1 christos if (user == NULL) {
370 1.1 christos wpa_printf(MSG_ERROR, "EAP user allocation failed");
371 1.1 christos goto failed;
372 1.1 christos }
373 1.1 christos user->force_version = -1;
374 1.1 christos
375 1.1 christos if (buf[0] == '*') {
376 1.1 christos pos = buf;
377 1.1 christos } else {
378 1.1 christos pos = buf + 1;
379 1.1 christos start = pos;
380 1.1 christos while (*pos != '"' && *pos != '\0')
381 1.1 christos pos++;
382 1.1 christos if (*pos == '\0') {
383 1.1 christos wpa_printf(MSG_ERROR, "Invalid EAP identity "
384 1.1 christos "(no \" in end) on line %d in '%s'",
385 1.1 christos line, fname);
386 1.1 christos goto failed;
387 1.1 christos }
388 1.1 christos
389 1.1.1.7 christos user->identity = os_memdup(start, pos - start);
390 1.1 christos if (user->identity == NULL) {
391 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate "
392 1.1 christos "memory for EAP identity");
393 1.1 christos goto failed;
394 1.1 christos }
395 1.1 christos user->identity_len = pos - start;
396 1.1 christos
397 1.1 christos if (pos[0] == '"' && pos[1] == '*') {
398 1.1 christos user->wildcard_prefix = 1;
399 1.1 christos pos++;
400 1.1 christos }
401 1.1 christos }
402 1.1 christos pos++;
403 1.1 christos while (*pos == ' ' || *pos == '\t')
404 1.1 christos pos++;
405 1.1 christos
406 1.1 christos if (*pos == '\0') {
407 1.1 christos wpa_printf(MSG_ERROR, "No EAP method on line %d in "
408 1.1 christos "'%s'", line, fname);
409 1.1 christos goto failed;
410 1.1 christos }
411 1.1 christos
412 1.1 christos start = pos;
413 1.1 christos while (*pos != ' ' && *pos != '\t' && *pos != '\0')
414 1.1 christos pos++;
415 1.1 christos if (*pos == '\0') {
416 1.1 christos pos = NULL;
417 1.1 christos } else {
418 1.1 christos *pos = '\0';
419 1.1 christos pos++;
420 1.1 christos }
421 1.1 christos num_methods = 0;
422 1.1 christos while (*start) {
423 1.1 christos char *pos3 = os_strchr(start, ',');
424 1.1 christos if (pos3) {
425 1.1 christos *pos3++ = '\0';
426 1.1 christos }
427 1.1 christos user->methods[num_methods].method =
428 1.1 christos eap_server_get_type(
429 1.1 christos start,
430 1.1 christos &user->methods[num_methods].vendor);
431 1.1 christos if (user->methods[num_methods].vendor ==
432 1.1 christos EAP_VENDOR_IETF &&
433 1.1 christos user->methods[num_methods].method == EAP_TYPE_NONE)
434 1.1 christos {
435 1.1 christos if (os_strcmp(start, "TTLS-PAP") == 0) {
436 1.1 christos user->ttls_auth |= EAP_TTLS_AUTH_PAP;
437 1.1 christos goto skip_eap;
438 1.1 christos }
439 1.1 christos if (os_strcmp(start, "TTLS-CHAP") == 0) {
440 1.1 christos user->ttls_auth |= EAP_TTLS_AUTH_CHAP;
441 1.1 christos goto skip_eap;
442 1.1 christos }
443 1.1 christos if (os_strcmp(start, "TTLS-MSCHAP") == 0) {
444 1.1 christos user->ttls_auth |=
445 1.1 christos EAP_TTLS_AUTH_MSCHAP;
446 1.1 christos goto skip_eap;
447 1.1 christos }
448 1.1 christos if (os_strcmp(start, "TTLS-MSCHAPV2") == 0) {
449 1.1 christos user->ttls_auth |=
450 1.1 christos EAP_TTLS_AUTH_MSCHAPV2;
451 1.1 christos goto skip_eap;
452 1.1 christos }
453 1.1.1.4 christos if (os_strcmp(start, "MACACL") == 0) {
454 1.1.1.4 christos user->macacl = 1;
455 1.1.1.4 christos goto skip_eap;
456 1.1.1.4 christos }
457 1.1 christos wpa_printf(MSG_ERROR, "Unsupported EAP type "
458 1.1 christos "'%s' on line %d in '%s'",
459 1.1 christos start, line, fname);
460 1.1 christos goto failed;
461 1.1 christos }
462 1.1 christos
463 1.1 christos num_methods++;
464 1.1.1.3 christos if (num_methods >= EAP_MAX_METHODS)
465 1.1 christos break;
466 1.1 christos skip_eap:
467 1.1 christos if (pos3 == NULL)
468 1.1 christos break;
469 1.1 christos start = pos3;
470 1.1 christos }
471 1.1.1.4 christos if (num_methods == 0 && user->ttls_auth == 0 && !user->macacl) {
472 1.1 christos wpa_printf(MSG_ERROR, "No EAP types configured on "
473 1.1 christos "line %d in '%s'", line, fname);
474 1.1 christos goto failed;
475 1.1 christos }
476 1.1 christos
477 1.1 christos if (pos == NULL)
478 1.1 christos goto done;
479 1.1 christos
480 1.1 christos while (*pos == ' ' || *pos == '\t')
481 1.1 christos pos++;
482 1.1 christos if (*pos == '\0')
483 1.1 christos goto done;
484 1.1 christos
485 1.1 christos if (os_strncmp(pos, "[ver=0]", 7) == 0) {
486 1.1 christos user->force_version = 0;
487 1.1 christos goto done;
488 1.1 christos }
489 1.1 christos
490 1.1 christos if (os_strncmp(pos, "[ver=1]", 7) == 0) {
491 1.1 christos user->force_version = 1;
492 1.1 christos goto done;
493 1.1 christos }
494 1.1 christos
495 1.1 christos if (os_strncmp(pos, "[2]", 3) == 0) {
496 1.1 christos user->phase2 = 1;
497 1.1 christos goto done;
498 1.1 christos }
499 1.1 christos
500 1.1 christos if (*pos == '"') {
501 1.1 christos pos++;
502 1.1 christos start = pos;
503 1.1 christos while (*pos != '"' && *pos != '\0')
504 1.1 christos pos++;
505 1.1 christos if (*pos == '\0') {
506 1.1 christos wpa_printf(MSG_ERROR, "Invalid EAP password "
507 1.1 christos "(no \" in end) on line %d in '%s'",
508 1.1 christos line, fname);
509 1.1 christos goto failed;
510 1.1 christos }
511 1.1 christos
512 1.1.1.7 christos user->password = os_memdup(start, pos - start);
513 1.1 christos if (user->password == NULL) {
514 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate "
515 1.1 christos "memory for EAP password");
516 1.1 christos goto failed;
517 1.1 christos }
518 1.1 christos user->password_len = pos - start;
519 1.1 christos
520 1.1 christos pos++;
521 1.1 christos } else if (os_strncmp(pos, "hash:", 5) == 0) {
522 1.1 christos pos += 5;
523 1.1 christos pos2 = pos;
524 1.1 christos while (*pos2 != '\0' && *pos2 != ' ' &&
525 1.1 christos *pos2 != '\t' && *pos2 != '#')
526 1.1 christos pos2++;
527 1.1 christos if (pos2 - pos != 32) {
528 1.1 christos wpa_printf(MSG_ERROR, "Invalid password hash "
529 1.1 christos "on line %d in '%s'", line, fname);
530 1.1 christos goto failed;
531 1.1 christos }
532 1.1 christos user->password = os_malloc(16);
533 1.1 christos if (user->password == NULL) {
534 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate "
535 1.1 christos "memory for EAP password hash");
536 1.1 christos goto failed;
537 1.1 christos }
538 1.1 christos if (hexstr2bin(pos, user->password, 16) < 0) {
539 1.1 christos wpa_printf(MSG_ERROR, "Invalid hash password "
540 1.1 christos "on line %d in '%s'", line, fname);
541 1.1 christos goto failed;
542 1.1 christos }
543 1.1 christos user->password_len = 16;
544 1.1 christos user->password_hash = 1;
545 1.1 christos pos = pos2;
546 1.1.1.7 christos } else if (os_strncmp(pos, "ssha1:", 6) == 0) {
547 1.1.1.7 christos pos += 6;
548 1.1.1.7 christos if (hostapd_config_eap_user_salted(user, "sha1", 20,
549 1.1.1.7 christos &pos,
550 1.1.1.7 christos line, fname) < 0)
551 1.1.1.7 christos goto failed;
552 1.1.1.7 christos } else if (os_strncmp(pos, "ssha256:", 8) == 0) {
553 1.1.1.7 christos pos += 8;
554 1.1.1.7 christos if (hostapd_config_eap_user_salted(user, "sha256", 32,
555 1.1.1.7 christos &pos,
556 1.1.1.7 christos line, fname) < 0)
557 1.1.1.7 christos goto failed;
558 1.1.1.7 christos } else if (os_strncmp(pos, "ssha512:", 8) == 0) {
559 1.1.1.7 christos pos += 8;
560 1.1.1.7 christos if (hostapd_config_eap_user_salted(user, "sha512", 64,
561 1.1.1.7 christos &pos,
562 1.1.1.7 christos line, fname) < 0)
563 1.1.1.7 christos goto failed;
564 1.1 christos } else {
565 1.1 christos pos2 = pos;
566 1.1 christos while (*pos2 != '\0' && *pos2 != ' ' &&
567 1.1 christos *pos2 != '\t' && *pos2 != '#')
568 1.1 christos pos2++;
569 1.1 christos if ((pos2 - pos) & 1) {
570 1.1 christos wpa_printf(MSG_ERROR, "Invalid hex password "
571 1.1 christos "on line %d in '%s'", line, fname);
572 1.1 christos goto failed;
573 1.1 christos }
574 1.1 christos user->password = os_malloc((pos2 - pos) / 2);
575 1.1 christos if (user->password == NULL) {
576 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate "
577 1.1 christos "memory for EAP password");
578 1.1 christos goto failed;
579 1.1 christos }
580 1.1 christos if (hexstr2bin(pos, user->password,
581 1.1 christos (pos2 - pos) / 2) < 0) {
582 1.1 christos wpa_printf(MSG_ERROR, "Invalid hex password "
583 1.1 christos "on line %d in '%s'", line, fname);
584 1.1 christos goto failed;
585 1.1 christos }
586 1.1 christos user->password_len = (pos2 - pos) / 2;
587 1.1 christos pos = pos2;
588 1.1 christos }
589 1.1 christos
590 1.1 christos while (*pos == ' ' || *pos == '\t')
591 1.1 christos pos++;
592 1.1 christos if (os_strncmp(pos, "[2]", 3) == 0) {
593 1.1 christos user->phase2 = 1;
594 1.1 christos }
595 1.1 christos
596 1.1 christos done:
597 1.1 christos if (tail == NULL) {
598 1.1.1.5 christos tail = new_user = user;
599 1.1 christos } else {
600 1.1 christos tail->next = user;
601 1.1 christos tail = user;
602 1.1 christos }
603 1.1 christos continue;
604 1.1 christos
605 1.1 christos failed:
606 1.1.1.4 christos if (user)
607 1.1.1.4 christos hostapd_config_free_eap_user(user);
608 1.1 christos ret = -1;
609 1.1 christos break;
610 1.1 christos }
611 1.1 christos
612 1.1 christos fclose(f);
613 1.1 christos
614 1.1.1.5 christos if (ret == 0) {
615 1.1.1.7 christos hostapd_config_free_eap_users(conf->eap_user);
616 1.1.1.5 christos conf->eap_user = new_user;
617 1.1.1.7 christos } else {
618 1.1.1.7 christos hostapd_config_free_eap_users(new_user);
619 1.1.1.5 christos }
620 1.1.1.5 christos
621 1.1 christos return ret;
622 1.1 christos }
623 1.1.1.7 christos
624 1.1 christos #endif /* EAP_SERVER */
625 1.1 christos
626 1.1 christos
627 1.1 christos #ifndef CONFIG_NO_RADIUS
628 1.1 christos static int
629 1.1 christos hostapd_config_read_radius_addr(struct hostapd_radius_server **server,
630 1.1 christos int *num_server, const char *val, int def_port,
631 1.1 christos struct hostapd_radius_server **curr_serv)
632 1.1 christos {
633 1.1 christos struct hostapd_radius_server *nserv;
634 1.1 christos int ret;
635 1.1 christos static int server_index = 1;
636 1.1 christos
637 1.1.1.3 christos nserv = os_realloc_array(*server, *num_server + 1, sizeof(*nserv));
638 1.1 christos if (nserv == NULL)
639 1.1 christos return -1;
640 1.1 christos
641 1.1 christos *server = nserv;
642 1.1 christos nserv = &nserv[*num_server];
643 1.1 christos (*num_server)++;
644 1.1 christos (*curr_serv) = nserv;
645 1.1 christos
646 1.1 christos os_memset(nserv, 0, sizeof(*nserv));
647 1.1 christos nserv->port = def_port;
648 1.1 christos ret = hostapd_parse_ip_addr(val, &nserv->addr);
649 1.1 christos nserv->index = server_index++;
650 1.1 christos
651 1.1 christos return ret;
652 1.1 christos }
653 1.1.1.3 christos
654 1.1.1.3 christos
655 1.1.1.3 christos
656 1.1.1.6 christos static int hostapd_parse_das_client(struct hostapd_bss_config *bss, char *val)
657 1.1.1.3 christos {
658 1.1.1.3 christos char *secret;
659 1.1.1.3 christos
660 1.1.1.3 christos secret = os_strchr(val, ' ');
661 1.1.1.3 christos if (secret == NULL)
662 1.1.1.3 christos return -1;
663 1.1.1.3 christos
664 1.1.1.6 christos *secret++ = '\0';
665 1.1.1.3 christos
666 1.1.1.3 christos if (hostapd_parse_ip_addr(val, &bss->radius_das_client_addr))
667 1.1.1.3 christos return -1;
668 1.1.1.3 christos
669 1.1.1.3 christos os_free(bss->radius_das_shared_secret);
670 1.1.1.3 christos bss->radius_das_shared_secret = (u8 *) os_strdup(secret);
671 1.1.1.3 christos if (bss->radius_das_shared_secret == NULL)
672 1.1.1.3 christos return -1;
673 1.1.1.3 christos bss->radius_das_shared_secret_len = os_strlen(secret);
674 1.1.1.3 christos
675 1.1.1.3 christos return 0;
676 1.1.1.3 christos }
677 1.1 christos #endif /* CONFIG_NO_RADIUS */
678 1.1 christos
679 1.1 christos
680 1.1 christos static int hostapd_config_parse_key_mgmt(int line, const char *value)
681 1.1 christos {
682 1.1 christos int val = 0, last;
683 1.1 christos char *start, *end, *buf;
684 1.1 christos
685 1.1 christos buf = os_strdup(value);
686 1.1 christos if (buf == NULL)
687 1.1 christos return -1;
688 1.1 christos start = buf;
689 1.1 christos
690 1.1 christos while (*start != '\0') {
691 1.1 christos while (*start == ' ' || *start == '\t')
692 1.1 christos start++;
693 1.1 christos if (*start == '\0')
694 1.1 christos break;
695 1.1 christos end = start;
696 1.1 christos while (*end != ' ' && *end != '\t' && *end != '\0')
697 1.1 christos end++;
698 1.1 christos last = *end == '\0';
699 1.1 christos *end = '\0';
700 1.1 christos if (os_strcmp(start, "WPA-PSK") == 0)
701 1.1 christos val |= WPA_KEY_MGMT_PSK;
702 1.1 christos else if (os_strcmp(start, "WPA-EAP") == 0)
703 1.1 christos val |= WPA_KEY_MGMT_IEEE8021X;
704 1.1.1.7 christos #ifdef CONFIG_IEEE80211R_AP
705 1.1 christos else if (os_strcmp(start, "FT-PSK") == 0)
706 1.1 christos val |= WPA_KEY_MGMT_FT_PSK;
707 1.1 christos else if (os_strcmp(start, "FT-EAP") == 0)
708 1.1 christos val |= WPA_KEY_MGMT_FT_IEEE8021X;
709 1.1.1.7 christos #ifdef CONFIG_SHA384
710 1.1.1.7 christos else if (os_strcmp(start, "FT-EAP-SHA384") == 0)
711 1.1.1.7 christos val |= WPA_KEY_MGMT_FT_IEEE8021X_SHA384;
712 1.1.1.7 christos #endif /* CONFIG_SHA384 */
713 1.1.1.7 christos #endif /* CONFIG_IEEE80211R_AP */
714 1.1 christos #ifdef CONFIG_IEEE80211W
715 1.1 christos else if (os_strcmp(start, "WPA-PSK-SHA256") == 0)
716 1.1 christos val |= WPA_KEY_MGMT_PSK_SHA256;
717 1.1 christos else if (os_strcmp(start, "WPA-EAP-SHA256") == 0)
718 1.1 christos val |= WPA_KEY_MGMT_IEEE8021X_SHA256;
719 1.1 christos #endif /* CONFIG_IEEE80211W */
720 1.1.1.3 christos #ifdef CONFIG_SAE
721 1.1.1.3 christos else if (os_strcmp(start, "SAE") == 0)
722 1.1.1.3 christos val |= WPA_KEY_MGMT_SAE;
723 1.1.1.3 christos else if (os_strcmp(start, "FT-SAE") == 0)
724 1.1.1.3 christos val |= WPA_KEY_MGMT_FT_SAE;
725 1.1.1.3 christos #endif /* CONFIG_SAE */
726 1.1.1.5 christos #ifdef CONFIG_SUITEB
727 1.1.1.5 christos else if (os_strcmp(start, "WPA-EAP-SUITE-B") == 0)
728 1.1.1.5 christos val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B;
729 1.1.1.5 christos #endif /* CONFIG_SUITEB */
730 1.1.1.5 christos #ifdef CONFIG_SUITEB192
731 1.1.1.5 christos else if (os_strcmp(start, "WPA-EAP-SUITE-B-192") == 0)
732 1.1.1.5 christos val |= WPA_KEY_MGMT_IEEE8021X_SUITE_B_192;
733 1.1.1.5 christos #endif /* CONFIG_SUITEB192 */
734 1.1.1.7 christos #ifdef CONFIG_FILS
735 1.1.1.7 christos else if (os_strcmp(start, "FILS-SHA256") == 0)
736 1.1.1.7 christos val |= WPA_KEY_MGMT_FILS_SHA256;
737 1.1.1.7 christos else if (os_strcmp(start, "FILS-SHA384") == 0)
738 1.1.1.7 christos val |= WPA_KEY_MGMT_FILS_SHA384;
739 1.1.1.7 christos #ifdef CONFIG_IEEE80211R_AP
740 1.1.1.7 christos else if (os_strcmp(start, "FT-FILS-SHA256") == 0)
741 1.1.1.7 christos val |= WPA_KEY_MGMT_FT_FILS_SHA256;
742 1.1.1.7 christos else if (os_strcmp(start, "FT-FILS-SHA384") == 0)
743 1.1.1.7 christos val |= WPA_KEY_MGMT_FT_FILS_SHA384;
744 1.1.1.7 christos #endif /* CONFIG_IEEE80211R_AP */
745 1.1.1.7 christos #endif /* CONFIG_FILS */
746 1.1.1.7 christos #ifdef CONFIG_OWE
747 1.1.1.7 christos else if (os_strcmp(start, "OWE") == 0)
748 1.1.1.7 christos val |= WPA_KEY_MGMT_OWE;
749 1.1.1.7 christos #endif /* CONFIG_OWE */
750 1.1.1.7 christos #ifdef CONFIG_DPP
751 1.1.1.7 christos else if (os_strcmp(start, "DPP") == 0)
752 1.1.1.7 christos val |= WPA_KEY_MGMT_DPP;
753 1.1.1.7 christos #endif /* CONFIG_DPP */
754 1.1.1.7 christos #ifdef CONFIG_HS20
755 1.1.1.7 christos else if (os_strcmp(start, "OSEN") == 0)
756 1.1.1.7 christos val |= WPA_KEY_MGMT_OSEN;
757 1.1.1.7 christos #endif /* CONFIG_HS20 */
758 1.1 christos else {
759 1.1 christos wpa_printf(MSG_ERROR, "Line %d: invalid key_mgmt '%s'",
760 1.1 christos line, start);
761 1.1 christos os_free(buf);
762 1.1 christos return -1;
763 1.1 christos }
764 1.1 christos
765 1.1 christos if (last)
766 1.1 christos break;
767 1.1 christos start = end + 1;
768 1.1 christos }
769 1.1 christos
770 1.1 christos os_free(buf);
771 1.1 christos if (val == 0) {
772 1.1 christos wpa_printf(MSG_ERROR, "Line %d: no key_mgmt values "
773 1.1 christos "configured.", line);
774 1.1 christos return -1;
775 1.1 christos }
776 1.1 christos
777 1.1 christos return val;
778 1.1 christos }
779 1.1 christos
780 1.1 christos
781 1.1 christos static int hostapd_config_parse_cipher(int line, const char *value)
782 1.1 christos {
783 1.1.1.4 christos int val = wpa_parse_cipher(value);
784 1.1.1.4 christos if (val < 0) {
785 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid cipher '%s'.",
786 1.1.1.4 christos line, value);
787 1.1 christos return -1;
788 1.1 christos }
789 1.1 christos if (val == 0) {
790 1.1 christos wpa_printf(MSG_ERROR, "Line %d: no cipher values configured.",
791 1.1 christos line);
792 1.1 christos return -1;
793 1.1 christos }
794 1.1 christos return val;
795 1.1 christos }
796 1.1 christos
797 1.1 christos
798 1.1 christos static int hostapd_config_read_wep(struct hostapd_wep_keys *wep, int keyidx,
799 1.1 christos char *val)
800 1.1 christos {
801 1.1 christos size_t len = os_strlen(val);
802 1.1 christos
803 1.1.1.7 christos if (keyidx < 0 || keyidx > 3)
804 1.1.1.7 christos return -1;
805 1.1.1.7 christos
806 1.1.1.7 christos if (len == 0) {
807 1.1.1.7 christos int i, set = 0;
808 1.1.1.7 christos
809 1.1.1.7 christos bin_clear_free(wep->key[keyidx], wep->len[keyidx]);
810 1.1.1.7 christos wep->key[keyidx] = NULL;
811 1.1.1.7 christos wep->len[keyidx] = 0;
812 1.1.1.7 christos for (i = 0; i < NUM_WEP_KEYS; i++) {
813 1.1.1.7 christos if (wep->key[i])
814 1.1.1.7 christos set++;
815 1.1.1.7 christos }
816 1.1.1.7 christos if (!set)
817 1.1.1.7 christos wep->keys_set = 0;
818 1.1.1.7 christos return 0;
819 1.1.1.7 christos }
820 1.1.1.7 christos
821 1.1.1.7 christos if (wep->key[keyidx] != NULL)
822 1.1 christos return -1;
823 1.1 christos
824 1.1 christos if (val[0] == '"') {
825 1.1 christos if (len < 2 || val[len - 1] != '"')
826 1.1 christos return -1;
827 1.1 christos len -= 2;
828 1.1.1.7 christos wep->key[keyidx] = os_memdup(val + 1, len);
829 1.1 christos if (wep->key[keyidx] == NULL)
830 1.1 christos return -1;
831 1.1 christos wep->len[keyidx] = len;
832 1.1 christos } else {
833 1.1 christos if (len & 1)
834 1.1 christos return -1;
835 1.1 christos len /= 2;
836 1.1 christos wep->key[keyidx] = os_malloc(len);
837 1.1 christos if (wep->key[keyidx] == NULL)
838 1.1 christos return -1;
839 1.1 christos wep->len[keyidx] = len;
840 1.1 christos if (hexstr2bin(val, wep->key[keyidx], len) < 0)
841 1.1 christos return -1;
842 1.1 christos }
843 1.1 christos
844 1.1 christos wep->keys_set++;
845 1.1 christos
846 1.1 christos return 0;
847 1.1 christos }
848 1.1 christos
849 1.1 christos
850 1.1.1.6 christos static int hostapd_parse_chanlist(struct hostapd_config *conf, char *val)
851 1.1.1.6 christos {
852 1.1.1.6 christos char *pos;
853 1.1.1.6 christos
854 1.1.1.6 christos /* for backwards compatibility, translate ' ' in conf str to ',' */
855 1.1.1.6 christos pos = val;
856 1.1.1.6 christos while (pos) {
857 1.1.1.6 christos pos = os_strchr(pos, ' ');
858 1.1.1.6 christos if (pos)
859 1.1.1.6 christos *pos++ = ',';
860 1.1.1.6 christos }
861 1.1.1.6 christos if (freq_range_list_parse(&conf->acs_ch_list, val))
862 1.1.1.6 christos return -1;
863 1.1.1.6 christos
864 1.1.1.6 christos return 0;
865 1.1.1.6 christos }
866 1.1.1.6 christos
867 1.1.1.6 christos
868 1.1.1.4 christos static int hostapd_parse_intlist(int **int_list, char *val)
869 1.1 christos {
870 1.1 christos int *list;
871 1.1 christos int count;
872 1.1 christos char *pos, *end;
873 1.1 christos
874 1.1.1.4 christos os_free(*int_list);
875 1.1.1.4 christos *int_list = NULL;
876 1.1 christos
877 1.1 christos pos = val;
878 1.1 christos count = 0;
879 1.1 christos while (*pos != '\0') {
880 1.1 christos if (*pos == ' ')
881 1.1 christos count++;
882 1.1 christos pos++;
883 1.1 christos }
884 1.1 christos
885 1.1 christos list = os_malloc(sizeof(int) * (count + 2));
886 1.1 christos if (list == NULL)
887 1.1 christos return -1;
888 1.1 christos pos = val;
889 1.1 christos count = 0;
890 1.1 christos while (*pos != '\0') {
891 1.1 christos end = os_strchr(pos, ' ');
892 1.1 christos if (end)
893 1.1 christos *end = '\0';
894 1.1 christos
895 1.1 christos list[count++] = atoi(pos);
896 1.1 christos if (!end)
897 1.1 christos break;
898 1.1 christos pos = end + 1;
899 1.1 christos }
900 1.1 christos list[count] = -1;
901 1.1 christos
902 1.1.1.4 christos *int_list = list;
903 1.1 christos return 0;
904 1.1 christos }
905 1.1 christos
906 1.1 christos
907 1.1 christos static int hostapd_config_bss(struct hostapd_config *conf, const char *ifname)
908 1.1 christos {
909 1.1.1.4 christos struct hostapd_bss_config **all, *bss;
910 1.1 christos
911 1.1 christos if (*ifname == '\0')
912 1.1 christos return -1;
913 1.1 christos
914 1.1.1.4 christos all = os_realloc_array(conf->bss, conf->num_bss + 1,
915 1.1.1.4 christos sizeof(struct hostapd_bss_config *));
916 1.1.1.4 christos if (all == NULL) {
917 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate memory for "
918 1.1 christos "multi-BSS entry");
919 1.1 christos return -1;
920 1.1 christos }
921 1.1.1.4 christos conf->bss = all;
922 1.1 christos
923 1.1.1.4 christos bss = os_zalloc(sizeof(*bss));
924 1.1.1.4 christos if (bss == NULL)
925 1.1.1.4 christos return -1;
926 1.1 christos bss->radius = os_zalloc(sizeof(*bss->radius));
927 1.1 christos if (bss->radius == NULL) {
928 1.1 christos wpa_printf(MSG_ERROR, "Failed to allocate memory for "
929 1.1 christos "multi-BSS RADIUS data");
930 1.1.1.4 christos os_free(bss);
931 1.1 christos return -1;
932 1.1 christos }
933 1.1 christos
934 1.1.1.4 christos conf->bss[conf->num_bss++] = bss;
935 1.1 christos conf->last_bss = bss;
936 1.1 christos
937 1.1 christos hostapd_config_defaults_bss(bss);
938 1.1 christos os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
939 1.1 christos os_memcpy(bss->ssid.vlan, bss->iface, IFNAMSIZ + 1);
940 1.1 christos
941 1.1 christos return 0;
942 1.1 christos }
943 1.1 christos
944 1.1 christos
945 1.1 christos /* convert floats with one decimal place to value*10 int, i.e.,
946 1.1 christos * "1.5" will return 15 */
947 1.1 christos static int hostapd_config_read_int10(const char *value)
948 1.1 christos {
949 1.1 christos int i, d;
950 1.1 christos char *pos;
951 1.1 christos
952 1.1 christos i = atoi(value);
953 1.1 christos pos = os_strchr(value, '.');
954 1.1 christos d = 0;
955 1.1 christos if (pos) {
956 1.1 christos pos++;
957 1.1 christos if (*pos >= '0' && *pos <= '9')
958 1.1 christos d = *pos - '0';
959 1.1 christos }
960 1.1 christos
961 1.1 christos return i * 10 + d;
962 1.1 christos }
963 1.1 christos
964 1.1 christos
965 1.1 christos static int valid_cw(int cw)
966 1.1 christos {
967 1.1 christos return (cw == 1 || cw == 3 || cw == 7 || cw == 15 || cw == 31 ||
968 1.1.1.6 christos cw == 63 || cw == 127 || cw == 255 || cw == 511 || cw == 1023 ||
969 1.1.1.6 christos cw == 2047 || cw == 4095 || cw == 8191 || cw == 16383 ||
970 1.1.1.6 christos cw == 32767);
971 1.1 christos }
972 1.1 christos
973 1.1 christos
974 1.1 christos enum {
975 1.1 christos IEEE80211_TX_QUEUE_DATA0 = 0, /* used for EDCA AC_VO data */
976 1.1 christos IEEE80211_TX_QUEUE_DATA1 = 1, /* used for EDCA AC_VI data */
977 1.1 christos IEEE80211_TX_QUEUE_DATA2 = 2, /* used for EDCA AC_BE data */
978 1.1.1.2 christos IEEE80211_TX_QUEUE_DATA3 = 3 /* used for EDCA AC_BK data */
979 1.1 christos };
980 1.1 christos
981 1.1.1.6 christos static int hostapd_config_tx_queue(struct hostapd_config *conf,
982 1.1.1.6 christos const char *name, const char *val)
983 1.1 christos {
984 1.1 christos int num;
985 1.1.1.6 christos const char *pos;
986 1.1 christos struct hostapd_tx_queue_params *queue;
987 1.1 christos
988 1.1 christos /* skip 'tx_queue_' prefix */
989 1.1 christos pos = name + 9;
990 1.1 christos if (os_strncmp(pos, "data", 4) == 0 &&
991 1.1 christos pos[4] >= '0' && pos[4] <= '9' && pos[5] == '_') {
992 1.1 christos num = pos[4] - '0';
993 1.1 christos pos += 6;
994 1.1.1.2 christos } else if (os_strncmp(pos, "after_beacon_", 13) == 0 ||
995 1.1.1.2 christos os_strncmp(pos, "beacon_", 7) == 0) {
996 1.1.1.2 christos wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
997 1.1.1.2 christos return 0;
998 1.1 christos } else {
999 1.1 christos wpa_printf(MSG_ERROR, "Unknown tx_queue name '%s'", pos);
1000 1.1 christos return -1;
1001 1.1 christos }
1002 1.1 christos
1003 1.1.1.2 christos if (num >= NUM_TX_QUEUES) {
1004 1.1.1.2 christos /* for backwards compatibility, do not trigger failure */
1005 1.1.1.2 christos wpa_printf(MSG_INFO, "DEPRECATED: '%s' not used", name);
1006 1.1.1.2 christos return 0;
1007 1.1.1.2 christos }
1008 1.1.1.2 christos
1009 1.1 christos queue = &conf->tx_queue[num];
1010 1.1 christos
1011 1.1 christos if (os_strcmp(pos, "aifs") == 0) {
1012 1.1 christos queue->aifs = atoi(val);
1013 1.1 christos if (queue->aifs < 0 || queue->aifs > 255) {
1014 1.1 christos wpa_printf(MSG_ERROR, "Invalid AIFS value %d",
1015 1.1 christos queue->aifs);
1016 1.1 christos return -1;
1017 1.1 christos }
1018 1.1 christos } else if (os_strcmp(pos, "cwmin") == 0) {
1019 1.1 christos queue->cwmin = atoi(val);
1020 1.1 christos if (!valid_cw(queue->cwmin)) {
1021 1.1 christos wpa_printf(MSG_ERROR, "Invalid cwMin value %d",
1022 1.1 christos queue->cwmin);
1023 1.1 christos return -1;
1024 1.1 christos }
1025 1.1 christos } else if (os_strcmp(pos, "cwmax") == 0) {
1026 1.1 christos queue->cwmax = atoi(val);
1027 1.1 christos if (!valid_cw(queue->cwmax)) {
1028 1.1 christos wpa_printf(MSG_ERROR, "Invalid cwMax value %d",
1029 1.1 christos queue->cwmax);
1030 1.1 christos return -1;
1031 1.1 christos }
1032 1.1 christos } else if (os_strcmp(pos, "burst") == 0) {
1033 1.1 christos queue->burst = hostapd_config_read_int10(val);
1034 1.1 christos } else {
1035 1.1 christos wpa_printf(MSG_ERROR, "Unknown tx_queue field '%s'", pos);
1036 1.1 christos return -1;
1037 1.1 christos }
1038 1.1 christos
1039 1.1 christos return 0;
1040 1.1 christos }
1041 1.1 christos
1042 1.1 christos
1043 1.1.1.7 christos #ifdef CONFIG_IEEE80211R_AP
1044 1.1.1.7 christos
1045 1.1.1.7 christos static int rkh_derive_key(const char *pos, u8 *key, size_t key_len)
1046 1.1.1.7 christos {
1047 1.1.1.7 christos u8 oldkey[16];
1048 1.1.1.7 christos int ret;
1049 1.1.1.7 christos
1050 1.1.1.7 christos if (!hexstr2bin(pos, key, key_len))
1051 1.1.1.7 christos return 0;
1052 1.1.1.7 christos
1053 1.1.1.7 christos /* Try to use old short key for backwards compatibility */
1054 1.1.1.7 christos if (hexstr2bin(pos, oldkey, sizeof(oldkey)))
1055 1.1.1.7 christos return -1;
1056 1.1.1.7 christos
1057 1.1.1.7 christos ret = hmac_sha256_kdf(oldkey, sizeof(oldkey), "FT OLDKEY", NULL, 0,
1058 1.1.1.7 christos key, key_len);
1059 1.1.1.7 christos os_memset(oldkey, 0, sizeof(oldkey));
1060 1.1.1.7 christos return ret;
1061 1.1.1.7 christos }
1062 1.1.1.7 christos
1063 1.1.1.7 christos
1064 1.1 christos static int add_r0kh(struct hostapd_bss_config *bss, char *value)
1065 1.1 christos {
1066 1.1 christos struct ft_remote_r0kh *r0kh;
1067 1.1 christos char *pos, *next;
1068 1.1 christos
1069 1.1 christos r0kh = os_zalloc(sizeof(*r0kh));
1070 1.1 christos if (r0kh == NULL)
1071 1.1 christos return -1;
1072 1.1 christos
1073 1.1 christos /* 02:01:02:03:04:05 a.example.com 000102030405060708090a0b0c0d0e0f */
1074 1.1 christos pos = value;
1075 1.1 christos next = os_strchr(pos, ' ');
1076 1.1 christos if (next)
1077 1.1 christos *next++ = '\0';
1078 1.1 christos if (next == NULL || hwaddr_aton(pos, r0kh->addr)) {
1079 1.1 christos wpa_printf(MSG_ERROR, "Invalid R0KH MAC address: '%s'", pos);
1080 1.1 christos os_free(r0kh);
1081 1.1 christos return -1;
1082 1.1 christos }
1083 1.1 christos
1084 1.1 christos pos = next;
1085 1.1 christos next = os_strchr(pos, ' ');
1086 1.1 christos if (next)
1087 1.1 christos *next++ = '\0';
1088 1.1 christos if (next == NULL || next - pos > FT_R0KH_ID_MAX_LEN) {
1089 1.1 christos wpa_printf(MSG_ERROR, "Invalid R0KH-ID: '%s'", pos);
1090 1.1 christos os_free(r0kh);
1091 1.1 christos return -1;
1092 1.1 christos }
1093 1.1 christos r0kh->id_len = next - pos - 1;
1094 1.1 christos os_memcpy(r0kh->id, pos, r0kh->id_len);
1095 1.1 christos
1096 1.1 christos pos = next;
1097 1.1.1.7 christos if (rkh_derive_key(pos, r0kh->key, sizeof(r0kh->key)) < 0) {
1098 1.1 christos wpa_printf(MSG_ERROR, "Invalid R0KH key: '%s'", pos);
1099 1.1 christos os_free(r0kh);
1100 1.1 christos return -1;
1101 1.1 christos }
1102 1.1 christos
1103 1.1 christos r0kh->next = bss->r0kh_list;
1104 1.1 christos bss->r0kh_list = r0kh;
1105 1.1 christos
1106 1.1 christos return 0;
1107 1.1 christos }
1108 1.1 christos
1109 1.1 christos
1110 1.1 christos static int add_r1kh(struct hostapd_bss_config *bss, char *value)
1111 1.1 christos {
1112 1.1 christos struct ft_remote_r1kh *r1kh;
1113 1.1 christos char *pos, *next;
1114 1.1 christos
1115 1.1 christos r1kh = os_zalloc(sizeof(*r1kh));
1116 1.1 christos if (r1kh == NULL)
1117 1.1 christos return -1;
1118 1.1 christos
1119 1.1 christos /* 02:01:02:03:04:05 02:01:02:03:04:05
1120 1.1 christos * 000102030405060708090a0b0c0d0e0f */
1121 1.1 christos pos = value;
1122 1.1 christos next = os_strchr(pos, ' ');
1123 1.1 christos if (next)
1124 1.1 christos *next++ = '\0';
1125 1.1 christos if (next == NULL || hwaddr_aton(pos, r1kh->addr)) {
1126 1.1 christos wpa_printf(MSG_ERROR, "Invalid R1KH MAC address: '%s'", pos);
1127 1.1 christos os_free(r1kh);
1128 1.1 christos return -1;
1129 1.1 christos }
1130 1.1 christos
1131 1.1 christos pos = next;
1132 1.1 christos next = os_strchr(pos, ' ');
1133 1.1 christos if (next)
1134 1.1 christos *next++ = '\0';
1135 1.1 christos if (next == NULL || hwaddr_aton(pos, r1kh->id)) {
1136 1.1 christos wpa_printf(MSG_ERROR, "Invalid R1KH-ID: '%s'", pos);
1137 1.1 christos os_free(r1kh);
1138 1.1 christos return -1;
1139 1.1 christos }
1140 1.1 christos
1141 1.1 christos pos = next;
1142 1.1.1.7 christos if (rkh_derive_key(pos, r1kh->key, sizeof(r1kh->key)) < 0) {
1143 1.1 christos wpa_printf(MSG_ERROR, "Invalid R1KH key: '%s'", pos);
1144 1.1 christos os_free(r1kh);
1145 1.1 christos return -1;
1146 1.1 christos }
1147 1.1 christos
1148 1.1 christos r1kh->next = bss->r1kh_list;
1149 1.1 christos bss->r1kh_list = r1kh;
1150 1.1 christos
1151 1.1 christos return 0;
1152 1.1 christos }
1153 1.1.1.7 christos #endif /* CONFIG_IEEE80211R_AP */
1154 1.1 christos
1155 1.1 christos
1156 1.1 christos #ifdef CONFIG_IEEE80211N
1157 1.1 christos static int hostapd_config_ht_capab(struct hostapd_config *conf,
1158 1.1 christos const char *capab)
1159 1.1 christos {
1160 1.1 christos if (os_strstr(capab, "[LDPC]"))
1161 1.1 christos conf->ht_capab |= HT_CAP_INFO_LDPC_CODING_CAP;
1162 1.1 christos if (os_strstr(capab, "[HT40-]")) {
1163 1.1 christos conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1164 1.1 christos conf->secondary_channel = -1;
1165 1.1 christos }
1166 1.1 christos if (os_strstr(capab, "[HT40+]")) {
1167 1.1 christos conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1168 1.1 christos conf->secondary_channel = 1;
1169 1.1 christos }
1170 1.1.1.7 christos if (os_strstr(capab, "[HT40+]") && os_strstr(capab, "[HT40-]")) {
1171 1.1.1.7 christos conf->ht_capab |= HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET;
1172 1.1.1.7 christos conf->ht40_plus_minus_allowed = 1;
1173 1.1.1.7 christos }
1174 1.1.1.7 christos if (!os_strstr(capab, "[HT40+]") && !os_strstr(capab, "[HT40-]"))
1175 1.1.1.7 christos conf->secondary_channel = 0;
1176 1.1 christos if (os_strstr(capab, "[SMPS-STATIC]")) {
1177 1.1 christos conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1178 1.1 christos conf->ht_capab |= HT_CAP_INFO_SMPS_STATIC;
1179 1.1 christos }
1180 1.1 christos if (os_strstr(capab, "[SMPS-DYNAMIC]")) {
1181 1.1 christos conf->ht_capab &= ~HT_CAP_INFO_SMPS_MASK;
1182 1.1 christos conf->ht_capab |= HT_CAP_INFO_SMPS_DYNAMIC;
1183 1.1 christos }
1184 1.1 christos if (os_strstr(capab, "[GF]"))
1185 1.1 christos conf->ht_capab |= HT_CAP_INFO_GREEN_FIELD;
1186 1.1 christos if (os_strstr(capab, "[SHORT-GI-20]"))
1187 1.1 christos conf->ht_capab |= HT_CAP_INFO_SHORT_GI20MHZ;
1188 1.1 christos if (os_strstr(capab, "[SHORT-GI-40]"))
1189 1.1 christos conf->ht_capab |= HT_CAP_INFO_SHORT_GI40MHZ;
1190 1.1 christos if (os_strstr(capab, "[TX-STBC]"))
1191 1.1 christos conf->ht_capab |= HT_CAP_INFO_TX_STBC;
1192 1.1 christos if (os_strstr(capab, "[RX-STBC1]")) {
1193 1.1 christos conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1194 1.1 christos conf->ht_capab |= HT_CAP_INFO_RX_STBC_1;
1195 1.1 christos }
1196 1.1 christos if (os_strstr(capab, "[RX-STBC12]")) {
1197 1.1 christos conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1198 1.1 christos conf->ht_capab |= HT_CAP_INFO_RX_STBC_12;
1199 1.1 christos }
1200 1.1 christos if (os_strstr(capab, "[RX-STBC123]")) {
1201 1.1 christos conf->ht_capab &= ~HT_CAP_INFO_RX_STBC_MASK;
1202 1.1 christos conf->ht_capab |= HT_CAP_INFO_RX_STBC_123;
1203 1.1 christos }
1204 1.1 christos if (os_strstr(capab, "[DELAYED-BA]"))
1205 1.1 christos conf->ht_capab |= HT_CAP_INFO_DELAYED_BA;
1206 1.1 christos if (os_strstr(capab, "[MAX-AMSDU-7935]"))
1207 1.1 christos conf->ht_capab |= HT_CAP_INFO_MAX_AMSDU_SIZE;
1208 1.1 christos if (os_strstr(capab, "[DSSS_CCK-40]"))
1209 1.1 christos conf->ht_capab |= HT_CAP_INFO_DSSS_CCK40MHZ;
1210 1.1.1.4 christos if (os_strstr(capab, "[40-INTOLERANT]"))
1211 1.1.1.4 christos conf->ht_capab |= HT_CAP_INFO_40MHZ_INTOLERANT;
1212 1.1 christos if (os_strstr(capab, "[LSIG-TXOP-PROT]"))
1213 1.1 christos conf->ht_capab |= HT_CAP_INFO_LSIG_TXOP_PROTECT_SUPPORT;
1214 1.1 christos
1215 1.1 christos return 0;
1216 1.1 christos }
1217 1.1 christos #endif /* CONFIG_IEEE80211N */
1218 1.1 christos
1219 1.1 christos
1220 1.1.1.3 christos #ifdef CONFIG_IEEE80211AC
1221 1.1.1.3 christos static int hostapd_config_vht_capab(struct hostapd_config *conf,
1222 1.1.1.3 christos const char *capab)
1223 1.1.1.3 christos {
1224 1.1.1.3 christos if (os_strstr(capab, "[MAX-MPDU-7991]"))
1225 1.1.1.3 christos conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_7991;
1226 1.1.1.3 christos if (os_strstr(capab, "[MAX-MPDU-11454]"))
1227 1.1.1.3 christos conf->vht_capab |= VHT_CAP_MAX_MPDU_LENGTH_11454;
1228 1.1.1.3 christos if (os_strstr(capab, "[VHT160]"))
1229 1.1.1.3 christos conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160MHZ;
1230 1.1.1.3 christos if (os_strstr(capab, "[VHT160-80PLUS80]"))
1231 1.1.1.3 christos conf->vht_capab |= VHT_CAP_SUPP_CHAN_WIDTH_160_80PLUS80MHZ;
1232 1.1.1.3 christos if (os_strstr(capab, "[RXLDPC]"))
1233 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RXLDPC;
1234 1.1.1.3 christos if (os_strstr(capab, "[SHORT-GI-80]"))
1235 1.1.1.3 christos conf->vht_capab |= VHT_CAP_SHORT_GI_80;
1236 1.1.1.3 christos if (os_strstr(capab, "[SHORT-GI-160]"))
1237 1.1.1.3 christos conf->vht_capab |= VHT_CAP_SHORT_GI_160;
1238 1.1.1.3 christos if (os_strstr(capab, "[TX-STBC-2BY1]"))
1239 1.1.1.3 christos conf->vht_capab |= VHT_CAP_TXSTBC;
1240 1.1.1.3 christos if (os_strstr(capab, "[RX-STBC-1]"))
1241 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RXSTBC_1;
1242 1.1.1.3 christos if (os_strstr(capab, "[RX-STBC-12]"))
1243 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RXSTBC_2;
1244 1.1.1.3 christos if (os_strstr(capab, "[RX-STBC-123]"))
1245 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RXSTBC_3;
1246 1.1.1.3 christos if (os_strstr(capab, "[RX-STBC-1234]"))
1247 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RXSTBC_4;
1248 1.1.1.3 christos if (os_strstr(capab, "[SU-BEAMFORMER]"))
1249 1.1.1.4 christos conf->vht_capab |= VHT_CAP_SU_BEAMFORMER_CAPABLE;
1250 1.1.1.3 christos if (os_strstr(capab, "[SU-BEAMFORMEE]"))
1251 1.1.1.4 christos conf->vht_capab |= VHT_CAP_SU_BEAMFORMEE_CAPABLE;
1252 1.1.1.3 christos if (os_strstr(capab, "[BF-ANTENNA-2]") &&
1253 1.1.1.4 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1254 1.1.1.4 christos conf->vht_capab |= (1 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
1255 1.1.1.6 christos if (os_strstr(capab, "[BF-ANTENNA-3]") &&
1256 1.1.1.6 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1257 1.1.1.6 christos conf->vht_capab |= (2 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
1258 1.1.1.6 christos if (os_strstr(capab, "[BF-ANTENNA-4]") &&
1259 1.1.1.6 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMEE_CAPABLE))
1260 1.1.1.6 christos conf->vht_capab |= (3 << VHT_CAP_BEAMFORMEE_STS_OFFSET);
1261 1.1.1.3 christos if (os_strstr(capab, "[SOUNDING-DIMENSION-2]") &&
1262 1.1.1.4 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1263 1.1.1.4 christos conf->vht_capab |= (1 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
1264 1.1.1.6 christos if (os_strstr(capab, "[SOUNDING-DIMENSION-3]") &&
1265 1.1.1.6 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1266 1.1.1.6 christos conf->vht_capab |= (2 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
1267 1.1.1.6 christos if (os_strstr(capab, "[SOUNDING-DIMENSION-4]") &&
1268 1.1.1.6 christos (conf->vht_capab & VHT_CAP_SU_BEAMFORMER_CAPABLE))
1269 1.1.1.6 christos conf->vht_capab |= (3 << VHT_CAP_SOUNDING_DIMENSION_OFFSET);
1270 1.1.1.3 christos if (os_strstr(capab, "[MU-BEAMFORMER]"))
1271 1.1.1.3 christos conf->vht_capab |= VHT_CAP_MU_BEAMFORMER_CAPABLE;
1272 1.1.1.3 christos if (os_strstr(capab, "[VHT-TXOP-PS]"))
1273 1.1.1.3 christos conf->vht_capab |= VHT_CAP_VHT_TXOP_PS;
1274 1.1.1.3 christos if (os_strstr(capab, "[HTC-VHT]"))
1275 1.1.1.3 christos conf->vht_capab |= VHT_CAP_HTC_VHT;
1276 1.1.1.4 christos if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP7]"))
1277 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_MAX;
1278 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP6]"))
1279 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_6;
1280 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP5]"))
1281 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_5;
1282 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP4]"))
1283 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_4;
1284 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP3]"))
1285 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_3;
1286 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP2]"))
1287 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_2;
1288 1.1.1.4 christos else if (os_strstr(capab, "[MAX-A-MPDU-LEN-EXP1]"))
1289 1.1.1.4 christos conf->vht_capab |= VHT_CAP_MAX_A_MPDU_LENGTH_EXPONENT_1;
1290 1.1.1.3 christos if (os_strstr(capab, "[VHT-LINK-ADAPT2]") &&
1291 1.1.1.3 christos (conf->vht_capab & VHT_CAP_HTC_VHT))
1292 1.1.1.3 christos conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_UNSOL_MFB;
1293 1.1.1.3 christos if (os_strstr(capab, "[VHT-LINK-ADAPT3]") &&
1294 1.1.1.3 christos (conf->vht_capab & VHT_CAP_HTC_VHT))
1295 1.1.1.3 christos conf->vht_capab |= VHT_CAP_VHT_LINK_ADAPTATION_VHT_MRQ_MFB;
1296 1.1.1.3 christos if (os_strstr(capab, "[RX-ANTENNA-PATTERN]"))
1297 1.1.1.3 christos conf->vht_capab |= VHT_CAP_RX_ANTENNA_PATTERN;
1298 1.1.1.3 christos if (os_strstr(capab, "[TX-ANTENNA-PATTERN]"))
1299 1.1.1.3 christos conf->vht_capab |= VHT_CAP_TX_ANTENNA_PATTERN;
1300 1.1.1.3 christos return 0;
1301 1.1.1.3 christos }
1302 1.1.1.3 christos #endif /* CONFIG_IEEE80211AC */
1303 1.1.1.3 christos
1304 1.1.1.3 christos
1305 1.1.1.8 christos #ifdef CONFIG_IEEE80211AX
1306 1.1.1.8 christos
1307 1.1.1.8 christos static u8 find_bit_offset(u8 val)
1308 1.1.1.8 christos {
1309 1.1.1.8 christos u8 res = 0;
1310 1.1.1.8 christos
1311 1.1.1.8 christos for (; val; val >>= 1) {
1312 1.1.1.8 christos if (val & 1)
1313 1.1.1.8 christos break;
1314 1.1.1.8 christos res++;
1315 1.1.1.8 christos }
1316 1.1.1.8 christos
1317 1.1.1.8 christos return res;
1318 1.1.1.8 christos }
1319 1.1.1.8 christos
1320 1.1.1.8 christos
1321 1.1.1.8 christos static u8 set_he_cap(int val, u8 mask)
1322 1.1.1.8 christos {
1323 1.1.1.8 christos return (u8) (mask & (val << find_bit_offset(mask)));
1324 1.1.1.8 christos }
1325 1.1.1.8 christos
1326 1.1.1.8 christos #endif /* CONFIG_IEEE80211AX */
1327 1.1.1.8 christos
1328 1.1.1.8 christos
1329 1.1.1.2 christos #ifdef CONFIG_INTERWORKING
1330 1.1.1.2 christos static int parse_roaming_consortium(struct hostapd_bss_config *bss, char *pos,
1331 1.1.1.2 christos int line)
1332 1.1.1.2 christos {
1333 1.1.1.2 christos size_t len = os_strlen(pos);
1334 1.1.1.2 christos u8 oi[MAX_ROAMING_CONSORTIUM_LEN];
1335 1.1.1.2 christos
1336 1.1.1.2 christos struct hostapd_roaming_consortium *rc;
1337 1.1.1.2 christos
1338 1.1.1.2 christos if ((len & 1) || len < 2 * 3 || len / 2 > MAX_ROAMING_CONSORTIUM_LEN ||
1339 1.1.1.2 christos hexstr2bin(pos, oi, len / 2)) {
1340 1.1.1.2 christos wpa_printf(MSG_ERROR, "Line %d: invalid roaming_consortium "
1341 1.1.1.2 christos "'%s'", line, pos);
1342 1.1.1.2 christos return -1;
1343 1.1.1.2 christos }
1344 1.1.1.2 christos len /= 2;
1345 1.1.1.2 christos
1346 1.1.1.3 christos rc = os_realloc_array(bss->roaming_consortium,
1347 1.1.1.3 christos bss->roaming_consortium_count + 1,
1348 1.1.1.3 christos sizeof(struct hostapd_roaming_consortium));
1349 1.1.1.2 christos if (rc == NULL)
1350 1.1.1.2 christos return -1;
1351 1.1.1.2 christos
1352 1.1.1.2 christos os_memcpy(rc[bss->roaming_consortium_count].oi, oi, len);
1353 1.1.1.2 christos rc[bss->roaming_consortium_count].len = len;
1354 1.1.1.2 christos
1355 1.1.1.2 christos bss->roaming_consortium = rc;
1356 1.1.1.2 christos bss->roaming_consortium_count++;
1357 1.1.1.2 christos
1358 1.1.1.2 christos return 0;
1359 1.1.1.2 christos }
1360 1.1.1.2 christos
1361 1.1.1.2 christos
1362 1.1.1.3 christos static int parse_lang_string(struct hostapd_lang_string **array,
1363 1.1.1.3 christos unsigned int *count, char *pos)
1364 1.1 christos {
1365 1.1.1.4 christos char *sep, *str = NULL;
1366 1.1.1.4 christos size_t clen, nlen, slen;
1367 1.1.1.3 christos struct hostapd_lang_string *ls;
1368 1.1.1.4 christos int ret = -1;
1369 1.1.1.4 christos
1370 1.1.1.4 christos if (*pos == '"' || (*pos == 'P' && pos[1] == '"')) {
1371 1.1.1.4 christos str = wpa_config_parse_string(pos, &slen);
1372 1.1.1.4 christos if (!str)
1373 1.1.1.4 christos return -1;
1374 1.1.1.4 christos pos = str;
1375 1.1.1.4 christos }
1376 1.1 christos
1377 1.1.1.3 christos sep = os_strchr(pos, ':');
1378 1.1.1.3 christos if (sep == NULL)
1379 1.1.1.4 christos goto fail;
1380 1.1.1.3 christos *sep++ = '\0';
1381 1.1.1.3 christos
1382 1.1.1.3 christos clen = os_strlen(pos);
1383 1.1.1.4 christos if (clen < 2 || clen > sizeof(ls->lang))
1384 1.1.1.4 christos goto fail;
1385 1.1.1.3 christos nlen = os_strlen(sep);
1386 1.1.1.3 christos if (nlen > 252)
1387 1.1.1.4 christos goto fail;
1388 1.1.1.3 christos
1389 1.1.1.3 christos ls = os_realloc_array(*array, *count + 1,
1390 1.1.1.3 christos sizeof(struct hostapd_lang_string));
1391 1.1.1.3 christos if (ls == NULL)
1392 1.1.1.4 christos goto fail;
1393 1.1.1.3 christos
1394 1.1.1.3 christos *array = ls;
1395 1.1.1.3 christos ls = &(*array)[*count];
1396 1.1.1.3 christos (*count)++;
1397 1.1.1.3 christos
1398 1.1.1.3 christos os_memset(ls->lang, 0, sizeof(ls->lang));
1399 1.1.1.3 christos os_memcpy(ls->lang, pos, clen);
1400 1.1.1.3 christos ls->name_len = nlen;
1401 1.1.1.3 christos os_memcpy(ls->name, sep, nlen);
1402 1.1.1.3 christos
1403 1.1.1.4 christos ret = 0;
1404 1.1.1.4 christos fail:
1405 1.1.1.4 christos os_free(str);
1406 1.1.1.4 christos return ret;
1407 1.1.1.3 christos }
1408 1.1.1.3 christos
1409 1.1.1.3 christos
1410 1.1.1.3 christos static int parse_venue_name(struct hostapd_bss_config *bss, char *pos,
1411 1.1.1.3 christos int line)
1412 1.1.1.3 christos {
1413 1.1.1.3 christos if (parse_lang_string(&bss->venue_name, &bss->venue_name_count, pos)) {
1414 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: Invalid venue_name '%s'",
1415 1.1.1.3 christos line, pos);
1416 1.1.1.3 christos return -1;
1417 1.1 christos }
1418 1.1.1.3 christos return 0;
1419 1.1.1.3 christos }
1420 1.1 christos
1421 1.1.1.3 christos
1422 1.1.1.7 christos static int parse_venue_url(struct hostapd_bss_config *bss, char *pos,
1423 1.1.1.7 christos int line)
1424 1.1.1.7 christos {
1425 1.1.1.7 christos char *sep;
1426 1.1.1.7 christos size_t nlen;
1427 1.1.1.7 christos struct hostapd_venue_url *url;
1428 1.1.1.7 christos int ret = -1;
1429 1.1.1.7 christos
1430 1.1.1.7 christos sep = os_strchr(pos, ':');
1431 1.1.1.7 christos if (!sep)
1432 1.1.1.7 christos goto fail;
1433 1.1.1.7 christos *sep++ = '\0';
1434 1.1.1.7 christos
1435 1.1.1.7 christos nlen = os_strlen(sep);
1436 1.1.1.7 christos if (nlen > 254)
1437 1.1.1.7 christos goto fail;
1438 1.1.1.7 christos
1439 1.1.1.7 christos url = os_realloc_array(bss->venue_url, bss->venue_url_count + 1,
1440 1.1.1.7 christos sizeof(struct hostapd_venue_url));
1441 1.1.1.7 christos if (!url)
1442 1.1.1.7 christos goto fail;
1443 1.1.1.7 christos
1444 1.1.1.7 christos bss->venue_url = url;
1445 1.1.1.7 christos url = &bss->venue_url[bss->venue_url_count++];
1446 1.1.1.7 christos
1447 1.1.1.7 christos url->venue_number = atoi(pos);
1448 1.1.1.7 christos url->url_len = nlen;
1449 1.1.1.7 christos os_memcpy(url->url, sep, nlen);
1450 1.1.1.7 christos
1451 1.1.1.7 christos ret = 0;
1452 1.1.1.7 christos fail:
1453 1.1.1.7 christos if (ret)
1454 1.1.1.7 christos wpa_printf(MSG_ERROR, "Line %d: Invalid venue_url '%s'",
1455 1.1.1.7 christos line, pos);
1456 1.1.1.7 christos return ret;
1457 1.1.1.7 christos }
1458 1.1.1.7 christos
1459 1.1.1.7 christos
1460 1.1.1.3 christos static int parse_3gpp_cell_net(struct hostapd_bss_config *bss, char *buf,
1461 1.1.1.3 christos int line)
1462 1.1.1.3 christos {
1463 1.1.1.3 christos size_t count;
1464 1.1.1.3 christos char *pos;
1465 1.1.1.3 christos u8 *info = NULL, *ipos;
1466 1.1.1.3 christos
1467 1.1.1.3 christos /* format: <MCC1,MNC1>[;<MCC2,MNC2>][;...] */
1468 1.1.1.3 christos
1469 1.1.1.3 christos count = 1;
1470 1.1.1.3 christos for (pos = buf; *pos; pos++) {
1471 1.1.1.4 christos if ((*pos < '0' || *pos > '9') && *pos != ';' && *pos != ',')
1472 1.1.1.3 christos goto fail;
1473 1.1.1.3 christos if (*pos == ';')
1474 1.1.1.3 christos count++;
1475 1.1 christos }
1476 1.1.1.3 christos if (1 + count * 3 > 0x7f)
1477 1.1.1.3 christos goto fail;
1478 1.1 christos
1479 1.1.1.3 christos info = os_zalloc(2 + 3 + count * 3);
1480 1.1.1.3 christos if (info == NULL)
1481 1.1.1.3 christos return -1;
1482 1.1.1.3 christos
1483 1.1.1.3 christos ipos = info;
1484 1.1.1.3 christos *ipos++ = 0; /* GUD - Version 1 */
1485 1.1.1.3 christos *ipos++ = 3 + count * 3; /* User Data Header Length (UDHL) */
1486 1.1.1.3 christos *ipos++ = 0; /* PLMN List IEI */
1487 1.1.1.3 christos /* ext(b8) | Length of PLMN List value contents(b7..1) */
1488 1.1.1.3 christos *ipos++ = 1 + count * 3;
1489 1.1.1.3 christos *ipos++ = count; /* Number of PLMNs */
1490 1.1.1.3 christos
1491 1.1.1.3 christos pos = buf;
1492 1.1.1.3 christos while (pos && *pos) {
1493 1.1.1.3 christos char *mcc, *mnc;
1494 1.1.1.3 christos size_t mnc_len;
1495 1.1.1.3 christos
1496 1.1.1.3 christos mcc = pos;
1497 1.1.1.3 christos mnc = os_strchr(pos, ',');
1498 1.1.1.3 christos if (mnc == NULL)
1499 1.1.1.3 christos goto fail;
1500 1.1.1.3 christos *mnc++ = '\0';
1501 1.1.1.3 christos pos = os_strchr(mnc, ';');
1502 1.1.1.3 christos if (pos)
1503 1.1.1.3 christos *pos++ = '\0';
1504 1.1.1.3 christos
1505 1.1.1.3 christos mnc_len = os_strlen(mnc);
1506 1.1.1.3 christos if (os_strlen(mcc) != 3 || (mnc_len != 2 && mnc_len != 3))
1507 1.1.1.3 christos goto fail;
1508 1.1.1.3 christos
1509 1.1.1.3 christos /* BC coded MCC,MNC */
1510 1.1.1.3 christos /* MCC digit 2 | MCC digit 1 */
1511 1.1.1.3 christos *ipos++ = ((mcc[1] - '0') << 4) | (mcc[0] - '0');
1512 1.1.1.3 christos /* MNC digit 3 | MCC digit 3 */
1513 1.1.1.3 christos *ipos++ = (((mnc_len == 2) ? 0xf0 : ((mnc[2] - '0') << 4))) |
1514 1.1.1.3 christos (mcc[2] - '0');
1515 1.1.1.3 christos /* MNC digit 2 | MNC digit 1 */
1516 1.1.1.3 christos *ipos++ = ((mnc[1] - '0') << 4) | (mnc[0] - '0');
1517 1.1.1.3 christos }
1518 1.1.1.3 christos
1519 1.1.1.3 christos os_free(bss->anqp_3gpp_cell_net);
1520 1.1.1.3 christos bss->anqp_3gpp_cell_net = info;
1521 1.1.1.3 christos bss->anqp_3gpp_cell_net_len = 2 + 3 + 3 * count;
1522 1.1.1.3 christos wpa_hexdump(MSG_MSGDUMP, "3GPP Cellular Network information",
1523 1.1.1.3 christos bss->anqp_3gpp_cell_net, bss->anqp_3gpp_cell_net_len);
1524 1.1.1.3 christos
1525 1.1.1.3 christos return 0;
1526 1.1.1.3 christos
1527 1.1.1.3 christos fail:
1528 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: Invalid anqp_3gpp_cell_net: %s",
1529 1.1.1.3 christos line, buf);
1530 1.1.1.3 christos os_free(info);
1531 1.1.1.3 christos return -1;
1532 1.1.1.3 christos }
1533 1.1.1.3 christos
1534 1.1.1.3 christos
1535 1.1.1.3 christos static int parse_nai_realm(struct hostapd_bss_config *bss, char *buf, int line)
1536 1.1.1.3 christos {
1537 1.1.1.3 christos struct hostapd_nai_realm_data *realm;
1538 1.1.1.3 christos size_t i, j, len;
1539 1.1.1.3 christos int *offsets;
1540 1.1.1.3 christos char *pos, *end, *rpos;
1541 1.1.1.3 christos
1542 1.1.1.3 christos offsets = os_calloc(bss->nai_realm_count * MAX_NAI_REALMS,
1543 1.1.1.3 christos sizeof(int));
1544 1.1.1.3 christos if (offsets == NULL)
1545 1.1.1.3 christos return -1;
1546 1.1.1.3 christos
1547 1.1.1.3 christos for (i = 0; i < bss->nai_realm_count; i++) {
1548 1.1.1.3 christos realm = &bss->nai_realm_data[i];
1549 1.1.1.3 christos for (j = 0; j < MAX_NAI_REALMS; j++) {
1550 1.1.1.3 christos offsets[i * MAX_NAI_REALMS + j] =
1551 1.1.1.3 christos realm->realm[j] ?
1552 1.1.1.3 christos realm->realm[j] - realm->realm_buf : -1;
1553 1.1.1.3 christos }
1554 1.1 christos }
1555 1.1 christos
1556 1.1.1.3 christos realm = os_realloc_array(bss->nai_realm_data, bss->nai_realm_count + 1,
1557 1.1.1.3 christos sizeof(struct hostapd_nai_realm_data));
1558 1.1.1.3 christos if (realm == NULL) {
1559 1.1.1.3 christos os_free(offsets);
1560 1.1.1.3 christos return -1;
1561 1.1.1.3 christos }
1562 1.1.1.3 christos bss->nai_realm_data = realm;
1563 1.1 christos
1564 1.1.1.3 christos /* patch the pointers after realloc */
1565 1.1.1.3 christos for (i = 0; i < bss->nai_realm_count; i++) {
1566 1.1.1.3 christos realm = &bss->nai_realm_data[i];
1567 1.1.1.3 christos for (j = 0; j < MAX_NAI_REALMS; j++) {
1568 1.1.1.3 christos int offs = offsets[i * MAX_NAI_REALMS + j];
1569 1.1.1.3 christos if (offs >= 0)
1570 1.1.1.3 christos realm->realm[j] = realm->realm_buf + offs;
1571 1.1.1.3 christos else
1572 1.1.1.3 christos realm->realm[j] = NULL;
1573 1.1.1.3 christos }
1574 1.1.1.3 christos }
1575 1.1.1.3 christos os_free(offsets);
1576 1.1 christos
1577 1.1.1.3 christos realm = &bss->nai_realm_data[bss->nai_realm_count];
1578 1.1.1.3 christos os_memset(realm, 0, sizeof(*realm));
1579 1.1.1.3 christos
1580 1.1.1.3 christos pos = buf;
1581 1.1.1.3 christos realm->encoding = atoi(pos);
1582 1.1.1.3 christos pos = os_strchr(pos, ',');
1583 1.1.1.3 christos if (pos == NULL)
1584 1.1.1.3 christos goto fail;
1585 1.1.1.3 christos pos++;
1586 1.1.1.3 christos
1587 1.1.1.3 christos end = os_strchr(pos, ',');
1588 1.1.1.3 christos if (end) {
1589 1.1.1.3 christos len = end - pos;
1590 1.1.1.3 christos *end = '\0';
1591 1.1.1.3 christos } else {
1592 1.1.1.3 christos len = os_strlen(pos);
1593 1.1.1.3 christos }
1594 1.1.1.3 christos
1595 1.1.1.3 christos if (len > MAX_NAI_REALMLEN) {
1596 1.1.1.3 christos wpa_printf(MSG_ERROR, "Too long a realm string (%d > max %d "
1597 1.1.1.3 christos "characters)", (int) len, MAX_NAI_REALMLEN);
1598 1.1.1.3 christos goto fail;
1599 1.1.1.3 christos }
1600 1.1.1.3 christos os_memcpy(realm->realm_buf, pos, len);
1601 1.1.1.3 christos
1602 1.1.1.3 christos if (end)
1603 1.1.1.3 christos pos = end + 1;
1604 1.1.1.3 christos else
1605 1.1.1.3 christos pos = NULL;
1606 1.1.1.3 christos
1607 1.1.1.3 christos while (pos && *pos) {
1608 1.1.1.3 christos struct hostapd_nai_realm_eap *eap;
1609 1.1.1.3 christos
1610 1.1.1.3 christos if (realm->eap_method_count >= MAX_NAI_EAP_METHODS) {
1611 1.1.1.3 christos wpa_printf(MSG_ERROR, "Too many EAP methods");
1612 1.1.1.3 christos goto fail;
1613 1.1.1.3 christos }
1614 1.1.1.3 christos
1615 1.1.1.3 christos eap = &realm->eap_method[realm->eap_method_count];
1616 1.1.1.3 christos realm->eap_method_count++;
1617 1.1.1.3 christos
1618 1.1.1.3 christos end = os_strchr(pos, ',');
1619 1.1.1.3 christos if (end == NULL)
1620 1.1.1.3 christos end = pos + os_strlen(pos);
1621 1.1.1.3 christos
1622 1.1.1.3 christos eap->eap_method = atoi(pos);
1623 1.1.1.3 christos for (;;) {
1624 1.1.1.3 christos pos = os_strchr(pos, '[');
1625 1.1.1.3 christos if (pos == NULL || pos > end)
1626 1.1 christos break;
1627 1.1 christos pos++;
1628 1.1.1.3 christos if (eap->num_auths >= MAX_NAI_AUTH_TYPES) {
1629 1.1.1.3 christos wpa_printf(MSG_ERROR, "Too many auth params");
1630 1.1.1.3 christos goto fail;
1631 1.1.1.3 christos }
1632 1.1.1.3 christos eap->auth_id[eap->num_auths] = atoi(pos);
1633 1.1.1.3 christos pos = os_strchr(pos, ':');
1634 1.1.1.3 christos if (pos == NULL || pos > end)
1635 1.1.1.3 christos goto fail;
1636 1.1.1.3 christos pos++;
1637 1.1.1.3 christos eap->auth_val[eap->num_auths] = atoi(pos);
1638 1.1.1.3 christos pos = os_strchr(pos, ']');
1639 1.1.1.3 christos if (pos == NULL || pos > end)
1640 1.1.1.3 christos goto fail;
1641 1.1.1.3 christos pos++;
1642 1.1.1.3 christos eap->num_auths++;
1643 1.1 christos }
1644 1.1 christos
1645 1.1.1.3 christos if (*end != ',')
1646 1.1.1.3 christos break;
1647 1.1.1.3 christos
1648 1.1.1.3 christos pos = end + 1;
1649 1.1.1.3 christos }
1650 1.1.1.3 christos
1651 1.1.1.3 christos /* Split realm list into null terminated realms */
1652 1.1.1.3 christos rpos = realm->realm_buf;
1653 1.1.1.3 christos i = 0;
1654 1.1.1.3 christos while (*rpos) {
1655 1.1.1.3 christos if (i >= MAX_NAI_REALMS) {
1656 1.1.1.3 christos wpa_printf(MSG_ERROR, "Too many realms");
1657 1.1.1.3 christos goto fail;
1658 1.1.1.3 christos }
1659 1.1.1.3 christos realm->realm[i++] = rpos;
1660 1.1.1.3 christos rpos = os_strchr(rpos, ';');
1661 1.1.1.3 christos if (rpos == NULL)
1662 1.1.1.3 christos break;
1663 1.1.1.3 christos *rpos++ = '\0';
1664 1.1.1.3 christos }
1665 1.1.1.3 christos
1666 1.1.1.3 christos bss->nai_realm_count++;
1667 1.1.1.3 christos
1668 1.1.1.3 christos return 0;
1669 1.1.1.3 christos
1670 1.1.1.3 christos fail:
1671 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: invalid nai_realm '%s'", line, buf);
1672 1.1.1.3 christos return -1;
1673 1.1.1.3 christos }
1674 1.1.1.3 christos
1675 1.1.1.4 christos
1676 1.1.1.6 christos static int parse_anqp_elem(struct hostapd_bss_config *bss, char *buf, int line)
1677 1.1.1.6 christos {
1678 1.1.1.6 christos char *delim;
1679 1.1.1.6 christos u16 infoid;
1680 1.1.1.6 christos size_t len;
1681 1.1.1.6 christos struct wpabuf *payload;
1682 1.1.1.6 christos struct anqp_element *elem;
1683 1.1.1.6 christos
1684 1.1.1.6 christos delim = os_strchr(buf, ':');
1685 1.1.1.6 christos if (!delim)
1686 1.1.1.6 christos return -1;
1687 1.1.1.6 christos delim++;
1688 1.1.1.6 christos infoid = atoi(buf);
1689 1.1.1.6 christos len = os_strlen(delim);
1690 1.1.1.6 christos if (len & 1)
1691 1.1.1.6 christos return -1;
1692 1.1.1.6 christos len /= 2;
1693 1.1.1.6 christos payload = wpabuf_alloc(len);
1694 1.1.1.6 christos if (!payload)
1695 1.1.1.6 christos return -1;
1696 1.1.1.6 christos if (hexstr2bin(delim, wpabuf_put(payload, len), len) < 0) {
1697 1.1.1.6 christos wpabuf_free(payload);
1698 1.1.1.6 christos return -1;
1699 1.1.1.6 christos }
1700 1.1.1.6 christos
1701 1.1.1.6 christos dl_list_for_each(elem, &bss->anqp_elem, struct anqp_element, list) {
1702 1.1.1.6 christos if (elem->infoid == infoid) {
1703 1.1.1.6 christos /* Update existing entry */
1704 1.1.1.6 christos wpabuf_free(elem->payload);
1705 1.1.1.6 christos elem->payload = payload;
1706 1.1.1.6 christos return 0;
1707 1.1.1.6 christos }
1708 1.1.1.6 christos }
1709 1.1.1.6 christos
1710 1.1.1.6 christos /* Add a new entry */
1711 1.1.1.6 christos elem = os_zalloc(sizeof(*elem));
1712 1.1.1.6 christos if (!elem) {
1713 1.1.1.6 christos wpabuf_free(payload);
1714 1.1.1.6 christos return -1;
1715 1.1.1.6 christos }
1716 1.1.1.6 christos elem->infoid = infoid;
1717 1.1.1.6 christos elem->payload = payload;
1718 1.1.1.6 christos dl_list_add(&bss->anqp_elem, &elem->list);
1719 1.1.1.6 christos
1720 1.1.1.6 christos return 0;
1721 1.1.1.6 christos }
1722 1.1.1.6 christos
1723 1.1.1.6 christos
1724 1.1.1.4 christos static int parse_qos_map_set(struct hostapd_bss_config *bss,
1725 1.1.1.4 christos char *buf, int line)
1726 1.1.1.4 christos {
1727 1.1.1.4 christos u8 qos_map_set[16 + 2 * 21], count = 0;
1728 1.1.1.4 christos char *pos = buf;
1729 1.1.1.4 christos int val;
1730 1.1.1.4 christos
1731 1.1.1.4 christos for (;;) {
1732 1.1.1.4 christos if (count == sizeof(qos_map_set)) {
1733 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too many qos_map_set "
1734 1.1.1.4 christos "parameters '%s'", line, buf);
1735 1.1.1.4 christos return -1;
1736 1.1.1.4 christos }
1737 1.1.1.4 christos
1738 1.1.1.4 christos val = atoi(pos);
1739 1.1.1.4 christos if (val > 255 || val < 0) {
1740 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set "
1741 1.1.1.4 christos "'%s'", line, buf);
1742 1.1.1.4 christos return -1;
1743 1.1.1.4 christos }
1744 1.1.1.4 christos
1745 1.1.1.4 christos qos_map_set[count++] = val;
1746 1.1.1.4 christos pos = os_strchr(pos, ',');
1747 1.1.1.4 christos if (!pos)
1748 1.1.1.4 christos break;
1749 1.1.1.4 christos pos++;
1750 1.1.1.4 christos }
1751 1.1.1.4 christos
1752 1.1.1.4 christos if (count < 16 || count & 1) {
1753 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid qos_map_set '%s'",
1754 1.1.1.4 christos line, buf);
1755 1.1.1.4 christos return -1;
1756 1.1.1.4 christos }
1757 1.1.1.4 christos
1758 1.1.1.4 christos os_memcpy(bss->qos_map_set, qos_map_set, count);
1759 1.1.1.4 christos bss->qos_map_set_len = count;
1760 1.1.1.4 christos
1761 1.1.1.4 christos return 0;
1762 1.1.1.4 christos }
1763 1.1.1.4 christos
1764 1.1.1.3 christos #endif /* CONFIG_INTERWORKING */
1765 1.1.1.3 christos
1766 1.1 christos
1767 1.1.1.3 christos #ifdef CONFIG_HS20
1768 1.1.1.3 christos static int hs20_parse_conn_capab(struct hostapd_bss_config *bss, char *buf,
1769 1.1.1.3 christos int line)
1770 1.1.1.3 christos {
1771 1.1.1.3 christos u8 *conn_cap;
1772 1.1.1.3 christos char *pos;
1773 1.1.1.3 christos
1774 1.1.1.3 christos if (bss->hs20_connection_capability_len >= 0xfff0)
1775 1.1.1.3 christos return -1;
1776 1.1.1.3 christos
1777 1.1.1.3 christos conn_cap = os_realloc(bss->hs20_connection_capability,
1778 1.1.1.3 christos bss->hs20_connection_capability_len + 4);
1779 1.1.1.3 christos if (conn_cap == NULL)
1780 1.1.1.3 christos return -1;
1781 1.1.1.3 christos
1782 1.1.1.3 christos bss->hs20_connection_capability = conn_cap;
1783 1.1.1.3 christos conn_cap += bss->hs20_connection_capability_len;
1784 1.1.1.3 christos pos = buf;
1785 1.1.1.3 christos conn_cap[0] = atoi(pos);
1786 1.1.1.3 christos pos = os_strchr(pos, ':');
1787 1.1.1.3 christos if (pos == NULL)
1788 1.1.1.3 christos return -1;
1789 1.1.1.3 christos pos++;
1790 1.1.1.3 christos WPA_PUT_LE16(conn_cap + 1, atoi(pos));
1791 1.1.1.3 christos pos = os_strchr(pos, ':');
1792 1.1.1.3 christos if (pos == NULL)
1793 1.1.1.3 christos return -1;
1794 1.1.1.3 christos pos++;
1795 1.1.1.3 christos conn_cap[3] = atoi(pos);
1796 1.1.1.3 christos bss->hs20_connection_capability_len += 4;
1797 1.1.1.3 christos
1798 1.1.1.3 christos return 0;
1799 1.1.1.3 christos }
1800 1.1.1.3 christos
1801 1.1.1.3 christos
1802 1.1.1.3 christos static int hs20_parse_wan_metrics(struct hostapd_bss_config *bss, char *buf,
1803 1.1.1.3 christos int line)
1804 1.1.1.3 christos {
1805 1.1.1.3 christos u8 *wan_metrics;
1806 1.1.1.3 christos char *pos;
1807 1.1.1.3 christos
1808 1.1.1.3 christos /* <WAN Info>:<DL Speed>:<UL Speed>:<DL Load>:<UL Load>:<LMD> */
1809 1.1.1.3 christos
1810 1.1.1.3 christos wan_metrics = os_zalloc(13);
1811 1.1.1.3 christos if (wan_metrics == NULL)
1812 1.1.1.3 christos return -1;
1813 1.1.1.3 christos
1814 1.1.1.3 christos pos = buf;
1815 1.1.1.3 christos /* WAN Info */
1816 1.1.1.3 christos if (hexstr2bin(pos, wan_metrics, 1) < 0)
1817 1.1.1.3 christos goto fail;
1818 1.1.1.3 christos pos += 2;
1819 1.1.1.3 christos if (*pos != ':')
1820 1.1.1.3 christos goto fail;
1821 1.1.1.3 christos pos++;
1822 1.1.1.3 christos
1823 1.1.1.3 christos /* Downlink Speed */
1824 1.1.1.3 christos WPA_PUT_LE32(wan_metrics + 1, atoi(pos));
1825 1.1.1.3 christos pos = os_strchr(pos, ':');
1826 1.1.1.3 christos if (pos == NULL)
1827 1.1.1.3 christos goto fail;
1828 1.1.1.3 christos pos++;
1829 1.1.1.3 christos
1830 1.1.1.3 christos /* Uplink Speed */
1831 1.1.1.3 christos WPA_PUT_LE32(wan_metrics + 5, atoi(pos));
1832 1.1.1.3 christos pos = os_strchr(pos, ':');
1833 1.1.1.3 christos if (pos == NULL)
1834 1.1.1.3 christos goto fail;
1835 1.1.1.3 christos pos++;
1836 1.1.1.3 christos
1837 1.1.1.3 christos /* Downlink Load */
1838 1.1.1.3 christos wan_metrics[9] = atoi(pos);
1839 1.1.1.3 christos pos = os_strchr(pos, ':');
1840 1.1.1.3 christos if (pos == NULL)
1841 1.1.1.3 christos goto fail;
1842 1.1.1.3 christos pos++;
1843 1.1.1.3 christos
1844 1.1.1.3 christos /* Uplink Load */
1845 1.1.1.3 christos wan_metrics[10] = atoi(pos);
1846 1.1.1.3 christos pos = os_strchr(pos, ':');
1847 1.1.1.3 christos if (pos == NULL)
1848 1.1.1.3 christos goto fail;
1849 1.1.1.3 christos pos++;
1850 1.1.1.3 christos
1851 1.1.1.3 christos /* LMD */
1852 1.1.1.3 christos WPA_PUT_LE16(wan_metrics + 11, atoi(pos));
1853 1.1.1.3 christos
1854 1.1.1.3 christos os_free(bss->hs20_wan_metrics);
1855 1.1.1.3 christos bss->hs20_wan_metrics = wan_metrics;
1856 1.1.1.3 christos
1857 1.1.1.3 christos return 0;
1858 1.1.1.3 christos
1859 1.1.1.3 christos fail:
1860 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_wan_metrics '%s'",
1861 1.1.1.4 christos line, buf);
1862 1.1.1.3 christos os_free(wan_metrics);
1863 1.1.1.3 christos return -1;
1864 1.1.1.3 christos }
1865 1.1.1.3 christos
1866 1.1.1.3 christos
1867 1.1.1.3 christos static int hs20_parse_oper_friendly_name(struct hostapd_bss_config *bss,
1868 1.1.1.3 christos char *pos, int line)
1869 1.1.1.3 christos {
1870 1.1.1.3 christos if (parse_lang_string(&bss->hs20_oper_friendly_name,
1871 1.1.1.3 christos &bss->hs20_oper_friendly_name_count, pos)) {
1872 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: Invalid "
1873 1.1.1.3 christos "hs20_oper_friendly_name '%s'", line, pos);
1874 1.1.1.3 christos return -1;
1875 1.1.1.3 christos }
1876 1.1.1.3 christos return 0;
1877 1.1.1.3 christos }
1878 1.1.1.4 christos
1879 1.1.1.4 christos
1880 1.1.1.4 christos static int hs20_parse_icon(struct hostapd_bss_config *bss, char *pos)
1881 1.1.1.4 christos {
1882 1.1.1.4 christos struct hs20_icon *icon;
1883 1.1.1.4 christos char *end;
1884 1.1.1.4 christos
1885 1.1.1.4 christos icon = os_realloc_array(bss->hs20_icons, bss->hs20_icons_count + 1,
1886 1.1.1.4 christos sizeof(struct hs20_icon));
1887 1.1.1.4 christos if (icon == NULL)
1888 1.1.1.4 christos return -1;
1889 1.1.1.4 christos bss->hs20_icons = icon;
1890 1.1.1.4 christos icon = &bss->hs20_icons[bss->hs20_icons_count];
1891 1.1.1.4 christos os_memset(icon, 0, sizeof(*icon));
1892 1.1.1.4 christos
1893 1.1.1.4 christos icon->width = atoi(pos);
1894 1.1.1.4 christos pos = os_strchr(pos, ':');
1895 1.1.1.4 christos if (pos == NULL)
1896 1.1.1.4 christos return -1;
1897 1.1.1.4 christos pos++;
1898 1.1.1.4 christos
1899 1.1.1.4 christos icon->height = atoi(pos);
1900 1.1.1.4 christos pos = os_strchr(pos, ':');
1901 1.1.1.4 christos if (pos == NULL)
1902 1.1.1.4 christos return -1;
1903 1.1.1.4 christos pos++;
1904 1.1.1.4 christos
1905 1.1.1.4 christos end = os_strchr(pos, ':');
1906 1.1.1.4 christos if (end == NULL || end - pos > 3)
1907 1.1.1.4 christos return -1;
1908 1.1.1.4 christos os_memcpy(icon->language, pos, end - pos);
1909 1.1.1.4 christos pos = end + 1;
1910 1.1.1.4 christos
1911 1.1.1.4 christos end = os_strchr(pos, ':');
1912 1.1.1.4 christos if (end == NULL || end - pos > 255)
1913 1.1.1.4 christos return -1;
1914 1.1.1.4 christos os_memcpy(icon->type, pos, end - pos);
1915 1.1.1.4 christos pos = end + 1;
1916 1.1.1.4 christos
1917 1.1.1.4 christos end = os_strchr(pos, ':');
1918 1.1.1.4 christos if (end == NULL || end - pos > 255)
1919 1.1.1.4 christos return -1;
1920 1.1.1.4 christos os_memcpy(icon->name, pos, end - pos);
1921 1.1.1.4 christos pos = end + 1;
1922 1.1.1.4 christos
1923 1.1.1.4 christos if (os_strlen(pos) > 255)
1924 1.1.1.4 christos return -1;
1925 1.1.1.4 christos os_memcpy(icon->file, pos, os_strlen(pos));
1926 1.1.1.4 christos
1927 1.1.1.4 christos bss->hs20_icons_count++;
1928 1.1.1.4 christos
1929 1.1.1.4 christos return 0;
1930 1.1.1.4 christos }
1931 1.1.1.4 christos
1932 1.1.1.4 christos
1933 1.1.1.4 christos static int hs20_parse_osu_ssid(struct hostapd_bss_config *bss,
1934 1.1.1.4 christos char *pos, int line)
1935 1.1.1.4 christos {
1936 1.1.1.4 christos size_t slen;
1937 1.1.1.4 christos char *str;
1938 1.1.1.4 christos
1939 1.1.1.4 christos str = wpa_config_parse_string(pos, &slen);
1940 1.1.1.6 christos if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
1941 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid SSID '%s'", line, pos);
1942 1.1.1.4 christos os_free(str);
1943 1.1.1.4 christos return -1;
1944 1.1.1.4 christos }
1945 1.1.1.4 christos
1946 1.1.1.4 christos os_memcpy(bss->osu_ssid, str, slen);
1947 1.1.1.4 christos bss->osu_ssid_len = slen;
1948 1.1.1.4 christos os_free(str);
1949 1.1.1.4 christos
1950 1.1.1.4 christos return 0;
1951 1.1.1.4 christos }
1952 1.1.1.4 christos
1953 1.1.1.4 christos
1954 1.1.1.4 christos static int hs20_parse_osu_server_uri(struct hostapd_bss_config *bss,
1955 1.1.1.4 christos char *pos, int line)
1956 1.1.1.4 christos {
1957 1.1.1.4 christos struct hs20_osu_provider *p;
1958 1.1.1.4 christos
1959 1.1.1.4 christos p = os_realloc_array(bss->hs20_osu_providers,
1960 1.1.1.4 christos bss->hs20_osu_providers_count + 1, sizeof(*p));
1961 1.1.1.4 christos if (p == NULL)
1962 1.1.1.4 christos return -1;
1963 1.1.1.4 christos
1964 1.1.1.4 christos bss->hs20_osu_providers = p;
1965 1.1.1.4 christos bss->last_osu = &bss->hs20_osu_providers[bss->hs20_osu_providers_count];
1966 1.1.1.4 christos bss->hs20_osu_providers_count++;
1967 1.1.1.4 christos os_memset(bss->last_osu, 0, sizeof(*p));
1968 1.1.1.4 christos bss->last_osu->server_uri = os_strdup(pos);
1969 1.1.1.4 christos
1970 1.1.1.4 christos return 0;
1971 1.1.1.4 christos }
1972 1.1.1.4 christos
1973 1.1.1.4 christos
1974 1.1.1.4 christos static int hs20_parse_osu_friendly_name(struct hostapd_bss_config *bss,
1975 1.1.1.4 christos char *pos, int line)
1976 1.1.1.4 christos {
1977 1.1.1.4 christos if (bss->last_osu == NULL) {
1978 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1979 1.1.1.4 christos return -1;
1980 1.1.1.4 christos }
1981 1.1.1.4 christos
1982 1.1.1.4 christos if (parse_lang_string(&bss->last_osu->friendly_name,
1983 1.1.1.4 christos &bss->last_osu->friendly_name_count, pos)) {
1984 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid osu_friendly_name '%s'",
1985 1.1.1.4 christos line, pos);
1986 1.1.1.4 christos return -1;
1987 1.1.1.4 christos }
1988 1.1.1.4 christos
1989 1.1.1.4 christos return 0;
1990 1.1.1.4 christos }
1991 1.1.1.4 christos
1992 1.1.1.4 christos
1993 1.1.1.4 christos static int hs20_parse_osu_nai(struct hostapd_bss_config *bss,
1994 1.1.1.4 christos char *pos, int line)
1995 1.1.1.4 christos {
1996 1.1.1.4 christos if (bss->last_osu == NULL) {
1997 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
1998 1.1.1.4 christos return -1;
1999 1.1.1.4 christos }
2000 1.1.1.4 christos
2001 1.1.1.4 christos os_free(bss->last_osu->osu_nai);
2002 1.1.1.4 christos bss->last_osu->osu_nai = os_strdup(pos);
2003 1.1.1.4 christos if (bss->last_osu->osu_nai == NULL)
2004 1.1.1.4 christos return -1;
2005 1.1.1.4 christos
2006 1.1.1.4 christos return 0;
2007 1.1.1.4 christos }
2008 1.1.1.4 christos
2009 1.1.1.4 christos
2010 1.1.1.7 christos static int hs20_parse_osu_nai2(struct hostapd_bss_config *bss,
2011 1.1.1.7 christos char *pos, int line)
2012 1.1.1.7 christos {
2013 1.1.1.7 christos if (bss->last_osu == NULL) {
2014 1.1.1.7 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
2015 1.1.1.7 christos return -1;
2016 1.1.1.7 christos }
2017 1.1.1.7 christos
2018 1.1.1.7 christos os_free(bss->last_osu->osu_nai2);
2019 1.1.1.7 christos bss->last_osu->osu_nai2 = os_strdup(pos);
2020 1.1.1.7 christos if (bss->last_osu->osu_nai2 == NULL)
2021 1.1.1.7 christos return -1;
2022 1.1.1.7 christos bss->hs20_osu_providers_nai_count++;
2023 1.1.1.7 christos
2024 1.1.1.7 christos return 0;
2025 1.1.1.7 christos }
2026 1.1.1.7 christos
2027 1.1.1.7 christos
2028 1.1.1.4 christos static int hs20_parse_osu_method_list(struct hostapd_bss_config *bss, char *pos,
2029 1.1.1.4 christos int line)
2030 1.1.1.4 christos {
2031 1.1.1.4 christos if (bss->last_osu == NULL) {
2032 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
2033 1.1.1.4 christos return -1;
2034 1.1.1.4 christos }
2035 1.1.1.4 christos
2036 1.1.1.4 christos if (hostapd_parse_intlist(&bss->last_osu->method_list, pos)) {
2037 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid osu_method_list", line);
2038 1.1.1.4 christos return -1;
2039 1.1.1.4 christos }
2040 1.1.1.4 christos
2041 1.1.1.4 christos return 0;
2042 1.1.1.4 christos }
2043 1.1.1.4 christos
2044 1.1.1.4 christos
2045 1.1.1.4 christos static int hs20_parse_osu_icon(struct hostapd_bss_config *bss, char *pos,
2046 1.1.1.4 christos int line)
2047 1.1.1.4 christos {
2048 1.1.1.4 christos char **n;
2049 1.1.1.4 christos struct hs20_osu_provider *p = bss->last_osu;
2050 1.1.1.4 christos
2051 1.1.1.4 christos if (p == NULL) {
2052 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
2053 1.1.1.4 christos return -1;
2054 1.1.1.4 christos }
2055 1.1.1.4 christos
2056 1.1.1.4 christos n = os_realloc_array(p->icons, p->icons_count + 1, sizeof(char *));
2057 1.1.1.4 christos if (n == NULL)
2058 1.1.1.4 christos return -1;
2059 1.1.1.4 christos p->icons = n;
2060 1.1.1.4 christos p->icons[p->icons_count] = os_strdup(pos);
2061 1.1.1.4 christos if (p->icons[p->icons_count] == NULL)
2062 1.1.1.4 christos return -1;
2063 1.1.1.4 christos p->icons_count++;
2064 1.1.1.4 christos
2065 1.1.1.4 christos return 0;
2066 1.1.1.4 christos }
2067 1.1.1.4 christos
2068 1.1.1.4 christos
2069 1.1.1.4 christos static int hs20_parse_osu_service_desc(struct hostapd_bss_config *bss,
2070 1.1.1.4 christos char *pos, int line)
2071 1.1.1.4 christos {
2072 1.1.1.4 christos if (bss->last_osu == NULL) {
2073 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Unexpected OSU field", line);
2074 1.1.1.4 christos return -1;
2075 1.1.1.4 christos }
2076 1.1.1.4 christos
2077 1.1.1.4 christos if (parse_lang_string(&bss->last_osu->service_desc,
2078 1.1.1.4 christos &bss->last_osu->service_desc_count, pos)) {
2079 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid osu_service_desc '%s'",
2080 1.1.1.4 christos line, pos);
2081 1.1.1.4 christos return -1;
2082 1.1.1.4 christos }
2083 1.1.1.4 christos
2084 1.1.1.4 christos return 0;
2085 1.1.1.4 christos }
2086 1.1.1.4 christos
2087 1.1.1.7 christos
2088 1.1.1.7 christos static int hs20_parse_operator_icon(struct hostapd_bss_config *bss, char *pos,
2089 1.1.1.7 christos int line)
2090 1.1.1.7 christos {
2091 1.1.1.7 christos char **n;
2092 1.1.1.7 christos
2093 1.1.1.7 christos n = os_realloc_array(bss->hs20_operator_icon,
2094 1.1.1.7 christos bss->hs20_operator_icon_count + 1, sizeof(char *));
2095 1.1.1.7 christos if (!n)
2096 1.1.1.7 christos return -1;
2097 1.1.1.7 christos bss->hs20_operator_icon = n;
2098 1.1.1.7 christos bss->hs20_operator_icon[bss->hs20_operator_icon_count] = os_strdup(pos);
2099 1.1.1.7 christos if (!bss->hs20_operator_icon[bss->hs20_operator_icon_count])
2100 1.1.1.7 christos return -1;
2101 1.1.1.7 christos bss->hs20_operator_icon_count++;
2102 1.1.1.7 christos
2103 1.1.1.7 christos return 0;
2104 1.1.1.7 christos }
2105 1.1.1.7 christos
2106 1.1.1.3 christos #endif /* CONFIG_HS20 */
2107 1.1.1.3 christos
2108 1.1.1.3 christos
2109 1.1.1.5 christos #ifdef CONFIG_ACS
2110 1.1.1.5 christos static int hostapd_config_parse_acs_chan_bias(struct hostapd_config *conf,
2111 1.1.1.5 christos char *pos)
2112 1.1.1.5 christos {
2113 1.1.1.5 christos struct acs_bias *bias = NULL, *tmp;
2114 1.1.1.5 christos unsigned int num = 0;
2115 1.1.1.5 christos char *end;
2116 1.1.1.5 christos
2117 1.1.1.5 christos while (*pos) {
2118 1.1.1.5 christos tmp = os_realloc_array(bias, num + 1, sizeof(*bias));
2119 1.1.1.5 christos if (!tmp)
2120 1.1.1.5 christos goto fail;
2121 1.1.1.5 christos bias = tmp;
2122 1.1.1.5 christos
2123 1.1.1.5 christos bias[num].channel = atoi(pos);
2124 1.1.1.5 christos if (bias[num].channel <= 0)
2125 1.1.1.5 christos goto fail;
2126 1.1.1.5 christos pos = os_strchr(pos, ':');
2127 1.1.1.5 christos if (!pos)
2128 1.1.1.5 christos goto fail;
2129 1.1.1.5 christos pos++;
2130 1.1.1.5 christos bias[num].bias = strtod(pos, &end);
2131 1.1.1.5 christos if (end == pos || bias[num].bias < 0.0)
2132 1.1.1.5 christos goto fail;
2133 1.1.1.5 christos pos = end;
2134 1.1.1.5 christos if (*pos != ' ' && *pos != '\0')
2135 1.1.1.5 christos goto fail;
2136 1.1.1.5 christos num++;
2137 1.1.1.5 christos }
2138 1.1.1.5 christos
2139 1.1.1.5 christos os_free(conf->acs_chan_bias);
2140 1.1.1.5 christos conf->acs_chan_bias = bias;
2141 1.1.1.5 christos conf->num_acs_chan_bias = num;
2142 1.1.1.5 christos
2143 1.1.1.5 christos return 0;
2144 1.1.1.5 christos fail:
2145 1.1.1.5 christos os_free(bias);
2146 1.1.1.5 christos return -1;
2147 1.1.1.5 christos }
2148 1.1.1.5 christos #endif /* CONFIG_ACS */
2149 1.1.1.5 christos
2150 1.1.1.5 christos
2151 1.1.1.6 christos static int parse_wpabuf_hex(int line, const char *name, struct wpabuf **buf,
2152 1.1.1.6 christos const char *val)
2153 1.1.1.6 christos {
2154 1.1.1.6 christos struct wpabuf *elems;
2155 1.1.1.6 christos
2156 1.1.1.6 christos if (val[0] == '\0') {
2157 1.1.1.6 christos wpabuf_free(*buf);
2158 1.1.1.6 christos *buf = NULL;
2159 1.1.1.6 christos return 0;
2160 1.1.1.6 christos }
2161 1.1.1.6 christos
2162 1.1.1.6 christos elems = wpabuf_parse_bin(val);
2163 1.1.1.6 christos if (!elems) {
2164 1.1.1.6 christos wpa_printf(MSG_ERROR, "Line %d: Invalid %s '%s'",
2165 1.1.1.6 christos line, name, val);
2166 1.1.1.6 christos return -1;
2167 1.1.1.6 christos }
2168 1.1.1.6 christos
2169 1.1.1.6 christos wpabuf_free(*buf);
2170 1.1.1.6 christos *buf = elems;
2171 1.1.1.6 christos
2172 1.1.1.6 christos return 0;
2173 1.1.1.6 christos }
2174 1.1.1.6 christos
2175 1.1.1.6 christos
2176 1.1.1.7 christos #ifdef CONFIG_FILS
2177 1.1.1.7 christos static int parse_fils_realm(struct hostapd_bss_config *bss, const char *val)
2178 1.1.1.7 christos {
2179 1.1.1.7 christos struct fils_realm *realm;
2180 1.1.1.7 christos size_t len;
2181 1.1.1.7 christos
2182 1.1.1.7 christos len = os_strlen(val);
2183 1.1.1.7 christos realm = os_zalloc(sizeof(*realm) + len + 1);
2184 1.1.1.7 christos if (!realm)
2185 1.1.1.7 christos return -1;
2186 1.1.1.7 christos
2187 1.1.1.7 christos os_memcpy(realm->realm, val, len);
2188 1.1.1.7 christos if (fils_domain_name_hash(val, realm->hash) < 0) {
2189 1.1.1.7 christos os_free(realm);
2190 1.1.1.7 christos return -1;
2191 1.1.1.7 christos }
2192 1.1.1.7 christos dl_list_add_tail(&bss->fils_realms, &realm->list);
2193 1.1.1.7 christos
2194 1.1.1.7 christos return 0;
2195 1.1.1.7 christos }
2196 1.1.1.7 christos #endif /* CONFIG_FILS */
2197 1.1.1.7 christos
2198 1.1.1.7 christos
2199 1.1.1.7 christos #ifdef EAP_SERVER
2200 1.1.1.7 christos static unsigned int parse_tls_flags(const char *val)
2201 1.1.1.7 christos {
2202 1.1.1.7 christos unsigned int flags = 0;
2203 1.1.1.7 christos
2204 1.1.1.7 christos /* Disable TLS v1.3 by default for now to avoid interoperability issue.
2205 1.1.1.7 christos * This can be enabled by default once the implementation has been fully
2206 1.1.1.7 christos * completed and tested with other implementations. */
2207 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TLSv1_3;
2208 1.1.1.7 christos
2209 1.1.1.7 christos if (os_strstr(val, "[ALLOW-SIGN-RSA-MD5]"))
2210 1.1.1.7 christos flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
2211 1.1.1.7 christos if (os_strstr(val, "[DISABLE-TIME-CHECKS]"))
2212 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TIME_CHECKS;
2213 1.1.1.7 christos if (os_strstr(val, "[DISABLE-TLSv1.0]"))
2214 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TLSv1_0;
2215 1.1.1.8 christos if (os_strstr(val, "[ENABLE-TLSv1.0]"))
2216 1.1.1.8 christos flags |= TLS_CONN_ENABLE_TLSv1_0;
2217 1.1.1.7 christos if (os_strstr(val, "[DISABLE-TLSv1.1]"))
2218 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TLSv1_1;
2219 1.1.1.8 christos if (os_strstr(val, "[ENABLE-TLSv1.1]"))
2220 1.1.1.8 christos flags |= TLS_CONN_ENABLE_TLSv1_1;
2221 1.1.1.7 christos if (os_strstr(val, "[DISABLE-TLSv1.2]"))
2222 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TLSv1_2;
2223 1.1.1.8 christos if (os_strstr(val, "[ENABLE-TLSv1.2]"))
2224 1.1.1.8 christos flags |= TLS_CONN_ENABLE_TLSv1_2;
2225 1.1.1.7 christos if (os_strstr(val, "[DISABLE-TLSv1.3]"))
2226 1.1.1.7 christos flags |= TLS_CONN_DISABLE_TLSv1_3;
2227 1.1.1.7 christos if (os_strstr(val, "[ENABLE-TLSv1.3]"))
2228 1.1.1.7 christos flags &= ~TLS_CONN_DISABLE_TLSv1_3;
2229 1.1.1.7 christos if (os_strstr(val, "[SUITEB]"))
2230 1.1.1.7 christos flags |= TLS_CONN_SUITEB;
2231 1.1.1.7 christos if (os_strstr(val, "[SUITEB-NO-ECDH]"))
2232 1.1.1.7 christos flags |= TLS_CONN_SUITEB_NO_ECDH | TLS_CONN_SUITEB;
2233 1.1.1.7 christos
2234 1.1.1.7 christos return flags;
2235 1.1.1.7 christos }
2236 1.1.1.7 christos #endif /* EAP_SERVER */
2237 1.1.1.7 christos
2238 1.1.1.7 christos
2239 1.1.1.8 christos #ifdef CONFIG_AIRTIME_POLICY
2240 1.1.1.8 christos static int add_airtime_weight(struct hostapd_bss_config *bss, char *value)
2241 1.1.1.8 christos {
2242 1.1.1.8 christos struct airtime_sta_weight *wt;
2243 1.1.1.8 christos char *pos, *next;
2244 1.1.1.8 christos
2245 1.1.1.8 christos wt = os_zalloc(sizeof(*wt));
2246 1.1.1.8 christos if (!wt)
2247 1.1.1.8 christos return -1;
2248 1.1.1.8 christos
2249 1.1.1.8 christos /* 02:01:02:03:04:05 10 */
2250 1.1.1.8 christos pos = value;
2251 1.1.1.8 christos next = os_strchr(pos, ' ');
2252 1.1.1.8 christos if (next)
2253 1.1.1.8 christos *next++ = '\0';
2254 1.1.1.8 christos if (!next || hwaddr_aton(pos, wt->addr)) {
2255 1.1.1.8 christos wpa_printf(MSG_ERROR, "Invalid station address: '%s'", pos);
2256 1.1.1.8 christos os_free(wt);
2257 1.1.1.8 christos return -1;
2258 1.1.1.8 christos }
2259 1.1.1.8 christos
2260 1.1.1.8 christos pos = next;
2261 1.1.1.8 christos wt->weight = atoi(pos);
2262 1.1.1.8 christos if (!wt->weight) {
2263 1.1.1.8 christos wpa_printf(MSG_ERROR, "Invalid weight: '%s'", pos);
2264 1.1.1.8 christos os_free(wt);
2265 1.1.1.8 christos return -1;
2266 1.1.1.8 christos }
2267 1.1.1.8 christos
2268 1.1.1.8 christos wt->next = bss->airtime_weight_list;
2269 1.1.1.8 christos bss->airtime_weight_list = wt;
2270 1.1.1.8 christos return 0;
2271 1.1.1.8 christos }
2272 1.1.1.8 christos #endif /* CONFIG_AIRTIME_POLICY */
2273 1.1.1.8 christos
2274 1.1.1.8 christos
2275 1.1.1.7 christos #ifdef CONFIG_SAE
2276 1.1.1.7 christos static int parse_sae_password(struct hostapd_bss_config *bss, const char *val)
2277 1.1.1.7 christos {
2278 1.1.1.7 christos struct sae_password_entry *pw;
2279 1.1.1.7 christos const char *pos = val, *pos2, *end = NULL;
2280 1.1.1.7 christos
2281 1.1.1.7 christos pw = os_zalloc(sizeof(*pw));
2282 1.1.1.7 christos if (!pw)
2283 1.1.1.7 christos return -1;
2284 1.1.1.7 christos os_memset(pw->peer_addr, 0xff, ETH_ALEN); /* default to wildcard */
2285 1.1.1.7 christos
2286 1.1.1.7 christos pos2 = os_strstr(pos, "|mac=");
2287 1.1.1.7 christos if (pos2) {
2288 1.1.1.7 christos end = pos2;
2289 1.1.1.7 christos pos2 += 5;
2290 1.1.1.7 christos if (hwaddr_aton(pos2, pw->peer_addr) < 0)
2291 1.1.1.7 christos goto fail;
2292 1.1.1.7 christos pos = pos2 + ETH_ALEN * 3 - 1;
2293 1.1.1.7 christos }
2294 1.1.1.7 christos
2295 1.1.1.8 christos pos2 = os_strstr(pos, "|vlanid=");
2296 1.1.1.8 christos if (pos2) {
2297 1.1.1.8 christos if (!end)
2298 1.1.1.8 christos end = pos2;
2299 1.1.1.8 christos pos2 += 8;
2300 1.1.1.8 christos pw->vlan_id = atoi(pos2);
2301 1.1.1.8 christos }
2302 1.1.1.8 christos
2303 1.1.1.7 christos pos2 = os_strstr(pos, "|id=");
2304 1.1.1.7 christos if (pos2) {
2305 1.1.1.7 christos if (!end)
2306 1.1.1.7 christos end = pos2;
2307 1.1.1.7 christos pos2 += 4;
2308 1.1.1.7 christos pw->identifier = os_strdup(pos2);
2309 1.1.1.7 christos if (!pw->identifier)
2310 1.1.1.7 christos goto fail;
2311 1.1.1.7 christos }
2312 1.1.1.7 christos
2313 1.1.1.7 christos if (!end) {
2314 1.1.1.7 christos pw->password = os_strdup(val);
2315 1.1.1.7 christos if (!pw->password)
2316 1.1.1.7 christos goto fail;
2317 1.1.1.7 christos } else {
2318 1.1.1.7 christos pw->password = os_malloc(end - val + 1);
2319 1.1.1.7 christos if (!pw->password)
2320 1.1.1.7 christos goto fail;
2321 1.1.1.7 christos os_memcpy(pw->password, val, end - val);
2322 1.1.1.7 christos pw->password[end - val] = '\0';
2323 1.1.1.7 christos }
2324 1.1.1.7 christos
2325 1.1.1.7 christos pw->next = bss->sae_passwords;
2326 1.1.1.7 christos bss->sae_passwords = pw;
2327 1.1.1.7 christos
2328 1.1.1.7 christos return 0;
2329 1.1.1.7 christos fail:
2330 1.1.1.7 christos str_clear_free(pw->password);
2331 1.1.1.7 christos os_free(pw->identifier);
2332 1.1.1.7 christos os_free(pw);
2333 1.1.1.7 christos return -1;
2334 1.1.1.7 christos }
2335 1.1.1.7 christos #endif /* CONFIG_SAE */
2336 1.1.1.7 christos
2337 1.1.1.7 christos
2338 1.1.1.8 christos #ifdef CONFIG_DPP2
2339 1.1.1.8 christos static int hostapd_dpp_controller_parse(struct hostapd_bss_config *bss,
2340 1.1.1.8 christos const char *pos)
2341 1.1.1.8 christos {
2342 1.1.1.8 christos struct dpp_controller_conf *conf;
2343 1.1.1.8 christos char *val;
2344 1.1.1.8 christos
2345 1.1.1.8 christos conf = os_zalloc(sizeof(*conf));
2346 1.1.1.8 christos if (!conf)
2347 1.1.1.8 christos return -1;
2348 1.1.1.8 christos val = get_param(pos, "ipaddr=");
2349 1.1.1.8 christos if (!val || hostapd_parse_ip_addr(val, &conf->ipaddr))
2350 1.1.1.8 christos goto fail;
2351 1.1.1.8 christos os_free(val);
2352 1.1.1.8 christos val = get_param(pos, "pkhash=");
2353 1.1.1.8 christos if (!val || os_strlen(val) != 2 * SHA256_MAC_LEN ||
2354 1.1.1.8 christos hexstr2bin(val, conf->pkhash, SHA256_MAC_LEN) < 0)
2355 1.1.1.8 christos goto fail;
2356 1.1.1.8 christos os_free(val);
2357 1.1.1.8 christos conf->next = bss->dpp_controller;
2358 1.1.1.8 christos bss->dpp_controller = conf;
2359 1.1.1.8 christos return 0;
2360 1.1.1.8 christos fail:
2361 1.1.1.8 christos os_free(val);
2362 1.1.1.8 christos os_free(conf);
2363 1.1.1.8 christos return -1;
2364 1.1.1.8 christos }
2365 1.1.1.8 christos #endif /* CONFIG_DPP2 */
2366 1.1.1.8 christos
2367 1.1.1.8 christos
2368 1.1.1.3 christos static int hostapd_config_fill(struct hostapd_config *conf,
2369 1.1.1.3 christos struct hostapd_bss_config *bss,
2370 1.1.1.6 christos const char *buf, char *pos, int line)
2371 1.1.1.3 christos {
2372 1.1.1.4 christos if (os_strcmp(buf, "interface") == 0) {
2373 1.1.1.4 christos os_strlcpy(conf->bss[0]->iface, pos,
2374 1.1.1.4 christos sizeof(conf->bss[0]->iface));
2375 1.1.1.4 christos } else if (os_strcmp(buf, "bridge") == 0) {
2376 1.1.1.4 christos os_strlcpy(bss->bridge, pos, sizeof(bss->bridge));
2377 1.1.1.4 christos } else if (os_strcmp(buf, "vlan_bridge") == 0) {
2378 1.1.1.4 christos os_strlcpy(bss->vlan_bridge, pos, sizeof(bss->vlan_bridge));
2379 1.1.1.4 christos } else if (os_strcmp(buf, "wds_bridge") == 0) {
2380 1.1.1.4 christos os_strlcpy(bss->wds_bridge, pos, sizeof(bss->wds_bridge));
2381 1.1.1.4 christos } else if (os_strcmp(buf, "driver") == 0) {
2382 1.1.1.4 christos int j;
2383 1.1.1.7 christos const struct wpa_driver_ops *driver = NULL;
2384 1.1.1.7 christos
2385 1.1.1.4 christos for (j = 0; wpa_drivers[j]; j++) {
2386 1.1.1.4 christos if (os_strcmp(pos, wpa_drivers[j]->name) == 0) {
2387 1.1.1.7 christos driver = wpa_drivers[j];
2388 1.1.1.4 christos break;
2389 1.1.1.3 christos }
2390 1.1.1.4 christos }
2391 1.1.1.7 christos if (!driver) {
2392 1.1.1.4 christos wpa_printf(MSG_ERROR,
2393 1.1.1.4 christos "Line %d: invalid/unknown driver '%s'",
2394 1.1.1.4 christos line, pos);
2395 1.1.1.4 christos return 1;
2396 1.1.1.4 christos }
2397 1.1.1.7 christos conf->driver = driver;
2398 1.1.1.5 christos } else if (os_strcmp(buf, "driver_params") == 0) {
2399 1.1.1.5 christos os_free(conf->driver_params);
2400 1.1.1.5 christos conf->driver_params = os_strdup(pos);
2401 1.1.1.4 christos } else if (os_strcmp(buf, "debug") == 0) {
2402 1.1.1.4 christos wpa_printf(MSG_DEBUG, "Line %d: DEPRECATED: 'debug' configuration variable is not used anymore",
2403 1.1.1.4 christos line);
2404 1.1.1.4 christos } else if (os_strcmp(buf, "logger_syslog_level") == 0) {
2405 1.1.1.4 christos bss->logger_syslog_level = atoi(pos);
2406 1.1.1.4 christos } else if (os_strcmp(buf, "logger_stdout_level") == 0) {
2407 1.1.1.4 christos bss->logger_stdout_level = atoi(pos);
2408 1.1.1.4 christos } else if (os_strcmp(buf, "logger_syslog") == 0) {
2409 1.1.1.4 christos bss->logger_syslog = atoi(pos);
2410 1.1.1.4 christos } else if (os_strcmp(buf, "logger_stdout") == 0) {
2411 1.1.1.4 christos bss->logger_stdout = atoi(pos);
2412 1.1.1.4 christos } else if (os_strcmp(buf, "dump_file") == 0) {
2413 1.1.1.4 christos wpa_printf(MSG_INFO, "Line %d: DEPRECATED: 'dump_file' configuration variable is not used anymore",
2414 1.1.1.4 christos line);
2415 1.1.1.4 christos } else if (os_strcmp(buf, "ssid") == 0) {
2416 1.1.1.4 christos bss->ssid.ssid_len = os_strlen(pos);
2417 1.1.1.6 christos if (bss->ssid.ssid_len > SSID_MAX_LEN ||
2418 1.1.1.4 christos bss->ssid.ssid_len < 1) {
2419 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2420 1.1.1.4 christos line, pos);
2421 1.1.1.4 christos return 1;
2422 1.1.1.4 christos }
2423 1.1.1.4 christos os_memcpy(bss->ssid.ssid, pos, bss->ssid.ssid_len);
2424 1.1.1.4 christos bss->ssid.ssid_set = 1;
2425 1.1.1.4 christos } else if (os_strcmp(buf, "ssid2") == 0) {
2426 1.1.1.4 christos size_t slen;
2427 1.1.1.4 christos char *str = wpa_config_parse_string(pos, &slen);
2428 1.1.1.6 christos if (str == NULL || slen < 1 || slen > SSID_MAX_LEN) {
2429 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
2430 1.1.1.4 christos line, pos);
2431 1.1.1.3 christos os_free(str);
2432 1.1.1.4 christos return 1;
2433 1.1.1.4 christos }
2434 1.1.1.4 christos os_memcpy(bss->ssid.ssid, str, slen);
2435 1.1.1.4 christos bss->ssid.ssid_len = slen;
2436 1.1.1.4 christos bss->ssid.ssid_set = 1;
2437 1.1.1.4 christos os_free(str);
2438 1.1.1.4 christos } else if (os_strcmp(buf, "utf8_ssid") == 0) {
2439 1.1.1.4 christos bss->ssid.utf8_ssid = atoi(pos) > 0;
2440 1.1.1.4 christos } else if (os_strcmp(buf, "macaddr_acl") == 0) {
2441 1.1.1.7 christos enum macaddr_acl acl = atoi(pos);
2442 1.1.1.7 christos
2443 1.1.1.7 christos if (acl != ACCEPT_UNLESS_DENIED &&
2444 1.1.1.7 christos acl != DENY_UNLESS_ACCEPTED &&
2445 1.1.1.7 christos acl != USE_EXTERNAL_RADIUS_AUTH) {
2446 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: unknown macaddr_acl %d",
2447 1.1.1.7 christos line, acl);
2448 1.1.1.7 christos return 1;
2449 1.1.1.4 christos }
2450 1.1.1.7 christos bss->macaddr_acl = acl;
2451 1.1.1.4 christos } else if (os_strcmp(buf, "accept_mac_file") == 0) {
2452 1.1.1.4 christos if (hostapd_config_read_maclist(pos, &bss->accept_mac,
2453 1.1.1.4 christos &bss->num_accept_mac)) {
2454 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Failed to read accept_mac_file '%s'",
2455 1.1.1.4 christos line, pos);
2456 1.1.1.4 christos return 1;
2457 1.1.1.4 christos }
2458 1.1.1.4 christos } else if (os_strcmp(buf, "deny_mac_file") == 0) {
2459 1.1.1.4 christos if (hostapd_config_read_maclist(pos, &bss->deny_mac,
2460 1.1.1.4 christos &bss->num_deny_mac)) {
2461 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Failed to read deny_mac_file '%s'",
2462 1.1.1.4 christos line, pos);
2463 1.1.1.4 christos return 1;
2464 1.1.1.4 christos }
2465 1.1.1.4 christos } else if (os_strcmp(buf, "wds_sta") == 0) {
2466 1.1.1.4 christos bss->wds_sta = atoi(pos);
2467 1.1.1.4 christos } else if (os_strcmp(buf, "start_disabled") == 0) {
2468 1.1.1.4 christos bss->start_disabled = atoi(pos);
2469 1.1.1.4 christos } else if (os_strcmp(buf, "ap_isolate") == 0) {
2470 1.1.1.4 christos bss->isolate = atoi(pos);
2471 1.1.1.4 christos } else if (os_strcmp(buf, "ap_max_inactivity") == 0) {
2472 1.1.1.4 christos bss->ap_max_inactivity = atoi(pos);
2473 1.1.1.4 christos } else if (os_strcmp(buf, "skip_inactivity_poll") == 0) {
2474 1.1.1.4 christos bss->skip_inactivity_poll = atoi(pos);
2475 1.1.1.4 christos } else if (os_strcmp(buf, "country_code") == 0) {
2476 1.1.1.4 christos os_memcpy(conf->country, pos, 2);
2477 1.1.1.7 christos } else if (os_strcmp(buf, "country3") == 0) {
2478 1.1.1.7 christos conf->country[2] = strtol(pos, NULL, 16);
2479 1.1.1.4 christos } else if (os_strcmp(buf, "ieee80211d") == 0) {
2480 1.1.1.4 christos conf->ieee80211d = atoi(pos);
2481 1.1.1.4 christos } else if (os_strcmp(buf, "ieee80211h") == 0) {
2482 1.1.1.4 christos conf->ieee80211h = atoi(pos);
2483 1.1.1.4 christos } else if (os_strcmp(buf, "ieee8021x") == 0) {
2484 1.1.1.4 christos bss->ieee802_1x = atoi(pos);
2485 1.1.1.4 christos } else if (os_strcmp(buf, "eapol_version") == 0) {
2486 1.1.1.7 christos int eapol_version = atoi(pos);
2487 1.1.1.7 christos
2488 1.1.1.8 christos #ifdef CONFIG_MACSEC
2489 1.1.1.8 christos if (eapol_version < 1 || eapol_version > 3) {
2490 1.1.1.8 christos #else /* CONFIG_MACSEC */
2491 1.1.1.7 christos if (eapol_version < 1 || eapol_version > 2) {
2492 1.1.1.8 christos #endif /* CONFIG_MACSEC */
2493 1.1.1.4 christos wpa_printf(MSG_ERROR,
2494 1.1.1.4 christos "Line %d: invalid EAPOL version (%d): '%s'.",
2495 1.1.1.7 christos line, eapol_version, pos);
2496 1.1.1.4 christos return 1;
2497 1.1.1.4 christos }
2498 1.1.1.7 christos bss->eapol_version = eapol_version;
2499 1.1.1.4 christos wpa_printf(MSG_DEBUG, "eapol_version=%d", bss->eapol_version);
2500 1.1 christos #ifdef EAP_SERVER
2501 1.1.1.4 christos } else if (os_strcmp(buf, "eap_authenticator") == 0) {
2502 1.1.1.4 christos bss->eap_server = atoi(pos);
2503 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: obsolete eap_authenticator used; this has been renamed to eap_server", line);
2504 1.1.1.4 christos } else if (os_strcmp(buf, "eap_server") == 0) {
2505 1.1.1.4 christos bss->eap_server = atoi(pos);
2506 1.1.1.4 christos } else if (os_strcmp(buf, "eap_user_file") == 0) {
2507 1.1.1.4 christos if (hostapd_config_read_eap_user(pos, bss))
2508 1.1.1.4 christos return 1;
2509 1.1.1.4 christos } else if (os_strcmp(buf, "ca_cert") == 0) {
2510 1.1.1.4 christos os_free(bss->ca_cert);
2511 1.1.1.4 christos bss->ca_cert = os_strdup(pos);
2512 1.1.1.4 christos } else if (os_strcmp(buf, "server_cert") == 0) {
2513 1.1.1.4 christos os_free(bss->server_cert);
2514 1.1.1.4 christos bss->server_cert = os_strdup(pos);
2515 1.1.1.8 christos } else if (os_strcmp(buf, "server_cert2") == 0) {
2516 1.1.1.8 christos os_free(bss->server_cert2);
2517 1.1.1.8 christos bss->server_cert2 = os_strdup(pos);
2518 1.1.1.4 christos } else if (os_strcmp(buf, "private_key") == 0) {
2519 1.1.1.4 christos os_free(bss->private_key);
2520 1.1.1.4 christos bss->private_key = os_strdup(pos);
2521 1.1.1.8 christos } else if (os_strcmp(buf, "private_key2") == 0) {
2522 1.1.1.8 christos os_free(bss->private_key2);
2523 1.1.1.8 christos bss->private_key2 = os_strdup(pos);
2524 1.1.1.4 christos } else if (os_strcmp(buf, "private_key_passwd") == 0) {
2525 1.1.1.4 christos os_free(bss->private_key_passwd);
2526 1.1.1.4 christos bss->private_key_passwd = os_strdup(pos);
2527 1.1.1.8 christos } else if (os_strcmp(buf, "private_key_passwd2") == 0) {
2528 1.1.1.8 christos os_free(bss->private_key_passwd2);
2529 1.1.1.8 christos bss->private_key_passwd2 = os_strdup(pos);
2530 1.1.1.8 christos } else if (os_strcmp(buf, "check_cert_subject") == 0) {
2531 1.1.1.8 christos if (!pos[0]) {
2532 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: unknown check_cert_subject '%s'",
2533 1.1.1.8 christos line, pos);
2534 1.1.1.8 christos return 1;
2535 1.1.1.8 christos }
2536 1.1.1.8 christos os_free(bss->check_cert_subject);
2537 1.1.1.8 christos bss->check_cert_subject = os_strdup(pos);
2538 1.1.1.8 christos if (!bss->check_cert_subject)
2539 1.1.1.8 christos return 1;
2540 1.1.1.4 christos } else if (os_strcmp(buf, "check_crl") == 0) {
2541 1.1.1.4 christos bss->check_crl = atoi(pos);
2542 1.1.1.8 christos } else if (os_strcmp(buf, "check_crl_strict") == 0) {
2543 1.1.1.8 christos bss->check_crl_strict = atoi(pos);
2544 1.1.1.8 christos } else if (os_strcmp(buf, "crl_reload_interval") == 0) {
2545 1.1.1.8 christos bss->crl_reload_interval = atoi(pos);
2546 1.1.1.6 christos } else if (os_strcmp(buf, "tls_session_lifetime") == 0) {
2547 1.1.1.6 christos bss->tls_session_lifetime = atoi(pos);
2548 1.1.1.7 christos } else if (os_strcmp(buf, "tls_flags") == 0) {
2549 1.1.1.7 christos bss->tls_flags = parse_tls_flags(pos);
2550 1.1.1.4 christos } else if (os_strcmp(buf, "ocsp_stapling_response") == 0) {
2551 1.1.1.4 christos os_free(bss->ocsp_stapling_response);
2552 1.1.1.4 christos bss->ocsp_stapling_response = os_strdup(pos);
2553 1.1.1.6 christos } else if (os_strcmp(buf, "ocsp_stapling_response_multi") == 0) {
2554 1.1.1.6 christos os_free(bss->ocsp_stapling_response_multi);
2555 1.1.1.6 christos bss->ocsp_stapling_response_multi = os_strdup(pos);
2556 1.1.1.4 christos } else if (os_strcmp(buf, "dh_file") == 0) {
2557 1.1.1.4 christos os_free(bss->dh_file);
2558 1.1.1.4 christos bss->dh_file = os_strdup(pos);
2559 1.1.1.5 christos } else if (os_strcmp(buf, "openssl_ciphers") == 0) {
2560 1.1.1.5 christos os_free(bss->openssl_ciphers);
2561 1.1.1.5 christos bss->openssl_ciphers = os_strdup(pos);
2562 1.1.1.8 christos } else if (os_strcmp(buf, "openssl_ecdh_curves") == 0) {
2563 1.1.1.8 christos os_free(bss->openssl_ecdh_curves);
2564 1.1.1.8 christos bss->openssl_ecdh_curves = os_strdup(pos);
2565 1.1.1.4 christos } else if (os_strcmp(buf, "fragment_size") == 0) {
2566 1.1.1.4 christos bss->fragment_size = atoi(pos);
2567 1.1 christos #ifdef EAP_SERVER_FAST
2568 1.1.1.4 christos } else if (os_strcmp(buf, "pac_opaque_encr_key") == 0) {
2569 1.1.1.4 christos os_free(bss->pac_opaque_encr_key);
2570 1.1.1.4 christos bss->pac_opaque_encr_key = os_malloc(16);
2571 1.1.1.4 christos if (bss->pac_opaque_encr_key == NULL) {
2572 1.1.1.4 christos wpa_printf(MSG_ERROR,
2573 1.1.1.4 christos "Line %d: No memory for pac_opaque_encr_key",
2574 1.1.1.4 christos line);
2575 1.1.1.4 christos return 1;
2576 1.1.1.4 christos } else if (hexstr2bin(pos, bss->pac_opaque_encr_key, 16)) {
2577 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid pac_opaque_encr_key",
2578 1.1.1.4 christos line);
2579 1.1.1.4 christos return 1;
2580 1.1.1.4 christos }
2581 1.1.1.4 christos } else if (os_strcmp(buf, "eap_fast_a_id") == 0) {
2582 1.1.1.4 christos size_t idlen = os_strlen(pos);
2583 1.1.1.4 christos if (idlen & 1) {
2584 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid eap_fast_a_id",
2585 1.1.1.4 christos line);
2586 1.1.1.4 christos return 1;
2587 1.1.1.4 christos }
2588 1.1.1.4 christos os_free(bss->eap_fast_a_id);
2589 1.1.1.4 christos bss->eap_fast_a_id = os_malloc(idlen / 2);
2590 1.1.1.4 christos if (bss->eap_fast_a_id == NULL ||
2591 1.1.1.4 christos hexstr2bin(pos, bss->eap_fast_a_id, idlen / 2)) {
2592 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Failed to parse eap_fast_a_id",
2593 1.1.1.4 christos line);
2594 1.1.1.4 christos os_free(bss->eap_fast_a_id);
2595 1.1.1.4 christos bss->eap_fast_a_id = NULL;
2596 1.1.1.4 christos return 1;
2597 1.1.1.4 christos } else {
2598 1.1.1.4 christos bss->eap_fast_a_id_len = idlen / 2;
2599 1.1.1.4 christos }
2600 1.1.1.4 christos } else if (os_strcmp(buf, "eap_fast_a_id_info") == 0) {
2601 1.1.1.4 christos os_free(bss->eap_fast_a_id_info);
2602 1.1.1.4 christos bss->eap_fast_a_id_info = os_strdup(pos);
2603 1.1.1.4 christos } else if (os_strcmp(buf, "eap_fast_prov") == 0) {
2604 1.1.1.4 christos bss->eap_fast_prov = atoi(pos);
2605 1.1.1.4 christos } else if (os_strcmp(buf, "pac_key_lifetime") == 0) {
2606 1.1.1.4 christos bss->pac_key_lifetime = atoi(pos);
2607 1.1.1.4 christos } else if (os_strcmp(buf, "pac_key_refresh_time") == 0) {
2608 1.1.1.4 christos bss->pac_key_refresh_time = atoi(pos);
2609 1.1 christos #endif /* EAP_SERVER_FAST */
2610 1.1.1.8 christos #ifdef EAP_SERVER_TEAP
2611 1.1.1.8 christos } else if (os_strcmp(buf, "eap_teap_auth") == 0) {
2612 1.1.1.8 christos int val = atoi(pos);
2613 1.1.1.8 christos
2614 1.1.1.8 christos if (val < 0 || val > 1) {
2615 1.1.1.8 christos wpa_printf(MSG_ERROR,
2616 1.1.1.8 christos "Line %d: Invalid eap_teap_auth value",
2617 1.1.1.8 christos line);
2618 1.1.1.8 christos return 1;
2619 1.1.1.8 christos }
2620 1.1.1.8 christos bss->eap_teap_auth = val;
2621 1.1.1.8 christos } else if (os_strcmp(buf, "eap_teap_pac_no_inner") == 0) {
2622 1.1.1.8 christos bss->eap_teap_pac_no_inner = atoi(pos);
2623 1.1.1.8 christos #endif /* EAP_SERVER_TEAP */
2624 1.1 christos #ifdef EAP_SERVER_SIM
2625 1.1.1.4 christos } else if (os_strcmp(buf, "eap_sim_db") == 0) {
2626 1.1.1.4 christos os_free(bss->eap_sim_db);
2627 1.1.1.4 christos bss->eap_sim_db = os_strdup(pos);
2628 1.1.1.6 christos } else if (os_strcmp(buf, "eap_sim_db_timeout") == 0) {
2629 1.1.1.6 christos bss->eap_sim_db_timeout = atoi(pos);
2630 1.1.1.4 christos } else if (os_strcmp(buf, "eap_sim_aka_result_ind") == 0) {
2631 1.1.1.4 christos bss->eap_sim_aka_result_ind = atoi(pos);
2632 1.1.1.8 christos } else if (os_strcmp(buf, "eap_sim_id") == 0) {
2633 1.1.1.8 christos bss->eap_sim_id = atoi(pos);
2634 1.1 christos #endif /* EAP_SERVER_SIM */
2635 1.1 christos #ifdef EAP_SERVER_TNC
2636 1.1.1.4 christos } else if (os_strcmp(buf, "tnc") == 0) {
2637 1.1.1.4 christos bss->tnc = atoi(pos);
2638 1.1 christos #endif /* EAP_SERVER_TNC */
2639 1.1.1.2 christos #ifdef EAP_SERVER_PWD
2640 1.1.1.4 christos } else if (os_strcmp(buf, "pwd_group") == 0) {
2641 1.1.1.4 christos bss->pwd_group = atoi(pos);
2642 1.1.1.2 christos #endif /* EAP_SERVER_PWD */
2643 1.1.1.7 christos #ifdef CONFIG_ERP
2644 1.1.1.5 christos } else if (os_strcmp(buf, "eap_server_erp") == 0) {
2645 1.1.1.5 christos bss->eap_server_erp = atoi(pos);
2646 1.1.1.7 christos #endif /* CONFIG_ERP */
2647 1.1 christos #endif /* EAP_SERVER */
2648 1.1.1.4 christos } else if (os_strcmp(buf, "eap_message") == 0) {
2649 1.1.1.4 christos char *term;
2650 1.1.1.4 christos os_free(bss->eap_req_id_text);
2651 1.1.1.4 christos bss->eap_req_id_text = os_strdup(pos);
2652 1.1.1.4 christos if (bss->eap_req_id_text == NULL) {
2653 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Failed to allocate memory for eap_req_id_text",
2654 1.1.1.4 christos line);
2655 1.1.1.4 christos return 1;
2656 1.1.1.4 christos }
2657 1.1.1.4 christos bss->eap_req_id_text_len = os_strlen(bss->eap_req_id_text);
2658 1.1.1.4 christos term = os_strstr(bss->eap_req_id_text, "\\0");
2659 1.1.1.4 christos if (term) {
2660 1.1.1.4 christos *term++ = '\0';
2661 1.1.1.4 christos os_memmove(term, term + 1,
2662 1.1.1.4 christos bss->eap_req_id_text_len -
2663 1.1.1.4 christos (term - bss->eap_req_id_text) - 1);
2664 1.1.1.4 christos bss->eap_req_id_text_len--;
2665 1.1.1.4 christos }
2666 1.1.1.5 christos } else if (os_strcmp(buf, "erp_send_reauth_start") == 0) {
2667 1.1.1.5 christos bss->erp_send_reauth_start = atoi(pos);
2668 1.1.1.5 christos } else if (os_strcmp(buf, "erp_domain") == 0) {
2669 1.1.1.5 christos os_free(bss->erp_domain);
2670 1.1.1.5 christos bss->erp_domain = os_strdup(pos);
2671 1.1.1.4 christos } else if (os_strcmp(buf, "wep_key_len_broadcast") == 0) {
2672 1.1.1.7 christos int val = atoi(pos);
2673 1.1.1.7 christos
2674 1.1.1.7 christos if (val < 0 || val > 13) {
2675 1.1.1.7 christos wpa_printf(MSG_ERROR,
2676 1.1.1.7 christos "Line %d: invalid WEP key len %d (= %d bits)",
2677 1.1.1.7 christos line, val, val * 8);
2678 1.1.1.4 christos return 1;
2679 1.1.1.4 christos }
2680 1.1.1.7 christos bss->default_wep_key_len = val;
2681 1.1.1.4 christos } else if (os_strcmp(buf, "wep_key_len_unicast") == 0) {
2682 1.1.1.7 christos int val = atoi(pos);
2683 1.1.1.7 christos
2684 1.1.1.7 christos if (val < 0 || val > 13) {
2685 1.1.1.7 christos wpa_printf(MSG_ERROR,
2686 1.1.1.7 christos "Line %d: invalid WEP key len %d (= %d bits)",
2687 1.1.1.7 christos line, val, val * 8);
2688 1.1.1.4 christos return 1;
2689 1.1.1.4 christos }
2690 1.1.1.7 christos bss->individual_wep_key_len = val;
2691 1.1.1.4 christos } else if (os_strcmp(buf, "wep_rekey_period") == 0) {
2692 1.1.1.4 christos bss->wep_rekeying_period = atoi(pos);
2693 1.1.1.4 christos if (bss->wep_rekeying_period < 0) {
2694 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2695 1.1.1.4 christos line, bss->wep_rekeying_period);
2696 1.1.1.4 christos return 1;
2697 1.1.1.4 christos }
2698 1.1.1.4 christos } else if (os_strcmp(buf, "eap_reauth_period") == 0) {
2699 1.1.1.4 christos bss->eap_reauth_period = atoi(pos);
2700 1.1.1.4 christos if (bss->eap_reauth_period < 0) {
2701 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid period %d",
2702 1.1.1.4 christos line, bss->eap_reauth_period);
2703 1.1.1.4 christos return 1;
2704 1.1.1.4 christos }
2705 1.1.1.4 christos } else if (os_strcmp(buf, "eapol_key_index_workaround") == 0) {
2706 1.1.1.4 christos bss->eapol_key_index_workaround = atoi(pos);
2707 1.1 christos #ifdef CONFIG_IAPP
2708 1.1.1.4 christos } else if (os_strcmp(buf, "iapp_interface") == 0) {
2709 1.1.1.4 christos bss->ieee802_11f = 1;
2710 1.1.1.4 christos os_strlcpy(bss->iapp_iface, pos, sizeof(bss->iapp_iface));
2711 1.1 christos #endif /* CONFIG_IAPP */
2712 1.1.1.4 christos } else if (os_strcmp(buf, "own_ip_addr") == 0) {
2713 1.1.1.4 christos if (hostapd_parse_ip_addr(pos, &bss->own_ip_addr)) {
2714 1.1.1.4 christos wpa_printf(MSG_ERROR,
2715 1.1.1.4 christos "Line %d: invalid IP address '%s'",
2716 1.1.1.4 christos line, pos);
2717 1.1.1.4 christos return 1;
2718 1.1.1.4 christos }
2719 1.1.1.4 christos } else if (os_strcmp(buf, "nas_identifier") == 0) {
2720 1.1.1.4 christos os_free(bss->nas_identifier);
2721 1.1.1.4 christos bss->nas_identifier = os_strdup(pos);
2722 1.1 christos #ifndef CONFIG_NO_RADIUS
2723 1.1.1.5 christos } else if (os_strcmp(buf, "radius_client_addr") == 0) {
2724 1.1.1.5 christos if (hostapd_parse_ip_addr(pos, &bss->radius->client_addr)) {
2725 1.1.1.5 christos wpa_printf(MSG_ERROR,
2726 1.1.1.5 christos "Line %d: invalid IP address '%s'",
2727 1.1.1.5 christos line, pos);
2728 1.1.1.5 christos return 1;
2729 1.1.1.5 christos }
2730 1.1.1.5 christos bss->radius->force_client_addr = 1;
2731 1.1.1.4 christos } else if (os_strcmp(buf, "auth_server_addr") == 0) {
2732 1.1.1.4 christos if (hostapd_config_read_radius_addr(
2733 1.1.1.4 christos &bss->radius->auth_servers,
2734 1.1.1.4 christos &bss->radius->num_auth_servers, pos, 1812,
2735 1.1.1.4 christos &bss->radius->auth_server)) {
2736 1.1.1.4 christos wpa_printf(MSG_ERROR,
2737 1.1.1.4 christos "Line %d: invalid IP address '%s'",
2738 1.1.1.4 christos line, pos);
2739 1.1.1.4 christos return 1;
2740 1.1.1.4 christos }
2741 1.1.1.4 christos } else if (bss->radius->auth_server &&
2742 1.1.1.5 christos os_strcmp(buf, "auth_server_addr_replace") == 0) {
2743 1.1.1.5 christos if (hostapd_parse_ip_addr(pos,
2744 1.1.1.5 christos &bss->radius->auth_server->addr)) {
2745 1.1.1.5 christos wpa_printf(MSG_ERROR,
2746 1.1.1.5 christos "Line %d: invalid IP address '%s'",
2747 1.1.1.5 christos line, pos);
2748 1.1.1.5 christos return 1;
2749 1.1.1.5 christos }
2750 1.1.1.5 christos } else if (bss->radius->auth_server &&
2751 1.1.1.4 christos os_strcmp(buf, "auth_server_port") == 0) {
2752 1.1.1.4 christos bss->radius->auth_server->port = atoi(pos);
2753 1.1.1.4 christos } else if (bss->radius->auth_server &&
2754 1.1.1.4 christos os_strcmp(buf, "auth_server_shared_secret") == 0) {
2755 1.1.1.4 christos int len = os_strlen(pos);
2756 1.1.1.4 christos if (len == 0) {
2757 1.1.1.4 christos /* RFC 2865, Ch. 3 */
2758 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2759 1.1.1.4 christos line);
2760 1.1.1.4 christos return 1;
2761 1.1.1.4 christos }
2762 1.1.1.4 christos os_free(bss->radius->auth_server->shared_secret);
2763 1.1.1.4 christos bss->radius->auth_server->shared_secret = (u8 *) os_strdup(pos);
2764 1.1.1.4 christos bss->radius->auth_server->shared_secret_len = len;
2765 1.1.1.4 christos } else if (os_strcmp(buf, "acct_server_addr") == 0) {
2766 1.1.1.4 christos if (hostapd_config_read_radius_addr(
2767 1.1.1.4 christos &bss->radius->acct_servers,
2768 1.1.1.4 christos &bss->radius->num_acct_servers, pos, 1813,
2769 1.1.1.4 christos &bss->radius->acct_server)) {
2770 1.1.1.4 christos wpa_printf(MSG_ERROR,
2771 1.1.1.4 christos "Line %d: invalid IP address '%s'",
2772 1.1.1.4 christos line, pos);
2773 1.1.1.4 christos return 1;
2774 1.1.1.4 christos }
2775 1.1.1.4 christos } else if (bss->radius->acct_server &&
2776 1.1.1.5 christos os_strcmp(buf, "acct_server_addr_replace") == 0) {
2777 1.1.1.5 christos if (hostapd_parse_ip_addr(pos,
2778 1.1.1.5 christos &bss->radius->acct_server->addr)) {
2779 1.1.1.5 christos wpa_printf(MSG_ERROR,
2780 1.1.1.5 christos "Line %d: invalid IP address '%s'",
2781 1.1.1.5 christos line, pos);
2782 1.1.1.5 christos return 1;
2783 1.1.1.5 christos }
2784 1.1.1.5 christos } else if (bss->radius->acct_server &&
2785 1.1.1.4 christos os_strcmp(buf, "acct_server_port") == 0) {
2786 1.1.1.4 christos bss->radius->acct_server->port = atoi(pos);
2787 1.1.1.4 christos } else if (bss->radius->acct_server &&
2788 1.1.1.4 christos os_strcmp(buf, "acct_server_shared_secret") == 0) {
2789 1.1.1.4 christos int len = os_strlen(pos);
2790 1.1.1.4 christos if (len == 0) {
2791 1.1.1.4 christos /* RFC 2865, Ch. 3 */
2792 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: empty shared secret is not allowed",
2793 1.1.1.4 christos line);
2794 1.1.1.4 christos return 1;
2795 1.1.1.4 christos }
2796 1.1.1.4 christos os_free(bss->radius->acct_server->shared_secret);
2797 1.1.1.4 christos bss->radius->acct_server->shared_secret = (u8 *) os_strdup(pos);
2798 1.1.1.4 christos bss->radius->acct_server->shared_secret_len = len;
2799 1.1.1.4 christos } else if (os_strcmp(buf, "radius_retry_primary_interval") == 0) {
2800 1.1.1.4 christos bss->radius->retry_primary_interval = atoi(pos);
2801 1.1.1.4 christos } else if (os_strcmp(buf, "radius_acct_interim_interval") == 0) {
2802 1.1.1.4 christos bss->acct_interim_interval = atoi(pos);
2803 1.1.1.4 christos } else if (os_strcmp(buf, "radius_request_cui") == 0) {
2804 1.1.1.4 christos bss->radius_request_cui = atoi(pos);
2805 1.1.1.4 christos } else if (os_strcmp(buf, "radius_auth_req_attr") == 0) {
2806 1.1.1.4 christos struct hostapd_radius_attr *attr, *a;
2807 1.1.1.4 christos attr = hostapd_parse_radius_attr(pos);
2808 1.1.1.4 christos if (attr == NULL) {
2809 1.1.1.4 christos wpa_printf(MSG_ERROR,
2810 1.1.1.4 christos "Line %d: invalid radius_auth_req_attr",
2811 1.1.1.4 christos line);
2812 1.1.1.4 christos return 1;
2813 1.1.1.4 christos } else if (bss->radius_auth_req_attr == NULL) {
2814 1.1.1.4 christos bss->radius_auth_req_attr = attr;
2815 1.1.1.4 christos } else {
2816 1.1.1.4 christos a = bss->radius_auth_req_attr;
2817 1.1.1.4 christos while (a->next)
2818 1.1.1.4 christos a = a->next;
2819 1.1.1.4 christos a->next = attr;
2820 1.1.1.4 christos }
2821 1.1.1.4 christos } else if (os_strcmp(buf, "radius_acct_req_attr") == 0) {
2822 1.1.1.4 christos struct hostapd_radius_attr *attr, *a;
2823 1.1.1.4 christos attr = hostapd_parse_radius_attr(pos);
2824 1.1.1.4 christos if (attr == NULL) {
2825 1.1.1.4 christos wpa_printf(MSG_ERROR,
2826 1.1.1.4 christos "Line %d: invalid radius_acct_req_attr",
2827 1.1.1.4 christos line);
2828 1.1.1.4 christos return 1;
2829 1.1.1.4 christos } else if (bss->radius_acct_req_attr == NULL) {
2830 1.1.1.4 christos bss->radius_acct_req_attr = attr;
2831 1.1.1.4 christos } else {
2832 1.1.1.4 christos a = bss->radius_acct_req_attr;
2833 1.1.1.4 christos while (a->next)
2834 1.1.1.4 christos a = a->next;
2835 1.1.1.4 christos a->next = attr;
2836 1.1.1.4 christos }
2837 1.1.1.8 christos } else if (os_strcmp(buf, "radius_req_attr_sqlite") == 0) {
2838 1.1.1.8 christos os_free(bss->radius_req_attr_sqlite);
2839 1.1.1.8 christos bss->radius_req_attr_sqlite = os_strdup(pos);
2840 1.1.1.4 christos } else if (os_strcmp(buf, "radius_das_port") == 0) {
2841 1.1.1.4 christos bss->radius_das_port = atoi(pos);
2842 1.1.1.4 christos } else if (os_strcmp(buf, "radius_das_client") == 0) {
2843 1.1.1.4 christos if (hostapd_parse_das_client(bss, pos) < 0) {
2844 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid DAS client",
2845 1.1.1.4 christos line);
2846 1.1.1.4 christos return 1;
2847 1.1.1.4 christos }
2848 1.1.1.4 christos } else if (os_strcmp(buf, "radius_das_time_window") == 0) {
2849 1.1.1.4 christos bss->radius_das_time_window = atoi(pos);
2850 1.1.1.4 christos } else if (os_strcmp(buf, "radius_das_require_event_timestamp") == 0) {
2851 1.1.1.4 christos bss->radius_das_require_event_timestamp = atoi(pos);
2852 1.1.1.6 christos } else if (os_strcmp(buf, "radius_das_require_message_authenticator") ==
2853 1.1.1.6 christos 0) {
2854 1.1.1.6 christos bss->radius_das_require_message_authenticator = atoi(pos);
2855 1.1 christos #endif /* CONFIG_NO_RADIUS */
2856 1.1.1.4 christos } else if (os_strcmp(buf, "auth_algs") == 0) {
2857 1.1.1.4 christos bss->auth_algs = atoi(pos);
2858 1.1.1.4 christos if (bss->auth_algs == 0) {
2859 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: no authentication algorithms allowed",
2860 1.1.1.4 christos line);
2861 1.1.1.4 christos return 1;
2862 1.1.1.4 christos }
2863 1.1.1.4 christos } else if (os_strcmp(buf, "max_num_sta") == 0) {
2864 1.1.1.4 christos bss->max_num_sta = atoi(pos);
2865 1.1.1.4 christos if (bss->max_num_sta < 0 ||
2866 1.1.1.4 christos bss->max_num_sta > MAX_STA_COUNT) {
2867 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid max_num_sta=%d; allowed range 0..%d",
2868 1.1.1.4 christos line, bss->max_num_sta, MAX_STA_COUNT);
2869 1.1.1.4 christos return 1;
2870 1.1.1.4 christos }
2871 1.1.1.4 christos } else if (os_strcmp(buf, "wpa") == 0) {
2872 1.1.1.4 christos bss->wpa = atoi(pos);
2873 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_group_rekey") == 0) {
2874 1.1.1.4 christos bss->wpa_group_rekey = atoi(pos);
2875 1.1.1.7 christos bss->wpa_group_rekey_set = 1;
2876 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_strict_rekey") == 0) {
2877 1.1.1.4 christos bss->wpa_strict_rekey = atoi(pos);
2878 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_gmk_rekey") == 0) {
2879 1.1.1.4 christos bss->wpa_gmk_rekey = atoi(pos);
2880 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_ptk_rekey") == 0) {
2881 1.1.1.4 christos bss->wpa_ptk_rekey = atoi(pos);
2882 1.1.1.7 christos } else if (os_strcmp(buf, "wpa_group_update_count") == 0) {
2883 1.1.1.7 christos char *endp;
2884 1.1.1.7 christos unsigned long val = strtoul(pos, &endp, 0);
2885 1.1.1.7 christos
2886 1.1.1.7 christos if (*endp || val < 1 || val > (u32) -1) {
2887 1.1.1.7 christos wpa_printf(MSG_ERROR,
2888 1.1.1.7 christos "Line %d: Invalid wpa_group_update_count=%lu; allowed range 1..4294967295",
2889 1.1.1.7 christos line, val);
2890 1.1.1.7 christos return 1;
2891 1.1.1.7 christos }
2892 1.1.1.7 christos bss->wpa_group_update_count = (u32) val;
2893 1.1.1.7 christos } else if (os_strcmp(buf, "wpa_pairwise_update_count") == 0) {
2894 1.1.1.7 christos char *endp;
2895 1.1.1.7 christos unsigned long val = strtoul(pos, &endp, 0);
2896 1.1.1.7 christos
2897 1.1.1.7 christos if (*endp || val < 1 || val > (u32) -1) {
2898 1.1.1.7 christos wpa_printf(MSG_ERROR,
2899 1.1.1.7 christos "Line %d: Invalid wpa_pairwise_update_count=%lu; allowed range 1..4294967295",
2900 1.1.1.7 christos line, val);
2901 1.1.1.7 christos return 1;
2902 1.1.1.7 christos }
2903 1.1.1.7 christos bss->wpa_pairwise_update_count = (u32) val;
2904 1.1.1.7 christos } else if (os_strcmp(buf, "wpa_disable_eapol_key_retries") == 0) {
2905 1.1.1.7 christos bss->wpa_disable_eapol_key_retries = atoi(pos);
2906 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_passphrase") == 0) {
2907 1.1.1.4 christos int len = os_strlen(pos);
2908 1.1.1.4 christos if (len < 8 || len > 63) {
2909 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid WPA passphrase length %d (expected 8..63)",
2910 1.1.1.4 christos line, len);
2911 1.1.1.4 christos return 1;
2912 1.1.1.4 christos }
2913 1.1.1.4 christos os_free(bss->ssid.wpa_passphrase);
2914 1.1.1.4 christos bss->ssid.wpa_passphrase = os_strdup(pos);
2915 1.1.1.4 christos if (bss->ssid.wpa_passphrase) {
2916 1.1.1.5 christos hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
2917 1.1.1.4 christos bss->ssid.wpa_passphrase_set = 1;
2918 1.1.1.4 christos }
2919 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_psk") == 0) {
2920 1.1.1.5 christos hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
2921 1.1.1.4 christos bss->ssid.wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
2922 1.1.1.4 christos if (bss->ssid.wpa_psk == NULL)
2923 1.1.1.4 christos return 1;
2924 1.1.1.4 christos if (hexstr2bin(pos, bss->ssid.wpa_psk->psk, PMK_LEN) ||
2925 1.1.1.4 christos pos[PMK_LEN * 2] != '\0') {
2926 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
2927 1.1.1.4 christos line, pos);
2928 1.1.1.5 christos hostapd_config_clear_wpa_psk(&bss->ssid.wpa_psk);
2929 1.1.1.4 christos return 1;
2930 1.1.1.4 christos }
2931 1.1.1.4 christos bss->ssid.wpa_psk->group = 1;
2932 1.1.1.4 christos os_free(bss->ssid.wpa_passphrase);
2933 1.1.1.4 christos bss->ssid.wpa_passphrase = NULL;
2934 1.1.1.4 christos bss->ssid.wpa_psk_set = 1;
2935 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_psk_file") == 0) {
2936 1.1.1.4 christos os_free(bss->ssid.wpa_psk_file);
2937 1.1.1.4 christos bss->ssid.wpa_psk_file = os_strdup(pos);
2938 1.1.1.4 christos if (!bss->ssid.wpa_psk_file) {
2939 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: allocation failed",
2940 1.1.1.4 christos line);
2941 1.1.1.4 christos return 1;
2942 1.1.1.4 christos }
2943 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_key_mgmt") == 0) {
2944 1.1.1.4 christos bss->wpa_key_mgmt = hostapd_config_parse_key_mgmt(line, pos);
2945 1.1.1.4 christos if (bss->wpa_key_mgmt == -1)
2946 1.1.1.4 christos return 1;
2947 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_psk_radius") == 0) {
2948 1.1.1.4 christos bss->wpa_psk_radius = atoi(pos);
2949 1.1.1.4 christos if (bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
2950 1.1.1.4 christos bss->wpa_psk_radius != PSK_RADIUS_ACCEPTED &&
2951 1.1.1.4 christos bss->wpa_psk_radius != PSK_RADIUS_REQUIRED) {
2952 1.1.1.4 christos wpa_printf(MSG_ERROR,
2953 1.1.1.4 christos "Line %d: unknown wpa_psk_radius %d",
2954 1.1.1.4 christos line, bss->wpa_psk_radius);
2955 1.1.1.4 christos return 1;
2956 1.1.1.4 christos }
2957 1.1.1.4 christos } else if (os_strcmp(buf, "wpa_pairwise") == 0) {
2958 1.1.1.4 christos bss->wpa_pairwise = hostapd_config_parse_cipher(line, pos);
2959 1.1.1.4 christos if (bss->wpa_pairwise == -1 || bss->wpa_pairwise == 0)
2960 1.1.1.4 christos return 1;
2961 1.1.1.4 christos if (bss->wpa_pairwise &
2962 1.1.1.4 christos (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
2963 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
2964 1.1.1.7 christos line, pos);
2965 1.1.1.4 christos return 1;
2966 1.1.1.4 christos }
2967 1.1.1.4 christos } else if (os_strcmp(buf, "rsn_pairwise") == 0) {
2968 1.1.1.4 christos bss->rsn_pairwise = hostapd_config_parse_cipher(line, pos);
2969 1.1.1.4 christos if (bss->rsn_pairwise == -1 || bss->rsn_pairwise == 0)
2970 1.1.1.4 christos return 1;
2971 1.1.1.4 christos if (bss->rsn_pairwise &
2972 1.1.1.4 christos (WPA_CIPHER_NONE | WPA_CIPHER_WEP40 | WPA_CIPHER_WEP104)) {
2973 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: unsupported pairwise cipher suite '%s'",
2974 1.1.1.7 christos line, pos);
2975 1.1.1.7 christos return 1;
2976 1.1.1.7 christos }
2977 1.1.1.7 christos } else if (os_strcmp(buf, "group_cipher") == 0) {
2978 1.1.1.7 christos bss->group_cipher = hostapd_config_parse_cipher(line, pos);
2979 1.1.1.7 christos if (bss->group_cipher == -1 || bss->group_cipher == 0)
2980 1.1.1.7 christos return 1;
2981 1.1.1.7 christos if (bss->group_cipher != WPA_CIPHER_TKIP &&
2982 1.1.1.7 christos bss->group_cipher != WPA_CIPHER_CCMP &&
2983 1.1.1.7 christos bss->group_cipher != WPA_CIPHER_GCMP &&
2984 1.1.1.7 christos bss->group_cipher != WPA_CIPHER_GCMP_256 &&
2985 1.1.1.7 christos bss->group_cipher != WPA_CIPHER_CCMP_256) {
2986 1.1.1.7 christos wpa_printf(MSG_ERROR,
2987 1.1.1.7 christos "Line %d: unsupported group cipher suite '%s'",
2988 1.1.1.7 christos line, pos);
2989 1.1.1.4 christos return 1;
2990 1.1.1.4 christos }
2991 1.1 christos #ifdef CONFIG_RSN_PREAUTH
2992 1.1.1.4 christos } else if (os_strcmp(buf, "rsn_preauth") == 0) {
2993 1.1.1.4 christos bss->rsn_preauth = atoi(pos);
2994 1.1.1.4 christos } else if (os_strcmp(buf, "rsn_preauth_interfaces") == 0) {
2995 1.1.1.4 christos os_free(bss->rsn_preauth_interfaces);
2996 1.1.1.4 christos bss->rsn_preauth_interfaces = os_strdup(pos);
2997 1.1 christos #endif /* CONFIG_RSN_PREAUTH */
2998 1.1.1.4 christos } else if (os_strcmp(buf, "peerkey") == 0) {
2999 1.1.1.7 christos wpa_printf(MSG_INFO,
3000 1.1.1.7 christos "Line %d: Obsolete peerkey parameter ignored", line);
3001 1.1.1.7 christos #ifdef CONFIG_IEEE80211R_AP
3002 1.1.1.4 christos } else if (os_strcmp(buf, "mobility_domain") == 0) {
3003 1.1.1.4 christos if (os_strlen(pos) != 2 * MOBILITY_DOMAIN_ID_LEN ||
3004 1.1.1.4 christos hexstr2bin(pos, bss->mobility_domain,
3005 1.1.1.4 christos MOBILITY_DOMAIN_ID_LEN) != 0) {
3006 1.1.1.4 christos wpa_printf(MSG_ERROR,
3007 1.1.1.4 christos "Line %d: Invalid mobility_domain '%s'",
3008 1.1.1.4 christos line, pos);
3009 1.1.1.4 christos return 1;
3010 1.1.1.4 christos }
3011 1.1.1.4 christos } else if (os_strcmp(buf, "r1_key_holder") == 0) {
3012 1.1.1.4 christos if (os_strlen(pos) != 2 * FT_R1KH_ID_LEN ||
3013 1.1.1.4 christos hexstr2bin(pos, bss->r1_key_holder, FT_R1KH_ID_LEN) != 0) {
3014 1.1.1.4 christos wpa_printf(MSG_ERROR,
3015 1.1.1.4 christos "Line %d: Invalid r1_key_holder '%s'",
3016 1.1.1.4 christos line, pos);
3017 1.1.1.4 christos return 1;
3018 1.1.1.4 christos }
3019 1.1.1.4 christos } else if (os_strcmp(buf, "r0_key_lifetime") == 0) {
3020 1.1.1.7 christos /* DEPRECATED: Use ft_r0_key_lifetime instead. */
3021 1.1.1.7 christos bss->r0_key_lifetime = atoi(pos) * 60;
3022 1.1.1.7 christos } else if (os_strcmp(buf, "ft_r0_key_lifetime") == 0) {
3023 1.1.1.4 christos bss->r0_key_lifetime = atoi(pos);
3024 1.1.1.7 christos } else if (os_strcmp(buf, "r1_max_key_lifetime") == 0) {
3025 1.1.1.7 christos bss->r1_max_key_lifetime = atoi(pos);
3026 1.1.1.4 christos } else if (os_strcmp(buf, "reassociation_deadline") == 0) {
3027 1.1.1.4 christos bss->reassociation_deadline = atoi(pos);
3028 1.1.1.7 christos } else if (os_strcmp(buf, "rkh_pos_timeout") == 0) {
3029 1.1.1.7 christos bss->rkh_pos_timeout = atoi(pos);
3030 1.1.1.7 christos } else if (os_strcmp(buf, "rkh_neg_timeout") == 0) {
3031 1.1.1.7 christos bss->rkh_neg_timeout = atoi(pos);
3032 1.1.1.7 christos } else if (os_strcmp(buf, "rkh_pull_timeout") == 0) {
3033 1.1.1.7 christos bss->rkh_pull_timeout = atoi(pos);
3034 1.1.1.7 christos } else if (os_strcmp(buf, "rkh_pull_retries") == 0) {
3035 1.1.1.7 christos bss->rkh_pull_retries = atoi(pos);
3036 1.1.1.4 christos } else if (os_strcmp(buf, "r0kh") == 0) {
3037 1.1.1.4 christos if (add_r0kh(bss, pos) < 0) {
3038 1.1.1.4 christos wpa_printf(MSG_DEBUG, "Line %d: Invalid r0kh '%s'",
3039 1.1.1.4 christos line, pos);
3040 1.1.1.4 christos return 1;
3041 1.1.1.4 christos }
3042 1.1.1.4 christos } else if (os_strcmp(buf, "r1kh") == 0) {
3043 1.1.1.4 christos if (add_r1kh(bss, pos) < 0) {
3044 1.1.1.4 christos wpa_printf(MSG_DEBUG, "Line %d: Invalid r1kh '%s'",
3045 1.1.1.4 christos line, pos);
3046 1.1.1.4 christos return 1;
3047 1.1.1.4 christos }
3048 1.1.1.4 christos } else if (os_strcmp(buf, "pmk_r1_push") == 0) {
3049 1.1.1.4 christos bss->pmk_r1_push = atoi(pos);
3050 1.1.1.4 christos } else if (os_strcmp(buf, "ft_over_ds") == 0) {
3051 1.1.1.4 christos bss->ft_over_ds = atoi(pos);
3052 1.1.1.7 christos } else if (os_strcmp(buf, "ft_psk_generate_local") == 0) {
3053 1.1.1.7 christos bss->ft_psk_generate_local = atoi(pos);
3054 1.1.1.7 christos #endif /* CONFIG_IEEE80211R_AP */
3055 1.1 christos #ifndef CONFIG_NO_CTRL_IFACE
3056 1.1.1.4 christos } else if (os_strcmp(buf, "ctrl_interface") == 0) {
3057 1.1.1.4 christos os_free(bss->ctrl_interface);
3058 1.1.1.4 christos bss->ctrl_interface = os_strdup(pos);
3059 1.1.1.4 christos } else if (os_strcmp(buf, "ctrl_interface_group") == 0) {
3060 1.1 christos #ifndef CONFIG_NATIVE_WINDOWS
3061 1.1.1.4 christos struct group *grp;
3062 1.1.1.4 christos char *endp;
3063 1.1.1.4 christos const char *group = pos;
3064 1.1.1.4 christos
3065 1.1.1.4 christos grp = getgrnam(group);
3066 1.1.1.4 christos if (grp) {
3067 1.1.1.4 christos bss->ctrl_interface_gid = grp->gr_gid;
3068 1.1 christos bss->ctrl_interface_gid_set = 1;
3069 1.1.1.4 christos wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d (from group name '%s')",
3070 1.1.1.4 christos bss->ctrl_interface_gid, group);
3071 1.1.1.4 christos return 0;
3072 1.1.1.4 christos }
3073 1.1.1.4 christos
3074 1.1.1.4 christos /* Group name not found - try to parse this as gid */
3075 1.1.1.4 christos bss->ctrl_interface_gid = strtol(group, &endp, 10);
3076 1.1.1.4 christos if (*group == '\0' || *endp != '\0') {
3077 1.1.1.4 christos wpa_printf(MSG_DEBUG, "Line %d: Invalid group '%s'",
3078 1.1.1.4 christos line, group);
3079 1.1.1.4 christos return 1;
3080 1.1.1.4 christos }
3081 1.1.1.4 christos bss->ctrl_interface_gid_set = 1;
3082 1.1.1.4 christos wpa_printf(MSG_DEBUG, "ctrl_interface_group=%d",
3083 1.1.1.4 christos bss->ctrl_interface_gid);
3084 1.1 christos #endif /* CONFIG_NATIVE_WINDOWS */
3085 1.1 christos #endif /* CONFIG_NO_CTRL_IFACE */
3086 1.1 christos #ifdef RADIUS_SERVER
3087 1.1.1.4 christos } else if (os_strcmp(buf, "radius_server_clients") == 0) {
3088 1.1.1.4 christos os_free(bss->radius_server_clients);
3089 1.1.1.4 christos bss->radius_server_clients = os_strdup(pos);
3090 1.1.1.4 christos } else if (os_strcmp(buf, "radius_server_auth_port") == 0) {
3091 1.1.1.4 christos bss->radius_server_auth_port = atoi(pos);
3092 1.1.1.4 christos } else if (os_strcmp(buf, "radius_server_acct_port") == 0) {
3093 1.1.1.4 christos bss->radius_server_acct_port = atoi(pos);
3094 1.1.1.4 christos } else if (os_strcmp(buf, "radius_server_ipv6") == 0) {
3095 1.1.1.4 christos bss->radius_server_ipv6 = atoi(pos);
3096 1.1 christos #endif /* RADIUS_SERVER */
3097 1.1.1.4 christos } else if (os_strcmp(buf, "use_pae_group_addr") == 0) {
3098 1.1.1.4 christos bss->use_pae_group_addr = atoi(pos);
3099 1.1.1.4 christos } else if (os_strcmp(buf, "hw_mode") == 0) {
3100 1.1.1.4 christos if (os_strcmp(pos, "a") == 0)
3101 1.1.1.4 christos conf->hw_mode = HOSTAPD_MODE_IEEE80211A;
3102 1.1.1.4 christos else if (os_strcmp(pos, "b") == 0)
3103 1.1.1.4 christos conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
3104 1.1.1.4 christos else if (os_strcmp(pos, "g") == 0)
3105 1.1.1.4 christos conf->hw_mode = HOSTAPD_MODE_IEEE80211G;
3106 1.1.1.4 christos else if (os_strcmp(pos, "ad") == 0)
3107 1.1.1.4 christos conf->hw_mode = HOSTAPD_MODE_IEEE80211AD;
3108 1.1.1.6 christos else if (os_strcmp(pos, "any") == 0)
3109 1.1.1.6 christos conf->hw_mode = HOSTAPD_MODE_IEEE80211ANY;
3110 1.1.1.4 christos else {
3111 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: unknown hw_mode '%s'",
3112 1.1.1.4 christos line, pos);
3113 1.1.1.4 christos return 1;
3114 1.1.1.4 christos }
3115 1.1.1.4 christos } else if (os_strcmp(buf, "wps_rf_bands") == 0) {
3116 1.1.1.6 christos if (os_strcmp(pos, "ad") == 0)
3117 1.1.1.6 christos bss->wps_rf_bands = WPS_RF_60GHZ;
3118 1.1.1.6 christos else if (os_strcmp(pos, "a") == 0)
3119 1.1.1.4 christos bss->wps_rf_bands = WPS_RF_50GHZ;
3120 1.1.1.4 christos else if (os_strcmp(pos, "g") == 0 ||
3121 1.1.1.4 christos os_strcmp(pos, "b") == 0)
3122 1.1.1.4 christos bss->wps_rf_bands = WPS_RF_24GHZ;
3123 1.1.1.4 christos else if (os_strcmp(pos, "ag") == 0 ||
3124 1.1.1.4 christos os_strcmp(pos, "ga") == 0)
3125 1.1.1.4 christos bss->wps_rf_bands = WPS_RF_24GHZ | WPS_RF_50GHZ;
3126 1.1.1.4 christos else {
3127 1.1.1.4 christos wpa_printf(MSG_ERROR,
3128 1.1.1.4 christos "Line %d: unknown wps_rf_band '%s'",
3129 1.1.1.4 christos line, pos);
3130 1.1.1.4 christos return 1;
3131 1.1.1.4 christos }
3132 1.1.1.7 christos } else if (os_strcmp(buf, "acs_exclude_dfs") == 0) {
3133 1.1.1.7 christos conf->acs_exclude_dfs = atoi(pos);
3134 1.1.1.4 christos } else if (os_strcmp(buf, "channel") == 0) {
3135 1.1.1.4 christos if (os_strcmp(pos, "acs_survey") == 0) {
3136 1.1.1.4 christos #ifndef CONFIG_ACS
3137 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: tries to enable ACS but CONFIG_ACS disabled",
3138 1.1.1.4 christos line);
3139 1.1.1.4 christos return 1;
3140 1.1.1.4 christos #else /* CONFIG_ACS */
3141 1.1.1.6 christos conf->acs = 1;
3142 1.1.1.4 christos conf->channel = 0;
3143 1.1.1.4 christos #endif /* CONFIG_ACS */
3144 1.1.1.6 christos } else {
3145 1.1 christos conf->channel = atoi(pos);
3146 1.1.1.6 christos conf->acs = conf->channel == 0;
3147 1.1.1.6 christos }
3148 1.1.1.4 christos } else if (os_strcmp(buf, "chanlist") == 0) {
3149 1.1.1.6 christos if (hostapd_parse_chanlist(conf, pos)) {
3150 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid channel list",
3151 1.1.1.4 christos line);
3152 1.1.1.4 christos return 1;
3153 1.1.1.4 christos }
3154 1.1.1.4 christos } else if (os_strcmp(buf, "beacon_int") == 0) {
3155 1.1.1.4 christos int val = atoi(pos);
3156 1.1.1.4 christos /* MIB defines range as 1..65535, but very small values
3157 1.1.1.4 christos * cause problems with the current implementation.
3158 1.1.1.4 christos * Since it is unlikely that this small numbers are
3159 1.1.1.4 christos * useful in real life scenarios, do not allow beacon
3160 1.1.1.8 christos * period to be set below 10 TU. */
3161 1.1.1.8 christos if (val < 10 || val > 65535) {
3162 1.1.1.8 christos wpa_printf(MSG_ERROR,
3163 1.1.1.8 christos "Line %d: invalid beacon_int %d (expected 10..65535)",
3164 1.1.1.4 christos line, val);
3165 1.1.1.4 christos return 1;
3166 1.1.1.4 christos }
3167 1.1.1.4 christos conf->beacon_int = val;
3168 1.1.1.4 christos #ifdef CONFIG_ACS
3169 1.1.1.4 christos } else if (os_strcmp(buf, "acs_num_scans") == 0) {
3170 1.1.1.4 christos int val = atoi(pos);
3171 1.1.1.4 christos if (val <= 0 || val > 100) {
3172 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid acs_num_scans %d (expected 1..100)",
3173 1.1.1.4 christos line, val);
3174 1.1.1.4 christos return 1;
3175 1.1.1.4 christos }
3176 1.1.1.4 christos conf->acs_num_scans = val;
3177 1.1.1.5 christos } else if (os_strcmp(buf, "acs_chan_bias") == 0) {
3178 1.1.1.5 christos if (hostapd_config_parse_acs_chan_bias(conf, pos)) {
3179 1.1.1.5 christos wpa_printf(MSG_ERROR, "Line %d: invalid acs_chan_bias",
3180 1.1.1.5 christos line);
3181 1.1.1.5 christos return -1;
3182 1.1.1.5 christos }
3183 1.1.1.4 christos #endif /* CONFIG_ACS */
3184 1.1.1.4 christos } else if (os_strcmp(buf, "dtim_period") == 0) {
3185 1.1.1.7 christos int val = atoi(pos);
3186 1.1.1.7 christos
3187 1.1.1.7 christos if (val < 1 || val > 255) {
3188 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid dtim_period %d",
3189 1.1.1.7 christos line, val);
3190 1.1.1.4 christos return 1;
3191 1.1.1.4 christos }
3192 1.1.1.7 christos bss->dtim_period = val;
3193 1.1.1.5 christos } else if (os_strcmp(buf, "bss_load_update_period") == 0) {
3194 1.1.1.7 christos int val = atoi(pos);
3195 1.1.1.7 christos
3196 1.1.1.7 christos if (val < 0 || val > 100) {
3197 1.1.1.5 christos wpa_printf(MSG_ERROR,
3198 1.1.1.5 christos "Line %d: invalid bss_load_update_period %d",
3199 1.1.1.7 christos line, val);
3200 1.1.1.5 christos return 1;
3201 1.1.1.5 christos }
3202 1.1.1.7 christos bss->bss_load_update_period = val;
3203 1.1.1.7 christos } else if (os_strcmp(buf, "chan_util_avg_period") == 0) {
3204 1.1.1.7 christos int val = atoi(pos);
3205 1.1.1.7 christos
3206 1.1.1.7 christos if (val < 0) {
3207 1.1.1.7 christos wpa_printf(MSG_ERROR,
3208 1.1.1.7 christos "Line %d: invalid chan_util_avg_period",
3209 1.1.1.7 christos line);
3210 1.1.1.7 christos return 1;
3211 1.1.1.7 christos }
3212 1.1.1.7 christos bss->chan_util_avg_period = val;
3213 1.1.1.4 christos } else if (os_strcmp(buf, "rts_threshold") == 0) {
3214 1.1.1.4 christos conf->rts_threshold = atoi(pos);
3215 1.1.1.6 christos if (conf->rts_threshold < -1 || conf->rts_threshold > 65535) {
3216 1.1.1.4 christos wpa_printf(MSG_ERROR,
3217 1.1.1.4 christos "Line %d: invalid rts_threshold %d",
3218 1.1.1.4 christos line, conf->rts_threshold);
3219 1.1.1.4 christos return 1;
3220 1.1.1.4 christos }
3221 1.1.1.4 christos } else if (os_strcmp(buf, "fragm_threshold") == 0) {
3222 1.1.1.4 christos conf->fragm_threshold = atoi(pos);
3223 1.1.1.6 christos if (conf->fragm_threshold == -1) {
3224 1.1.1.6 christos /* allow a value of -1 */
3225 1.1.1.6 christos } else if (conf->fragm_threshold < 256 ||
3226 1.1.1.6 christos conf->fragm_threshold > 2346) {
3227 1.1.1.4 christos wpa_printf(MSG_ERROR,
3228 1.1.1.4 christos "Line %d: invalid fragm_threshold %d",
3229 1.1.1.4 christos line, conf->fragm_threshold);
3230 1.1.1.4 christos return 1;
3231 1.1.1.4 christos }
3232 1.1.1.4 christos } else if (os_strcmp(buf, "send_probe_response") == 0) {
3233 1.1.1.4 christos int val = atoi(pos);
3234 1.1.1.4 christos if (val != 0 && val != 1) {
3235 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid send_probe_response %d (expected 0 or 1)",
3236 1.1.1.4 christos line, val);
3237 1.1.1.4 christos return 1;
3238 1.1.1.4 christos }
3239 1.1.1.8 christos bss->send_probe_response = val;
3240 1.1.1.4 christos } else if (os_strcmp(buf, "supported_rates") == 0) {
3241 1.1.1.4 christos if (hostapd_parse_intlist(&conf->supported_rates, pos)) {
3242 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
3243 1.1.1.4 christos line);
3244 1.1.1.4 christos return 1;
3245 1.1.1.4 christos }
3246 1.1.1.4 christos } else if (os_strcmp(buf, "basic_rates") == 0) {
3247 1.1.1.4 christos if (hostapd_parse_intlist(&conf->basic_rates, pos)) {
3248 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid rate list",
3249 1.1.1.4 christos line);
3250 1.1.1.4 christos return 1;
3251 1.1.1.4 christos }
3252 1.1.1.7 christos } else if (os_strcmp(buf, "beacon_rate") == 0) {
3253 1.1.1.7 christos int val;
3254 1.1.1.7 christos
3255 1.1.1.7 christos if (os_strncmp(pos, "ht:", 3) == 0) {
3256 1.1.1.7 christos val = atoi(pos + 3);
3257 1.1.1.7 christos if (val < 0 || val > 31) {
3258 1.1.1.7 christos wpa_printf(MSG_ERROR,
3259 1.1.1.7 christos "Line %d: invalid beacon_rate HT-MCS %d",
3260 1.1.1.7 christos line, val);
3261 1.1.1.7 christos return 1;
3262 1.1.1.7 christos }
3263 1.1.1.7 christos conf->rate_type = BEACON_RATE_HT;
3264 1.1.1.7 christos conf->beacon_rate = val;
3265 1.1.1.7 christos } else if (os_strncmp(pos, "vht:", 4) == 0) {
3266 1.1.1.7 christos val = atoi(pos + 4);
3267 1.1.1.7 christos if (val < 0 || val > 9) {
3268 1.1.1.7 christos wpa_printf(MSG_ERROR,
3269 1.1.1.7 christos "Line %d: invalid beacon_rate VHT-MCS %d",
3270 1.1.1.7 christos line, val);
3271 1.1.1.7 christos return 1;
3272 1.1.1.7 christos }
3273 1.1.1.7 christos conf->rate_type = BEACON_RATE_VHT;
3274 1.1.1.7 christos conf->beacon_rate = val;
3275 1.1.1.7 christos } else {
3276 1.1.1.7 christos val = atoi(pos);
3277 1.1.1.7 christos if (val < 10 || val > 10000) {
3278 1.1.1.7 christos wpa_printf(MSG_ERROR,
3279 1.1.1.7 christos "Line %d: invalid legacy beacon_rate %d",
3280 1.1.1.7 christos line, val);
3281 1.1.1.7 christos return 1;
3282 1.1.1.7 christos }
3283 1.1.1.7 christos conf->rate_type = BEACON_RATE_LEGACY;
3284 1.1.1.7 christos conf->beacon_rate = val;
3285 1.1.1.7 christos }
3286 1.1.1.4 christos } else if (os_strcmp(buf, "preamble") == 0) {
3287 1.1.1.4 christos if (atoi(pos))
3288 1.1.1.4 christos conf->preamble = SHORT_PREAMBLE;
3289 1.1.1.4 christos else
3290 1.1.1.4 christos conf->preamble = LONG_PREAMBLE;
3291 1.1.1.4 christos } else if (os_strcmp(buf, "ignore_broadcast_ssid") == 0) {
3292 1.1.1.4 christos bss->ignore_broadcast_ssid = atoi(pos);
3293 1.1.1.6 christos } else if (os_strcmp(buf, "no_probe_resp_if_max_sta") == 0) {
3294 1.1.1.6 christos bss->no_probe_resp_if_max_sta = atoi(pos);
3295 1.1.1.4 christos } else if (os_strcmp(buf, "wep_default_key") == 0) {
3296 1.1.1.4 christos bss->ssid.wep.idx = atoi(pos);
3297 1.1.1.4 christos if (bss->ssid.wep.idx > 3) {
3298 1.1.1.4 christos wpa_printf(MSG_ERROR,
3299 1.1.1.4 christos "Invalid wep_default_key index %d",
3300 1.1.1.4 christos bss->ssid.wep.idx);
3301 1.1.1.4 christos return 1;
3302 1.1.1.4 christos }
3303 1.1.1.4 christos } else if (os_strcmp(buf, "wep_key0") == 0 ||
3304 1.1.1.4 christos os_strcmp(buf, "wep_key1") == 0 ||
3305 1.1.1.4 christos os_strcmp(buf, "wep_key2") == 0 ||
3306 1.1.1.4 christos os_strcmp(buf, "wep_key3") == 0) {
3307 1.1.1.4 christos if (hostapd_config_read_wep(&bss->ssid.wep,
3308 1.1.1.4 christos buf[7] - '0', pos)) {
3309 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid WEP key '%s'",
3310 1.1.1.4 christos line, buf);
3311 1.1.1.4 christos return 1;
3312 1.1.1.4 christos }
3313 1.1 christos #ifndef CONFIG_NO_VLAN
3314 1.1.1.4 christos } else if (os_strcmp(buf, "dynamic_vlan") == 0) {
3315 1.1.1.4 christos bss->ssid.dynamic_vlan = atoi(pos);
3316 1.1.1.6 christos } else if (os_strcmp(buf, "per_sta_vif") == 0) {
3317 1.1.1.6 christos bss->ssid.per_sta_vif = atoi(pos);
3318 1.1.1.4 christos } else if (os_strcmp(buf, "vlan_file") == 0) {
3319 1.1.1.4 christos if (hostapd_config_read_vlan_file(bss, pos)) {
3320 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: failed to read VLAN file '%s'",
3321 1.1.1.4 christos line, pos);
3322 1.1.1.4 christos return 1;
3323 1.1.1.4 christos }
3324 1.1.1.4 christos } else if (os_strcmp(buf, "vlan_naming") == 0) {
3325 1.1.1.4 christos bss->ssid.vlan_naming = atoi(pos);
3326 1.1.1.4 christos if (bss->ssid.vlan_naming >= DYNAMIC_VLAN_NAMING_END ||
3327 1.1.1.4 christos bss->ssid.vlan_naming < 0) {
3328 1.1.1.4 christos wpa_printf(MSG_ERROR,
3329 1.1.1.4 christos "Line %d: invalid naming scheme %d",
3330 1.1.1.4 christos line, bss->ssid.vlan_naming);
3331 1.1.1.4 christos return 1;
3332 1.1.1.4 christos }
3333 1.1 christos #ifdef CONFIG_FULL_DYNAMIC_VLAN
3334 1.1.1.4 christos } else if (os_strcmp(buf, "vlan_tagged_interface") == 0) {
3335 1.1.1.4 christos os_free(bss->ssid.vlan_tagged_interface);
3336 1.1.1.4 christos bss->ssid.vlan_tagged_interface = os_strdup(pos);
3337 1.1 christos #endif /* CONFIG_FULL_DYNAMIC_VLAN */
3338 1.1 christos #endif /* CONFIG_NO_VLAN */
3339 1.1.1.4 christos } else if (os_strcmp(buf, "ap_table_max_size") == 0) {
3340 1.1.1.4 christos conf->ap_table_max_size = atoi(pos);
3341 1.1.1.4 christos } else if (os_strcmp(buf, "ap_table_expiration_time") == 0) {
3342 1.1.1.4 christos conf->ap_table_expiration_time = atoi(pos);
3343 1.1.1.4 christos } else if (os_strncmp(buf, "tx_queue_", 9) == 0) {
3344 1.1.1.4 christos if (hostapd_config_tx_queue(conf, buf, pos)) {
3345 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid TX queue item",
3346 1.1.1.4 christos line);
3347 1.1.1.4 christos return 1;
3348 1.1.1.4 christos }
3349 1.1.1.4 christos } else if (os_strcmp(buf, "wme_enabled") == 0 ||
3350 1.1.1.4 christos os_strcmp(buf, "wmm_enabled") == 0) {
3351 1.1.1.4 christos bss->wmm_enabled = atoi(pos);
3352 1.1.1.4 christos } else if (os_strcmp(buf, "uapsd_advertisement_enabled") == 0) {
3353 1.1.1.4 christos bss->wmm_uapsd = atoi(pos);
3354 1.1.1.4 christos } else if (os_strncmp(buf, "wme_ac_", 7) == 0 ||
3355 1.1.1.4 christos os_strncmp(buf, "wmm_ac_", 7) == 0) {
3356 1.1.1.4 christos if (hostapd_config_wmm_ac(conf->wmm_ac_params, buf, pos)) {
3357 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid WMM ac item",
3358 1.1.1.4 christos line);
3359 1.1.1.4 christos return 1;
3360 1.1.1.4 christos }
3361 1.1.1.4 christos } else if (os_strcmp(buf, "bss") == 0) {
3362 1.1.1.4 christos if (hostapd_config_bss(conf, pos)) {
3363 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid bss item",
3364 1.1.1.4 christos line);
3365 1.1.1.4 christos return 1;
3366 1.1.1.4 christos }
3367 1.1.1.4 christos } else if (os_strcmp(buf, "bssid") == 0) {
3368 1.1.1.4 christos if (hwaddr_aton(pos, bss->bssid)) {
3369 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid bssid item",
3370 1.1.1.4 christos line);
3371 1.1.1.4 christos return 1;
3372 1.1.1.4 christos }
3373 1.1.1.6 christos } else if (os_strcmp(buf, "use_driver_iface_addr") == 0) {
3374 1.1.1.6 christos conf->use_driver_iface_addr = atoi(pos);
3375 1.1 christos #ifdef CONFIG_IEEE80211W
3376 1.1.1.4 christos } else if (os_strcmp(buf, "ieee80211w") == 0) {
3377 1.1.1.4 christos bss->ieee80211w = atoi(pos);
3378 1.1.1.4 christos } else if (os_strcmp(buf, "group_mgmt_cipher") == 0) {
3379 1.1.1.4 christos if (os_strcmp(pos, "AES-128-CMAC") == 0) {
3380 1.1.1.4 christos bss->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
3381 1.1.1.4 christos } else if (os_strcmp(pos, "BIP-GMAC-128") == 0) {
3382 1.1.1.4 christos bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_128;
3383 1.1.1.4 christos } else if (os_strcmp(pos, "BIP-GMAC-256") == 0) {
3384 1.1.1.4 christos bss->group_mgmt_cipher = WPA_CIPHER_BIP_GMAC_256;
3385 1.1.1.4 christos } else if (os_strcmp(pos, "BIP-CMAC-256") == 0) {
3386 1.1.1.4 christos bss->group_mgmt_cipher = WPA_CIPHER_BIP_CMAC_256;
3387 1.1.1.4 christos } else {
3388 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid group_mgmt_cipher: %s",
3389 1.1.1.4 christos line, pos);
3390 1.1.1.4 christos return 1;
3391 1.1.1.4 christos }
3392 1.1.1.4 christos } else if (os_strcmp(buf, "assoc_sa_query_max_timeout") == 0) {
3393 1.1.1.4 christos bss->assoc_sa_query_max_timeout = atoi(pos);
3394 1.1.1.4 christos if (bss->assoc_sa_query_max_timeout == 0) {
3395 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_max_timeout",
3396 1.1.1.4 christos line);
3397 1.1.1.4 christos return 1;
3398 1.1.1.4 christos }
3399 1.1.1.4 christos } else if (os_strcmp(buf, "assoc_sa_query_retry_timeout") == 0) {
3400 1.1.1.4 christos bss->assoc_sa_query_retry_timeout = atoi(pos);
3401 1.1.1.4 christos if (bss->assoc_sa_query_retry_timeout == 0) {
3402 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid assoc_sa_query_retry_timeout",
3403 1.1.1.4 christos line);
3404 1.1.1.4 christos return 1;
3405 1.1.1.4 christos }
3406 1.1 christos #endif /* CONFIG_IEEE80211W */
3407 1.1.1.8 christos #ifdef CONFIG_OCV
3408 1.1.1.8 christos } else if (os_strcmp(buf, "ocv") == 0) {
3409 1.1.1.8 christos bss->ocv = atoi(pos);
3410 1.1.1.8 christos if (bss->ocv && !bss->ieee80211w)
3411 1.1.1.8 christos bss->ieee80211w = 1;
3412 1.1.1.8 christos #endif /* CONFIG_OCV */
3413 1.1 christos #ifdef CONFIG_IEEE80211N
3414 1.1.1.4 christos } else if (os_strcmp(buf, "ieee80211n") == 0) {
3415 1.1.1.4 christos conf->ieee80211n = atoi(pos);
3416 1.1.1.4 christos } else if (os_strcmp(buf, "ht_capab") == 0) {
3417 1.1.1.4 christos if (hostapd_config_ht_capab(conf, pos) < 0) {
3418 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid ht_capab",
3419 1.1.1.4 christos line);
3420 1.1.1.4 christos return 1;
3421 1.1.1.4 christos }
3422 1.1.1.4 christos } else if (os_strcmp(buf, "require_ht") == 0) {
3423 1.1.1.4 christos conf->require_ht = atoi(pos);
3424 1.1.1.4 christos } else if (os_strcmp(buf, "obss_interval") == 0) {
3425 1.1.1.4 christos conf->obss_interval = atoi(pos);
3426 1.1 christos #endif /* CONFIG_IEEE80211N */
3427 1.1.1.3 christos #ifdef CONFIG_IEEE80211AC
3428 1.1.1.4 christos } else if (os_strcmp(buf, "ieee80211ac") == 0) {
3429 1.1.1.4 christos conf->ieee80211ac = atoi(pos);
3430 1.1.1.4 christos } else if (os_strcmp(buf, "vht_capab") == 0) {
3431 1.1.1.4 christos if (hostapd_config_vht_capab(conf, pos) < 0) {
3432 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid vht_capab",
3433 1.1.1.4 christos line);
3434 1.1.1.4 christos return 1;
3435 1.1.1.4 christos }
3436 1.1.1.4 christos } else if (os_strcmp(buf, "require_vht") == 0) {
3437 1.1.1.4 christos conf->require_vht = atoi(pos);
3438 1.1.1.4 christos } else if (os_strcmp(buf, "vht_oper_chwidth") == 0) {
3439 1.1.1.4 christos conf->vht_oper_chwidth = atoi(pos);
3440 1.1.1.4 christos } else if (os_strcmp(buf, "vht_oper_centr_freq_seg0_idx") == 0) {
3441 1.1.1.4 christos conf->vht_oper_centr_freq_seg0_idx = atoi(pos);
3442 1.1.1.4 christos } else if (os_strcmp(buf, "vht_oper_centr_freq_seg1_idx") == 0) {
3443 1.1.1.4 christos conf->vht_oper_centr_freq_seg1_idx = atoi(pos);
3444 1.1.1.5 christos } else if (os_strcmp(buf, "vendor_vht") == 0) {
3445 1.1.1.5 christos bss->vendor_vht = atoi(pos);
3446 1.1.1.6 christos } else if (os_strcmp(buf, "use_sta_nsts") == 0) {
3447 1.1.1.6 christos bss->use_sta_nsts = atoi(pos);
3448 1.1.1.3 christos #endif /* CONFIG_IEEE80211AC */
3449 1.1.1.7 christos #ifdef CONFIG_IEEE80211AX
3450 1.1.1.7 christos } else if (os_strcmp(buf, "ieee80211ax") == 0) {
3451 1.1.1.7 christos conf->ieee80211ax = atoi(pos);
3452 1.1.1.7 christos } else if (os_strcmp(buf, "he_su_beamformer") == 0) {
3453 1.1.1.7 christos conf->he_phy_capab.he_su_beamformer = atoi(pos);
3454 1.1.1.7 christos } else if (os_strcmp(buf, "he_su_beamformee") == 0) {
3455 1.1.1.7 christos conf->he_phy_capab.he_su_beamformee = atoi(pos);
3456 1.1.1.7 christos } else if (os_strcmp(buf, "he_mu_beamformer") == 0) {
3457 1.1.1.7 christos conf->he_phy_capab.he_mu_beamformer = atoi(pos);
3458 1.1.1.7 christos } else if (os_strcmp(buf, "he_bss_color") == 0) {
3459 1.1.1.7 christos conf->he_op.he_bss_color = atoi(pos);
3460 1.1.1.7 christos } else if (os_strcmp(buf, "he_default_pe_duration") == 0) {
3461 1.1.1.7 christos conf->he_op.he_default_pe_duration = atoi(pos);
3462 1.1.1.7 christos } else if (os_strcmp(buf, "he_twt_required") == 0) {
3463 1.1.1.7 christos conf->he_op.he_twt_required = atoi(pos);
3464 1.1.1.7 christos } else if (os_strcmp(buf, "he_rts_threshold") == 0) {
3465 1.1.1.7 christos conf->he_op.he_rts_threshold = atoi(pos);
3466 1.1.1.8 christos } else if (os_strcmp(buf, "he_basic_mcs_nss_set") == 0) {
3467 1.1.1.8 christos conf->he_op.he_basic_mcs_nss_set = atoi(pos);
3468 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_qos_info_param_count") == 0) {
3469 1.1.1.8 christos conf->he_mu_edca.he_qos_info |=
3470 1.1.1.8 christos set_he_cap(atoi(pos), HE_QOS_INFO_EDCA_PARAM_SET_COUNT);
3471 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_qos_info_q_ack") == 0) {
3472 1.1.1.8 christos conf->he_mu_edca.he_qos_info |=
3473 1.1.1.8 christos set_he_cap(atoi(pos), HE_QOS_INFO_Q_ACK);
3474 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_qos_info_queue_request") == 0) {
3475 1.1.1.8 christos conf->he_mu_edca.he_qos_info |=
3476 1.1.1.8 christos set_he_cap(atoi(pos), HE_QOS_INFO_QUEUE_REQUEST);
3477 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_qos_info_txop_request") == 0) {
3478 1.1.1.8 christos conf->he_mu_edca.he_qos_info |=
3479 1.1.1.8 christos set_he_cap(atoi(pos), HE_QOS_INFO_TXOP_REQUEST);
3480 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_aifsn") == 0) {
3481 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_ACI_IDX] |=
3482 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_AIFSN);
3483 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_acm") == 0) {
3484 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_ACI_IDX] |=
3485 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACM);
3486 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_aci") == 0) {
3487 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_ACI_IDX] |=
3488 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACI);
3489 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_ecwmin") == 0) {
3490 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_ECW_IDX] |=
3491 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMIN);
3492 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_ecwmax") == 0) {
3493 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_ECW_IDX] |=
3494 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMAX);
3495 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_be_timer") == 0) {
3496 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_be_param[HE_MU_AC_PARAM_TIMER_IDX] =
3497 1.1.1.8 christos atoi(pos) & 0xff;
3498 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_aifsn") == 0) {
3499 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_ACI_IDX] |=
3500 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_AIFSN);
3501 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_acm") == 0) {
3502 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_ACI_IDX] |=
3503 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACM);
3504 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_aci") == 0) {
3505 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_ACI_IDX] |=
3506 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACI);
3507 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_ecwmin") == 0) {
3508 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_ECW_IDX] |=
3509 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMIN);
3510 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_ecwmax") == 0) {
3511 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_ECW_IDX] |=
3512 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMAX);
3513 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_bk_timer") == 0) {
3514 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_bk_param[HE_MU_AC_PARAM_TIMER_IDX] =
3515 1.1.1.8 christos atoi(pos) & 0xff;
3516 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_aifsn") == 0) {
3517 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_ACI_IDX] |=
3518 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_AIFSN);
3519 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_acm") == 0) {
3520 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_ACI_IDX] |=
3521 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACM);
3522 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_aci") == 0) {
3523 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_ACI_IDX] |=
3524 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACI);
3525 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_ecwmin") == 0) {
3526 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_ECW_IDX] |=
3527 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMIN);
3528 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_ecwmax") == 0) {
3529 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_ECW_IDX] |=
3530 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMAX);
3531 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vi_timer") == 0) {
3532 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vi_param[HE_MU_AC_PARAM_TIMER_IDX] =
3533 1.1.1.8 christos atoi(pos) & 0xff;
3534 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_aifsn") == 0) {
3535 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_ACI_IDX] |=
3536 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_AIFSN);
3537 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_acm") == 0) {
3538 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_ACI_IDX] |=
3539 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACM);
3540 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_aci") == 0) {
3541 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_ACI_IDX] |=
3542 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ACI);
3543 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_ecwmin") == 0) {
3544 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_ECW_IDX] |=
3545 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMIN);
3546 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_ecwmax") == 0) {
3547 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_ECW_IDX] |=
3548 1.1.1.8 christos set_he_cap(atoi(pos), HE_MU_AC_PARAM_ECWMAX);
3549 1.1.1.8 christos } else if (os_strcmp(buf, "he_mu_edca_ac_vo_timer") == 0) {
3550 1.1.1.8 christos conf->he_mu_edca.he_mu_ac_vo_param[HE_MU_AC_PARAM_TIMER_IDX] =
3551 1.1.1.8 christos atoi(pos) & 0xff;
3552 1.1.1.8 christos } else if (os_strcmp(buf, "he_spr_sr_control") == 0) {
3553 1.1.1.8 christos conf->spr.sr_control = atoi(pos) & 0xff;
3554 1.1.1.8 christos } else if (os_strcmp(buf, "he_spr_non_srg_obss_pd_max_offset") == 0) {
3555 1.1.1.8 christos conf->spr.non_srg_obss_pd_max_offset = atoi(pos);
3556 1.1.1.8 christos } else if (os_strcmp(buf, "he_spr_srg_obss_pd_min_offset") == 0) {
3557 1.1.1.8 christos conf->spr.srg_obss_pd_min_offset = atoi(pos);
3558 1.1.1.8 christos } else if (os_strcmp(buf, "he_spr_srg_obss_pd_max_offset") == 0) {
3559 1.1.1.8 christos conf->spr.srg_obss_pd_max_offset = atoi(pos);
3560 1.1.1.8 christos } else if (os_strcmp(buf, "he_oper_chwidth") == 0) {
3561 1.1.1.8 christos conf->he_oper_chwidth = atoi(pos);
3562 1.1.1.8 christos } else if (os_strcmp(buf, "he_oper_centr_freq_seg0_idx") == 0) {
3563 1.1.1.8 christos conf->he_oper_centr_freq_seg0_idx = atoi(pos);
3564 1.1.1.8 christos } else if (os_strcmp(buf, "he_oper_centr_freq_seg1_idx") == 0) {
3565 1.1.1.8 christos conf->he_oper_centr_freq_seg1_idx = atoi(pos);
3566 1.1.1.7 christos #endif /* CONFIG_IEEE80211AX */
3567 1.1.1.4 christos } else if (os_strcmp(buf, "max_listen_interval") == 0) {
3568 1.1.1.4 christos bss->max_listen_interval = atoi(pos);
3569 1.1.1.4 christos } else if (os_strcmp(buf, "disable_pmksa_caching") == 0) {
3570 1.1.1.4 christos bss->disable_pmksa_caching = atoi(pos);
3571 1.1.1.4 christos } else if (os_strcmp(buf, "okc") == 0) {
3572 1.1.1.4 christos bss->okc = atoi(pos);
3573 1.1 christos #ifdef CONFIG_WPS
3574 1.1.1.4 christos } else if (os_strcmp(buf, "wps_state") == 0) {
3575 1.1.1.4 christos bss->wps_state = atoi(pos);
3576 1.1.1.4 christos if (bss->wps_state < 0 || bss->wps_state > 2) {
3577 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid wps_state",
3578 1.1.1.4 christos line);
3579 1.1.1.4 christos return 1;
3580 1.1.1.4 christos }
3581 1.1.1.4 christos } else if (os_strcmp(buf, "wps_independent") == 0) {
3582 1.1.1.4 christos bss->wps_independent = atoi(pos);
3583 1.1.1.4 christos } else if (os_strcmp(buf, "ap_setup_locked") == 0) {
3584 1.1.1.4 christos bss->ap_setup_locked = atoi(pos);
3585 1.1.1.4 christos } else if (os_strcmp(buf, "uuid") == 0) {
3586 1.1.1.4 christos if (uuid_str2bin(pos, bss->uuid)) {
3587 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid UUID", line);
3588 1.1.1.4 christos return 1;
3589 1.1.1.4 christos }
3590 1.1.1.4 christos } else if (os_strcmp(buf, "wps_pin_requests") == 0) {
3591 1.1.1.4 christos os_free(bss->wps_pin_requests);
3592 1.1.1.4 christos bss->wps_pin_requests = os_strdup(pos);
3593 1.1.1.4 christos } else if (os_strcmp(buf, "device_name") == 0) {
3594 1.1.1.6 christos if (os_strlen(pos) > WPS_DEV_NAME_MAX_LEN) {
3595 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too long "
3596 1.1.1.4 christos "device_name", line);
3597 1.1.1.4 christos return 1;
3598 1.1.1.4 christos }
3599 1.1.1.4 christos os_free(bss->device_name);
3600 1.1.1.4 christos bss->device_name = os_strdup(pos);
3601 1.1.1.4 christos } else if (os_strcmp(buf, "manufacturer") == 0) {
3602 1.1.1.4 christos if (os_strlen(pos) > 64) {
3603 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too long manufacturer",
3604 1.1.1.4 christos line);
3605 1.1.1.4 christos return 1;
3606 1.1.1.4 christos }
3607 1.1.1.4 christos os_free(bss->manufacturer);
3608 1.1.1.4 christos bss->manufacturer = os_strdup(pos);
3609 1.1.1.4 christos } else if (os_strcmp(buf, "model_name") == 0) {
3610 1.1.1.4 christos if (os_strlen(pos) > 32) {
3611 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too long model_name",
3612 1.1.1.4 christos line);
3613 1.1.1.4 christos return 1;
3614 1.1.1.4 christos }
3615 1.1.1.4 christos os_free(bss->model_name);
3616 1.1.1.4 christos bss->model_name = os_strdup(pos);
3617 1.1.1.4 christos } else if (os_strcmp(buf, "model_number") == 0) {
3618 1.1.1.4 christos if (os_strlen(pos) > 32) {
3619 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too long model_number",
3620 1.1.1.4 christos line);
3621 1.1.1.4 christos return 1;
3622 1.1.1.4 christos }
3623 1.1.1.4 christos os_free(bss->model_number);
3624 1.1.1.4 christos bss->model_number = os_strdup(pos);
3625 1.1.1.4 christos } else if (os_strcmp(buf, "serial_number") == 0) {
3626 1.1.1.4 christos if (os_strlen(pos) > 32) {
3627 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Too long serial_number",
3628 1.1.1.4 christos line);
3629 1.1.1.4 christos return 1;
3630 1.1.1.4 christos }
3631 1.1.1.4 christos os_free(bss->serial_number);
3632 1.1.1.4 christos bss->serial_number = os_strdup(pos);
3633 1.1.1.4 christos } else if (os_strcmp(buf, "device_type") == 0) {
3634 1.1.1.4 christos if (wps_dev_type_str2bin(pos, bss->device_type))
3635 1.1.1.4 christos return 1;
3636 1.1.1.4 christos } else if (os_strcmp(buf, "config_methods") == 0) {
3637 1.1.1.4 christos os_free(bss->config_methods);
3638 1.1.1.4 christos bss->config_methods = os_strdup(pos);
3639 1.1.1.4 christos } else if (os_strcmp(buf, "os_version") == 0) {
3640 1.1.1.4 christos if (hexstr2bin(pos, bss->os_version, 4)) {
3641 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid os_version",
3642 1.1.1.4 christos line);
3643 1.1.1.4 christos return 1;
3644 1.1.1.4 christos }
3645 1.1.1.4 christos } else if (os_strcmp(buf, "ap_pin") == 0) {
3646 1.1.1.4 christos os_free(bss->ap_pin);
3647 1.1.1.7 christos if (*pos == '\0')
3648 1.1.1.7 christos bss->ap_pin = NULL;
3649 1.1.1.7 christos else
3650 1.1.1.7 christos bss->ap_pin = os_strdup(pos);
3651 1.1.1.4 christos } else if (os_strcmp(buf, "skip_cred_build") == 0) {
3652 1.1.1.4 christos bss->skip_cred_build = atoi(pos);
3653 1.1.1.4 christos } else if (os_strcmp(buf, "extra_cred") == 0) {
3654 1.1.1.4 christos os_free(bss->extra_cred);
3655 1.1.1.4 christos bss->extra_cred = (u8 *) os_readfile(pos, &bss->extra_cred_len);
3656 1.1.1.4 christos if (bss->extra_cred == NULL) {
3657 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: could not read Credentials from '%s'",
3658 1.1.1.4 christos line, pos);
3659 1.1.1.4 christos return 1;
3660 1.1.1.4 christos }
3661 1.1.1.4 christos } else if (os_strcmp(buf, "wps_cred_processing") == 0) {
3662 1.1.1.4 christos bss->wps_cred_processing = atoi(pos);
3663 1.1.1.8 christos } else if (os_strcmp(buf, "wps_cred_add_sae") == 0) {
3664 1.1.1.8 christos bss->wps_cred_add_sae = atoi(pos);
3665 1.1.1.4 christos } else if (os_strcmp(buf, "ap_settings") == 0) {
3666 1.1.1.4 christos os_free(bss->ap_settings);
3667 1.1.1.4 christos bss->ap_settings =
3668 1.1.1.4 christos (u8 *) os_readfile(pos, &bss->ap_settings_len);
3669 1.1.1.4 christos if (bss->ap_settings == NULL) {
3670 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: could not read AP Settings from '%s'",
3671 1.1.1.4 christos line, pos);
3672 1.1.1.4 christos return 1;
3673 1.1.1.4 christos }
3674 1.1.1.8 christos } else if (os_strcmp(buf, "multi_ap_backhaul_ssid") == 0) {
3675 1.1.1.8 christos size_t slen;
3676 1.1.1.8 christos char *str = wpa_config_parse_string(pos, &slen);
3677 1.1.1.8 christos
3678 1.1.1.8 christos if (!str || slen < 1 || slen > SSID_MAX_LEN) {
3679 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
3680 1.1.1.8 christos line, pos);
3681 1.1.1.8 christos os_free(str);
3682 1.1.1.8 christos return 1;
3683 1.1.1.8 christos }
3684 1.1.1.8 christos os_memcpy(bss->multi_ap_backhaul_ssid.ssid, str, slen);
3685 1.1.1.8 christos bss->multi_ap_backhaul_ssid.ssid_len = slen;
3686 1.1.1.8 christos bss->multi_ap_backhaul_ssid.ssid_set = 1;
3687 1.1.1.8 christos os_free(str);
3688 1.1.1.8 christos } else if (os_strcmp(buf, "multi_ap_backhaul_wpa_passphrase") == 0) {
3689 1.1.1.8 christos int len = os_strlen(pos);
3690 1.1.1.8 christos
3691 1.1.1.8 christos if (len < 8 || len > 63) {
3692 1.1.1.8 christos wpa_printf(MSG_ERROR,
3693 1.1.1.8 christos "Line %d: invalid WPA passphrase length %d (expected 8..63)",
3694 1.1.1.8 christos line, len);
3695 1.1.1.8 christos return 1;
3696 1.1.1.8 christos }
3697 1.1.1.8 christos os_free(bss->multi_ap_backhaul_ssid.wpa_passphrase);
3698 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_passphrase = os_strdup(pos);
3699 1.1.1.8 christos if (bss->multi_ap_backhaul_ssid.wpa_passphrase) {
3700 1.1.1.8 christos hostapd_config_clear_wpa_psk(
3701 1.1.1.8 christos &bss->multi_ap_backhaul_ssid.wpa_psk);
3702 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_passphrase_set = 1;
3703 1.1.1.8 christos }
3704 1.1.1.8 christos } else if (os_strcmp(buf, "multi_ap_backhaul_wpa_psk") == 0) {
3705 1.1.1.8 christos hostapd_config_clear_wpa_psk(
3706 1.1.1.8 christos &bss->multi_ap_backhaul_ssid.wpa_psk);
3707 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_psk =
3708 1.1.1.8 christos os_zalloc(sizeof(struct hostapd_wpa_psk));
3709 1.1.1.8 christos if (!bss->multi_ap_backhaul_ssid.wpa_psk)
3710 1.1.1.8 christos return 1;
3711 1.1.1.8 christos if (hexstr2bin(pos, bss->multi_ap_backhaul_ssid.wpa_psk->psk,
3712 1.1.1.8 christos PMK_LEN) ||
3713 1.1.1.8 christos pos[PMK_LEN * 2] != '\0') {
3714 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Invalid PSK '%s'.",
3715 1.1.1.8 christos line, pos);
3716 1.1.1.8 christos hostapd_config_clear_wpa_psk(
3717 1.1.1.8 christos &bss->multi_ap_backhaul_ssid.wpa_psk);
3718 1.1.1.8 christos return 1;
3719 1.1.1.8 christos }
3720 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_psk->group = 1;
3721 1.1.1.8 christos os_free(bss->multi_ap_backhaul_ssid.wpa_passphrase);
3722 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_passphrase = NULL;
3723 1.1.1.8 christos bss->multi_ap_backhaul_ssid.wpa_psk_set = 1;
3724 1.1.1.4 christos } else if (os_strcmp(buf, "upnp_iface") == 0) {
3725 1.1.1.4 christos os_free(bss->upnp_iface);
3726 1.1.1.4 christos bss->upnp_iface = os_strdup(pos);
3727 1.1.1.4 christos } else if (os_strcmp(buf, "friendly_name") == 0) {
3728 1.1.1.4 christos os_free(bss->friendly_name);
3729 1.1.1.4 christos bss->friendly_name = os_strdup(pos);
3730 1.1.1.4 christos } else if (os_strcmp(buf, "manufacturer_url") == 0) {
3731 1.1.1.4 christos os_free(bss->manufacturer_url);
3732 1.1.1.4 christos bss->manufacturer_url = os_strdup(pos);
3733 1.1.1.4 christos } else if (os_strcmp(buf, "model_description") == 0) {
3734 1.1.1.4 christos os_free(bss->model_description);
3735 1.1.1.4 christos bss->model_description = os_strdup(pos);
3736 1.1.1.4 christos } else if (os_strcmp(buf, "model_url") == 0) {
3737 1.1.1.4 christos os_free(bss->model_url);
3738 1.1.1.4 christos bss->model_url = os_strdup(pos);
3739 1.1.1.4 christos } else if (os_strcmp(buf, "upc") == 0) {
3740 1.1.1.4 christos os_free(bss->upc);
3741 1.1.1.4 christos bss->upc = os_strdup(pos);
3742 1.1.1.4 christos } else if (os_strcmp(buf, "pbc_in_m1") == 0) {
3743 1.1.1.4 christos bss->pbc_in_m1 = atoi(pos);
3744 1.1.1.4 christos } else if (os_strcmp(buf, "server_id") == 0) {
3745 1.1.1.4 christos os_free(bss->server_id);
3746 1.1.1.4 christos bss->server_id = os_strdup(pos);
3747 1.1.1.3 christos #ifdef CONFIG_WPS_NFC
3748 1.1.1.4 christos } else if (os_strcmp(buf, "wps_nfc_dev_pw_id") == 0) {
3749 1.1.1.4 christos bss->wps_nfc_dev_pw_id = atoi(pos);
3750 1.1.1.4 christos if (bss->wps_nfc_dev_pw_id < 0x10 ||
3751 1.1.1.4 christos bss->wps_nfc_dev_pw_id > 0xffff) {
3752 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid wps_nfc_dev_pw_id value",
3753 1.1.1.4 christos line);
3754 1.1.1.4 christos return 1;
3755 1.1.1.4 christos }
3756 1.1.1.4 christos bss->wps_nfc_pw_from_config = 1;
3757 1.1.1.4 christos } else if (os_strcmp(buf, "wps_nfc_dh_pubkey") == 0) {
3758 1.1.1.4 christos wpabuf_free(bss->wps_nfc_dh_pubkey);
3759 1.1.1.6 christos bss->wps_nfc_dh_pubkey = wpabuf_parse_bin(pos);
3760 1.1.1.4 christos bss->wps_nfc_pw_from_config = 1;
3761 1.1.1.4 christos } else if (os_strcmp(buf, "wps_nfc_dh_privkey") == 0) {
3762 1.1.1.4 christos wpabuf_free(bss->wps_nfc_dh_privkey);
3763 1.1.1.6 christos bss->wps_nfc_dh_privkey = wpabuf_parse_bin(pos);
3764 1.1.1.4 christos bss->wps_nfc_pw_from_config = 1;
3765 1.1.1.4 christos } else if (os_strcmp(buf, "wps_nfc_dev_pw") == 0) {
3766 1.1.1.4 christos wpabuf_free(bss->wps_nfc_dev_pw);
3767 1.1.1.6 christos bss->wps_nfc_dev_pw = wpabuf_parse_bin(pos);
3768 1.1.1.4 christos bss->wps_nfc_pw_from_config = 1;
3769 1.1.1.3 christos #endif /* CONFIG_WPS_NFC */
3770 1.1 christos #endif /* CONFIG_WPS */
3771 1.1.1.2 christos #ifdef CONFIG_P2P_MANAGER
3772 1.1.1.4 christos } else if (os_strcmp(buf, "manage_p2p") == 0) {
3773 1.1.1.4 christos if (atoi(pos))
3774 1.1.1.4 christos bss->p2p |= P2P_MANAGE;
3775 1.1.1.4 christos else
3776 1.1.1.4 christos bss->p2p &= ~P2P_MANAGE;
3777 1.1.1.4 christos } else if (os_strcmp(buf, "allow_cross_connection") == 0) {
3778 1.1.1.4 christos if (atoi(pos))
3779 1.1.1.4 christos bss->p2p |= P2P_ALLOW_CROSS_CONNECTION;
3780 1.1.1.4 christos else
3781 1.1.1.4 christos bss->p2p &= ~P2P_ALLOW_CROSS_CONNECTION;
3782 1.1.1.2 christos #endif /* CONFIG_P2P_MANAGER */
3783 1.1.1.4 christos } else if (os_strcmp(buf, "disassoc_low_ack") == 0) {
3784 1.1.1.4 christos bss->disassoc_low_ack = atoi(pos);
3785 1.1.1.4 christos } else if (os_strcmp(buf, "tdls_prohibit") == 0) {
3786 1.1.1.4 christos if (atoi(pos))
3787 1.1.1.4 christos bss->tdls |= TDLS_PROHIBIT;
3788 1.1.1.4 christos else
3789 1.1.1.4 christos bss->tdls &= ~TDLS_PROHIBIT;
3790 1.1.1.4 christos } else if (os_strcmp(buf, "tdls_prohibit_chan_switch") == 0) {
3791 1.1.1.4 christos if (atoi(pos))
3792 1.1.1.4 christos bss->tdls |= TDLS_PROHIBIT_CHAN_SWITCH;
3793 1.1.1.4 christos else
3794 1.1.1.4 christos bss->tdls &= ~TDLS_PROHIBIT_CHAN_SWITCH;
3795 1.1.1.2 christos #ifdef CONFIG_RSN_TESTING
3796 1.1.1.4 christos } else if (os_strcmp(buf, "rsn_testing") == 0) {
3797 1.1.1.4 christos extern int rsn_testing;
3798 1.1.1.4 christos rsn_testing = atoi(pos);
3799 1.1.1.2 christos #endif /* CONFIG_RSN_TESTING */
3800 1.1.1.4 christos } else if (os_strcmp(buf, "time_advertisement") == 0) {
3801 1.1.1.4 christos bss->time_advertisement = atoi(pos);
3802 1.1.1.4 christos } else if (os_strcmp(buf, "time_zone") == 0) {
3803 1.1.1.4 christos size_t tz_len = os_strlen(pos);
3804 1.1.1.4 christos if (tz_len < 4 || tz_len > 255) {
3805 1.1.1.4 christos wpa_printf(MSG_DEBUG, "Line %d: invalid time_zone",
3806 1.1.1.4 christos line);
3807 1.1.1.4 christos return 1;
3808 1.1.1.4 christos }
3809 1.1.1.4 christos os_free(bss->time_zone);
3810 1.1.1.4 christos bss->time_zone = os_strdup(pos);
3811 1.1.1.4 christos if (bss->time_zone == NULL)
3812 1.1.1.4 christos return 1;
3813 1.1.1.7 christos #ifdef CONFIG_WNM_AP
3814 1.1.1.4 christos } else if (os_strcmp(buf, "wnm_sleep_mode") == 0) {
3815 1.1.1.4 christos bss->wnm_sleep_mode = atoi(pos);
3816 1.1.1.7 christos } else if (os_strcmp(buf, "wnm_sleep_mode_no_keys") == 0) {
3817 1.1.1.7 christos bss->wnm_sleep_mode_no_keys = atoi(pos);
3818 1.1.1.4 christos } else if (os_strcmp(buf, "bss_transition") == 0) {
3819 1.1.1.4 christos bss->bss_transition = atoi(pos);
3820 1.1.1.7 christos #endif /* CONFIG_WNM_AP */
3821 1.1.1.2 christos #ifdef CONFIG_INTERWORKING
3822 1.1.1.4 christos } else if (os_strcmp(buf, "interworking") == 0) {
3823 1.1.1.4 christos bss->interworking = atoi(pos);
3824 1.1.1.4 christos } else if (os_strcmp(buf, "access_network_type") == 0) {
3825 1.1.1.4 christos bss->access_network_type = atoi(pos);
3826 1.1.1.4 christos if (bss->access_network_type < 0 ||
3827 1.1.1.4 christos bss->access_network_type > 15) {
3828 1.1.1.4 christos wpa_printf(MSG_ERROR,
3829 1.1.1.4 christos "Line %d: invalid access_network_type",
3830 1.1.1.4 christos line);
3831 1.1.1.4 christos return 1;
3832 1.1.1.4 christos }
3833 1.1.1.4 christos } else if (os_strcmp(buf, "internet") == 0) {
3834 1.1.1.4 christos bss->internet = atoi(pos);
3835 1.1.1.4 christos } else if (os_strcmp(buf, "asra") == 0) {
3836 1.1.1.4 christos bss->asra = atoi(pos);
3837 1.1.1.4 christos } else if (os_strcmp(buf, "esr") == 0) {
3838 1.1.1.4 christos bss->esr = atoi(pos);
3839 1.1.1.4 christos } else if (os_strcmp(buf, "uesa") == 0) {
3840 1.1.1.4 christos bss->uesa = atoi(pos);
3841 1.1.1.4 christos } else if (os_strcmp(buf, "venue_group") == 0) {
3842 1.1.1.4 christos bss->venue_group = atoi(pos);
3843 1.1.1.4 christos bss->venue_info_set = 1;
3844 1.1.1.4 christos } else if (os_strcmp(buf, "venue_type") == 0) {
3845 1.1.1.4 christos bss->venue_type = atoi(pos);
3846 1.1.1.4 christos bss->venue_info_set = 1;
3847 1.1.1.4 christos } else if (os_strcmp(buf, "hessid") == 0) {
3848 1.1.1.4 christos if (hwaddr_aton(pos, bss->hessid)) {
3849 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: invalid hessid", line);
3850 1.1.1.4 christos return 1;
3851 1.1.1.4 christos }
3852 1.1.1.4 christos } else if (os_strcmp(buf, "roaming_consortium") == 0) {
3853 1.1.1.4 christos if (parse_roaming_consortium(bss, pos, line) < 0)
3854 1.1.1.4 christos return 1;
3855 1.1.1.4 christos } else if (os_strcmp(buf, "venue_name") == 0) {
3856 1.1.1.4 christos if (parse_venue_name(bss, pos, line) < 0)
3857 1.1.1.4 christos return 1;
3858 1.1.1.7 christos } else if (os_strcmp(buf, "venue_url") == 0) {
3859 1.1.1.7 christos if (parse_venue_url(bss, pos, line) < 0)
3860 1.1.1.7 christos return 1;
3861 1.1.1.4 christos } else if (os_strcmp(buf, "network_auth_type") == 0) {
3862 1.1.1.4 christos u8 auth_type;
3863 1.1.1.4 christos u16 redirect_url_len;
3864 1.1.1.4 christos if (hexstr2bin(pos, &auth_type, 1)) {
3865 1.1.1.4 christos wpa_printf(MSG_ERROR,
3866 1.1.1.4 christos "Line %d: Invalid network_auth_type '%s'",
3867 1.1.1.4 christos line, pos);
3868 1.1.1.4 christos return 1;
3869 1.1.1.4 christos }
3870 1.1.1.4 christos if (auth_type == 0 || auth_type == 2)
3871 1.1.1.4 christos redirect_url_len = os_strlen(pos + 2);
3872 1.1.1.4 christos else
3873 1.1.1.4 christos redirect_url_len = 0;
3874 1.1.1.4 christos os_free(bss->network_auth_type);
3875 1.1.1.4 christos bss->network_auth_type = os_malloc(redirect_url_len + 3 + 1);
3876 1.1.1.4 christos if (bss->network_auth_type == NULL)
3877 1.1.1.4 christos return 1;
3878 1.1.1.4 christos *bss->network_auth_type = auth_type;
3879 1.1.1.4 christos WPA_PUT_LE16(bss->network_auth_type + 1, redirect_url_len);
3880 1.1.1.4 christos if (redirect_url_len)
3881 1.1.1.4 christos os_memcpy(bss->network_auth_type + 3, pos + 2,
3882 1.1.1.4 christos redirect_url_len);
3883 1.1.1.4 christos bss->network_auth_type_len = 3 + redirect_url_len;
3884 1.1.1.4 christos } else if (os_strcmp(buf, "ipaddr_type_availability") == 0) {
3885 1.1.1.4 christos if (hexstr2bin(pos, &bss->ipaddr_type_availability, 1)) {
3886 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid ipaddr_type_availability '%s'",
3887 1.1.1.4 christos line, pos);
3888 1.1.1.4 christos bss->ipaddr_type_configured = 0;
3889 1.1.1.4 christos return 1;
3890 1.1.1.4 christos }
3891 1.1.1.4 christos bss->ipaddr_type_configured = 1;
3892 1.1.1.4 christos } else if (os_strcmp(buf, "domain_name") == 0) {
3893 1.1.1.4 christos int j, num_domains, domain_len, domain_list_len = 0;
3894 1.1.1.4 christos char *tok_start, *tok_prev;
3895 1.1.1.4 christos u8 *domain_list, *domain_ptr;
3896 1.1.1.4 christos
3897 1.1.1.4 christos domain_list_len = os_strlen(pos) + 1;
3898 1.1.1.4 christos domain_list = os_malloc(domain_list_len);
3899 1.1.1.4 christos if (domain_list == NULL)
3900 1.1.1.4 christos return 1;
3901 1.1.1.4 christos
3902 1.1.1.4 christos domain_ptr = domain_list;
3903 1.1.1.4 christos tok_prev = pos;
3904 1.1.1.4 christos num_domains = 1;
3905 1.1.1.4 christos while ((tok_prev = os_strchr(tok_prev, ','))) {
3906 1.1.1.4 christos num_domains++;
3907 1.1.1.4 christos tok_prev++;
3908 1.1.1.4 christos }
3909 1.1.1.4 christos tok_prev = pos;
3910 1.1.1.4 christos for (j = 0; j < num_domains; j++) {
3911 1.1.1.4 christos tok_start = os_strchr(tok_prev, ',');
3912 1.1.1.4 christos if (tok_start) {
3913 1.1.1.4 christos domain_len = tok_start - tok_prev;
3914 1.1.1.4 christos *domain_ptr = domain_len;
3915 1.1.1.4 christos os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3916 1.1.1.4 christos domain_ptr += domain_len + 1;
3917 1.1.1.4 christos tok_prev = ++tok_start;
3918 1.1.1.4 christos } else {
3919 1.1.1.4 christos domain_len = os_strlen(tok_prev);
3920 1.1.1.4 christos *domain_ptr = domain_len;
3921 1.1.1.4 christos os_memcpy(domain_ptr + 1, tok_prev, domain_len);
3922 1.1.1.4 christos domain_ptr += domain_len + 1;
3923 1.1.1.3 christos }
3924 1.1.1.4 christos }
3925 1.1.1.3 christos
3926 1.1.1.4 christos os_free(bss->domain_name);
3927 1.1.1.4 christos bss->domain_name = domain_list;
3928 1.1.1.4 christos bss->domain_name_len = domain_list_len;
3929 1.1.1.4 christos } else if (os_strcmp(buf, "anqp_3gpp_cell_net") == 0) {
3930 1.1.1.4 christos if (parse_3gpp_cell_net(bss, pos, line) < 0)
3931 1.1.1.4 christos return 1;
3932 1.1.1.4 christos } else if (os_strcmp(buf, "nai_realm") == 0) {
3933 1.1.1.4 christos if (parse_nai_realm(bss, pos, line) < 0)
3934 1.1.1.4 christos return 1;
3935 1.1.1.6 christos } else if (os_strcmp(buf, "anqp_elem") == 0) {
3936 1.1.1.6 christos if (parse_anqp_elem(bss, pos, line) < 0)
3937 1.1.1.6 christos return 1;
3938 1.1.1.4 christos } else if (os_strcmp(buf, "gas_frag_limit") == 0) {
3939 1.1.1.7 christos int val = atoi(pos);
3940 1.1.1.7 christos
3941 1.1.1.7 christos if (val <= 0) {
3942 1.1.1.7 christos wpa_printf(MSG_ERROR,
3943 1.1.1.7 christos "Line %d: Invalid gas_frag_limit '%s'",
3944 1.1.1.7 christos line, pos);
3945 1.1.1.7 christos return 1;
3946 1.1.1.7 christos }
3947 1.1.1.7 christos bss->gas_frag_limit = val;
3948 1.1.1.4 christos } else if (os_strcmp(buf, "gas_comeback_delay") == 0) {
3949 1.1.1.4 christos bss->gas_comeback_delay = atoi(pos);
3950 1.1.1.4 christos } else if (os_strcmp(buf, "qos_map_set") == 0) {
3951 1.1.1.4 christos if (parse_qos_map_set(bss, pos, line) < 0)
3952 1.1.1.4 christos return 1;
3953 1.1.1.2 christos #endif /* CONFIG_INTERWORKING */
3954 1.1.1.3 christos #ifdef CONFIG_RADIUS_TEST
3955 1.1.1.4 christos } else if (os_strcmp(buf, "dump_msk_file") == 0) {
3956 1.1.1.4 christos os_free(bss->dump_msk_file);
3957 1.1.1.4 christos bss->dump_msk_file = os_strdup(pos);
3958 1.1.1.3 christos #endif /* CONFIG_RADIUS_TEST */
3959 1.1.1.6 christos #ifdef CONFIG_PROXYARP
3960 1.1.1.6 christos } else if (os_strcmp(buf, "proxy_arp") == 0) {
3961 1.1.1.6 christos bss->proxy_arp = atoi(pos);
3962 1.1.1.6 christos #endif /* CONFIG_PROXYARP */
3963 1.1.1.3 christos #ifdef CONFIG_HS20
3964 1.1.1.4 christos } else if (os_strcmp(buf, "hs20") == 0) {
3965 1.1.1.4 christos bss->hs20 = atoi(pos);
3966 1.1.1.8 christos } else if (os_strcmp(buf, "hs20_release") == 0) {
3967 1.1.1.8 christos int val = atoi(pos);
3968 1.1.1.8 christos
3969 1.1.1.8 christos if (val < 1 || val > (HS20_VERSION >> 4) + 1) {
3970 1.1.1.8 christos wpa_printf(MSG_ERROR,
3971 1.1.1.8 christos "Line %d: Unsupported hs20_release: %s",
3972 1.1.1.8 christos line, pos);
3973 1.1.1.8 christos return 1;
3974 1.1.1.8 christos }
3975 1.1.1.8 christos bss->hs20_release = val;
3976 1.1.1.4 christos } else if (os_strcmp(buf, "disable_dgaf") == 0) {
3977 1.1.1.4 christos bss->disable_dgaf = atoi(pos);
3978 1.1.1.6 christos } else if (os_strcmp(buf, "na_mcast_to_ucast") == 0) {
3979 1.1.1.6 christos bss->na_mcast_to_ucast = atoi(pos);
3980 1.1.1.4 christos } else if (os_strcmp(buf, "osen") == 0) {
3981 1.1.1.4 christos bss->osen = atoi(pos);
3982 1.1.1.4 christos } else if (os_strcmp(buf, "anqp_domain_id") == 0) {
3983 1.1.1.4 christos bss->anqp_domain_id = atoi(pos);
3984 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_deauth_req_timeout") == 0) {
3985 1.1.1.4 christos bss->hs20_deauth_req_timeout = atoi(pos);
3986 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_oper_friendly_name") == 0) {
3987 1.1.1.4 christos if (hs20_parse_oper_friendly_name(bss, pos, line) < 0)
3988 1.1.1.4 christos return 1;
3989 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_wan_metrics") == 0) {
3990 1.1.1.4 christos if (hs20_parse_wan_metrics(bss, pos, line) < 0)
3991 1.1.1.4 christos return 1;
3992 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_conn_capab") == 0) {
3993 1.1.1.4 christos if (hs20_parse_conn_capab(bss, pos, line) < 0) {
3994 1.1.1.4 christos return 1;
3995 1.1.1.4 christos }
3996 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_operating_class") == 0) {
3997 1.1.1.4 christos u8 *oper_class;
3998 1.1.1.4 christos size_t oper_class_len;
3999 1.1.1.4 christos oper_class_len = os_strlen(pos);
4000 1.1.1.4 christos if (oper_class_len < 2 || (oper_class_len & 0x01)) {
4001 1.1.1.4 christos wpa_printf(MSG_ERROR,
4002 1.1.1.4 christos "Line %d: Invalid hs20_operating_class '%s'",
4003 1.1.1.4 christos line, pos);
4004 1.1.1.4 christos return 1;
4005 1.1.1.4 christos }
4006 1.1.1.4 christos oper_class_len /= 2;
4007 1.1.1.4 christos oper_class = os_malloc(oper_class_len);
4008 1.1.1.4 christos if (oper_class == NULL)
4009 1.1.1.4 christos return 1;
4010 1.1.1.4 christos if (hexstr2bin(pos, oper_class, oper_class_len)) {
4011 1.1.1.4 christos wpa_printf(MSG_ERROR,
4012 1.1.1.4 christos "Line %d: Invalid hs20_operating_class '%s'",
4013 1.1.1.4 christos line, pos);
4014 1.1.1.4 christos os_free(oper_class);
4015 1.1.1.4 christos return 1;
4016 1.1.1.4 christos }
4017 1.1.1.4 christos os_free(bss->hs20_operating_class);
4018 1.1.1.4 christos bss->hs20_operating_class = oper_class;
4019 1.1.1.4 christos bss->hs20_operating_class_len = oper_class_len;
4020 1.1.1.4 christos } else if (os_strcmp(buf, "hs20_icon") == 0) {
4021 1.1.1.4 christos if (hs20_parse_icon(bss, pos) < 0) {
4022 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid hs20_icon '%s'",
4023 1.1.1.4 christos line, pos);
4024 1.1.1.4 christos return 1;
4025 1.1.1.4 christos }
4026 1.1.1.4 christos } else if (os_strcmp(buf, "osu_ssid") == 0) {
4027 1.1.1.4 christos if (hs20_parse_osu_ssid(bss, pos, line) < 0)
4028 1.1.1.4 christos return 1;
4029 1.1.1.4 christos } else if (os_strcmp(buf, "osu_server_uri") == 0) {
4030 1.1.1.4 christos if (hs20_parse_osu_server_uri(bss, pos, line) < 0)
4031 1.1.1.4 christos return 1;
4032 1.1.1.4 christos } else if (os_strcmp(buf, "osu_friendly_name") == 0) {
4033 1.1.1.4 christos if (hs20_parse_osu_friendly_name(bss, pos, line) < 0)
4034 1.1.1.4 christos return 1;
4035 1.1.1.4 christos } else if (os_strcmp(buf, "osu_nai") == 0) {
4036 1.1.1.4 christos if (hs20_parse_osu_nai(bss, pos, line) < 0)
4037 1.1.1.4 christos return 1;
4038 1.1.1.7 christos } else if (os_strcmp(buf, "osu_nai2") == 0) {
4039 1.1.1.7 christos if (hs20_parse_osu_nai2(bss, pos, line) < 0)
4040 1.1.1.7 christos return 1;
4041 1.1.1.4 christos } else if (os_strcmp(buf, "osu_method_list") == 0) {
4042 1.1.1.4 christos if (hs20_parse_osu_method_list(bss, pos, line) < 0)
4043 1.1.1.4 christos return 1;
4044 1.1.1.4 christos } else if (os_strcmp(buf, "osu_icon") == 0) {
4045 1.1.1.4 christos if (hs20_parse_osu_icon(bss, pos, line) < 0)
4046 1.1.1.4 christos return 1;
4047 1.1.1.4 christos } else if (os_strcmp(buf, "osu_service_desc") == 0) {
4048 1.1.1.4 christos if (hs20_parse_osu_service_desc(bss, pos, line) < 0)
4049 1.1.1.4 christos return 1;
4050 1.1.1.7 christos } else if (os_strcmp(buf, "operator_icon") == 0) {
4051 1.1.1.7 christos if (hs20_parse_operator_icon(bss, pos, line) < 0)
4052 1.1.1.7 christos return 1;
4053 1.1.1.4 christos } else if (os_strcmp(buf, "subscr_remediation_url") == 0) {
4054 1.1.1.4 christos os_free(bss->subscr_remediation_url);
4055 1.1.1.4 christos bss->subscr_remediation_url = os_strdup(pos);
4056 1.1.1.4 christos } else if (os_strcmp(buf, "subscr_remediation_method") == 0) {
4057 1.1.1.4 christos bss->subscr_remediation_method = atoi(pos);
4058 1.1.1.7 christos } else if (os_strcmp(buf, "hs20_t_c_filename") == 0) {
4059 1.1.1.7 christos os_free(bss->t_c_filename);
4060 1.1.1.7 christos bss->t_c_filename = os_strdup(pos);
4061 1.1.1.7 christos } else if (os_strcmp(buf, "hs20_t_c_timestamp") == 0) {
4062 1.1.1.7 christos bss->t_c_timestamp = strtol(pos, NULL, 0);
4063 1.1.1.7 christos } else if (os_strcmp(buf, "hs20_t_c_server_url") == 0) {
4064 1.1.1.7 christos os_free(bss->t_c_server_url);
4065 1.1.1.7 christos bss->t_c_server_url = os_strdup(pos);
4066 1.1.1.8 christos } else if (os_strcmp(buf, "hs20_sim_provisioning_url") == 0) {
4067 1.1.1.8 christos os_free(bss->hs20_sim_provisioning_url);
4068 1.1.1.8 christos bss->hs20_sim_provisioning_url = os_strdup(pos);
4069 1.1.1.3 christos #endif /* CONFIG_HS20 */
4070 1.1.1.6 christos #ifdef CONFIG_MBO
4071 1.1.1.6 christos } else if (os_strcmp(buf, "mbo") == 0) {
4072 1.1.1.6 christos bss->mbo_enabled = atoi(pos);
4073 1.1.1.7 christos } else if (os_strcmp(buf, "mbo_cell_data_conn_pref") == 0) {
4074 1.1.1.7 christos bss->mbo_cell_data_conn_pref = atoi(pos);
4075 1.1.1.7 christos } else if (os_strcmp(buf, "oce") == 0) {
4076 1.1.1.7 christos bss->oce = atoi(pos);
4077 1.1.1.6 christos #endif /* CONFIG_MBO */
4078 1.1.1.4 christos #ifdef CONFIG_TESTING_OPTIONS
4079 1.1.1.4 christos #define PARSE_TEST_PROBABILITY(_val) \
4080 1.1.1.4 christos } else if (os_strcmp(buf, #_val) == 0) { \
4081 1.1.1.4 christos char *end; \
4082 1.1.1.4 christos \
4083 1.1.1.4 christos conf->_val = strtod(pos, &end); \
4084 1.1.1.4 christos if (*end || conf->_val < 0.0 || \
4085 1.1.1.4 christos conf->_val > 1.0) { \
4086 1.1.1.4 christos wpa_printf(MSG_ERROR, \
4087 1.1.1.4 christos "Line %d: Invalid value '%s'", \
4088 1.1.1.4 christos line, pos); \
4089 1.1.1.4 christos return 1; \
4090 1.1.1.4 christos }
4091 1.1.1.4 christos PARSE_TEST_PROBABILITY(ignore_probe_probability)
4092 1.1.1.4 christos PARSE_TEST_PROBABILITY(ignore_auth_probability)
4093 1.1.1.4 christos PARSE_TEST_PROBABILITY(ignore_assoc_probability)
4094 1.1.1.4 christos PARSE_TEST_PROBABILITY(ignore_reassoc_probability)
4095 1.1.1.4 christos PARSE_TEST_PROBABILITY(corrupt_gtk_rekey_mic_probability)
4096 1.1.1.6 christos } else if (os_strcmp(buf, "ecsa_ie_only") == 0) {
4097 1.1.1.6 christos conf->ecsa_ie_only = atoi(pos);
4098 1.1.1.4 christos } else if (os_strcmp(buf, "bss_load_test") == 0) {
4099 1.1.1.4 christos WPA_PUT_LE16(bss->bss_load_test, atoi(pos));
4100 1.1.1.4 christos pos = os_strchr(pos, ':');
4101 1.1.1.4 christos if (pos == NULL) {
4102 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
4103 1.1.1.4 christos line);
4104 1.1.1.4 christos return 1;
4105 1.1.1.4 christos }
4106 1.1.1.4 christos pos++;
4107 1.1.1.4 christos bss->bss_load_test[2] = atoi(pos);
4108 1.1.1.4 christos pos = os_strchr(pos, ':');
4109 1.1.1.4 christos if (pos == NULL) {
4110 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid bss_load_test",
4111 1.1.1.4 christos line);
4112 1.1.1.4 christos return 1;
4113 1.1.1.4 christos }
4114 1.1.1.4 christos pos++;
4115 1.1.1.4 christos WPA_PUT_LE16(&bss->bss_load_test[3], atoi(pos));
4116 1.1.1.4 christos bss->bss_load_test_set = 1;
4117 1.1.1.5 christos } else if (os_strcmp(buf, "radio_measurements") == 0) {
4118 1.1.1.6 christos /*
4119 1.1.1.6 christos * DEPRECATED: This parameter will be removed in the future.
4120 1.1.1.6 christos * Use rrm_neighbor_report instead.
4121 1.1.1.6 christos */
4122 1.1.1.6 christos int val = atoi(pos);
4123 1.1 christos
4124 1.1.1.6 christos if (val & BIT(0))
4125 1.1.1.6 christos bss->radio_measurements[0] |=
4126 1.1.1.6 christos WLAN_RRM_CAPS_NEIGHBOR_REPORT;
4127 1.1.1.6 christos } else if (os_strcmp(buf, "own_ie_override") == 0) {
4128 1.1.1.6 christos struct wpabuf *tmp;
4129 1.1.1.6 christos size_t len = os_strlen(pos) / 2;
4130 1.1.1.6 christos
4131 1.1.1.6 christos tmp = wpabuf_alloc(len);
4132 1.1.1.6 christos if (!tmp)
4133 1.1.1.4 christos return 1;
4134 1.1.1.4 christos
4135 1.1.1.6 christos if (hexstr2bin(pos, wpabuf_put(tmp, len), len)) {
4136 1.1.1.6 christos wpabuf_free(tmp);
4137 1.1.1.4 christos wpa_printf(MSG_ERROR,
4138 1.1.1.6 christos "Line %d: Invalid own_ie_override '%s'",
4139 1.1.1.4 christos line, pos);
4140 1.1.1.4 christos return 1;
4141 1.1.1.4 christos }
4142 1.1.1.4 christos
4143 1.1.1.6 christos wpabuf_free(bss->own_ie_override);
4144 1.1.1.6 christos bss->own_ie_override = tmp;
4145 1.1.1.7 christos } else if (os_strcmp(buf, "sae_reflection_attack") == 0) {
4146 1.1.1.7 christos bss->sae_reflection_attack = atoi(pos);
4147 1.1.1.7 christos } else if (os_strcmp(buf, "sae_commit_override") == 0) {
4148 1.1.1.7 christos wpabuf_free(bss->sae_commit_override);
4149 1.1.1.7 christos bss->sae_commit_override = wpabuf_parse_bin(pos);
4150 1.1.1.6 christos #endif /* CONFIG_TESTING_OPTIONS */
4151 1.1.1.7 christos #ifdef CONFIG_SAE
4152 1.1.1.7 christos } else if (os_strcmp(buf, "sae_password") == 0) {
4153 1.1.1.7 christos if (parse_sae_password(bss, pos) < 0) {
4154 1.1.1.7 christos wpa_printf(MSG_ERROR, "Line %d: Invalid sae_password",
4155 1.1.1.7 christos line);
4156 1.1.1.7 christos return 1;
4157 1.1.1.7 christos }
4158 1.1.1.7 christos #endif /* CONFIG_SAE */
4159 1.1.1.6 christos } else if (os_strcmp(buf, "vendor_elements") == 0) {
4160 1.1.1.6 christos if (parse_wpabuf_hex(line, buf, &bss->vendor_elements, pos))
4161 1.1.1.6 christos return 1;
4162 1.1.1.6 christos } else if (os_strcmp(buf, "assocresp_elements") == 0) {
4163 1.1.1.6 christos if (parse_wpabuf_hex(line, buf, &bss->assocresp_elements, pos))
4164 1.1.1.6 christos return 1;
4165 1.1.1.4 christos } else if (os_strcmp(buf, "sae_anti_clogging_threshold") == 0) {
4166 1.1.1.4 christos bss->sae_anti_clogging_threshold = atoi(pos);
4167 1.1.1.7 christos } else if (os_strcmp(buf, "sae_sync") == 0) {
4168 1.1.1.7 christos bss->sae_sync = atoi(pos);
4169 1.1.1.4 christos } else if (os_strcmp(buf, "sae_groups") == 0) {
4170 1.1.1.4 christos if (hostapd_parse_intlist(&bss->sae_groups, pos)) {
4171 1.1.1.4 christos wpa_printf(MSG_ERROR,
4172 1.1.1.4 christos "Line %d: Invalid sae_groups value '%s'",
4173 1.1.1.4 christos line, pos);
4174 1.1.1.4 christos return 1;
4175 1.1.1.4 christos }
4176 1.1.1.7 christos } else if (os_strcmp(buf, "sae_require_mfp") == 0) {
4177 1.1.1.7 christos bss->sae_require_mfp = atoi(pos);
4178 1.1.1.4 christos } else if (os_strcmp(buf, "local_pwr_constraint") == 0) {
4179 1.1.1.4 christos int val = atoi(pos);
4180 1.1.1.4 christos if (val < 0 || val > 255) {
4181 1.1.1.4 christos wpa_printf(MSG_ERROR, "Line %d: Invalid local_pwr_constraint %d (expected 0..255)",
4182 1.1.1.4 christos line, val);
4183 1.1.1.4 christos return 1;
4184 1.1.1.4 christos }
4185 1.1.1.4 christos conf->local_pwr_constraint = val;
4186 1.1.1.4 christos } else if (os_strcmp(buf, "spectrum_mgmt_required") == 0) {
4187 1.1.1.4 christos conf->spectrum_mgmt_required = atoi(pos);
4188 1.1.1.5 christos } else if (os_strcmp(buf, "wowlan_triggers") == 0) {
4189 1.1.1.5 christos os_free(bss->wowlan_triggers);
4190 1.1.1.5 christos bss->wowlan_triggers = os_strdup(pos);
4191 1.1.1.6 christos #ifdef CONFIG_FST
4192 1.1.1.6 christos } else if (os_strcmp(buf, "fst_group_id") == 0) {
4193 1.1.1.6 christos size_t len = os_strlen(pos);
4194 1.1.1.6 christos
4195 1.1.1.6 christos if (!len || len >= sizeof(conf->fst_cfg.group_id)) {
4196 1.1.1.6 christos wpa_printf(MSG_ERROR,
4197 1.1.1.6 christos "Line %d: Invalid fst_group_id value '%s'",
4198 1.1.1.6 christos line, pos);
4199 1.1.1.6 christos return 1;
4200 1.1.1.6 christos }
4201 1.1.1.6 christos
4202 1.1.1.6 christos if (conf->fst_cfg.group_id[0]) {
4203 1.1.1.6 christos wpa_printf(MSG_ERROR,
4204 1.1.1.6 christos "Line %d: Duplicate fst_group value '%s'",
4205 1.1.1.6 christos line, pos);
4206 1.1.1.6 christos return 1;
4207 1.1.1.6 christos }
4208 1.1.1.6 christos
4209 1.1.1.6 christos os_strlcpy(conf->fst_cfg.group_id, pos,
4210 1.1.1.6 christos sizeof(conf->fst_cfg.group_id));
4211 1.1.1.6 christos } else if (os_strcmp(buf, "fst_priority") == 0) {
4212 1.1.1.6 christos char *endp;
4213 1.1.1.6 christos long int val;
4214 1.1.1.6 christos
4215 1.1.1.6 christos if (!*pos) {
4216 1.1.1.6 christos wpa_printf(MSG_ERROR,
4217 1.1.1.6 christos "Line %d: fst_priority value not supplied (expected 1..%u)",
4218 1.1.1.6 christos line, FST_MAX_PRIO_VALUE);
4219 1.1.1.6 christos return -1;
4220 1.1.1.6 christos }
4221 1.1.1.6 christos
4222 1.1.1.6 christos val = strtol(pos, &endp, 0);
4223 1.1.1.6 christos if (*endp || val < 1 || val > FST_MAX_PRIO_VALUE) {
4224 1.1.1.6 christos wpa_printf(MSG_ERROR,
4225 1.1.1.6 christos "Line %d: Invalid fst_priority %ld (%s) (expected 1..%u)",
4226 1.1.1.6 christos line, val, pos, FST_MAX_PRIO_VALUE);
4227 1.1.1.6 christos return 1;
4228 1.1.1.6 christos }
4229 1.1.1.6 christos conf->fst_cfg.priority = (u8) val;
4230 1.1.1.6 christos } else if (os_strcmp(buf, "fst_llt") == 0) {
4231 1.1.1.6 christos char *endp;
4232 1.1.1.6 christos long int val;
4233 1.1.1.6 christos
4234 1.1.1.6 christos if (!*pos) {
4235 1.1.1.6 christos wpa_printf(MSG_ERROR,
4236 1.1.1.6 christos "Line %d: fst_llt value not supplied (expected 1..%u)",
4237 1.1.1.6 christos line, FST_MAX_LLT_MS);
4238 1.1.1.6 christos return -1;
4239 1.1.1.6 christos }
4240 1.1.1.6 christos val = strtol(pos, &endp, 0);
4241 1.1.1.6 christos if (*endp || val < 1 ||
4242 1.1.1.6 christos (unsigned long int) val > FST_MAX_LLT_MS) {
4243 1.1.1.6 christos wpa_printf(MSG_ERROR,
4244 1.1.1.6 christos "Line %d: Invalid fst_llt %ld (%s) (expected 1..%u)",
4245 1.1.1.6 christos line, val, pos, FST_MAX_LLT_MS);
4246 1.1.1.6 christos return 1;
4247 1.1.1.6 christos }
4248 1.1.1.6 christos conf->fst_cfg.llt = (u32) val;
4249 1.1.1.6 christos #endif /* CONFIG_FST */
4250 1.1.1.6 christos } else if (os_strcmp(buf, "track_sta_max_num") == 0) {
4251 1.1.1.6 christos conf->track_sta_max_num = atoi(pos);
4252 1.1.1.6 christos } else if (os_strcmp(buf, "track_sta_max_age") == 0) {
4253 1.1.1.6 christos conf->track_sta_max_age = atoi(pos);
4254 1.1.1.6 christos } else if (os_strcmp(buf, "no_probe_resp_if_seen_on") == 0) {
4255 1.1.1.6 christos os_free(bss->no_probe_resp_if_seen_on);
4256 1.1.1.6 christos bss->no_probe_resp_if_seen_on = os_strdup(pos);
4257 1.1.1.6 christos } else if (os_strcmp(buf, "no_auth_if_seen_on") == 0) {
4258 1.1.1.6 christos os_free(bss->no_auth_if_seen_on);
4259 1.1.1.6 christos bss->no_auth_if_seen_on = os_strdup(pos);
4260 1.1.1.6 christos } else if (os_strcmp(buf, "lci") == 0) {
4261 1.1.1.6 christos wpabuf_free(conf->lci);
4262 1.1.1.6 christos conf->lci = wpabuf_parse_bin(pos);
4263 1.1.1.7 christos if (conf->lci && wpabuf_len(conf->lci) == 0) {
4264 1.1.1.7 christos wpabuf_free(conf->lci);
4265 1.1.1.7 christos conf->lci = NULL;
4266 1.1.1.7 christos }
4267 1.1.1.6 christos } else if (os_strcmp(buf, "civic") == 0) {
4268 1.1.1.6 christos wpabuf_free(conf->civic);
4269 1.1.1.6 christos conf->civic = wpabuf_parse_bin(pos);
4270 1.1.1.7 christos if (conf->civic && wpabuf_len(conf->civic) == 0) {
4271 1.1.1.7 christos wpabuf_free(conf->civic);
4272 1.1.1.7 christos conf->civic = NULL;
4273 1.1.1.7 christos }
4274 1.1.1.6 christos } else if (os_strcmp(buf, "rrm_neighbor_report") == 0) {
4275 1.1.1.6 christos if (atoi(pos))
4276 1.1.1.6 christos bss->radio_measurements[0] |=
4277 1.1.1.6 christos WLAN_RRM_CAPS_NEIGHBOR_REPORT;
4278 1.1.1.7 christos } else if (os_strcmp(buf, "rrm_beacon_report") == 0) {
4279 1.1.1.7 christos if (atoi(pos))
4280 1.1.1.7 christos bss->radio_measurements[0] |=
4281 1.1.1.7 christos WLAN_RRM_CAPS_BEACON_REPORT_PASSIVE |
4282 1.1.1.7 christos WLAN_RRM_CAPS_BEACON_REPORT_ACTIVE |
4283 1.1.1.7 christos WLAN_RRM_CAPS_BEACON_REPORT_TABLE;
4284 1.1.1.6 christos } else if (os_strcmp(buf, "gas_address3") == 0) {
4285 1.1.1.6 christos bss->gas_address3 = atoi(pos);
4286 1.1.1.7 christos } else if (os_strcmp(buf, "stationary_ap") == 0) {
4287 1.1.1.7 christos conf->stationary_ap = atoi(pos);
4288 1.1.1.6 christos } else if (os_strcmp(buf, "ftm_responder") == 0) {
4289 1.1.1.6 christos bss->ftm_responder = atoi(pos);
4290 1.1.1.6 christos } else if (os_strcmp(buf, "ftm_initiator") == 0) {
4291 1.1.1.6 christos bss->ftm_initiator = atoi(pos);
4292 1.1.1.7 christos #ifdef CONFIG_FILS
4293 1.1.1.7 christos } else if (os_strcmp(buf, "fils_cache_id") == 0) {
4294 1.1.1.7 christos if (hexstr2bin(pos, bss->fils_cache_id, FILS_CACHE_ID_LEN)) {
4295 1.1.1.7 christos wpa_printf(MSG_ERROR,
4296 1.1.1.7 christos "Line %d: Invalid fils_cache_id '%s'",
4297 1.1.1.7 christos line, pos);
4298 1.1.1.7 christos return 1;
4299 1.1.1.7 christos }
4300 1.1.1.7 christos bss->fils_cache_id_set = 1;
4301 1.1.1.7 christos } else if (os_strcmp(buf, "fils_realm") == 0) {
4302 1.1.1.7 christos if (parse_fils_realm(bss, pos) < 0)
4303 1.1.1.7 christos return 1;
4304 1.1.1.7 christos } else if (os_strcmp(buf, "fils_dh_group") == 0) {
4305 1.1.1.7 christos bss->fils_dh_group = atoi(pos);
4306 1.1.1.7 christos } else if (os_strcmp(buf, "dhcp_server") == 0) {
4307 1.1.1.7 christos if (hostapd_parse_ip_addr(pos, &bss->dhcp_server)) {
4308 1.1.1.7 christos wpa_printf(MSG_ERROR,
4309 1.1.1.7 christos "Line %d: invalid IP address '%s'",
4310 1.1.1.7 christos line, pos);
4311 1.1.1.7 christos return 1;
4312 1.1.1.7 christos }
4313 1.1.1.7 christos } else if (os_strcmp(buf, "dhcp_rapid_commit_proxy") == 0) {
4314 1.1.1.7 christos bss->dhcp_rapid_commit_proxy = atoi(pos);
4315 1.1.1.7 christos } else if (os_strcmp(buf, "fils_hlp_wait_time") == 0) {
4316 1.1.1.7 christos bss->fils_hlp_wait_time = atoi(pos);
4317 1.1.1.7 christos } else if (os_strcmp(buf, "dhcp_server_port") == 0) {
4318 1.1.1.7 christos bss->dhcp_server_port = atoi(pos);
4319 1.1.1.7 christos } else if (os_strcmp(buf, "dhcp_relay_port") == 0) {
4320 1.1.1.7 christos bss->dhcp_relay_port = atoi(pos);
4321 1.1.1.7 christos #endif /* CONFIG_FILS */
4322 1.1.1.7 christos } else if (os_strcmp(buf, "multicast_to_unicast") == 0) {
4323 1.1.1.7 christos bss->multicast_to_unicast = atoi(pos);
4324 1.1.1.7 christos } else if (os_strcmp(buf, "broadcast_deauth") == 0) {
4325 1.1.1.7 christos bss->broadcast_deauth = atoi(pos);
4326 1.1.1.7 christos #ifdef CONFIG_DPP
4327 1.1.1.7 christos } else if (os_strcmp(buf, "dpp_connector") == 0) {
4328 1.1.1.7 christos os_free(bss->dpp_connector);
4329 1.1.1.7 christos bss->dpp_connector = os_strdup(pos);
4330 1.1.1.7 christos } else if (os_strcmp(buf, "dpp_netaccesskey") == 0) {
4331 1.1.1.7 christos if (parse_wpabuf_hex(line, buf, &bss->dpp_netaccesskey, pos))
4332 1.1.1.7 christos return 1;
4333 1.1.1.7 christos } else if (os_strcmp(buf, "dpp_netaccesskey_expiry") == 0) {
4334 1.1.1.7 christos bss->dpp_netaccesskey_expiry = strtol(pos, NULL, 0);
4335 1.1.1.7 christos } else if (os_strcmp(buf, "dpp_csign") == 0) {
4336 1.1.1.7 christos if (parse_wpabuf_hex(line, buf, &bss->dpp_csign, pos))
4337 1.1.1.7 christos return 1;
4338 1.1.1.8 christos #ifdef CONFIG_DPP2
4339 1.1.1.8 christos } else if (os_strcmp(buf, "dpp_controller") == 0) {
4340 1.1.1.8 christos if (hostapd_dpp_controller_parse(bss, pos))
4341 1.1.1.8 christos return 1;
4342 1.1.1.8 christos #endif /* CONFIG_DPP2 */
4343 1.1.1.7 christos #endif /* CONFIG_DPP */
4344 1.1.1.7 christos #ifdef CONFIG_OWE
4345 1.1.1.7 christos } else if (os_strcmp(buf, "owe_transition_bssid") == 0) {
4346 1.1.1.7 christos if (hwaddr_aton(pos, bss->owe_transition_bssid)) {
4347 1.1.1.7 christos wpa_printf(MSG_ERROR,
4348 1.1.1.7 christos "Line %d: invalid owe_transition_bssid",
4349 1.1.1.7 christos line);
4350 1.1.1.7 christos return 1;
4351 1.1.1.7 christos }
4352 1.1.1.7 christos } else if (os_strcmp(buf, "owe_transition_ssid") == 0) {
4353 1.1.1.7 christos size_t slen;
4354 1.1.1.7 christos char *str = wpa_config_parse_string(pos, &slen);
4355 1.1.1.7 christos
4356 1.1.1.7 christos if (!str || slen < 1 || slen > SSID_MAX_LEN) {
4357 1.1.1.7 christos wpa_printf(MSG_ERROR, "Line %d: invalid SSID '%s'",
4358 1.1.1.7 christos line, pos);
4359 1.1.1.7 christos os_free(str);
4360 1.1.1.7 christos return 1;
4361 1.1.1.7 christos }
4362 1.1.1.7 christos os_memcpy(bss->owe_transition_ssid, str, slen);
4363 1.1.1.7 christos bss->owe_transition_ssid_len = slen;
4364 1.1.1.7 christos os_free(str);
4365 1.1.1.7 christos } else if (os_strcmp(buf, "owe_transition_ifname") == 0) {
4366 1.1.1.7 christos os_strlcpy(bss->owe_transition_ifname, pos,
4367 1.1.1.7 christos sizeof(bss->owe_transition_ifname));
4368 1.1.1.7 christos } else if (os_strcmp(buf, "owe_groups") == 0) {
4369 1.1.1.7 christos if (hostapd_parse_intlist(&bss->owe_groups, pos)) {
4370 1.1.1.7 christos wpa_printf(MSG_ERROR,
4371 1.1.1.7 christos "Line %d: Invalid owe_groups value '%s'",
4372 1.1.1.7 christos line, pos);
4373 1.1.1.7 christos return 1;
4374 1.1.1.7 christos }
4375 1.1.1.7 christos } else if (os_strcmp(buf, "coloc_intf_reporting") == 0) {
4376 1.1.1.7 christos bss->coloc_intf_reporting = atoi(pos);
4377 1.1.1.7 christos #endif /* CONFIG_OWE */
4378 1.1.1.8 christos } else if (os_strcmp(buf, "multi_ap") == 0) {
4379 1.1.1.8 christos int val = atoi(pos);
4380 1.1.1.8 christos
4381 1.1.1.8 christos if (val < 0 || val > 3) {
4382 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Invalid multi_ap '%s'",
4383 1.1.1.8 christos line, buf);
4384 1.1.1.8 christos return -1;
4385 1.1.1.8 christos }
4386 1.1.1.8 christos
4387 1.1.1.8 christos bss->multi_ap = val;
4388 1.1.1.8 christos } else if (os_strcmp(buf, "rssi_reject_assoc_rssi") == 0) {
4389 1.1.1.8 christos conf->rssi_reject_assoc_rssi = atoi(pos);
4390 1.1.1.8 christos } else if (os_strcmp(buf, "rssi_reject_assoc_timeout") == 0) {
4391 1.1.1.8 christos conf->rssi_reject_assoc_timeout = atoi(pos);
4392 1.1.1.8 christos } else if (os_strcmp(buf, "pbss") == 0) {
4393 1.1.1.8 christos bss->pbss = atoi(pos);
4394 1.1.1.8 christos #ifdef CONFIG_AIRTIME_POLICY
4395 1.1.1.8 christos } else if (os_strcmp(buf, "airtime_mode") == 0) {
4396 1.1.1.8 christos int val = atoi(pos);
4397 1.1.1.8 christos
4398 1.1.1.8 christos if (val < 0 || val > AIRTIME_MODE_MAX) {
4399 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Unknown airtime_mode",
4400 1.1.1.8 christos line);
4401 1.1.1.8 christos return 1;
4402 1.1.1.8 christos }
4403 1.1.1.8 christos conf->airtime_mode = val;
4404 1.1.1.8 christos } else if (os_strcmp(buf, "airtime_update_interval") == 0) {
4405 1.1.1.8 christos conf->airtime_update_interval = atoi(pos);
4406 1.1.1.8 christos } else if (os_strcmp(buf, "airtime_bss_weight") == 0) {
4407 1.1.1.8 christos bss->airtime_weight = atoi(pos);
4408 1.1.1.8 christos } else if (os_strcmp(buf, "airtime_bss_limit") == 0) {
4409 1.1.1.8 christos int val = atoi(pos);
4410 1.1.1.8 christos
4411 1.1.1.8 christos if (val < 0 || val > 1) {
4412 1.1.1.8 christos wpa_printf(MSG_ERROR,
4413 1.1.1.8 christos "Line %d: Invalid airtime_bss_limit (must be 0 or 1)",
4414 1.1.1.8 christos line);
4415 1.1.1.8 christos return 1;
4416 1.1.1.8 christos }
4417 1.1.1.8 christos bss->airtime_limit = val;
4418 1.1.1.8 christos } else if (os_strcmp(buf, "airtime_sta_weight") == 0) {
4419 1.1.1.8 christos if (add_airtime_weight(bss, pos) < 0) {
4420 1.1.1.8 christos wpa_printf(MSG_ERROR,
4421 1.1.1.8 christos "Line %d: Invalid airtime weight '%s'",
4422 1.1.1.8 christos line, pos);
4423 1.1.1.8 christos return 1;
4424 1.1.1.8 christos }
4425 1.1.1.8 christos #endif /* CONFIG_AIRTIME_POLICY */
4426 1.1.1.8 christos #ifdef CONFIG_MACSEC
4427 1.1.1.8 christos } else if (os_strcmp(buf, "macsec_policy") == 0) {
4428 1.1.1.8 christos int macsec_policy = atoi(pos);
4429 1.1.1.8 christos
4430 1.1.1.8 christos if (macsec_policy < 0 || macsec_policy > 1) {
4431 1.1.1.8 christos wpa_printf(MSG_ERROR,
4432 1.1.1.8 christos "Line %d: invalid macsec_policy (%d): '%s'.",
4433 1.1.1.8 christos line, macsec_policy, pos);
4434 1.1.1.8 christos return 1;
4435 1.1.1.8 christos }
4436 1.1.1.8 christos bss->macsec_policy = macsec_policy;
4437 1.1.1.8 christos } else if (os_strcmp(buf, "macsec_integ_only") == 0) {
4438 1.1.1.8 christos int macsec_integ_only = atoi(pos);
4439 1.1.1.8 christos
4440 1.1.1.8 christos if (macsec_integ_only < 0 || macsec_integ_only > 1) {
4441 1.1.1.8 christos wpa_printf(MSG_ERROR,
4442 1.1.1.8 christos "Line %d: invalid macsec_integ_only (%d): '%s'.",
4443 1.1.1.8 christos line, macsec_integ_only, pos);
4444 1.1.1.8 christos return 1;
4445 1.1.1.8 christos }
4446 1.1.1.8 christos bss->macsec_integ_only = macsec_integ_only;
4447 1.1.1.8 christos } else if (os_strcmp(buf, "macsec_replay_protect") == 0) {
4448 1.1.1.8 christos int macsec_replay_protect = atoi(pos);
4449 1.1.1.8 christos
4450 1.1.1.8 christos if (macsec_replay_protect < 0 || macsec_replay_protect > 1) {
4451 1.1.1.8 christos wpa_printf(MSG_ERROR,
4452 1.1.1.8 christos "Line %d: invalid macsec_replay_protect (%d): '%s'.",
4453 1.1.1.8 christos line, macsec_replay_protect, pos);
4454 1.1.1.8 christos return 1;
4455 1.1.1.8 christos }
4456 1.1.1.8 christos bss->macsec_replay_protect = macsec_replay_protect;
4457 1.1.1.8 christos } else if (os_strcmp(buf, "macsec_replay_window") == 0) {
4458 1.1.1.8 christos bss->macsec_replay_window = atoi(pos);
4459 1.1.1.8 christos } else if (os_strcmp(buf, "macsec_port") == 0) {
4460 1.1.1.8 christos int macsec_port = atoi(pos);
4461 1.1.1.8 christos
4462 1.1.1.8 christos if (macsec_port < 1 || macsec_port > 65534) {
4463 1.1.1.8 christos wpa_printf(MSG_ERROR,
4464 1.1.1.8 christos "Line %d: invalid macsec_port (%d): '%s'.",
4465 1.1.1.8 christos line, macsec_port, pos);
4466 1.1.1.8 christos return 1;
4467 1.1.1.8 christos }
4468 1.1.1.8 christos bss->macsec_port = macsec_port;
4469 1.1.1.8 christos } else if (os_strcmp(buf, "mka_priority") == 0) {
4470 1.1.1.8 christos int mka_priority = atoi(pos);
4471 1.1.1.8 christos
4472 1.1.1.8 christos if (mka_priority < 0 || mka_priority > 255) {
4473 1.1.1.8 christos wpa_printf(MSG_ERROR,
4474 1.1.1.8 christos "Line %d: invalid mka_priority (%d): '%s'.",
4475 1.1.1.8 christos line, mka_priority, pos);
4476 1.1.1.8 christos return 1;
4477 1.1.1.8 christos }
4478 1.1.1.8 christos bss->mka_priority = mka_priority;
4479 1.1.1.8 christos } else if (os_strcmp(buf, "mka_cak") == 0) {
4480 1.1.1.8 christos size_t len = os_strlen(pos);
4481 1.1.1.8 christos
4482 1.1.1.8 christos if (len > 2 * MACSEC_CAK_MAX_LEN ||
4483 1.1.1.8 christos (len != 2 * 16 && len != 2 * 32) ||
4484 1.1.1.8 christos hexstr2bin(pos, bss->mka_cak, len / 2)) {
4485 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CAK '%s'.",
4486 1.1.1.8 christos line, pos);
4487 1.1.1.8 christos return 1;
4488 1.1.1.8 christos }
4489 1.1.1.8 christos bss->mka_cak_len = len / 2;
4490 1.1.1.8 christos bss->mka_psk_set |= MKA_PSK_SET_CAK;
4491 1.1.1.8 christos } else if (os_strcmp(buf, "mka_ckn") == 0) {
4492 1.1.1.8 christos size_t len = os_strlen(pos);
4493 1.1.1.8 christos
4494 1.1.1.8 christos if (len > 2 * MACSEC_CKN_MAX_LEN || /* too long */
4495 1.1.1.8 christos len < 2 || /* too short */
4496 1.1.1.8 christos len % 2 != 0 /* not an integral number of bytes */) {
4497 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CKN '%s'.",
4498 1.1.1.8 christos line, pos);
4499 1.1.1.8 christos return 1;
4500 1.1.1.8 christos }
4501 1.1.1.8 christos bss->mka_ckn_len = len / 2;
4502 1.1.1.8 christos if (hexstr2bin(pos, bss->mka_ckn, bss->mka_ckn_len)) {
4503 1.1.1.8 christos wpa_printf(MSG_ERROR, "Line %d: Invalid MKA-CKN '%s'.",
4504 1.1.1.8 christos line, pos);
4505 1.1.1.8 christos return -1;
4506 1.1.1.8 christos }
4507 1.1.1.8 christos bss->mka_psk_set |= MKA_PSK_SET_CKN;
4508 1.1.1.8 christos #endif /* CONFIG_MACSEC */
4509 1.1.1.3 christos } else {
4510 1.1.1.4 christos wpa_printf(MSG_ERROR,
4511 1.1.1.4 christos "Line %d: unknown configuration item '%s'",
4512 1.1.1.4 christos line, buf);
4513 1.1.1.4 christos return 1;
4514 1.1.1.3 christos }
4515 1.1.1.4 christos
4516 1.1.1.4 christos return 0;
4517 1.1.1.3 christos }
4518 1.1 christos
4519 1.1.1.3 christos
4520 1.1.1.3 christos /**
4521 1.1.1.3 christos * hostapd_config_read - Read and parse a configuration file
4522 1.1.1.3 christos * @fname: Configuration file name (including path, if needed)
4523 1.1.1.3 christos * Returns: Allocated configuration data structure
4524 1.1.1.3 christos */
4525 1.1.1.3 christos struct hostapd_config * hostapd_config_read(const char *fname)
4526 1.1.1.3 christos {
4527 1.1.1.3 christos struct hostapd_config *conf;
4528 1.1.1.3 christos FILE *f;
4529 1.1.1.6 christos char buf[4096], *pos;
4530 1.1.1.3 christos int line = 0;
4531 1.1.1.3 christos int errors = 0;
4532 1.1.1.3 christos size_t i;
4533 1.1.1.3 christos
4534 1.1.1.3 christos f = fopen(fname, "r");
4535 1.1.1.3 christos if (f == NULL) {
4536 1.1.1.3 christos wpa_printf(MSG_ERROR, "Could not open configuration file '%s' "
4537 1.1.1.3 christos "for reading.", fname);
4538 1.1.1.3 christos return NULL;
4539 1.1.1.3 christos }
4540 1.1.1.3 christos
4541 1.1.1.3 christos conf = hostapd_config_defaults();
4542 1.1.1.3 christos if (conf == NULL) {
4543 1.1.1.3 christos fclose(f);
4544 1.1.1.3 christos return NULL;
4545 1.1.1.3 christos }
4546 1.1.1.3 christos
4547 1.1.1.3 christos /* set default driver based on configuration */
4548 1.1.1.3 christos conf->driver = wpa_drivers[0];
4549 1.1.1.3 christos if (conf->driver == NULL) {
4550 1.1.1.3 christos wpa_printf(MSG_ERROR, "No driver wrappers registered!");
4551 1.1.1.3 christos hostapd_config_free(conf);
4552 1.1.1.3 christos fclose(f);
4553 1.1.1.3 christos return NULL;
4554 1.1.1.3 christos }
4555 1.1.1.3 christos
4556 1.1.1.4 christos conf->last_bss = conf->bss[0];
4557 1.1.1.3 christos
4558 1.1.1.3 christos while (fgets(buf, sizeof(buf), f)) {
4559 1.1.1.4 christos struct hostapd_bss_config *bss;
4560 1.1.1.4 christos
4561 1.1.1.3 christos bss = conf->last_bss;
4562 1.1.1.3 christos line++;
4563 1.1.1.3 christos
4564 1.1.1.3 christos if (buf[0] == '#')
4565 1.1.1.3 christos continue;
4566 1.1.1.3 christos pos = buf;
4567 1.1.1.3 christos while (*pos != '\0') {
4568 1.1.1.3 christos if (*pos == '\n') {
4569 1.1.1.3 christos *pos = '\0';
4570 1.1.1.3 christos break;
4571 1.1.1.3 christos }
4572 1.1.1.3 christos pos++;
4573 1.1.1.2 christos }
4574 1.1.1.3 christos if (buf[0] == '\0')
4575 1.1.1.3 christos continue;
4576 1.1.1.3 christos
4577 1.1.1.3 christos pos = os_strchr(buf, '=');
4578 1.1.1.3 christos if (pos == NULL) {
4579 1.1.1.3 christos wpa_printf(MSG_ERROR, "Line %d: invalid line '%s'",
4580 1.1.1.3 christos line, buf);
4581 1.1.1.3 christos errors++;
4582 1.1.1.3 christos continue;
4583 1.1.1.3 christos }
4584 1.1.1.3 christos *pos = '\0';
4585 1.1.1.3 christos pos++;
4586 1.1.1.3 christos errors += hostapd_config_fill(conf, bss, buf, pos, line);
4587 1.1 christos }
4588 1.1 christos
4589 1.1.1.3 christos fclose(f);
4590 1.1.1.3 christos
4591 1.1.1.3 christos for (i = 0; i < conf->num_bss; i++)
4592 1.1.1.4 christos hostapd_set_security_params(conf->bss[i], 1);
4593 1.1.1.3 christos
4594 1.1.1.4 christos if (hostapd_config_check(conf, 1))
4595 1.1 christos errors++;
4596 1.1 christos
4597 1.1.1.2 christos #ifndef WPA_IGNORE_CONFIG_ERRORS
4598 1.1 christos if (errors) {
4599 1.1 christos wpa_printf(MSG_ERROR, "%d errors found in configuration file "
4600 1.1 christos "'%s'", errors, fname);
4601 1.1 christos hostapd_config_free(conf);
4602 1.1 christos conf = NULL;
4603 1.1 christos }
4604 1.1.1.2 christos #endif /* WPA_IGNORE_CONFIG_ERRORS */
4605 1.1 christos
4606 1.1 christos return conf;
4607 1.1 christos }
4608 1.1.1.3 christos
4609 1.1.1.3 christos
4610 1.1.1.3 christos int hostapd_set_iface(struct hostapd_config *conf,
4611 1.1.1.6 christos struct hostapd_bss_config *bss, const char *field,
4612 1.1.1.6 christos char *value)
4613 1.1.1.3 christos {
4614 1.1.1.3 christos int errors;
4615 1.1.1.3 christos size_t i;
4616 1.1.1.3 christos
4617 1.1.1.3 christos errors = hostapd_config_fill(conf, bss, field, value, 0);
4618 1.1.1.3 christos if (errors) {
4619 1.1.1.3 christos wpa_printf(MSG_INFO, "Failed to set configuration field '%s' "
4620 1.1.1.3 christos "to value '%s'", field, value);
4621 1.1.1.3 christos return -1;
4622 1.1.1.3 christos }
4623 1.1.1.3 christos
4624 1.1.1.3 christos for (i = 0; i < conf->num_bss; i++)
4625 1.1.1.4 christos hostapd_set_security_params(conf->bss[i], 0);
4626 1.1.1.3 christos
4627 1.1.1.4 christos if (hostapd_config_check(conf, 0)) {
4628 1.1.1.3 christos wpa_printf(MSG_ERROR, "Configuration check failed");
4629 1.1.1.3 christos return -1;
4630 1.1.1.3 christos }
4631 1.1.1.3 christos
4632 1.1.1.3 christos return 0;
4633 1.1.1.3 christos }
4634