blob: 9d28d9ceea4ab753a01d5b452ffd4704ec55b6a1 [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
548 /* initialize STA info data */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700549 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);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700553 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
554 ap_handle_timer, hapd, sta);
555 os_memcpy(sta->addr, addr, ETH_ALEN);
556 sta->next = hapd->sta_list;
557 hapd->sta_list = sta;
558 hapd->num_sta++;
559 ap_sta_hash_add(hapd, sta);
560 sta->ssid = &hapd->conf->ssid;
561 ap_sta_remove_in_other_bss(hapd, sta);
562
563 return sta;
564}
565
566
567static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
568{
569 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
570
571 wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
572 MAC2STR(sta->addr));
573 if (hostapd_drv_sta_remove(hapd, sta->addr) &&
574 sta->flags & WLAN_STA_ASSOC) {
575 wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
576 " from kernel driver.", MAC2STR(sta->addr));
577 return -1;
578 }
579 return 0;
580}
581
582
583static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
584 struct sta_info *sta)
585{
586 struct hostapd_iface *iface = hapd->iface;
587 size_t i;
588
589 for (i = 0; i < iface->num_bss; i++) {
590 struct hostapd_data *bss = iface->bss[i];
591 struct sta_info *sta2;
592 /* bss should always be set during operation, but it may be
593 * NULL during reconfiguration. Assume the STA is not
594 * associated to another BSS in that case to avoid NULL pointer
595 * dereferences. */
596 if (bss == hapd || bss == NULL)
597 continue;
598 sta2 = ap_get_sta(bss, sta->addr);
599 if (!sta2)
600 continue;
601
602 ap_sta_disconnect(bss, sta2, sta2->addr,
603 WLAN_REASON_PREV_AUTH_NOT_VALID);
604 }
605}
606
607
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800608static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx)
609{
610 struct hostapd_data *hapd = eloop_ctx;
611 struct sta_info *sta = timeout_ctx;
612
613 ap_sta_remove(hapd, sta);
614 mlme_disassociate_indication(hapd, sta, sta->disassoc_reason);
615}
616
617
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700618void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
619 u16 reason)
620{
621 wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
622 hapd->conf->iface, MAC2STR(sta->addr));
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700623 sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800624 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700625 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700626 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
627 "for " MACSTR " (%d seconds - "
628 "AP_MAX_INACTIVITY_AFTER_DISASSOC)",
629 __func__, MAC2STR(sta->addr),
630 AP_MAX_INACTIVITY_AFTER_DISASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700631 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
632 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
633 ap_handle_timer, hapd, sta);
634 accounting_sta_stop(hapd, sta);
635 ieee802_1x_free_station(sta);
636
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800637 sta->disassoc_reason = reason;
638 sta->flags |= WLAN_STA_PENDING_DISASSOC_CB;
639 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
640 eloop_register_timeout(hapd->iface->drv_flags &
641 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
642 ap_sta_disassoc_cb_timeout, hapd, sta);
643}
644
645
646static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx)
647{
648 struct hostapd_data *hapd = eloop_ctx;
649 struct sta_info *sta = timeout_ctx;
650
651 ap_sta_remove(hapd, sta);
652 mlme_deauthenticate_indication(hapd, sta, sta->deauth_reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700653}
654
655
656void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
657 u16 reason)
658{
659 wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
660 hapd->conf->iface, MAC2STR(sta->addr));
661 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800662 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700663 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700664 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
665 "for " MACSTR " (%d seconds - "
666 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
667 __func__, MAC2STR(sta->addr),
668 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700669 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
670 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
671 ap_handle_timer, hapd, sta);
672 accounting_sta_stop(hapd, sta);
673 ieee802_1x_free_station(sta);
674
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800675 sta->deauth_reason = reason;
676 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
677 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
678 eloop_register_timeout(hapd->iface->drv_flags &
679 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
680 ap_sta_deauth_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700681}
682
683
Dmitry Shmidt04949592012-07-19 12:16:46 -0700684#ifdef CONFIG_WPS
685int ap_sta_wps_cancel(struct hostapd_data *hapd,
686 struct sta_info *sta, void *ctx)
687{
688 if (sta && (sta->flags & WLAN_STA_WPS)) {
689 ap_sta_deauthenticate(hapd, sta,
690 WLAN_REASON_PREV_AUTH_NOT_VALID);
691 wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
692 __func__, MAC2STR(sta->addr));
693 return 1;
694 }
695
696 return 0;
697}
698#endif /* CONFIG_WPS */
699
700
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700701int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
702 int old_vlanid)
703{
704#ifndef CONFIG_NO_VLAN
705 const char *iface;
706 struct hostapd_vlan *vlan = NULL;
707 int ret;
708
709 /*
710 * Do not proceed furthur if the vlan id remains same. We do not want
711 * duplicate dynamic vlan entries.
712 */
713 if (sta->vlan_id == old_vlanid)
714 return 0;
715
716 /*
717 * During 1x reauth, if the vlan id changes, then remove the old id and
718 * proceed furthur to add the new one.
719 */
720 if (old_vlanid > 0)
721 vlan_remove_dynamic(hapd, old_vlanid);
722
723 iface = hapd->conf->iface;
724 if (sta->ssid->vlan[0])
725 iface = sta->ssid->vlan;
726
727 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
728 sta->vlan_id = 0;
729 else if (sta->vlan_id > 0) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700730 struct hostapd_vlan *wildcard_vlan = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700731 vlan = hapd->conf->vlan;
732 while (vlan) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700733 if (vlan->vlan_id == sta->vlan_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700734 break;
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700735 if (vlan->vlan_id == VLAN_ID_WILDCARD)
736 wildcard_vlan = vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700737 vlan = vlan->next;
738 }
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700739 if (!vlan)
740 vlan = wildcard_vlan;
741 if (vlan)
742 iface = vlan->ifname;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700743 }
744
745 if (sta->vlan_id > 0 && vlan == NULL) {
746 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
747 HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
748 "binding station to (vlan_id=%d)",
749 sta->vlan_id);
750 return -1;
751 } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
752 vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
753 if (vlan == NULL) {
754 hostapd_logger(hapd, sta->addr,
755 HOSTAPD_MODULE_IEEE80211,
756 HOSTAPD_LEVEL_DEBUG, "could not add "
757 "dynamic VLAN interface for vlan_id=%d",
758 sta->vlan_id);
759 return -1;
760 }
761
762 iface = vlan->ifname;
763 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
764 hostapd_logger(hapd, sta->addr,
765 HOSTAPD_MODULE_IEEE80211,
766 HOSTAPD_LEVEL_DEBUG, "could not "
767 "configure encryption for dynamic VLAN "
768 "interface for vlan_id=%d",
769 sta->vlan_id);
770 }
771
772 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
773 HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
774 "interface '%s'", iface);
775 } else if (vlan && vlan->vlan_id == sta->vlan_id) {
776 if (sta->vlan_id > 0) {
777 vlan->dynamic_vlan++;
778 hostapd_logger(hapd, sta->addr,
779 HOSTAPD_MODULE_IEEE80211,
780 HOSTAPD_LEVEL_DEBUG, "updated existing "
781 "dynamic VLAN interface '%s'", iface);
782 }
783
784 /*
785 * Update encryption configuration for statically generated
786 * VLAN interface. This is only used for static WEP
787 * configuration for the case where hostapd did not yet know
788 * which keys are to be used when the interface was added.
789 */
790 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
791 hostapd_logger(hapd, sta->addr,
792 HOSTAPD_MODULE_IEEE80211,
793 HOSTAPD_LEVEL_DEBUG, "could not "
794 "configure encryption for VLAN "
795 "interface for vlan_id=%d",
796 sta->vlan_id);
797 }
798 }
799
800 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
801 HOSTAPD_LEVEL_DEBUG, "binding station to interface "
802 "'%s'", iface);
803
804 if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
805 wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
806
807 ret = hostapd_drv_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
808 if (ret < 0) {
809 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
810 HOSTAPD_LEVEL_DEBUG, "could not bind the STA "
811 "entry to vlan_id=%d", sta->vlan_id);
812 }
813 return ret;
814#else /* CONFIG_NO_VLAN */
815 return 0;
816#endif /* CONFIG_NO_VLAN */
817}
818
819
820#ifdef CONFIG_IEEE80211W
821
822int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
823{
824 u32 tu;
825 struct os_time now, passed;
826 os_get_time(&now);
827 os_time_sub(&now, &sta->sa_query_start, &passed);
828 tu = (passed.sec * 1000000 + passed.usec) / 1024;
829 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
830 hostapd_logger(hapd, sta->addr,
831 HOSTAPD_MODULE_IEEE80211,
832 HOSTAPD_LEVEL_DEBUG,
833 "association SA Query timed out");
834 sta->sa_query_timed_out = 1;
835 os_free(sta->sa_query_trans_id);
836 sta->sa_query_trans_id = NULL;
837 sta->sa_query_count = 0;
838 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
839 return 1;
840 }
841
842 return 0;
843}
844
845
846static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
847{
848 struct hostapd_data *hapd = eloop_ctx;
849 struct sta_info *sta = timeout_ctx;
850 unsigned int timeout, sec, usec;
851 u8 *trans_id, *nbuf;
852
853 if (sta->sa_query_count > 0 &&
854 ap_check_sa_query_timeout(hapd, sta))
855 return;
856
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700857 nbuf = os_realloc_array(sta->sa_query_trans_id,
858 sta->sa_query_count + 1,
859 WLAN_SA_QUERY_TR_ID_LEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700860 if (nbuf == NULL)
861 return;
862 if (sta->sa_query_count == 0) {
863 /* Starting a new SA Query procedure */
864 os_get_time(&sta->sa_query_start);
865 }
866 trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
867 sta->sa_query_trans_id = nbuf;
868 sta->sa_query_count++;
869
870 os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
871
872 timeout = hapd->conf->assoc_sa_query_retry_timeout;
873 sec = ((timeout / 1000) * 1024) / 1000;
874 usec = (timeout % 1000) * 1024;
875 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
876
877 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
878 HOSTAPD_LEVEL_DEBUG,
879 "association SA Query attempt %d", sta->sa_query_count);
880
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700881 ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700882}
883
884
885void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
886{
887 ap_sa_query_timer(hapd, sta);
888}
889
890
891void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
892{
893 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
894 os_free(sta->sa_query_trans_id);
895 sta->sa_query_trans_id = NULL;
896 sta->sa_query_count = 0;
897}
898
899#endif /* CONFIG_IEEE80211W */
900
901
902void ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta,
903 int authorized)
904{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800905 const u8 *dev_addr = NULL;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700906 char buf[100];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700907#ifdef CONFIG_P2P
908 u8 addr[ETH_ALEN];
909#endif /* CONFIG_P2P */
910
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700911 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
912 return;
913
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800914#ifdef CONFIG_P2P
Dmitry Shmidt04949592012-07-19 12:16:46 -0700915 if (hapd->p2p_group == NULL) {
916 if (sta->p2p_ie != NULL &&
917 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
918 dev_addr = addr;
919 } else
920 dev_addr = p2p_group_get_dev_addr(hapd->p2p_group, sta->addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800921#endif /* CONFIG_P2P */
922
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700923 if (dev_addr)
924 os_snprintf(buf, sizeof(buf), MACSTR " p2p_dev_addr=" MACSTR,
925 MAC2STR(sta->addr), MAC2STR(dev_addr));
926 else
927 os_snprintf(buf, sizeof(buf), MACSTR, MAC2STR(sta->addr));
928
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800929 if (authorized) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700930 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_CONNECTED "%s", buf);
931
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800932 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700933 hapd->msg_ctx_parent != hapd->msg_ctx)
934 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
935 AP_STA_CONNECTED "%s", buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800936
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700937 sta->flags |= WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800938 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700939 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED "%s", buf);
940
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800941 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700942 hapd->msg_ctx_parent != hapd->msg_ctx)
943 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
944 AP_STA_DISCONNECTED "%s", buf);
945
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700946 sta->flags &= ~WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800947 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700948
949 if (hapd->sta_authorized_cb)
950 hapd->sta_authorized_cb(hapd->sta_authorized_cb_ctx,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800951 sta->addr, authorized, dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700952}
953
954
955void ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
956 const u8 *addr, u16 reason)
957{
958
959 if (sta == NULL && addr)
960 sta = ap_get_sta(hapd, addr);
961
962 if (addr)
963 hostapd_drv_sta_deauth(hapd, addr, reason);
964
965 if (sta == NULL)
966 return;
967 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800968 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
969 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700970 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700971 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
972 "for " MACSTR " (%d seconds - "
973 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
974 __func__, MAC2STR(sta->addr),
975 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700976 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800977 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
978 ap_handle_timer, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700979 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800980
981 sta->deauth_reason = reason;
982 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
983 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
984 eloop_register_timeout(hapd->iface->drv_flags &
985 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
986 ap_sta_deauth_cb_timeout, hapd, sta);
987}
988
989
990void ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta)
991{
992 if (!(sta->flags & WLAN_STA_PENDING_DEAUTH_CB)) {
993 wpa_printf(MSG_DEBUG, "Ignore deauth cb for test frame");
994 return;
995 }
996 sta->flags &= ~WLAN_STA_PENDING_DEAUTH_CB;
997 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
998 ap_sta_deauth_cb_timeout(hapd, sta);
999}
1000
1001
1002void ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta)
1003{
1004 if (!(sta->flags & WLAN_STA_PENDING_DISASSOC_CB)) {
1005 wpa_printf(MSG_DEBUG, "Ignore disassoc cb for test frame");
1006 return;
1007 }
1008 sta->flags &= ~WLAN_STA_PENDING_DISASSOC_CB;
1009 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
1010 ap_sta_disassoc_cb_timeout(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001011}