blob: 21235f2596ca19ad9ec897d28b6d2719569d12ba [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / Station table
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08003 * Copyright (c) 2002-2011, 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
73static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
74{
75 struct sta_info *tmp;
76
77 if (hapd->sta_list == sta) {
78 hapd->sta_list = sta->next;
79 return;
80 }
81
82 tmp = hapd->sta_list;
83 while (tmp != NULL && tmp->next != sta)
84 tmp = tmp->next;
85 if (tmp == NULL) {
86 wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
87 "list.", MAC2STR(sta->addr));
88 } else
89 tmp->next = sta->next;
90}
91
92
93void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
94{
95 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
96 hapd->sta_hash[STA_HASH(sta->addr)] = sta;
97}
98
99
100static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
101{
102 struct sta_info *s;
103
104 s = hapd->sta_hash[STA_HASH(sta->addr)];
105 if (s == NULL) return;
106 if (os_memcmp(s->addr, sta->addr, 6) == 0) {
107 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
108 return;
109 }
110
111 while (s->hnext != NULL &&
112 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
113 s = s->hnext;
114 if (s->hnext != NULL)
115 s->hnext = s->hnext->hnext;
116 else
117 wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
118 " from hash table", MAC2STR(sta->addr));
119}
120
121
122void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
123{
124 int set_beacon = 0;
125
126 accounting_sta_stop(hapd, sta);
127
128 /* just in case */
129 ap_sta_set_authorized(hapd, sta, 0);
130
131 if (sta->flags & WLAN_STA_WDS)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700132 hostapd_set_wds_sta(hapd, NULL, sta->addr, sta->aid, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700133
134 if (!(sta->flags & WLAN_STA_PREAUTH))
135 hostapd_drv_sta_remove(hapd, sta->addr);
136
137 ap_sta_hash_del(hapd, sta);
138 ap_sta_list_del(hapd, sta);
139
140 if (sta->aid > 0)
141 hapd->sta_aid[(sta->aid - 1) / 32] &=
142 ~BIT((sta->aid - 1) % 32);
143
144 hapd->num_sta--;
145 if (sta->nonerp_set) {
146 sta->nonerp_set = 0;
147 hapd->iface->num_sta_non_erp--;
148 if (hapd->iface->num_sta_non_erp == 0)
149 set_beacon++;
150 }
151
152 if (sta->no_short_slot_time_set) {
153 sta->no_short_slot_time_set = 0;
154 hapd->iface->num_sta_no_short_slot_time--;
155 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
156 && hapd->iface->num_sta_no_short_slot_time == 0)
157 set_beacon++;
158 }
159
160 if (sta->no_short_preamble_set) {
161 sta->no_short_preamble_set = 0;
162 hapd->iface->num_sta_no_short_preamble--;
163 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
164 && hapd->iface->num_sta_no_short_preamble == 0)
165 set_beacon++;
166 }
167
168 if (sta->no_ht_gf_set) {
169 sta->no_ht_gf_set = 0;
170 hapd->iface->num_sta_ht_no_gf--;
171 }
172
173 if (sta->no_ht_set) {
174 sta->no_ht_set = 0;
175 hapd->iface->num_sta_no_ht--;
176 }
177
178 if (sta->ht_20mhz_set) {
179 sta->ht_20mhz_set = 0;
180 hapd->iface->num_sta_ht_20mhz--;
181 }
182
183#ifdef CONFIG_P2P
184 if (sta->no_p2p_set) {
185 sta->no_p2p_set = 0;
186 hapd->num_sta_no_p2p--;
187 if (hapd->num_sta_no_p2p == 0)
188 hostapd_p2p_non_p2p_sta_disconnected(hapd);
189 }
190#endif /* CONFIG_P2P */
191
192#if defined(NEED_AP_MLME) && defined(CONFIG_IEEE80211N)
193 if (hostapd_ht_operation_update(hapd->iface) > 0)
194 set_beacon++;
195#endif /* NEED_AP_MLME && CONFIG_IEEE80211N */
196
197 if (set_beacon)
198 ieee802_11_set_beacons(hapd->iface);
199
Dmitry Shmidt04949592012-07-19 12:16:46 -0700200 wpa_printf(MSG_DEBUG, "%s: cancel ap_handle_timer for " MACSTR,
201 __func__, MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700202 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
203 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800204 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
205 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700206
207 ieee802_1x_free_station(sta);
208 wpa_auth_sta_deinit(sta->wpa_sm);
209 rsn_preauth_free_station(hapd, sta);
210#ifndef CONFIG_NO_RADIUS
211 radius_client_flush_auth(hapd->radius, sta->addr);
212#endif /* CONFIG_NO_RADIUS */
213
214 os_free(sta->last_assoc_req);
215 os_free(sta->challenge);
216
217#ifdef CONFIG_IEEE80211W
218 os_free(sta->sa_query_trans_id);
219 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
220#endif /* CONFIG_IEEE80211W */
221
222#ifdef CONFIG_P2P
223 p2p_group_notif_disassoc(hapd->p2p_group, sta->addr);
224#endif /* CONFIG_P2P */
225
Dmitry Shmidt04949592012-07-19 12:16:46 -0700226#ifdef CONFIG_INTERWORKING
227 if (sta->gas_dialog) {
228 int i;
229 for (i = 0; i < GAS_DIALOG_MAX; i++)
230 gas_serv_dialog_clear(&sta->gas_dialog[i]);
231 os_free(sta->gas_dialog);
232 }
233#endif /* CONFIG_INTERWORKING */
234
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700235 wpabuf_free(sta->wps_ie);
236 wpabuf_free(sta->p2p_ie);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800237 wpabuf_free(sta->hs20_ie);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700238
239 os_free(sta->ht_capabilities);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800240 hostapd_free_psk_list(sta->psk);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700241 os_free(sta->identity);
242 os_free(sta->radius_cui);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700243
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800244#ifdef CONFIG_SAE
245 sae_clear_data(sta->sae);
246 os_free(sta->sae);
247#endif /* CONFIG_SAE */
248
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700249 os_free(sta);
250}
251
252
253void hostapd_free_stas(struct hostapd_data *hapd)
254{
255 struct sta_info *sta, *prev;
256
257 sta = hapd->sta_list;
258
259 while (sta) {
260 prev = sta;
261 if (sta->flags & WLAN_STA_AUTH) {
262 mlme_deauthenticate_indication(
263 hapd, sta, WLAN_REASON_UNSPECIFIED);
264 }
265 sta = sta->next;
266 wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
267 MAC2STR(prev->addr));
268 ap_free_sta(hapd, prev);
269 }
270}
271
272
273/**
274 * ap_handle_timer - Per STA timer handler
275 * @eloop_ctx: struct hostapd_data *
276 * @timeout_ctx: struct sta_info *
277 *
278 * This function is called to check station activity and to remove inactive
279 * stations.
280 */
281void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
282{
283 struct hostapd_data *hapd = eloop_ctx;
284 struct sta_info *sta = timeout_ctx;
285 unsigned long next_time = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700286 int reason;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700287
Dmitry Shmidt04949592012-07-19 12:16:46 -0700288 wpa_printf(MSG_DEBUG, "%s: " MACSTR " flags=0x%x timeout_next=%d",
289 __func__, MAC2STR(sta->addr), sta->flags,
290 sta->timeout_next);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700291 if (sta->timeout_next == STA_REMOVE) {
292 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
293 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
294 "local deauth request");
295 ap_free_sta(hapd, sta);
296 return;
297 }
298
299 if ((sta->flags & WLAN_STA_ASSOC) &&
300 (sta->timeout_next == STA_NULLFUNC ||
301 sta->timeout_next == STA_DISASSOC)) {
302 int inactive_sec;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700303 /*
304 * Add random value to timeout so that we don't end up bouncing
305 * all stations at the same time if we have lots of associated
306 * stations that are idle (but keep re-associating).
307 */
308 int fuzz = os_random() % 20;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700309 inactive_sec = hostapd_drv_get_inact_sec(hapd, sta->addr);
310 if (inactive_sec == -1) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800311 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
312 "Check inactivity: Could not "
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800313 "get station info from kernel driver for "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700314 MACSTR, MAC2STR(sta->addr));
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800315 /*
316 * The driver may not support this functionality.
317 * Anyway, try again after the next inactivity timeout,
318 * but do not disconnect the station now.
319 */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700320 next_time = hapd->conf->ap_max_inactivity + fuzz;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700321 } else if (inactive_sec < hapd->conf->ap_max_inactivity &&
322 sta->flags & WLAN_STA_ASSOC) {
323 /* station activity detected; reset timeout state */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800324 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
325 "Station " MACSTR " has been active %is ago",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700326 MAC2STR(sta->addr), inactive_sec);
327 sta->timeout_next = STA_NULLFUNC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700328 next_time = hapd->conf->ap_max_inactivity + fuzz -
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700329 inactive_sec;
330 } else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800331 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
332 "Station " MACSTR " has been "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700333 "inactive too long: %d sec, max allowed: %d",
334 MAC2STR(sta->addr), inactive_sec,
335 hapd->conf->ap_max_inactivity);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800336
337 if (hapd->conf->skip_inactivity_poll)
338 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700339 }
340 }
341
342 if ((sta->flags & WLAN_STA_ASSOC) &&
343 sta->timeout_next == STA_DISASSOC &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800344 !(sta->flags & WLAN_STA_PENDING_POLL) &&
345 !hapd->conf->skip_inactivity_poll) {
346 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR
347 " has ACKed data poll", MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700348 /* data nullfunc frame poll did not produce TX errors; assume
349 * station ACKed it */
350 sta->timeout_next = STA_NULLFUNC;
351 next_time = hapd->conf->ap_max_inactivity;
352 }
353
354 if (next_time) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700355 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
356 "for " MACSTR " (%lu seconds)",
357 __func__, MAC2STR(sta->addr), next_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700358 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
359 sta);
360 return;
361 }
362
363 if (sta->timeout_next == STA_NULLFUNC &&
364 (sta->flags & WLAN_STA_ASSOC)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800365 wpa_printf(MSG_DEBUG, " Polling STA");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700366 sta->flags |= WLAN_STA_PENDING_POLL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800367 hostapd_drv_poll_client(hapd, hapd->own_addr, sta->addr,
368 sta->flags & WLAN_STA_WMM);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700369 } else if (sta->timeout_next != STA_REMOVE) {
370 int deauth = sta->timeout_next == STA_DEAUTH;
371
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800372 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
373 "Timeout, sending %s info to STA " MACSTR,
374 deauth ? "deauthentication" : "disassociation",
375 MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700376
377 if (deauth) {
378 hostapd_drv_sta_deauth(
379 hapd, sta->addr,
380 WLAN_REASON_PREV_AUTH_NOT_VALID);
381 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700382 reason = (sta->timeout_next == STA_DISASSOC) ?
383 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
384 WLAN_REASON_PREV_AUTH_NOT_VALID;
385
386 hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700387 }
388 }
389
390 switch (sta->timeout_next) {
391 case STA_NULLFUNC:
392 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700393 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
394 "for " MACSTR " (%d seconds - AP_DISASSOC_DELAY)",
395 __func__, MAC2STR(sta->addr), AP_DISASSOC_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700396 eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
397 hapd, sta);
398 break;
399 case STA_DISASSOC:
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700400 case STA_DISASSOC_FROM_CLI:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800401 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700402 sta->flags &= ~WLAN_STA_ASSOC;
403 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
404 if (!sta->acct_terminate_cause)
405 sta->acct_terminate_cause =
406 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
407 accounting_sta_stop(hapd, sta);
408 ieee802_1x_free_station(sta);
409 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
410 HOSTAPD_LEVEL_INFO, "disassociated due to "
411 "inactivity");
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700412 reason = (sta->timeout_next == STA_DISASSOC) ?
413 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
414 WLAN_REASON_PREV_AUTH_NOT_VALID;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700415 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700416 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
417 "for " MACSTR " (%d seconds - AP_DEAUTH_DELAY)",
418 __func__, MAC2STR(sta->addr), AP_DEAUTH_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700419 eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
420 hapd, sta);
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700421 mlme_disassociate_indication(hapd, sta, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700422 break;
423 case STA_DEAUTH:
424 case STA_REMOVE:
425 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
426 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800427 "inactivity (timer DEAUTH/REMOVE)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700428 if (!sta->acct_terminate_cause)
429 sta->acct_terminate_cause =
430 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
431 mlme_deauthenticate_indication(
432 hapd, sta,
433 WLAN_REASON_PREV_AUTH_NOT_VALID);
434 ap_free_sta(hapd, sta);
435 break;
436 }
437}
438
439
440static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
441{
442 struct hostapd_data *hapd = eloop_ctx;
443 struct sta_info *sta = timeout_ctx;
444 u8 addr[ETH_ALEN];
445
Dmitry Shmidt04949592012-07-19 12:16:46 -0700446 if (!(sta->flags & WLAN_STA_AUTH)) {
447 if (sta->flags & WLAN_STA_GAS) {
448 wpa_printf(MSG_DEBUG, "GAS: Remove temporary STA "
449 "entry " MACSTR, MAC2STR(sta->addr));
450 ap_free_sta(hapd, sta);
451 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700452 return;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700453 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700454
455 mlme_deauthenticate_indication(hapd, sta,
456 WLAN_REASON_PREV_AUTH_NOT_VALID);
457 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
458 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
459 "session timeout");
460 sta->acct_terminate_cause =
461 RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
462 os_memcpy(addr, sta->addr, ETH_ALEN);
463 ap_free_sta(hapd, sta);
464 hostapd_drv_sta_deauth(hapd, addr, WLAN_REASON_PREV_AUTH_NOT_VALID);
465}
466
467
468void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
469 u32 session_timeout)
470{
471 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
472 HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
473 "seconds", session_timeout);
474 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
475 eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
476 hapd, sta);
477}
478
479
480void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
481{
482 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
483}
484
485
486struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
487{
488 struct sta_info *sta;
489
490 sta = ap_get_sta(hapd, addr);
491 if (sta)
492 return sta;
493
494 wpa_printf(MSG_DEBUG, " New STA");
495 if (hapd->num_sta >= hapd->conf->max_num_sta) {
496 /* FIX: might try to remove some old STAs first? */
497 wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
498 hapd->num_sta, hapd->conf->max_num_sta);
499 return NULL;
500 }
501
502 sta = os_zalloc(sizeof(struct sta_info));
503 if (sta == NULL) {
504 wpa_printf(MSG_ERROR, "malloc failed");
505 return NULL;
506 }
507 sta->acct_interim_interval = hapd->conf->acct_interim_interval;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800508 accounting_sta_get_id(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700509
510 /* initialize STA info data */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700511 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
512 "for " MACSTR " (%d seconds - ap_max_inactivity)",
513 __func__, MAC2STR(addr),
514 hapd->conf->ap_max_inactivity);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700515 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
516 ap_handle_timer, hapd, sta);
517 os_memcpy(sta->addr, addr, ETH_ALEN);
518 sta->next = hapd->sta_list;
519 hapd->sta_list = sta;
520 hapd->num_sta++;
521 ap_sta_hash_add(hapd, sta);
522 sta->ssid = &hapd->conf->ssid;
523 ap_sta_remove_in_other_bss(hapd, sta);
524
525 return sta;
526}
527
528
529static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
530{
531 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
532
533 wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
534 MAC2STR(sta->addr));
535 if (hostapd_drv_sta_remove(hapd, sta->addr) &&
536 sta->flags & WLAN_STA_ASSOC) {
537 wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
538 " from kernel driver.", MAC2STR(sta->addr));
539 return -1;
540 }
541 return 0;
542}
543
544
545static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
546 struct sta_info *sta)
547{
548 struct hostapd_iface *iface = hapd->iface;
549 size_t i;
550
551 for (i = 0; i < iface->num_bss; i++) {
552 struct hostapd_data *bss = iface->bss[i];
553 struct sta_info *sta2;
554 /* bss should always be set during operation, but it may be
555 * NULL during reconfiguration. Assume the STA is not
556 * associated to another BSS in that case to avoid NULL pointer
557 * dereferences. */
558 if (bss == hapd || bss == NULL)
559 continue;
560 sta2 = ap_get_sta(bss, sta->addr);
561 if (!sta2)
562 continue;
563
564 ap_sta_disconnect(bss, sta2, sta2->addr,
565 WLAN_REASON_PREV_AUTH_NOT_VALID);
566 }
567}
568
569
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800570static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx)
571{
572 struct hostapd_data *hapd = eloop_ctx;
573 struct sta_info *sta = timeout_ctx;
574
575 ap_sta_remove(hapd, sta);
576 mlme_disassociate_indication(hapd, sta, sta->disassoc_reason);
577}
578
579
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700580void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
581 u16 reason)
582{
583 wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
584 hapd->conf->iface, MAC2STR(sta->addr));
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700585 sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800586 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700587 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700588 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
589 "for " MACSTR " (%d seconds - "
590 "AP_MAX_INACTIVITY_AFTER_DISASSOC)",
591 __func__, MAC2STR(sta->addr),
592 AP_MAX_INACTIVITY_AFTER_DISASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700593 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
594 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
595 ap_handle_timer, hapd, sta);
596 accounting_sta_stop(hapd, sta);
597 ieee802_1x_free_station(sta);
598
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800599 sta->disassoc_reason = reason;
600 sta->flags |= WLAN_STA_PENDING_DISASSOC_CB;
601 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
602 eloop_register_timeout(hapd->iface->drv_flags &
603 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
604 ap_sta_disassoc_cb_timeout, hapd, sta);
605}
606
607
608static void ap_sta_deauth_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_deauthenticate_indication(hapd, sta, sta->deauth_reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700615}
616
617
618void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
619 u16 reason)
620{
621 wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
622 hapd->conf->iface, MAC2STR(sta->addr));
623 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
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_REMOVE;
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_DEAUTH)",
629 __func__, MAC2STR(sta->addr),
630 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700631 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
632 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 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->deauth_reason = reason;
638 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
639 eloop_cancel_timeout(ap_sta_deauth_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_deauth_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700643}
644
645
Dmitry Shmidt04949592012-07-19 12:16:46 -0700646#ifdef CONFIG_WPS
647int ap_sta_wps_cancel(struct hostapd_data *hapd,
648 struct sta_info *sta, void *ctx)
649{
650 if (sta && (sta->flags & WLAN_STA_WPS)) {
651 ap_sta_deauthenticate(hapd, sta,
652 WLAN_REASON_PREV_AUTH_NOT_VALID);
653 wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
654 __func__, MAC2STR(sta->addr));
655 return 1;
656 }
657
658 return 0;
659}
660#endif /* CONFIG_WPS */
661
662
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700663int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
664 int old_vlanid)
665{
666#ifndef CONFIG_NO_VLAN
667 const char *iface;
668 struct hostapd_vlan *vlan = NULL;
669 int ret;
670
671 /*
672 * Do not proceed furthur if the vlan id remains same. We do not want
673 * duplicate dynamic vlan entries.
674 */
675 if (sta->vlan_id == old_vlanid)
676 return 0;
677
678 /*
679 * During 1x reauth, if the vlan id changes, then remove the old id and
680 * proceed furthur to add the new one.
681 */
682 if (old_vlanid > 0)
683 vlan_remove_dynamic(hapd, old_vlanid);
684
685 iface = hapd->conf->iface;
686 if (sta->ssid->vlan[0])
687 iface = sta->ssid->vlan;
688
689 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
690 sta->vlan_id = 0;
691 else if (sta->vlan_id > 0) {
692 vlan = hapd->conf->vlan;
693 while (vlan) {
694 if (vlan->vlan_id == sta->vlan_id ||
695 vlan->vlan_id == VLAN_ID_WILDCARD) {
696 iface = vlan->ifname;
697 break;
698 }
699 vlan = vlan->next;
700 }
701 }
702
703 if (sta->vlan_id > 0 && vlan == NULL) {
704 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
705 HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
706 "binding station to (vlan_id=%d)",
707 sta->vlan_id);
708 return -1;
709 } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
710 vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
711 if (vlan == NULL) {
712 hostapd_logger(hapd, sta->addr,
713 HOSTAPD_MODULE_IEEE80211,
714 HOSTAPD_LEVEL_DEBUG, "could not add "
715 "dynamic VLAN interface for vlan_id=%d",
716 sta->vlan_id);
717 return -1;
718 }
719
720 iface = vlan->ifname;
721 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
722 hostapd_logger(hapd, sta->addr,
723 HOSTAPD_MODULE_IEEE80211,
724 HOSTAPD_LEVEL_DEBUG, "could not "
725 "configure encryption for dynamic VLAN "
726 "interface for vlan_id=%d",
727 sta->vlan_id);
728 }
729
730 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
731 HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
732 "interface '%s'", iface);
733 } else if (vlan && vlan->vlan_id == sta->vlan_id) {
734 if (sta->vlan_id > 0) {
735 vlan->dynamic_vlan++;
736 hostapd_logger(hapd, sta->addr,
737 HOSTAPD_MODULE_IEEE80211,
738 HOSTAPD_LEVEL_DEBUG, "updated existing "
739 "dynamic VLAN interface '%s'", iface);
740 }
741
742 /*
743 * Update encryption configuration for statically generated
744 * VLAN interface. This is only used for static WEP
745 * configuration for the case where hostapd did not yet know
746 * which keys are to be used when the interface was added.
747 */
748 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
749 hostapd_logger(hapd, sta->addr,
750 HOSTAPD_MODULE_IEEE80211,
751 HOSTAPD_LEVEL_DEBUG, "could not "
752 "configure encryption for VLAN "
753 "interface for vlan_id=%d",
754 sta->vlan_id);
755 }
756 }
757
758 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
759 HOSTAPD_LEVEL_DEBUG, "binding station to interface "
760 "'%s'", iface);
761
762 if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
763 wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
764
765 ret = hostapd_drv_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
766 if (ret < 0) {
767 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
768 HOSTAPD_LEVEL_DEBUG, "could not bind the STA "
769 "entry to vlan_id=%d", sta->vlan_id);
770 }
771 return ret;
772#else /* CONFIG_NO_VLAN */
773 return 0;
774#endif /* CONFIG_NO_VLAN */
775}
776
777
778#ifdef CONFIG_IEEE80211W
779
780int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
781{
782 u32 tu;
783 struct os_time now, passed;
784 os_get_time(&now);
785 os_time_sub(&now, &sta->sa_query_start, &passed);
786 tu = (passed.sec * 1000000 + passed.usec) / 1024;
787 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
788 hostapd_logger(hapd, sta->addr,
789 HOSTAPD_MODULE_IEEE80211,
790 HOSTAPD_LEVEL_DEBUG,
791 "association SA Query timed out");
792 sta->sa_query_timed_out = 1;
793 os_free(sta->sa_query_trans_id);
794 sta->sa_query_trans_id = NULL;
795 sta->sa_query_count = 0;
796 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
797 return 1;
798 }
799
800 return 0;
801}
802
803
804static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
805{
806 struct hostapd_data *hapd = eloop_ctx;
807 struct sta_info *sta = timeout_ctx;
808 unsigned int timeout, sec, usec;
809 u8 *trans_id, *nbuf;
810
811 if (sta->sa_query_count > 0 &&
812 ap_check_sa_query_timeout(hapd, sta))
813 return;
814
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700815 nbuf = os_realloc_array(sta->sa_query_trans_id,
816 sta->sa_query_count + 1,
817 WLAN_SA_QUERY_TR_ID_LEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700818 if (nbuf == NULL)
819 return;
820 if (sta->sa_query_count == 0) {
821 /* Starting a new SA Query procedure */
822 os_get_time(&sta->sa_query_start);
823 }
824 trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
825 sta->sa_query_trans_id = nbuf;
826 sta->sa_query_count++;
827
828 os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN);
829
830 timeout = hapd->conf->assoc_sa_query_retry_timeout;
831 sec = ((timeout / 1000) * 1024) / 1000;
832 usec = (timeout % 1000) * 1024;
833 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
834
835 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
836 HOSTAPD_LEVEL_DEBUG,
837 "association SA Query attempt %d", sta->sa_query_count);
838
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700839 ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700840}
841
842
843void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
844{
845 ap_sa_query_timer(hapd, sta);
846}
847
848
849void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
850{
851 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
852 os_free(sta->sa_query_trans_id);
853 sta->sa_query_trans_id = NULL;
854 sta->sa_query_count = 0;
855}
856
857#endif /* CONFIG_IEEE80211W */
858
859
860void ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta,
861 int authorized)
862{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800863 const u8 *dev_addr = NULL;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700864 char buf[100];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700865#ifdef CONFIG_P2P
866 u8 addr[ETH_ALEN];
867#endif /* CONFIG_P2P */
868
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700869 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
870 return;
871
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800872#ifdef CONFIG_P2P
Dmitry Shmidt04949592012-07-19 12:16:46 -0700873 if (hapd->p2p_group == NULL) {
874 if (sta->p2p_ie != NULL &&
875 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
876 dev_addr = addr;
877 } else
878 dev_addr = p2p_group_get_dev_addr(hapd->p2p_group, sta->addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800879#endif /* CONFIG_P2P */
880
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700881 if (dev_addr)
882 os_snprintf(buf, sizeof(buf), MACSTR " p2p_dev_addr=" MACSTR,
883 MAC2STR(sta->addr), MAC2STR(dev_addr));
884 else
885 os_snprintf(buf, sizeof(buf), MACSTR, MAC2STR(sta->addr));
886
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800887 if (authorized) {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700888 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_CONNECTED "%s", buf);
889
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800890 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700891 hapd->msg_ctx_parent != hapd->msg_ctx)
892 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
893 AP_STA_CONNECTED "%s", buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800894
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700895 sta->flags |= WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800896 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700897 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED "%s", buf);
898
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800899 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700900 hapd->msg_ctx_parent != hapd->msg_ctx)
901 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
902 AP_STA_DISCONNECTED "%s", buf);
903
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700904 sta->flags &= ~WLAN_STA_AUTHORIZED;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800905 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700906
907 if (hapd->sta_authorized_cb)
908 hapd->sta_authorized_cb(hapd->sta_authorized_cb_ctx,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800909 sta->addr, authorized, dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700910}
911
912
913void ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
914 const u8 *addr, u16 reason)
915{
916
917 if (sta == NULL && addr)
918 sta = ap_get_sta(hapd, addr);
919
920 if (addr)
921 hostapd_drv_sta_deauth(hapd, addr, reason);
922
923 if (sta == NULL)
924 return;
925 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800926 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
927 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700928 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt04949592012-07-19 12:16:46 -0700929 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
930 "for " MACSTR " (%d seconds - "
931 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
932 __func__, MAC2STR(sta->addr),
933 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700934 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800935 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
936 ap_handle_timer, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700937 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800938
939 sta->deauth_reason = reason;
940 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
941 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
942 eloop_register_timeout(hapd->iface->drv_flags &
943 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
944 ap_sta_deauth_cb_timeout, hapd, sta);
945}
946
947
948void ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta)
949{
950 if (!(sta->flags & WLAN_STA_PENDING_DEAUTH_CB)) {
951 wpa_printf(MSG_DEBUG, "Ignore deauth cb for test frame");
952 return;
953 }
954 sta->flags &= ~WLAN_STA_PENDING_DEAUTH_CB;
955 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
956 ap_sta_deauth_cb_timeout(hapd, sta);
957}
958
959
960void ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta)
961{
962 if (!(sta->flags & WLAN_STA_PENDING_DISASSOC_CB)) {
963 wpa_printf(MSG_DEBUG, "Ignore disassoc cb for test frame");
964 return;
965 }
966 sta->flags &= ~WLAN_STA_PENDING_DISASSOC_CB;
967 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
968 ap_sta_disassoc_cb_timeout(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700969}