blob: 7e75e1a61e1ae3f7e87657e7521a24a5abf226e5 [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"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "p2p/p2p.h"
19#include "hostapd.h"
20#include "accounting.h"
21#include "ieee802_1x.h"
22#include "ieee802_11.h"
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080023#include "ieee802_11_auth.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070024#include "wpa_auth.h"
25#include "preauth_auth.h"
26#include "ap_config.h"
27#include "beacon.h"
28#include "ap_mlme.h"
29#include "vlan_init.h"
30#include "p2p_hostapd.h"
31#include "ap_drv_ops.h"
Dmitry Shmidt04949592012-07-19 12:16:46 -070032#include "gas_serv.h"
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080033#include "wnm_ap.h"
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -080034#include "ndisc_snoop.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070035#include "sta_info.h"
36
37static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
38 struct sta_info *sta);
39static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080040static void ap_handle_session_warning_timer(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080041static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx);
42static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070043#ifdef CONFIG_IEEE80211W
44static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx);
45#endif /* CONFIG_IEEE80211W */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -080046static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070047
48int ap_for_each_sta(struct hostapd_data *hapd,
49 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta,
50 void *ctx),
51 void *ctx)
52{
53 struct sta_info *sta;
54
55 for (sta = hapd->sta_list; sta; sta = sta->next) {
56 if (cb(hapd, sta, ctx))
57 return 1;
58 }
59
60 return 0;
61}
62
63
64struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta)
65{
66 struct sta_info *s;
67
68 s = hapd->sta_hash[STA_HASH(sta)];
69 while (s != NULL && os_memcmp(s->addr, sta, 6) != 0)
70 s = s->hnext;
71 return s;
72}
73
74
Dmitry Shmidt391c59f2013-09-03 12:16:28 -070075#ifdef CONFIG_P2P
76struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr)
77{
78 struct sta_info *sta;
79
80 for (sta = hapd->sta_list; sta; sta = sta->next) {
81 const u8 *p2p_dev_addr;
82
83 if (sta->p2p_ie == NULL)
84 continue;
85
86 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
87 if (p2p_dev_addr == NULL)
88 continue;
89
90 if (os_memcmp(p2p_dev_addr, addr, ETH_ALEN) == 0)
91 return sta;
92 }
93
94 return NULL;
95}
96#endif /* CONFIG_P2P */
97
98
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070099static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *sta)
100{
101 struct sta_info *tmp;
102
103 if (hapd->sta_list == sta) {
104 hapd->sta_list = sta->next;
105 return;
106 }
107
108 tmp = hapd->sta_list;
109 while (tmp != NULL && tmp->next != sta)
110 tmp = tmp->next;
111 if (tmp == NULL) {
112 wpa_printf(MSG_DEBUG, "Could not remove STA " MACSTR " from "
113 "list.", MAC2STR(sta->addr));
114 } else
115 tmp->next = sta->next;
116}
117
118
119void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta)
120{
121 sta->hnext = hapd->sta_hash[STA_HASH(sta->addr)];
122 hapd->sta_hash[STA_HASH(sta->addr)] = sta;
123}
124
125
126static void ap_sta_hash_del(struct hostapd_data *hapd, struct sta_info *sta)
127{
128 struct sta_info *s;
129
130 s = hapd->sta_hash[STA_HASH(sta->addr)];
131 if (s == NULL) return;
132 if (os_memcmp(s->addr, sta->addr, 6) == 0) {
133 hapd->sta_hash[STA_HASH(sta->addr)] = s->hnext;
134 return;
135 }
136
137 while (s->hnext != NULL &&
138 os_memcmp(s->hnext->addr, sta->addr, ETH_ALEN) != 0)
139 s = s->hnext;
140 if (s->hnext != NULL)
141 s->hnext = s->hnext->hnext;
142 else
143 wpa_printf(MSG_DEBUG, "AP: could not remove STA " MACSTR
144 " from hash table", MAC2STR(sta->addr));
145}
146
147
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800148void ap_sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *sta)
149{
150 sta_ip6addr_del(hapd, sta);
151}
152
153
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700154void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta)
155{
156 int set_beacon = 0;
157
158 accounting_sta_stop(hapd, sta);
159
160 /* just in case */
161 ap_sta_set_authorized(hapd, sta, 0);
162
163 if (sta->flags & WLAN_STA_WDS)
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -0700164 hostapd_set_wds_sta(hapd, NULL, sta->addr, sta->aid, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700165
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800166 if (sta->ipaddr)
167 hostapd_drv_br_delete_ip_neigh(hapd, 4, (u8 *) &sta->ipaddr);
168 ap_sta_ip6addr_del(hapd, sta);
169
Dmitry Shmidta38abf92014-03-06 13:38:44 -0800170 if (!hapd->iface->driver_ap_teardown &&
171 !(sta->flags & WLAN_STA_PREAUTH))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700172 hostapd_drv_sta_remove(hapd, sta->addr);
173
174 ap_sta_hash_del(hapd, sta);
175 ap_sta_list_del(hapd, sta);
176
177 if (sta->aid > 0)
178 hapd->sta_aid[(sta->aid - 1) / 32] &=
179 ~BIT((sta->aid - 1) % 32);
180
181 hapd->num_sta--;
182 if (sta->nonerp_set) {
183 sta->nonerp_set = 0;
184 hapd->iface->num_sta_non_erp--;
185 if (hapd->iface->num_sta_non_erp == 0)
186 set_beacon++;
187 }
188
189 if (sta->no_short_slot_time_set) {
190 sta->no_short_slot_time_set = 0;
191 hapd->iface->num_sta_no_short_slot_time--;
192 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
193 && hapd->iface->num_sta_no_short_slot_time == 0)
194 set_beacon++;
195 }
196
197 if (sta->no_short_preamble_set) {
198 sta->no_short_preamble_set = 0;
199 hapd->iface->num_sta_no_short_preamble--;
200 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
201 && hapd->iface->num_sta_no_short_preamble == 0)
202 set_beacon++;
203 }
204
205 if (sta->no_ht_gf_set) {
206 sta->no_ht_gf_set = 0;
207 hapd->iface->num_sta_ht_no_gf--;
208 }
209
210 if (sta->no_ht_set) {
211 sta->no_ht_set = 0;
212 hapd->iface->num_sta_no_ht--;
213 }
214
215 if (sta->ht_20mhz_set) {
216 sta->ht_20mhz_set = 0;
217 hapd->iface->num_sta_ht_20mhz--;
218 }
219
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700220#ifdef CONFIG_IEEE80211N
221 ht40_intolerant_remove(hapd->iface, sta);
222#endif /* CONFIG_IEEE80211N */
223
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700224#ifdef CONFIG_P2P
225 if (sta->no_p2p_set) {
226 sta->no_p2p_set = 0;
227 hapd->num_sta_no_p2p--;
228 if (hapd->num_sta_no_p2p == 0)
229 hostapd_p2p_non_p2p_sta_disconnected(hapd);
230 }
231#endif /* CONFIG_P2P */
232
233#if defined(NEED_AP_MLME) && defined(CONFIG_IEEE80211N)
234 if (hostapd_ht_operation_update(hapd->iface) > 0)
235 set_beacon++;
236#endif /* NEED_AP_MLME && CONFIG_IEEE80211N */
237
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800238#ifdef CONFIG_MESH
239 if (hapd->mesh_sta_free_cb)
240 hapd->mesh_sta_free_cb(sta);
241#endif /* CONFIG_MESH */
242
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700243 if (set_beacon)
244 ieee802_11_set_beacons(hapd->iface);
245
Dmitry Shmidt04949592012-07-19 12:16:46 -0700246 wpa_printf(MSG_DEBUG, "%s: cancel ap_handle_timer for " MACSTR,
247 __func__, MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700248 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
249 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800250 eloop_cancel_timeout(ap_handle_session_warning_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800251 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
252 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
Dmitry Shmidtff787d52015-01-12 13:01:47 -0800253 sae_clear_retransmit_timer(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700254
255 ieee802_1x_free_station(sta);
256 wpa_auth_sta_deinit(sta->wpa_sm);
257 rsn_preauth_free_station(hapd, sta);
258#ifndef CONFIG_NO_RADIUS
Dmitry Shmidt96571392013-10-14 12:54:46 -0700259 if (hapd->radius)
260 radius_client_flush_auth(hapd->radius, sta->addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700261#endif /* CONFIG_NO_RADIUS */
262
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700263 os_free(sta->challenge);
264
265#ifdef CONFIG_IEEE80211W
266 os_free(sta->sa_query_trans_id);
267 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
268#endif /* CONFIG_IEEE80211W */
269
270#ifdef CONFIG_P2P
271 p2p_group_notif_disassoc(hapd->p2p_group, sta->addr);
272#endif /* CONFIG_P2P */
273
Dmitry Shmidt04949592012-07-19 12:16:46 -0700274#ifdef CONFIG_INTERWORKING
275 if (sta->gas_dialog) {
276 int i;
277 for (i = 0; i < GAS_DIALOG_MAX; i++)
278 gas_serv_dialog_clear(&sta->gas_dialog[i]);
279 os_free(sta->gas_dialog);
280 }
281#endif /* CONFIG_INTERWORKING */
282
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700283 wpabuf_free(sta->wps_ie);
284 wpabuf_free(sta->p2p_ie);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800285 wpabuf_free(sta->hs20_ie);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700286
287 os_free(sta->ht_capabilities);
Dmitry Shmidt292b0c32013-11-22 12:54:42 -0800288 os_free(sta->vht_capabilities);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800289 hostapd_free_psk_list(sta->psk);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700290 os_free(sta->identity);
291 os_free(sta->radius_cui);
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800292 os_free(sta->remediation_url);
293 wpabuf_free(sta->hs20_deauth_req);
294 os_free(sta->hs20_session_info_url);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700295
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800296#ifdef CONFIG_SAE
297 sae_clear_data(sta->sae);
298 os_free(sta->sae);
299#endif /* CONFIG_SAE */
300
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700301 os_free(sta);
302}
303
304
305void hostapd_free_stas(struct hostapd_data *hapd)
306{
307 struct sta_info *sta, *prev;
308
309 sta = hapd->sta_list;
310
311 while (sta) {
312 prev = sta;
313 if (sta->flags & WLAN_STA_AUTH) {
314 mlme_deauthenticate_indication(
315 hapd, sta, WLAN_REASON_UNSPECIFIED);
316 }
317 sta = sta->next;
318 wpa_printf(MSG_DEBUG, "Removing station " MACSTR,
319 MAC2STR(prev->addr));
320 ap_free_sta(hapd, prev);
321 }
322}
323
324
325/**
326 * ap_handle_timer - Per STA timer handler
327 * @eloop_ctx: struct hostapd_data *
328 * @timeout_ctx: struct sta_info *
329 *
330 * This function is called to check station activity and to remove inactive
331 * stations.
332 */
333void ap_handle_timer(void *eloop_ctx, void *timeout_ctx)
334{
335 struct hostapd_data *hapd = eloop_ctx;
336 struct sta_info *sta = timeout_ctx;
337 unsigned long next_time = 0;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700338 int reason;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700339
Dmitry Shmidt04949592012-07-19 12:16:46 -0700340 wpa_printf(MSG_DEBUG, "%s: " MACSTR " flags=0x%x timeout_next=%d",
341 __func__, MAC2STR(sta->addr), sta->flags,
342 sta->timeout_next);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700343 if (sta->timeout_next == STA_REMOVE) {
344 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
345 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
346 "local deauth request");
347 ap_free_sta(hapd, sta);
348 return;
349 }
350
351 if ((sta->flags & WLAN_STA_ASSOC) &&
352 (sta->timeout_next == STA_NULLFUNC ||
353 sta->timeout_next == STA_DISASSOC)) {
354 int inactive_sec;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700355 /*
356 * Add random value to timeout so that we don't end up bouncing
357 * all stations at the same time if we have lots of associated
358 * stations that are idle (but keep re-associating).
359 */
360 int fuzz = os_random() % 20;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700361 inactive_sec = hostapd_drv_get_inact_sec(hapd, sta->addr);
362 if (inactive_sec == -1) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800363 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
364 "Check inactivity: Could not "
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800365 "get station info from kernel driver for "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700366 MACSTR, MAC2STR(sta->addr));
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -0800367 /*
368 * The driver may not support this functionality.
369 * Anyway, try again after the next inactivity timeout,
370 * but do not disconnect the station now.
371 */
Dmitry Shmidt04949592012-07-19 12:16:46 -0700372 next_time = hapd->conf->ap_max_inactivity + fuzz;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800373 } else if (inactive_sec == -ENOENT) {
374 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
375 "Station " MACSTR " has lost its driver entry",
376 MAC2STR(sta->addr));
377
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800378 /* Avoid sending client probe on removed client */
379 sta->timeout_next = STA_DISASSOC;
380 goto skip_poll;
Dmitry Shmidt2f74e362015-01-21 13:19:05 -0800381 } else if (inactive_sec < hapd->conf->ap_max_inactivity) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700382 /* station activity detected; reset timeout state */
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800383 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
384 "Station " MACSTR " has been active %is ago",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700385 MAC2STR(sta->addr), inactive_sec);
386 sta->timeout_next = STA_NULLFUNC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700387 next_time = hapd->conf->ap_max_inactivity + fuzz -
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700388 inactive_sec;
389 } else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800390 wpa_msg(hapd->msg_ctx, MSG_DEBUG,
391 "Station " MACSTR " has been "
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700392 "inactive too long: %d sec, max allowed: %d",
393 MAC2STR(sta->addr), inactive_sec,
394 hapd->conf->ap_max_inactivity);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800395
396 if (hapd->conf->skip_inactivity_poll)
397 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700398 }
399 }
400
401 if ((sta->flags & WLAN_STA_ASSOC) &&
402 sta->timeout_next == STA_DISASSOC &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800403 !(sta->flags & WLAN_STA_PENDING_POLL) &&
404 !hapd->conf->skip_inactivity_poll) {
405 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR
406 " has ACKed data poll", MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700407 /* data nullfunc frame poll did not produce TX errors; assume
408 * station ACKed it */
409 sta->timeout_next = STA_NULLFUNC;
410 next_time = hapd->conf->ap_max_inactivity;
411 }
412
Dmitry Shmidt7f656022015-02-25 14:36:37 -0800413skip_poll:
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700414 if (next_time) {
Dmitry Shmidt04949592012-07-19 12:16:46 -0700415 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
416 "for " MACSTR " (%lu seconds)",
417 __func__, MAC2STR(sta->addr), next_time);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700418 eloop_register_timeout(next_time, 0, ap_handle_timer, hapd,
419 sta);
420 return;
421 }
422
423 if (sta->timeout_next == STA_NULLFUNC &&
424 (sta->flags & WLAN_STA_ASSOC)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800425 wpa_printf(MSG_DEBUG, " Polling STA");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700426 sta->flags |= WLAN_STA_PENDING_POLL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800427 hostapd_drv_poll_client(hapd, hapd->own_addr, sta->addr,
428 sta->flags & WLAN_STA_WMM);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700429 } else if (sta->timeout_next != STA_REMOVE) {
430 int deauth = sta->timeout_next == STA_DEAUTH;
431
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800432 wpa_dbg(hapd->msg_ctx, MSG_DEBUG,
433 "Timeout, sending %s info to STA " MACSTR,
434 deauth ? "deauthentication" : "disassociation",
435 MAC2STR(sta->addr));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700436
437 if (deauth) {
438 hostapd_drv_sta_deauth(
439 hapd, sta->addr,
440 WLAN_REASON_PREV_AUTH_NOT_VALID);
441 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700442 reason = (sta->timeout_next == STA_DISASSOC) ?
443 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
444 WLAN_REASON_PREV_AUTH_NOT_VALID;
445
446 hostapd_drv_sta_disassoc(hapd, sta->addr, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700447 }
448 }
449
450 switch (sta->timeout_next) {
451 case STA_NULLFUNC:
452 sta->timeout_next = STA_DISASSOC;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700453 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
454 "for " MACSTR " (%d seconds - AP_DISASSOC_DELAY)",
455 __func__, MAC2STR(sta->addr), AP_DISASSOC_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700456 eloop_register_timeout(AP_DISASSOC_DELAY, 0, ap_handle_timer,
457 hapd, sta);
458 break;
459 case STA_DISASSOC:
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700460 case STA_DISASSOC_FROM_CLI:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800461 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700462 sta->flags &= ~WLAN_STA_ASSOC;
463 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
464 if (!sta->acct_terminate_cause)
465 sta->acct_terminate_cause =
466 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
467 accounting_sta_stop(hapd, sta);
468 ieee802_1x_free_station(sta);
469 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
470 HOSTAPD_LEVEL_INFO, "disassociated due to "
471 "inactivity");
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700472 reason = (sta->timeout_next == STA_DISASSOC) ?
473 WLAN_REASON_DISASSOC_DUE_TO_INACTIVITY :
474 WLAN_REASON_PREV_AUTH_NOT_VALID;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700475 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700476 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
477 "for " MACSTR " (%d seconds - AP_DEAUTH_DELAY)",
478 __func__, MAC2STR(sta->addr), AP_DEAUTH_DELAY);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700479 eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
480 hapd, sta);
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700481 mlme_disassociate_indication(hapd, sta, reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700482 break;
483 case STA_DEAUTH:
484 case STA_REMOVE:
485 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
486 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800487 "inactivity (timer DEAUTH/REMOVE)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700488 if (!sta->acct_terminate_cause)
489 sta->acct_terminate_cause =
490 RADIUS_ACCT_TERMINATE_CAUSE_IDLE_TIMEOUT;
491 mlme_deauthenticate_indication(
492 hapd, sta,
493 WLAN_REASON_PREV_AUTH_NOT_VALID);
494 ap_free_sta(hapd, sta);
495 break;
496 }
497}
498
499
500static void ap_handle_session_timer(void *eloop_ctx, void *timeout_ctx)
501{
502 struct hostapd_data *hapd = eloop_ctx;
503 struct sta_info *sta = timeout_ctx;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700504
Dmitry Shmidt04949592012-07-19 12:16:46 -0700505 if (!(sta->flags & WLAN_STA_AUTH)) {
506 if (sta->flags & WLAN_STA_GAS) {
507 wpa_printf(MSG_DEBUG, "GAS: Remove temporary STA "
508 "entry " MACSTR, MAC2STR(sta->addr));
509 ap_free_sta(hapd, sta);
510 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700511 return;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700512 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700513
Dmitry Shmidt818ea482014-03-10 13:15:21 -0700514 hostapd_drv_sta_deauth(hapd, sta->addr,
515 WLAN_REASON_PREV_AUTH_NOT_VALID);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700516 mlme_deauthenticate_indication(hapd, sta,
517 WLAN_REASON_PREV_AUTH_NOT_VALID);
518 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
519 HOSTAPD_LEVEL_INFO, "deauthenticated due to "
520 "session timeout");
521 sta->acct_terminate_cause =
522 RADIUS_ACCT_TERMINATE_CAUSE_SESSION_TIMEOUT;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700523 ap_free_sta(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700524}
525
526
Dmitry Shmidt54605472013-11-08 11:10:19 -0800527void ap_sta_replenish_timeout(struct hostapd_data *hapd, struct sta_info *sta,
528 u32 session_timeout)
529{
530 if (eloop_replenish_timeout(session_timeout, 0,
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800531 ap_handle_session_timer, hapd, sta) == 1) {
Dmitry Shmidt54605472013-11-08 11:10:19 -0800532 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
533 HOSTAPD_LEVEL_DEBUG, "setting session timeout "
534 "to %d seconds", session_timeout);
535 }
536}
537
538
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700539void ap_sta_session_timeout(struct hostapd_data *hapd, struct sta_info *sta,
540 u32 session_timeout)
541{
542 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
543 HOSTAPD_LEVEL_DEBUG, "setting session timeout to %d "
544 "seconds", session_timeout);
545 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
546 eloop_register_timeout(session_timeout, 0, ap_handle_session_timer,
547 hapd, sta);
548}
549
550
551void ap_sta_no_session_timeout(struct hostapd_data *hapd, struct sta_info *sta)
552{
553 eloop_cancel_timeout(ap_handle_session_timer, hapd, sta);
554}
555
556
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800557static void ap_handle_session_warning_timer(void *eloop_ctx, void *timeout_ctx)
558{
559#ifdef CONFIG_WNM
560 struct hostapd_data *hapd = eloop_ctx;
561 struct sta_info *sta = timeout_ctx;
562
563 wpa_printf(MSG_DEBUG, "WNM: Session warning time reached for " MACSTR,
564 MAC2STR(sta->addr));
565 if (sta->hs20_session_info_url == NULL)
566 return;
567
568 wnm_send_ess_disassoc_imminent(hapd, sta, sta->hs20_session_info_url,
569 sta->hs20_disassoc_timer);
570#endif /* CONFIG_WNM */
571}
572
573
574void ap_sta_session_warning_timeout(struct hostapd_data *hapd,
575 struct sta_info *sta, int warning_time)
576{
577 eloop_cancel_timeout(ap_handle_session_warning_timer, hapd, sta);
578 eloop_register_timeout(warning_time, 0, ap_handle_session_warning_timer,
579 hapd, sta);
580}
581
582
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700583struct sta_info * ap_sta_add(struct hostapd_data *hapd, const u8 *addr)
584{
585 struct sta_info *sta;
586
587 sta = ap_get_sta(hapd, addr);
588 if (sta)
589 return sta;
590
591 wpa_printf(MSG_DEBUG, " New STA");
592 if (hapd->num_sta >= hapd->conf->max_num_sta) {
593 /* FIX: might try to remove some old STAs first? */
594 wpa_printf(MSG_DEBUG, "no more room for new STAs (%d/%d)",
595 hapd->num_sta, hapd->conf->max_num_sta);
596 return NULL;
597 }
598
599 sta = os_zalloc(sizeof(struct sta_info));
600 if (sta == NULL) {
601 wpa_printf(MSG_ERROR, "malloc failed");
602 return NULL;
603 }
604 sta->acct_interim_interval = hapd->conf->acct_interim_interval;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800605 accounting_sta_get_id(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700606
Dmitry Shmidt01904cf2013-12-05 11:08:35 -0800607 if (!(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_INACTIVITY_TIMER)) {
608 wpa_printf(MSG_DEBUG, "%s: register ap_handle_timer timeout "
609 "for " MACSTR " (%d seconds - ap_max_inactivity)",
610 __func__, MAC2STR(addr),
611 hapd->conf->ap_max_inactivity);
612 eloop_register_timeout(hapd->conf->ap_max_inactivity, 0,
613 ap_handle_timer, hapd, sta);
614 }
615
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700616 /* initialize STA info data */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700617 os_memcpy(sta->addr, addr, ETH_ALEN);
618 sta->next = hapd->sta_list;
619 hapd->sta_list = sta;
620 hapd->num_sta++;
621 ap_sta_hash_add(hapd, sta);
622 sta->ssid = &hapd->conf->ssid;
623 ap_sta_remove_in_other_bss(hapd, sta);
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800624 sta->last_seq_ctrl = WLAN_INVALID_MGMT_SEQ;
625 dl_list_init(&sta->ip6addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700626
627 return sta;
628}
629
630
631static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta)
632{
633 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
634
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800635 if (sta->ipaddr)
636 hostapd_drv_br_delete_ip_neigh(hapd, 4, (u8 *) &sta->ipaddr);
637 ap_sta_ip6addr_del(hapd, sta);
638
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700639 wpa_printf(MSG_DEBUG, "Removing STA " MACSTR " from kernel driver",
640 MAC2STR(sta->addr));
641 if (hostapd_drv_sta_remove(hapd, sta->addr) &&
642 sta->flags & WLAN_STA_ASSOC) {
643 wpa_printf(MSG_DEBUG, "Could not remove station " MACSTR
644 " from kernel driver.", MAC2STR(sta->addr));
645 return -1;
646 }
647 return 0;
648}
649
650
651static void ap_sta_remove_in_other_bss(struct hostapd_data *hapd,
652 struct sta_info *sta)
653{
654 struct hostapd_iface *iface = hapd->iface;
655 size_t i;
656
657 for (i = 0; i < iface->num_bss; i++) {
658 struct hostapd_data *bss = iface->bss[i];
659 struct sta_info *sta2;
660 /* bss should always be set during operation, but it may be
661 * NULL during reconfiguration. Assume the STA is not
662 * associated to another BSS in that case to avoid NULL pointer
663 * dereferences. */
664 if (bss == hapd || bss == NULL)
665 continue;
666 sta2 = ap_get_sta(bss, sta->addr);
667 if (!sta2)
668 continue;
669
670 ap_sta_disconnect(bss, sta2, sta2->addr,
671 WLAN_REASON_PREV_AUTH_NOT_VALID);
672 }
673}
674
675
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800676static void ap_sta_disassoc_cb_timeout(void *eloop_ctx, void *timeout_ctx)
677{
678 struct hostapd_data *hapd = eloop_ctx;
679 struct sta_info *sta = timeout_ctx;
680
681 ap_sta_remove(hapd, sta);
682 mlme_disassociate_indication(hapd, sta, sta->disassoc_reason);
683}
684
685
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700686void ap_sta_disassociate(struct hostapd_data *hapd, struct sta_info *sta,
687 u16 reason)
688{
689 wpa_printf(MSG_DEBUG, "%s: disassociate STA " MACSTR,
690 hapd->conf->iface, MAC2STR(sta->addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800691 sta->last_seq_ctrl = WLAN_INVALID_MGMT_SEQ;
Dmitry Shmidt700a1372013-03-15 14:14:44 -0700692 sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800693 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700694 sta->timeout_next = STA_DEAUTH;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700695 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
696 "for " MACSTR " (%d seconds - "
697 "AP_MAX_INACTIVITY_AFTER_DISASSOC)",
698 __func__, MAC2STR(sta->addr),
699 AP_MAX_INACTIVITY_AFTER_DISASSOC);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700700 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
701 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DISASSOC, 0,
702 ap_handle_timer, hapd, sta);
703 accounting_sta_stop(hapd, sta);
704 ieee802_1x_free_station(sta);
705
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800706 sta->disassoc_reason = reason;
707 sta->flags |= WLAN_STA_PENDING_DISASSOC_CB;
708 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
709 eloop_register_timeout(hapd->iface->drv_flags &
710 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
711 ap_sta_disassoc_cb_timeout, hapd, sta);
712}
713
714
715static void ap_sta_deauth_cb_timeout(void *eloop_ctx, void *timeout_ctx)
716{
717 struct hostapd_data *hapd = eloop_ctx;
718 struct sta_info *sta = timeout_ctx;
719
720 ap_sta_remove(hapd, sta);
721 mlme_deauthenticate_indication(hapd, sta, sta->deauth_reason);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700722}
723
724
725void ap_sta_deauthenticate(struct hostapd_data *hapd, struct sta_info *sta,
726 u16 reason)
727{
728 wpa_printf(MSG_DEBUG, "%s: deauthenticate STA " MACSTR,
729 hapd->conf->iface, MAC2STR(sta->addr));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800730 sta->last_seq_ctrl = WLAN_INVALID_MGMT_SEQ;
731 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800732 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700733 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt04949592012-07-19 12:16:46 -0700734 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
735 "for " MACSTR " (%d seconds - "
736 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
737 __func__, MAC2STR(sta->addr),
738 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700739 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
740 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
741 ap_handle_timer, hapd, sta);
742 accounting_sta_stop(hapd, sta);
743 ieee802_1x_free_station(sta);
744
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800745 sta->deauth_reason = reason;
746 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
747 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
748 eloop_register_timeout(hapd->iface->drv_flags &
749 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
750 ap_sta_deauth_cb_timeout, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700751}
752
753
Dmitry Shmidt04949592012-07-19 12:16:46 -0700754#ifdef CONFIG_WPS
755int ap_sta_wps_cancel(struct hostapd_data *hapd,
756 struct sta_info *sta, void *ctx)
757{
758 if (sta && (sta->flags & WLAN_STA_WPS)) {
759 ap_sta_deauthenticate(hapd, sta,
760 WLAN_REASON_PREV_AUTH_NOT_VALID);
761 wpa_printf(MSG_DEBUG, "WPS: %s: Deauth sta=" MACSTR,
762 __func__, MAC2STR(sta->addr));
763 return 1;
764 }
765
766 return 0;
767}
768#endif /* CONFIG_WPS */
769
770
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700771int ap_sta_bind_vlan(struct hostapd_data *hapd, struct sta_info *sta,
772 int old_vlanid)
773{
774#ifndef CONFIG_NO_VLAN
775 const char *iface;
776 struct hostapd_vlan *vlan = NULL;
777 int ret;
778
779 /*
780 * Do not proceed furthur if the vlan id remains same. We do not want
781 * duplicate dynamic vlan entries.
782 */
783 if (sta->vlan_id == old_vlanid)
784 return 0;
785
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700786 iface = hapd->conf->iface;
787 if (sta->ssid->vlan[0])
788 iface = sta->ssid->vlan;
789
790 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
791 sta->vlan_id = 0;
792 else if (sta->vlan_id > 0) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700793 struct hostapd_vlan *wildcard_vlan = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700794 vlan = hapd->conf->vlan;
795 while (vlan) {
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700796 if (vlan->vlan_id == sta->vlan_id)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700797 break;
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700798 if (vlan->vlan_id == VLAN_ID_WILDCARD)
799 wildcard_vlan = vlan;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700800 vlan = vlan->next;
801 }
Dmitry Shmidtd5c075b2013-08-05 14:36:10 -0700802 if (!vlan)
803 vlan = wildcard_vlan;
804 if (vlan)
805 iface = vlan->ifname;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700806 }
807
808 if (sta->vlan_id > 0 && vlan == NULL) {
809 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
810 HOSTAPD_LEVEL_DEBUG, "could not find VLAN for "
811 "binding station to (vlan_id=%d)",
812 sta->vlan_id);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800813 ret = -1;
814 goto done;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700815 } else if (sta->vlan_id > 0 && vlan->vlan_id == VLAN_ID_WILDCARD) {
816 vlan = vlan_add_dynamic(hapd, vlan, sta->vlan_id);
817 if (vlan == NULL) {
818 hostapd_logger(hapd, sta->addr,
819 HOSTAPD_MODULE_IEEE80211,
820 HOSTAPD_LEVEL_DEBUG, "could not add "
821 "dynamic VLAN interface for vlan_id=%d",
822 sta->vlan_id);
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800823 ret = -1;
824 goto done;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700825 }
826
827 iface = vlan->ifname;
828 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
829 hostapd_logger(hapd, sta->addr,
830 HOSTAPD_MODULE_IEEE80211,
831 HOSTAPD_LEVEL_DEBUG, "could not "
832 "configure encryption for dynamic VLAN "
833 "interface for vlan_id=%d",
834 sta->vlan_id);
835 }
836
837 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
838 HOSTAPD_LEVEL_DEBUG, "added new dynamic VLAN "
839 "interface '%s'", iface);
840 } else if (vlan && vlan->vlan_id == sta->vlan_id) {
841 if (sta->vlan_id > 0) {
842 vlan->dynamic_vlan++;
843 hostapd_logger(hapd, sta->addr,
844 HOSTAPD_MODULE_IEEE80211,
845 HOSTAPD_LEVEL_DEBUG, "updated existing "
846 "dynamic VLAN interface '%s'", iface);
847 }
848
849 /*
850 * Update encryption configuration for statically generated
851 * VLAN interface. This is only used for static WEP
852 * configuration for the case where hostapd did not yet know
853 * which keys are to be used when the interface was added.
854 */
855 if (vlan_setup_encryption_dyn(hapd, sta->ssid, iface) != 0) {
856 hostapd_logger(hapd, sta->addr,
857 HOSTAPD_MODULE_IEEE80211,
858 HOSTAPD_LEVEL_DEBUG, "could not "
859 "configure encryption for VLAN "
860 "interface for vlan_id=%d",
861 sta->vlan_id);
862 }
863 }
864
865 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
866 HOSTAPD_LEVEL_DEBUG, "binding station to interface "
867 "'%s'", iface);
868
869 if (wpa_auth_sta_set_vlan(sta->wpa_sm, sta->vlan_id) < 0)
870 wpa_printf(MSG_INFO, "Failed to update VLAN-ID for WPA");
871
872 ret = hostapd_drv_set_sta_vlan(iface, hapd, sta->addr, sta->vlan_id);
873 if (ret < 0) {
874 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
875 HOSTAPD_LEVEL_DEBUG, "could not bind the STA "
876 "entry to vlan_id=%d", sta->vlan_id);
877 }
Dmitry Shmidt216983b2015-02-06 10:50:36 -0800878
879done:
880 /* During 1x reauth, if the vlan id changes, then remove the old id. */
881 if (old_vlanid > 0)
882 vlan_remove_dynamic(hapd, old_vlanid);
883
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700884 return ret;
885#else /* CONFIG_NO_VLAN */
886 return 0;
887#endif /* CONFIG_NO_VLAN */
888}
889
890
891#ifdef CONFIG_IEEE80211W
892
893int ap_check_sa_query_timeout(struct hostapd_data *hapd, struct sta_info *sta)
894{
895 u32 tu;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800896 struct os_reltime now, passed;
897 os_get_reltime(&now);
898 os_reltime_sub(&now, &sta->sa_query_start, &passed);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700899 tu = (passed.sec * 1000000 + passed.usec) / 1024;
900 if (hapd->conf->assoc_sa_query_max_timeout < tu) {
901 hostapd_logger(hapd, sta->addr,
902 HOSTAPD_MODULE_IEEE80211,
903 HOSTAPD_LEVEL_DEBUG,
904 "association SA Query timed out");
905 sta->sa_query_timed_out = 1;
906 os_free(sta->sa_query_trans_id);
907 sta->sa_query_trans_id = NULL;
908 sta->sa_query_count = 0;
909 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
910 return 1;
911 }
912
913 return 0;
914}
915
916
917static void ap_sa_query_timer(void *eloop_ctx, void *timeout_ctx)
918{
919 struct hostapd_data *hapd = eloop_ctx;
920 struct sta_info *sta = timeout_ctx;
921 unsigned int timeout, sec, usec;
922 u8 *trans_id, *nbuf;
923
924 if (sta->sa_query_count > 0 &&
925 ap_check_sa_query_timeout(hapd, sta))
926 return;
927
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700928 nbuf = os_realloc_array(sta->sa_query_trans_id,
929 sta->sa_query_count + 1,
930 WLAN_SA_QUERY_TR_ID_LEN);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700931 if (nbuf == NULL)
932 return;
933 if (sta->sa_query_count == 0) {
934 /* Starting a new SA Query procedure */
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800935 os_get_reltime(&sta->sa_query_start);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700936 }
937 trans_id = nbuf + sta->sa_query_count * WLAN_SA_QUERY_TR_ID_LEN;
938 sta->sa_query_trans_id = nbuf;
939 sta->sa_query_count++;
940
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800941 if (os_get_random(trans_id, WLAN_SA_QUERY_TR_ID_LEN) < 0) {
942 /*
943 * We don't really care which ID is used here, so simply
944 * hardcode this if the mostly theoretical os_get_random()
945 * failure happens.
946 */
947 trans_id[0] = 0x12;
948 trans_id[1] = 0x34;
949 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700950
951 timeout = hapd->conf->assoc_sa_query_retry_timeout;
952 sec = ((timeout / 1000) * 1024) / 1000;
953 usec = (timeout % 1000) * 1024;
954 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
955
956 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
957 HOSTAPD_LEVEL_DEBUG,
958 "association SA Query attempt %d", sta->sa_query_count);
959
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700960 ieee802_11_send_sa_query_req(hapd, sta->addr, trans_id);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700961}
962
963
964void ap_sta_start_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
965{
966 ap_sa_query_timer(hapd, sta);
967}
968
969
970void ap_sta_stop_sa_query(struct hostapd_data *hapd, struct sta_info *sta)
971{
972 eloop_cancel_timeout(ap_sa_query_timer, hapd, sta);
973 os_free(sta->sa_query_trans_id);
974 sta->sa_query_trans_id = NULL;
975 sta->sa_query_count = 0;
976}
977
978#endif /* CONFIG_IEEE80211W */
979
980
981void ap_sta_set_authorized(struct hostapd_data *hapd, struct sta_info *sta,
982 int authorized)
983{
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800984 const u8 *dev_addr = NULL;
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -0700985 char buf[100];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700986#ifdef CONFIG_P2P
987 u8 addr[ETH_ALEN];
Dmitry Shmidtcf32e602014-01-28 10:57:39 -0800988 u8 ip_addr_buf[4];
Dmitry Shmidt04949592012-07-19 12:16:46 -0700989#endif /* CONFIG_P2P */
990
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700991 if (!!authorized == !!(sta->flags & WLAN_STA_AUTHORIZED))
992 return;
993
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -0800994 if (authorized)
995 sta->flags |= WLAN_STA_AUTHORIZED;
996 else
997 sta->flags &= ~WLAN_STA_AUTHORIZED;
998
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800999#ifdef CONFIG_P2P
Dmitry Shmidt04949592012-07-19 12:16:46 -07001000 if (hapd->p2p_group == NULL) {
1001 if (sta->p2p_ie != NULL &&
1002 p2p_parse_dev_addr_in_p2p_ie(sta->p2p_ie, addr) == 0)
1003 dev_addr = addr;
1004 } else
1005 dev_addr = p2p_group_get_dev_addr(hapd->p2p_group, sta->addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001006
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001007 if (dev_addr)
1008 os_snprintf(buf, sizeof(buf), MACSTR " p2p_dev_addr=" MACSTR,
1009 MAC2STR(sta->addr), MAC2STR(dev_addr));
1010 else
Dmitry Shmidt661b4f72014-09-29 14:58:27 -07001011#endif /* CONFIG_P2P */
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001012 os_snprintf(buf, sizeof(buf), MACSTR, MAC2STR(sta->addr));
1013
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001014 if (hapd->sta_authorized_cb)
1015 hapd->sta_authorized_cb(hapd->sta_authorized_cb_ctx,
1016 sta->addr, authorized, dev_addr);
1017
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001018 if (authorized) {
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001019 char ip_addr[100];
1020 ip_addr[0] = '\0';
1021#ifdef CONFIG_P2P
1022 if (wpa_auth_get_ip_addr(sta->wpa_sm, ip_addr_buf) == 0) {
1023 os_snprintf(ip_addr, sizeof(ip_addr),
1024 " ip_addr=%u.%u.%u.%u",
1025 ip_addr_buf[0], ip_addr_buf[1],
1026 ip_addr_buf[2], ip_addr_buf[3]);
1027 }
1028#endif /* CONFIG_P2P */
1029
1030 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_CONNECTED "%s%s",
1031 buf, ip_addr);
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001032
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001033 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001034 hapd->msg_ctx_parent != hapd->msg_ctx)
1035 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
Dmitry Shmidtcf32e602014-01-28 10:57:39 -08001036 AP_STA_CONNECTED "%s%s",
1037 buf, ip_addr);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001038 } else {
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001039 wpa_msg(hapd->msg_ctx, MSG_INFO, AP_STA_DISCONNECTED "%s", buf);
1040
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001041 if (hapd->msg_ctx_parent &&
Dmitry Shmidtb6e9aaf2013-05-20 14:49:44 -07001042 hapd->msg_ctx_parent != hapd->msg_ctx)
1043 wpa_msg_no_global(hapd->msg_ctx_parent, MSG_INFO,
1044 AP_STA_DISCONNECTED "%s", buf);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001045 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001046}
1047
1048
1049void ap_sta_disconnect(struct hostapd_data *hapd, struct sta_info *sta,
1050 const u8 *addr, u16 reason)
1051{
1052
1053 if (sta == NULL && addr)
1054 sta = ap_get_sta(hapd, addr);
1055
1056 if (addr)
1057 hostapd_drv_sta_deauth(hapd, addr, reason);
1058
1059 if (sta == NULL)
1060 return;
1061 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08001062 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
1063 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001064 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001065 wpa_printf(MSG_DEBUG, "%s: reschedule ap_handle_timer timeout "
1066 "for " MACSTR " (%d seconds - "
1067 "AP_MAX_INACTIVITY_AFTER_DEAUTH)",
1068 __func__, MAC2STR(sta->addr),
1069 AP_MAX_INACTIVITY_AFTER_DEAUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001070 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001071 eloop_register_timeout(AP_MAX_INACTIVITY_AFTER_DEAUTH, 0,
1072 ap_handle_timer, hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001073 sta->timeout_next = STA_REMOVE;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001074
1075 sta->deauth_reason = reason;
1076 sta->flags |= WLAN_STA_PENDING_DEAUTH_CB;
1077 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
1078 eloop_register_timeout(hapd->iface->drv_flags &
1079 WPA_DRIVER_FLAGS_DEAUTH_TX_STATUS ? 2 : 0, 0,
1080 ap_sta_deauth_cb_timeout, hapd, sta);
1081}
1082
1083
1084void ap_sta_deauth_cb(struct hostapd_data *hapd, struct sta_info *sta)
1085{
1086 if (!(sta->flags & WLAN_STA_PENDING_DEAUTH_CB)) {
1087 wpa_printf(MSG_DEBUG, "Ignore deauth cb for test frame");
1088 return;
1089 }
1090 sta->flags &= ~WLAN_STA_PENDING_DEAUTH_CB;
1091 eloop_cancel_timeout(ap_sta_deauth_cb_timeout, hapd, sta);
1092 ap_sta_deauth_cb_timeout(hapd, sta);
1093}
1094
1095
1096void ap_sta_disassoc_cb(struct hostapd_data *hapd, struct sta_info *sta)
1097{
1098 if (!(sta->flags & WLAN_STA_PENDING_DISASSOC_CB)) {
1099 wpa_printf(MSG_DEBUG, "Ignore disassoc cb for test frame");
1100 return;
1101 }
1102 sta->flags &= ~WLAN_STA_PENDING_DISASSOC_CB;
1103 eloop_cancel_timeout(ap_sta_disassoc_cb_timeout, hapd, sta);
1104 ap_sta_disassoc_cb_timeout(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001105}
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001106
1107
1108int ap_sta_flags_txt(u32 flags, char *buf, size_t buflen)
1109{
1110 int res;
1111
1112 buf[0] = '\0';
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001113 res = os_snprintf(buf, buflen, "%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s",
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001114 (flags & WLAN_STA_AUTH ? "[AUTH]" : ""),
1115 (flags & WLAN_STA_ASSOC ? "[ASSOC]" : ""),
1116 (flags & WLAN_STA_AUTHORIZED ? "[AUTHORIZED]" : ""),
1117 (flags & WLAN_STA_PENDING_POLL ? "[PENDING_POLL" :
1118 ""),
1119 (flags & WLAN_STA_SHORT_PREAMBLE ?
1120 "[SHORT_PREAMBLE]" : ""),
1121 (flags & WLAN_STA_PREAUTH ? "[PREAUTH]" : ""),
1122 (flags & WLAN_STA_WMM ? "[WMM]" : ""),
1123 (flags & WLAN_STA_MFP ? "[MFP]" : ""),
1124 (flags & WLAN_STA_WPS ? "[WPS]" : ""),
1125 (flags & WLAN_STA_MAYBE_WPS ? "[MAYBE_WPS]" : ""),
1126 (flags & WLAN_STA_WDS ? "[WDS]" : ""),
1127 (flags & WLAN_STA_NONERP ? "[NonERP]" : ""),
1128 (flags & WLAN_STA_WPS2 ? "[WPS2]" : ""),
1129 (flags & WLAN_STA_GAS ? "[GAS]" : ""),
1130 (flags & WLAN_STA_VHT ? "[VHT]" : ""),
Dmitry Shmidt2f74e362015-01-21 13:19:05 -08001131 (flags & WLAN_STA_VENDOR_VHT ? "[VENDOR_VHT]" : ""),
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001132 (flags & WLAN_STA_WNM_SLEEP_MODE ?
1133 "[WNM_SLEEP_MODE]" : ""));
Dmitry Shmidt6c0da2b2015-01-05 13:08:17 -08001134 if (os_snprintf_error(buflen, res))
1135 res = -1;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001136
1137 return res;
1138}