blob: d1d8657199b9dd052d5bae3623bf940223e34395 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Station table
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"
12#include "utils/eloop.h"
13#include "common/ieee802_11_defs.h"
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080014#include "common/wpa_ctrl.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080015#include "common/sae.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070016#include "radius/radius.h"
17#include "radius/radius_client.h"
18#include "drivers/driver.h"
19#include "p2p/p2p.h"
20#include "hostapd.h"
21#include "accounting.h"
22#include "ieee802_1x.h"
23#include "ieee802_11.h"
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080024#include "ieee802_11_auth.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070025#include "wpa_auth.h"
26#include "preauth_auth.h"
27#include "ap_config.h"
28#include "beacon.h"
29#include "ap_mlme.h"
30#include "vlan_init.h"
31#include "p2p_hostapd.h"
32#include "ap_drv_ops.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070033#include "gas_serv.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070034#include "sta_info.h"
35
36static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
37 struct sta_info *sta);
38static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080039static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx);
40static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070041#ifdef CONFIG_IEEE80211W
42static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx);
43#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080044static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070045
46int ap_for_each_sta(struct hostapd_data *hapd,
47 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
48 void *ctx),
49 void *ctx)
50{
51 struct sta_info *sta;
52
53 for (sta = hapd->sta_list; sta; sta = sta->next) {
54 if (cb(hapd, sta, ctx))
55 return 1;
56 }
57
58 return 0;
59}
60
61
62struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
63{
64 struct sta_info *s;
65
66 s = hapd->sta_hash[STA_HASH(sta)];
67 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0)
68 s = s->hnext;
69 return s;
70}
71
72
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070073#ifdef CONFIG_P2P
74struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr)
75{
76 struct sta_info *sta;
77
78 for (sta = hapd->sta_list; sta; sta = sta->next) {
79 const u8 *p2p_dev_addr;
80
81 if (sta->p2p_ie == NULL)
82 continue;
83
84 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
85 if (p2p_dev_addr == NULL)
86 continue;
87
88 if (os_memcmp(p2p_dev_addr, addr, ETH_ALEN) == 0)
89 return sta;
90 }
91
92 return NULL;
93}
94#endif /* CONFIG_P2P */
95
96
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070097static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
98{
99 struct sta_info *tmp;
100
101 if (hapd->sta_list == sta) {
102 hapd->sta_list = sta->next;
103 return;
104 }
105
106 tmp = hapd->sta_list;
107 while (tmp != NULL && tmp->next != sta)
108 tmp = tmp->next;
109 if (tmp == NULL) {
110 wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
111 "list.", MAC2STR(sta->addr));
112 } else
113 tmp->next = sta->next;
114}
115
116
117void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
118{
119 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
120 hapd->sta_hash[STA_HASH(sta->addr)] = sta;
121}
122
123
124static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
125{
126 struct sta_info *s;
127
128 s = hapd->sta_hash[STA_HASH(sta->addr)];
129 if (s == NULL) return;
130 if (os_memcmp(s->addr, sta->addr, 6) == 0) {
131 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
132 return;
133 }
134
135 while (s->hnext != NULL &&
136 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
137 s = s->hnext;
138 if (s->hnext != NULL)
139 s->hnext = s->hnext->hnext;
140 else
141 wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
142 " from hash table", MAC2STR(sta->addr));
143}
144
145
146void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
147{
148 int set_beacon = 0;
149
150 accounting_sta_stop(hapd, sta);
151
152 /* just in case */
153 ap_sta_set_authorized(hapd, sta, 0);
154
155 if (sta->flags & WLAN_STA_WDS)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700156 hostapd_set_wds_sta(hapd, NULL, sta->addr, sta->aid, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700157
158 if (!(sta->flags & WLAN_STA_PREAUTH))
159 hostapd_drv_sta_remove(hapd, sta->addr);
160
161 ap_sta_hash_del(hapd, sta);
162 ap_sta_list_del(hapd, sta);
163
164 if (sta->aid > 0)
165 hapd->sta_aid[(sta->aid - 1) / 32] &=
166 ~BIT((sta->aid - 1) % 32);
167
168 hapd->num_sta--;
169 if (sta->nonerp_set) {
170 sta->nonerp_set = 0;
171 hapd->iface->num_sta_non_erp--;
172 if (hapd->iface->num_sta_non_erp == 0)
173 set_beacon++;
174 }
175
176 if (sta->no_short_slot_time_set) {
177 sta->no_short_slot_time_set = 0;
178 hapd->iface->num_sta_no_short_slot_time--;
179 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
180 && hapd->iface->num_sta_no_short_slot_time == 0)
181 set_beacon++;
182 }
183
184 if (sta->no_short_preamble_set) {
185 sta->no_short_preamble_set = 0;
186 hapd->iface->num_sta_no_short_preamble--;
187 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
188 && hapd->iface->num_sta_no_short_preamble == 0)
189 set_beacon++;
190 }
191
192 if (sta->no_ht_gf_set) {
193 sta->no_ht_gf_set = 0;
194 hapd->iface->num_sta_ht_no_gf--;
195 }
196
197 if (sta->no_ht_set) {
198 sta->no_ht_set = 0;
199 hapd->iface->num_sta_no_ht--;
200 }
201
202 if (sta->ht_20mhz_set) {
203 sta->ht_20mhz_set = 0;
204 hapd->iface->num_sta_ht_20mhz--;
205 }
206
207#ifdef CONFIG_P2P
208 if (sta->no_p2p_set) {
209 sta->no_p2p_set = 0;
210 hapd->num_sta_no_p2p--;
211 if (hapd->num_sta_no_p2p == 0)
212 hostapd_p2p_non_p2p_sta_disconnected(hapd);
213 }
214#endif /* CONFIG_P2P */
215
216#if defined(NEED_AP_MLME) && defined(CONFIG_IEEE80211N)
217 if (hostapd_ht_operation_update(hapd->iface) > 0)
218 set_beacon++;
219#endif /* NEED_AP_MLME && CONFIG_IEEE80211N */
220
221 if (set_beacon)
222 ieee802_11_set_beacons(hapd->iface);
223
Dmitry Shmidt04949592012-07-19 12:16:46 -0700224 wpa_printf(MSG_DEBUG, "%s: cancel ap_handle_timer for " MACSTR,
225 __func__, MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700226 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
227 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800228 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
229 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700230
231 ieee802_1x_free_station(sta);
232 wpa_auth_sta_deinit(sta->wpa_sm);
233 rsn_preauth_free_station(hapd, sta);
234#ifndef CONFIG_NO_RADIUS
Dmitry Shmidt96571392013-10-14 12:54:46 -0700235 if (hapd->radius)
236 radius_client_flush_auth(hapd->radius, sta->addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700237#endif /* CONFIG_NO_RADIUS */
238
239 os_free(sta->last_assoc_req);
240 os_free(sta->challenge);
241
242#ifdef CONFIG_IEEE80211W
243 os_free(sta->sa_query_trans_id);
244 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
245#endif /* CONFIG_IEEE80211W */
246
247#ifdef CONFIG_P2P
248 p2p_group_notif_disassoc(hapd->p2p_group, sta->addr);
249#endif /* CONFIG_P2P */
250
Dmitry Shmidt04949592012-07-19 12:16:46 -0700251#ifdef CONFIG_INTERWORKING
252 if (sta->gas_dialog) {
253 int i;
254 for (i = 0; i < GAS_DIALOG_MAX; i++)
255 gas_serv_dialog_clear(&sta->gas_dialog[i]);
256 os_free(sta->gas_dialog);
257 }
258#endif /* CONFIG_INTERWORKING */
259
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700260 wpabuf_free(sta->wps_ie);
261 wpabuf_free(sta->p2p_ie);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800262 wpabuf_free(sta->hs20_ie);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700263
264 os_free(sta->ht_capabilities);
Dmitry Shmidt292b0c32013-11-22 12:54:42 -0800265 os_free(sta->vht_capabilities);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800266 hostapd_free_psk_list(sta->psk);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700267 os_free(sta->identity);
268 os_free(sta->radius_cui);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700269
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800270#ifdef CONFIG_SAE
271 sae_clear_data(sta->sae);
272 os_free(sta->sae);
273#endif /* CONFIG_SAE */
274
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700275 os_free(sta);
276}
277
278
279void hostapd_free_stas(struct hostapd_data *hapd)
280{
281 struct sta_info *sta, *prev;
282
283 sta = hapd->sta_list;
284
285 while (sta) {
286 prev = sta;
287 if (sta->flags & WLAN_STA_AUTH) {
288 mlme_deauthenticate_indication(
289 hapd, sta, WLAN_REASON_UNSPECIFIED);
290 }
291 sta = sta->next;
292 wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
293 MAC2STR(prev->addr));
294 ap_free_sta(hapd, prev);
295 }
296}
297
298
299/**
300 * ap_handle_timer - Per STA timer handler
301 * @eloop_ctx: struct hostapd_data *
302 * @timeout_ctx: struct sta_info *
303 *
304 * This function is called to check station activity and to remove inactive
305 * stations.
306 */
307void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
308{
309 struct hostapd_data *hapd = eloop_ctx;
310 struct sta_info *sta = timeout_ctx;
311 unsigned long next_time = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700312 int reason;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700313
Dmitry Shmidt04949592012-07-19 12:16:46 -0700314 wpa_printf(MSG_DEBUG, "%s: " MACSTR " flags=0x%x timeout_next=%d",
315 __func__, MAC2STR(sta->addr), sta->flags,
316 sta->timeout_next);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700317 if (sta->timeout_next == STA_REMOVE) {
318 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
319 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
320 "local deauth request");
321 ap_free_sta(hapd, sta);
322 return;
323 }
324
325 if ((sta->flags & WLAN_STA_ASSOC) &&
326 (sta->timeout_next == STA_NULLFUNC ||
327 sta->timeout_next == STA_DISASSOC)) {
328 int inactive_sec;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700329 /*
330 * Add random value to timeout so that we don't end up bouncing
331 * all stations at the same time if we have lots of associated
332 * stations that are idle (but keep re-associating).
333 */
334 int fuzz = os_random() % 20;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700335 inactive_sec = hostapd_drv_get_inact_sec(hapd, sta->addr);
336 if (inactive_sec == -1) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800337 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
338 "Check inactivity: Could not "
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800339 "get station info from kernel driver for "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700340 MACSTR, MAC2STR(sta->addr));
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800341 /*
342 * The driver may not support this functionality.
343 * Anyway, try again after the next inactivity timeout,
344 * but do not disconnect the station now.
345 */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700346 next_time = hapd->conf->ap_max_inactivity + fuzz;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700347 } else if (inactive_sec < hapd->conf->ap_max_inactivity &&
348 sta->flags & WLAN_STA_ASSOC) {
349 /* station activity detected; reset timeout state */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800350 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
351 "Station " MACSTR " has been active %is ago",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700352 MAC2STR(sta->addr), inactive_sec);
353 sta->timeout_next = STA_NULLFUNC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700354 next_time = hapd->conf->ap_max_inactivity + fuzz -
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700355 inactive_sec;
356 } else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800357 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
358 "Station " MACSTR " has been "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700359 "inactive too long: %d sec, max allowed: %d",
360 MAC2STR(sta->addr), inactive_sec,
361 hapd->conf->ap_max_inactivity);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800362
363 if (hapd->conf->skip_inactivity_poll)
364 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700365 }
366 }
367
368 if ((sta->flags & WLAN_STA_ASSOC) &&
369 sta->timeout_next == STA_DISASSOC &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800370 !(sta->flags & WLAN_STA_PENDING_POLL) &&
371 !hapd->conf->skip_inactivity_poll) {
372 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR
373 " has ACKed data poll", MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700374 /* data nullfunc frame poll did not produce TX errors; assume
375 * station ACKed it */
376 sta->timeout_next = STA_NULLFUNC;
377 next_time = hapd->conf->ap_max_inactivity;
378 }
379
380 if (next_time) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700381 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
382 "for " MACSTR " (%lu seconds)",
383 __func__, MAC2STR(sta->addr), next_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700384 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
385 sta);
386 return;
387 }
388
389 if (sta->timeout_next == STA_NULLFUNC &&
390 (sta->flags & WLAN_STA_ASSOC)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800391 wpa_printf(MSG_DEBUG, " Polling STA");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700392 sta->flags |= WLAN_STA_PENDING_POLL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800393 hostapd_drv_poll_client(hapd, hapd->own_addr, sta->addr,
394 sta->flags & WLAN_STA_WMM);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700395 } else if (sta->timeout_next != STA_REMOVE) {
396 int deauth = sta->timeout_next == STA_DEAUTH;
397
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800398 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
399 "Timeout, sending %s info to STA " MACSTR,
400 deauth ? "deauthentication" : "disassociation",
401 MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700402
403 if (deauth) {
404 hostapd_drv_sta_deauth(
405 hapd, sta->addr,
406 WLAN_REASON_PREV_AUTH_NOT_VALID);
407 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700408 reason = (sta->timeout_next == STA_DISASSOC) ?
409 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
410 WLAN_REASON_PREV_AUTH_NOT_VALID;
411
412 hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700413 }
414 }
415
416 switch (sta->timeout_next) {
417 case STA_NULLFUNC:
418 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700419 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
420 "for " MACSTR " (%d seconds - AP_DISASSOC_DELAY)",
421 __func__, MAC2STR(sta->addr), AP_DISASSOC_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700422 eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
423 hapd, sta);
424 break;
425 case STA_DISASSOC:
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700426 case STA_DISASSOC_FROM_CLI:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800427 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700428 sta->flags &= ~WLAN_STA_ASSOC;
429 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
430 if (!sta->acct_terminate_cause)
431 sta->acct_terminate_cause =
432 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
433 accounting_sta_stop(hapd, sta);
434 ieee802_1x_free_station(sta);
435 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
436 HOSTAPD_LEVEL_INFO, "disassociated due to "
437 "inactivity");
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700438 reason = (sta->timeout_next == STA_DISASSOC) ?
439 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
440 WLAN_REASON_PREV_AUTH_NOT_VALID;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700441 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700442 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
443 "for " MACSTR " (%d seconds - AP_DEAUTH_DELAY)",
444 __func__, MAC2STR(sta->addr), AP_DEAUTH_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700445 eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
446 hapd, sta);
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700447 mlme_disassociate_indication(hapd, sta, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700448 break;
449 case STA_DEAUTH:
450 case STA_REMOVE:
451 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
452 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800453 "inactivity (timer DEAUTH/REMOVE)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700454 if (!sta->acct_terminate_cause)
455 sta->acct_terminate_cause =
456 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
457 mlme_deauthenticate_indication(
458 hapd, sta,
459 WLAN_REASON_PREV_AUTH_NOT_VALID);
460 ap_free_sta(hapd, sta);
461 break;
462 }
463}
464
465
466static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
467{
468 struct hostapd_data *hapd = eloop_ctx;
469 struct sta_info *sta = timeout_ctx;
470 u8 addr[ETH_ALEN];
471
Dmitry Shmidt04949592012-07-19 12:16:46 -0700472 if (!(sta->flags & WLAN_STA_AUTH)) {
473 if (sta->flags & WLAN_STA_GAS) {
474 wpa_printf(MSG_DEBUG, "GAS: Remove temporary STA "
475 "entry " MACSTR, MAC2STR(sta->addr));
476 ap_free_sta(hapd, sta);
477 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700478 return;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700479 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700480
481 mlme_deauthenticate_indication(hapd, sta,
482 WLAN_REASON_PREV_AUTH_NOT_VALID);
483 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
484 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
485 "session timeout");
486 sta->acct_terminate_cause =
487 RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
488 os_memcpy(addr, sta->addr, ETH_ALEN);
489 ap_free_sta(hapd, sta);
490 hostapd_drv_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
491}
492
493
Dmitry Shmidt54605472013-11-08 11:10:19 -0800494void ap_sta_replenish_timeout(struct hostapd_data *hapd, struct sta_info *sta,
495 u32 session_timeout)
496{
497 if (eloop_replenish_timeout(session_timeout, 0,
498 ap_handle_session_timer, hapd, sta)) {
499 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
500 HOSTAPD_LEVEL_DEBUG, "setting session timeout "
501 "to %d seconds", session_timeout);
502 }
503}
504
505
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700506void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
507 u32 session_timeout)
508{
509 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
510 HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
511 "seconds", session_timeout);
512 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
513 eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
514 hapd, sta);
515}
516
517
518void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
519{
520 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
521}
522
523
524struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
525{
526 struct sta_info *sta;
527
528 sta = ap_get_sta(hapd, addr);
529 if (sta)
530 return sta;
531
532 wpa_printf(MSG_DEBUG, " New STA");
533 if (hapd->num_sta >= hapd->conf->max_num_sta) {
534 /* FIX: might try to remove some old STAs first? */
535 wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
536 hapd->num_sta, hapd->conf->max_num_sta);
537 return NULL;
538 }
539
540 sta = os_zalloc(sizeof(struct sta_info));
541 if (sta == NULL) {
542 wpa_printf(MSG_ERROR, "malloc failed");
543 return NULL;
544 }
545 sta->acct_interim_interval = hapd->conf->acct_interim_interval;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800546 accounting_sta_get_id(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700547
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800548 if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)) {
549 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
550 "for " MACSTR " (%d seconds - ap_max_inactivity)",
551 __func__, MAC2STR(addr),
552 hapd->conf->ap_max_inactivity);
553 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
554 ap_handle_timer, hapd, sta);
555 }
556
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700557 /* initialize STA info data */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700558 os_memcpy(sta->addr, addr, ETH_ALEN);
559 sta->next = hapd->sta_list;
560 hapd->sta_list = sta;
561 hapd->num_sta++;
562 ap_sta_hash_add(hapd, sta);
563 sta->ssid = &hapd->conf->ssid;
564 ap_sta_remove_in_other_bss(hapd, sta);
565
566 return sta;
567}
568
569
570static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
571{
572 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
573
574 wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
575 MAC2STR(sta->addr));
576 if (hostapd_drv_sta_remove(hapd, sta->addr) &&
577 sta->flags & WLAN_STA_ASSOC) {
578 wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
579 " from kernel driver.", MAC2STR(sta->addr));
580 return -1;
581 }
582 return 0;
583}
584
585
586static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
587 struct sta_info *sta)
588{
589 struct hostapd_iface *iface = hapd->iface;
590 size_t i;
591
592 for (i = 0; i < iface->num_bss; i++) {
593 struct hostapd_data *bss = iface->bss[i];
594 struct sta_info *sta2;
595 /* bss should always be set during operation, but it may be
596 * NULL during reconfiguration. Assume the STA is not
597 * associated to another BSS in that case to avoid NULL pointer
598 * dereferences. */
599 if (bss == hapd || bss == NULL)
600 continue;
601 sta2 = ap_get_sta(bss, sta->addr);
602 if (!sta2)
603 continue;
604
605 ap_sta_disconnect(bss, sta2, sta2->addr,
606 WLAN_REASON_PREV_AUTH_NOT_VALID);
607 }
608}
609
610
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800611static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx)
612{
613 struct hostapd_data *hapd = eloop_ctx;
614 struct sta_info *sta = timeout_ctx;
615
616 ap_sta_remove(hapd, sta);
617 mlme_disassociate_indication(hapd, sta, sta->disassoc_reason);
618}
619
620
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700621void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
622 u16 reason)
623{
624 wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
625 hapd->conf->iface, MAC2STR(sta->addr));
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700626 sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800627 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700628 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700629 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
630 "for " MACSTR " (%d seconds - "
631 "AP_MAX_INACTIVITY_AFTER_DISASSOC)",
632 __func__, MAC2STR(sta->addr),
633 AP_MAX_INACTIVITY_AFTER_DISASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700634 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
635 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
636 ap_handle_timer, hapd, sta);
637 accounting_sta_stop(hapd, sta);
638 ieee802_1x_free_station(sta);
639
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800640 sta->disassoc_reason = reason;
641 sta->flags |= WLAN_STA_PENDING_DISASSOC_CB;
642 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
643 eloop_register_timeout(hapd->iface->drv_flags &
644 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
645 ap_sta_disassoc_cb_timeout, hapd, sta);
646}
647
648
649static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx)
650{
651 struct hostapd_data *hapd = eloop_ctx;
652 struct sta_info *sta = timeout_ctx;
653
654 ap_sta_remove(hapd, sta);
655 mlme_deauthenticate_indication(hapd, sta, sta->deauth_reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700656}
657
658
659void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
660 u16 reason)
661{
662 wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
663 hapd->conf->iface, MAC2STR(sta->addr));
664 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800665 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700666 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700667 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
668 "for " MACSTR " (%d seconds - "
669 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
670 __func__, MAC2STR(sta->addr),
671 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700672 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
673 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
674 ap_handle_timer, hapd, sta);
675 accounting_sta_stop(hapd, sta);
676 ieee802_1x_free_station(sta);
677
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800678 sta->deauth_reason = reason;
679 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
680 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
681 eloop_register_timeout(hapd->iface->drv_flags &
682 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
683 ap_sta_deauth_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700684}
685
686
Dmitry Shmidt04949592012-07-19 12:16:46 -0700687#ifdef CONFIG_WPS
688int ap_sta_wps_cancel(struct hostapd_data *hapd,
689 struct sta_info *sta, void *ctx)
690{
691 if (sta && (sta->flags & WLAN_STA_WPS)) {
692 ap_sta_deauthenticate(hapd, sta,
693 WLAN_REASON_PREV_AUTH_NOT_VALID);
694 wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
695 __func__, MAC2STR(sta->addr));
696 return 1;
697 }
698
699 return 0;
700}
701#endif /* CONFIG_WPS */
702
703
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700704int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
705 int old_vlanid)
706{
707#ifndef CONFIG_NO_VLAN
708 const char *iface;
709 struct hostapd_vlan *vlan = NULL;
710 int ret;
711
712 /*
713 * Do not proceed furthur if the vlan id remains same. We do not want
714 * duplicate dynamic vlan entries.
715 */
716 if (sta->vlan_id == old_vlanid)
717 return 0;
718
719 /*
720 * During 1x reauth, if the vlan id changes, then remove the old id and
721 * proceed furthur to add the new one.
722 */
723 if (old_vlanid > 0)
724 vlan_remove_dynamic(hapd, old_vlanid);
725
726 iface = hapd->conf->iface;
727 if (sta->ssid->vlan[0])
728 iface = sta->ssid->vlan;
729
730 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
731 sta->vlan_id = 0;
732 else if (sta->vlan_id > 0) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700733 struct hostapd_vlan *wildcard_vlan = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700734 vlan = hapd->conf->vlan;
735 while (vlan) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700736 if (vlan->vlan_id == sta->vlan_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700737 break;
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700738 if (vlan->vlan_id == VLAN_ID_WILDCARD)
739 wildcard_vlan = vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700740 vlan = vlan->next;
741 }
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700742 if (!vlan)
743 vlan = wildcard_vlan;
744 if (vlan)
745 iface = vlan->ifname;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700746 }
747
748 if (sta->vlan_id > 0 && vlan == NULL) {
749 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
750 HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
751 "binding station to (vlan_id=%d)",
752 sta->vlan_id);
753 return -1;
754 } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
755 vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
756 if (vlan == NULL) {
757 hostapd_logger(hapd, sta->addr,
758 HOSTAPD_MODULE_IEEE80211,
759 HOSTAPD_LEVEL_DEBUG, "could not add "
760 "dynamic VLAN interface for vlan_id=%d",
761 sta->vlan_id);
762 return -1;
763 }
764
765 iface = vlan->ifname;
766 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
767 hostapd_logger(hapd, sta->addr,
768 HOSTAPD_MODULE_IEEE80211,
769 HOSTAPD_LEVEL_DEBUG, "could not "
770 "configure encryption for dynamic VLAN "
771 "interface for vlan_id=%d",
772 sta->vlan_id);
773 }
774
775 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
776 HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
777 "interface '%s'", iface);
778 } else if (vlan && vlan->vlan_id == sta->vlan_id) {
779 if (sta->vlan_id > 0) {
780 vlan->dynamic_vlan++;
781 hostapd_logger(hapd, sta->addr,
782 HOSTAPD_MODULE_IEEE80211,
783 HOSTAPD_LEVEL_DEBUG, "updated existing "
784 "dynamic VLAN interface '%s'", iface);
785 }
786
787 /*
788 * Update encryption configuration for statically generated
789 * VLAN interface. This is only used for static WEP
790 * configuration for the case where hostapd did not yet know
791 * which keys are to be used when the interface was added.
792 */
793 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
794 hostapd_logger(hapd, sta->addr,
795 HOSTAPD_MODULE_IEEE80211,
796 HOSTAPD_LEVEL_DEBUG, "could not "
797 "configure encryption for VLAN "
798 "interface for vlan_id=%d",
799 sta->vlan_id);
800 }
801 }
802
803 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
804 HOSTAPD_LEVEL_DEBUG, "binding station to interface "
805 "'%s'", iface);
806
807 if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
808 wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
809
810 ret = hostapd_drv_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
811 if (ret < 0) {
812 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
813 HOSTAPD_LEVEL_DEBUG, "could not bind the STA "
814 "entry to vlan_id=%d", sta->vlan_id);
815 }
816 return ret;
817#else /* CONFIG_NO_VLAN */
818 return 0;
819#endif /* CONFIG_NO_VLAN */
820}
821
822
823#ifdef CONFIG_IEEE80211W
824
825int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
826{
827 u32 tu;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800828 struct os_reltime now, passed;
829 os_get_reltime(&now);
830 os_reltime_sub(&now, &sta->sa_query_start, &passed);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700831 tu = (passed.sec * 1000000 + passed.usec) / 1024;
832 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
833 hostapd_logger(hapd, sta->addr,
834 HOSTAPD_MODULE_IEEE80211,
835 HOSTAPD_LEVEL_DEBUG,
836 "association SA Query timed out");
837 sta->sa_query_timed_out = 1;
838 os_free(sta->sa_query_trans_id);
839 sta->sa_query_trans_id = NULL;
840 sta->sa_query_count = 0;
841 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
842 return 1;
843 }
844
845 return 0;
846}
847
848
849static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
850{
851 struct hostapd_data *hapd = eloop_ctx;
852 struct sta_info *sta = timeout_ctx;
853 unsigned int timeout, sec, usec;
854 u8 *trans_id, *nbuf;
855
856 if (sta->sa_query_count > 0 &&
857 ap_check_sa_query_timeout(hapd, sta))
858 return;
859
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700860 nbuf = os_realloc_array(sta->sa_query_trans_id,
861 sta->sa_query_count + 1,
862 WLAN_SA_QUERY_TR_ID_LEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700863 if (nbuf == NULL)
864 return;
865 if (sta->sa_query_count == 0) {
866 /* Starting a new SA Query procedure */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800867 os_get_reltime(&sta->sa_query_start);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700868 }
869 trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
870 sta->sa_query_trans_id = nbuf;
871 sta->sa_query_count++;
872
873 os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
874
875 timeout = hapd->conf->assoc_sa_query_retry_timeout;
876 sec = ((timeout / 1000) * 1024) / 1000;
877 usec = (timeout % 1000) * 1024;
878 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
879
880 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
881 HOSTAPD_LEVEL_DEBUG,
882 "association SA Query attempt %d", sta->sa_query_count);
883
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700884 ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700885}
886
887
888void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
889{
890 ap_sa_query_timer(hapd, sta);
891}
892
893
894void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
895{
896 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
897 os_free(sta->sa_query_trans_id);
898 sta->sa_query_trans_id = NULL;
899 sta->sa_query_count = 0;
900}
901
902#endif /* CONFIG_IEEE80211W */
903
904
905void ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta,
906 int authorized)
907{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800908 const u8 *dev_addr = NULL;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700909 char buf[100];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700910#ifdef CONFIG_P2P
911 u8 addr[ETH_ALEN];
912#endif /* CONFIG_P2P */
913
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700914 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
915 return;
916
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800917#ifdef CONFIG_P2P
Dmitry Shmidt04949592012-07-19 12:16:46 -0700918 if (hapd->p2p_group == NULL) {
919 if (sta->p2p_ie != NULL &&
920 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
921 dev_addr = addr;
922 } else
923 dev_addr = p2p_group_get_dev_addr(hapd->p2p_group, sta->addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800924#endif /* CONFIG_P2P */
925
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700926 if (dev_addr)
927 os_snprintf(buf, sizeof(buf), MACSTR " p2p_dev_addr=" MACSTR,
928 MAC2STR(sta->addr), MAC2STR(dev_addr));
929 else
930 os_snprintf(buf, sizeof(buf), MACSTR, MAC2STR(sta->addr));
931
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800932 if (authorized) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700933 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_CONNECTED "%s", buf);
934
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800935 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700936 hapd->msg_ctx_parent != hapd->msg_ctx)
937 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
938 AP_STA_CONNECTED "%s", buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800939
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700940 sta->flags |= WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800941 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700942 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED "%s", buf);
943
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800944 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700945 hapd->msg_ctx_parent != hapd->msg_ctx)
946 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
947 AP_STA_DISCONNECTED "%s", buf);
948
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700949 sta->flags &= ~WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800950 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700951
952 if (hapd->sta_authorized_cb)
953 hapd->sta_authorized_cb(hapd->sta_authorized_cb_ctx,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800954 sta->addr, authorized, dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700955}
956
957
958void ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
959 const u8 *addr, u16 reason)
960{
961
962 if (sta == NULL && addr)
963 sta = ap_get_sta(hapd, addr);
964
965 if (addr)
966 hostapd_drv_sta_deauth(hapd, addr, reason);
967
968 if (sta == NULL)
969 return;
970 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800971 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
972 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700973 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700974 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
975 "for " MACSTR " (%d seconds - "
976 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
977 __func__, MAC2STR(sta->addr),
978 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700979 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800980 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
981 ap_handle_timer, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700982 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800983
984 sta->deauth_reason = reason;
985 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
986 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
987 eloop_register_timeout(hapd->iface->drv_flags &
988 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
989 ap_sta_deauth_cb_timeout, hapd, sta);
990}
991
992
993void ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta)
994{
995 if (!(sta->flags & WLAN_STA_PENDING_DEAUTH_CB)) {
996 wpa_printf(MSG_DEBUG, "Ignore deauth cb for test frame");
997 return;
998 }
999 sta->flags &= ~WLAN_STA_PENDING_DEAUTH_CB;
1000 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
1001 ap_sta_deauth_cb_timeout(hapd, sta);
1002}
1003
1004
1005void ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta)
1006{
1007 if (!(sta->flags & WLAN_STA_PENDING_DISASSOC_CB)) {
1008 wpa_printf(MSG_DEBUG, "Ignore disassoc cb for test frame");
1009 return;
1010 }
1011 sta->flags &= ~WLAN_STA_PENDING_DISASSOC_CB;
1012 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
1013 ap_sta_disassoc_cb_timeout(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001014}