blob: 3e4e16b4f396a4ca0d04e9e12f79d7c696d03684 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Initialization and configuration
Dmitry Shmidt344abd32014-01-14 13:17:00 -08003 * Copyright (c) 2002-2014, Jouni Malinen <j@w1.fi>
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07004 *
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08005 * This software may be distributed under the terms of the BSD license.
6 * See README for more details.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07007 */
8
9#include "utils/includes.h"
10
11#include "utils/common.h"
12#include "utils/eloop.h"
13#include "common/ieee802_11_defs.h"
Dmitry Shmidtcce06662013-11-04 18:44:24 -080014#include "common/wpa_ctrl.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070015#include "radius/radius_client.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070016#include "radius/radius_das.h"
Dmitry Shmidt50b691d2014-05-21 14:01:45 -070017#include "eap_server/tncs.h"
Dmitry Shmidt2f74e362015-01-21 13:19:05 -080018#include "eapol_auth/eapol_auth_sm.h"
19#include "eapol_auth/eapol_auth_sm_i.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070020#include "hostapd.h"
21#include "authsrv.h"
22#include "sta_info.h"
23#include "accounting.h"
24#include "ap_list.h"
25#include "beacon.h"
26#include "iapp.h"
27#include "ieee802_1x.h"
28#include "ieee802_11_auth.h"
29#include "vlan_init.h"
30#include "wpa_auth.h"
31#include "wps_hostapd.h"
32#include "hw_features.h"
33#include "wpa_auth_glue.h"
34#include "ap_drv_ops.h"
35#include "ap_config.h"
36#include "p2p_hostapd.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070037#include "gas_serv.h"
Dmitry Shmidt051af732013-10-22 13:52:46 -070038#include "dfs.h"
Dmitry Shmidt7832adb2014-04-29 10:53:02 -070039#include "ieee802_11.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080040#include "bss_load.h"
41#include "x_snoop.h"
42#include "dhcp_snoop.h"
43#include "ndisc_snoop.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070044
45
Dmitry Shmidt04949592012-07-19 12:16:46 -070046static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070047static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd);
Dmitry Shmidtc55524a2011-07-07 11:18:38 -070048static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd);
Dmitry Shmidtcce06662013-11-04 18:44:24 -080049static int setup_interface2(struct hostapd_iface *iface);
50static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070051
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070052
Dmitry Shmidt04949592012-07-19 12:16:46 -070053int hostapd_for_each_interface(struct hapd_interfaces *interfaces,
54 int (*cb)(struct hostapd_iface *iface,
55 void *ctx), void *ctx)
56{
57 size_t i;
58 int ret;
59
60 for (i = 0; i < interfaces->count; i++) {
61 ret = cb(interfaces->iface[i], ctx);
62 if (ret)
63 return ret;
64 }
65
66 return 0;
67}
68
69
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070070static void hostapd_reload_bss(struct hostapd_data *hapd)
71{
Dmitry Shmidtcce06662013-11-04 18:44:24 -080072 struct hostapd_ssid *ssid;
73
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070074#ifndef CONFIG_NO_RADIUS
75 radius_client_reconfig(hapd->radius, hapd->conf->radius);
76#endif /* CONFIG_NO_RADIUS */
77
Dmitry Shmidtcce06662013-11-04 18:44:24 -080078 ssid = &hapd->conf->ssid;
79 if (!ssid->wpa_psk_set && ssid->wpa_psk && !ssid->wpa_psk->next &&
80 ssid->wpa_passphrase_set && ssid->wpa_passphrase) {
81 /*
82 * Force PSK to be derived again since SSID or passphrase may
83 * have changed.
84 */
Dmitry Shmidt7f656022015-02-25 14:36:37 -080085 hostapd_config_clear_wpa_psk(&hapd->conf->ssid.wpa_psk);
Dmitry Shmidtcce06662013-11-04 18:44:24 -080086 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070087 if (hostapd_setup_wpa_psk(hapd->conf)) {
88 wpa_printf(MSG_ERROR, "Failed to re-configure WPA PSK "
89 "after reloading configuration");
90 }
91
92 if (hapd->conf->ieee802_1x || hapd->conf->wpa)
93 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1);
94 else
95 hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
96
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080097 if ((hapd->conf->wpa || hapd->conf->osen) && hapd->wpa_auth == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070098 hostapd_setup_wpa(hapd);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080099 if (hapd->wpa_auth)
100 wpa_init_keys(hapd->wpa_auth);
101 } else if (hapd->conf->wpa) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700102 const u8 *wpa_ie;
103 size_t wpa_ie_len;
104 hostapd_reconfig_wpa(hapd);
105 wpa_ie = wpa_auth_get_wpa_ie(hapd->wpa_auth, &wpa_ie_len);
106 if (hostapd_set_generic_elem(hapd, wpa_ie, wpa_ie_len))
107 wpa_printf(MSG_ERROR, "Failed to configure WPA IE for "
108 "the kernel driver.");
109 } else if (hapd->wpa_auth) {
110 wpa_deinit(hapd->wpa_auth);
111 hapd->wpa_auth = NULL;
112 hostapd_set_privacy(hapd, 0);
113 hostapd_setup_encryption(hapd->conf->iface, hapd);
114 hostapd_set_generic_elem(hapd, (u8 *) "", 0);
115 }
116
117 ieee802_11_set_beacon(hapd);
118 hostapd_update_wps(hapd);
119
120 if (hapd->conf->ssid.ssid_set &&
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700121 hostapd_set_ssid(hapd, hapd->conf->ssid.ssid,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700122 hapd->conf->ssid.ssid_len)) {
123 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
124 /* try to continue */
125 }
126 wpa_printf(MSG_DEBUG, "Reconfigured interface %s", hapd->conf->iface);
127}
128
129
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700130static void hostapd_clear_old(struct hostapd_iface *iface)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700131{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700132 size_t j;
133
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700134 /*
135 * Deauthenticate all stations since the new configuration may not
136 * allow them to use the BSS anymore.
137 */
138 for (j = 0; j < iface->num_bss; j++) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700139 hostapd_flush_old_stations(iface->bss[j],
140 WLAN_REASON_PREV_AUTH_NOT_VALID);
Dmitry Shmidtc55524a2011-07-07 11:18:38 -0700141 hostapd_broadcast_wep_clear(iface->bss[j]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700142
143#ifndef CONFIG_NO_RADIUS
144 /* TODO: update dynamic data based on changed configuration
145 * items (e.g., open/close sockets, etc.) */
146 radius_client_flush(iface->bss[j]->radius, 0);
147#endif /* CONFIG_NO_RADIUS */
148 }
Dmitry Shmidt444d5672013-04-01 13:08:44 -0700149}
150
151
152int hostapd_reload_config(struct hostapd_iface *iface)
153{
154 struct hostapd_data *hapd = iface->bss[0];
155 struct hostapd_config *newconf, *oldconf;
156 size_t j;
157
158 if (iface->config_fname == NULL) {
159 /* Only in-memory config in use - assume it has been updated */
160 hostapd_clear_old(iface);
161 for (j = 0; j < iface->num_bss; j++)
162 hostapd_reload_bss(iface->bss[j]);
163 return 0;
164 }
165
166 if (iface->interfaces == NULL ||
167 iface->interfaces->config_read_cb == NULL)
168 return -1;
169 newconf = iface->interfaces->config_read_cb(iface->config_fname);
170 if (newconf == NULL)
171 return -1;
172
173 hostapd_clear_old(iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700174
175 oldconf = hapd->iconf;
176 iface->conf = newconf;
177
178 for (j = 0; j < iface->num_bss; j++) {
179 hapd = iface->bss[j];
180 hapd->iconf = newconf;
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700181 hapd->iconf->channel = oldconf->channel;
Dmitry Shmidtdf5a7e42014-04-02 12:59:59 -0700182 hapd->iconf->secondary_channel = oldconf->secondary_channel;
Dmitry Shmidtd11f0192014-03-24 12:09:47 -0700183 hapd->iconf->ieee80211n = oldconf->ieee80211n;
184 hapd->iconf->ieee80211ac = oldconf->ieee80211ac;
185 hapd->iconf->ht_capab = oldconf->ht_capab;
186 hapd->iconf->vht_capab = oldconf->vht_capab;
187 hapd->iconf->vht_oper_chwidth = oldconf->vht_oper_chwidth;
188 hapd->iconf->vht_oper_centr_freq_seg0_idx =
189 oldconf->vht_oper_centr_freq_seg0_idx;
190 hapd->iconf->vht_oper_centr_freq_seg1_idx =
191 oldconf->vht_oper_centr_freq_seg1_idx;
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800192 hapd->conf = newconf->bss[j];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700193 hostapd_reload_bss(hapd);
194 }
195
196 hostapd_config_free(oldconf);
197
198
199 return 0;
200}
201
202
203static void hostapd_broadcast_key_clear_iface(struct hostapd_data *hapd,
204 char *ifname)
205{
206 int i;
207
208 for (i = 0; i < NUM_WEP_KEYS; i++) {
209 if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE, NULL, i,
210 0, NULL, 0, NULL, 0)) {
211 wpa_printf(MSG_DEBUG, "Failed to clear default "
212 "encryption keys (ifname=%s keyidx=%d)",
213 ifname, i);
214 }
215 }
216#ifdef CONFIG_IEEE80211W
217 if (hapd->conf->ieee80211w) {
218 for (i = NUM_WEP_KEYS; i < NUM_WEP_KEYS + 2; i++) {
219 if (hostapd_drv_set_key(ifname, hapd, WPA_ALG_NONE,
220 NULL, i, 0, NULL,
221 0, NULL, 0)) {
222 wpa_printf(MSG_DEBUG, "Failed to clear "
223 "default mgmt encryption keys "
224 "(ifname=%s keyidx=%d)", ifname, i);
225 }
226 }
227 }
228#endif /* CONFIG_IEEE80211W */
229}
230
231
232static int hostapd_broadcast_wep_clear(struct hostapd_data *hapd)
233{
234 hostapd_broadcast_key_clear_iface(hapd, hapd->conf->iface);
235 return 0;
236}
237
238
239static int hostapd_broadcast_wep_set(struct hostapd_data *hapd)
240{
241 int errors = 0, idx;
242 struct hostapd_ssid *ssid = &hapd->conf->ssid;
243
244 idx = ssid->wep.idx;
245 if (ssid->wep.default_len &&
246 hostapd_drv_set_key(hapd->conf->iface,
247 hapd, WPA_ALG_WEP, broadcast_ether_addr, idx,
248 1, NULL, 0, ssid->wep.key[idx],
249 ssid->wep.len[idx])) {
250 wpa_printf(MSG_WARNING, "Could not set WEP encryption.");
251 errors++;
252 }
253
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700254 return errors;
255}
256
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700257
Dmitry Shmidt04949592012-07-19 12:16:46 -0700258static void hostapd_free_hapd_data(struct hostapd_data *hapd)
259{
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800260 os_free(hapd->probereq_cb);
261 hapd->probereq_cb = NULL;
262
263#ifdef CONFIG_P2P
264 wpabuf_free(hapd->p2p_beacon_ie);
265 hapd->p2p_beacon_ie = NULL;
266 wpabuf_free(hapd->p2p_probe_resp_ie);
267 hapd->p2p_probe_resp_ie = NULL;
268#endif /* CONFIG_P2P */
269
Dmitry Shmidtfa3fc4a2013-11-21 13:34:38 -0800270 if (!hapd->started) {
271 wpa_printf(MSG_ERROR, "%s: Interface %s wasn't started",
272 __func__, hapd->conf->iface);
273 return;
274 }
275 hapd->started = 0;
276
Dmitry Shmidt54605472013-11-08 11:10:19 -0800277 wpa_printf(MSG_DEBUG, "%s(%s)", __func__, hapd->conf->iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700278 iapp_deinit(hapd->iapp);
279 hapd->iapp = NULL;
280 accounting_deinit(hapd);
281 hostapd_deinit_wpa(hapd);
282 vlan_deinit(hapd);
283 hostapd_acl_deinit(hapd);
284#ifndef CONFIG_NO_RADIUS
285 radius_client_deinit(hapd->radius);
286 hapd->radius = NULL;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700287 radius_das_deinit(hapd->radius_das);
288 hapd->radius_das = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700289#endif /* CONFIG_NO_RADIUS */
290
291 hostapd_deinit_wps(hapd);
292
293 authsrv_deinit(hapd);
294
Dmitry Shmidt71757432014-06-02 13:50:35 -0700295 if (hapd->interface_added) {
296 hapd->interface_added = 0;
297 if (hostapd_if_remove(hapd, WPA_IF_AP_BSS, hapd->conf->iface)) {
298 wpa_printf(MSG_WARNING,
299 "Failed to remove BSS interface %s",
300 hapd->conf->iface);
301 hapd->interface_added = 1;
302 } else {
303 /*
304 * Since this was a dynamically added interface, the
305 * driver wrapper may have removed its internal instance
306 * and hapd->drv_priv is not valid anymore.
307 */
308 hapd->drv_priv = NULL;
309 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700310 }
311
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800312 wpabuf_free(hapd->time_adv);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700313
314#ifdef CONFIG_INTERWORKING
315 gas_serv_deinit(hapd);
316#endif /* CONFIG_INTERWORKING */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800317
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800318 bss_load_update_deinit(hapd);
319 ndisc_snoop_deinit(hapd);
320 dhcp_snoop_deinit(hapd);
321 x_snoop_deinit(hapd);
322
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800323#ifdef CONFIG_SQLITE
Dmitry Shmidtc2817022014-07-02 10:32:10 -0700324 bin_clear_free(hapd->tmp_eap_user.identity,
325 hapd->tmp_eap_user.identity_len);
326 bin_clear_free(hapd->tmp_eap_user.password,
327 hapd->tmp_eap_user.password_len);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800328#endif /* CONFIG_SQLITE */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800329
330#ifdef CONFIG_MESH
331 wpabuf_free(hapd->mesh_pending_auth);
332 hapd->mesh_pending_auth = NULL;
333#endif /* CONFIG_MESH */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700334}
335
336
337/**
338 * hostapd_cleanup - Per-BSS cleanup (deinitialization)
339 * @hapd: Pointer to BSS data
340 *
341 * This function is used to free all per-BSS data structures and resources.
Dmitry Shmidt54605472013-11-08 11:10:19 -0800342 * Most of the modules that are initialized in hostapd_setup_bss() are
343 * deinitialized here.
Dmitry Shmidt04949592012-07-19 12:16:46 -0700344 */
345static void hostapd_cleanup(struct hostapd_data *hapd)
346{
Dmitry Shmidt54605472013-11-08 11:10:19 -0800347 wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s))", __func__, hapd,
348 hapd->conf->iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700349 if (hapd->iface->interfaces &&
350 hapd->iface->interfaces->ctrl_iface_deinit)
351 hapd->iface->interfaces->ctrl_iface_deinit(hapd);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700352 hostapd_free_hapd_data(hapd);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700353}
354
355
Dmitry Shmidt04949592012-07-19 12:16:46 -0700356static void hostapd_cleanup_iface_partial(struct hostapd_iface *iface)
357{
Dmitry Shmidt54605472013-11-08 11:10:19 -0800358 wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800359#ifdef CONFIG_IEEE80211N
360#ifdef NEED_AP_MLME
361 hostapd_stop_setup_timers(iface);
362#endif /* NEED_AP_MLME */
363#endif /* CONFIG_IEEE80211N */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700364 hostapd_free_hw_features(iface->hw_features, iface->num_hw_features);
365 iface->hw_features = NULL;
366 os_free(iface->current_rates);
367 iface->current_rates = NULL;
368 os_free(iface->basic_rates);
369 iface->basic_rates = NULL;
370 ap_list_deinit(iface);
371}
372
373
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700374/**
375 * hostapd_cleanup_iface - Complete per-interface cleanup
376 * @iface: Pointer to interface data
377 *
378 * This function is called after per-BSS data structures are deinitialized
379 * with hostapd_cleanup().
380 */
381static void hostapd_cleanup_iface(struct hostapd_iface *iface)
382{
Dmitry Shmidt54605472013-11-08 11:10:19 -0800383 wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800384 eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
385
Dmitry Shmidt04949592012-07-19 12:16:46 -0700386 hostapd_cleanup_iface_partial(iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700387 hostapd_config_free(iface->conf);
388 iface->conf = NULL;
389
390 os_free(iface->config_fname);
391 os_free(iface->bss);
Dmitry Shmidt54605472013-11-08 11:10:19 -0800392 wpa_printf(MSG_DEBUG, "%s: free iface=%p", __func__, iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700393 os_free(iface);
394}
395
396
Dmitry Shmidt04949592012-07-19 12:16:46 -0700397static void hostapd_clear_wep(struct hostapd_data *hapd)
398{
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800399 if (hapd->drv_priv && !hapd->iface->driver_ap_teardown) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700400 hostapd_set_privacy(hapd, 0);
401 hostapd_broadcast_wep_clear(hapd);
402 }
403}
404
405
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700406static int hostapd_setup_encryption(char *iface, struct hostapd_data *hapd)
407{
408 int i;
409
410 hostapd_broadcast_wep_set(hapd);
411
412 if (hapd->conf->ssid.wep.default_len) {
413 hostapd_set_privacy(hapd, 1);
414 return 0;
415 }
416
Jouni Malinen75ecf522011-06-27 15:19:46 -0700417 /*
418 * When IEEE 802.1X is not enabled, the driver may need to know how to
419 * set authentication algorithms for static WEP.
420 */
421 hostapd_drv_set_authmode(hapd, hapd->conf->auth_algs);
422
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700423 for (i = 0; i < 4; i++) {
424 if (hapd->conf->ssid.wep.key[i] &&
425 hostapd_drv_set_key(iface, hapd, WPA_ALG_WEP, NULL, i,
426 i == hapd->conf->ssid.wep.idx, NULL, 0,
427 hapd->conf->ssid.wep.key[i],
428 hapd->conf->ssid.wep.len[i])) {
429 wpa_printf(MSG_WARNING, "Could not set WEP "
430 "encryption.");
431 return -1;
432 }
433 if (hapd->conf->ssid.wep.key[i] &&
434 i == hapd->conf->ssid.wep.idx)
435 hostapd_set_privacy(hapd, 1);
436 }
437
438 return 0;
439}
440
441
Dmitry Shmidt04949592012-07-19 12:16:46 -0700442static int hostapd_flush_old_stations(struct hostapd_data *hapd, u16 reason)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700443{
444 int ret = 0;
445 u8 addr[ETH_ALEN];
446
447 if (hostapd_drv_none(hapd) || hapd->drv_priv == NULL)
448 return 0;
449
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800450 if (!hapd->iface->driver_ap_teardown) {
451 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
452 "Flushing old station entries");
453
454 if (hostapd_flush(hapd)) {
455 wpa_msg(hapd->msg_ctx, MSG_WARNING,
456 "Could not connect to kernel driver");
457 ret = -1;
458 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700459 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800460 wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "Deauthenticate all stations");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700461 os_memset(addr, 0xff, ETH_ALEN);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700462 hostapd_drv_sta_deauth(hapd, addr, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700463 hostapd_free_stas(hapd);
464
465 return ret;
466}
467
468
Dmitry Shmidt71757432014-06-02 13:50:35 -0700469static void hostapd_bss_deinit_no_free(struct hostapd_data *hapd)
470{
471 hostapd_free_stas(hapd);
472 hostapd_flush_old_stations(hapd, WLAN_REASON_DEAUTH_LEAVING);
473 hostapd_clear_wep(hapd);
474}
475
476
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700477/**
478 * hostapd_validate_bssid_configuration - Validate BSSID configuration
479 * @iface: Pointer to interface data
480 * Returns: 0 on success, -1 on failure
481 *
482 * This function is used to validate that the configured BSSIDs are valid.
483 */
484static int hostapd_validate_bssid_configuration(struct hostapd_iface *iface)
485{
486 u8 mask[ETH_ALEN] = { 0 };
487 struct hostapd_data *hapd = iface->bss[0];
488 unsigned int i = iface->conf->num_bss, bits = 0, j;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700489 int auto_addr = 0;
490
491 if (hostapd_drv_none(hapd))
492 return 0;
493
494 /* Generate BSSID mask that is large enough to cover the BSSIDs. */
495
496 /* Determine the bits necessary to cover the number of BSSIDs. */
497 for (i--; i; i >>= 1)
498 bits++;
499
500 /* Determine the bits necessary to any configured BSSIDs,
501 if they are higher than the number of BSSIDs. */
502 for (j = 0; j < iface->conf->num_bss; j++) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800503 if (hostapd_mac_comp_empty(iface->conf->bss[j]->bssid) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700504 if (j)
505 auto_addr++;
506 continue;
507 }
508
509 for (i = 0; i < ETH_ALEN; i++) {
510 mask[i] |=
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800511 iface->conf->bss[j]->bssid[i] ^
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700512 hapd->own_addr[i];
513 }
514 }
515
516 if (!auto_addr)
517 goto skip_mask_ext;
518
519 for (i = 0; i < ETH_ALEN && mask[i] == 0; i++)
520 ;
521 j = 0;
522 if (i < ETH_ALEN) {
523 j = (5 - i) * 8;
524
525 while (mask[i] != 0) {
526 mask[i] >>= 1;
527 j++;
528 }
529 }
530
531 if (bits < j)
532 bits = j;
533
534 if (bits > 40) {
535 wpa_printf(MSG_ERROR, "Too many bits in the BSSID mask (%u)",
536 bits);
537 return -1;
538 }
539
540 os_memset(mask, 0xff, ETH_ALEN);
541 j = bits / 8;
542 for (i = 5; i > 5 - j; i--)
543 mask[i] = 0;
544 j = bits % 8;
545 while (j--)
546 mask[i] <<= 1;
547
548skip_mask_ext:
549 wpa_printf(MSG_DEBUG, "BSS count %lu, BSSID mask " MACSTR " (%d bits)",
550 (unsigned long) iface->conf->num_bss, MAC2STR(mask), bits);
551
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700552 if (!auto_addr)
553 return 0;
554
555 for (i = 0; i < ETH_ALEN; i++) {
556 if ((hapd->own_addr[i] & mask[i]) != hapd->own_addr[i]) {
557 wpa_printf(MSG_ERROR, "Invalid BSSID mask " MACSTR
558 " for start address " MACSTR ".",
559 MAC2STR(mask), MAC2STR(hapd->own_addr));
560 wpa_printf(MSG_ERROR, "Start address must be the "
561 "first address in the block (i.e., addr "
562 "AND mask == addr).");
563 return -1;
564 }
565 }
566
567 return 0;
568}
569
570
571static int mac_in_conf(struct hostapd_config *conf, const void *a)
572{
573 size_t i;
574
575 for (i = 0; i < conf->num_bss; i++) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800576 if (hostapd_mac_comp(conf->bss[i]->bssid, a) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700577 return 1;
578 }
579 }
580
581 return 0;
582}
583
584
Dmitry Shmidt04949592012-07-19 12:16:46 -0700585#ifndef CONFIG_NO_RADIUS
586
587static int hostapd_das_nas_mismatch(struct hostapd_data *hapd,
588 struct radius_das_attrs *attr)
589{
Dmitry Shmidt13ca8d82014-02-20 10:18:40 -0800590 if (attr->nas_identifier &&
591 (!hapd->conf->nas_identifier ||
592 os_strlen(hapd->conf->nas_identifier) !=
593 attr->nas_identifier_len ||
594 os_memcmp(hapd->conf->nas_identifier, attr->nas_identifier,
595 attr->nas_identifier_len) != 0)) {
596 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-Identifier mismatch");
597 return 1;
598 }
599
600 if (attr->nas_ip_addr &&
601 (hapd->conf->own_ip_addr.af != AF_INET ||
602 os_memcmp(&hapd->conf->own_ip_addr.u.v4, attr->nas_ip_addr, 4) !=
603 0)) {
604 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-IP-Address mismatch");
605 return 1;
606 }
607
608#ifdef CONFIG_IPV6
609 if (attr->nas_ipv6_addr &&
610 (hapd->conf->own_ip_addr.af != AF_INET6 ||
611 os_memcmp(&hapd->conf->own_ip_addr.u.v6, attr->nas_ipv6_addr, 16)
612 != 0)) {
613 wpa_printf(MSG_DEBUG, "RADIUS DAS: NAS-IPv6-Address mismatch");
614 return 1;
615 }
616#endif /* CONFIG_IPV6 */
617
Dmitry Shmidt04949592012-07-19 12:16:46 -0700618 return 0;
619}
620
621
622static struct sta_info * hostapd_das_find_sta(struct hostapd_data *hapd,
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800623 struct radius_das_attrs *attr,
624 int *multi)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700625{
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800626 struct sta_info *selected, *sta;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700627 char buf[128];
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800628 int num_attr = 0;
629 int count;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700630
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800631 *multi = 0;
632
633 for (sta = hapd->sta_list; sta; sta = sta->next)
634 sta->radius_das_match = 1;
635
636 if (attr->sta_addr) {
637 num_attr++;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700638 sta = ap_get_sta(hapd, attr->sta_addr);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800639 if (!sta) {
640 wpa_printf(MSG_DEBUG,
641 "RADIUS DAS: No Calling-Station-Id match");
642 return NULL;
643 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700644
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800645 selected = sta;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700646 for (sta = hapd->sta_list; sta; sta = sta->next) {
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800647 if (sta != selected)
648 sta->radius_das_match = 0;
649 }
650 wpa_printf(MSG_DEBUG, "RADIUS DAS: Calling-Station-Id match");
651 }
652
653 if (attr->acct_session_id) {
654 num_attr++;
655 if (attr->acct_session_id_len != 17) {
656 wpa_printf(MSG_DEBUG,
657 "RADIUS DAS: Acct-Session-Id cannot match");
658 return NULL;
659 }
660 count = 0;
661
662 for (sta = hapd->sta_list; sta; sta = sta->next) {
663 if (!sta->radius_das_match)
664 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700665 os_snprintf(buf, sizeof(buf), "%08X-%08X",
666 sta->acct_session_id_hi,
667 sta->acct_session_id_lo);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800668 if (os_memcmp(attr->acct_session_id, buf, 17) != 0)
669 sta->radius_das_match = 0;
670 else
671 count++;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700672 }
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800673
674 if (count == 0) {
675 wpa_printf(MSG_DEBUG,
676 "RADIUS DAS: No matches remaining after Acct-Session-Id check");
677 return NULL;
678 }
679 wpa_printf(MSG_DEBUG, "RADIUS DAS: Acct-Session-Id match");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700680 }
681
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800682 if (attr->acct_multi_session_id) {
683 num_attr++;
684 if (attr->acct_multi_session_id_len != 17) {
685 wpa_printf(MSG_DEBUG,
686 "RADIUS DAS: Acct-Multi-Session-Id cannot match");
687 return NULL;
688 }
689 count = 0;
690
691 for (sta = hapd->sta_list; sta; sta = sta->next) {
692 if (!sta->radius_das_match)
693 continue;
694 if (!sta->eapol_sm ||
695 !sta->eapol_sm->acct_multi_session_id_hi) {
696 sta->radius_das_match = 0;
697 continue;
698 }
699 os_snprintf(buf, sizeof(buf), "%08X+%08X",
700 sta->eapol_sm->acct_multi_session_id_hi,
701 sta->eapol_sm->acct_multi_session_id_lo);
702 if (os_memcmp(attr->acct_multi_session_id, buf, 17) !=
703 0)
704 sta->radius_das_match = 0;
705 else
706 count++;
707 }
708
709 if (count == 0) {
710 wpa_printf(MSG_DEBUG,
711 "RADIUS DAS: No matches remaining after Acct-Multi-Session-Id check");
712 return NULL;
713 }
714 wpa_printf(MSG_DEBUG,
715 "RADIUS DAS: Acct-Multi-Session-Id match");
716 }
717
718 if (attr->cui) {
719 num_attr++;
720 count = 0;
721
Dmitry Shmidt04949592012-07-19 12:16:46 -0700722 for (sta = hapd->sta_list; sta; sta = sta->next) {
723 struct wpabuf *cui;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800724
725 if (!sta->radius_das_match)
726 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700727 cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800728 if (!cui || wpabuf_len(cui) != attr->cui_len ||
Dmitry Shmidt04949592012-07-19 12:16:46 -0700729 os_memcmp(wpabuf_head(cui), attr->cui,
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800730 attr->cui_len) != 0)
731 sta->radius_das_match = 0;
732 else
733 count++;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700734 }
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800735
736 if (count == 0) {
737 wpa_printf(MSG_DEBUG,
738 "RADIUS DAS: No matches remaining after Chargeable-User-Identity check");
739 return NULL;
740 }
741 wpa_printf(MSG_DEBUG,
742 "RADIUS DAS: Chargeable-User-Identity match");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700743 }
744
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800745 if (attr->user_name) {
746 num_attr++;
747 count = 0;
748
Dmitry Shmidt04949592012-07-19 12:16:46 -0700749 for (sta = hapd->sta_list; sta; sta = sta->next) {
750 u8 *identity;
751 size_t identity_len;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800752
753 if (!sta->radius_das_match)
754 continue;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700755 identity = ieee802_1x_get_identity(sta->eapol_sm,
756 &identity_len);
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800757 if (!identity ||
758 identity_len != attr->user_name_len ||
Dmitry Shmidt04949592012-07-19 12:16:46 -0700759 os_memcmp(identity, attr->user_name, identity_len)
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800760 != 0)
761 sta->radius_das_match = 0;
762 else
763 count++;
764 }
765
766 if (count == 0) {
767 wpa_printf(MSG_DEBUG,
768 "RADIUS DAS: No matches remaining after User-Name check");
769 return NULL;
770 }
771 wpa_printf(MSG_DEBUG,
772 "RADIUS DAS: User-Name match");
773 }
774
775 if (num_attr == 0) {
776 /*
777 * In theory, we could match all current associations, but it
778 * seems safer to just reject requests that do not include any
779 * session identification attributes.
780 */
781 wpa_printf(MSG_DEBUG,
782 "RADIUS DAS: No session identification attributes included");
783 return NULL;
784 }
785
786 selected = NULL;
787 for (sta = hapd->sta_list; sta; sta = sta->next) {
788 if (sta->radius_das_match) {
789 if (selected) {
790 *multi = 1;
791 return NULL;
792 }
793 selected = sta;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700794 }
795 }
796
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800797 return selected;
798}
799
800
801static int hostapd_das_disconnect_pmksa(struct hostapd_data *hapd,
802 struct radius_das_attrs *attr)
803{
804 if (!hapd->wpa_auth)
805 return -1;
806 return wpa_auth_radius_das_disconnect_pmksa(hapd->wpa_auth, attr);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700807}
808
809
810static enum radius_das_res
811hostapd_das_disconnect(void *ctx, struct radius_das_attrs *attr)
812{
813 struct hostapd_data *hapd = ctx;
814 struct sta_info *sta;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800815 int multi;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700816
817 if (hostapd_das_nas_mismatch(hapd, attr))
818 return RADIUS_DAS_NAS_MISMATCH;
819
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800820 sta = hostapd_das_find_sta(hapd, attr, &multi);
821 if (sta == NULL) {
822 if (multi) {
823 wpa_printf(MSG_DEBUG,
824 "RADIUS DAS: Multiple sessions match - not supported");
825 return RADIUS_DAS_MULTI_SESSION_MATCH;
826 }
827 if (hostapd_das_disconnect_pmksa(hapd, attr) == 0) {
828 wpa_printf(MSG_DEBUG,
829 "RADIUS DAS: PMKSA cache entry matched");
830 return RADIUS_DAS_SUCCESS;
831 }
832 wpa_printf(MSG_DEBUG, "RADIUS DAS: No matching session found");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700833 return RADIUS_DAS_SESSION_NOT_FOUND;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800834 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700835
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800836 wpa_printf(MSG_DEBUG, "RADIUS DAS: Found a matching session " MACSTR
837 " - disconnecting", MAC2STR(sta->addr));
Dmitry Shmidt13ca8d82014-02-20 10:18:40 -0800838 wpa_auth_pmksa_remove(hapd->wpa_auth, sta->addr);
839
Dmitry Shmidt04949592012-07-19 12:16:46 -0700840 hostapd_drv_sta_deauth(hapd, sta->addr,
841 WLAN_REASON_PREV_AUTH_NOT_VALID);
842 ap_sta_deauthenticate(hapd, sta, WLAN_REASON_PREV_AUTH_NOT_VALID);
843
844 return RADIUS_DAS_SUCCESS;
845}
846
847#endif /* CONFIG_NO_RADIUS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700848
849
850/**
851 * hostapd_setup_bss - Per-BSS setup (initialization)
852 * @hapd: Pointer to BSS data
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800853 * @first: Whether this BSS is the first BSS of an interface; -1 = not first,
854 * but interface may exist
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700855 *
856 * This function is used to initialize all per-BSS data structures and
857 * resources. This gets called in a loop for each BSS when an interface is
858 * initialized. Most of the modules that are initialized here will be
859 * deinitialized in hostapd_cleanup().
860 */
861static int hostapd_setup_bss(struct hostapd_data *hapd, int first)
862{
863 struct hostapd_bss_config *conf = hapd->conf;
864 u8 ssid[HOSTAPD_MAX_SSID_LEN + 1];
865 int ssid_len, set_ssid;
866 char force_ifname[IFNAMSIZ];
867 u8 if_addr[ETH_ALEN];
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800868 int flush_old_stations = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700869
Dmitry Shmidt54605472013-11-08 11:10:19 -0800870 wpa_printf(MSG_DEBUG, "%s(hapd=%p (%s), first=%d)",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700871 __func__, hapd, conf->iface, first);
Dmitry Shmidt54605472013-11-08 11:10:19 -0800872
Dmitry Shmidt50b691d2014-05-21 14:01:45 -0700873#ifdef EAP_SERVER_TNC
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700874 if (conf->tnc && tncs_global_init() < 0) {
Dmitry Shmidt50b691d2014-05-21 14:01:45 -0700875 wpa_printf(MSG_ERROR, "Failed to initialize TNCS");
876 return -1;
877 }
878#endif /* EAP_SERVER_TNC */
879
Dmitry Shmidt54605472013-11-08 11:10:19 -0800880 if (hapd->started) {
881 wpa_printf(MSG_ERROR, "%s: Interface %s was already started",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700882 __func__, conf->iface);
Dmitry Shmidt54605472013-11-08 11:10:19 -0800883 return -1;
884 }
885 hapd->started = 1;
886
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800887 if (!first || first == -1) {
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700888 if (hostapd_mac_comp_empty(conf->bssid) == 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700889 /* Allocate the next available BSSID. */
890 do {
891 inc_byte_array(hapd->own_addr, ETH_ALEN);
892 } while (mac_in_conf(hapd->iconf, hapd->own_addr));
893 } else {
894 /* Allocate the configured BSSID. */
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700895 os_memcpy(hapd->own_addr, conf->bssid, ETH_ALEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700896
897 if (hostapd_mac_comp(hapd->own_addr,
898 hapd->iface->bss[0]->own_addr) ==
899 0) {
900 wpa_printf(MSG_ERROR, "BSS '%s' may not have "
901 "BSSID set to the MAC address of "
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700902 "the radio", conf->iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700903 return -1;
904 }
905 }
906
Dmitry Shmidt54605472013-11-08 11:10:19 -0800907 hapd->interface_added = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700908 if (hostapd_if_add(hapd->iface->bss[0], WPA_IF_AP_BSS,
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700909 conf->iface, hapd->own_addr, hapd,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700910 &hapd->drv_priv, force_ifname, if_addr,
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700911 conf->bridge[0] ? conf->bridge : NULL,
912 first == -1)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700913 wpa_printf(MSG_ERROR, "Failed to add BSS (BSSID="
914 MACSTR ")", MAC2STR(hapd->own_addr));
Dmitry Shmidt3cf6f792013-12-18 13:12:19 -0800915 hapd->interface_added = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700916 return -1;
917 }
918 }
919
920 if (conf->wmm_enabled < 0)
921 conf->wmm_enabled = hapd->iconf->ieee80211n;
922
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800923#ifdef CONFIG_MESH
924 if (hapd->iface->mconf == NULL)
925 flush_old_stations = 0;
926#endif /* CONFIG_MESH */
927
928 if (flush_old_stations)
929 hostapd_flush_old_stations(hapd,
930 WLAN_REASON_PREV_AUTH_NOT_VALID);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700931 hostapd_set_privacy(hapd, 0);
932
933 hostapd_broadcast_wep_clear(hapd);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700934 if (hostapd_setup_encryption(conf->iface, hapd))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700935 return -1;
936
937 /*
938 * Fetch the SSID from the system and use it or,
939 * if one was specified in the config file, verify they
940 * match.
941 */
942 ssid_len = hostapd_get_ssid(hapd, ssid, sizeof(ssid));
943 if (ssid_len < 0) {
944 wpa_printf(MSG_ERROR, "Could not read SSID from system");
945 return -1;
946 }
947 if (conf->ssid.ssid_set) {
948 /*
949 * If SSID is specified in the config file and it differs
950 * from what is being used then force installation of the
951 * new SSID.
952 */
953 set_ssid = (conf->ssid.ssid_len != (size_t) ssid_len ||
954 os_memcmp(conf->ssid.ssid, ssid, ssid_len) != 0);
955 } else {
956 /*
957 * No SSID in the config file; just use the one we got
958 * from the system.
959 */
960 set_ssid = 0;
961 conf->ssid.ssid_len = ssid_len;
962 os_memcpy(conf->ssid.ssid, ssid, conf->ssid.ssid_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700963 }
964
965 if (!hostapd_drv_none(hapd)) {
966 wpa_printf(MSG_ERROR, "Using interface %s with hwaddr " MACSTR
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700967 " and ssid \"%s\"",
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700968 conf->iface, MAC2STR(hapd->own_addr),
969 wpa_ssid_txt(conf->ssid.ssid, conf->ssid.ssid_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700970 }
971
972 if (hostapd_setup_wpa_psk(conf)) {
973 wpa_printf(MSG_ERROR, "WPA-PSK setup failed.");
974 return -1;
975 }
976
977 /* Set SSID for the kernel driver (to be used in beacon and probe
978 * response frames) */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700979 if (set_ssid && hostapd_set_ssid(hapd, conf->ssid.ssid,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700980 conf->ssid.ssid_len)) {
981 wpa_printf(MSG_ERROR, "Could not set SSID for kernel driver");
982 return -1;
983 }
984
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700985 if (wpa_debug_level <= MSG_MSGDUMP)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700986 conf->radius->msg_dumps = 1;
987#ifndef CONFIG_NO_RADIUS
988 hapd->radius = radius_client_init(hapd, conf->radius);
989 if (hapd->radius == NULL) {
990 wpa_printf(MSG_ERROR, "RADIUS client initialization failed.");
991 return -1;
992 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700993
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700994 if (conf->radius_das_port) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700995 struct radius_das_conf das_conf;
996 os_memset(&das_conf, 0, sizeof(das_conf));
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700997 das_conf.port = conf->radius_das_port;
998 das_conf.shared_secret = conf->radius_das_shared_secret;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700999 das_conf.shared_secret_len =
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001000 conf->radius_das_shared_secret_len;
1001 das_conf.client_addr = &conf->radius_das_client_addr;
1002 das_conf.time_window = conf->radius_das_time_window;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001003 das_conf.require_event_timestamp =
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001004 conf->radius_das_require_event_timestamp;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001005 das_conf.ctx = hapd;
1006 das_conf.disconnect = hostapd_das_disconnect;
1007 hapd->radius_das = radius_das_init(&das_conf);
1008 if (hapd->radius_das == NULL) {
1009 wpa_printf(MSG_ERROR, "RADIUS DAS initialization "
1010 "failed.");
1011 return -1;
1012 }
1013 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001014#endif /* CONFIG_NO_RADIUS */
1015
1016 if (hostapd_acl_init(hapd)) {
1017 wpa_printf(MSG_ERROR, "ACL initialization failed.");
1018 return -1;
1019 }
1020 if (hostapd_init_wps(hapd, conf))
1021 return -1;
1022
1023 if (authsrv_init(hapd) < 0)
1024 return -1;
1025
1026 if (ieee802_1x_init(hapd)) {
1027 wpa_printf(MSG_ERROR, "IEEE 802.1X initialization failed.");
1028 return -1;
1029 }
1030
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001031 if ((conf->wpa || conf->osen) && hostapd_setup_wpa(hapd))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001032 return -1;
1033
1034 if (accounting_init(hapd)) {
1035 wpa_printf(MSG_ERROR, "Accounting initialization failed.");
1036 return -1;
1037 }
1038
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001039 if (conf->ieee802_11f &&
1040 (hapd->iapp = iapp_init(hapd, conf->iapp_iface)) == NULL) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001041 wpa_printf(MSG_ERROR, "IEEE 802.11F (IAPP) initialization "
1042 "failed.");
1043 return -1;
1044 }
1045
Dmitry Shmidt04949592012-07-19 12:16:46 -07001046#ifdef CONFIG_INTERWORKING
1047 if (gas_serv_init(hapd)) {
1048 wpa_printf(MSG_ERROR, "GAS server initialization failed");
1049 return -1;
1050 }
Dmitry Shmidt04949592012-07-19 12:16:46 -07001051
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001052 if (conf->qos_map_set_len &&
1053 hostapd_drv_set_qos_map(hapd, conf->qos_map_set,
1054 conf->qos_map_set_len)) {
1055 wpa_printf(MSG_ERROR, "Failed to initialize QoS Map");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001056 return -1;
1057 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001058#endif /* CONFIG_INTERWORKING */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001059
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001060 if (conf->bss_load_update_period && bss_load_update_init(hapd)) {
1061 wpa_printf(MSG_ERROR, "BSS Load initialization failed");
1062 return -1;
1063 }
1064
1065 if (conf->proxy_arp) {
1066 if (x_snoop_init(hapd)) {
1067 wpa_printf(MSG_ERROR,
1068 "Generic snooping infrastructure initialization failed");
1069 return -1;
1070 }
1071
1072 if (dhcp_snoop_init(hapd)) {
1073 wpa_printf(MSG_ERROR,
1074 "DHCP snooping initialization failed");
1075 return -1;
1076 }
1077
1078 if (ndisc_snoop_init(hapd)) {
1079 wpa_printf(MSG_ERROR,
1080 "Neighbor Discovery snooping initialization failed");
1081 return -1;
1082 }
1083 }
1084
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001085 if (!hostapd_drv_none(hapd) && vlan_init(hapd)) {
1086 wpa_printf(MSG_ERROR, "VLAN initialization failed.");
1087 return -1;
1088 }
1089
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001090 if (!conf->start_disabled && ieee802_11_set_beacon(hapd) < 0)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001091 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001092
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001093 if (hapd->wpa_auth && wpa_init_keys(hapd->wpa_auth) < 0)
1094 return -1;
1095
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001096 if (hapd->driver && hapd->driver->set_operstate)
1097 hapd->driver->set_operstate(hapd->drv_priv, 1);
1098
1099 return 0;
1100}
1101
1102
1103static void hostapd_tx_queue_params(struct hostapd_iface *iface)
1104{
1105 struct hostapd_data *hapd = iface->bss[0];
1106 int i;
1107 struct hostapd_tx_queue_params *p;
1108
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001109#ifdef CONFIG_MESH
1110 if (iface->mconf == NULL)
1111 return;
1112#endif /* CONFIG_MESH */
1113
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001114 for (i = 0; i < NUM_TX_QUEUES; i++) {
1115 p = &iface->conf->tx_queue[i];
1116
1117 if (hostapd_set_tx_queue_params(hapd, i, p->aifs, p->cwmin,
1118 p->cwmax, p->burst)) {
1119 wpa_printf(MSG_DEBUG, "Failed to set TX queue "
1120 "parameters for queue %d.", i);
1121 /* Continue anyway */
1122 }
1123 }
1124}
1125
1126
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07001127static int hostapd_set_acl_list(struct hostapd_data *hapd,
1128 struct mac_acl_entry *mac_acl,
1129 int n_entries, u8 accept_acl)
1130{
1131 struct hostapd_acl_params *acl_params;
1132 int i, err;
1133
1134 acl_params = os_zalloc(sizeof(*acl_params) +
1135 (n_entries * sizeof(acl_params->mac_acl[0])));
1136 if (!acl_params)
1137 return -ENOMEM;
1138
1139 for (i = 0; i < n_entries; i++)
1140 os_memcpy(acl_params->mac_acl[i].addr, mac_acl[i].addr,
1141 ETH_ALEN);
1142
1143 acl_params->acl_policy = accept_acl;
1144 acl_params->num_mac_acl = n_entries;
1145
1146 err = hostapd_drv_set_acl(hapd, acl_params);
1147
1148 os_free(acl_params);
1149
1150 return err;
1151}
1152
1153
1154static void hostapd_set_acl(struct hostapd_data *hapd)
1155{
1156 struct hostapd_config *conf = hapd->iconf;
1157 int err;
1158 u8 accept_acl;
1159
1160 if (hapd->iface->drv_max_acl_mac_addrs == 0)
1161 return;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07001162
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001163 if (conf->bss[0]->macaddr_acl == DENY_UNLESS_ACCEPTED) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07001164 accept_acl = 1;
1165 err = hostapd_set_acl_list(hapd, conf->bss[0]->accept_mac,
1166 conf->bss[0]->num_accept_mac,
1167 accept_acl);
1168 if (err) {
1169 wpa_printf(MSG_DEBUG, "Failed to set accept acl");
1170 return;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07001171 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001172 } else if (conf->bss[0]->macaddr_acl == ACCEPT_UNLESS_DENIED) {
Dmitry Shmidt43cb5782014-06-16 16:23:22 -07001173 accept_acl = 0;
1174 err = hostapd_set_acl_list(hapd, conf->bss[0]->deny_mac,
1175 conf->bss[0]->num_deny_mac,
1176 accept_acl);
1177 if (err) {
1178 wpa_printf(MSG_DEBUG, "Failed to set deny acl");
1179 return;
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07001180 }
1181 }
1182}
1183
1184
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001185static int start_ctrl_iface_bss(struct hostapd_data *hapd)
1186{
1187 if (!hapd->iface->interfaces ||
1188 !hapd->iface->interfaces->ctrl_iface_init)
1189 return 0;
1190
1191 if (hapd->iface->interfaces->ctrl_iface_init(hapd)) {
1192 wpa_printf(MSG_ERROR,
1193 "Failed to setup control interface for %s",
1194 hapd->conf->iface);
1195 return -1;
1196 }
1197
1198 return 0;
1199}
1200
1201
1202static int start_ctrl_iface(struct hostapd_iface *iface)
1203{
1204 size_t i;
1205
1206 if (!iface->interfaces || !iface->interfaces->ctrl_iface_init)
1207 return 0;
1208
1209 for (i = 0; i < iface->num_bss; i++) {
1210 struct hostapd_data *hapd = iface->bss[i];
1211 if (iface->interfaces->ctrl_iface_init(hapd)) {
1212 wpa_printf(MSG_ERROR,
1213 "Failed to setup control interface for %s",
1214 hapd->conf->iface);
1215 return -1;
1216 }
1217 }
1218
1219 return 0;
1220}
1221
1222
1223static void channel_list_update_timeout(void *eloop_ctx, void *timeout_ctx)
1224{
1225 struct hostapd_iface *iface = eloop_ctx;
1226
1227 if (!iface->wait_channel_update) {
1228 wpa_printf(MSG_INFO, "Channel list update timeout, but interface was not waiting for it");
1229 return;
1230 }
1231
1232 /*
1233 * It is possible that the existing channel list is acceptable, so try
1234 * to proceed.
1235 */
1236 wpa_printf(MSG_DEBUG, "Channel list update timeout - try to continue anyway");
1237 setup_interface2(iface);
1238}
1239
1240
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001241void hostapd_channel_list_updated(struct hostapd_iface *iface, int initiator)
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001242{
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001243 if (!iface->wait_channel_update || initiator != REGDOM_SET_BY_USER)
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001244 return;
1245
1246 wpa_printf(MSG_DEBUG, "Channel list updated - continue setup");
1247 eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
1248 setup_interface2(iface);
1249}
1250
1251
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001252static int setup_interface(struct hostapd_iface *iface)
1253{
1254 struct hostapd_data *hapd = iface->bss[0];
1255 size_t i;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001256
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001257 /*
1258 * It is possible that setup_interface() is called after the interface
1259 * was disabled etc., in which case driver_ap_teardown is possibly set
1260 * to 1. Clear it here so any other key/station deletion, which is not
1261 * part of a teardown flow, would also call the relevant driver
1262 * callbacks.
1263 */
1264 iface->driver_ap_teardown = 0;
1265
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001266 if (!iface->phy[0]) {
1267 const char *phy = hostapd_drv_get_radio_name(hapd);
1268 if (phy) {
1269 wpa_printf(MSG_DEBUG, "phy: %s", phy);
1270 os_strlcpy(iface->phy, phy, sizeof(iface->phy));
1271 }
1272 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001273
1274 /*
1275 * Make sure that all BSSes get configured with a pointer to the same
1276 * driver interface.
1277 */
1278 for (i = 1; i < iface->num_bss; i++) {
1279 iface->bss[i]->driver = hapd->driver;
1280 iface->bss[i]->drv_priv = hapd->drv_priv;
1281 }
1282
1283 if (hostapd_validate_bssid_configuration(iface))
1284 return -1;
1285
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001286 /*
1287 * Initialize control interfaces early to allow external monitoring of
1288 * channel setup operations that may take considerable amount of time
1289 * especially for DFS cases.
1290 */
1291 if (start_ctrl_iface(iface))
1292 return -1;
1293
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001294 if (hapd->iconf->country[0] && hapd->iconf->country[1]) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001295 char country[4], previous_country[4];
1296
1297 hostapd_set_state(iface, HAPD_IFACE_COUNTRY_UPDATE);
1298 if (hostapd_get_country(hapd, previous_country) < 0)
1299 previous_country[0] = '\0';
1300
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001301 os_memcpy(country, hapd->iconf->country, 3);
1302 country[3] = '\0';
1303 if (hostapd_set_country(hapd, country) < 0) {
1304 wpa_printf(MSG_ERROR, "Failed to set country code");
1305 return -1;
1306 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001307
1308 wpa_printf(MSG_DEBUG, "Previous country code %s, new country code %s",
1309 previous_country, country);
1310
1311 if (os_strncmp(previous_country, country, 2) != 0) {
1312 wpa_printf(MSG_DEBUG, "Continue interface setup after channel list update");
1313 iface->wait_channel_update = 1;
Dmitry Shmidt97672262014-02-03 13:02:54 -08001314 eloop_register_timeout(5, 0,
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001315 channel_list_update_timeout,
1316 iface, NULL);
1317 return 0;
1318 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001319 }
1320
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001321 return setup_interface2(iface);
1322}
1323
1324
1325static int setup_interface2(struct hostapd_iface *iface)
1326{
1327 iface->wait_channel_update = 0;
1328
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001329 if (hostapd_get_hw_features(iface)) {
1330 /* Not all drivers support this yet, so continue without hw
1331 * feature data. */
1332 } else {
1333 int ret = hostapd_select_hw_mode(iface);
1334 if (ret < 0) {
1335 wpa_printf(MSG_ERROR, "Could not select hw_mode and "
1336 "channel. (%d)", ret);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001337 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001338 }
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001339 if (ret == 1) {
1340 wpa_printf(MSG_DEBUG, "Interface initialization will be completed in a callback (ACS)");
1341 return 0;
1342 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001343 ret = hostapd_check_ht_capab(iface);
1344 if (ret < 0)
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001345 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001346 if (ret == 1) {
1347 wpa_printf(MSG_DEBUG, "Interface initialization will "
1348 "be completed in a callback");
1349 return 0;
1350 }
Dmitry Shmidt051af732013-10-22 13:52:46 -07001351
1352 if (iface->conf->ieee80211h)
1353 wpa_printf(MSG_DEBUG, "DFS support is enabled");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001354 }
1355 return hostapd_setup_interface_complete(iface, 0);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001356
1357fail:
1358 hostapd_set_state(iface, HAPD_IFACE_DISABLED);
1359 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
1360 if (iface->interfaces && iface->interfaces->terminate_on_error)
1361 eloop_terminate();
1362 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001363}
1364
1365
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001366/**
1367 * hostapd_setup_interface_complete - Complete interface setup
1368 *
1369 * This function is called when previous steps in the interface setup has been
1370 * completed. This can also start operations, e.g., DFS, that will require
1371 * additional processing before interface is ready to be enabled. Such
1372 * operations will call this function from eloop callbacks when finished.
1373 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001374int hostapd_setup_interface_complete(struct hostapd_iface *iface, int err)
1375{
1376 struct hostapd_data *hapd = iface->bss[0];
1377 size_t j;
1378 u8 *prev_addr;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001379 int delay_apply_cfg = 0;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001380 int res_dfs_offload = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001381
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001382 if (err)
1383 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001384
1385 wpa_printf(MSG_DEBUG, "Completing interface initialization");
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001386 if (iface->conf->channel) {
Dmitry Shmidt051af732013-10-22 13:52:46 -07001387#ifdef NEED_AP_MLME
1388 int res;
1389#endif /* NEED_AP_MLME */
1390
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001391 iface->freq = hostapd_hw_get_freq(hapd, iface->conf->channel);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001392 wpa_printf(MSG_DEBUG, "Mode: %s Channel: %d "
1393 "Frequency: %d MHz",
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001394 hostapd_hw_mode_txt(iface->conf->hw_mode),
1395 iface->conf->channel, iface->freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001396
Dmitry Shmidt051af732013-10-22 13:52:46 -07001397#ifdef NEED_AP_MLME
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001398 /* Handle DFS only if it is not offloaded to the driver */
1399 if (!(iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD)) {
1400 /* Check DFS */
1401 res = hostapd_handle_dfs(iface);
1402 if (res <= 0) {
1403 if (res < 0)
1404 goto fail;
1405 return res;
1406 }
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001407 } else {
1408 /* If DFS is offloaded to the driver */
1409 res_dfs_offload = hostapd_handle_dfs_offload(iface);
1410 if (res_dfs_offload <= 0) {
1411 if (res_dfs_offload < 0)
1412 goto fail;
1413 } else {
1414 wpa_printf(MSG_DEBUG,
1415 "Proceed with AP/channel setup");
1416 /*
1417 * If this is a DFS channel, move to completing
1418 * AP setup.
1419 */
1420 if (res_dfs_offload == 1)
1421 goto dfs_offload;
1422 /* Otherwise fall through. */
1423 }
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001424 }
Dmitry Shmidt051af732013-10-22 13:52:46 -07001425#endif /* NEED_AP_MLME */
1426
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001427#ifdef CONFIG_MESH
1428 if (iface->mconf != NULL) {
1429 wpa_printf(MSG_DEBUG,
1430 "%s: Mesh configuration will be applied while joining the mesh network",
1431 iface->bss[0]->conf->iface);
1432 delay_apply_cfg = 1;
1433 }
1434#endif /* CONFIG_MESH */
1435
1436 if (!delay_apply_cfg &&
1437 hostapd_set_freq(hapd, hapd->iconf->hw_mode, iface->freq,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001438 hapd->iconf->channel,
1439 hapd->iconf->ieee80211n,
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001440 hapd->iconf->ieee80211ac,
1441 hapd->iconf->secondary_channel,
1442 hapd->iconf->vht_oper_chwidth,
1443 hapd->iconf->vht_oper_centr_freq_seg0_idx,
1444 hapd->iconf->vht_oper_centr_freq_seg1_idx)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001445 wpa_printf(MSG_ERROR, "Could not set channel for "
1446 "kernel driver");
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001447 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001448 }
1449 }
1450
1451 if (iface->current_mode) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001452 if (hostapd_prepare_rates(iface, iface->current_mode)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001453 wpa_printf(MSG_ERROR, "Failed to prepare rates "
1454 "table.");
1455 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
1456 HOSTAPD_LEVEL_WARNING,
1457 "Failed to prepare rates table.");
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001458 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001459 }
1460 }
1461
1462 if (hapd->iconf->rts_threshold > -1 &&
1463 hostapd_set_rts(hapd, hapd->iconf->rts_threshold)) {
1464 wpa_printf(MSG_ERROR, "Could not set RTS threshold for "
1465 "kernel driver");
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001466 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001467 }
1468
1469 if (hapd->iconf->fragm_threshold > -1 &&
1470 hostapd_set_frag(hapd, hapd->iconf->fragm_threshold)) {
1471 wpa_printf(MSG_ERROR, "Could not set fragmentation threshold "
1472 "for kernel driver");
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001473 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001474 }
1475
1476 prev_addr = hapd->own_addr;
1477
1478 for (j = 0; j < iface->num_bss; j++) {
1479 hapd = iface->bss[j];
1480 if (j)
1481 os_memcpy(hapd->own_addr, prev_addr, ETH_ALEN);
Dmitry Shmidt71757432014-06-02 13:50:35 -07001482 if (hostapd_setup_bss(hapd, j == 0)) {
1483 do {
1484 hapd = iface->bss[j];
1485 hostapd_bss_deinit_no_free(hapd);
1486 hostapd_free_hapd_data(hapd);
1487 } while (j-- > 0);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001488 goto fail;
Dmitry Shmidt71757432014-06-02 13:50:35 -07001489 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001490 if (hostapd_mac_comp_empty(hapd->conf->bssid) == 0)
1491 prev_addr = hapd->own_addr;
1492 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001493 hapd = iface->bss[0];
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001494
1495 hostapd_tx_queue_params(iface);
1496
1497 ap_list_init(iface);
1498
Dmitry Shmidt8bae4132013-06-06 11:25:10 -07001499 hostapd_set_acl(hapd);
1500
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001501 if (hostapd_driver_commit(hapd) < 0) {
1502 wpa_printf(MSG_ERROR, "%s: Failed to commit driver "
1503 "configuration", __func__);
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001504 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001505 }
1506
Jouni Malinen87fd2792011-05-16 18:35:42 +03001507 /*
1508 * WPS UPnP module can be initialized only when the "upnp_iface" is up.
1509 * If "interface" and "upnp_iface" are the same (e.g., non-bridge
1510 * mode), the interface is up only after driver_commit, so initialize
1511 * WPS after driver_commit.
1512 */
1513 for (j = 0; j < iface->num_bss; j++) {
1514 if (hostapd_init_wps_complete(iface->bss[j]))
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001515 goto fail;
Jouni Malinen87fd2792011-05-16 18:35:42 +03001516 }
1517
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001518 if ((iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) &&
1519 !res_dfs_offload) {
1520 /*
1521 * If freq is DFS, and DFS is offloaded to the driver, then wait
1522 * for CAC to complete.
1523 */
1524 wpa_printf(MSG_DEBUG, "%s: Wait for CAC to complete", __func__);
1525 return res_dfs_offload;
1526 }
1527
1528#ifdef NEED_AP_MLME
1529dfs_offload:
1530#endif /* NEED_AP_MLME */
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001531 hostapd_set_state(iface, HAPD_IFACE_ENABLED);
1532 wpa_msg(iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_ENABLED);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001533 if (hapd->setup_complete_cb)
1534 hapd->setup_complete_cb(hapd->setup_complete_cb_ctx);
1535
1536 wpa_printf(MSG_DEBUG, "%s: Setup of interface done.",
1537 iface->bss[0]->conf->iface);
Dmitry Shmidtb96dad42013-11-05 10:07:29 -08001538 if (iface->interfaces && iface->interfaces->terminate_on_error > 0)
1539 iface->interfaces->terminate_on_error--;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001540
1541 return 0;
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001542
1543fail:
1544 wpa_printf(MSG_ERROR, "Interface initialization failed");
1545 hostapd_set_state(iface, HAPD_IFACE_DISABLED);
1546 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
1547 if (iface->interfaces && iface->interfaces->terminate_on_error)
1548 eloop_terminate();
1549 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001550}
1551
1552
1553/**
1554 * hostapd_setup_interface - Setup of an interface
1555 * @iface: Pointer to interface data.
1556 * Returns: 0 on success, -1 on failure
1557 *
1558 * Initializes the driver interface, validates the configuration,
1559 * and sets driver parameters based on the configuration.
1560 * Flushes old stations, sets the channel, encryption,
1561 * beacons, and WDS links based on the configuration.
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001562 *
1563 * If interface setup requires more time, e.g., to perform HT co-ex scans, ACS,
1564 * or DFS operations, this function returns 0 before such operations have been
1565 * completed. The pending operations are registered into eloop and will be
1566 * completed from eloop callbacks. Those callbacks end up calling
1567 * hostapd_setup_interface_complete() once setup has been completed.
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001568 */
1569int hostapd_setup_interface(struct hostapd_iface *iface)
1570{
1571 int ret;
1572
1573 ret = setup_interface(iface);
1574 if (ret) {
1575 wpa_printf(MSG_ERROR, "%s: Unable to setup interface.",
1576 iface->bss[0]->conf->iface);
1577 return -1;
1578 }
1579
1580 return 0;
1581}
1582
1583
1584/**
1585 * hostapd_alloc_bss_data - Allocate and initialize per-BSS data
1586 * @hapd_iface: Pointer to interface data
1587 * @conf: Pointer to per-interface configuration
1588 * @bss: Pointer to per-BSS configuration for this BSS
1589 * Returns: Pointer to allocated BSS data
1590 *
1591 * This function is used to allocate per-BSS data structure. This data will be
1592 * freed after hostapd_cleanup() is called for it during interface
1593 * deinitialization.
1594 */
1595struct hostapd_data *
1596hostapd_alloc_bss_data(struct hostapd_iface *hapd_iface,
1597 struct hostapd_config *conf,
1598 struct hostapd_bss_config *bss)
1599{
1600 struct hostapd_data *hapd;
1601
1602 hapd = os_zalloc(sizeof(*hapd));
1603 if (hapd == NULL)
1604 return NULL;
1605
1606 hapd->new_assoc_sta_cb = hostapd_new_assoc_sta;
1607 hapd->iconf = conf;
1608 hapd->conf = bss;
1609 hapd->iface = hapd_iface;
1610 hapd->driver = hapd->iconf->driver;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001611 hapd->ctrl_sock = -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001612
1613 return hapd;
1614}
1615
1616
Dmitry Shmidt54605472013-11-08 11:10:19 -08001617static void hostapd_bss_deinit(struct hostapd_data *hapd)
1618{
1619 wpa_printf(MSG_DEBUG, "%s: deinit bss %s", __func__,
1620 hapd->conf->iface);
Dmitry Shmidt71757432014-06-02 13:50:35 -07001621 hostapd_bss_deinit_no_free(hapd);
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07001622 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
Dmitry Shmidt54605472013-11-08 11:10:19 -08001623 hostapd_cleanup(hapd);
1624}
1625
1626
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001627void hostapd_interface_deinit(struct hostapd_iface *iface)
1628{
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001629 int j;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001630
Dmitry Shmidt54605472013-11-08 11:10:19 -08001631 wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001632 if (iface == NULL)
1633 return;
1634
Dmitry Shmidtf73259c2015-03-17 11:00:54 -07001635 hostapd_set_state(iface, HAPD_IFACE_DISABLED);
1636
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001637#ifdef CONFIG_IEEE80211N
1638#ifdef NEED_AP_MLME
1639 hostapd_stop_setup_timers(iface);
1640 eloop_cancel_timeout(ap_ht2040_timeout, iface, NULL);
1641#endif /* NEED_AP_MLME */
1642#endif /* CONFIG_IEEE80211N */
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001643 eloop_cancel_timeout(channel_list_update_timeout, iface, NULL);
1644 iface->wait_channel_update = 0;
1645
Dmitry Shmidt54605472013-11-08 11:10:19 -08001646 for (j = iface->num_bss - 1; j >= 0; j--)
1647 hostapd_bss_deinit(iface->bss[j]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001648}
1649
1650
1651void hostapd_interface_free(struct hostapd_iface *iface)
1652{
1653 size_t j;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001654 wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
1655 for (j = 0; j < iface->num_bss; j++) {
1656 wpa_printf(MSG_DEBUG, "%s: free hapd %p",
1657 __func__, iface->bss[j]);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001658 os_free(iface->bss[j]);
Dmitry Shmidt54605472013-11-08 11:10:19 -08001659 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001660 hostapd_cleanup_iface(iface);
1661}
1662
1663
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001664/**
1665 * hostapd_init - Allocate and initialize per-interface data
1666 * @config_file: Path to the configuration file
1667 * Returns: Pointer to the allocated interface data or %NULL on failure
1668 *
1669 * This function is used to allocate main data structures for per-interface
1670 * data. The allocated data buffer will be freed by calling
1671 * hostapd_cleanup_iface().
1672 */
1673struct hostapd_iface * hostapd_init(struct hapd_interfaces *interfaces,
1674 const char *config_file)
1675{
1676 struct hostapd_iface *hapd_iface = NULL;
1677 struct hostapd_config *conf = NULL;
1678 struct hostapd_data *hapd;
1679 size_t i;
1680
1681 hapd_iface = os_zalloc(sizeof(*hapd_iface));
1682 if (hapd_iface == NULL)
1683 goto fail;
1684
1685 hapd_iface->config_fname = os_strdup(config_file);
1686 if (hapd_iface->config_fname == NULL)
1687 goto fail;
1688
1689 conf = interfaces->config_read_cb(hapd_iface->config_fname);
1690 if (conf == NULL)
1691 goto fail;
1692 hapd_iface->conf = conf;
1693
1694 hapd_iface->num_bss = conf->num_bss;
1695 hapd_iface->bss = os_calloc(conf->num_bss,
1696 sizeof(struct hostapd_data *));
1697 if (hapd_iface->bss == NULL)
1698 goto fail;
1699
1700 for (i = 0; i < conf->num_bss; i++) {
1701 hapd = hapd_iface->bss[i] =
1702 hostapd_alloc_bss_data(hapd_iface, conf,
1703 conf->bss[i]);
1704 if (hapd == NULL)
1705 goto fail;
1706 hapd->msg_ctx = hapd;
1707 }
1708
1709 return hapd_iface;
1710
1711fail:
1712 wpa_printf(MSG_ERROR, "Failed to set up interface with %s",
1713 config_file);
1714 if (conf)
1715 hostapd_config_free(conf);
1716 if (hapd_iface) {
1717 os_free(hapd_iface->config_fname);
1718 os_free(hapd_iface->bss);
Dmitry Shmidt54605472013-11-08 11:10:19 -08001719 wpa_printf(MSG_DEBUG, "%s: free iface %p",
1720 __func__, hapd_iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001721 os_free(hapd_iface);
1722 }
1723 return NULL;
1724}
1725
1726
1727static int ifname_in_use(struct hapd_interfaces *interfaces, const char *ifname)
1728{
1729 size_t i, j;
1730
1731 for (i = 0; i < interfaces->count; i++) {
1732 struct hostapd_iface *iface = interfaces->iface[i];
1733 for (j = 0; j < iface->num_bss; j++) {
1734 struct hostapd_data *hapd = iface->bss[j];
1735 if (os_strcmp(ifname, hapd->conf->iface) == 0)
1736 return 1;
1737 }
1738 }
1739
1740 return 0;
1741}
1742
1743
1744/**
1745 * hostapd_interface_init_bss - Read configuration file and init BSS data
1746 *
1747 * This function is used to parse configuration file for a BSS. This BSS is
1748 * added to an existing interface sharing the same radio (if any) or a new
1749 * interface is created if this is the first interface on a radio. This
1750 * allocate memory for the BSS. No actual driver operations are started.
1751 *
1752 * This is similar to hostapd_interface_init(), but for a case where the
1753 * configuration is used to add a single BSS instead of all BSSes for a radio.
1754 */
1755struct hostapd_iface *
1756hostapd_interface_init_bss(struct hapd_interfaces *interfaces, const char *phy,
1757 const char *config_fname, int debug)
1758{
1759 struct hostapd_iface *new_iface = NULL, *iface = NULL;
1760 struct hostapd_data *hapd;
1761 int k;
1762 size_t i, bss_idx;
1763
1764 if (!phy || !*phy)
1765 return NULL;
1766
1767 for (i = 0; i < interfaces->count; i++) {
1768 if (os_strcmp(interfaces->iface[i]->phy, phy) == 0) {
1769 iface = interfaces->iface[i];
1770 break;
1771 }
1772 }
1773
1774 wpa_printf(MSG_INFO, "Configuration file: %s (phy %s)%s",
1775 config_fname, phy, iface ? "" : " --> new PHY");
1776 if (iface) {
1777 struct hostapd_config *conf;
1778 struct hostapd_bss_config **tmp_conf;
1779 struct hostapd_data **tmp_bss;
1780 struct hostapd_bss_config *bss;
1781 const char *ifname;
1782
1783 /* Add new BSS to existing iface */
1784 conf = interfaces->config_read_cb(config_fname);
1785 if (conf == NULL)
1786 return NULL;
1787 if (conf->num_bss > 1) {
1788 wpa_printf(MSG_ERROR, "Multiple BSSes specified in BSS-config");
1789 hostapd_config_free(conf);
1790 return NULL;
1791 }
1792
1793 ifname = conf->bss[0]->iface;
1794 if (ifname[0] != '\0' && ifname_in_use(interfaces, ifname)) {
1795 wpa_printf(MSG_ERROR,
1796 "Interface name %s already in use", ifname);
1797 hostapd_config_free(conf);
1798 return NULL;
1799 }
1800
1801 tmp_conf = os_realloc_array(
1802 iface->conf->bss, iface->conf->num_bss + 1,
1803 sizeof(struct hostapd_bss_config *));
1804 tmp_bss = os_realloc_array(iface->bss, iface->num_bss + 1,
1805 sizeof(struct hostapd_data *));
1806 if (tmp_bss)
1807 iface->bss = tmp_bss;
1808 if (tmp_conf) {
1809 iface->conf->bss = tmp_conf;
1810 iface->conf->last_bss = tmp_conf[0];
1811 }
1812 if (tmp_bss == NULL || tmp_conf == NULL) {
1813 hostapd_config_free(conf);
1814 return NULL;
1815 }
1816 bss = iface->conf->bss[iface->conf->num_bss] = conf->bss[0];
1817 iface->conf->num_bss++;
1818
1819 hapd = hostapd_alloc_bss_data(iface, iface->conf, bss);
1820 if (hapd == NULL) {
1821 iface->conf->num_bss--;
1822 hostapd_config_free(conf);
1823 return NULL;
1824 }
1825 iface->conf->last_bss = bss;
1826 iface->bss[iface->num_bss] = hapd;
1827 hapd->msg_ctx = hapd;
1828
1829 bss_idx = iface->num_bss++;
1830 conf->num_bss--;
1831 conf->bss[0] = NULL;
1832 hostapd_config_free(conf);
1833 } else {
1834 /* Add a new iface with the first BSS */
1835 new_iface = iface = hostapd_init(interfaces, config_fname);
1836 if (!iface)
1837 return NULL;
1838 os_strlcpy(iface->phy, phy, sizeof(iface->phy));
1839 iface->interfaces = interfaces;
1840 bss_idx = 0;
1841 }
1842
1843 for (k = 0; k < debug; k++) {
1844 if (iface->bss[bss_idx]->conf->logger_stdout_level > 0)
1845 iface->bss[bss_idx]->conf->logger_stdout_level--;
1846 }
1847
1848 if (iface->conf->bss[bss_idx]->iface[0] == '\0' &&
1849 !hostapd_drv_none(iface->bss[bss_idx])) {
1850 wpa_printf(MSG_ERROR, "Interface name not specified in %s",
1851 config_fname);
1852 if (new_iface)
1853 hostapd_interface_deinit_free(new_iface);
1854 return NULL;
1855 }
1856
1857 return iface;
1858}
1859
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001860
1861void hostapd_interface_deinit_free(struct hostapd_iface *iface)
1862{
1863 const struct wpa_driver_ops *driver;
1864 void *drv_priv;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001865
1866 wpa_printf(MSG_DEBUG, "%s(%p)", __func__, iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001867 if (iface == NULL)
1868 return;
Dmitry Shmidt54605472013-11-08 11:10:19 -08001869 wpa_printf(MSG_DEBUG, "%s: num_bss=%u conf->num_bss=%u",
1870 __func__, (unsigned int) iface->num_bss,
1871 (unsigned int) iface->conf->num_bss);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001872 driver = iface->bss[0]->driver;
1873 drv_priv = iface->bss[0]->drv_priv;
1874 hostapd_interface_deinit(iface);
Dmitry Shmidt54605472013-11-08 11:10:19 -08001875 wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
1876 __func__, driver, drv_priv);
Dmitry Shmidt71757432014-06-02 13:50:35 -07001877 if (driver && driver->hapd_deinit && drv_priv) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001878 driver->hapd_deinit(drv_priv);
Dmitry Shmidt71757432014-06-02 13:50:35 -07001879 iface->bss[0]->drv_priv = NULL;
1880 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001881 hostapd_interface_free(iface);
1882}
1883
1884
Dmitry Shmidt15907092014-03-25 10:42:57 -07001885static void hostapd_deinit_driver(const struct wpa_driver_ops *driver,
1886 void *drv_priv,
1887 struct hostapd_iface *hapd_iface)
1888{
1889 size_t j;
1890
1891 wpa_printf(MSG_DEBUG, "%s: driver=%p drv_priv=%p -> hapd_deinit",
1892 __func__, driver, drv_priv);
1893 if (driver && driver->hapd_deinit && drv_priv) {
1894 driver->hapd_deinit(drv_priv);
1895 for (j = 0; j < hapd_iface->num_bss; j++) {
1896 wpa_printf(MSG_DEBUG, "%s:bss[%d]->drv_priv=%p",
1897 __func__, (int) j,
1898 hapd_iface->bss[j]->drv_priv);
1899 if (hapd_iface->bss[j]->drv_priv == drv_priv)
1900 hapd_iface->bss[j]->drv_priv = NULL;
1901 }
1902 }
1903}
1904
1905
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001906int hostapd_enable_iface(struct hostapd_iface *hapd_iface)
1907{
Dmitry Shmidt71757432014-06-02 13:50:35 -07001908 size_t j;
1909
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001910 if (hapd_iface->bss[0]->drv_priv != NULL) {
1911 wpa_printf(MSG_ERROR, "Interface %s already enabled",
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001912 hapd_iface->conf->bss[0]->iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001913 return -1;
1914 }
1915
1916 wpa_printf(MSG_DEBUG, "Enable interface %s",
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001917 hapd_iface->conf->bss[0]->iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001918
Dmitry Shmidt71757432014-06-02 13:50:35 -07001919 for (j = 0; j < hapd_iface->num_bss; j++)
1920 hostapd_set_security_params(hapd_iface->conf->bss[j], 1);
Dmitry Shmidt344abd32014-01-14 13:17:00 -08001921 if (hostapd_config_check(hapd_iface->conf, 1) < 0) {
1922 wpa_printf(MSG_INFO, "Invalid configuration - cannot enable");
1923 return -1;
1924 }
1925
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001926 if (hapd_iface->interfaces == NULL ||
1927 hapd_iface->interfaces->driver_init == NULL ||
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001928 hapd_iface->interfaces->driver_init(hapd_iface))
1929 return -1;
1930
1931 if (hostapd_setup_interface(hapd_iface)) {
Dmitry Shmidt15907092014-03-25 10:42:57 -07001932 hostapd_deinit_driver(hapd_iface->bss[0]->driver,
1933 hapd_iface->bss[0]->drv_priv,
1934 hapd_iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001935 return -1;
1936 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001937
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001938 return 0;
1939}
1940
1941
1942int hostapd_reload_iface(struct hostapd_iface *hapd_iface)
1943{
1944 size_t j;
1945
1946 wpa_printf(MSG_DEBUG, "Reload interface %s",
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001947 hapd_iface->conf->bss[0]->iface);
1948 for (j = 0; j < hapd_iface->num_bss; j++)
Dmitry Shmidt71757432014-06-02 13:50:35 -07001949 hostapd_set_security_params(hapd_iface->conf->bss[j], 1);
Dmitry Shmidt344abd32014-01-14 13:17:00 -08001950 if (hostapd_config_check(hapd_iface->conf, 1) < 0) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001951 wpa_printf(MSG_ERROR, "Updated configuration is invalid");
1952 return -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001953 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001954 hostapd_clear_old(hapd_iface);
1955 for (j = 0; j < hapd_iface->num_bss; j++)
1956 hostapd_reload_bss(hapd_iface->bss[j]);
1957
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001958 return 0;
1959}
1960
1961
1962int hostapd_disable_iface(struct hostapd_iface *hapd_iface)
1963{
1964 size_t j;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001965 const struct wpa_driver_ops *driver;
1966 void *drv_priv;
1967
1968 if (hapd_iface == NULL)
1969 return -1;
Dmitry Shmidt71757432014-06-02 13:50:35 -07001970
1971 if (hapd_iface->bss[0]->drv_priv == NULL) {
1972 wpa_printf(MSG_INFO, "Interface %s already disabled",
1973 hapd_iface->conf->bss[0]->iface);
1974 return -1;
1975 }
1976
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001977 wpa_msg(hapd_iface->bss[0]->msg_ctx, MSG_INFO, AP_EVENT_DISABLED);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001978 driver = hapd_iface->bss[0]->driver;
1979 drv_priv = hapd_iface->bss[0]->drv_priv;
1980
Dmitry Shmidta38abf92014-03-06 13:38:44 -08001981 hapd_iface->driver_ap_teardown =
1982 !!(hapd_iface->drv_flags &
1983 WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
1984
1985 /* same as hostapd_interface_deinit without deinitializing ctrl-iface */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001986 for (j = 0; j < hapd_iface->num_bss; j++) {
1987 struct hostapd_data *hapd = hapd_iface->bss[j];
Dmitry Shmidt71757432014-06-02 13:50:35 -07001988 hostapd_bss_deinit_no_free(hapd);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001989 hostapd_free_hapd_data(hapd);
1990 }
1991
Dmitry Shmidt15907092014-03-25 10:42:57 -07001992 hostapd_deinit_driver(driver, drv_priv, hapd_iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001993
1994 /* From hostapd_cleanup_iface: These were initialized in
1995 * hostapd_setup_interface and hostapd_setup_interface_complete
1996 */
1997 hostapd_cleanup_iface_partial(hapd_iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001998
Dmitry Shmidt56052862013-10-04 10:23:25 -07001999 wpa_printf(MSG_DEBUG, "Interface %s disabled",
2000 hapd_iface->bss[0]->conf->iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002001 hostapd_set_state(hapd_iface, HAPD_IFACE_DISABLED);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002002 return 0;
2003}
2004
2005
2006static struct hostapd_iface *
2007hostapd_iface_alloc(struct hapd_interfaces *interfaces)
2008{
2009 struct hostapd_iface **iface, *hapd_iface;
2010
2011 iface = os_realloc_array(interfaces->iface, interfaces->count + 1,
2012 sizeof(struct hostapd_iface *));
2013 if (iface == NULL)
2014 return NULL;
2015 interfaces->iface = iface;
2016 hapd_iface = interfaces->iface[interfaces->count] =
2017 os_zalloc(sizeof(*hapd_iface));
2018 if (hapd_iface == NULL) {
2019 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
2020 "the interface", __func__);
2021 return NULL;
2022 }
2023 interfaces->count++;
2024 hapd_iface->interfaces = interfaces;
2025
2026 return hapd_iface;
2027}
2028
2029
2030static struct hostapd_config *
2031hostapd_config_alloc(struct hapd_interfaces *interfaces, const char *ifname,
2032 const char *ctrl_iface)
2033{
2034 struct hostapd_bss_config *bss;
2035 struct hostapd_config *conf;
2036
2037 /* Allocates memory for bss and conf */
2038 conf = hostapd_config_defaults();
2039 if (conf == NULL) {
2040 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory for "
2041 "configuration", __func__);
2042 return NULL;
2043 }
2044
2045 conf->driver = wpa_drivers[0];
2046 if (conf->driver == NULL) {
2047 wpa_printf(MSG_ERROR, "No driver wrappers registered!");
2048 hostapd_config_free(conf);
2049 return NULL;
2050 }
2051
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002052 bss = conf->last_bss = conf->bss[0];
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002053
2054 os_strlcpy(bss->iface, ifname, sizeof(bss->iface));
2055 bss->ctrl_interface = os_strdup(ctrl_iface);
2056 if (bss->ctrl_interface == NULL) {
2057 hostapd_config_free(conf);
2058 return NULL;
2059 }
2060
2061 /* Reading configuration file skipped, will be done in SET!
2062 * From reading the configuration till the end has to be done in
2063 * SET
2064 */
2065 return conf;
2066}
2067
2068
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002069static int hostapd_data_alloc(struct hostapd_iface *hapd_iface,
2070 struct hostapd_config *conf)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002071{
2072 size_t i;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002073 struct hostapd_data *hapd;
2074
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002075 hapd_iface->bss = os_calloc(conf->num_bss,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002076 sizeof(struct hostapd_data *));
2077 if (hapd_iface->bss == NULL)
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002078 return -1;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002079
2080 for (i = 0; i < conf->num_bss; i++) {
2081 hapd = hapd_iface->bss[i] =
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002082 hostapd_alloc_bss_data(hapd_iface, conf, conf->bss[i]);
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002083 if (hapd == NULL) {
2084 while (i > 0) {
2085 i--;
2086 os_free(hapd_iface->bss[i]);
2087 hapd_iface->bss[i] = NULL;
2088 }
2089 os_free(hapd_iface->bss);
2090 hapd_iface->bss = NULL;
2091 return -1;
2092 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002093 hapd->msg_ctx = hapd;
2094 }
2095
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002096 hapd_iface->conf = conf;
2097 hapd_iface->num_bss = conf->num_bss;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002098
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002099 return 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002100}
2101
2102
2103int hostapd_add_iface(struct hapd_interfaces *interfaces, char *buf)
2104{
2105 struct hostapd_config *conf = NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002106 struct hostapd_iface *hapd_iface = NULL, *new_iface = NULL;
2107 struct hostapd_data *hapd;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002108 char *ptr;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002109 size_t i, j;
2110 const char *conf_file = NULL, *phy_name = NULL;
2111
2112 if (os_strncmp(buf, "bss_config=", 11) == 0) {
2113 char *pos;
2114 phy_name = buf + 11;
2115 pos = os_strchr(phy_name, ':');
2116 if (!pos)
2117 return -1;
2118 *pos++ = '\0';
2119 conf_file = pos;
2120 if (!os_strlen(conf_file))
2121 return -1;
2122
2123 hapd_iface = hostapd_interface_init_bss(interfaces, phy_name,
2124 conf_file, 0);
2125 if (!hapd_iface)
2126 return -1;
2127 for (j = 0; j < interfaces->count; j++) {
2128 if (interfaces->iface[j] == hapd_iface)
2129 break;
2130 }
2131 if (j == interfaces->count) {
2132 struct hostapd_iface **tmp;
2133 tmp = os_realloc_array(interfaces->iface,
2134 interfaces->count + 1,
2135 sizeof(struct hostapd_iface *));
2136 if (!tmp) {
2137 hostapd_interface_deinit_free(hapd_iface);
2138 return -1;
2139 }
2140 interfaces->iface = tmp;
2141 interfaces->iface[interfaces->count++] = hapd_iface;
2142 new_iface = hapd_iface;
2143 }
2144
2145 if (new_iface) {
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002146 if (interfaces->driver_init(hapd_iface))
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002147 goto fail;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002148
2149 if (hostapd_setup_interface(hapd_iface)) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002150 hostapd_deinit_driver(
2151 hapd_iface->bss[0]->driver,
2152 hapd_iface->bss[0]->drv_priv,
2153 hapd_iface);
2154 goto fail;
2155 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002156 } else {
2157 /* Assign new BSS with bss[0]'s driver info */
2158 hapd = hapd_iface->bss[hapd_iface->num_bss - 1];
2159 hapd->driver = hapd_iface->bss[0]->driver;
2160 hapd->drv_priv = hapd_iface->bss[0]->drv_priv;
2161 os_memcpy(hapd->own_addr, hapd_iface->bss[0]->own_addr,
2162 ETH_ALEN);
2163
2164 if (start_ctrl_iface_bss(hapd) < 0 ||
Dmitry Shmidt54605472013-11-08 11:10:19 -08002165 (hapd_iface->state == HAPD_IFACE_ENABLED &&
2166 hostapd_setup_bss(hapd, -1))) {
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07002167 hostapd_cleanup(hapd);
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002168 hapd_iface->bss[hapd_iface->num_bss - 1] = NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002169 hapd_iface->conf->num_bss--;
2170 hapd_iface->num_bss--;
Dmitry Shmidt54605472013-11-08 11:10:19 -08002171 wpa_printf(MSG_DEBUG, "%s: free hapd %p %s",
2172 __func__, hapd, hapd->conf->iface);
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002173 hostapd_config_free_bss(hapd->conf);
2174 hapd->conf = NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002175 os_free(hapd);
2176 return -1;
2177 }
2178 }
2179 return 0;
2180 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002181
2182 ptr = os_strchr(buf, ' ');
2183 if (ptr == NULL)
2184 return -1;
2185 *ptr++ = '\0';
2186
Dmitry Shmidt56052862013-10-04 10:23:25 -07002187 if (os_strncmp(ptr, "config=", 7) == 0)
2188 conf_file = ptr + 7;
2189
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002190 for (i = 0; i < interfaces->count; i++) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002191 if (!os_strcmp(interfaces->iface[i]->conf->bss[0]->iface,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002192 buf)) {
2193 wpa_printf(MSG_INFO, "Cannot add interface - it "
2194 "already exists");
2195 return -1;
2196 }
2197 }
2198
2199 hapd_iface = hostapd_iface_alloc(interfaces);
2200 if (hapd_iface == NULL) {
2201 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
2202 "for interface", __func__);
2203 goto fail;
2204 }
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002205 new_iface = hapd_iface;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002206
Dmitry Shmidt56052862013-10-04 10:23:25 -07002207 if (conf_file && interfaces->config_read_cb) {
2208 conf = interfaces->config_read_cb(conf_file);
2209 if (conf && conf->bss)
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002210 os_strlcpy(conf->bss[0]->iface, buf,
2211 sizeof(conf->bss[0]->iface));
Dmitry Shmidt56052862013-10-04 10:23:25 -07002212 } else
2213 conf = hostapd_config_alloc(interfaces, buf, ptr);
2214 if (conf == NULL || conf->bss == NULL) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002215 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
2216 "for configuration", __func__);
2217 goto fail;
2218 }
2219
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002220 if (hostapd_data_alloc(hapd_iface, conf) < 0) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002221 wpa_printf(MSG_ERROR, "%s: Failed to allocate memory "
2222 "for hostapd", __func__);
2223 goto fail;
2224 }
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002225 conf = NULL;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002226
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002227 if (start_ctrl_iface(hapd_iface) < 0)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002228 goto fail;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002229
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002230 wpa_printf(MSG_INFO, "Add interface '%s'",
2231 hapd_iface->conf->bss[0]->iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002232
2233 return 0;
2234
2235fail:
2236 if (conf)
2237 hostapd_config_free(conf);
2238 if (hapd_iface) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002239 if (hapd_iface->bss) {
Dmitry Shmidt54605472013-11-08 11:10:19 -08002240 for (i = 0; i < hapd_iface->num_bss; i++) {
2241 hapd = hapd_iface->bss[i];
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002242 if (!hapd)
2243 continue;
2244 if (hapd_iface->interfaces &&
Dmitry Shmidt54605472013-11-08 11:10:19 -08002245 hapd_iface->interfaces->ctrl_iface_deinit)
2246 hapd_iface->interfaces->
2247 ctrl_iface_deinit(hapd);
2248 wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
2249 __func__, hapd_iface->bss[i],
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002250 hapd->conf->iface);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002251 hostapd_cleanup(hapd);
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -08002252 os_free(hapd);
2253 hapd_iface->bss[i] = NULL;
Dmitry Shmidt54605472013-11-08 11:10:19 -08002254 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002255 os_free(hapd_iface->bss);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002256 hapd_iface->bss = NULL;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002257 }
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002258 if (new_iface) {
2259 interfaces->count--;
2260 interfaces->iface[interfaces->count] = NULL;
2261 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002262 hostapd_cleanup_iface(hapd_iface);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002263 }
2264 return -1;
2265}
2266
2267
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002268static int hostapd_remove_bss(struct hostapd_iface *iface, unsigned int idx)
2269{
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002270 size_t i;
2271
Dmitry Shmidt54605472013-11-08 11:10:19 -08002272 wpa_printf(MSG_INFO, "Remove BSS '%s'", iface->conf->bss[idx]->iface);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002273
Dmitry Shmidt54605472013-11-08 11:10:19 -08002274 /* Remove hostapd_data only if it has already been initialized */
2275 if (idx < iface->num_bss) {
2276 struct hostapd_data *hapd = iface->bss[idx];
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002277
Dmitry Shmidt54605472013-11-08 11:10:19 -08002278 hostapd_bss_deinit(hapd);
2279 wpa_printf(MSG_DEBUG, "%s: free hapd %p (%s)",
2280 __func__, hapd, hapd->conf->iface);
2281 hostapd_config_free_bss(hapd->conf);
Dmitry Shmidtff787d52015-01-12 13:01:47 -08002282 hapd->conf = NULL;
Dmitry Shmidt54605472013-11-08 11:10:19 -08002283 os_free(hapd);
2284
2285 iface->num_bss--;
2286
2287 for (i = idx; i < iface->num_bss; i++)
2288 iface->bss[i] = iface->bss[i + 1];
2289 } else {
2290 hostapd_config_free_bss(iface->conf->bss[idx]);
2291 iface->conf->bss[idx] = NULL;
2292 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002293
2294 iface->conf->num_bss--;
Dmitry Shmidt54605472013-11-08 11:10:19 -08002295 for (i = idx; i < iface->conf->num_bss; i++)
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002296 iface->conf->bss[i] = iface->conf->bss[i + 1];
2297
2298 return 0;
2299}
2300
2301
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002302int hostapd_remove_iface(struct hapd_interfaces *interfaces, char *buf)
2303{
2304 struct hostapd_iface *hapd_iface;
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002305 size_t i, j, k = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002306
2307 for (i = 0; i < interfaces->count; i++) {
2308 hapd_iface = interfaces->iface[i];
2309 if (hapd_iface == NULL)
2310 return -1;
Dmitry Shmidt54605472013-11-08 11:10:19 -08002311 if (!os_strcmp(hapd_iface->conf->bss[0]->iface, buf)) {
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002312 wpa_printf(MSG_INFO, "Remove interface '%s'", buf);
Dmitry Shmidta38abf92014-03-06 13:38:44 -08002313 hapd_iface->driver_ap_teardown =
2314 !!(hapd_iface->drv_flags &
2315 WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
2316
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002317 hostapd_interface_deinit_free(hapd_iface);
2318 k = i;
2319 while (k < (interfaces->count - 1)) {
2320 interfaces->iface[k] =
2321 interfaces->iface[k + 1];
2322 k++;
2323 }
2324 interfaces->count--;
2325 return 0;
2326 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002327
2328 for (j = 0; j < hapd_iface->conf->num_bss; j++) {
Dmitry Shmidta38abf92014-03-06 13:38:44 -08002329 if (!os_strcmp(hapd_iface->conf->bss[j]->iface, buf)) {
2330 hapd_iface->driver_ap_teardown =
2331 !(hapd_iface->drv_flags &
2332 WPA_DRIVER_FLAGS_AP_TEARDOWN_SUPPORT);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002333 return hostapd_remove_bss(hapd_iface, j);
Dmitry Shmidta38abf92014-03-06 13:38:44 -08002334 }
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002335 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002336 }
2337 return -1;
2338}
2339
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07002340
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002341/**
2342 * hostapd_new_assoc_sta - Notify that a new station associated with the AP
2343 * @hapd: Pointer to BSS data
2344 * @sta: Pointer to the associated STA data
2345 * @reassoc: 1 to indicate this was a re-association; 0 = first association
2346 *
2347 * This function will be called whenever a station associates with the AP. It
2348 * can be called from ieee802_11.c for drivers that export MLME to hostapd and
2349 * from drv_callbacks.c based on driver events for drivers that take care of
2350 * management frames (IEEE 802.11 authentication and association) internally.
2351 */
2352void hostapd_new_assoc_sta(struct hostapd_data *hapd, struct sta_info *sta,
2353 int reassoc)
2354{
2355 if (hapd->tkip_countermeasures) {
2356 hostapd_drv_sta_deauth(hapd, sta->addr,
2357 WLAN_REASON_MICHAEL_MIC_FAILURE);
2358 return;
2359 }
2360
2361 hostapd_prune_associations(hapd, sta->addr);
2362
2363 /* IEEE 802.11F (IAPP) */
2364 if (hapd->conf->ieee802_11f)
2365 iapp_new_station(hapd->iapp, sta);
2366
2367#ifdef CONFIG_P2P
2368 if (sta->p2p_ie == NULL && !sta->no_p2p_set) {
2369 sta->no_p2p_set = 1;
2370 hapd->num_sta_no_p2p++;
2371 if (hapd->num_sta_no_p2p == 1)
2372 hostapd_p2p_non_p2p_sta_connected(hapd);
2373 }
2374#endif /* CONFIG_P2P */
2375
2376 /* Start accounting here, if IEEE 802.1X and WPA are not used.
2377 * IEEE 802.1X/WPA code will start accounting after the station has
2378 * been authorized. */
Dmitry Shmidt2ac5f602014-03-07 10:08:21 -08002379 if (!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen) {
2380 ap_sta_set_authorized(hapd, sta, 1);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08002381 os_get_reltime(&sta->connected_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002382 accounting_sta_start(hapd, sta);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08002383 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002384
2385 /* Start IEEE 802.1X authentication process for new stations */
2386 ieee802_1x_new_station(hapd, sta);
2387 if (reassoc) {
2388 if (sta->auth_alg != WLAN_AUTH_FT &&
2389 !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)))
2390 wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH);
2391 } else
2392 wpa_auth_sta_associated(hapd->wpa_auth, sta->wpa_sm);
Dmitry Shmidt04949592012-07-19 12:16:46 -07002393
Dmitry Shmidt01904cf2013-12-05 11:08:35 -08002394 if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)) {
2395 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
2396 "for " MACSTR " (%d seconds - ap_max_inactivity)",
2397 __func__, MAC2STR(sta->addr),
2398 hapd->conf->ap_max_inactivity);
2399 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
2400 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
2401 ap_handle_timer, hapd, sta);
2402 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002403}
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002404
2405
2406const char * hostapd_state_text(enum hostapd_iface_state s)
2407{
2408 switch (s) {
2409 case HAPD_IFACE_UNINITIALIZED:
2410 return "UNINITIALIZED";
2411 case HAPD_IFACE_DISABLED:
2412 return "DISABLED";
2413 case HAPD_IFACE_COUNTRY_UPDATE:
2414 return "COUNTRY_UPDATE";
2415 case HAPD_IFACE_ACS:
2416 return "ACS";
2417 case HAPD_IFACE_HT_SCAN:
2418 return "HT_SCAN";
2419 case HAPD_IFACE_DFS:
2420 return "DFS";
2421 case HAPD_IFACE_ENABLED:
2422 return "ENABLED";
2423 }
2424
2425 return "UNKNOWN";
2426}
2427
2428
2429void hostapd_set_state(struct hostapd_iface *iface, enum hostapd_iface_state s)
2430{
2431 wpa_printf(MSG_INFO, "%s: interface state %s->%s",
2432 iface->conf->bss[0]->iface, hostapd_state_text(iface->state),
2433 hostapd_state_text(s));
2434 iface->state = s;
2435}
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002436
2437
2438#ifdef NEED_AP_MLME
2439
2440static void free_beacon_data(struct beacon_data *beacon)
2441{
2442 os_free(beacon->head);
2443 beacon->head = NULL;
2444 os_free(beacon->tail);
2445 beacon->tail = NULL;
2446 os_free(beacon->probe_resp);
2447 beacon->probe_resp = NULL;
2448 os_free(beacon->beacon_ies);
2449 beacon->beacon_ies = NULL;
2450 os_free(beacon->proberesp_ies);
2451 beacon->proberesp_ies = NULL;
2452 os_free(beacon->assocresp_ies);
2453 beacon->assocresp_ies = NULL;
2454}
2455
2456
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002457static int hostapd_build_beacon_data(struct hostapd_data *hapd,
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002458 struct beacon_data *beacon)
2459{
2460 struct wpabuf *beacon_extra, *proberesp_extra, *assocresp_extra;
2461 struct wpa_driver_ap_params params;
2462 int ret;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002463
Dmitry Shmidt01904cf2013-12-05 11:08:35 -08002464 os_memset(beacon, 0, sizeof(*beacon));
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002465 ret = ieee802_11_build_ap_params(hapd, &params);
2466 if (ret < 0)
2467 return ret;
2468
2469 ret = hostapd_build_ap_extra_ies(hapd, &beacon_extra,
2470 &proberesp_extra,
2471 &assocresp_extra);
2472 if (ret)
2473 goto free_ap_params;
2474
2475 ret = -1;
2476 beacon->head = os_malloc(params.head_len);
2477 if (!beacon->head)
2478 goto free_ap_extra_ies;
2479
2480 os_memcpy(beacon->head, params.head, params.head_len);
2481 beacon->head_len = params.head_len;
2482
2483 beacon->tail = os_malloc(params.tail_len);
2484 if (!beacon->tail)
2485 goto free_beacon;
2486
2487 os_memcpy(beacon->tail, params.tail, params.tail_len);
2488 beacon->tail_len = params.tail_len;
2489
2490 if (params.proberesp != NULL) {
2491 beacon->probe_resp = os_malloc(params.proberesp_len);
2492 if (!beacon->probe_resp)
2493 goto free_beacon;
2494
2495 os_memcpy(beacon->probe_resp, params.proberesp,
2496 params.proberesp_len);
2497 beacon->probe_resp_len = params.proberesp_len;
2498 }
2499
2500 /* copy the extra ies */
2501 if (beacon_extra) {
2502 beacon->beacon_ies = os_malloc(wpabuf_len(beacon_extra));
2503 if (!beacon->beacon_ies)
2504 goto free_beacon;
2505
2506 os_memcpy(beacon->beacon_ies,
2507 beacon_extra->buf, wpabuf_len(beacon_extra));
2508 beacon->beacon_ies_len = wpabuf_len(beacon_extra);
2509 }
2510
2511 if (proberesp_extra) {
2512 beacon->proberesp_ies =
2513 os_malloc(wpabuf_len(proberesp_extra));
2514 if (!beacon->proberesp_ies)
2515 goto free_beacon;
2516
2517 os_memcpy(beacon->proberesp_ies, proberesp_extra->buf,
2518 wpabuf_len(proberesp_extra));
2519 beacon->proberesp_ies_len = wpabuf_len(proberesp_extra);
2520 }
2521
2522 if (assocresp_extra) {
2523 beacon->assocresp_ies =
2524 os_malloc(wpabuf_len(assocresp_extra));
2525 if (!beacon->assocresp_ies)
2526 goto free_beacon;
2527
2528 os_memcpy(beacon->assocresp_ies, assocresp_extra->buf,
2529 wpabuf_len(assocresp_extra));
2530 beacon->assocresp_ies_len = wpabuf_len(assocresp_extra);
2531 }
2532
2533 ret = 0;
2534free_beacon:
2535 /* if the function fails, the caller should not free beacon data */
2536 if (ret)
2537 free_beacon_data(beacon);
2538
2539free_ap_extra_ies:
2540 hostapd_free_ap_extra_ies(hapd, beacon_extra, proberesp_extra,
2541 assocresp_extra);
2542free_ap_params:
2543 ieee802_11_free_ap_params(&params);
2544 return ret;
2545}
2546
2547
2548/*
2549 * TODO: This flow currently supports only changing frequency within the
2550 * same hw_mode. Any other changes to MAC parameters or provided settings (even
2551 * width) are not supported.
2552 */
2553static int hostapd_change_config_freq(struct hostapd_data *hapd,
2554 struct hostapd_config *conf,
2555 struct hostapd_freq_params *params,
2556 struct hostapd_freq_params *old_params)
2557{
2558 int channel;
2559
2560 if (!params->channel) {
2561 /* check if the new channel is supported by hw */
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002562 params->channel = hostapd_hw_get_channel(hapd, params->freq);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002563 }
2564
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002565 channel = params->channel;
2566 if (!channel)
2567 return -1;
2568
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002569 /* if a pointer to old_params is provided we save previous state */
2570 if (old_params) {
2571 old_params->channel = conf->channel;
2572 old_params->ht_enabled = conf->ieee80211n;
2573 old_params->sec_channel_offset = conf->secondary_channel;
2574 }
2575
2576 conf->channel = channel;
2577 conf->ieee80211n = params->ht_enabled;
2578 conf->secondary_channel = params->sec_channel_offset;
2579
2580 /* TODO: maybe call here hostapd_config_check here? */
2581
2582 return 0;
2583}
2584
2585
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002586static int hostapd_fill_csa_settings(struct hostapd_data *hapd,
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002587 struct csa_settings *settings)
2588{
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002589 struct hostapd_iface *iface = hapd->iface;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002590 struct hostapd_freq_params old_freq;
2591 int ret;
2592
2593 os_memset(&old_freq, 0, sizeof(old_freq));
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002594 if (!iface || !iface->freq || hapd->csa_in_progress)
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002595 return -1;
2596
2597 ret = hostapd_change_config_freq(iface->bss[0], iface->conf,
2598 &settings->freq_params,
2599 &old_freq);
2600 if (ret)
2601 return ret;
2602
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002603 ret = hostapd_build_beacon_data(hapd, &settings->beacon_after);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002604
2605 /* change back the configuration */
2606 hostapd_change_config_freq(iface->bss[0], iface->conf,
2607 &old_freq, NULL);
2608
2609 if (ret)
2610 return ret;
2611
2612 /* set channel switch parameters for csa ie */
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002613 hapd->cs_freq_params = settings->freq_params;
2614 hapd->cs_count = settings->cs_count;
2615 hapd->cs_block_tx = settings->block_tx;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002616
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002617 ret = hostapd_build_beacon_data(hapd, &settings->beacon_csa);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002618 if (ret) {
2619 free_beacon_data(&settings->beacon_after);
2620 return ret;
2621 }
2622
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002623 settings->counter_offset_beacon = hapd->cs_c_off_beacon;
2624 settings->counter_offset_presp = hapd->cs_c_off_proberesp;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002625
2626 return 0;
2627}
2628
2629
2630void hostapd_cleanup_cs_params(struct hostapd_data *hapd)
2631{
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002632 os_memset(&hapd->cs_freq_params, 0, sizeof(hapd->cs_freq_params));
2633 hapd->cs_count = 0;
2634 hapd->cs_block_tx = 0;
2635 hapd->cs_c_off_beacon = 0;
2636 hapd->cs_c_off_proberesp = 0;
2637 hapd->csa_in_progress = 0;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002638}
2639
2640
2641int hostapd_switch_channel(struct hostapd_data *hapd,
2642 struct csa_settings *settings)
2643{
2644 int ret;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08002645
2646 if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_AP_CSA)) {
2647 wpa_printf(MSG_INFO, "CSA is not supported");
2648 return -1;
2649 }
2650
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002651 ret = hostapd_fill_csa_settings(hapd, settings);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002652 if (ret)
2653 return ret;
2654
2655 ret = hostapd_drv_switch_channel(hapd, settings);
2656 free_beacon_data(&settings->beacon_csa);
2657 free_beacon_data(&settings->beacon_after);
2658
2659 if (ret) {
2660 /* if we failed, clean cs parameters */
2661 hostapd_cleanup_cs_params(hapd);
2662 return ret;
2663 }
2664
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002665 hapd->csa_in_progress = 1;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002666 return 0;
2667}
2668
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07002669
2670void
2671hostapd_switch_channel_fallback(struct hostapd_iface *iface,
2672 const struct hostapd_freq_params *freq_params)
2673{
2674 int vht_seg0_idx = 0, vht_seg1_idx = 0, vht_bw = VHT_CHANWIDTH_USE_HT;
2675 unsigned int i;
2676
2677 wpa_printf(MSG_DEBUG, "Restarting all CSA-related BSSes");
2678
2679 if (freq_params->center_freq1)
2680 vht_seg0_idx = 36 + (freq_params->center_freq1 - 5180) / 5;
2681 if (freq_params->center_freq2)
2682 vht_seg1_idx = 36 + (freq_params->center_freq2 - 5180) / 5;
2683
2684 switch (freq_params->bandwidth) {
2685 case 0:
2686 case 20:
2687 case 40:
2688 vht_bw = VHT_CHANWIDTH_USE_HT;
2689 break;
2690 case 80:
2691 if (freq_params->center_freq2)
2692 vht_bw = VHT_CHANWIDTH_80P80MHZ;
2693 else
2694 vht_bw = VHT_CHANWIDTH_80MHZ;
2695 break;
2696 case 160:
2697 vht_bw = VHT_CHANWIDTH_160MHZ;
2698 break;
2699 default:
2700 wpa_printf(MSG_WARNING, "Unknown CSA bandwidth: %d",
2701 freq_params->bandwidth);
2702 break;
2703 }
2704
2705 iface->freq = freq_params->freq;
2706 iface->conf->channel = freq_params->channel;
2707 iface->conf->secondary_channel = freq_params->sec_channel_offset;
2708 iface->conf->vht_oper_centr_freq_seg0_idx = vht_seg0_idx;
2709 iface->conf->vht_oper_centr_freq_seg1_idx = vht_seg1_idx;
2710 iface->conf->vht_oper_chwidth = vht_bw;
2711 iface->conf->ieee80211n = freq_params->ht_enabled;
2712 iface->conf->ieee80211ac = freq_params->vht_enabled;
2713
2714 /*
2715 * cs_params must not be cleared earlier because the freq_params
2716 * argument may actually point to one of these.
2717 */
2718 for (i = 0; i < iface->num_bss; i++)
2719 hostapd_cleanup_cs_params(iface->bss[i]);
2720
2721 hostapd_disable_iface(iface);
2722 hostapd_enable_iface(iface);
2723}
2724
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08002725#endif /* NEED_AP_MLME */