Line data Source code
1 : /*
2 : * hostapd / Configuration helper functions
3 : * Copyright (c) 2003-2014, Jouni Malinen <j@w1.fi>
4 : *
5 : * This software may be distributed under the terms of the BSD license.
6 : * See README for more details.
7 : */
8 :
9 : #include "utils/includes.h"
10 :
11 : #include "utils/common.h"
12 : #include "crypto/sha1.h"
13 : #include "radius/radius_client.h"
14 : #include "common/ieee802_11_defs.h"
15 : #include "common/eapol_common.h"
16 : #include "eap_common/eap_wsc_common.h"
17 : #include "eap_server/eap.h"
18 : #include "wpa_auth.h"
19 : #include "sta_info.h"
20 : #include "ap_config.h"
21 :
22 :
23 705 : static void hostapd_config_free_vlan(struct hostapd_bss_config *bss)
24 : {
25 : struct hostapd_vlan *vlan, *prev;
26 :
27 705 : vlan = bss->vlan;
28 705 : prev = NULL;
29 1416 : while (vlan) {
30 6 : prev = vlan;
31 6 : vlan = vlan->next;
32 6 : os_free(prev);
33 : }
34 :
35 705 : bss->vlan = NULL;
36 705 : }
37 :
38 :
39 705 : void hostapd_config_defaults_bss(struct hostapd_bss_config *bss)
40 : {
41 705 : bss->logger_syslog_level = HOSTAPD_LEVEL_INFO;
42 705 : bss->logger_stdout_level = HOSTAPD_LEVEL_INFO;
43 705 : bss->logger_syslog = (unsigned int) -1;
44 705 : bss->logger_stdout = (unsigned int) -1;
45 :
46 705 : bss->auth_algs = WPA_AUTH_ALG_OPEN | WPA_AUTH_ALG_SHARED;
47 :
48 705 : bss->wep_rekeying_period = 300;
49 : /* use key0 in individual key and key1 in broadcast key */
50 705 : bss->broadcast_key_idx_min = 1;
51 705 : bss->broadcast_key_idx_max = 2;
52 705 : bss->eap_reauth_period = 3600;
53 :
54 705 : bss->wpa_group_rekey = 600;
55 705 : bss->wpa_gmk_rekey = 86400;
56 705 : bss->wpa_key_mgmt = WPA_KEY_MGMT_PSK;
57 705 : bss->wpa_pairwise = WPA_CIPHER_TKIP;
58 705 : bss->wpa_group = WPA_CIPHER_TKIP;
59 705 : bss->rsn_pairwise = 0;
60 :
61 705 : bss->max_num_sta = MAX_STA_COUNT;
62 :
63 705 : bss->dtim_period = 2;
64 :
65 705 : bss->radius_server_auth_port = 1812;
66 705 : bss->ap_max_inactivity = AP_MAX_INACTIVITY;
67 705 : bss->eapol_version = EAPOL_VERSION;
68 :
69 705 : bss->max_listen_interval = 65535;
70 :
71 705 : bss->pwd_group = 19; /* ECC: GF(p=256) */
72 :
73 : #ifdef CONFIG_IEEE80211W
74 705 : bss->assoc_sa_query_max_timeout = 1000;
75 705 : bss->assoc_sa_query_retry_timeout = 201;
76 705 : bss->group_mgmt_cipher = WPA_CIPHER_AES_128_CMAC;
77 : #endif /* CONFIG_IEEE80211W */
78 : #ifdef EAP_SERVER_FAST
79 : /* both anonymous and authenticated provisioning */
80 579 : bss->eap_fast_prov = 3;
81 579 : bss->pac_key_lifetime = 7 * 24 * 60 * 60;
82 579 : bss->pac_key_refresh_time = 1 * 24 * 60 * 60;
83 : #endif /* EAP_SERVER_FAST */
84 :
85 : /* Set to -1 as defaults depends on HT in setup */
86 705 : bss->wmm_enabled = -1;
87 :
88 : #ifdef CONFIG_IEEE80211R
89 705 : bss->ft_over_ds = 1;
90 : #endif /* CONFIG_IEEE80211R */
91 :
92 705 : bss->radius_das_time_window = 300;
93 :
94 705 : bss->sae_anti_clogging_threshold = 5;
95 705 : }
96 :
97 :
98 695 : struct hostapd_config * hostapd_config_defaults(void)
99 : {
100 : #define ecw2cw(ecw) ((1 << (ecw)) - 1)
101 :
102 : struct hostapd_config *conf;
103 : struct hostapd_bss_config *bss;
104 695 : const int aCWmin = 4, aCWmax = 10;
105 695 : const struct hostapd_wmm_ac_params ac_bk =
106 : { aCWmin, aCWmax, 7, 0, 0 }; /* background traffic */
107 695 : const struct hostapd_wmm_ac_params ac_be =
108 : { aCWmin, aCWmax, 3, 0, 0 }; /* best effort traffic */
109 695 : const struct hostapd_wmm_ac_params ac_vi = /* video traffic */
110 695 : { aCWmin - 1, aCWmin, 2, 3008 / 32, 0 };
111 1390 : const struct hostapd_wmm_ac_params ac_vo = /* voice traffic */
112 1390 : { aCWmin - 2, aCWmin - 1, 2, 1504 / 32, 0 };
113 2085 : const struct hostapd_tx_queue_params txq_bk =
114 1390 : { 7, ecw2cw(aCWmin), ecw2cw(aCWmax), 0 };
115 2085 : const struct hostapd_tx_queue_params txq_be =
116 1390 : { 3, ecw2cw(aCWmin), 4 * (ecw2cw(aCWmin) + 1) - 1, 0};
117 2085 : const struct hostapd_tx_queue_params txq_vi =
118 1390 : { 1, (ecw2cw(aCWmin) + 1) / 2 - 1, ecw2cw(aCWmin), 30};
119 2085 : const struct hostapd_tx_queue_params txq_vo =
120 695 : { 1, (ecw2cw(aCWmin) + 1) / 4 - 1,
121 695 : (ecw2cw(aCWmin) + 1) / 2 - 1, 15};
122 :
123 : #undef ecw2cw
124 :
125 695 : conf = os_zalloc(sizeof(*conf));
126 695 : bss = os_zalloc(sizeof(*bss));
127 695 : if (conf == NULL || bss == NULL) {
128 0 : wpa_printf(MSG_ERROR, "Failed to allocate memory for "
129 : "configuration data.");
130 0 : os_free(conf);
131 0 : os_free(bss);
132 0 : return NULL;
133 : }
134 695 : conf->bss = os_calloc(1, sizeof(struct hostapd_bss_config *));
135 695 : if (conf->bss == NULL) {
136 0 : os_free(conf);
137 0 : os_free(bss);
138 0 : return NULL;
139 : }
140 695 : conf->bss[0] = bss;
141 :
142 695 : bss->radius = os_zalloc(sizeof(*bss->radius));
143 695 : if (bss->radius == NULL) {
144 0 : os_free(conf->bss);
145 0 : os_free(conf);
146 0 : os_free(bss);
147 0 : return NULL;
148 : }
149 :
150 695 : hostapd_config_defaults_bss(bss);
151 :
152 695 : conf->num_bss = 1;
153 :
154 695 : conf->beacon_int = 100;
155 695 : conf->rts_threshold = -1; /* use driver default: 2347 */
156 695 : conf->fragm_threshold = -1; /* user driver default: 2346 */
157 695 : conf->send_probe_response = 1;
158 : /* Set to invalid value means do not add Power Constraint IE */
159 695 : conf->local_pwr_constraint = -1;
160 :
161 695 : conf->wmm_ac_params[0] = ac_be;
162 695 : conf->wmm_ac_params[1] = ac_bk;
163 695 : conf->wmm_ac_params[2] = ac_vi;
164 695 : conf->wmm_ac_params[3] = ac_vo;
165 :
166 695 : conf->tx_queue[0] = txq_vo;
167 695 : conf->tx_queue[1] = txq_vi;
168 695 : conf->tx_queue[2] = txq_be;
169 695 : conf->tx_queue[3] = txq_bk;
170 :
171 695 : conf->ht_capab = HT_CAP_INFO_SMPS_DISABLED;
172 :
173 695 : conf->ap_table_max_size = 255;
174 695 : conf->ap_table_expiration_time = 60;
175 :
176 : #ifdef CONFIG_TESTING_OPTIONS
177 695 : conf->ignore_probe_probability = 0.0;
178 695 : conf->ignore_auth_probability = 0.0;
179 695 : conf->ignore_assoc_probability = 0.0;
180 695 : conf->ignore_reassoc_probability = 0.0;
181 695 : conf->corrupt_gtk_rekey_mic_probability = 0.0;
182 : #endif /* CONFIG_TESTING_OPTIONS */
183 :
184 : #ifdef CONFIG_ACS
185 569 : conf->acs_num_scans = 5;
186 : #endif /* CONFIG_ACS */
187 :
188 695 : return conf;
189 : }
190 :
191 :
192 41 : int hostapd_mac_comp(const void *a, const void *b)
193 : {
194 41 : return os_memcmp(a, b, sizeof(macaddr));
195 : }
196 :
197 :
198 1960 : int hostapd_mac_comp_empty(const void *a)
199 : {
200 1960 : macaddr empty = { 0 };
201 1960 : return os_memcmp(a, empty, sizeof(macaddr));
202 : }
203 :
204 :
205 7 : static int hostapd_config_read_wpa_psk(const char *fname,
206 : struct hostapd_ssid *ssid)
207 : {
208 : FILE *f;
209 : char buf[128], *pos;
210 7 : int line = 0, ret = 0, len, ok;
211 : u8 addr[ETH_ALEN];
212 : struct hostapd_wpa_psk *psk;
213 :
214 7 : if (!fname)
215 0 : return 0;
216 :
217 7 : f = fopen(fname, "r");
218 7 : if (!f) {
219 1 : wpa_printf(MSG_ERROR, "WPA PSK file '%s' not found.", fname);
220 1 : return -1;
221 : }
222 :
223 19 : while (fgets(buf, sizeof(buf), f)) {
224 10 : line++;
225 :
226 10 : if (buf[0] == '#')
227 2 : continue;
228 8 : pos = buf;
229 224 : while (*pos != '\0') {
230 216 : if (*pos == '\n') {
231 8 : *pos = '\0';
232 8 : break;
233 : }
234 208 : pos++;
235 : }
236 8 : if (buf[0] == '\0')
237 1 : continue;
238 :
239 7 : if (hwaddr_aton(buf, addr)) {
240 1 : wpa_printf(MSG_ERROR, "Invalid MAC address '%s' on "
241 : "line %d in '%s'", buf, line, fname);
242 1 : ret = -1;
243 1 : break;
244 : }
245 :
246 6 : psk = os_zalloc(sizeof(*psk));
247 6 : if (psk == NULL) {
248 0 : wpa_printf(MSG_ERROR, "WPA PSK allocation failed");
249 0 : ret = -1;
250 0 : break;
251 : }
252 6 : if (is_zero_ether_addr(addr))
253 0 : psk->group = 1;
254 : else
255 6 : os_memcpy(psk->addr, addr, ETH_ALEN);
256 :
257 6 : pos = buf + 17;
258 6 : if (*pos == '\0') {
259 1 : wpa_printf(MSG_ERROR, "No PSK on line %d in '%s'",
260 : line, fname);
261 1 : os_free(psk);
262 1 : ret = -1;
263 1 : break;
264 : }
265 5 : pos++;
266 :
267 5 : ok = 0;
268 5 : len = os_strlen(pos);
269 5 : if (len == 64 && hexstr2bin(pos, psk->psk, PMK_LEN) == 0)
270 1 : ok = 1;
271 4 : else if (len >= 8 && len < 64) {
272 3 : pbkdf2_sha1(pos, ssid->ssid, ssid->ssid_len,
273 3 : 4096, psk->psk, PMK_LEN);
274 3 : ok = 1;
275 : }
276 5 : if (!ok) {
277 1 : wpa_printf(MSG_ERROR, "Invalid PSK '%s' on line %d in "
278 : "'%s'", pos, line, fname);
279 1 : os_free(psk);
280 1 : ret = -1;
281 1 : break;
282 : }
283 :
284 4 : psk->next = ssid->wpa_psk;
285 4 : ssid->wpa_psk = psk;
286 : }
287 :
288 6 : fclose(f);
289 :
290 6 : return ret;
291 : }
292 :
293 :
294 167 : static int hostapd_derive_psk(struct hostapd_ssid *ssid)
295 : {
296 167 : ssid->wpa_psk = os_zalloc(sizeof(struct hostapd_wpa_psk));
297 167 : if (ssid->wpa_psk == NULL) {
298 0 : wpa_printf(MSG_ERROR, "Unable to alloc space for PSK");
299 0 : return -1;
300 : }
301 334 : wpa_hexdump_ascii(MSG_DEBUG, "SSID",
302 167 : (u8 *) ssid->ssid, ssid->ssid_len);
303 334 : wpa_hexdump_ascii_key(MSG_DEBUG, "PSK (ASCII passphrase)",
304 167 : (u8 *) ssid->wpa_passphrase,
305 167 : os_strlen(ssid->wpa_passphrase));
306 334 : pbkdf2_sha1(ssid->wpa_passphrase,
307 167 : ssid->ssid, ssid->ssid_len,
308 167 : 4096, ssid->wpa_psk->psk, PMK_LEN);
309 167 : wpa_hexdump_key(MSG_DEBUG, "PSK (from passphrase)",
310 167 : ssid->wpa_psk->psk, PMK_LEN);
311 167 : return 0;
312 : }
313 :
314 :
315 700 : int hostapd_setup_wpa_psk(struct hostapd_bss_config *conf)
316 : {
317 700 : struct hostapd_ssid *ssid = &conf->ssid;
318 :
319 700 : if (ssid->wpa_passphrase != NULL) {
320 168 : if (ssid->wpa_psk != NULL) {
321 1 : wpa_printf(MSG_DEBUG, "Using pre-configured WPA PSK "
322 : "instead of passphrase");
323 : } else {
324 167 : wpa_printf(MSG_DEBUG, "Deriving WPA PSK based on "
325 : "passphrase");
326 167 : if (hostapd_derive_psk(ssid) < 0)
327 0 : return -1;
328 : }
329 168 : ssid->wpa_psk->group = 1;
330 : }
331 :
332 700 : if (ssid->wpa_psk_file) {
333 7 : if (hostapd_config_read_wpa_psk(ssid->wpa_psk_file,
334 : &conf->ssid))
335 4 : return -1;
336 : }
337 :
338 696 : return 0;
339 : }
340 :
341 :
342 1410 : static void hostapd_config_free_radius(struct hostapd_radius_server *servers,
343 : int num_servers)
344 : {
345 : int i;
346 :
347 1617 : for (i = 0; i < num_servers; i++) {
348 207 : os_free(servers[i].shared_secret);
349 : }
350 1410 : os_free(servers);
351 1410 : }
352 :
353 :
354 : struct hostapd_radius_attr *
355 13055 : hostapd_config_get_radius_attr(struct hostapd_radius_attr *attr, u8 type)
356 : {
357 13304 : for (; attr; attr = attr->next) {
358 264 : if (attr->type == type)
359 15 : return attr;
360 : }
361 13040 : return NULL;
362 : }
363 :
364 :
365 2583 : static void hostapd_config_free_radius_attr(struct hostapd_radius_attr *attr)
366 : {
367 : struct hostapd_radius_attr *prev;
368 :
369 5469 : while (attr) {
370 303 : prev = attr;
371 303 : attr = attr->next;
372 303 : wpabuf_free(prev->val);
373 303 : os_free(prev);
374 : }
375 2583 : }
376 :
377 :
378 1173 : void hostapd_config_free_eap_user(struct hostapd_eap_user *user)
379 : {
380 1173 : hostapd_config_free_radius_attr(user->accept_attr);
381 1173 : os_free(user->identity);
382 1173 : os_free(user->password);
383 1173 : os_free(user);
384 1173 : }
385 :
386 :
387 705 : static void hostapd_config_free_wep(struct hostapd_wep_keys *keys)
388 : {
389 : int i;
390 3525 : for (i = 0; i < NUM_WEP_KEYS; i++) {
391 2820 : os_free(keys->key[i]);
392 2820 : keys->key[i] = NULL;
393 : }
394 705 : }
395 :
396 :
397 705 : void hostapd_config_free_bss(struct hostapd_bss_config *conf)
398 : {
399 : struct hostapd_wpa_psk *psk, *prev;
400 : struct hostapd_eap_user *user, *prev_user;
401 :
402 705 : if (conf == NULL)
403 705 : return;
404 :
405 705 : psk = conf->ssid.wpa_psk;
406 1713 : while (psk) {
407 303 : prev = psk;
408 303 : psk = psk->next;
409 303 : os_free(prev);
410 : }
411 :
412 705 : os_free(conf->ssid.wpa_passphrase);
413 705 : os_free(conf->ssid.wpa_psk_file);
414 705 : hostapd_config_free_wep(&conf->ssid.wep);
415 : #ifdef CONFIG_FULL_DYNAMIC_VLAN
416 579 : os_free(conf->ssid.vlan_tagged_interface);
417 : #endif /* CONFIG_FULL_DYNAMIC_VLAN */
418 :
419 705 : user = conf->eap_user;
420 2583 : while (user) {
421 1173 : prev_user = user;
422 1173 : user = user->next;
423 1173 : hostapd_config_free_eap_user(prev_user);
424 : }
425 705 : os_free(conf->eap_user_sqlite);
426 :
427 705 : os_free(conf->eap_req_id_text);
428 705 : os_free(conf->accept_mac);
429 705 : os_free(conf->deny_mac);
430 705 : os_free(conf->nas_identifier);
431 705 : if (conf->radius) {
432 705 : hostapd_config_free_radius(conf->radius->auth_servers,
433 705 : conf->radius->num_auth_servers);
434 705 : hostapd_config_free_radius(conf->radius->acct_servers,
435 705 : conf->radius->num_acct_servers);
436 : }
437 705 : hostapd_config_free_radius_attr(conf->radius_auth_req_attr);
438 705 : hostapd_config_free_radius_attr(conf->radius_acct_req_attr);
439 705 : os_free(conf->rsn_preauth_interfaces);
440 705 : os_free(conf->ctrl_interface);
441 705 : os_free(conf->ca_cert);
442 705 : os_free(conf->server_cert);
443 705 : os_free(conf->private_key);
444 705 : os_free(conf->private_key_passwd);
445 705 : os_free(conf->ocsp_stapling_response);
446 705 : os_free(conf->dh_file);
447 705 : os_free(conf->pac_opaque_encr_key);
448 705 : os_free(conf->eap_fast_a_id);
449 705 : os_free(conf->eap_fast_a_id_info);
450 705 : os_free(conf->eap_sim_db);
451 705 : os_free(conf->radius_server_clients);
452 705 : os_free(conf->test_socket);
453 705 : os_free(conf->radius);
454 705 : os_free(conf->radius_das_shared_secret);
455 705 : hostapd_config_free_vlan(conf);
456 705 : os_free(conf->time_zone);
457 :
458 : #ifdef CONFIG_IEEE80211R
459 : {
460 : struct ft_remote_r0kh *r0kh, *r0kh_prev;
461 : struct ft_remote_r1kh *r1kh, *r1kh_prev;
462 :
463 705 : r0kh = conf->r0kh_list;
464 705 : conf->r0kh_list = NULL;
465 1470 : while (r0kh) {
466 60 : r0kh_prev = r0kh;
467 60 : r0kh = r0kh->next;
468 60 : os_free(r0kh_prev);
469 : }
470 :
471 705 : r1kh = conf->r1kh_list;
472 705 : conf->r1kh_list = NULL;
473 1440 : while (r1kh) {
474 30 : r1kh_prev = r1kh;
475 30 : r1kh = r1kh->next;
476 30 : os_free(r1kh_prev);
477 : }
478 : }
479 : #endif /* CONFIG_IEEE80211R */
480 :
481 : #ifdef CONFIG_WPS
482 705 : os_free(conf->wps_pin_requests);
483 705 : os_free(conf->device_name);
484 705 : os_free(conf->manufacturer);
485 705 : os_free(conf->model_name);
486 705 : os_free(conf->model_number);
487 705 : os_free(conf->serial_number);
488 705 : os_free(conf->config_methods);
489 705 : os_free(conf->ap_pin);
490 705 : os_free(conf->extra_cred);
491 705 : os_free(conf->ap_settings);
492 705 : os_free(conf->upnp_iface);
493 705 : os_free(conf->friendly_name);
494 705 : os_free(conf->manufacturer_url);
495 705 : os_free(conf->model_description);
496 705 : os_free(conf->model_url);
497 705 : os_free(conf->upc);
498 705 : wpabuf_free(conf->wps_nfc_dh_pubkey);
499 705 : wpabuf_free(conf->wps_nfc_dh_privkey);
500 705 : wpabuf_free(conf->wps_nfc_dev_pw);
501 : #endif /* CONFIG_WPS */
502 :
503 705 : os_free(conf->roaming_consortium);
504 705 : os_free(conf->venue_name);
505 705 : os_free(conf->nai_realm_data);
506 705 : os_free(conf->network_auth_type);
507 705 : os_free(conf->anqp_3gpp_cell_net);
508 705 : os_free(conf->domain_name);
509 :
510 : #ifdef CONFIG_RADIUS_TEST
511 : os_free(conf->dump_msk_file);
512 : #endif /* CONFIG_RADIUS_TEST */
513 :
514 : #ifdef CONFIG_HS20
515 705 : os_free(conf->hs20_oper_friendly_name);
516 705 : os_free(conf->hs20_wan_metrics);
517 705 : os_free(conf->hs20_connection_capability);
518 705 : os_free(conf->hs20_operating_class);
519 705 : os_free(conf->hs20_icons);
520 705 : if (conf->hs20_osu_providers) {
521 : size_t i;
522 6 : for (i = 0; i < conf->hs20_osu_providers_count; i++) {
523 : struct hs20_osu_provider *p;
524 : size_t j;
525 3 : p = &conf->hs20_osu_providers[i];
526 3 : os_free(p->friendly_name);
527 3 : os_free(p->server_uri);
528 3 : os_free(p->method_list);
529 5 : for (j = 0; j < p->icons_count; j++)
530 2 : os_free(p->icons[j]);
531 3 : os_free(p->icons);
532 3 : os_free(p->osu_nai);
533 3 : os_free(p->service_desc);
534 : }
535 3 : os_free(conf->hs20_osu_providers);
536 : }
537 705 : os_free(conf->subscr_remediation_url);
538 : #endif /* CONFIG_HS20 */
539 :
540 705 : wpabuf_free(conf->vendor_elements);
541 :
542 705 : os_free(conf->sae_groups);
543 :
544 705 : os_free(conf->server_id);
545 :
546 705 : os_free(conf);
547 : }
548 :
549 :
550 : /**
551 : * hostapd_config_free - Free hostapd configuration
552 : * @conf: Configuration data from hostapd_config_read().
553 : */
554 695 : void hostapd_config_free(struct hostapd_config *conf)
555 : {
556 : size_t i;
557 :
558 695 : if (conf == NULL)
559 695 : return;
560 :
561 1384 : for (i = 0; i < conf->num_bss; i++)
562 689 : hostapd_config_free_bss(conf->bss[i]);
563 695 : os_free(conf->bss);
564 695 : os_free(conf->supported_rates);
565 695 : os_free(conf->basic_rates);
566 695 : os_free(conf->chanlist);
567 :
568 695 : os_free(conf);
569 : }
570 :
571 :
572 : /**
573 : * hostapd_maclist_found - Find a MAC address from a list
574 : * @list: MAC address list
575 : * @num_entries: Number of addresses in the list
576 : * @addr: Address to search for
577 : * @vlan_id: Buffer for returning VLAN ID or %NULL if not needed
578 : * Returns: 1 if address is in the list or 0 if not.
579 : *
580 : * Perform a binary search for given MAC address from a pre-sorted list.
581 : */
582 2056 : int hostapd_maclist_found(struct mac_acl_entry *list, int num_entries,
583 : const u8 *addr, int *vlan_id)
584 : {
585 : int start, end, middle, res;
586 :
587 2056 : start = 0;
588 2056 : end = num_entries - 1;
589 :
590 4132 : while (start <= end) {
591 101 : middle = (start + end) / 2;
592 101 : res = os_memcmp(list[middle].addr, addr, ETH_ALEN);
593 101 : if (res == 0) {
594 81 : if (vlan_id)
595 81 : *vlan_id = list[middle].vlan_id;
596 81 : return 1;
597 : }
598 20 : if (res < 0)
599 20 : start = middle + 1;
600 : else
601 0 : end = middle - 1;
602 : }
603 :
604 1975 : return 0;
605 : }
606 :
607 :
608 8788 : int hostapd_rate_found(int *list, int rate)
609 : {
610 : int i;
611 :
612 8788 : if (list == NULL)
613 0 : return 0;
614 :
615 38189 : for (i = 0; list[i] >= 0; i++)
616 32849 : if (list[i] == rate)
617 3448 : return 1;
618 :
619 5340 : return 0;
620 : }
621 :
622 :
623 11 : int hostapd_vlan_id_valid(struct hostapd_vlan *vlan, int vlan_id)
624 : {
625 11 : struct hostapd_vlan *v = vlan;
626 26 : while (v) {
627 15 : if (v->vlan_id == vlan_id || v->vlan_id == VLAN_ID_WILDCARD)
628 11 : return 1;
629 4 : v = v->next;
630 : }
631 0 : return 0;
632 : }
633 :
634 :
635 7 : const char * hostapd_get_vlan_id_ifname(struct hostapd_vlan *vlan, int vlan_id)
636 : {
637 7 : struct hostapd_vlan *v = vlan;
638 14 : while (v) {
639 7 : if (v->vlan_id == vlan_id)
640 7 : return v->ifname;
641 0 : v = v->next;
642 : }
643 0 : return NULL;
644 : }
645 :
646 :
647 981 : const u8 * hostapd_get_psk(const struct hostapd_bss_config *conf,
648 : const u8 *addr, const u8 *p2p_dev_addr,
649 : const u8 *prev_psk)
650 : {
651 : struct hostapd_wpa_psk *psk;
652 981 : int next_ok = prev_psk == NULL;
653 :
654 981 : if (p2p_dev_addr && !is_zero_ether_addr(p2p_dev_addr)) {
655 4728 : wpa_printf(MSG_DEBUG, "Searching a PSK for " MACSTR
656 : " p2p_dev_addr=" MACSTR " prev_psk=%p",
657 4728 : MAC2STR(addr), MAC2STR(p2p_dev_addr), prev_psk);
658 394 : addr = NULL; /* Use P2P Device Address for matching */
659 : } else {
660 3522 : wpa_printf(MSG_DEBUG, "Searching a PSK for " MACSTR
661 : " prev_psk=%p",
662 3522 : MAC2STR(addr), prev_psk);
663 : }
664 :
665 1022 : for (psk = conf->ssid.wpa_psk; psk != NULL; psk = psk->next) {
666 1974 : if (next_ok &&
667 1046 : (psk->group ||
668 42 : (addr && os_memcmp(psk->addr, addr, ETH_ALEN) == 0) ||
669 60 : (!addr && p2p_dev_addr &&
670 30 : os_memcmp(psk->p2p_dev_addr, p2p_dev_addr, ETH_ALEN) ==
671 : 0)))
672 959 : return psk->psk;
673 :
674 41 : if (psk->psk == prev_psk)
675 22 : next_ok = 1;
676 : }
677 :
678 22 : return NULL;
679 : }
680 :
681 :
682 10426 : static int hostapd_config_check_bss(struct hostapd_bss_config *bss,
683 : struct hostapd_config *conf,
684 : int full_config)
685 : {
686 10625 : if (full_config && bss->ieee802_1x && !bss->eap_server &&
687 199 : !bss->radius->auth_servers) {
688 1 : wpa_printf(MSG_ERROR, "Invalid IEEE 802.1X configuration (no "
689 : "EAP authenticator configured).");
690 1 : return -1;
691 : }
692 :
693 10425 : if (bss->wpa) {
694 : int wep, i;
695 :
696 10814 : wep = bss->default_wep_key_len > 0 ||
697 5407 : bss->individual_wep_key_len > 0;
698 27035 : for (i = 0; i < NUM_WEP_KEYS; i++) {
699 21628 : if (bss->ssid.wep.keys_set) {
700 0 : wep = 1;
701 0 : break;
702 : }
703 : }
704 :
705 5407 : if (wep) {
706 0 : wpa_printf(MSG_ERROR, "WEP configuration in a WPA network is not supported");
707 0 : return -1;
708 : }
709 : }
710 :
711 10804 : if (full_config && bss->wpa &&
712 380 : bss->wpa_psk_radius != PSK_RADIUS_IGNORED &&
713 1 : bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH) {
714 1 : wpa_printf(MSG_ERROR, "WPA-PSK using RADIUS enabled, but no "
715 : "RADIUS checking (macaddr_acl=2) enabled.");
716 1 : return -1;
717 : }
718 :
719 10552 : if (full_config && bss->wpa && (bss->wpa_key_mgmt & WPA_KEY_MGMT_PSK) &&
720 261 : bss->ssid.wpa_psk == NULL && bss->ssid.wpa_passphrase == NULL &&
721 7 : bss->ssid.wpa_psk_file == NULL &&
722 0 : (bss->wpa_psk_radius != PSK_RADIUS_REQUIRED ||
723 0 : bss->macaddr_acl != USE_EXTERNAL_RADIUS_AUTH)) {
724 0 : wpa_printf(MSG_ERROR, "WPA-PSK enabled, but PSK or passphrase "
725 : "is not configured.");
726 0 : return -1;
727 : }
728 :
729 10424 : if (full_config && hostapd_mac_comp_empty(bss->bssid) != 0) {
730 : size_t i;
731 :
732 88 : for (i = 0; i < conf->num_bss; i++) {
733 80 : if (conf->bss[i] != bss &&
734 24 : (hostapd_mac_comp(conf->bss[i]->bssid,
735 24 : bss->bssid) == 0)) {
736 0 : wpa_printf(MSG_ERROR, "Duplicate BSSID " MACSTR
737 : " on interface '%s' and '%s'.",
738 0 : MAC2STR(bss->bssid),
739 0 : conf->bss[i]->iface, bss->iface);
740 0 : return -1;
741 : }
742 : }
743 : }
744 :
745 : #ifdef CONFIG_IEEE80211R
746 10456 : if (full_config && wpa_key_mgmt_ft(bss->wpa_key_mgmt) &&
747 63 : (bss->nas_identifier == NULL ||
748 62 : os_strlen(bss->nas_identifier) < 1 ||
749 31 : os_strlen(bss->nas_identifier) > FT_R0KH_ID_MAX_LEN)) {
750 1 : wpa_printf(MSG_ERROR, "FT (IEEE 802.11r) requires "
751 : "nas_identifier to be configured as a 1..48 octet "
752 : "string");
753 1 : return -1;
754 : }
755 : #endif /* CONFIG_IEEE80211R */
756 :
757 : #ifdef CONFIG_IEEE80211N
758 11006 : if (full_config && conf->ieee80211n &&
759 583 : conf->hw_mode == HOSTAPD_MODE_IEEE80211B) {
760 3 : bss->disable_11n = 1;
761 3 : wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) in 11b mode is not "
762 : "allowed, disabling HT capabilites");
763 : }
764 :
765 11006 : if (full_config && conf->ieee80211n &&
766 583 : bss->ssid.security_policy == SECURITY_STATIC_WEP) {
767 4 : bss->disable_11n = 1;
768 4 : wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WEP is not "
769 : "allowed, disabling HT capabilities");
770 : }
771 :
772 10800 : if (full_config && conf->ieee80211n && bss->wpa &&
773 752 : !(bss->wpa_pairwise & WPA_CIPHER_CCMP) &&
774 375 : !(bss->rsn_pairwise & (WPA_CIPHER_CCMP | WPA_CIPHER_GCMP |
775 : WPA_CIPHER_CCMP_256 | WPA_CIPHER_GCMP_256)))
776 : {
777 8 : bss->disable_11n = 1;
778 8 : wpa_printf(MSG_ERROR, "HT (IEEE 802.11n) with WPA/WPA2 "
779 : "requires CCMP/GCMP to be enabled, disabling HT "
780 : "capabilities");
781 : }
782 : #endif /* CONFIG_IEEE80211N */
783 :
784 : #ifdef CONFIG_WPS
785 10423 : if (full_config && bss->wps_state && bss->ignore_broadcast_ssid) {
786 0 : wpa_printf(MSG_INFO, "WPS: ignore_broadcast_ssid "
787 : "configuration forced WPS to be disabled");
788 0 : bss->wps_state = 0;
789 : }
790 :
791 10492 : if (full_config && bss->wps_state &&
792 69 : bss->ssid.wep.keys_set && bss->wpa == 0) {
793 0 : wpa_printf(MSG_INFO, "WPS: WEP configuration forced WPS to be "
794 : "disabled");
795 0 : bss->wps_state = 0;
796 : }
797 :
798 10471 : if (full_config && bss->wps_state && bss->wpa &&
799 96 : (!(bss->wpa & 2) ||
800 48 : !(bss->rsn_pairwise & WPA_CIPHER_CCMP))) {
801 0 : wpa_printf(MSG_INFO, "WPS: WPA/TKIP configuration without "
802 : "WPA2/CCMP forced WPS to be disabled");
803 0 : bss->wps_state = 0;
804 : }
805 : #endif /* CONFIG_WPS */
806 :
807 : #ifdef CONFIG_HS20
808 10529 : if (full_config && bss->hs20 &&
809 211 : (!(bss->wpa & 2) ||
810 105 : !(bss->rsn_pairwise & (WPA_CIPHER_CCMP | WPA_CIPHER_GCMP |
811 : WPA_CIPHER_CCMP_256 |
812 : WPA_CIPHER_GCMP_256)))) {
813 1 : wpa_printf(MSG_ERROR, "HS 2.0: WPA2-Enterprise/CCMP "
814 : "configuration is required for Hotspot 2.0 "
815 : "functionality");
816 1 : return -1;
817 : }
818 : #endif /* CONFIG_HS20 */
819 :
820 10422 : return 0;
821 : }
822 :
823 :
824 10406 : int hostapd_config_check(struct hostapd_config *conf, int full_config)
825 : {
826 : size_t i;
827 :
828 10410 : if (full_config && conf->ieee80211d &&
829 7 : (!conf->country[0] || !conf->country[1])) {
830 1 : wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11d without "
831 : "setting the country_code");
832 1 : return -1;
833 : }
834 :
835 10405 : if (full_config && conf->ieee80211h && !conf->ieee80211d) {
836 1 : wpa_printf(MSG_ERROR, "Cannot enable IEEE 802.11h without "
837 : "IEEE 802.11d enabled");
838 1 : return -1;
839 : }
840 :
841 10406 : if (full_config && conf->local_pwr_constraint != -1 &&
842 2 : !conf->ieee80211d) {
843 1 : wpa_printf(MSG_ERROR, "Cannot add Power Constraint element without Country element");
844 1 : return -1;
845 : }
846 :
847 10405 : if (full_config && conf->spectrum_mgmt_required &&
848 2 : conf->local_pwr_constraint == -1) {
849 1 : wpa_printf(MSG_ERROR, "Cannot set Spectrum Management bit without Country and Power Constraint elements");
850 1 : return -1;
851 : }
852 :
853 20824 : for (i = 0; i < conf->num_bss; i++) {
854 10426 : if (hostapd_config_check_bss(conf->bss[i], conf, full_config))
855 4 : return -1;
856 : }
857 :
858 10398 : return 0;
859 : }
860 :
861 :
862 9869 : void hostapd_set_security_params(struct hostapd_bss_config *bss)
863 : {
864 9869 : if (bss->individual_wep_key_len == 0) {
865 : /* individual keys are not use; can use key idx0 for
866 : * broadcast keys */
867 9865 : bss->broadcast_key_idx_min = 0;
868 : }
869 :
870 9869 : if ((bss->wpa & 2) && bss->rsn_pairwise == 0)
871 1 : bss->rsn_pairwise = bss->wpa_pairwise;
872 9869 : bss->wpa_group = wpa_select_ap_group_cipher(bss->wpa, bss->wpa_pairwise,
873 : bss->rsn_pairwise);
874 :
875 9869 : bss->radius->auth_server = bss->radius->auth_servers;
876 9869 : bss->radius->acct_server = bss->radius->acct_servers;
877 :
878 9869 : if (bss->wpa && bss->ieee802_1x) {
879 1834 : bss->ssid.security_policy = SECURITY_WPA;
880 8035 : } else if (bss->wpa) {
881 3198 : bss->ssid.security_policy = SECURITY_WPA_PSK;
882 4837 : } else if (bss->ieee802_1x) {
883 14 : int cipher = WPA_CIPHER_NONE;
884 14 : bss->ssid.security_policy = SECURITY_IEEE_802_1X;
885 14 : bss->ssid.wep.default_len = bss->default_wep_key_len;
886 14 : if (bss->default_wep_key_len)
887 16 : cipher = bss->default_wep_key_len >= 13 ?
888 8 : WPA_CIPHER_WEP104 : WPA_CIPHER_WEP40;
889 14 : bss->wpa_group = cipher;
890 14 : bss->wpa_pairwise = cipher;
891 14 : bss->rsn_pairwise = cipher;
892 4823 : } else if (bss->ssid.wep.keys_set) {
893 4 : int cipher = WPA_CIPHER_WEP40;
894 4 : if (bss->ssid.wep.len[0] >= 13)
895 2 : cipher = WPA_CIPHER_WEP104;
896 4 : bss->ssid.security_policy = SECURITY_STATIC_WEP;
897 4 : bss->wpa_group = cipher;
898 4 : bss->wpa_pairwise = cipher;
899 4 : bss->rsn_pairwise = cipher;
900 4819 : } else if (bss->osen) {
901 1 : bss->ssid.security_policy = SECURITY_OSEN;
902 1 : bss->wpa_group = WPA_CIPHER_CCMP;
903 1 : bss->wpa_pairwise = 0;
904 1 : bss->rsn_pairwise = WPA_CIPHER_CCMP;
905 : } else {
906 4818 : bss->ssid.security_policy = SECURITY_PLAINTEXT;
907 4818 : bss->wpa_group = WPA_CIPHER_NONE;
908 4818 : bss->wpa_pairwise = WPA_CIPHER_NONE;
909 4818 : bss->rsn_pairwise = WPA_CIPHER_NONE;
910 : }
911 9869 : }
|