blob: fd07201568ff24cb84858d6e265035ae633bcc58 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Callback functions for driver wrappers
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07003 * Copyright (c) 2002-2013, 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"
Dmitry Shmidt7832adb2014-04-29 10:53:02 -070012#include "utils/eloop.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070013#include "radius/radius.h"
14#include "drivers/driver.h"
15#include "common/ieee802_11_defs.h"
16#include "common/ieee802_11_common.h"
Dmitry Shmidtf8623282013-02-20 14:34:59 -080017#include "common/wpa_ctrl.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "crypto/random.h"
19#include "p2p/p2p.h"
20#include "wps/wps.h"
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080021#include "fst/fst.h"
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070022#include "wnm_ap.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070023#include "hostapd.h"
24#include "ieee802_11.h"
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -080025#include "ieee802_11_auth.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070026#include "sta_info.h"
27#include "accounting.h"
28#include "tkip_countermeasures.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070029#include "ieee802_1x.h"
30#include "wpa_auth.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070031#include "wps_hostapd.h"
32#include "ap_drv_ops.h"
33#include "ap_config.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070034#include "hw_features.h"
Dmitry Shmidt051af732013-10-22 13:52:46 -070035#include "dfs.h"
Dmitry Shmidt7832adb2014-04-29 10:53:02 -070036#include "beacon.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070037
38
39int hostapd_notif_assoc(struct hostapd_data *hapd, const u8 *addr,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080040 const u8 *req_ies, size_t req_ies_len, int reassoc)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070041{
42 struct sta_info *sta;
43 int new_assoc, res;
44 struct ieee802_11_elems elems;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080045 const u8 *ie;
46 size_t ielen;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080047#if defined(CONFIG_IEEE80211R) || defined(CONFIG_IEEE80211W)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070048 u8 buf[sizeof(struct ieee80211_mgmt) + 1024];
49 u8 *p = buf;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080050#endif /* CONFIG_IEEE80211R || CONFIG_IEEE80211W */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080051 u16 reason = WLAN_REASON_UNSPECIFIED;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -070052 u16 status = WLAN_STATUS_SUCCESS;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070053 const u8 *p2p_dev_addr = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070054
55 if (addr == NULL) {
56 /*
57 * This could potentially happen with unexpected event from the
58 * driver wrapper. This was seen at least in one case where the
59 * driver ended up being set to station mode while hostapd was
60 * running, so better make sure we stop processing such an
61 * event here.
62 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080063 wpa_printf(MSG_DEBUG,
64 "hostapd_notif_assoc: Skip event with no address");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065 return -1;
66 }
67 random_add_randomness(addr, ETH_ALEN);
68
69 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
70 HOSTAPD_LEVEL_INFO, "associated");
71
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080072 ieee802_11_parse_elems(req_ies, req_ies_len, &elems, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070073 if (elems.wps_ie) {
74 ie = elems.wps_ie - 2;
75 ielen = elems.wps_ie_len + 2;
76 wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)AssocReq");
77 } else if (elems.rsn_ie) {
78 ie = elems.rsn_ie - 2;
79 ielen = elems.rsn_ie_len + 2;
80 wpa_printf(MSG_DEBUG, "STA included RSN IE in (Re)AssocReq");
81 } else if (elems.wpa_ie) {
82 ie = elems.wpa_ie - 2;
83 ielen = elems.wpa_ie_len + 2;
84 wpa_printf(MSG_DEBUG, "STA included WPA IE in (Re)AssocReq");
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080085#ifdef CONFIG_HS20
86 } else if (elems.osen) {
87 ie = elems.osen - 2;
88 ielen = elems.osen_len + 2;
89 wpa_printf(MSG_DEBUG, "STA included OSEN IE in (Re)AssocReq");
90#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070091 } else {
92 ie = NULL;
93 ielen = 0;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -080094 wpa_printf(MSG_DEBUG,
95 "STA did not include WPS/RSN/WPA IE in (Re)AssocReq");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070096 }
97
98 sta = ap_get_sta(hapd, addr);
99 if (sta) {
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700100 ap_sta_no_session_timeout(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101 accounting_sta_stop(hapd, sta);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700102
103 /*
104 * Make sure that the previously registered inactivity timer
105 * will not remove the STA immediately.
106 */
107 sta->timeout_next = STA_NULLFUNC;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700108 } else {
109 sta = ap_sta_add(hapd, addr);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700110 if (sta == NULL) {
111 hostapd_drv_sta_disassoc(hapd, addr,
112 WLAN_REASON_DISASSOC_AP_BUSY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700113 return -1;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700114 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700115 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800116 sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS | WLAN_STA_WPS2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700117
Dmitry Shmidtd7ff03d2015-12-04 14:49:35 -0800118 res = hostapd_check_acl(hapd, addr, NULL);
119 if (res != HOSTAPD_ACL_ACCEPT) {
120 wpa_printf(MSG_INFO, "STA " MACSTR " not allowed to connect",
121 MAC2STR(addr));
122 reason = WLAN_REASON_UNSPECIFIED;
123 goto fail;
124 }
125
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700126#ifdef CONFIG_P2P
127 if (elems.p2p) {
128 wpabuf_free(sta->p2p_ie);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800129 sta->p2p_ie = ieee802_11_vendor_ie_concat(req_ies, req_ies_len,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700130 P2P_IE_VENDOR_TYPE);
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700131 if (sta->p2p_ie)
132 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700133 }
134#endif /* CONFIG_P2P */
135
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700136#ifdef CONFIG_IEEE80211N
137#ifdef NEED_AP_MLME
138 if (elems.ht_capabilities &&
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700139 (hapd->iface->conf->ht_capab &
140 HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)) {
141 struct ieee80211_ht_capabilities *ht_cap =
142 (struct ieee80211_ht_capabilities *)
143 elems.ht_capabilities;
144
145 if (le_to_host16(ht_cap->ht_capabilities_info) &
146 HT_CAP_INFO_40MHZ_INTOLERANT)
147 ht40_intolerant_add(hapd->iface, sta);
148 }
149#endif /* NEED_AP_MLME */
150#endif /* CONFIG_IEEE80211N */
151
Dmitry Shmidt051af732013-10-22 13:52:46 -0700152#ifdef CONFIG_INTERWORKING
153 if (elems.ext_capab && elems.ext_capab_len > 4) {
154 if (elems.ext_capab[4] & 0x01)
155 sta->qos_map_enabled = 1;
156 }
157#endif /* CONFIG_INTERWORKING */
158
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800159#ifdef CONFIG_HS20
160 wpabuf_free(sta->hs20_ie);
161 if (elems.hs20 && elems.hs20_len > 4) {
162 sta->hs20_ie = wpabuf_alloc_copy(elems.hs20 + 4,
163 elems.hs20_len - 4);
164 } else
165 sta->hs20_ie = NULL;
166#endif /* CONFIG_HS20 */
167
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800168#ifdef CONFIG_FST
169 wpabuf_free(sta->mb_ies);
170 if (hapd->iface->fst)
171 sta->mb_ies = mb_ies_by_info(&elems.mb_ies);
172 else
173 sta->mb_ies = NULL;
174#endif /* CONFIG_FST */
175
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700176 if (hapd->conf->wpa) {
177 if (ie == NULL || ielen == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800178#ifdef CONFIG_WPS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700179 if (hapd->conf->wps_state) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800180 wpa_printf(MSG_DEBUG,
181 "STA did not include WPA/RSN IE in (Re)Association Request - possible WPS use");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700182 sta->flags |= WLAN_STA_MAYBE_WPS;
183 goto skip_wpa_check;
184 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800185#endif /* CONFIG_WPS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700186
187 wpa_printf(MSG_DEBUG, "No WPA/RSN IE from STA");
188 return -1;
189 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800190#ifdef CONFIG_WPS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700191 if (hapd->conf->wps_state && ie[0] == 0xdd && ie[1] >= 4 &&
192 os_memcmp(ie + 2, "\x00\x50\xf2\x04", 4) == 0) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800193 struct wpabuf *wps;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800194
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700195 sta->flags |= WLAN_STA_WPS;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800196 wps = ieee802_11_vendor_ie_concat(ie, ielen,
197 WPS_IE_VENDOR_TYPE);
198 if (wps) {
199 if (wps_is_20(wps)) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800200 wpa_printf(MSG_DEBUG,
201 "WPS: STA supports WPS 2.0");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800202 sta->flags |= WLAN_STA_WPS2;
203 }
204 wpabuf_free(wps);
205 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700206 goto skip_wpa_check;
207 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800208#endif /* CONFIG_WPS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700209
210 if (sta->wpa_sm == NULL)
211 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700212 sta->addr,
213 p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700214 if (sta->wpa_sm == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800215 wpa_printf(MSG_ERROR,
216 "Failed to initialize WPA state machine");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700217 return -1;
218 }
219 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700220 ie, ielen,
221 elems.mdie, elems.mdie_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700222 if (res != WPA_IE_OK) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800223 wpa_printf(MSG_DEBUG,
224 "WPA/RSN information element rejected? (res %u)",
225 res);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700226 wpa_hexdump(MSG_DEBUG, "IE", ie, ielen);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700227 if (res == WPA_INVALID_GROUP) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800228 reason = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700229 status = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
230 } else if (res == WPA_INVALID_PAIRWISE) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800231 reason = WLAN_REASON_PAIRWISE_CIPHER_NOT_VALID;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700232 status = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
233 } else if (res == WPA_INVALID_AKMP) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800234 reason = WLAN_REASON_AKMP_NOT_VALID;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700235 status = WLAN_STATUS_AKMP_NOT_VALID;
236 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700237#ifdef CONFIG_IEEE80211W
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700238 else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800239 reason = WLAN_REASON_INVALID_IE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700240 status = WLAN_STATUS_INVALID_IE;
241 } else if (res == WPA_INVALID_MGMT_GROUP_CIPHER) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800242 reason = WLAN_REASON_GROUP_CIPHER_NOT_VALID;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700243 status = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
244 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700245#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700246 else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800247 reason = WLAN_REASON_INVALID_IE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700248 status = WLAN_STATUS_INVALID_IE;
249 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800250 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700251 }
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700252#ifdef CONFIG_IEEE80211W
253 if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
254 sta->sa_query_count > 0)
255 ap_check_sa_query_timeout(hapd, sta);
256 if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
257 (sta->auth_alg != WLAN_AUTH_FT)) {
258 /*
259 * STA has already been associated with MFP and SA
260 * Query timeout has not been reached. Reject the
261 * association attempt temporarily and start SA Query,
262 * if one is not pending.
263 */
264
265 if (sta->sa_query_count == 0)
266 ap_sta_start_sa_query(hapd, sta);
267
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700268 status = WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
269
270 p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
271
272 hostapd_sta_assoc(hapd, addr, reassoc, status, buf,
273 p - buf);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700274 return 0;
275 }
276
277 if (wpa_auth_uses_mfp(sta->wpa_sm))
278 sta->flags |= WLAN_STA_MFP;
279 else
280 sta->flags &= ~WLAN_STA_MFP;
281#endif /* CONFIG_IEEE80211W */
282
283#ifdef CONFIG_IEEE80211R
284 if (sta->auth_alg == WLAN_AUTH_FT) {
285 status = wpa_ft_validate_reassoc(sta->wpa_sm, req_ies,
286 req_ies_len);
287 if (status != WLAN_STATUS_SUCCESS) {
288 if (status == WLAN_STATUS_INVALID_PMKID)
289 reason = WLAN_REASON_INVALID_IE;
290 if (status == WLAN_STATUS_INVALID_MDIE)
291 reason = WLAN_REASON_INVALID_IE;
292 if (status == WLAN_STATUS_INVALID_FTIE)
293 reason = WLAN_REASON_INVALID_IE;
294 goto fail;
295 }
296 }
297#endif /* CONFIG_IEEE80211R */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700298 } else if (hapd->conf->wps_state) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800299#ifdef CONFIG_WPS
300 struct wpabuf *wps;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800301
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800302 if (req_ies)
303 wps = ieee802_11_vendor_ie_concat(req_ies, req_ies_len,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700304 WPS_IE_VENDOR_TYPE);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800305 else
306 wps = NULL;
307#ifdef CONFIG_WPS_STRICT
308 if (wps && wps_validate_assoc_req(wps) < 0) {
309 reason = WLAN_REASON_INVALID_IE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700310 status = WLAN_STATUS_INVALID_IE;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700311 wpabuf_free(wps);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800312 goto fail;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700313 }
314#endif /* CONFIG_WPS_STRICT */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800315 if (wps) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700316 sta->flags |= WLAN_STA_WPS;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800317 if (wps_is_20(wps)) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800318 wpa_printf(MSG_DEBUG,
319 "WPS: STA supports WPS 2.0");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800320 sta->flags |= WLAN_STA_WPS2;
321 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700322 } else
323 sta->flags |= WLAN_STA_MAYBE_WPS;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800324 wpabuf_free(wps);
325#endif /* CONFIG_WPS */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800326#ifdef CONFIG_HS20
327 } else if (hapd->conf->osen) {
328 if (elems.osen == NULL) {
329 hostapd_logger(
330 hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
331 HOSTAPD_LEVEL_INFO,
332 "No HS 2.0 OSEN element in association request");
333 return WLAN_STATUS_INVALID_IE;
334 }
335
336 wpa_printf(MSG_DEBUG, "HS 2.0: OSEN association");
337 if (sta->wpa_sm == NULL)
338 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
339 sta->addr, NULL);
340 if (sta->wpa_sm == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800341 wpa_printf(MSG_WARNING,
342 "Failed to initialize WPA state machine");
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800343 return WLAN_STATUS_UNSPECIFIED_FAILURE;
344 }
345 if (wpa_validate_osen(hapd->wpa_auth, sta->wpa_sm,
346 elems.osen - 2, elems.osen_len + 2) < 0)
347 return WLAN_STATUS_INVALID_IE;
348#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700349 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800350#ifdef CONFIG_WPS
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700351skip_wpa_check:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800352#endif /* CONFIG_WPS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700353
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700354#ifdef CONFIG_IEEE80211R
355 p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, buf, sizeof(buf),
356 sta->auth_alg, req_ies, req_ies_len);
357
358 hostapd_sta_assoc(hapd, addr, reassoc, status, buf, p - buf);
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700359
360 if (sta->auth_alg == WLAN_AUTH_FT)
361 ap_sta_set_authorized(hapd, sta, 1);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700362#else /* CONFIG_IEEE80211R */
363 /* Keep compiler silent about unused variables */
364 if (status) {
365 }
366#endif /* CONFIG_IEEE80211R */
367
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700368 new_assoc = (sta->flags & WLAN_STA_ASSOC) == 0;
369 sta->flags |= WLAN_STA_AUTH | WLAN_STA_ASSOC;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800370 sta->flags &= ~WLAN_STA_WNM_SLEEP_MODE;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700371
Dmitry Shmidt661b4f72014-09-29 14:58:27 -0700372 hostapd_set_sta_flags(hapd, sta);
373
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700374 if (reassoc && (sta->auth_alg == WLAN_AUTH_FT))
375 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
376 else
377 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700378
379 hostapd_new_assoc_sta(hapd, sta, !new_assoc);
380
381 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
382
383#ifdef CONFIG_P2P
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800384 if (req_ies) {
385 p2p_group_notif_assoc(hapd->p2p_group, sta->addr,
386 req_ies, req_ies_len);
387 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388#endif /* CONFIG_P2P */
389
390 return 0;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800391
392fail:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700393#ifdef CONFIG_IEEE80211R
394 hostapd_sta_assoc(hapd, addr, reassoc, status, buf, p - buf);
395#endif /* CONFIG_IEEE80211R */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800396 hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
397 ap_free_sta(hapd, sta);
398 return -1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700399}
400
401
402void hostapd_notif_disassoc(struct hostapd_data *hapd, const u8 *addr)
403{
404 struct sta_info *sta;
405
406 if (addr == NULL) {
407 /*
408 * This could potentially happen with unexpected event from the
409 * driver wrapper. This was seen at least in one case where the
410 * driver ended up reporting a station mode event while hostapd
411 * was running, so better make sure we stop processing such an
412 * event here.
413 */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800414 wpa_printf(MSG_DEBUG,
415 "hostapd_notif_disassoc: Skip event with no address");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700416 return;
417 }
418
419 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
420 HOSTAPD_LEVEL_INFO, "disassociated");
421
422 sta = ap_get_sta(hapd, addr);
423 if (sta == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800424 wpa_printf(MSG_DEBUG,
425 "Disassociation notification for unknown STA "
426 MACSTR, MAC2STR(addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700427 return;
428 }
429
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800430 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700431 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700432 wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
433 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
434 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
435 ap_free_sta(hapd, sta);
436}
437
438
439void hostapd_event_sta_low_ack(struct hostapd_data *hapd, const u8 *addr)
440{
441 struct sta_info *sta = ap_get_sta(hapd, addr);
442
443 if (!sta || !hapd->conf->disassoc_low_ack)
444 return;
445
446 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800447 HOSTAPD_LEVEL_INFO,
448 "disconnected due to excessive missing ACKs");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700449 hostapd_drv_sta_disassoc(hapd, addr, WLAN_REASON_DISASSOC_LOW_ACK);
450 if (sta)
451 ap_sta_disassociate(hapd, sta, WLAN_REASON_DISASSOC_LOW_ACK);
452}
453
454
Dmitry Shmidt04949592012-07-19 12:16:46 -0700455void hostapd_event_ch_switch(struct hostapd_data *hapd, int freq, int ht,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800456 int offset, int width, int cf1, int cf2)
Dmitry Shmidt04949592012-07-19 12:16:46 -0700457{
458#ifdef NEED_AP_MLME
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800459 int channel, chwidth, is_dfs;
460 u8 seg0_idx = 0, seg1_idx = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700461
462 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800463 HOSTAPD_LEVEL_INFO,
464 "driver had channel switch: freq=%d, ht=%d, offset=%d, width=%d (%s), cf1=%d, cf2=%d",
465 freq, ht, offset, width, channel_width_to_string(width),
466 cf1, cf2);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700467
468 hapd->iface->freq = freq;
469
470 channel = hostapd_hw_get_channel(hapd, freq);
471 if (!channel) {
472 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800473 HOSTAPD_LEVEL_WARNING,
474 "driver switched to bad channel!");
Dmitry Shmidt04949592012-07-19 12:16:46 -0700475 return;
476 }
477
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800478 switch (width) {
479 case CHAN_WIDTH_80:
480 chwidth = VHT_CHANWIDTH_80MHZ;
481 break;
482 case CHAN_WIDTH_80P80:
483 chwidth = VHT_CHANWIDTH_80P80MHZ;
484 break;
485 case CHAN_WIDTH_160:
486 chwidth = VHT_CHANWIDTH_160MHZ;
487 break;
488 case CHAN_WIDTH_20_NOHT:
489 case CHAN_WIDTH_20:
490 case CHAN_WIDTH_40:
491 default:
492 chwidth = VHT_CHANWIDTH_USE_HT;
493 break;
494 }
495
496 switch (hapd->iface->current_mode->mode) {
497 case HOSTAPD_MODE_IEEE80211A:
498 if (cf1 > 5000)
499 seg0_idx = (cf1 - 5000) / 5;
500 if (cf2 > 5000)
501 seg1_idx = (cf2 - 5000) / 5;
502 break;
503 default:
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800504 ieee80211_freq_to_chan(cf1, &seg0_idx);
505 ieee80211_freq_to_chan(cf2, &seg1_idx);
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800506 break;
507 }
508
Dmitry Shmidt04949592012-07-19 12:16:46 -0700509 hapd->iconf->channel = channel;
510 hapd->iconf->ieee80211n = ht;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800511 if (!ht)
512 hapd->iconf->ieee80211ac = 0;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700513 hapd->iconf->secondary_channel = offset;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800514 hapd->iconf->vht_oper_chwidth = chwidth;
515 hapd->iconf->vht_oper_centr_freq_seg0_idx = seg0_idx;
516 hapd->iconf->vht_oper_centr_freq_seg1_idx = seg1_idx;
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800517
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800518 is_dfs = ieee80211_is_dfs(freq);
519
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700520 if (hapd->csa_in_progress &&
521 freq == hapd->cs_freq_params.freq) {
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800522 hostapd_cleanup_cs_params(hapd);
Dmitry Shmidtd30ac602014-06-30 09:54:22 -0700523 ieee802_11_set_beacon(hapd);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800524
Dmitry Shmidt203eadb2015-03-05 14:16:04 -0800525 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_CSA_FINISHED
526 "freq=%d dfs=%d", freq, is_dfs);
527 } else if (hapd->iface->drv_flags & WPA_DRIVER_FLAGS_DFS_OFFLOAD) {
528 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_CSA_FINISHED
529 "freq=%d dfs=%d", freq, is_dfs);
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -0800530 }
Dmitry Shmidt04949592012-07-19 12:16:46 -0700531#endif /* NEED_AP_MLME */
532}
533
534
Dmitry Shmidtf8623282013-02-20 14:34:59 -0800535void hostapd_event_connect_failed_reason(struct hostapd_data *hapd,
536 const u8 *addr, int reason_code)
537{
538 switch (reason_code) {
539 case MAX_CLIENT_REACHED:
540 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_REJECTED_MAX_STA MACSTR,
541 MAC2STR(addr));
542 break;
543 case BLOCKED_CLIENT:
544 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_REJECTED_BLOCKED_STA MACSTR,
545 MAC2STR(addr));
546 break;
547 }
548}
549
550
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800551#ifdef CONFIG_ACS
552static void hostapd_acs_channel_selected(struct hostapd_data *hapd,
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700553 struct acs_selected_channels *acs_res)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800554{
Dmitry Shmidtb1e52102015-05-29 12:36:29 -0700555 int ret, i;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800556
557 if (hapd->iconf->channel) {
558 wpa_printf(MSG_INFO, "ACS: Channel was already set to %d",
559 hapd->iconf->channel);
560 return;
561 }
562
Dmitry Shmidtb1e52102015-05-29 12:36:29 -0700563 if (!hapd->iface->current_mode) {
564 for (i = 0; i < hapd->iface->num_hw_features; i++) {
565 struct hostapd_hw_modes *mode =
566 &hapd->iface->hw_features[i];
567
568 if (mode->mode == acs_res->hw_mode) {
569 hapd->iface->current_mode = mode;
570 break;
571 }
572 }
573 if (!hapd->iface->current_mode) {
574 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
575 HOSTAPD_LEVEL_WARNING,
576 "driver selected to bad hw_mode");
577 return;
578 }
579 }
580
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700581 hapd->iface->freq = hostapd_hw_get_freq(hapd, acs_res->pri_channel);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800582
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700583 if (!acs_res->pri_channel) {
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800584 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
585 HOSTAPD_LEVEL_WARNING,
586 "driver switched to bad channel");
587 return;
588 }
589
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700590 hapd->iconf->channel = acs_res->pri_channel;
591 hapd->iconf->acs = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800592
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700593 if (acs_res->sec_channel == 0)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800594 hapd->iconf->secondary_channel = 0;
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700595 else if (acs_res->sec_channel < acs_res->pri_channel)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800596 hapd->iconf->secondary_channel = -1;
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700597 else if (acs_res->sec_channel > acs_res->pri_channel)
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800598 hapd->iconf->secondary_channel = 1;
599 else {
600 wpa_printf(MSG_ERROR, "Invalid secondary channel!");
601 return;
602 }
603
Dmitry Shmidtdda10c22015-03-24 16:05:01 -0700604 if (hapd->iface->conf->ieee80211ac) {
605 /* set defaults for backwards compatibility */
606 hapd->iconf->vht_oper_centr_freq_seg1_idx = 0;
607 hapd->iconf->vht_oper_centr_freq_seg0_idx = 0;
608 hapd->iconf->vht_oper_chwidth = VHT_CHANWIDTH_USE_HT;
609 if (acs_res->ch_width == 80) {
610 hapd->iconf->vht_oper_centr_freq_seg0_idx =
611 acs_res->vht_seg0_center_ch;
612 hapd->iconf->vht_oper_chwidth = VHT_CHANWIDTH_80MHZ;
613 } else if (acs_res->ch_width == 160) {
614 if (acs_res->vht_seg1_center_ch == 0) {
615 hapd->iconf->vht_oper_centr_freq_seg0_idx =
616 acs_res->vht_seg0_center_ch;
617 hapd->iconf->vht_oper_chwidth =
618 VHT_CHANWIDTH_160MHZ;
619 } else {
620 hapd->iconf->vht_oper_centr_freq_seg0_idx =
621 acs_res->vht_seg0_center_ch;
622 hapd->iconf->vht_oper_centr_freq_seg1_idx =
623 acs_res->vht_seg1_center_ch;
624 hapd->iconf->vht_oper_chwidth =
625 VHT_CHANWIDTH_80P80MHZ;
626 }
627 }
628 }
629
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800630 ret = hostapd_acs_completed(hapd->iface, 0);
631 if (ret) {
632 wpa_printf(MSG_ERROR,
633 "ACS: Possibly channel configuration is invalid");
634 }
635}
636#endif /* CONFIG_ACS */
637
638
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800639int hostapd_probe_req_rx(struct hostapd_data *hapd, const u8 *sa, const u8 *da,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700640 const u8 *bssid, const u8 *ie, size_t ie_len,
641 int ssi_signal)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700642{
643 size_t i;
644 int ret = 0;
645
646 if (sa == NULL || ie == NULL)
647 return -1;
648
649 random_add_randomness(sa, ETH_ALEN);
650 for (i = 0; hapd->probereq_cb && i < hapd->num_probereq_cb; i++) {
651 if (hapd->probereq_cb[i].cb(hapd->probereq_cb[i].ctx,
Dmitry Shmidt04949592012-07-19 12:16:46 -0700652 sa, da, bssid, ie, ie_len,
653 ssi_signal) > 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700654 ret = 1;
655 break;
656 }
657 }
658 return ret;
659}
660
661
662#ifdef HOSTAPD
663
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700664#ifdef CONFIG_IEEE80211R
665static void hostapd_notify_auth_ft_finish(void *ctx, const u8 *dst,
666 const u8 *bssid,
667 u16 auth_transaction, u16 status,
668 const u8 *ies, size_t ies_len)
669{
670 struct hostapd_data *hapd = ctx;
671 struct sta_info *sta;
672
673 sta = ap_get_sta(hapd, dst);
674 if (sta == NULL)
675 return;
676
677 hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
678 HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
679 sta->flags |= WLAN_STA_AUTH;
680
681 hostapd_sta_auth(hapd, dst, auth_transaction, status, ies, ies_len);
682}
683#endif /* CONFIG_IEEE80211R */
684
685
686static void hostapd_notif_auth(struct hostapd_data *hapd,
687 struct auth_info *rx_auth)
688{
689 struct sta_info *sta;
690 u16 status = WLAN_STATUS_SUCCESS;
691 u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
692 size_t resp_ies_len = 0;
693
694 sta = ap_get_sta(hapd, rx_auth->peer);
695 if (!sta) {
696 sta = ap_sta_add(hapd, rx_auth->peer);
697 if (sta == NULL) {
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700698 status = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700699 goto fail;
700 }
701 }
702 sta->flags &= ~WLAN_STA_PREAUTH;
703 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
704#ifdef CONFIG_IEEE80211R
705 if (rx_auth->auth_type == WLAN_AUTH_FT && hapd->wpa_auth) {
706 sta->auth_alg = WLAN_AUTH_FT;
707 if (sta->wpa_sm == NULL)
708 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700709 sta->addr, NULL);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700710 if (sta->wpa_sm == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800711 wpa_printf(MSG_DEBUG,
712 "FT: Failed to initialize WPA state machine");
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700713 status = WLAN_STATUS_UNSPECIFIED_FAILURE;
714 goto fail;
715 }
716 wpa_ft_process_auth(sta->wpa_sm, rx_auth->bssid,
717 rx_auth->auth_transaction, rx_auth->ies,
718 rx_auth->ies_len,
719 hostapd_notify_auth_ft_finish, hapd);
720 return;
721 }
722#endif /* CONFIG_IEEE80211R */
723fail:
724 hostapd_sta_auth(hapd, rx_auth->peer, rx_auth->auth_transaction + 1,
725 status, resp_ies, resp_ies_len);
726}
727
728
729static void hostapd_action_rx(struct hostapd_data *hapd,
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800730 struct rx_mgmt *drv_mgmt)
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700731{
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800732 struct ieee80211_mgmt *mgmt;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700733 struct sta_info *sta;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800734 size_t plen __maybe_unused;
735 u16 fc;
736
737 if (drv_mgmt->frame_len < 24 + 1)
738 return;
739
740 plen = drv_mgmt->frame_len - 24 - 1;
741
742 mgmt = (struct ieee80211_mgmt *) drv_mgmt->frame;
743 fc = le_to_host16(mgmt->frame_control);
744 if (WLAN_FC_GET_STYPE(fc) != WLAN_FC_STYPE_ACTION)
745 return; /* handled by the driver */
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700746
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800747 wpa_printf(MSG_DEBUG, "RX_ACTION cat %d action plen %d",
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800748 mgmt->u.action.category, (int) plen);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700749
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800750 sta = ap_get_sta(hapd, mgmt->sa);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700751 if (sta == NULL) {
752 wpa_printf(MSG_DEBUG, "%s: station not found", __func__);
753 return;
754 }
755#ifdef CONFIG_IEEE80211R
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800756 if (mgmt->u.action.category == WLAN_ACTION_FT) {
757 const u8 *payload = drv_mgmt->frame + 24 + 1;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800758
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800759 wpa_ft_action_rx(sta->wpa_sm, payload, plen);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700760 }
761#endif /* CONFIG_IEEE80211R */
762#ifdef CONFIG_IEEE80211W
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800763 if (mgmt->u.action.category == WLAN_ACTION_SA_QUERY && plen >= 4) {
764 ieee802_11_sa_query_action(
765 hapd, mgmt->sa,
766 mgmt->u.action.u.sa_query_resp.action,
767 mgmt->u.action.u.sa_query_resp.trans_id);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700768 }
769#endif /* CONFIG_IEEE80211W */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800770#ifdef CONFIG_WNM
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800771 if (mgmt->u.action.category == WLAN_ACTION_WNM) {
772 ieee802_11_rx_wnm_action_ap(hapd, mgmt, drv_mgmt->frame_len);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700773 }
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800774#endif /* CONFIG_WNM */
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800775#ifdef CONFIG_FST
776 if (mgmt->u.action.category == WLAN_ACTION_FST && hapd->iface->fst) {
777 fst_rx_action(hapd->iface->fst, mgmt, drv_mgmt->frame_len);
778 return;
779 }
780#endif /* CONFIG_FST */
781
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700782}
783
784
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700785#ifdef NEED_AP_MLME
786
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700787#define HAPD_BROADCAST ((struct hostapd_data *) -1)
788
789static struct hostapd_data * get_hapd_bssid(struct hostapd_iface *iface,
790 const u8 *bssid)
791{
792 size_t i;
793
794 if (bssid == NULL)
795 return NULL;
796 if (bssid[0] == 0xff && bssid[1] == 0xff && bssid[2] == 0xff &&
797 bssid[3] == 0xff && bssid[4] == 0xff && bssid[5] == 0xff)
798 return HAPD_BROADCAST;
799
800 for (i = 0; i < iface->num_bss; i++) {
801 if (os_memcmp(bssid, iface->bss[i]->own_addr, ETH_ALEN) == 0)
802 return iface->bss[i];
803 }
804
805 return NULL;
806}
807
808
809static void hostapd_rx_from_unknown_sta(struct hostapd_data *hapd,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800810 const u8 *bssid, const u8 *addr,
811 int wds)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700812{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800813 hapd = get_hapd_bssid(hapd->iface, bssid);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700814 if (hapd == NULL || hapd == HAPD_BROADCAST)
815 return;
816
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800817 ieee802_11_rx_from_unknown(hapd, addr, wds);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700818}
819
820
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800821static int hostapd_mgmt_rx(struct hostapd_data *hapd, struct rx_mgmt *rx_mgmt)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700822{
823 struct hostapd_iface *iface = hapd->iface;
824 const struct ieee80211_hdr *hdr;
825 const u8 *bssid;
826 struct hostapd_frame_info fi;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800827 int ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700828
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800829#ifdef CONFIG_TESTING_OPTIONS
830 if (hapd->ext_mgmt_frame_handling) {
831 size_t hex_len = 2 * rx_mgmt->frame_len + 1;
832 char *hex = os_malloc(hex_len);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800833
Dmitry Shmidt7d5c8f22014-03-03 13:53:28 -0800834 if (hex) {
835 wpa_snprintf_hex(hex, hex_len, rx_mgmt->frame,
836 rx_mgmt->frame_len);
837 wpa_msg(hapd->msg_ctx, MSG_INFO, "MGMT-RX %s", hex);
838 os_free(hex);
839 }
840 return 1;
841 }
842#endif /* CONFIG_TESTING_OPTIONS */
843
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700844 hdr = (const struct ieee80211_hdr *) rx_mgmt->frame;
845 bssid = get_hdr_bssid(hdr, rx_mgmt->frame_len);
846 if (bssid == NULL)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800847 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700848
849 hapd = get_hapd_bssid(iface, bssid);
850 if (hapd == NULL) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800851 u16 fc = le_to_host16(hdr->frame_control);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700852
853 /*
854 * Drop frames to unknown BSSIDs except for Beacon frames which
855 * could be used to update neighbor information.
856 */
857 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
858 WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
859 hapd = iface->bss[0];
860 else
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800861 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700862 }
863
864 os_memset(&fi, 0, sizeof(fi));
865 fi.datarate = rx_mgmt->datarate;
866 fi.ssi_signal = rx_mgmt->ssi_signal;
867
868 if (hapd == HAPD_BROADCAST) {
869 size_t i;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800870
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800871 ret = 0;
872 for (i = 0; i < iface->num_bss; i++) {
Dmitry Shmidt98660862014-03-11 17:26:21 -0700873 /* if bss is set, driver will call this function for
874 * each bss individually. */
875 if (rx_mgmt->drv_priv &&
876 (iface->bss[i]->drv_priv != rx_mgmt->drv_priv))
877 continue;
878
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800879 if (ieee802_11_mgmt(iface->bss[i], rx_mgmt->frame,
880 rx_mgmt->frame_len, &fi) > 0)
881 ret = 1;
882 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700883 } else
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800884 ret = ieee802_11_mgmt(hapd, rx_mgmt->frame, rx_mgmt->frame_len,
885 &fi);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700886
887 random_add_randomness(&fi, sizeof(fi));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700888
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800889 return ret;
Jouni Malinen75ecf522011-06-27 15:19:46 -0700890}
891
892
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700893static void hostapd_mgmt_tx_cb(struct hostapd_data *hapd, const u8 *buf,
894 size_t len, u16 stype, int ok)
895{
896 struct ieee80211_hdr *hdr;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800897
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700898 hdr = (struct ieee80211_hdr *) buf;
899 hapd = get_hapd_bssid(hapd->iface, get_hdr_bssid(hdr, len));
900 if (hapd == NULL || hapd == HAPD_BROADCAST)
901 return;
902 ieee802_11_mgmt_cb(hapd, buf, len, stype, ok);
903}
904
905#endif /* NEED_AP_MLME */
906
907
908static int hostapd_event_new_sta(struct hostapd_data *hapd, const u8 *addr)
909{
910 struct sta_info *sta = ap_get_sta(hapd, addr);
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800911
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700912 if (sta)
913 return 0;
914
915 wpa_printf(MSG_DEBUG, "Data frame from unknown STA " MACSTR
916 " - adding a new STA", MAC2STR(addr));
917 sta = ap_sta_add(hapd, addr);
918 if (sta) {
919 hostapd_new_assoc_sta(hapd, sta, 0);
920 } else {
921 wpa_printf(MSG_DEBUG, "Failed to add STA entry for " MACSTR,
922 MAC2STR(addr));
923 return -1;
924 }
925
926 return 0;
927}
928
929
930static void hostapd_event_eapol_rx(struct hostapd_data *hapd, const u8 *src,
931 const u8 *data, size_t data_len)
932{
933 struct hostapd_iface *iface = hapd->iface;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800934 struct sta_info *sta;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700935 size_t j;
936
937 for (j = 0; j < iface->num_bss; j++) {
Dmitry Shmidtd80a4012015-11-05 16:35:40 -0800938 sta = ap_get_sta(iface->bss[j], src);
939 if (sta && sta->flags & WLAN_STA_ASSOC) {
940 hapd = iface->bss[j];
941 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700942 }
943 }
944
945 ieee802_1x_receive(hapd, src, data, data_len);
946}
947
948
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -0700949static struct hostapd_channel_data * hostapd_get_mode_channel(
950 struct hostapd_iface *iface, unsigned int freq)
951{
952 int i;
953 struct hostapd_channel_data *chan;
954
955 for (i = 0; i < iface->current_mode->num_channels; i++) {
956 chan = &iface->current_mode->channels[i];
957 if (!chan)
958 return NULL;
959 if ((unsigned int) chan->freq == freq)
960 return chan;
961 }
962
963 return NULL;
964}
965
966
967static void hostapd_update_nf(struct hostapd_iface *iface,
968 struct hostapd_channel_data *chan,
969 struct freq_survey *survey)
970{
971 if (!iface->chans_surveyed) {
972 chan->min_nf = survey->nf;
973 iface->lowest_nf = survey->nf;
974 } else {
975 if (dl_list_empty(&chan->survey_list))
976 chan->min_nf = survey->nf;
977 else if (survey->nf < chan->min_nf)
978 chan->min_nf = survey->nf;
979 if (survey->nf < iface->lowest_nf)
980 iface->lowest_nf = survey->nf;
981 }
982}
983
984
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800985static void hostapd_single_channel_get_survey(struct hostapd_iface *iface,
986 struct survey_results *survey_res)
987{
988 struct hostapd_channel_data *chan;
989 struct freq_survey *survey;
990 u64 divisor, dividend;
991
992 survey = dl_list_first(&survey_res->survey_list, struct freq_survey,
993 list);
994 if (!survey || !survey->freq)
995 return;
996
997 chan = hostapd_get_mode_channel(iface, survey->freq);
998 if (!chan || chan->flag & HOSTAPD_CHAN_DISABLED)
999 return;
1000
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001001 wpa_printf(MSG_DEBUG,
1002 "Single Channel Survey: (freq=%d channel_time=%ld channel_time_busy=%ld)",
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001003 survey->freq,
1004 (unsigned long int) survey->channel_time,
1005 (unsigned long int) survey->channel_time_busy);
1006
1007 if (survey->channel_time > iface->last_channel_time &&
1008 survey->channel_time > survey->channel_time_busy) {
1009 dividend = survey->channel_time_busy -
1010 iface->last_channel_time_busy;
1011 divisor = survey->channel_time - iface->last_channel_time;
1012
1013 iface->channel_utilization = dividend * 255 / divisor;
1014 wpa_printf(MSG_DEBUG, "Channel Utilization: %d",
1015 iface->channel_utilization);
1016 }
1017 iface->last_channel_time = survey->channel_time;
1018 iface->last_channel_time_busy = survey->channel_time_busy;
1019}
1020
1021
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001022static void hostapd_event_get_survey(struct hostapd_data *hapd,
1023 struct survey_results *survey_results)
1024{
1025 struct hostapd_iface *iface = hapd->iface;
1026 struct freq_survey *survey, *tmp;
1027 struct hostapd_channel_data *chan;
1028
1029 if (dl_list_empty(&survey_results->survey_list)) {
1030 wpa_printf(MSG_DEBUG, "No survey data received");
1031 return;
1032 }
1033
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001034 if (survey_results->freq_filter) {
1035 hostapd_single_channel_get_survey(iface, survey_results);
1036 return;
1037 }
1038
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001039 dl_list_for_each_safe(survey, tmp, &survey_results->survey_list,
1040 struct freq_survey, list) {
1041 chan = hostapd_get_mode_channel(iface, survey->freq);
1042 if (!chan)
1043 continue;
1044 if (chan->flag & HOSTAPD_CHAN_DISABLED)
1045 continue;
1046
1047 dl_list_del(&survey->list);
1048 dl_list_add_tail(&chan->survey_list, &survey->list);
1049
1050 hostapd_update_nf(iface, chan, survey);
1051
1052 iface->chans_surveyed++;
1053 }
1054}
1055
1056
Dmitry Shmidt051af732013-10-22 13:52:46 -07001057#ifdef NEED_AP_MLME
1058
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001059static void hostapd_event_iface_unavailable(struct hostapd_data *hapd)
1060{
1061 wpa_printf(MSG_DEBUG, "Interface %s is unavailable -- stopped",
1062 hapd->conf->iface);
1063
1064 if (hapd->csa_in_progress) {
1065 wpa_printf(MSG_INFO, "CSA failed (%s was stopped)",
1066 hapd->conf->iface);
1067 hostapd_switch_channel_fallback(hapd->iface,
1068 &hapd->cs_freq_params);
1069 }
1070}
1071
1072
Dmitry Shmidt051af732013-10-22 13:52:46 -07001073static void hostapd_event_dfs_radar_detected(struct hostapd_data *hapd,
1074 struct dfs_event *radar)
1075{
1076 wpa_printf(MSG_DEBUG, "DFS radar detected on %d MHz", radar->freq);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001077 hostapd_dfs_radar_detected(hapd->iface, radar->freq, radar->ht_enabled,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001078 radar->chan_offset, radar->chan_width,
1079 radar->cf1, radar->cf2);
1080}
1081
1082
1083static void hostapd_event_dfs_cac_finished(struct hostapd_data *hapd,
1084 struct dfs_event *radar)
1085{
1086 wpa_printf(MSG_DEBUG, "DFS CAC finished on %d MHz", radar->freq);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001087 hostapd_dfs_complete_cac(hapd->iface, 1, radar->freq, radar->ht_enabled,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001088 radar->chan_offset, radar->chan_width,
1089 radar->cf1, radar->cf2);
1090}
1091
1092
1093static void hostapd_event_dfs_cac_aborted(struct hostapd_data *hapd,
1094 struct dfs_event *radar)
1095{
1096 wpa_printf(MSG_DEBUG, "DFS CAC aborted on %d MHz", radar->freq);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001097 hostapd_dfs_complete_cac(hapd->iface, 0, radar->freq, radar->ht_enabled,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001098 radar->chan_offset, radar->chan_width,
1099 radar->cf1, radar->cf2);
1100}
1101
1102
1103static void hostapd_event_dfs_nop_finished(struct hostapd_data *hapd,
1104 struct dfs_event *radar)
1105{
1106 wpa_printf(MSG_DEBUG, "DFS NOP finished on %d MHz", radar->freq);
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001107 hostapd_dfs_nop_finished(hapd->iface, radar->freq, radar->ht_enabled,
Dmitry Shmidt051af732013-10-22 13:52:46 -07001108 radar->chan_offset, radar->chan_width,
1109 radar->cf1, radar->cf2);
1110}
1111
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001112
1113static void hostapd_event_dfs_cac_started(struct hostapd_data *hapd,
1114 struct dfs_event *radar)
1115{
1116 wpa_printf(MSG_DEBUG, "DFS offload CAC started on %d MHz", radar->freq);
1117 hostapd_dfs_start_cac(hapd->iface, radar->freq, radar->ht_enabled,
1118 radar->chan_offset, radar->chan_width,
1119 radar->cf1, radar->cf2);
1120}
1121
Dmitry Shmidt051af732013-10-22 13:52:46 -07001122#endif /* NEED_AP_MLME */
1123
1124
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001125void wpa_supplicant_event(void *ctx, enum wpa_event_type event,
1126 union wpa_event_data *data)
1127{
1128 struct hostapd_data *hapd = ctx;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001129#ifndef CONFIG_NO_STDOUT_DEBUG
1130 int level = MSG_DEBUG;
1131
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001132 if (event == EVENT_RX_MGMT && data->rx_mgmt.frame &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001133 data->rx_mgmt.frame_len >= 24) {
1134 const struct ieee80211_hdr *hdr;
1135 u16 fc;
Dmitry Shmidtd80a4012015-11-05 16:35:40 -08001136
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001137 hdr = (const struct ieee80211_hdr *) data->rx_mgmt.frame;
1138 fc = le_to_host16(hdr->frame_control);
1139 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
1140 WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_BEACON)
1141 level = MSG_EXCESSIVE;
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001142 if (WLAN_FC_GET_TYPE(fc) == WLAN_FC_TYPE_MGMT &&
1143 WLAN_FC_GET_STYPE(fc) == WLAN_FC_STYPE_PROBE_REQ)
1144 level = MSG_EXCESSIVE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001145 }
1146
1147 wpa_dbg(hapd->msg_ctx, level, "Event %s (%d) received",
1148 event_to_string(event), event);
1149#endif /* CONFIG_NO_STDOUT_DEBUG */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001150
1151 switch (event) {
1152 case EVENT_MICHAEL_MIC_FAILURE:
1153 michael_mic_failure(hapd, data->michael_mic_failure.src, 1);
1154 break;
1155 case EVENT_SCAN_RESULTS:
1156 if (hapd->iface->scan_cb)
1157 hapd->iface->scan_cb(hapd->iface);
1158 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001159 case EVENT_WPS_BUTTON_PUSHED:
1160 hostapd_wps_button_pushed(hapd, NULL);
1161 break;
1162#ifdef NEED_AP_MLME
1163 case EVENT_TX_STATUS:
1164 switch (data->tx_status.type) {
1165 case WLAN_FC_TYPE_MGMT:
1166 hostapd_mgmt_tx_cb(hapd, data->tx_status.data,
1167 data->tx_status.data_len,
1168 data->tx_status.stype,
1169 data->tx_status.ack);
1170 break;
1171 case WLAN_FC_TYPE_DATA:
1172 hostapd_tx_status(hapd, data->tx_status.dst,
1173 data->tx_status.data,
1174 data->tx_status.data_len,
1175 data->tx_status.ack);
1176 break;
1177 }
1178 break;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001179 case EVENT_EAPOL_TX_STATUS:
1180 hostapd_eapol_tx_status(hapd, data->eapol_tx_status.dst,
1181 data->eapol_tx_status.data,
1182 data->eapol_tx_status.data_len,
1183 data->eapol_tx_status.ack);
1184 break;
1185 case EVENT_DRIVER_CLIENT_POLL_OK:
1186 hostapd_client_poll_ok(hapd, data->client_poll.addr);
1187 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001188 case EVENT_RX_FROM_UNKNOWN:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001189 hostapd_rx_from_unknown_sta(hapd, data->rx_from_unknown.bssid,
1190 data->rx_from_unknown.addr,
1191 data->rx_from_unknown.wds);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001192 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001193#endif /* NEED_AP_MLME */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001194 case EVENT_RX_MGMT:
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001195 if (!data->rx_mgmt.frame)
1196 break;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001197#ifdef NEED_AP_MLME
1198 if (hostapd_mgmt_rx(hapd, &data->rx_mgmt) > 0)
1199 break;
1200#endif /* NEED_AP_MLME */
1201 hostapd_action_rx(hapd, &data->rx_mgmt);
1202 break;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001203 case EVENT_RX_PROBE_REQ:
1204 if (data->rx_probe_req.sa == NULL ||
1205 data->rx_probe_req.ie == NULL)
1206 break;
1207 hostapd_probe_req_rx(hapd, data->rx_probe_req.sa,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001208 data->rx_probe_req.da,
1209 data->rx_probe_req.bssid,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001210 data->rx_probe_req.ie,
Dmitry Shmidt04949592012-07-19 12:16:46 -07001211 data->rx_probe_req.ie_len,
1212 data->rx_probe_req.ssi_signal);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001213 break;
1214 case EVENT_NEW_STA:
1215 hostapd_event_new_sta(hapd, data->new_sta.addr);
1216 break;
1217 case EVENT_EAPOL_RX:
1218 hostapd_event_eapol_rx(hapd, data->eapol_rx.src,
1219 data->eapol_rx.data,
1220 data->eapol_rx.data_len);
1221 break;
1222 case EVENT_ASSOC:
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001223 if (!data)
1224 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001225 hostapd_notif_assoc(hapd, data->assoc_info.addr,
1226 data->assoc_info.req_ies,
1227 data->assoc_info.req_ies_len,
1228 data->assoc_info.reassoc);
1229 break;
1230 case EVENT_DISASSOC:
1231 if (data)
1232 hostapd_notif_disassoc(hapd, data->disassoc_info.addr);
1233 break;
1234 case EVENT_DEAUTH:
1235 if (data)
1236 hostapd_notif_disassoc(hapd, data->deauth_info.addr);
1237 break;
1238 case EVENT_STATION_LOW_ACK:
1239 if (!data)
1240 break;
1241 hostapd_event_sta_low_ack(hapd, data->low_ack.addr);
1242 break;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001243 case EVENT_AUTH:
1244 hostapd_notif_auth(hapd, &data->auth);
1245 break;
Dmitry Shmidt04949592012-07-19 12:16:46 -07001246 case EVENT_CH_SWITCH:
1247 if (!data)
1248 break;
1249 hostapd_event_ch_switch(hapd, data->ch_switch.freq,
1250 data->ch_switch.ht_enabled,
Dmitry Shmidt04f534e2013-12-09 15:50:16 -08001251 data->ch_switch.ch_offset,
1252 data->ch_switch.ch_width,
1253 data->ch_switch.cf1,
1254 data->ch_switch.cf2);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001255 break;
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001256 case EVENT_CONNECT_FAILED_REASON:
1257 if (!data)
1258 break;
1259 hostapd_event_connect_failed_reason(
1260 hapd, data->connect_failed_reason.addr,
1261 data->connect_failed_reason.code);
1262 break;
Dmitry Shmidtb7b4d0e2013-08-26 12:09:05 -07001263 case EVENT_SURVEY:
1264 hostapd_event_get_survey(hapd, &data->survey_results);
1265 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -07001266#ifdef NEED_AP_MLME
Dmitry Shmidtd30ac602014-06-30 09:54:22 -07001267 case EVENT_INTERFACE_UNAVAILABLE:
1268 hostapd_event_iface_unavailable(hapd);
1269 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -07001270 case EVENT_DFS_RADAR_DETECTED:
1271 if (!data)
1272 break;
1273 hostapd_event_dfs_radar_detected(hapd, &data->dfs_event);
1274 break;
1275 case EVENT_DFS_CAC_FINISHED:
1276 if (!data)
1277 break;
1278 hostapd_event_dfs_cac_finished(hapd, &data->dfs_event);
1279 break;
1280 case EVENT_DFS_CAC_ABORTED:
1281 if (!data)
1282 break;
1283 hostapd_event_dfs_cac_aborted(hapd, &data->dfs_event);
1284 break;
1285 case EVENT_DFS_NOP_FINISHED:
1286 if (!data)
1287 break;
1288 hostapd_event_dfs_nop_finished(hapd, &data->dfs_event);
1289 break;
1290 case EVENT_CHANNEL_LIST_CHANGED:
1291 /* channel list changed (regulatory?), update channel list */
1292 /* TODO: check this. hostapd_get_hw_features() initializes
1293 * too much stuff. */
1294 /* hostapd_get_hw_features(hapd->iface); */
Dmitry Shmidte0e48dc2013-11-18 12:00:06 -08001295 hostapd_channel_list_updated(
1296 hapd->iface, data->channel_list_changed.initiator);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001297 break;
Dmitry Shmidt203eadb2015-03-05 14:16:04 -08001298 case EVENT_DFS_CAC_STARTED:
1299 if (!data)
1300 break;
1301 hostapd_event_dfs_cac_started(hapd, &data->dfs_event);
1302 break;
Dmitry Shmidt051af732013-10-22 13:52:46 -07001303#endif /* NEED_AP_MLME */
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001304 case EVENT_INTERFACE_ENABLED:
1305 wpa_msg(hapd->msg_ctx, MSG_INFO, INTERFACE_ENABLED);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001306 if (hapd->disabled && hapd->started) {
1307 hapd->disabled = 0;
1308 /*
1309 * Try to re-enable interface if the driver stopped it
1310 * when the interface got disabled.
1311 */
1312 wpa_auth_reconfig_group_keys(hapd->wpa_auth);
1313 hapd->reenable_beacon = 1;
1314 ieee802_11_set_beacon(hapd);
1315 }
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001316 break;
1317 case EVENT_INTERFACE_DISABLED:
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001318 hostapd_free_stas(hapd);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001319 wpa_msg(hapd->msg_ctx, MSG_INFO, INTERFACE_DISABLED);
Dmitry Shmidt7f656022015-02-25 14:36:37 -08001320 hapd->disabled = 1;
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001321 break;
1322#ifdef CONFIG_ACS
1323 case EVENT_ACS_CHANNEL_SELECTED:
Dmitry Shmidtdda10c22015-03-24 16:05:01 -07001324 hostapd_acs_channel_selected(hapd,
1325 &data->acs_selected_channels);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001326 break;
1327#endif /* CONFIG_ACS */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001328 default:
1329 wpa_printf(MSG_DEBUG, "Unknown event %d", event);
1330 break;
1331 }
1332}
1333
1334#endif /* HOSTAPD */