]> git.ipfire.org Git - thirdparty/hostap.git/blame - hostapd/ieee802_11.c
WPS: As a workaround, pad zero-length device attributes
[thirdparty/hostap.git] / hostapd / ieee802_11.c
CommitLineData
6fc6879b
JM
1/*
2 * hostapd / IEEE 802.11 Management
3 * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
71b6ae14 4 * Copyright (c) 2007-2008, Intel Corporation
6fc6879b
JM
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
9 *
10 * Alternatively, this software may be distributed under the terms of BSD
11 * license.
12 *
13 * See README and COPYING for more details.
14 */
15
16#include "includes.h"
17
18#ifndef CONFIG_NATIVE_WINDOWS
19
20#include <net/if.h>
21
22#include "eloop.h"
23#include "hostapd.h"
24#include "ieee802_11.h"
25#include "beacon.h"
26#include "hw_features.h"
27#include "radius/radius.h"
28#include "radius/radius_client.h"
29#include "ieee802_11_auth.h"
30#include "sta_info.h"
31#include "rc4.h"
32#include "ieee802_1x.h"
33#include "wpa.h"
34#include "wme.h"
35#include "ap_list.h"
36#include "accounting.h"
37#include "driver.h"
6fc6879b
JM
38#include "mlme.h"
39
40
41u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
42{
43 u8 *pos = eid;
44 int i, num, count;
45
46 if (hapd->iface->current_rates == NULL)
47 return eid;
48
49 *pos++ = WLAN_EID_SUPP_RATES;
50 num = hapd->iface->num_rates;
51 if (num > 8) {
52 /* rest of the rates are encoded in Extended supported
53 * rates element */
54 num = 8;
55 }
56
57 *pos++ = num;
58 count = 0;
59 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num;
60 i++) {
61 count++;
62 *pos = hapd->iface->current_rates[i].rate / 5;
63 if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
64 *pos |= 0x80;
65 pos++;
66 }
67
68 return pos;
69}
70
71
72u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
73{
74 u8 *pos = eid;
75 int i, num, count;
76
77 if (hapd->iface->current_rates == NULL)
78 return eid;
79
80 num = hapd->iface->num_rates;
81 if (num <= 8)
82 return eid;
83 num -= 8;
84
85 *pos++ = WLAN_EID_EXT_SUPP_RATES;
86 *pos++ = num;
87 count = 0;
88 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num + 8;
89 i++) {
90 count++;
91 if (count <= 8)
92 continue; /* already in SuppRates IE */
93 *pos = hapd->iface->current_rates[i].rate / 5;
94 if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
95 *pos |= 0x80;
96 pos++;
97 }
98
99 return pos;
100}
101
102
de9289c8
JM
103u8 * hostapd_eid_ht_capabilities_info(struct hostapd_data *hapd, u8 *eid)
104{
9d2a76a2 105#ifdef CONFIG_IEEE80211N
edd360e1 106 struct ieee80211_ht_capability *cap;
de9289c8 107 u8 *pos = eid;
edd360e1 108
9d2a76a2 109 if (!hapd->iconf->ieee80211n)
edd360e1
JM
110 return eid;
111
112 *pos++ = WLAN_EID_HT_CAP;
113 *pos++ = sizeof(*cap);
114
115 cap = (struct ieee80211_ht_capability *) pos;
116 os_memset(cap, 0, sizeof(*cap));
117 SET_2BIT_U8(&cap->mac_ht_params_info,
118 MAC_HT_PARAM_INFO_MAX_RX_AMPDU_FACTOR_OFFSET,
119 MAX_RX_AMPDU_FACTOR_64KB);
120
9d2a76a2 121 cap->capabilities_info = host_to_le16(hapd->iconf->ht_capab);
edd360e1
JM
122
123 cap->supported_mcs_set[0] = 0xff;
124 cap->supported_mcs_set[1] = 0xff;
125
126 pos += sizeof(*cap);
127
de9289c8 128 return pos;
9d2a76a2
JM
129#else /* CONFIG_IEEE80211N */
130 return eid;
131#endif /* CONFIG_IEEE80211N */
de9289c8
JM
132}
133
134
135u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid)
136{
9d2a76a2 137#ifdef CONFIG_IEEE80211N
edd360e1 138 struct ieee80211_ht_operation *oper;
de9289c8 139 u8 *pos = eid;
edd360e1 140
9d2a76a2 141 if (!hapd->iconf->ieee80211n)
edd360e1
JM
142 return eid;
143
144 *pos++ = WLAN_EID_HT_OPERATION;
145 *pos++ = sizeof(*oper);
146
147 oper = (struct ieee80211_ht_operation *) pos;
148 os_memset(oper, 0, sizeof(*oper));
149
a8d8410e 150 oper->control_chan = hapd->iconf->channel;
edd360e1 151 oper->operation_mode = host_to_le16(hapd->iface->ht_op_mode);
a8d8410e 152 if (hapd->iconf->secondary_channel == 1)
cd587cce
JM
153 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_ABOVE |
154 HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH;
a8d8410e 155 if (hapd->iconf->secondary_channel == -1)
cd587cce
JM
156 oper->ht_param |= HT_INFO_HT_PARAM_SECONDARY_CHNL_BELOW |
157 HT_INFO_HT_PARAM_REC_TRANS_CHNL_WIDTH;
edd360e1
JM
158
159 pos += sizeof(*oper);
160
de9289c8 161 return pos;
9d2a76a2
JM
162#else /* CONFIG_IEEE80211N */
163 return eid;
164#endif /* CONFIG_IEEE80211N */
de9289c8
JM
165}
166
167
9d2a76a2
JM
168#ifdef CONFIG_IEEE80211N
169
de9289c8
JM
170/*
171op_mode
172Set to 0 (HT pure) under the followign conditions
173 - all STAs in the BSS are 20/40 MHz HT in 20/40 MHz BSS or
174 - all STAs in the BSS are 20 MHz HT in 20 MHz BSS
175Set to 1 (HT non-member protection) if there may be non-HT STAs
176 in both the primary and the secondary channel
177Set to 2 if only HT STAs are associated in BSS,
178 however and at least one 20 MHz HT STA is associated
179Set to 3 (HT mixed mode) when one or more non-HT STAs are associated
180 (currently non-GF HT station is considered as non-HT STA also)
181*/
182int hostapd_ht_operation_update(struct hostapd_iface *iface)
183{
de9289c8
JM
184 u16 cur_op_mode, new_op_mode;
185 int op_mode_changes = 0;
de9289c8 186
9d2a76a2 187 if (!iface->conf->ieee80211n || iface->conf->ht_op_mode_fixed)
de9289c8
JM
188 return 0;
189
de9289c8 190 wpa_printf(MSG_DEBUG, "%s current operation mode=0x%X",
edd360e1 191 __func__, iface->ht_op_mode);
de9289c8 192
edd360e1 193 if (!(iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT)
de9289c8 194 && iface->num_sta_ht_no_gf) {
edd360e1
JM
195 iface->ht_op_mode |=
196 HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT;
de9289c8 197 op_mode_changes++;
edd360e1 198 } else if ((iface->ht_op_mode &
de9289c8
JM
199 HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT) &&
200 iface->num_sta_ht_no_gf == 0) {
edd360e1
JM
201 iface->ht_op_mode &=
202 ~HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT;
de9289c8
JM
203 op_mode_changes++;
204 }
205
edd360e1
JM
206 if (!(iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT) &&
207 (iface->num_sta_no_ht || iface->olbc_ht)) {
208 iface->ht_op_mode |= HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT;
de9289c8 209 op_mode_changes++;
edd360e1
JM
210 } else if ((iface->ht_op_mode &
211 HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT) &&
212 (iface->num_sta_no_ht == 0 && !iface->olbc_ht)) {
213 iface->ht_op_mode &=
214 ~HT_INFO_OPERATION_MODE_NON_HT_STA_PRESENT;
de9289c8
JM
215 op_mode_changes++;
216 }
217
218 /* Note: currently we switch to the MIXED op mode if HT non-greenfield
219 * station is associated. Probably it's a theoretical case, since
220 * it looks like all known HT STAs support greenfield.
221 */
222 new_op_mode = 0;
223 if (iface->num_sta_no_ht ||
edd360e1 224 (iface->ht_op_mode & HT_INFO_OPERATION_MODE_NON_GF_DEVS_PRESENT))
de9289c8 225 new_op_mode = OP_MODE_MIXED;
9d2a76a2
JM
226 else if ((iface->conf->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)
227 && iface->num_sta_ht_20mhz)
de9289c8
JM
228 new_op_mode = OP_MODE_20MHZ_HT_STA_ASSOCED;
229 else if (iface->olbc_ht)
230 new_op_mode = OP_MODE_MAY_BE_LEGACY_STAS;
231 else
232 new_op_mode = OP_MODE_PURE;
233
edd360e1 234 cur_op_mode = iface->ht_op_mode & HT_INFO_OPERATION_MODE_OP_MODE_MASK;
de9289c8 235 if (cur_op_mode != new_op_mode) {
edd360e1
JM
236 iface->ht_op_mode &= ~HT_INFO_OPERATION_MODE_OP_MODE_MASK;
237 iface->ht_op_mode |= new_op_mode;
de9289c8
JM
238 op_mode_changes++;
239 }
240
241 wpa_printf(MSG_DEBUG, "%s new operation mode=0x%X changes=%d",
edd360e1 242 __func__, iface->ht_op_mode, op_mode_changes);
de9289c8
JM
243
244 return op_mode_changes;
245}
246
247#endif /* CONFIG_IEEE80211N */
248
249
6fc6879b
JM
250u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
251 int probe)
252{
253 int capab = WLAN_CAPABILITY_ESS;
254 int privacy;
255
256 if (hapd->iface->num_sta_no_short_preamble == 0 &&
257 hapd->iconf->preamble == SHORT_PREAMBLE)
258 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
259
260 privacy = hapd->conf->ssid.wep.keys_set;
261
262 if (hapd->conf->ieee802_1x &&
263 (hapd->conf->default_wep_key_len ||
264 hapd->conf->individual_wep_key_len))
265 privacy = 1;
266
267 if (hapd->conf->wpa)
268 privacy = 1;
269
270 if (sta) {
271 int policy, def_klen;
272 if (probe && sta->ssid_probe) {
273 policy = sta->ssid_probe->security_policy;
274 def_klen = sta->ssid_probe->wep.default_len;
275 } else {
276 policy = sta->ssid->security_policy;
277 def_klen = sta->ssid->wep.default_len;
278 }
279 privacy = policy != SECURITY_PLAINTEXT;
280 if (policy == SECURITY_IEEE_802_1X && def_klen == 0)
281 privacy = 0;
282 }
283
284 if (privacy)
285 capab |= WLAN_CAPABILITY_PRIVACY;
286
287 if (hapd->iface->current_mode &&
288 hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
289 hapd->iface->num_sta_no_short_slot_time == 0)
290 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
291
6fc6879b
JM
292 return capab;
293}
294
295
5d22a1d5
JM
296#ifdef CONFIG_IEEE80211W
297static u8 * hostapd_eid_assoc_comeback_time(struct hostapd_data *hapd,
298 struct sta_info *sta, u8 *eid)
299{
300 u8 *pos = eid;
301 u32 timeout;
302
303 *pos++ = WLAN_EID_ASSOC_COMEBACK_TIME;
304 *pos++ = 4;
305 timeout = (hapd->conf->assoc_ping_attempts - sta->ping_count + 1) *
306 hapd->conf->assoc_ping_timeout;
307 WPA_PUT_LE32(pos, timeout);
308 pos += 4;
309
310 return pos;
311}
312#endif /* CONFIG_IEEE80211W */
313
314
6fc6879b
JM
315void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len)
316{
317 int i;
318 if (len > HOSTAPD_MAX_SSID_LEN)
319 len = HOSTAPD_MAX_SSID_LEN;
320 for (i = 0; i < len; i++) {
321 if (ssid[i] >= 32 && ssid[i] < 127)
322 buf[i] = ssid[i];
323 else
324 buf[i] = '.';
325 }
326 buf[len] = '\0';
327}
328
329
330void ieee802_11_send_deauth(struct hostapd_data *hapd, u8 *addr, u16 reason)
331{
332 struct ieee80211_mgmt mgmt;
6fc6879b
JM
333
334 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
335 HOSTAPD_LEVEL_DEBUG,
336 "deauthenticate - reason %d", reason);
6fc6879b
JM
337 os_memset(&mgmt, 0, sizeof(mgmt));
338 mgmt.frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
339 WLAN_FC_STYPE_DEAUTH);
340 os_memcpy(mgmt.da, addr, ETH_ALEN);
341 os_memcpy(mgmt.sa, hapd->own_addr, ETH_ALEN);
342 os_memcpy(mgmt.bssid, hapd->own_addr, ETH_ALEN);
343 mgmt.u.deauth.reason_code = host_to_le16(reason);
344 if (hostapd_send_mgmt_frame(hapd, &mgmt, IEEE80211_HDRLEN +
345 sizeof(mgmt.u.deauth), 0) < 0)
346 perror("ieee802_11_send_deauth: send");
347}
348
349
6fc6879b
JM
350static u16 auth_shared_key(struct hostapd_data *hapd, struct sta_info *sta,
351 u16 auth_transaction, u8 *challenge, int iswep)
352{
353 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
354 HOSTAPD_LEVEL_DEBUG,
355 "authentication (shared key, transaction %d)",
356 auth_transaction);
357
358 if (auth_transaction == 1) {
359 if (!sta->challenge) {
360 /* Generate a pseudo-random challenge */
361 u8 key[8];
362 time_t now;
363 int r;
364 sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN);
365 if (sta->challenge == NULL)
366 return WLAN_STATUS_UNSPECIFIED_FAILURE;
367
368 now = time(NULL);
369 r = random();
370 os_memcpy(key, &now, 4);
371 os_memcpy(key + 4, &r, 4);
372 rc4(sta->challenge, WLAN_AUTH_CHALLENGE_LEN,
373 key, sizeof(key));
374 }
375 return 0;
376 }
377
378 if (auth_transaction != 3)
379 return WLAN_STATUS_UNSPECIFIED_FAILURE;
380
381 /* Transaction 3 */
382 if (!iswep || !sta->challenge || !challenge ||
383 os_memcmp(sta->challenge, challenge, WLAN_AUTH_CHALLENGE_LEN)) {
384 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
385 HOSTAPD_LEVEL_INFO,
386 "shared key authentication - invalid "
387 "challenge-response");
388 return WLAN_STATUS_CHALLENGE_FAIL;
389 }
390
391 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
392 HOSTAPD_LEVEL_DEBUG,
393 "authentication OK (shared key)");
394#ifdef IEEE80211_REQUIRE_AUTH_ACK
395 /* Station will be marked authenticated if it ACKs the
396 * authentication reply. */
397#else
398 sta->flags |= WLAN_STA_AUTH;
399 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
400#endif
401 os_free(sta->challenge);
402 sta->challenge = NULL;
403
404 return 0;
405}
406
407
408static void send_auth_reply(struct hostapd_data *hapd,
409 const u8 *dst, const u8 *bssid,
410 u16 auth_alg, u16 auth_transaction, u16 resp,
411 const u8 *ies, size_t ies_len)
412{
413 struct ieee80211_mgmt *reply;
414 u8 *buf;
415 size_t rlen;
416
417 rlen = IEEE80211_HDRLEN + sizeof(reply->u.auth) + ies_len;
418 buf = os_zalloc(rlen);
419 if (buf == NULL)
420 return;
421
422 reply = (struct ieee80211_mgmt *) buf;
423 reply->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
424 WLAN_FC_STYPE_AUTH);
6fc6879b
JM
425 os_memcpy(reply->da, dst, ETH_ALEN);
426 os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
427 os_memcpy(reply->bssid, bssid, ETH_ALEN);
428
429 reply->u.auth.auth_alg = host_to_le16(auth_alg);
430 reply->u.auth.auth_transaction = host_to_le16(auth_transaction);
431 reply->u.auth.status_code = host_to_le16(resp);
432
433 if (ies && ies_len)
434 os_memcpy(reply->u.auth.variable, ies, ies_len);
435
436 wpa_printf(MSG_DEBUG, "authentication reply: STA=" MACSTR
437 " auth_alg=%d auth_transaction=%d resp=%d (IE len=%lu)",
438 MAC2STR(dst), auth_alg, auth_transaction,
439 resp, (unsigned long) ies_len);
440 if (hostapd_send_mgmt_frame(hapd, reply, rlen, 0) < 0)
441 perror("send_auth_reply: send");
442
443 os_free(buf);
444}
445
446
447#ifdef CONFIG_IEEE80211R
448static void handle_auth_ft_finish(void *ctx, const u8 *dst, const u8 *bssid,
449 u16 auth_transaction, u16 status,
450 const u8 *ies, size_t ies_len)
451{
452 struct hostapd_data *hapd = ctx;
453 struct sta_info *sta;
454
455 send_auth_reply(hapd, dst, bssid, WLAN_AUTH_FT, auth_transaction,
456 status, ies, ies_len);
457
458 if (status != WLAN_STATUS_SUCCESS)
459 return;
460
461 sta = ap_get_sta(hapd, dst);
462 if (sta == NULL)
463 return;
464
465 hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
466 HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
467 sta->flags |= WLAN_STA_AUTH;
468 mlme_authenticate_indication(hapd, sta);
469}
470#endif /* CONFIG_IEEE80211R */
471
472
473static void handle_auth(struct hostapd_data *hapd, struct ieee80211_mgmt *mgmt,
474 size_t len)
475{
476 u16 auth_alg, auth_transaction, status_code;
477 u16 resp = WLAN_STATUS_SUCCESS;
478 struct sta_info *sta = NULL;
479 int res;
480 u16 fc;
481 u8 *challenge = NULL;
482 u32 session_timeout, acct_interim_interval;
483 int vlan_id = 0;
484 u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
485 size_t resp_ies_len = 0;
486
487 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
488 printf("handle_auth - too short payload (len=%lu)\n",
489 (unsigned long) len);
490 return;
491 }
492
493 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
494 auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
495 status_code = le_to_host16(mgmt->u.auth.status_code);
496 fc = le_to_host16(mgmt->frame_control);
497
498 if (len >= IEEE80211_HDRLEN + sizeof(mgmt->u.auth) +
499 2 + WLAN_AUTH_CHALLENGE_LEN &&
500 mgmt->u.auth.variable[0] == WLAN_EID_CHALLENGE &&
501 mgmt->u.auth.variable[1] == WLAN_AUTH_CHALLENGE_LEN)
502 challenge = &mgmt->u.auth.variable[2];
503
504 wpa_printf(MSG_DEBUG, "authentication: STA=" MACSTR " auth_alg=%d "
505 "auth_transaction=%d status_code=%d wep=%d%s",
506 MAC2STR(mgmt->sa), auth_alg, auth_transaction,
507 status_code, !!(fc & WLAN_FC_ISWEP),
508 challenge ? " challenge" : "");
509
6fc6879b
JM
510 if (hapd->tkip_countermeasures) {
511 resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
512 goto fail;
513 }
514
515 if (!(((hapd->conf->auth_algs & WPA_AUTH_ALG_OPEN) &&
516 auth_alg == WLAN_AUTH_OPEN) ||
517#ifdef CONFIG_IEEE80211R
518 (hapd->conf->wpa &&
519 (hapd->conf->wpa_key_mgmt &
520 (WPA_KEY_MGMT_FT_IEEE8021X | WPA_KEY_MGMT_FT_PSK)) &&
521 auth_alg == WLAN_AUTH_FT) ||
522#endif /* CONFIG_IEEE80211R */
523 ((hapd->conf->auth_algs & WPA_AUTH_ALG_SHARED) &&
524 auth_alg == WLAN_AUTH_SHARED_KEY))) {
525 printf("Unsupported authentication algorithm (%d)\n",
526 auth_alg);
527 resp = WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
528 goto fail;
529 }
530
531 if (!(auth_transaction == 1 ||
532 (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 3))) {
533 printf("Unknown authentication transaction number (%d)\n",
534 auth_transaction);
535 resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
536 goto fail;
537 }
538
539 if (os_memcmp(mgmt->sa, hapd->own_addr, ETH_ALEN) == 0) {
540 printf("Station " MACSTR " not allowed to authenticate.\n",
541 MAC2STR(mgmt->sa));
542 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
543 goto fail;
544 }
545
546 res = hostapd_allowed_address(hapd, mgmt->sa, (u8 *) mgmt, len,
547 &session_timeout,
548 &acct_interim_interval, &vlan_id);
549 if (res == HOSTAPD_ACL_REJECT) {
550 printf("Station " MACSTR " not allowed to authenticate.\n",
551 MAC2STR(mgmt->sa));
552 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
553 goto fail;
554 }
555 if (res == HOSTAPD_ACL_PENDING) {
556 wpa_printf(MSG_DEBUG, "Authentication frame from " MACSTR
557 " waiting for an external authentication",
558 MAC2STR(mgmt->sa));
559 /* Authentication code will re-send the authentication frame
560 * after it has received (and cached) information from the
561 * external source. */
562 return;
563 }
564
565 sta = ap_sta_add(hapd, mgmt->sa);
566 if (!sta) {
567 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
568 goto fail;
569 }
570
571 if (vlan_id > 0) {
572 if (hostapd_get_vlan_id_ifname(hapd->conf->vlan,
573 sta->vlan_id) == NULL) {
574 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
575 HOSTAPD_LEVEL_INFO, "Invalid VLAN ID "
576 "%d received from RADIUS server",
577 vlan_id);
578 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
579 goto fail;
580 }
581 sta->vlan_id = vlan_id;
582 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
583 HOSTAPD_LEVEL_INFO, "VLAN ID %d", sta->vlan_id);
584 }
585
586 sta->flags &= ~WLAN_STA_PREAUTH;
587 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
588
589 if (hapd->conf->radius->acct_interim_interval == 0 &&
590 acct_interim_interval)
591 sta->acct_interim_interval = acct_interim_interval;
592 if (res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
593 ap_sta_session_timeout(hapd, sta, session_timeout);
594 else
595 ap_sta_no_session_timeout(hapd, sta);
596
597 switch (auth_alg) {
598 case WLAN_AUTH_OPEN:
599 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
600 HOSTAPD_LEVEL_DEBUG,
601 "authentication OK (open system)");
602#ifdef IEEE80211_REQUIRE_AUTH_ACK
603 /* Station will be marked authenticated if it ACKs the
604 * authentication reply. */
605#else
606 sta->flags |= WLAN_STA_AUTH;
607 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
608 sta->auth_alg = WLAN_AUTH_OPEN;
609 mlme_authenticate_indication(hapd, sta);
610#endif
611 break;
612 case WLAN_AUTH_SHARED_KEY:
613 resp = auth_shared_key(hapd, sta, auth_transaction, challenge,
614 fc & WLAN_FC_ISWEP);
615 sta->auth_alg = WLAN_AUTH_SHARED_KEY;
616 mlme_authenticate_indication(hapd, sta);
617 if (sta->challenge && auth_transaction == 1) {
618 resp_ies[0] = WLAN_EID_CHALLENGE;
619 resp_ies[1] = WLAN_AUTH_CHALLENGE_LEN;
620 os_memcpy(resp_ies + 2, sta->challenge,
621 WLAN_AUTH_CHALLENGE_LEN);
622 resp_ies_len = 2 + WLAN_AUTH_CHALLENGE_LEN;
623 }
624 break;
625#ifdef CONFIG_IEEE80211R
626 case WLAN_AUTH_FT:
627 sta->auth_alg = WLAN_AUTH_FT;
628 if (sta->wpa_sm == NULL)
629 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
630 sta->addr);
631 if (sta->wpa_sm == NULL) {
632 wpa_printf(MSG_DEBUG, "FT: Failed to initialize WPA "
633 "state machine");
634 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
635 goto fail;
636 }
637 wpa_ft_process_auth(sta->wpa_sm, mgmt->bssid,
638 auth_transaction, mgmt->u.auth.variable,
639 len - IEEE80211_HDRLEN -
640 sizeof(mgmt->u.auth),
641 handle_auth_ft_finish, hapd);
642 /* handle_auth_ft_finish() callback will complete auth. */
643 return;
644#endif /* CONFIG_IEEE80211R */
645 }
646
647 fail:
648 send_auth_reply(hapd, mgmt->sa, mgmt->bssid, auth_alg,
649 auth_transaction + 1, resp, resp_ies, resp_ies_len);
650}
651
652
653static void handle_assoc(struct hostapd_data *hapd,
654 struct ieee80211_mgmt *mgmt, size_t len, int reassoc)
655{
656 u16 capab_info, listen_interval;
657 u16 resp = WLAN_STATUS_SUCCESS;
658 u8 *pos, *wpa_ie;
659 size_t wpa_ie_len;
660 int send_deauth = 0, send_len, left, i;
661 struct sta_info *sta;
662 struct ieee802_11_elems elems;
663 u8 buf[sizeof(struct ieee80211_mgmt) + 512];
664 struct ieee80211_mgmt *reply;
665
666 if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_req) :
667 sizeof(mgmt->u.assoc_req))) {
668 printf("handle_assoc(reassoc=%d) - too short payload (len=%lu)"
669 "\n", reassoc, (unsigned long) len);
670 return;
671 }
672
673 if (reassoc) {
674 capab_info = le_to_host16(mgmt->u.reassoc_req.capab_info);
675 listen_interval = le_to_host16(
676 mgmt->u.reassoc_req.listen_interval);
677 wpa_printf(MSG_DEBUG, "reassociation request: STA=" MACSTR
678 " capab_info=0x%02x listen_interval=%d current_ap="
679 MACSTR,
680 MAC2STR(mgmt->sa), capab_info, listen_interval,
681 MAC2STR(mgmt->u.reassoc_req.current_ap));
682 left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.reassoc_req));
683 pos = mgmt->u.reassoc_req.variable;
684 } else {
685 capab_info = le_to_host16(mgmt->u.assoc_req.capab_info);
686 listen_interval = le_to_host16(
687 mgmt->u.assoc_req.listen_interval);
688 wpa_printf(MSG_DEBUG, "association request: STA=" MACSTR
689 " capab_info=0x%02x listen_interval=%d",
690 MAC2STR(mgmt->sa), capab_info, listen_interval);
691 left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.assoc_req));
692 pos = mgmt->u.assoc_req.variable;
693 }
694
695 sta = ap_get_sta(hapd, mgmt->sa);
696#ifdef CONFIG_IEEE80211R
697 if (sta && sta->auth_alg == WLAN_AUTH_FT &&
698 (sta->flags & WLAN_STA_AUTH) == 0) {
699 wpa_printf(MSG_DEBUG, "FT: Allow STA " MACSTR " to associate "
700 "prior to authentication since it is using "
701 "over-the-DS FT", MAC2STR(mgmt->sa));
702 } else
703#endif /* CONFIG_IEEE80211R */
704 if (sta == NULL || (sta->flags & WLAN_STA_AUTH) == 0) {
705 printf("STA " MACSTR " trying to associate before "
706 "authentication\n", MAC2STR(mgmt->sa));
707 if (sta) {
708 printf(" sta: addr=" MACSTR " aid=%d flags=0x%04x\n",
709 MAC2STR(sta->addr), sta->aid, sta->flags);
710 }
711 send_deauth = 1;
712 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
713 goto fail;
714 }
715
716 if (hapd->tkip_countermeasures) {
717 resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
718 goto fail;
719 }
720
b0194fe0
JM
721 if (listen_interval > hapd->conf->max_listen_interval) {
722 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
723 HOSTAPD_LEVEL_DEBUG,
724 "Too large Listen Interval (%d)",
725 listen_interval);
726 resp = WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE;
727 goto fail;
728 }
729
6fc6879b 730 sta->capability = capab_info;
39e50be0 731 sta->listen_interval = listen_interval;
6fc6879b 732
de9289c8
JM
733 /* followed by SSID and Supported rates; and HT capabilities if 802.11n
734 * is used */
3d536eb4
JM
735 if (ieee802_11_parse_elems(pos, left, &elems, 1) == ParseFailed ||
736 !elems.ssid) {
6fc6879b
JM
737 printf("STA " MACSTR " sent invalid association request\n",
738 MAC2STR(sta->addr));
739 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
740 goto fail;
741 }
742
743 if (elems.ssid_len != hapd->conf->ssid.ssid_len ||
744 os_memcmp(elems.ssid, hapd->conf->ssid.ssid, elems.ssid_len) != 0)
745 {
746 char ssid_txt[33];
747 ieee802_11_print_ssid(ssid_txt, elems.ssid, elems.ssid_len);
748 printf("Station " MACSTR " tried to associate with "
749 "unknown SSID '%s'\n", MAC2STR(sta->addr), ssid_txt);
750 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
751 goto fail;
752 }
753
754 sta->flags &= ~WLAN_STA_WME;
755 if (elems.wme && hapd->conf->wme_enabled) {
756 if (hostapd_eid_wme_valid(hapd, elems.wme, elems.wme_len))
757 hostapd_logger(hapd, sta->addr,
758 HOSTAPD_MODULE_WPA,
759 HOSTAPD_LEVEL_DEBUG,
760 "invalid WME element in association "
761 "request");
762 else
763 sta->flags |= WLAN_STA_WME;
764 }
765
766 if (!elems.supp_rates) {
767 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
768 HOSTAPD_LEVEL_DEBUG,
769 "No supported rates element in AssocReq");
770 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
771 goto fail;
772 }
773
774 if (elems.supp_rates_len > sizeof(sta->supported_rates)) {
775 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
776 HOSTAPD_LEVEL_DEBUG,
777 "Invalid supported rates element length %d",
778 elems.supp_rates_len);
779 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
780 goto fail;
781 }
782
783 os_memset(sta->supported_rates, 0, sizeof(sta->supported_rates));
784 os_memcpy(sta->supported_rates, elems.supp_rates,
785 elems.supp_rates_len);
786 sta->supported_rates_len = elems.supp_rates_len;
787
788 if (elems.ext_supp_rates) {
789 if (elems.supp_rates_len + elems.ext_supp_rates_len >
790 sizeof(sta->supported_rates)) {
791 hostapd_logger(hapd, mgmt->sa,
792 HOSTAPD_MODULE_IEEE80211,
793 HOSTAPD_LEVEL_DEBUG,
794 "Invalid supported rates element length"
795 " %d+%d", elems.supp_rates_len,
796 elems.ext_supp_rates_len);
797 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
798 goto fail;
799 }
800
801 os_memcpy(sta->supported_rates + elems.supp_rates_len,
802 elems.ext_supp_rates, elems.ext_supp_rates_len);
803 sta->supported_rates_len += elems.ext_supp_rates_len;
804 }
805
de9289c8
JM
806#ifdef CONFIG_IEEE80211N
807 /* save HT capabilities in the sta object */
808 os_memset(&sta->ht_capabilities, 0, sizeof(sta->ht_capabilities));
809 if (elems.ht_capabilities &&
f130ba9b
JM
810 elems.ht_capabilities_len >=
811 sizeof(struct ieee80211_ht_capability)) {
de9289c8
JM
812 sta->flags |= WLAN_STA_HT;
813 sta->ht_capabilities.id = WLAN_EID_HT_CAP;
814 sta->ht_capabilities.length =
815 sizeof(struct ieee80211_ht_capability);
816 os_memcpy(&sta->ht_capabilities.data,
817 elems.ht_capabilities,
818 sizeof(struct ieee80211_ht_capability));
819 } else
820 sta->flags &= ~WLAN_STA_HT;
821#endif /* CONFIG_IEEE80211N */
822
6fc6879b
JM
823 if ((hapd->conf->wpa & WPA_PROTO_RSN) && elems.rsn_ie) {
824 wpa_ie = elems.rsn_ie;
825 wpa_ie_len = elems.rsn_ie_len;
826 } else if ((hapd->conf->wpa & WPA_PROTO_WPA) &&
827 elems.wpa_ie) {
828 wpa_ie = elems.wpa_ie;
829 wpa_ie_len = elems.wpa_ie_len;
830 } else {
831 wpa_ie = NULL;
832 wpa_ie_len = 0;
833 }
ad08c363 834#ifdef CONFIG_WPS
a8d05fca 835 sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS);
ad08c363
JM
836 if (hapd->conf->wps_state && wpa_ie == NULL) {
837 if (elems.wps_ie) {
838 wpa_printf(MSG_DEBUG, "STA included WPS IE in "
839 "(Re)Association Request - assume WPS is "
840 "used");
841 sta->flags |= WLAN_STA_WPS;
eb76b7e3
JM
842 wpabuf_free(sta->wps_ie);
843 sta->wps_ie = wpabuf_alloc_copy(elems.wps_ie + 4,
844 elems.wps_ie_len - 4);
ad08c363
JM
845 } else {
846 wpa_printf(MSG_DEBUG, "STA did not include WPA/RSN IE "
847 "in (Re)Association Request - possible WPS "
848 "use");
849 sta->flags |= WLAN_STA_MAYBE_WPS;
850 }
851 } else
852#endif /* CONFIG_WPS */
6fc6879b
JM
853 if (hapd->conf->wpa && wpa_ie == NULL) {
854 printf("STA " MACSTR ": No WPA/RSN IE in association "
855 "request\n", MAC2STR(sta->addr));
856 resp = WLAN_STATUS_INVALID_IE;
857 goto fail;
858 }
859
860 if (hapd->conf->wpa && wpa_ie) {
861 int res;
862 wpa_ie -= 2;
863 wpa_ie_len += 2;
864 if (sta->wpa_sm == NULL)
865 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
866 sta->addr);
867 if (sta->wpa_sm == NULL) {
868 printf("Failed to initialize WPA state machine\n");
869 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
870 goto fail;
871 }
872 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
873 wpa_ie, wpa_ie_len,
874 elems.mdie, elems.mdie_len);
875 if (res == WPA_INVALID_GROUP)
876 resp = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
877 else if (res == WPA_INVALID_PAIRWISE)
878 resp = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
879 else if (res == WPA_INVALID_AKMP)
880 resp = WLAN_STATUS_AKMP_NOT_VALID;
881 else if (res == WPA_ALLOC_FAIL)
882 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
883#ifdef CONFIG_IEEE80211W
884 else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
885 resp = WLAN_STATUS_UNSPECIFIED_FAILURE; /* FIX */
886 else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
887 resp = WLAN_STATUS_UNSPECIFIED_FAILURE; /* FIX */
888#endif /* CONFIG_IEEE80211W */
889 else if (res == WPA_INVALID_MDIE)
890 resp = WLAN_STATUS_INVALID_MDIE;
891 else if (res != WPA_IE_OK)
892 resp = WLAN_STATUS_INVALID_IE;
893 if (resp != WLAN_STATUS_SUCCESS)
894 goto fail;
f3f7540e 895#ifdef CONFIG_IEEE80211W
5d22a1d5
JM
896 if ((sta->flags & WLAN_STA_MFP) && !sta->ping_timed_out) {
897 /*
898 * STA has already been associated with MFP and ping
899 * timeout has not been reached. Reject the
900 * association attempt temporarily and start ping, if
901 * one is not pending.
902 */
903
904 if (sta->ping_count == 0)
905 ap_sta_start_ping(hapd, sta);
906
907 resp = WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
908 goto fail;
909 }
910
f3f7540e
JM
911 if (wpa_auth_uses_mfp(sta->wpa_sm))
912 sta->flags |= WLAN_STA_MFP;
913 else
914 sta->flags &= ~WLAN_STA_MFP;
915#endif /* CONFIG_IEEE80211W */
6fc6879b
JM
916
917#ifdef CONFIG_IEEE80211R
918 if (sta->auth_alg == WLAN_AUTH_FT) {
919 if (!reassoc) {
920 wpa_printf(MSG_DEBUG, "FT: " MACSTR " tried "
921 "to use association (not "
922 "re-association) with FT auth_alg",
923 MAC2STR(sta->addr));
924 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
925 goto fail;
926 }
927
928 resp = wpa_ft_validate_reassoc(sta->wpa_sm, pos, left);
929 if (resp != WLAN_STATUS_SUCCESS)
930 goto fail;
931 }
932#endif /* CONFIG_IEEE80211R */
ff36ff00
JM
933#ifdef CONFIG_IEEE80211N
934 if ((sta->flags & WLAN_STA_HT) &&
935 wpa_auth_get_pairwise(sta->wpa_sm) == WPA_CIPHER_TKIP) {
936 wpa_printf(MSG_DEBUG, "HT: " MACSTR " tried to "
937 "use TKIP with HT association",
938 MAC2STR(sta->addr));
939 resp = WLAN_STATUS_CIPHER_REJECTED_PER_POLICY;
940 goto fail;
941 }
942#endif /* CONFIG_IEEE80211N */
a8d05fca
JM
943 } else
944 wpa_auth_sta_no_wpa(sta->wpa_sm);
6fc6879b 945
6fc6879b
JM
946 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G)
947 sta->flags |= WLAN_STA_NONERP;
948 for (i = 0; i < sta->supported_rates_len; i++) {
949 if ((sta->supported_rates[i] & 0x7f) > 22) {
950 sta->flags &= ~WLAN_STA_NONERP;
951 break;
952 }
953 }
954 if (sta->flags & WLAN_STA_NONERP && !sta->nonerp_set) {
955 sta->nonerp_set = 1;
956 hapd->iface->num_sta_non_erp++;
957 if (hapd->iface->num_sta_non_erp == 1)
958 ieee802_11_set_beacons(hapd->iface);
959 }
960
961 if (!(sta->capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) &&
962 !sta->no_short_slot_time_set) {
963 sta->no_short_slot_time_set = 1;
964 hapd->iface->num_sta_no_short_slot_time++;
965 if (hapd->iface->current_mode->mode ==
966 HOSTAPD_MODE_IEEE80211G &&
967 hapd->iface->num_sta_no_short_slot_time == 1)
968 ieee802_11_set_beacons(hapd->iface);
969 }
970
971 if (sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
972 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
973 else
974 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
975
976 if (!(sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
977 !sta->no_short_preamble_set) {
978 sta->no_short_preamble_set = 1;
979 hapd->iface->num_sta_no_short_preamble++;
980 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
981 && hapd->iface->num_sta_no_short_preamble == 1)
982 ieee802_11_set_beacons(hapd->iface);
983 }
984
de9289c8
JM
985#ifdef CONFIG_IEEE80211N
986 if (sta->flags & WLAN_STA_HT) {
8725598c
JM
987 u16 ht_capab = le_to_host16(
988 sta->ht_capabilities.data.capabilities_info);
989 wpa_printf(MSG_DEBUG, "HT: STA " MACSTR " HT Capabilities "
990 "Info: 0x%04x", MAC2STR(sta->addr), ht_capab);
991 if ((ht_capab & HT_CAP_INFO_GREEN_FIELD) == 0) {
e8ff1e59
JM
992 if (!sta->no_ht_gf_set) {
993 sta->no_ht_gf_set = 1;
994 hapd->iface->num_sta_ht_no_gf++;
995 }
de9289c8
JM
996 wpa_printf(MSG_DEBUG, "%s STA " MACSTR " - no "
997 "greenfield, num of non-gf stations %d",
998 __func__, MAC2STR(sta->addr),
999 hapd->iface->num_sta_ht_no_gf);
1000 }
8725598c 1001 if ((ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET) == 0) {
e8ff1e59
JM
1002 if (!sta->ht_20mhz_set) {
1003 sta->ht_20mhz_set = 1;
1004 hapd->iface->num_sta_ht_20mhz++;
1005 }
de9289c8
JM
1006 wpa_printf(MSG_DEBUG, "%s STA " MACSTR " - 20 MHz HT, "
1007 "num of 20MHz HT STAs %d",
1008 __func__, MAC2STR(sta->addr),
1009 hapd->iface->num_sta_ht_20mhz);
1010 }
1011 } else {
e8ff1e59
JM
1012 if (!sta->no_ht_set) {
1013 sta->no_ht_set = 1;
1014 hapd->iface->num_sta_no_ht++;
1015 }
9d2a76a2 1016 if (hapd->iconf->ieee80211n) {
de9289c8
JM
1017 wpa_printf(MSG_DEBUG, "%s STA " MACSTR
1018 " - no HT, num of non-HT stations %d",
1019 __func__, MAC2STR(sta->addr),
1020 hapd->iface->num_sta_no_ht);
1021 }
1022 }
1023
1024 if (hostapd_ht_operation_update(hapd->iface) > 0)
1025 ieee802_11_set_beacons(hapd->iface);
1026#endif /* CONFIG_IEEE80211N */
1027
6fc6879b
JM
1028 /* get a unique AID */
1029 if (sta->aid > 0) {
1030 wpa_printf(MSG_DEBUG, " old AID %d", sta->aid);
1031 } else {
1032 for (sta->aid = 1; sta->aid <= MAX_AID_TABLE_SIZE; sta->aid++)
1033 if (hapd->sta_aid[sta->aid - 1] == NULL)
1034 break;
1035 if (sta->aid > MAX_AID_TABLE_SIZE) {
1036 sta->aid = 0;
1037 resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
1038 wpa_printf(MSG_ERROR, " no room for more AIDs");
1039 goto fail;
1040 } else {
1041 hapd->sta_aid[sta->aid - 1] = sta;
1042 wpa_printf(MSG_DEBUG, " new AID %d", sta->aid);
1043 }
1044 }
1045
1046 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1047 HOSTAPD_LEVEL_DEBUG,
1048 "association OK (aid %d)", sta->aid);
1049 /* Station will be marked associated, after it acknowledges AssocResp
1050 */
1051
1e858f69
JM
1052 if (reassoc) {
1053 os_memcpy(sta->previous_ap, mgmt->u.reassoc_req.current_ap,
1054 ETH_ALEN);
1055 }
1056
6fc6879b
JM
1057 if (sta->last_assoc_req)
1058 os_free(sta->last_assoc_req);
1059 sta->last_assoc_req = os_malloc(len);
1060 if (sta->last_assoc_req)
1061 os_memcpy(sta->last_assoc_req, mgmt, len);
1062
1063 /* Make sure that the previously registered inactivity timer will not
1064 * remove the STA immediately. */
1065 sta->timeout_next = STA_NULLFUNC;
1066
1067 fail:
1068 os_memset(buf, 0, sizeof(buf));
1069 reply = (struct ieee80211_mgmt *) buf;
1070 reply->frame_control =
1071 IEEE80211_FC(WLAN_FC_TYPE_MGMT,
1072 (send_deauth ? WLAN_FC_STYPE_DEAUTH :
1073 (reassoc ? WLAN_FC_STYPE_REASSOC_RESP :
1074 WLAN_FC_STYPE_ASSOC_RESP)));
1075 os_memcpy(reply->da, mgmt->sa, ETH_ALEN);
1076 os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
1077 os_memcpy(reply->bssid, mgmt->bssid, ETH_ALEN);
1078
1079 send_len = IEEE80211_HDRLEN;
1080 if (send_deauth) {
1081 send_len += sizeof(reply->u.deauth);
1082 reply->u.deauth.reason_code = host_to_le16(resp);
1083 } else {
1084 u8 *p;
1085 send_len += sizeof(reply->u.assoc_resp);
1086 reply->u.assoc_resp.capab_info =
1087 host_to_le16(hostapd_own_capab_info(hapd, sta, 0));
1088 reply->u.assoc_resp.status_code = host_to_le16(resp);
1089 reply->u.assoc_resp.aid = host_to_le16((sta ? sta->aid : 0)
1090 | BIT(14) | BIT(15));
1091 /* Supported rates */
1092 p = hostapd_eid_supp_rates(hapd, reply->u.assoc_resp.variable);
1093 /* Extended supported rates */
1094 p = hostapd_eid_ext_supp_rates(hapd, p);
1095 if (sta->flags & WLAN_STA_WME)
1096 p = hostapd_eid_wme(hapd, p);
1097
9d2a76a2
JM
1098 p = hostapd_eid_ht_capabilities_info(hapd, p);
1099 p = hostapd_eid_ht_operation(hapd, p);
de9289c8 1100
6fc6879b
JM
1101#ifdef CONFIG_IEEE80211R
1102 if (resp == WLAN_STATUS_SUCCESS) {
1103 /* IEEE 802.11r: Mobility Domain Information, Fast BSS
1104 * Transition Information, RSN */
1105 p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, p,
1106 buf + sizeof(buf) - p,
1107 sta->auth_alg);
1108 }
1109#endif /* CONFIG_IEEE80211R */
1110
5d22a1d5
JM
1111#ifdef CONFIG_IEEE80211W
1112 if (resp == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY)
1113 p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
1114#endif /* CONFIG_IEEE80211W */
1115
6fc6879b 1116 send_len += p - reply->u.assoc_resp.variable;
6fc6879b
JM
1117 }
1118
1119 if (hostapd_send_mgmt_frame(hapd, reply, send_len, 0) < 0)
1120 perror("handle_assoc: send");
1121}
1122
1123
6fc6879b
JM
1124static void handle_disassoc(struct hostapd_data *hapd,
1125 struct ieee80211_mgmt *mgmt, size_t len)
1126{
1127 struct sta_info *sta;
1128
1129 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.disassoc)) {
1130 printf("handle_disassoc - too short payload (len=%lu)\n",
1131 (unsigned long) len);
1132 return;
1133 }
1134
1135 wpa_printf(MSG_DEBUG, "disassocation: STA=" MACSTR " reason_code=%d",
1136 MAC2STR(mgmt->sa),
1137 le_to_host16(mgmt->u.disassoc.reason_code));
1138
6fc6879b
JM
1139 sta = ap_get_sta(hapd, mgmt->sa);
1140 if (sta == NULL) {
1141 printf("Station " MACSTR " trying to disassociate, but it "
1142 "is not associated.\n", MAC2STR(mgmt->sa));
1143 return;
1144 }
1145
1146 sta->flags &= ~WLAN_STA_ASSOC;
1147 wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
1148 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1149 HOSTAPD_LEVEL_INFO, "disassociated");
1150 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
1151 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
1152 /* Stop Accounting and IEEE 802.1X sessions, but leave the STA
1153 * authenticated. */
1154 accounting_sta_stop(hapd, sta);
1155 ieee802_1x_free_station(sta);
1156 hostapd_sta_remove(hapd, sta->addr);
1157
1158 if (sta->timeout_next == STA_NULLFUNC ||
1159 sta->timeout_next == STA_DISASSOC) {
1160 sta->timeout_next = STA_DEAUTH;
1161 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
1162 eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
1163 hapd, sta);
1164 }
1165
1166 mlme_disassociate_indication(
1167 hapd, sta, le_to_host16(mgmt->u.disassoc.reason_code));
1168}
1169
1170
1171static void handle_deauth(struct hostapd_data *hapd,
1172 struct ieee80211_mgmt *mgmt, size_t len)
1173{
1174 struct sta_info *sta;
1175
1176 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.deauth)) {
1177 printf("handle_deauth - too short payload (len=%lu)\n",
1178 (unsigned long) len);
1179 return;
1180 }
1181
1182 wpa_printf(MSG_DEBUG, "deauthentication: STA=" MACSTR
1183 " reason_code=%d",
1184 MAC2STR(mgmt->sa),
1185 le_to_host16(mgmt->u.deauth.reason_code));
1186
6fc6879b
JM
1187 sta = ap_get_sta(hapd, mgmt->sa);
1188 if (sta == NULL) {
1189 printf("Station " MACSTR " trying to deauthenticate, but it "
1190 "is not authenticated.\n", MAC2STR(mgmt->sa));
1191 return;
1192 }
1193
1194 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC);
1195 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
1196 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1197 HOSTAPD_LEVEL_DEBUG, "deauthenticated");
1198 mlme_deauthenticate_indication(
1199 hapd, sta, le_to_host16(mgmt->u.deauth.reason_code));
1200 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
1201 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
1202 ap_free_sta(hapd, sta);
1203}
1204
1205
1206static void handle_beacon(struct hostapd_data *hapd,
1207 struct ieee80211_mgmt *mgmt, size_t len,
1208 struct hostapd_frame_info *fi)
1209{
1210 struct ieee802_11_elems elems;
1211
1212 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.beacon)) {
1213 printf("handle_beacon - too short payload (len=%lu)\n",
1214 (unsigned long) len);
1215 return;
1216 }
1217
3d536eb4 1218 (void) ieee802_11_parse_elems(mgmt->u.beacon.variable,
6fc6879b
JM
1219 len - (IEEE80211_HDRLEN +
1220 sizeof(mgmt->u.beacon)), &elems,
1221 0);
1222
6fc6879b
JM
1223 ap_list_process_beacon(hapd->iface, mgmt, &elems, fi);
1224}
1225
1226
5d22a1d5
JM
1227#ifdef CONFIG_IEEE80211W
1228static void hostapd_ping_action(struct hostapd_data *hapd,
1229 struct ieee80211_mgmt *mgmt, size_t len)
1230{
1231 struct sta_info *sta;
1232 u8 *end;
1233 int i;
1234
1235 end = mgmt->u.action.u.ping_resp.trans_id + WLAN_PING_TRANS_ID_LEN;
1236 if (((u8 *) mgmt) + len < end) {
1237 wpa_printf(MSG_DEBUG, "IEEE 802.11: Too short Ping Action "
1238 "frame (len=%lu)", (unsigned long) len);
1239 return;
1240 }
1241
1242 if (mgmt->u.action.u.ping_resp.action != WLAN_PING_RESPONSE) {
1243 wpa_printf(MSG_DEBUG, "IEEE 802.11: Unexpected Ping Action %d",
1244 mgmt->u.action.u.ping_resp.action);
1245 return;
1246 }
1247
1248 /* MLME-PING.confirm */
1249
1250 sta = ap_get_sta(hapd, mgmt->sa);
1251 if (sta == NULL || sta->ping_trans_id == NULL) {
1252 wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching STA with "
1253 "pending ping request found");
1254 return;
1255 }
1256
1257 for (i = 0; i < sta->ping_count; i++) {
1258 if (os_memcmp(sta->ping_trans_id + i * WLAN_PING_TRANS_ID_LEN,
1259 mgmt->u.action.u.ping_resp.trans_id,
1260 WLAN_PING_TRANS_ID_LEN) == 0)
1261 break;
1262 }
1263
1264 if (i >= sta->ping_count) {
1265 wpa_printf(MSG_DEBUG, "IEEE 802.11: No matching ping "
1266 "transaction identifier found");
1267 return;
1268 }
1269
1270 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1271 HOSTAPD_LEVEL_DEBUG, "Reply to pending ping received");
1272 ap_sta_stop_ping(hapd, sta);
1273}
1274#endif /* CONFIG_IEEE80211W */
1275
1276
6fc6879b
JM
1277static void handle_action(struct hostapd_data *hapd,
1278 struct ieee80211_mgmt *mgmt, size_t len)
1279{
1280 if (len < IEEE80211_HDRLEN + 1) {
1281 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1282 HOSTAPD_LEVEL_DEBUG,
1283 "handle_action - too short payload (len=%lu)",
1284 (unsigned long) len);
1285 return;
1286 }
1287
1288 switch (mgmt->u.action.category) {
1289#ifdef CONFIG_IEEE80211R
1290 case WLAN_ACTION_FT:
1291 {
1292 struct sta_info *sta;
1293
1294 sta = ap_get_sta(hapd, mgmt->sa);
1295 if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC)) {
1296 wpa_printf(MSG_DEBUG, "IEEE 802.11: Ignored FT Action "
1297 "frame from unassociated STA " MACSTR,
1298 MAC2STR(mgmt->sa));
1299 return;
1300 }
1301
1302 if (wpa_ft_action_rx(sta->wpa_sm, (u8 *) &mgmt->u.action,
1303 len - IEEE80211_HDRLEN))
1304 break;
1305
1306 return;
1307 }
1308#endif /* CONFIG_IEEE80211R */
c2a71408 1309 case WLAN_ACTION_WMM:
6fc6879b
JM
1310 hostapd_wme_action(hapd, mgmt, len);
1311 return;
5d22a1d5
JM
1312#ifdef CONFIG_IEEE80211W
1313 case WLAN_ACTION_PING:
1314 hostapd_ping_action(hapd, mgmt, len);
1315 return;
1316#endif /* CONFIG_IEEE80211W */
6fc6879b
JM
1317 }
1318
1319 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1320 HOSTAPD_LEVEL_DEBUG,
1321 "handle_action - unknown action category %d or invalid "
1322 "frame",
1323 mgmt->u.action.category);
1324 if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category & 0x80) &&
1325 !(mgmt->sa[0] & 0x01)) {
1326 /*
1327 * IEEE 802.11-REVma/D9.0 - 7.3.1.11
1328 * Return the Action frame to the source without change
1329 * except that MSB of the Category set to 1.
1330 */
1331 wpa_printf(MSG_DEBUG, "IEEE 802.11: Return unknown Action "
1332 "frame back to sender");
1333 os_memcpy(mgmt->da, mgmt->sa, ETH_ALEN);
1334 os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
1335 os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
1336 mgmt->u.action.category |= 0x80;
1337
1338 hostapd_send_mgmt_frame(hapd, mgmt, len, 0);
1339 }
1340}
1341
1342
1343/**
1344 * ieee802_11_mgmt - process incoming IEEE 802.11 management frames
1345 * @hapd: hostapd BSS data structure (the BSS to which the management frame was
1346 * sent to)
1347 * @buf: management frame data (starting from IEEE 802.11 header)
1348 * @len: length of frame data in octets
1349 * @stype: management frame subtype from frame control field
1350 *
1351 * Process all incoming IEEE 802.11 management frames. This will be called for
1352 * each frame received from the kernel driver through wlan#ap interface. In
1353 * addition, it can be called to re-inserted pending frames (e.g., when using
1354 * external RADIUS server as an MAC ACL).
1355 */
1356void ieee802_11_mgmt(struct hostapd_data *hapd, u8 *buf, size_t len, u16 stype,
1357 struct hostapd_frame_info *fi)
1358{
1359 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) buf;
1360 int broadcast;
1361
1362 if (stype == WLAN_FC_STYPE_BEACON) {
1363 handle_beacon(hapd, mgmt, len, fi);
1364 return;
1365 }
1366
1367 if (fi && fi->passive_scan)
1368 return;
1369
1370 broadcast = mgmt->bssid[0] == 0xff && mgmt->bssid[1] == 0xff &&
1371 mgmt->bssid[2] == 0xff && mgmt->bssid[3] == 0xff &&
1372 mgmt->bssid[4] == 0xff && mgmt->bssid[5] == 0xff;
1373
1374 if (!broadcast &&
fe2c5241 1375 os_memcmp(mgmt->bssid, hapd->own_addr, ETH_ALEN) != 0) {
6fc6879b
JM
1376 printf("MGMT: BSSID=" MACSTR " not our address\n",
1377 MAC2STR(mgmt->bssid));
1378 return;
1379 }
1380
1381
1382 if (stype == WLAN_FC_STYPE_PROBE_REQ) {
1383 handle_probe_req(hapd, mgmt, len);
1384 return;
1385 }
1386
1387 if (os_memcmp(mgmt->da, hapd->own_addr, ETH_ALEN) != 0) {
1388 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1389 HOSTAPD_LEVEL_DEBUG,
1390 "MGMT: DA=" MACSTR " not our address",
1391 MAC2STR(mgmt->da));
1392 return;
1393 }
1394
1395 switch (stype) {
1396 case WLAN_FC_STYPE_AUTH:
1397 wpa_printf(MSG_DEBUG, "mgmt::auth");
1398 handle_auth(hapd, mgmt, len);
1399 break;
1400 case WLAN_FC_STYPE_ASSOC_REQ:
1401 wpa_printf(MSG_DEBUG, "mgmt::assoc_req");
1402 handle_assoc(hapd, mgmt, len, 0);
1403 break;
6fc6879b
JM
1404 case WLAN_FC_STYPE_REASSOC_REQ:
1405 wpa_printf(MSG_DEBUG, "mgmt::reassoc_req");
1406 handle_assoc(hapd, mgmt, len, 1);
1407 break;
1408 case WLAN_FC_STYPE_DISASSOC:
1409 wpa_printf(MSG_DEBUG, "mgmt::disassoc");
1410 handle_disassoc(hapd, mgmt, len);
1411 break;
1412 case WLAN_FC_STYPE_DEAUTH:
1413 wpa_printf(MSG_DEBUG, "mgmt::deauth");
1414 handle_deauth(hapd, mgmt, len);
1415 break;
1416 case WLAN_FC_STYPE_ACTION:
1417 wpa_printf(MSG_DEBUG, "mgmt::action");
1418 handle_action(hapd, mgmt, len);
1419 break;
1420 default:
1421 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1422 HOSTAPD_LEVEL_DEBUG,
1423 "unknown mgmt frame subtype %d", stype);
1424 break;
1425 }
1426}
1427
1428
1429static void handle_auth_cb(struct hostapd_data *hapd,
1430 struct ieee80211_mgmt *mgmt,
1431 size_t len, int ok)
1432{
1433 u16 auth_alg, auth_transaction, status_code;
1434 struct sta_info *sta;
1435
1436 if (!ok) {
1437 hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
1438 HOSTAPD_LEVEL_NOTICE,
1439 "did not acknowledge authentication response");
1440 return;
1441 }
1442
1443 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
1444 printf("handle_auth_cb - too short payload (len=%lu)\n",
1445 (unsigned long) len);
1446 return;
1447 }
1448
1449 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
1450 auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
1451 status_code = le_to_host16(mgmt->u.auth.status_code);
1452
1453 sta = ap_get_sta(hapd, mgmt->da);
1454 if (!sta) {
1455 printf("handle_auth_cb: STA " MACSTR " not found\n",
1456 MAC2STR(mgmt->da));
1457 return;
1458 }
1459
1460 if (status_code == WLAN_STATUS_SUCCESS &&
1461 ((auth_alg == WLAN_AUTH_OPEN && auth_transaction == 2) ||
1462 (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 4))) {
1463 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1464 HOSTAPD_LEVEL_INFO, "authenticated");
1465 sta->flags |= WLAN_STA_AUTH;
1466 }
1467}
1468
1469
1470static void handle_assoc_cb(struct hostapd_data *hapd,
1471 struct ieee80211_mgmt *mgmt,
1472 size_t len, int reassoc, int ok)
1473{
1474 u16 status;
1475 struct sta_info *sta;
1476 int new_assoc = 1;
de9289c8 1477 struct ht_cap_ie *ht_cap = NULL;
6fc6879b
JM
1478
1479 if (!ok) {
1480 hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
1481 HOSTAPD_LEVEL_DEBUG,
1482 "did not acknowledge association response");
1483 return;
1484 }
1485
1486 if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_resp) :
1487 sizeof(mgmt->u.assoc_resp))) {
1488 printf("handle_assoc_cb(reassoc=%d) - too short payload "
1489 "(len=%lu)\n", reassoc, (unsigned long) len);
1490 return;
1491 }
1492
1493 if (reassoc)
1494 status = le_to_host16(mgmt->u.reassoc_resp.status_code);
1495 else
1496 status = le_to_host16(mgmt->u.assoc_resp.status_code);
1497
1498 sta = ap_get_sta(hapd, mgmt->da);
1499 if (!sta) {
1500 printf("handle_assoc_cb: STA " MACSTR " not found\n",
1501 MAC2STR(mgmt->da));
1502 return;
1503 }
1504
1505 if (status != WLAN_STATUS_SUCCESS)
1506 goto fail;
1507
1508 /* Stop previous accounting session, if one is started, and allocate
1509 * new session id for the new session. */
1510 accounting_sta_stop(hapd, sta);
6fc6879b
JM
1511
1512 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1513 HOSTAPD_LEVEL_INFO,
2fc98d02
JM
1514 "associated (aid %d)",
1515 sta->aid);
6fc6879b
JM
1516
1517 if (sta->flags & WLAN_STA_ASSOC)
1518 new_assoc = 0;
1519 sta->flags |= WLAN_STA_ASSOC;
1520
1521 if (reassoc)
1522 mlme_reassociate_indication(hapd, sta);
1523 else
1524 mlme_associate_indication(hapd, sta);
1525
de9289c8
JM
1526#ifdef CONFIG_IEEE80211N
1527 if (sta->flags & WLAN_STA_HT)
1528 ht_cap = &sta->ht_capabilities;
1529#endif /* CONFIG_IEEE80211N */
1530
5d22a1d5
JM
1531#ifdef CONFIG_IEEE80211W
1532 sta->ping_timed_out = 0;
1533#endif /* CONFIG_IEEE80211W */
1534
6fc6879b
JM
1535 if (hostapd_sta_add(hapd->conf->iface, hapd, sta->addr, sta->aid,
1536 sta->capability, sta->supported_rates,
de9289c8
JM
1537 sta->supported_rates_len, 0, sta->listen_interval,
1538 ht_cap))
dc366e8e 1539 {
6fc6879b
JM
1540 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1541 HOSTAPD_LEVEL_NOTICE,
1542 "Could not add STA to kernel driver");
1543 }
1544
1545 if (sta->eapol_sm == NULL) {
1546 /*
1547 * This STA does not use RADIUS server for EAP authentication,
1548 * so bind it to the selected VLAN interface now, since the
1549 * interface selection is not going to change anymore.
1550 */
1551 ap_sta_bind_vlan(hapd, sta, 0);
1552 } else if (sta->vlan_id) {
1553 /* VLAN ID already set (e.g., by PMKSA caching), so bind STA */
1554 ap_sta_bind_vlan(hapd, sta, 0);
1555 }
1556 if (sta->flags & WLAN_STA_SHORT_PREAMBLE) {
1557 hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
1558 WLAN_STA_SHORT_PREAMBLE, ~0);
1559 } else {
1560 hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
1561 0, ~WLAN_STA_SHORT_PREAMBLE);
1562 }
1563
1564 if (sta->auth_alg == WLAN_AUTH_FT)
1565 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
1566 else
1567 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
1568 hostapd_new_assoc_sta(hapd, sta, !new_assoc);
1569
1570 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
1571
1572 fail:
1573 /* Copy of the association request is not needed anymore */
1574 if (sta->last_assoc_req) {
1575 os_free(sta->last_assoc_req);
1576 sta->last_assoc_req = NULL;
1577 }
1578}
1579
1580
1581void ieee802_11_mgmt_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
1582 u16 stype, int ok)
1583{
1584 struct ieee80211_mgmt *mgmt = (struct ieee80211_mgmt *) buf;
1585
1586 switch (stype) {
1587 case WLAN_FC_STYPE_AUTH:
1588 wpa_printf(MSG_DEBUG, "mgmt::auth cb");
1589 handle_auth_cb(hapd, mgmt, len, ok);
1590 break;
1591 case WLAN_FC_STYPE_ASSOC_RESP:
1592 wpa_printf(MSG_DEBUG, "mgmt::assoc_resp cb");
1593 handle_assoc_cb(hapd, mgmt, len, 0, ok);
1594 break;
1595 case WLAN_FC_STYPE_REASSOC_RESP:
1596 wpa_printf(MSG_DEBUG, "mgmt::reassoc_resp cb");
1597 handle_assoc_cb(hapd, mgmt, len, 1, ok);
1598 break;
1599 case WLAN_FC_STYPE_PROBE_RESP:
1600 wpa_printf(MSG_DEBUG, "mgmt::proberesp cb");
1601 break;
1602 case WLAN_FC_STYPE_DEAUTH:
1603 /* ignore */
1604 break;
5d22a1d5
JM
1605 case WLAN_FC_STYPE_ACTION:
1606 wpa_printf(MSG_DEBUG, "mgmt::action cb");
1607 break;
6fc6879b
JM
1608 default:
1609 printf("unknown mgmt cb frame subtype %d\n", stype);
1610 break;
1611 }
1612}
1613
1614
1615static void ieee80211_tkip_countermeasures_stop(void *eloop_ctx,
1616 void *timeout_ctx)
1617{
1618 struct hostapd_data *hapd = eloop_ctx;
1619 hapd->tkip_countermeasures = 0;
1620 hostapd_set_countermeasures(hapd, 0);
1621 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
1622 HOSTAPD_LEVEL_INFO, "TKIP countermeasures ended");
1623}
1624
1625
1626static void ieee80211_tkip_countermeasures_start(struct hostapd_data *hapd)
1627{
1628 struct sta_info *sta;
1629
1630 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE80211,
1631 HOSTAPD_LEVEL_INFO, "TKIP countermeasures initiated");
1632
1633 wpa_auth_countermeasures_start(hapd->wpa_auth);
1634 hapd->tkip_countermeasures = 1;
1635 hostapd_set_countermeasures(hapd, 1);
1636 wpa_gtk_rekey(hapd->wpa_auth);
1637 eloop_cancel_timeout(ieee80211_tkip_countermeasures_stop, hapd, NULL);
1638 eloop_register_timeout(60, 0, ieee80211_tkip_countermeasures_stop,
1639 hapd, NULL);
1640 for (sta = hapd->sta_list; sta != NULL; sta = sta->next) {
1641 hostapd_sta_deauth(hapd, sta->addr,
1642 WLAN_REASON_MICHAEL_MIC_FAILURE);
1643 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC |
1644 WLAN_STA_AUTHORIZED);
1645 hostapd_sta_remove(hapd, sta->addr);
1646 }
1647}
1648
1649
1650void ieee80211_michael_mic_failure(struct hostapd_data *hapd, const u8 *addr,
1651 int local)
1652{
1653 time_t now;
1654
1655 if (addr && local) {
1656 struct sta_info *sta = ap_get_sta(hapd, addr);
1657 if (sta != NULL) {
1658 wpa_auth_sta_local_mic_failure_report(sta->wpa_sm);
1659 hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE80211,
1660 HOSTAPD_LEVEL_INFO,
1661 "Michael MIC failure detected in "
1662 "received frame");
1663 mlme_michaelmicfailure_indication(hapd, addr);
1664 } else {
1665 wpa_printf(MSG_DEBUG,
1666 "MLME-MICHAELMICFAILURE.indication "
1667 "for not associated STA (" MACSTR
1668 ") ignored", MAC2STR(addr));
1669 return;
1670 }
1671 }
1672
1673 time(&now);
1674 if (now > hapd->michael_mic_failure + 60) {
1675 hapd->michael_mic_failures = 1;
1676 } else {
1677 hapd->michael_mic_failures++;
1678 if (hapd->michael_mic_failures > 1)
1679 ieee80211_tkip_countermeasures_start(hapd);
1680 }
1681 hapd->michael_mic_failure = now;
1682}
1683
1684
1685int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
1686{
1687 /* TODO */
1688 return 0;
1689}
1690
1691
1692int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
1693 char *buf, size_t buflen)
1694{
1695 /* TODO */
1696 return 0;
1697}
1698
1699#endif /* CONFIG_NATIVE_WINDOWS */