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