blob: ca8db8fb00de22d76d109ff61cfec826225cf420 [file] [log] [blame]
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001/*
2 * hostapd / IEEE 802.11 Management
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#ifndef CONFIG_NATIVE_WINDOWS
12
13#include "utils/common.h"
14#include "utils/eloop.h"
15#include "crypto/crypto.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080016#include "crypto/sha256.h"
17#include "crypto/random.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070018#include "common/ieee802_11_defs.h"
19#include "common/ieee802_11_common.h"
20#include "common/wpa_ctrl.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080021#include "common/sae.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070022#include "radius/radius.h"
23#include "radius/radius_client.h"
24#include "p2p/p2p.h"
25#include "wps/wps.h"
26#include "hostapd.h"
27#include "beacon.h"
28#include "ieee802_11_auth.h"
29#include "sta_info.h"
30#include "ieee802_1x.h"
31#include "wpa_auth.h"
32#include "wmm.h"
33#include "ap_list.h"
34#include "accounting.h"
35#include "ap_config.h"
36#include "ap_mlme.h"
37#include "p2p_hostapd.h"
38#include "ap_drv_ops.h"
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -080039#include "wnm_ap.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070040#include "ieee802_11.h"
Dmitry Shmidtf21452a2014-02-26 10:55:25 -080041#include "dfs.h"
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070042
43
44u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid)
45{
46 u8 *pos = eid;
47 int i, num, count;
48
49 if (hapd->iface->current_rates == NULL)
50 return eid;
51
52 *pos++ = WLAN_EID_SUPP_RATES;
53 num = hapd->iface->num_rates;
54 if (hapd->iconf->ieee80211n && hapd->iconf->require_ht)
55 num++;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080056 if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht)
57 num++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070058 if (num > 8) {
59 /* rest of the rates are encoded in Extended supported
60 * rates element */
61 num = 8;
62 }
63
64 *pos++ = num;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070065 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num;
66 i++) {
67 count++;
68 *pos = hapd->iface->current_rates[i].rate / 5;
69 if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
70 *pos |= 0x80;
71 pos++;
72 }
73
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080074 if (hapd->iconf->ieee80211n && hapd->iconf->require_ht && count < 8) {
75 count++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070076 *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080077 }
78
79 if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht && count < 8) {
80 count++;
81 *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY;
82 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -070083
84 return pos;
85}
86
87
88u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid)
89{
90 u8 *pos = eid;
91 int i, num, count;
92
93 if (hapd->iface->current_rates == NULL)
94 return eid;
95
96 num = hapd->iface->num_rates;
97 if (hapd->iconf->ieee80211n && hapd->iconf->require_ht)
98 num++;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -080099 if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht)
100 num++;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700101 if (num <= 8)
102 return eid;
103 num -= 8;
104
105 *pos++ = WLAN_EID_EXT_SUPP_RATES;
106 *pos++ = num;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700107 for (i = 0, count = 0; i < hapd->iface->num_rates && count < num + 8;
108 i++) {
109 count++;
110 if (count <= 8)
111 continue; /* already in SuppRates IE */
112 *pos = hapd->iface->current_rates[i].rate / 5;
113 if (hapd->iface->current_rates[i].flags & HOSTAPD_RATE_BASIC)
114 *pos |= 0x80;
115 pos++;
116 }
117
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800118 if (hapd->iconf->ieee80211n && hapd->iconf->require_ht) {
119 count++;
120 if (count > 8)
121 *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_HT_PHY;
122 }
123
124 if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht) {
125 count++;
126 if (count > 8)
127 *pos++ = 0x80 | BSS_MEMBERSHIP_SELECTOR_VHT_PHY;
128 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700129
130 return pos;
131}
132
133
134u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
135 int probe)
136{
137 int capab = WLAN_CAPABILITY_ESS;
138 int privacy;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800139 int dfs;
140
141 /* Check if any of configured channels require DFS */
142 dfs = hostapd_is_dfs_required(hapd->iface);
143 if (dfs < 0) {
144 wpa_printf(MSG_WARNING, "Failed to check if DFS is required; ret=%d",
145 dfs);
146 dfs = 0;
147 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700148
149 if (hapd->iface->num_sta_no_short_preamble == 0 &&
150 hapd->iconf->preamble == SHORT_PREAMBLE)
151 capab |= WLAN_CAPABILITY_SHORT_PREAMBLE;
152
153 privacy = hapd->conf->ssid.wep.keys_set;
154
155 if (hapd->conf->ieee802_1x &&
156 (hapd->conf->default_wep_key_len ||
157 hapd->conf->individual_wep_key_len))
158 privacy = 1;
159
160 if (hapd->conf->wpa)
161 privacy = 1;
162
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800163#ifdef CONFIG_HS20
164 if (hapd->conf->osen)
165 privacy = 1;
166#endif /* CONFIG_HS20 */
167
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700168 if (sta) {
169 int policy, def_klen;
170 if (probe && sta->ssid_probe) {
171 policy = sta->ssid_probe->security_policy;
172 def_klen = sta->ssid_probe->wep.default_len;
173 } else {
174 policy = sta->ssid->security_policy;
175 def_klen = sta->ssid->wep.default_len;
176 }
177 privacy = policy != SECURITY_PLAINTEXT;
178 if (policy == SECURITY_IEEE_802_1X && def_klen == 0)
179 privacy = 0;
180 }
181
182 if (privacy)
183 capab |= WLAN_CAPABILITY_PRIVACY;
184
185 if (hapd->iface->current_mode &&
186 hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G &&
187 hapd->iface->num_sta_no_short_slot_time == 0)
188 capab |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
189
Dmitry Shmidtf21452a2014-02-26 10:55:25 -0800190 /*
191 * Currently, Spectrum Management capability bit is set when directly
192 * requested in configuration by spectrum_mgmt_required or when AP is
193 * running on DFS channel.
194 * TODO: Also consider driver support for TPC to set Spectrum Mgmt bit
195 */
196 if (hapd->iface->current_mode &&
197 hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211A &&
198 (hapd->iconf->spectrum_mgmt_required || dfs))
199 capab |= WLAN_CAPABILITY_SPECTRUM_MGMT;
200
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700201 return capab;
202}
203
204
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700205static u16 auth_shared_key(struct hostapd_data *hapd, struct sta_info *sta,
206 u16 auth_transaction, const u8 *challenge,
207 int iswep)
208{
209 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
210 HOSTAPD_LEVEL_DEBUG,
211 "authentication (shared key, transaction %d)",
212 auth_transaction);
213
214 if (auth_transaction == 1) {
215 if (!sta->challenge) {
216 /* Generate a pseudo-random challenge */
217 u8 key[8];
218 struct os_time now;
219 int r;
220 sta->challenge = os_zalloc(WLAN_AUTH_CHALLENGE_LEN);
221 if (sta->challenge == NULL)
222 return WLAN_STATUS_UNSPECIFIED_FAILURE;
223
224 os_get_time(&now);
225 r = os_random();
226 os_memcpy(key, &now.sec, 4);
227 os_memcpy(key + 4, &r, 4);
228 rc4_skip(key, sizeof(key), 0,
229 sta->challenge, WLAN_AUTH_CHALLENGE_LEN);
230 }
231 return 0;
232 }
233
234 if (auth_transaction != 3)
235 return WLAN_STATUS_UNSPECIFIED_FAILURE;
236
237 /* Transaction 3 */
238 if (!iswep || !sta->challenge || !challenge ||
239 os_memcmp(sta->challenge, challenge, WLAN_AUTH_CHALLENGE_LEN)) {
240 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
241 HOSTAPD_LEVEL_INFO,
242 "shared key authentication - invalid "
243 "challenge-response");
244 return WLAN_STATUS_CHALLENGE_FAIL;
245 }
246
247 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
248 HOSTAPD_LEVEL_DEBUG,
249 "authentication OK (shared key)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700250 sta->flags |= WLAN_STA_AUTH;
251 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700252 os_free(sta->challenge);
253 sta->challenge = NULL;
254
255 return 0;
256}
257
258
259static void send_auth_reply(struct hostapd_data *hapd,
260 const u8 *dst, const u8 *bssid,
261 u16 auth_alg, u16 auth_transaction, u16 resp,
262 const u8 *ies, size_t ies_len)
263{
264 struct ieee80211_mgmt *reply;
265 u8 *buf;
266 size_t rlen;
267
268 rlen = IEEE80211_HDRLEN + sizeof(reply->u.auth) + ies_len;
269 buf = os_zalloc(rlen);
270 if (buf == NULL)
271 return;
272
273 reply = (struct ieee80211_mgmt *) buf;
274 reply->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
275 WLAN_FC_STYPE_AUTH);
276 os_memcpy(reply->da, dst, ETH_ALEN);
277 os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
278 os_memcpy(reply->bssid, bssid, ETH_ALEN);
279
280 reply->u.auth.auth_alg = host_to_le16(auth_alg);
281 reply->u.auth.auth_transaction = host_to_le16(auth_transaction);
282 reply->u.auth.status_code = host_to_le16(resp);
283
284 if (ies && ies_len)
285 os_memcpy(reply->u.auth.variable, ies, ies_len);
286
287 wpa_printf(MSG_DEBUG, "authentication reply: STA=" MACSTR
288 " auth_alg=%d auth_transaction=%d resp=%d (IE len=%lu)",
289 MAC2STR(dst), auth_alg, auth_transaction,
290 resp, (unsigned long) ies_len);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800291 if (hostapd_drv_send_mlme(hapd, reply, rlen, 0) < 0)
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800292 wpa_printf(MSG_INFO, "send_auth_reply: send");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700293
294 os_free(buf);
295}
296
297
298#ifdef CONFIG_IEEE80211R
299static void handle_auth_ft_finish(void *ctx, const u8 *dst, const u8 *bssid,
300 u16 auth_transaction, u16 status,
301 const u8 *ies, size_t ies_len)
302{
303 struct hostapd_data *hapd = ctx;
304 struct sta_info *sta;
305
306 send_auth_reply(hapd, dst, bssid, WLAN_AUTH_FT, auth_transaction,
307 status, ies, ies_len);
308
309 if (status != WLAN_STATUS_SUCCESS)
310 return;
311
312 sta = ap_get_sta(hapd, dst);
313 if (sta == NULL)
314 return;
315
316 hostapd_logger(hapd, dst, HOSTAPD_MODULE_IEEE80211,
317 HOSTAPD_LEVEL_DEBUG, "authentication OK (FT)");
318 sta->flags |= WLAN_STA_AUTH;
319 mlme_authenticate_indication(hapd, sta);
320}
321#endif /* CONFIG_IEEE80211R */
322
323
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800324#ifdef CONFIG_SAE
325
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800326static struct wpabuf * auth_process_sae_commit(struct hostapd_data *hapd,
327 struct sta_info *sta)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800328{
329 struct wpabuf *buf;
330
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800331 if (hapd->conf->ssid.wpa_passphrase == NULL) {
332 wpa_printf(MSG_DEBUG, "SAE: No password available");
333 return NULL;
334 }
335
336 if (sae_prepare_commit(hapd->own_addr, sta->addr,
337 (u8 *) hapd->conf->ssid.wpa_passphrase,
338 os_strlen(hapd->conf->ssid.wpa_passphrase),
339 sta->sae) < 0) {
340 wpa_printf(MSG_DEBUG, "SAE: Could not pick PWE");
341 return NULL;
342 }
343
344 if (sae_process_commit(sta->sae) < 0) {
345 wpa_printf(MSG_DEBUG, "SAE: Failed to process peer commit");
346 return NULL;
347 }
348
349 buf = wpabuf_alloc(SAE_COMMIT_MAX_LEN);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800350 if (buf == NULL)
351 return NULL;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800352 sae_write_commit(sta->sae, buf, NULL);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800353
354 return buf;
355}
356
357
358static struct wpabuf * auth_build_sae_confirm(struct hostapd_data *hapd,
359 struct sta_info *sta)
360{
361 struct wpabuf *buf;
362
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800363 buf = wpabuf_alloc(SAE_CONFIRM_MAX_LEN);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800364 if (buf == NULL)
365 return NULL;
366
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800367 sae_write_confirm(sta->sae, buf);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800368
369 return buf;
370}
371
372
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800373static int use_sae_anti_clogging(struct hostapd_data *hapd)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800374{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800375 struct sta_info *sta;
376 unsigned int open = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800377
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800378 if (hapd->conf->sae_anti_clogging_threshold == 0)
379 return 1;
380
381 for (sta = hapd->sta_list; sta; sta = sta->next) {
382 if (!sta->sae)
383 continue;
384 if (sta->sae->state != SAE_COMMITTED &&
385 sta->sae->state != SAE_CONFIRMED)
386 continue;
387 open++;
388 if (open >= hapd->conf->sae_anti_clogging_threshold)
389 return 1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800390 }
391
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800392 return 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800393}
394
395
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800396static int check_sae_token(struct hostapd_data *hapd, const u8 *addr,
397 const u8 *token, size_t token_len)
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800398{
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800399 u8 mac[SHA256_MAC_LEN];
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800400
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800401 if (token_len != SHA256_MAC_LEN)
402 return -1;
403 if (hmac_sha256(hapd->sae_token_key, sizeof(hapd->sae_token_key),
404 addr, ETH_ALEN, mac) < 0 ||
405 os_memcmp(token, mac, SHA256_MAC_LEN) != 0)
406 return -1;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800407
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800408 return 0;
409}
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800410
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800411
412static struct wpabuf * auth_build_token_req(struct hostapd_data *hapd,
413 const u8 *addr)
414{
415 struct wpabuf *buf;
416 u8 *token;
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800417 struct os_reltime now;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800418
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800419 os_get_reltime(&now);
420 if (!os_reltime_initialized(&hapd->last_sae_token_key_update) ||
421 os_reltime_expired(&now, &hapd->last_sae_token_key_update, 60)) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800422 if (random_get_bytes(hapd->sae_token_key,
423 sizeof(hapd->sae_token_key)) < 0)
424 return NULL;
425 wpa_hexdump(MSG_DEBUG, "SAE: Updated token key",
426 hapd->sae_token_key, sizeof(hapd->sae_token_key));
Dmitry Shmidt04f534e2013-12-09 15:50:16 -0800427 hapd->last_sae_token_key_update = now;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800428 }
429
430 buf = wpabuf_alloc(SHA256_MAC_LEN);
431 if (buf == NULL)
432 return NULL;
433
434 token = wpabuf_put(buf, SHA256_MAC_LEN);
435 hmac_sha256(hapd->sae_token_key, sizeof(hapd->sae_token_key),
436 addr, ETH_ALEN, token);
437
438 return buf;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800439}
440
441
442static void handle_auth_sae(struct hostapd_data *hapd, struct sta_info *sta,
443 const struct ieee80211_mgmt *mgmt, size_t len,
444 u8 auth_transaction)
445{
446 u16 resp = WLAN_STATUS_SUCCESS;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800447 struct wpabuf *data = NULL;
448
449 if (!sta->sae) {
450 if (auth_transaction != 1)
451 return;
452 sta->sae = os_zalloc(sizeof(*sta->sae));
453 if (sta->sae == NULL)
454 return;
455 sta->sae->state = SAE_NOTHING;
456 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800457
458 if (auth_transaction == 1) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800459 const u8 *token = NULL;
460 size_t token_len = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800461 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
462 HOSTAPD_LEVEL_DEBUG,
463 "start SAE authentication (RX commit)");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800464 resp = sae_parse_commit(sta->sae, mgmt->u.auth.variable,
465 ((const u8 *) mgmt) + len -
466 mgmt->u.auth.variable, &token,
467 &token_len, hapd->conf->sae_groups);
468 if (token && check_sae_token(hapd, sta->addr, token, token_len)
469 < 0) {
470 wpa_printf(MSG_DEBUG, "SAE: Drop commit message with "
471 "incorrect token from " MACSTR,
472 MAC2STR(sta->addr));
473 return;
474 }
475
476 if (resp == WLAN_STATUS_SUCCESS) {
477 if (!token && use_sae_anti_clogging(hapd)) {
478 wpa_printf(MSG_DEBUG, "SAE: Request anti-"
479 "clogging token from " MACSTR,
480 MAC2STR(sta->addr));
481 data = auth_build_token_req(hapd, sta->addr);
482 resp = WLAN_STATUS_ANTI_CLOGGING_TOKEN_REQ;
483 } else {
484 data = auth_process_sae_commit(hapd, sta);
485 if (data == NULL)
486 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
487 else
488 sta->sae->state = SAE_COMMITTED;
489 }
490 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800491 } else if (auth_transaction == 2) {
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800492 if (sta->sae->state != SAE_COMMITTED) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800493 hostapd_logger(hapd, sta->addr,
494 HOSTAPD_MODULE_IEEE80211,
495 HOSTAPD_LEVEL_DEBUG,
496 "SAE confirm before commit");
497 resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
Dmitry Shmidt96be6222014-02-13 10:16:51 -0800498 goto failed;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800499 }
500 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
501 HOSTAPD_LEVEL_DEBUG,
502 "SAE authentication (RX confirm)");
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800503 if (sae_check_confirm(sta->sae, mgmt->u.auth.variable,
504 ((u8 *) mgmt) + len -
505 mgmt->u.auth.variable) < 0) {
506 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
507 } else {
508 resp = WLAN_STATUS_SUCCESS;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800509 sta->flags |= WLAN_STA_AUTH;
510 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
511 sta->auth_alg = WLAN_AUTH_SAE;
512 mlme_authenticate_indication(hapd, sta);
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -0800513
514 data = auth_build_sae_confirm(hapd, sta);
515 if (data == NULL)
516 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
517 else {
518 sta->sae->state = SAE_ACCEPTED;
519 sae_clear_temp_data(sta->sae);
520 }
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800521 }
522 } else {
523 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
524 HOSTAPD_LEVEL_DEBUG,
525 "unexpected SAE authentication transaction %u",
526 auth_transaction);
527 resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
528 }
529
Dmitry Shmidt96be6222014-02-13 10:16:51 -0800530failed:
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800531 sta->auth_alg = WLAN_AUTH_SAE;
532
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800533 send_auth_reply(hapd, mgmt->sa, mgmt->bssid, WLAN_AUTH_SAE,
534 auth_transaction, resp,
535 data ? wpabuf_head(data) : (u8 *) "",
536 data ? wpabuf_len(data) : 0);
537 wpabuf_free(data);
538}
539#endif /* CONFIG_SAE */
540
541
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700542static void handle_auth(struct hostapd_data *hapd,
543 const struct ieee80211_mgmt *mgmt, size_t len)
544{
545 u16 auth_alg, auth_transaction, status_code;
546 u16 resp = WLAN_STATUS_SUCCESS;
547 struct sta_info *sta = NULL;
548 int res;
549 u16 fc;
550 const u8 *challenge = NULL;
551 u32 session_timeout, acct_interim_interval;
552 int vlan_id = 0;
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800553 struct hostapd_sta_wpa_psk_short *psk = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700554 u8 resp_ies[2 + WLAN_AUTH_CHALLENGE_LEN];
555 size_t resp_ies_len = 0;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700556 char *identity = NULL;
557 char *radius_cui = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700558
559 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800560 wpa_printf(MSG_INFO, "handle_auth - too short payload (len=%lu)",
561 (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700562 return;
563 }
564
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700565#ifdef CONFIG_TESTING_OPTIONS
Dmitry Shmidt7832adb2014-04-29 10:53:02 -0700566 if (hapd->iconf->ignore_auth_probability > 0.0 &&
Dmitry Shmidt8da800a2013-04-24 12:57:01 -0700567 drand48() < hapd->iconf->ignore_auth_probability) {
568 wpa_printf(MSG_INFO,
569 "TESTING: ignoring auth frame from " MACSTR,
570 MAC2STR(mgmt->sa));
571 return;
572 }
573#endif /* CONFIG_TESTING_OPTIONS */
574
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700575 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
576 auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
577 status_code = le_to_host16(mgmt->u.auth.status_code);
578 fc = le_to_host16(mgmt->frame_control);
579
580 if (len >= IEEE80211_HDRLEN + sizeof(mgmt->u.auth) +
581 2 + WLAN_AUTH_CHALLENGE_LEN &&
582 mgmt->u.auth.variable[0] == WLAN_EID_CHALLENGE &&
583 mgmt->u.auth.variable[1] == WLAN_AUTH_CHALLENGE_LEN)
584 challenge = &mgmt->u.auth.variable[2];
585
586 wpa_printf(MSG_DEBUG, "authentication: STA=" MACSTR " auth_alg=%d "
587 "auth_transaction=%d status_code=%d wep=%d%s",
588 MAC2STR(mgmt->sa), auth_alg, auth_transaction,
589 status_code, !!(fc & WLAN_FC_ISWEP),
590 challenge ? " challenge" : "");
591
592 if (hapd->tkip_countermeasures) {
593 resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
594 goto fail;
595 }
596
597 if (!(((hapd->conf->auth_algs & WPA_AUTH_ALG_OPEN) &&
598 auth_alg == WLAN_AUTH_OPEN) ||
599#ifdef CONFIG_IEEE80211R
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800600 (hapd->conf->wpa && wpa_key_mgmt_ft(hapd->conf->wpa_key_mgmt) &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700601 auth_alg == WLAN_AUTH_FT) ||
602#endif /* CONFIG_IEEE80211R */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800603#ifdef CONFIG_SAE
604 (hapd->conf->wpa && wpa_key_mgmt_sae(hapd->conf->wpa_key_mgmt) &&
605 auth_alg == WLAN_AUTH_SAE) ||
606#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700607 ((hapd->conf->auth_algs & WPA_AUTH_ALG_SHARED) &&
608 auth_alg == WLAN_AUTH_SHARED_KEY))) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800609 wpa_printf(MSG_INFO, "Unsupported authentication algorithm (%d)",
610 auth_alg);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700611 resp = WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
612 goto fail;
613 }
614
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800615 if (!(auth_transaction == 1 || auth_alg == WLAN_AUTH_SAE ||
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700616 (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 3))) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800617 wpa_printf(MSG_INFO, "Unknown authentication transaction number (%d)",
618 auth_transaction);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700619 resp = WLAN_STATUS_UNKNOWN_AUTH_TRANSACTION;
620 goto fail;
621 }
622
623 if (os_memcmp(mgmt->sa, hapd->own_addr, ETH_ALEN) == 0) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800624 wpa_printf(MSG_INFO, "Station " MACSTR " not allowed to authenticate",
625 MAC2STR(mgmt->sa));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700626 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
627 goto fail;
628 }
629
630 res = hostapd_allowed_address(hapd, mgmt->sa, (u8 *) mgmt, len,
631 &session_timeout,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800632 &acct_interim_interval, &vlan_id,
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800633 &psk, &identity, &radius_cui);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800634
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700635 if (res == HOSTAPD_ACL_REJECT) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -0800636 wpa_printf(MSG_INFO, "Station " MACSTR " not allowed to authenticate",
637 MAC2STR(mgmt->sa));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700638 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
639 goto fail;
640 }
641 if (res == HOSTAPD_ACL_PENDING) {
642 wpa_printf(MSG_DEBUG, "Authentication frame from " MACSTR
643 " waiting for an external authentication",
644 MAC2STR(mgmt->sa));
645 /* Authentication code will re-send the authentication frame
646 * after it has received (and cached) information from the
647 * external source. */
648 return;
649 }
650
651 sta = ap_sta_add(hapd, mgmt->sa);
652 if (!sta) {
Dmitry Shmidt4b060592013-04-29 16:42:49 -0700653 resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700654 goto fail;
655 }
656
657 if (vlan_id > 0) {
Dmitry Shmidt34af3062013-07-11 10:46:32 -0700658 if (!hostapd_vlan_id_valid(hapd->conf->vlan, vlan_id)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700659 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
660 HOSTAPD_LEVEL_INFO, "Invalid VLAN ID "
661 "%d received from RADIUS server",
662 vlan_id);
663 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
664 goto fail;
665 }
666 sta->vlan_id = vlan_id;
667 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_RADIUS,
668 HOSTAPD_LEVEL_INFO, "VLAN ID %d", sta->vlan_id);
669 }
670
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800671 hostapd_free_psk_list(sta->psk);
672 if (hapd->conf->wpa_psk_radius != PSK_RADIUS_IGNORED) {
673 sta->psk = psk;
674 psk = NULL;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800675 } else {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800676 sta->psk = NULL;
677 }
678
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700679 sta->identity = identity;
680 identity = NULL;
681 sta->radius_cui = radius_cui;
682 radius_cui = NULL;
683
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700684 sta->flags &= ~WLAN_STA_PREAUTH;
685 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
686
687 if (hapd->conf->acct_interim_interval == 0 && acct_interim_interval)
688 sta->acct_interim_interval = acct_interim_interval;
689 if (res == HOSTAPD_ACL_ACCEPT_TIMEOUT)
690 ap_sta_session_timeout(hapd, sta, session_timeout);
691 else
692 ap_sta_no_session_timeout(hapd, sta);
693
694 switch (auth_alg) {
695 case WLAN_AUTH_OPEN:
696 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
697 HOSTAPD_LEVEL_DEBUG,
698 "authentication OK (open system)");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700699 sta->flags |= WLAN_STA_AUTH;
700 wpa_auth_sm_event(sta->wpa_sm, WPA_AUTH);
701 sta->auth_alg = WLAN_AUTH_OPEN;
702 mlme_authenticate_indication(hapd, sta);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700703 break;
704 case WLAN_AUTH_SHARED_KEY:
705 resp = auth_shared_key(hapd, sta, auth_transaction, challenge,
706 fc & WLAN_FC_ISWEP);
707 sta->auth_alg = WLAN_AUTH_SHARED_KEY;
708 mlme_authenticate_indication(hapd, sta);
709 if (sta->challenge && auth_transaction == 1) {
710 resp_ies[0] = WLAN_EID_CHALLENGE;
711 resp_ies[1] = WLAN_AUTH_CHALLENGE_LEN;
712 os_memcpy(resp_ies + 2, sta->challenge,
713 WLAN_AUTH_CHALLENGE_LEN);
714 resp_ies_len = 2 + WLAN_AUTH_CHALLENGE_LEN;
715 }
716 break;
717#ifdef CONFIG_IEEE80211R
718 case WLAN_AUTH_FT:
719 sta->auth_alg = WLAN_AUTH_FT;
720 if (sta->wpa_sm == NULL)
721 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700722 sta->addr, NULL);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700723 if (sta->wpa_sm == NULL) {
724 wpa_printf(MSG_DEBUG, "FT: Failed to initialize WPA "
725 "state machine");
726 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
727 goto fail;
728 }
729 wpa_ft_process_auth(sta->wpa_sm, mgmt->bssid,
730 auth_transaction, mgmt->u.auth.variable,
731 len - IEEE80211_HDRLEN -
732 sizeof(mgmt->u.auth),
733 handle_auth_ft_finish, hapd);
734 /* handle_auth_ft_finish() callback will complete auth. */
735 return;
736#endif /* CONFIG_IEEE80211R */
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800737#ifdef CONFIG_SAE
738 case WLAN_AUTH_SAE:
739 handle_auth_sae(hapd, sta, mgmt, len, auth_transaction);
740 return;
741#endif /* CONFIG_SAE */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700742 }
743
744 fail:
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700745 os_free(identity);
746 os_free(radius_cui);
Dmitry Shmidtd5e49232012-12-03 15:08:10 -0800747 hostapd_free_psk_list(psk);
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700748
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700749 send_auth_reply(hapd, mgmt->sa, mgmt->bssid, auth_alg,
750 auth_transaction + 1, resp, resp_ies, resp_ies_len);
751}
752
753
754static int hostapd_get_aid(struct hostapd_data *hapd, struct sta_info *sta)
755{
756 int i, j = 32, aid;
757
758 /* get a unique AID */
759 if (sta->aid > 0) {
760 wpa_printf(MSG_DEBUG, " old AID %d", sta->aid);
761 return 0;
762 }
763
764 for (i = 0; i < AID_WORDS; i++) {
765 if (hapd->sta_aid[i] == (u32) -1)
766 continue;
767 for (j = 0; j < 32; j++) {
768 if (!(hapd->sta_aid[i] & BIT(j)))
769 break;
770 }
771 if (j < 32)
772 break;
773 }
774 if (j == 32)
775 return -1;
776 aid = i * 32 + j + 1;
777 if (aid > 2007)
778 return -1;
779
780 sta->aid = aid;
781 hapd->sta_aid[i] |= BIT(j);
782 wpa_printf(MSG_DEBUG, " new AID %d", sta->aid);
783 return 0;
784}
785
786
787static u16 check_ssid(struct hostapd_data *hapd, struct sta_info *sta,
788 const u8 *ssid_ie, size_t ssid_ie_len)
789{
790 if (ssid_ie == NULL)
791 return WLAN_STATUS_UNSPECIFIED_FAILURE;
792
793 if (ssid_ie_len != hapd->conf->ssid.ssid_len ||
794 os_memcmp(ssid_ie, hapd->conf->ssid.ssid, ssid_ie_len) != 0) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700795 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
796 HOSTAPD_LEVEL_INFO,
797 "Station tried to associate with unknown SSID "
Dmitry Shmidt3c479372014-02-04 10:50:36 -0800798 "'%s'", wpa_ssid_txt(ssid_ie, ssid_ie_len));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700799 return WLAN_STATUS_UNSPECIFIED_FAILURE;
800 }
801
802 return WLAN_STATUS_SUCCESS;
803}
804
805
806static u16 check_wmm(struct hostapd_data *hapd, struct sta_info *sta,
807 const u8 *wmm_ie, size_t wmm_ie_len)
808{
809 sta->flags &= ~WLAN_STA_WMM;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800810 sta->qosinfo = 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700811 if (wmm_ie && hapd->conf->wmm_enabled) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800812 struct wmm_information_element *wmm;
813
814 if (!hostapd_eid_wmm_valid(hapd, wmm_ie, wmm_ie_len)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700815 hostapd_logger(hapd, sta->addr,
816 HOSTAPD_MODULE_WPA,
817 HOSTAPD_LEVEL_DEBUG,
818 "invalid WMM element in association "
819 "request");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800820 return WLAN_STATUS_UNSPECIFIED_FAILURE;
821 }
822
823 sta->flags |= WLAN_STA_WMM;
824 wmm = (struct wmm_information_element *) wmm_ie;
825 sta->qosinfo = wmm->qos_info;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700826 }
827 return WLAN_STATUS_SUCCESS;
828}
829
830
831static u16 copy_supp_rates(struct hostapd_data *hapd, struct sta_info *sta,
832 struct ieee802_11_elems *elems)
833{
834 if (!elems->supp_rates) {
835 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
836 HOSTAPD_LEVEL_DEBUG,
837 "No supported rates element in AssocReq");
838 return WLAN_STATUS_UNSPECIFIED_FAILURE;
839 }
840
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700841 if (elems->supp_rates_len + elems->ext_supp_rates_len >
842 sizeof(sta->supported_rates)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700843 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
844 HOSTAPD_LEVEL_DEBUG,
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700845 "Invalid supported rates element length %d+%d",
846 elems->supp_rates_len,
847 elems->ext_supp_rates_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700848 return WLAN_STATUS_UNSPECIFIED_FAILURE;
849 }
850
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700851 sta->supported_rates_len = merge_byte_arrays(
852 sta->supported_rates, sizeof(sta->supported_rates),
853 elems->supp_rates, elems->supp_rates_len,
854 elems->ext_supp_rates, elems->ext_supp_rates_len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700855
856 return WLAN_STATUS_SUCCESS;
857}
858
859
Dmitry Shmidt051af732013-10-22 13:52:46 -0700860static u16 check_ext_capab(struct hostapd_data *hapd, struct sta_info *sta,
861 const u8 *ext_capab_ie, size_t ext_capab_ie_len)
862{
863#ifdef CONFIG_INTERWORKING
864 /* check for QoS Map support */
865 if (ext_capab_ie_len >= 5) {
866 if (ext_capab_ie[4] & 0x01)
867 sta->qos_map_enabled = 1;
868 }
869#endif /* CONFIG_INTERWORKING */
870
871 return WLAN_STATUS_SUCCESS;
872}
873
874
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700875static u16 check_assoc_ies(struct hostapd_data *hapd, struct sta_info *sta,
876 const u8 *ies, size_t ies_len, int reassoc)
877{
878 struct ieee802_11_elems elems;
879 u16 resp;
880 const u8 *wpa_ie;
881 size_t wpa_ie_len;
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700882 const u8 *p2p_dev_addr = NULL;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700883
884 if (ieee802_11_parse_elems(ies, ies_len, &elems, 1) == ParseFailed) {
885 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
886 HOSTAPD_LEVEL_INFO, "Station sent an invalid "
887 "association request");
888 return WLAN_STATUS_UNSPECIFIED_FAILURE;
889 }
890
891 resp = check_ssid(hapd, sta, elems.ssid, elems.ssid_len);
892 if (resp != WLAN_STATUS_SUCCESS)
893 return resp;
894 resp = check_wmm(hapd, sta, elems.wmm, elems.wmm_len);
895 if (resp != WLAN_STATUS_SUCCESS)
896 return resp;
Dmitry Shmidt051af732013-10-22 13:52:46 -0700897 resp = check_ext_capab(hapd, sta, elems.ext_capab, elems.ext_capab_len);
898 if (resp != WLAN_STATUS_SUCCESS)
899 return resp;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700900 resp = copy_supp_rates(hapd, sta, &elems);
901 if (resp != WLAN_STATUS_SUCCESS)
902 return resp;
903#ifdef CONFIG_IEEE80211N
904 resp = copy_sta_ht_capab(hapd, sta, elems.ht_capabilities,
905 elems.ht_capabilities_len);
906 if (resp != WLAN_STATUS_SUCCESS)
907 return resp;
908 if (hapd->iconf->ieee80211n && hapd->iconf->require_ht &&
909 !(sta->flags & WLAN_STA_HT)) {
910 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
911 HOSTAPD_LEVEL_INFO, "Station does not support "
912 "mandatory HT PHY - reject association");
913 return WLAN_STATUS_ASSOC_DENIED_NO_HT;
914 }
915#endif /* CONFIG_IEEE80211N */
916
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700917#ifdef CONFIG_IEEE80211AC
918 resp = copy_sta_vht_capab(hapd, sta, elems.vht_capabilities,
919 elems.vht_capabilities_len);
920 if (resp != WLAN_STATUS_SUCCESS)
921 return resp;
Dmitry Shmidtbd14a572014-02-18 10:33:49 -0800922
923 resp = set_sta_vht_opmode(hapd, sta, elems.vht_opmode_notif);
924 if (resp != WLAN_STATUS_SUCCESS)
925 return resp;
926
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700927 if (hapd->iconf->ieee80211ac && hapd->iconf->require_vht &&
928 !(sta->flags & WLAN_STA_VHT)) {
929 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
930 HOSTAPD_LEVEL_INFO, "Station does not support "
931 "mandatory VHT PHY - reject association");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -0800932 return WLAN_STATUS_ASSOC_DENIED_NO_VHT;
Dmitry Shmidt61d9df32012-08-29 16:22:06 -0700933 }
934#endif /* CONFIG_IEEE80211AC */
935
Dmitry Shmidt391c59f2013-09-03 12:16:28 -0700936#ifdef CONFIG_P2P
937 if (elems.p2p) {
938 wpabuf_free(sta->p2p_ie);
939 sta->p2p_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
940 P2P_IE_VENDOR_TYPE);
941 if (sta->p2p_ie)
942 p2p_dev_addr = p2p_get_go_dev_addr(sta->p2p_ie);
943 } else {
944 wpabuf_free(sta->p2p_ie);
945 sta->p2p_ie = NULL;
946 }
947#endif /* CONFIG_P2P */
948
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700949 if ((hapd->conf->wpa & WPA_PROTO_RSN) && elems.rsn_ie) {
950 wpa_ie = elems.rsn_ie;
951 wpa_ie_len = elems.rsn_ie_len;
952 } else if ((hapd->conf->wpa & WPA_PROTO_WPA) &&
953 elems.wpa_ie) {
954 wpa_ie = elems.wpa_ie;
955 wpa_ie_len = elems.wpa_ie_len;
956 } else {
957 wpa_ie = NULL;
958 wpa_ie_len = 0;
959 }
960
961#ifdef CONFIG_WPS
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800962 sta->flags &= ~(WLAN_STA_WPS | WLAN_STA_MAYBE_WPS | WLAN_STA_WPS2);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700963 if (hapd->conf->wps_state && elems.wps_ie) {
964 wpa_printf(MSG_DEBUG, "STA included WPS IE in (Re)Association "
965 "Request - assume WPS is used");
966 sta->flags |= WLAN_STA_WPS;
967 wpabuf_free(sta->wps_ie);
968 sta->wps_ie = ieee802_11_vendor_ie_concat(ies, ies_len,
969 WPS_IE_VENDOR_TYPE);
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -0800970 if (sta->wps_ie && wps_is_20(sta->wps_ie)) {
971 wpa_printf(MSG_DEBUG, "WPS: STA supports WPS 2.0");
972 sta->flags |= WLAN_STA_WPS2;
973 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -0700974 wpa_ie = NULL;
975 wpa_ie_len = 0;
976 if (sta->wps_ie && wps_validate_assoc_req(sta->wps_ie) < 0) {
977 wpa_printf(MSG_DEBUG, "WPS: Invalid WPS IE in "
978 "(Re)Association Request - reject");
979 return WLAN_STATUS_INVALID_IE;
980 }
981 } else if (hapd->conf->wps_state && wpa_ie == NULL) {
982 wpa_printf(MSG_DEBUG, "STA did not include WPA/RSN IE in "
983 "(Re)Association Request - possible WPS use");
984 sta->flags |= WLAN_STA_MAYBE_WPS;
985 } else
986#endif /* CONFIG_WPS */
987 if (hapd->conf->wpa && wpa_ie == NULL) {
988 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
989 HOSTAPD_LEVEL_INFO,
990 "No WPA/RSN IE in association request");
991 return WLAN_STATUS_INVALID_IE;
992 }
993
994 if (hapd->conf->wpa && wpa_ie) {
995 int res;
996 wpa_ie -= 2;
997 wpa_ie_len += 2;
998 if (sta->wpa_sm == NULL)
999 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
Dmitry Shmidt391c59f2013-09-03 12:16:28 -07001000 sta->addr,
1001 p2p_dev_addr);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001002 if (sta->wpa_sm == NULL) {
1003 wpa_printf(MSG_WARNING, "Failed to initialize WPA "
1004 "state machine");
1005 return WLAN_STATUS_UNSPECIFIED_FAILURE;
1006 }
1007 res = wpa_validate_wpa_ie(hapd->wpa_auth, sta->wpa_sm,
1008 wpa_ie, wpa_ie_len,
1009 elems.mdie, elems.mdie_len);
1010 if (res == WPA_INVALID_GROUP)
1011 resp = WLAN_STATUS_GROUP_CIPHER_NOT_VALID;
1012 else if (res == WPA_INVALID_PAIRWISE)
1013 resp = WLAN_STATUS_PAIRWISE_CIPHER_NOT_VALID;
1014 else if (res == WPA_INVALID_AKMP)
1015 resp = WLAN_STATUS_AKMP_NOT_VALID;
1016 else if (res == WPA_ALLOC_FAIL)
1017 resp = WLAN_STATUS_UNSPECIFIED_FAILURE;
1018#ifdef CONFIG_IEEE80211W
1019 else if (res == WPA_MGMT_FRAME_PROTECTION_VIOLATION)
1020 resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
1021 else if (res == WPA_INVALID_MGMT_GROUP_CIPHER)
1022 resp = WLAN_STATUS_ROBUST_MGMT_FRAME_POLICY_VIOLATION;
1023#endif /* CONFIG_IEEE80211W */
1024 else if (res == WPA_INVALID_MDIE)
1025 resp = WLAN_STATUS_INVALID_MDIE;
1026 else if (res != WPA_IE_OK)
1027 resp = WLAN_STATUS_INVALID_IE;
1028 if (resp != WLAN_STATUS_SUCCESS)
1029 return resp;
1030#ifdef CONFIG_IEEE80211W
1031 if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
1032 sta->sa_query_count > 0)
1033 ap_check_sa_query_timeout(hapd, sta);
1034 if ((sta->flags & WLAN_STA_MFP) && !sta->sa_query_timed_out &&
1035 (!reassoc || sta->auth_alg != WLAN_AUTH_FT)) {
1036 /*
1037 * STA has already been associated with MFP and SA
1038 * Query timeout has not been reached. Reject the
1039 * association attempt temporarily and start SA Query,
1040 * if one is not pending.
1041 */
1042
1043 if (sta->sa_query_count == 0)
1044 ap_sta_start_sa_query(hapd, sta);
1045
1046 return WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY;
1047 }
1048
1049 if (wpa_auth_uses_mfp(sta->wpa_sm))
1050 sta->flags |= WLAN_STA_MFP;
1051 else
1052 sta->flags &= ~WLAN_STA_MFP;
1053#endif /* CONFIG_IEEE80211W */
1054
1055#ifdef CONFIG_IEEE80211R
1056 if (sta->auth_alg == WLAN_AUTH_FT) {
1057 if (!reassoc) {
1058 wpa_printf(MSG_DEBUG, "FT: " MACSTR " tried "
1059 "to use association (not "
1060 "re-association) with FT auth_alg",
1061 MAC2STR(sta->addr));
1062 return WLAN_STATUS_UNSPECIFIED_FAILURE;
1063 }
1064
1065 resp = wpa_ft_validate_reassoc(sta->wpa_sm, ies,
1066 ies_len);
1067 if (resp != WLAN_STATUS_SUCCESS)
1068 return resp;
1069 }
1070#endif /* CONFIG_IEEE80211R */
1071
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001072#ifdef CONFIG_SAE
1073 if (wpa_auth_uses_sae(sta->wpa_sm) &&
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001074 sta->auth_alg != WLAN_AUTH_SAE &&
1075 !(sta->auth_alg == WLAN_AUTH_FT &&
1076 wpa_auth_uses_ft_sae(sta->wpa_sm))) {
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001077 wpa_printf(MSG_DEBUG, "SAE: " MACSTR " tried to use "
1078 "SAE AKM after non-SAE auth_alg %u",
1079 MAC2STR(sta->addr), sta->auth_alg);
1080 return WLAN_STATUS_NOT_SUPPORTED_AUTH_ALG;
1081 }
1082#endif /* CONFIG_SAE */
1083
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001084#ifdef CONFIG_IEEE80211N
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001085 if ((sta->flags & (WLAN_STA_HT | WLAN_STA_VHT)) &&
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001086 wpa_auth_get_pairwise(sta->wpa_sm) == WPA_CIPHER_TKIP) {
1087 hostapd_logger(hapd, sta->addr,
1088 HOSTAPD_MODULE_IEEE80211,
1089 HOSTAPD_LEVEL_INFO,
1090 "Station tried to use TKIP with HT "
1091 "association");
1092 return WLAN_STATUS_CIPHER_REJECTED_PER_POLICY;
1093 }
1094#endif /* CONFIG_IEEE80211N */
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001095#ifdef CONFIG_HS20
1096 } else if (hapd->conf->osen) {
1097 if (elems.osen == NULL) {
1098 hostapd_logger(
1099 hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1100 HOSTAPD_LEVEL_INFO,
1101 "No HS 2.0 OSEN element in association request");
1102 return WLAN_STATUS_INVALID_IE;
1103 }
1104
1105 wpa_printf(MSG_DEBUG, "HS 2.0: OSEN association");
1106 if (sta->wpa_sm == NULL)
1107 sta->wpa_sm = wpa_auth_sta_init(hapd->wpa_auth,
1108 sta->addr, NULL);
1109 if (sta->wpa_sm == NULL) {
1110 wpa_printf(MSG_WARNING, "Failed to initialize WPA "
1111 "state machine");
1112 return WLAN_STATUS_UNSPECIFIED_FAILURE;
1113 }
1114 if (wpa_validate_osen(hapd->wpa_auth, sta->wpa_sm,
1115 elems.osen - 2, elems.osen_len + 2) < 0)
1116 return WLAN_STATUS_INVALID_IE;
1117#endif /* CONFIG_HS20 */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001118 } else
1119 wpa_auth_sta_no_wpa(sta->wpa_sm);
1120
1121#ifdef CONFIG_P2P
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001122 p2p_group_notif_assoc(hapd->p2p_group, sta->addr, ies, ies_len);
1123#endif /* CONFIG_P2P */
1124
Dmitry Shmidtd5e49232012-12-03 15:08:10 -08001125#ifdef CONFIG_HS20
1126 wpabuf_free(sta->hs20_ie);
1127 if (elems.hs20 && elems.hs20_len > 4) {
1128 sta->hs20_ie = wpabuf_alloc_copy(elems.hs20 + 4,
1129 elems.hs20_len - 4);
1130 } else
1131 sta->hs20_ie = NULL;
1132#endif /* CONFIG_HS20 */
1133
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001134 return WLAN_STATUS_SUCCESS;
1135}
1136
1137
1138static void send_deauth(struct hostapd_data *hapd, const u8 *addr,
1139 u16 reason_code)
1140{
1141 int send_len;
1142 struct ieee80211_mgmt reply;
1143
1144 os_memset(&reply, 0, sizeof(reply));
1145 reply.frame_control =
1146 IEEE80211_FC(WLAN_FC_TYPE_MGMT, WLAN_FC_STYPE_DEAUTH);
1147 os_memcpy(reply.da, addr, ETH_ALEN);
1148 os_memcpy(reply.sa, hapd->own_addr, ETH_ALEN);
1149 os_memcpy(reply.bssid, hapd->own_addr, ETH_ALEN);
1150
1151 send_len = IEEE80211_HDRLEN + sizeof(reply.u.deauth);
1152 reply.u.deauth.reason_code = host_to_le16(reason_code);
1153
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001154 if (hostapd_drv_send_mlme(hapd, &reply, send_len, 0) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001155 wpa_printf(MSG_INFO, "Failed to send deauth: %s",
1156 strerror(errno));
1157}
1158
1159
1160static void send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta,
1161 u16 status_code, int reassoc, const u8 *ies,
1162 size_t ies_len)
1163{
1164 int send_len;
1165 u8 buf[sizeof(struct ieee80211_mgmt) + 1024];
1166 struct ieee80211_mgmt *reply;
1167 u8 *p;
1168
1169 os_memset(buf, 0, sizeof(buf));
1170 reply = (struct ieee80211_mgmt *) buf;
1171 reply->frame_control =
1172 IEEE80211_FC(WLAN_FC_TYPE_MGMT,
1173 (reassoc ? WLAN_FC_STYPE_REASSOC_RESP :
1174 WLAN_FC_STYPE_ASSOC_RESP));
1175 os_memcpy(reply->da, sta->addr, ETH_ALEN);
1176 os_memcpy(reply->sa, hapd->own_addr, ETH_ALEN);
1177 os_memcpy(reply->bssid, hapd->own_addr, ETH_ALEN);
1178
1179 send_len = IEEE80211_HDRLEN;
1180 send_len += sizeof(reply->u.assoc_resp);
1181 reply->u.assoc_resp.capab_info =
1182 host_to_le16(hostapd_own_capab_info(hapd, sta, 0));
1183 reply->u.assoc_resp.status_code = host_to_le16(status_code);
Dmitry Shmidt96be6222014-02-13 10:16:51 -08001184 reply->u.assoc_resp.aid = host_to_le16(sta->aid | BIT(14) | BIT(15));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001185 /* Supported rates */
1186 p = hostapd_eid_supp_rates(hapd, reply->u.assoc_resp.variable);
1187 /* Extended supported rates */
1188 p = hostapd_eid_ext_supp_rates(hapd, p);
1189
1190#ifdef CONFIG_IEEE80211R
1191 if (status_code == WLAN_STATUS_SUCCESS) {
1192 /* IEEE 802.11r: Mobility Domain Information, Fast BSS
1193 * Transition Information, RSN, [RIC Response] */
1194 p = wpa_sm_write_assoc_resp_ies(sta->wpa_sm, p,
1195 buf + sizeof(buf) - p,
1196 sta->auth_alg, ies, ies_len);
1197 }
1198#endif /* CONFIG_IEEE80211R */
1199
1200#ifdef CONFIG_IEEE80211W
1201 if (status_code == WLAN_STATUS_ASSOC_REJECTED_TEMPORARILY)
1202 p = hostapd_eid_assoc_comeback_time(hapd, sta, p);
1203#endif /* CONFIG_IEEE80211W */
1204
1205#ifdef CONFIG_IEEE80211N
1206 p = hostapd_eid_ht_capabilities(hapd, p);
1207 p = hostapd_eid_ht_operation(hapd, p);
1208#endif /* CONFIG_IEEE80211N */
1209
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001210#ifdef CONFIG_IEEE80211AC
1211 p = hostapd_eid_vht_capabilities(hapd, p);
1212 p = hostapd_eid_vht_operation(hapd, p);
1213#endif /* CONFIG_IEEE80211AC */
1214
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001215 p = hostapd_eid_ext_capab(hapd, p);
Dmitry Shmidt04949592012-07-19 12:16:46 -07001216 p = hostapd_eid_bss_max_idle_period(hapd, p);
Dmitry Shmidt051af732013-10-22 13:52:46 -07001217 if (sta->qos_map_enabled)
1218 p = hostapd_eid_qos_map_set(hapd, p);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001219
1220 if (sta->flags & WLAN_STA_WMM)
1221 p = hostapd_eid_wmm(hapd, p);
1222
1223#ifdef CONFIG_WPS
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001224 if ((sta->flags & WLAN_STA_WPS) ||
1225 ((sta->flags & WLAN_STA_MAYBE_WPS) && hapd->conf->wpa)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001226 struct wpabuf *wps = wps_build_assoc_resp_ie();
1227 if (wps) {
1228 os_memcpy(p, wpabuf_head(wps), wpabuf_len(wps));
1229 p += wpabuf_len(wps);
1230 wpabuf_free(wps);
1231 }
1232 }
1233#endif /* CONFIG_WPS */
1234
1235#ifdef CONFIG_P2P
1236 if (sta->p2p_ie) {
1237 struct wpabuf *p2p_resp_ie;
1238 enum p2p_status_code status;
1239 switch (status_code) {
1240 case WLAN_STATUS_SUCCESS:
1241 status = P2P_SC_SUCCESS;
1242 break;
1243 case WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA:
1244 status = P2P_SC_FAIL_LIMIT_REACHED;
1245 break;
1246 default:
1247 status = P2P_SC_FAIL_INVALID_PARAMS;
1248 break;
1249 }
1250 p2p_resp_ie = p2p_group_assoc_resp_ie(hapd->p2p_group, status);
1251 if (p2p_resp_ie) {
1252 os_memcpy(p, wpabuf_head(p2p_resp_ie),
1253 wpabuf_len(p2p_resp_ie));
1254 p += wpabuf_len(p2p_resp_ie);
1255 wpabuf_free(p2p_resp_ie);
1256 }
1257 }
1258#endif /* CONFIG_P2P */
1259
1260#ifdef CONFIG_P2P_MANAGER
1261 if (hapd->conf->p2p & P2P_MANAGE)
1262 p = hostapd_eid_p2p_manage(hapd, p);
1263#endif /* CONFIG_P2P_MANAGER */
1264
1265 send_len += p - reply->u.assoc_resp.variable;
1266
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001267 if (hostapd_drv_send_mlme(hapd, reply, send_len, 0) < 0)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001268 wpa_printf(MSG_INFO, "Failed to send assoc resp: %s",
1269 strerror(errno));
1270}
1271
1272
1273static void handle_assoc(struct hostapd_data *hapd,
1274 const struct ieee80211_mgmt *mgmt, size_t len,
1275 int reassoc)
1276{
1277 u16 capab_info, listen_interval;
1278 u16 resp = WLAN_STATUS_SUCCESS;
1279 const u8 *pos;
1280 int left, i;
1281 struct sta_info *sta;
1282
1283 if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_req) :
1284 sizeof(mgmt->u.assoc_req))) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001285 wpa_printf(MSG_INFO, "handle_assoc(reassoc=%d) - too short payload (len=%lu)",
1286 reassoc, (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001287 return;
1288 }
1289
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001290#ifdef CONFIG_TESTING_OPTIONS
1291 if (reassoc) {
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001292 if (hapd->iconf->ignore_reassoc_probability > 0.0 &&
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001293 drand48() < hapd->iconf->ignore_reassoc_probability) {
1294 wpa_printf(MSG_INFO,
1295 "TESTING: ignoring reassoc request from "
1296 MACSTR, MAC2STR(mgmt->sa));
1297 return;
1298 }
1299 } else {
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001300 if (hapd->iconf->ignore_assoc_probability > 0.0 &&
Dmitry Shmidt8da800a2013-04-24 12:57:01 -07001301 drand48() < hapd->iconf->ignore_assoc_probability) {
1302 wpa_printf(MSG_INFO,
1303 "TESTING: ignoring assoc request from "
1304 MACSTR, MAC2STR(mgmt->sa));
1305 return;
1306 }
1307 }
1308#endif /* CONFIG_TESTING_OPTIONS */
1309
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001310 if (reassoc) {
1311 capab_info = le_to_host16(mgmt->u.reassoc_req.capab_info);
1312 listen_interval = le_to_host16(
1313 mgmt->u.reassoc_req.listen_interval);
1314 wpa_printf(MSG_DEBUG, "reassociation request: STA=" MACSTR
1315 " capab_info=0x%02x listen_interval=%d current_ap="
1316 MACSTR,
1317 MAC2STR(mgmt->sa), capab_info, listen_interval,
1318 MAC2STR(mgmt->u.reassoc_req.current_ap));
1319 left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.reassoc_req));
1320 pos = mgmt->u.reassoc_req.variable;
1321 } else {
1322 capab_info = le_to_host16(mgmt->u.assoc_req.capab_info);
1323 listen_interval = le_to_host16(
1324 mgmt->u.assoc_req.listen_interval);
1325 wpa_printf(MSG_DEBUG, "association request: STA=" MACSTR
1326 " capab_info=0x%02x listen_interval=%d",
1327 MAC2STR(mgmt->sa), capab_info, listen_interval);
1328 left = len - (IEEE80211_HDRLEN + sizeof(mgmt->u.assoc_req));
1329 pos = mgmt->u.assoc_req.variable;
1330 }
1331
1332 sta = ap_get_sta(hapd, mgmt->sa);
1333#ifdef CONFIG_IEEE80211R
1334 if (sta && sta->auth_alg == WLAN_AUTH_FT &&
1335 (sta->flags & WLAN_STA_AUTH) == 0) {
1336 wpa_printf(MSG_DEBUG, "FT: Allow STA " MACSTR " to associate "
1337 "prior to authentication since it is using "
1338 "over-the-DS FT", MAC2STR(mgmt->sa));
1339 } else
1340#endif /* CONFIG_IEEE80211R */
1341 if (sta == NULL || (sta->flags & WLAN_STA_AUTH) == 0) {
1342 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1343 HOSTAPD_LEVEL_INFO, "Station tried to "
1344 "associate before authentication "
1345 "(aid=%d flags=0x%x)",
1346 sta ? sta->aid : -1,
1347 sta ? sta->flags : 0);
1348 send_deauth(hapd, mgmt->sa,
1349 WLAN_REASON_CLASS2_FRAME_FROM_NONAUTH_STA);
1350 return;
1351 }
1352
1353 if (hapd->tkip_countermeasures) {
1354 resp = WLAN_REASON_MICHAEL_MIC_FAILURE;
1355 goto fail;
1356 }
1357
1358 if (listen_interval > hapd->conf->max_listen_interval) {
1359 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1360 HOSTAPD_LEVEL_DEBUG,
1361 "Too large Listen Interval (%d)",
1362 listen_interval);
1363 resp = WLAN_STATUS_ASSOC_DENIED_LISTEN_INT_TOO_LARGE;
1364 goto fail;
1365 }
1366
1367 /* followed by SSID and Supported rates; and HT capabilities if 802.11n
1368 * is used */
1369 resp = check_assoc_ies(hapd, sta, pos, left, reassoc);
1370 if (resp != WLAN_STATUS_SUCCESS)
1371 goto fail;
1372
1373 if (hostapd_get_aid(hapd, sta) < 0) {
1374 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1375 HOSTAPD_LEVEL_INFO, "No room for more AIDs");
1376 resp = WLAN_STATUS_AP_UNABLE_TO_HANDLE_NEW_STA;
1377 goto fail;
1378 }
1379
1380 sta->capability = capab_info;
1381 sta->listen_interval = listen_interval;
1382
1383 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G)
1384 sta->flags |= WLAN_STA_NONERP;
1385 for (i = 0; i < sta->supported_rates_len; i++) {
1386 if ((sta->supported_rates[i] & 0x7f) > 22) {
1387 sta->flags &= ~WLAN_STA_NONERP;
1388 break;
1389 }
1390 }
1391 if (sta->flags & WLAN_STA_NONERP && !sta->nonerp_set) {
1392 sta->nonerp_set = 1;
1393 hapd->iface->num_sta_non_erp++;
1394 if (hapd->iface->num_sta_non_erp == 1)
1395 ieee802_11_set_beacons(hapd->iface);
1396 }
1397
1398 if (!(sta->capability & WLAN_CAPABILITY_SHORT_SLOT_TIME) &&
1399 !sta->no_short_slot_time_set) {
1400 sta->no_short_slot_time_set = 1;
1401 hapd->iface->num_sta_no_short_slot_time++;
1402 if (hapd->iface->current_mode->mode ==
1403 HOSTAPD_MODE_IEEE80211G &&
1404 hapd->iface->num_sta_no_short_slot_time == 1)
1405 ieee802_11_set_beacons(hapd->iface);
1406 }
1407
1408 if (sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE)
1409 sta->flags |= WLAN_STA_SHORT_PREAMBLE;
1410 else
1411 sta->flags &= ~WLAN_STA_SHORT_PREAMBLE;
1412
1413 if (!(sta->capability & WLAN_CAPABILITY_SHORT_PREAMBLE) &&
1414 !sta->no_short_preamble_set) {
1415 sta->no_short_preamble_set = 1;
1416 hapd->iface->num_sta_no_short_preamble++;
1417 if (hapd->iface->current_mode->mode == HOSTAPD_MODE_IEEE80211G
1418 && hapd->iface->num_sta_no_short_preamble == 1)
1419 ieee802_11_set_beacons(hapd->iface);
1420 }
1421
1422#ifdef CONFIG_IEEE80211N
1423 update_ht_state(hapd, sta);
1424#endif /* CONFIG_IEEE80211N */
1425
1426 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1427 HOSTAPD_LEVEL_DEBUG,
1428 "association OK (aid %d)", sta->aid);
1429 /* Station will be marked associated, after it acknowledges AssocResp
1430 */
1431 sta->flags |= WLAN_STA_ASSOC_REQ_OK;
1432
1433#ifdef CONFIG_IEEE80211W
1434 if ((sta->flags & WLAN_STA_MFP) && sta->sa_query_timed_out) {
1435 wpa_printf(MSG_DEBUG, "Allowing %sassociation after timed out "
1436 "SA Query procedure", reassoc ? "re" : "");
1437 /* TODO: Send a protected Disassociate frame to the STA using
1438 * the old key and Reason Code "Previous Authentication no
1439 * longer valid". Make sure this is only sent protected since
1440 * unprotected frame would be received by the STA that is now
1441 * trying to associate.
1442 */
1443 }
1444#endif /* CONFIG_IEEE80211W */
1445
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001446 /* Make sure that the previously registered inactivity timer will not
1447 * remove the STA immediately. */
1448 sta->timeout_next = STA_NULLFUNC;
1449
1450 fail:
1451 send_assoc_resp(hapd, sta, resp, reassoc, pos, left);
1452}
1453
1454
1455static void handle_disassoc(struct hostapd_data *hapd,
1456 const struct ieee80211_mgmt *mgmt, size_t len)
1457{
1458 struct sta_info *sta;
1459
1460 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.disassoc)) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001461 wpa_printf(MSG_INFO, "handle_disassoc - too short payload (len=%lu)",
1462 (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001463 return;
1464 }
1465
1466 wpa_printf(MSG_DEBUG, "disassocation: STA=" MACSTR " reason_code=%d",
1467 MAC2STR(mgmt->sa),
1468 le_to_host16(mgmt->u.disassoc.reason_code));
1469
1470 sta = ap_get_sta(hapd, mgmt->sa);
1471 if (sta == NULL) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001472 wpa_printf(MSG_INFO, "Station " MACSTR " trying to disassociate, but it is not associated",
1473 MAC2STR(mgmt->sa));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001474 return;
1475 }
1476
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001477 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001478 sta->flags &= ~(WLAN_STA_ASSOC | WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001479 wpa_auth_sm_event(sta->wpa_sm, WPA_DISASSOC);
1480 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1481 HOSTAPD_LEVEL_INFO, "disassociated");
1482 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
1483 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
1484 /* Stop Accounting and IEEE 802.1X sessions, but leave the STA
1485 * authenticated. */
1486 accounting_sta_stop(hapd, sta);
1487 ieee802_1x_free_station(sta);
1488 hostapd_drv_sta_remove(hapd, sta->addr);
1489
1490 if (sta->timeout_next == STA_NULLFUNC ||
1491 sta->timeout_next == STA_DISASSOC) {
1492 sta->timeout_next = STA_DEAUTH;
1493 eloop_cancel_timeout(ap_handle_timer, hapd, sta);
1494 eloop_register_timeout(AP_DEAUTH_DELAY, 0, ap_handle_timer,
1495 hapd, sta);
1496 }
1497
1498 mlme_disassociate_indication(
1499 hapd, sta, le_to_host16(mgmt->u.disassoc.reason_code));
1500}
1501
1502
1503static void handle_deauth(struct hostapd_data *hapd,
1504 const struct ieee80211_mgmt *mgmt, size_t len)
1505{
1506 struct sta_info *sta;
1507
1508 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.deauth)) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001509 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "handle_deauth - too short "
1510 "payload (len=%lu)", (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001511 return;
1512 }
1513
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001514 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "deauthentication: STA=" MACSTR
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001515 " reason_code=%d",
1516 MAC2STR(mgmt->sa), le_to_host16(mgmt->u.deauth.reason_code));
1517
1518 sta = ap_get_sta(hapd, mgmt->sa);
1519 if (sta == NULL) {
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001520 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "Station " MACSTR " trying "
1521 "to deauthenticate, but it is not authenticated",
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001522 MAC2STR(mgmt->sa));
1523 return;
1524 }
1525
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001526 ap_sta_set_authorized(hapd, sta, 0);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001527 sta->flags &= ~(WLAN_STA_AUTH | WLAN_STA_ASSOC |
1528 WLAN_STA_ASSOC_REQ_OK);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001529 wpa_auth_sm_event(sta->wpa_sm, WPA_DEAUTH);
1530 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1531 HOSTAPD_LEVEL_DEBUG, "deauthenticated");
1532 mlme_deauthenticate_indication(
1533 hapd, sta, le_to_host16(mgmt->u.deauth.reason_code));
1534 sta->acct_terminate_cause = RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
1535 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
1536 ap_free_sta(hapd, sta);
1537}
1538
1539
1540static void handle_beacon(struct hostapd_data *hapd,
1541 const struct ieee80211_mgmt *mgmt, size_t len,
1542 struct hostapd_frame_info *fi)
1543{
1544 struct ieee802_11_elems elems;
1545
1546 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.beacon)) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001547 wpa_printf(MSG_INFO, "handle_beacon - too short payload (len=%lu)",
1548 (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001549 return;
1550 }
1551
1552 (void) ieee802_11_parse_elems(mgmt->u.beacon.variable,
1553 len - (IEEE80211_HDRLEN +
1554 sizeof(mgmt->u.beacon)), &elems,
1555 0);
1556
1557 ap_list_process_beacon(hapd->iface, mgmt, &elems, fi);
1558}
1559
1560
1561#ifdef CONFIG_IEEE80211W
1562
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001563static int hostapd_sa_query_action(struct hostapd_data *hapd,
1564 const struct ieee80211_mgmt *mgmt,
1565 size_t len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001566{
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001567 const u8 *end;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001568
1569 end = mgmt->u.action.u.sa_query_resp.trans_id +
1570 WLAN_SA_QUERY_TR_ID_LEN;
1571 if (((u8 *) mgmt) + len < end) {
1572 wpa_printf(MSG_DEBUG, "IEEE 802.11: Too short SA Query Action "
1573 "frame (len=%lu)", (unsigned long) len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001574 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001575 }
1576
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001577 ieee802_11_sa_query_action(hapd, mgmt->sa,
1578 mgmt->u.action.u.sa_query_resp.action,
1579 mgmt->u.action.u.sa_query_resp.trans_id);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001580 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001581}
1582
1583
1584static int robust_action_frame(u8 category)
1585{
1586 return category != WLAN_ACTION_PUBLIC &&
1587 category != WLAN_ACTION_HT;
1588}
1589#endif /* CONFIG_IEEE80211W */
1590
1591
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001592static int handle_action(struct hostapd_data *hapd,
1593 const struct ieee80211_mgmt *mgmt, size_t len)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001594{
1595 struct sta_info *sta;
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001596 sta = ap_get_sta(hapd, mgmt->sa);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001597
1598 if (len < IEEE80211_HDRLEN + 1) {
1599 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1600 HOSTAPD_LEVEL_DEBUG,
1601 "handle_action - too short payload (len=%lu)",
1602 (unsigned long) len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001603 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001604 }
1605
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001606 if (mgmt->u.action.category != WLAN_ACTION_PUBLIC &&
1607 (sta == NULL || !(sta->flags & WLAN_STA_ASSOC))) {
1608 wpa_printf(MSG_DEBUG, "IEEE 802.11: Ignored Action "
1609 "frame (category=%u) from unassociated STA " MACSTR,
1610 MAC2STR(mgmt->sa), mgmt->u.action.category);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001611 return 0;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001612 }
1613
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001614#ifdef CONFIG_IEEE80211W
1615 if (sta && (sta->flags & WLAN_STA_MFP) &&
Dmitry Shmidt18463232014-01-24 12:29:41 -08001616 !(mgmt->frame_control & host_to_le16(WLAN_FC_ISWEP)) &&
1617 robust_action_frame(mgmt->u.action.category)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001618 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1619 HOSTAPD_LEVEL_DEBUG,
1620 "Dropped unprotected Robust Action frame from "
1621 "an MFP STA");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001622 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001623 }
1624#endif /* CONFIG_IEEE80211W */
1625
1626 switch (mgmt->u.action.category) {
1627#ifdef CONFIG_IEEE80211R
1628 case WLAN_ACTION_FT:
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001629 if (!sta ||
1630 wpa_ft_action_rx(sta->wpa_sm, (u8 *) &mgmt->u.action,
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001631 len - IEEE80211_HDRLEN))
1632 break;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001633 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001634#endif /* CONFIG_IEEE80211R */
1635 case WLAN_ACTION_WMM:
1636 hostapd_wmm_action(hapd, mgmt, len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001637 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001638#ifdef CONFIG_IEEE80211W
1639 case WLAN_ACTION_SA_QUERY:
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001640 return hostapd_sa_query_action(hapd, mgmt, len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001641#endif /* CONFIG_IEEE80211W */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001642#ifdef CONFIG_WNM
1643 case WLAN_ACTION_WNM:
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001644 ieee802_11_rx_wnm_action_ap(hapd, mgmt, len);
1645 return 1;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001646#endif /* CONFIG_WNM */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001647 case WLAN_ACTION_PUBLIC:
Dmitry Shmidt18463232014-01-24 12:29:41 -08001648 case WLAN_ACTION_PROTECTED_DUAL:
Dmitry Shmidt7832adb2014-04-29 10:53:02 -07001649#ifdef CONFIG_IEEE80211N
1650 if (mgmt->u.action.u.public_action.action ==
1651 WLAN_PA_20_40_BSS_COEX) {
1652 wpa_printf(MSG_DEBUG,
1653 "HT20/40 coex mgmt frame received from STA "
1654 MACSTR, MAC2STR(mgmt->sa));
1655 hostapd_2040_coex_action(hapd, mgmt, len);
1656 }
1657#endif /* CONFIG_IEEE80211N */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001658 if (hapd->public_action_cb) {
1659 hapd->public_action_cb(hapd->public_action_cb_ctx,
1660 (u8 *) mgmt, len,
1661 hapd->iface->freq);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001662 }
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001663 if (hapd->public_action_cb2) {
Dmitry Shmidtf8623282013-02-20 14:34:59 -08001664 hapd->public_action_cb2(hapd->public_action_cb2_ctx,
Dmitry Shmidt4b9d52f2013-02-05 17:44:43 -08001665 (u8 *) mgmt, len,
1666 hapd->iface->freq);
1667 }
1668 if (hapd->public_action_cb || hapd->public_action_cb2)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001669 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001670 break;
1671 case WLAN_ACTION_VENDOR_SPECIFIC:
1672 if (hapd->vendor_action_cb) {
1673 if (hapd->vendor_action_cb(hapd->vendor_action_cb_ctx,
1674 (u8 *) mgmt, len,
1675 hapd->iface->freq) == 0)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001676 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001677 }
1678 break;
1679 }
1680
1681 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1682 HOSTAPD_LEVEL_DEBUG,
1683 "handle_action - unknown action category %d or invalid "
1684 "frame",
1685 mgmt->u.action.category);
1686 if (!(mgmt->da[0] & 0x01) && !(mgmt->u.action.category & 0x80) &&
1687 !(mgmt->sa[0] & 0x01)) {
1688 struct ieee80211_mgmt *resp;
1689
1690 /*
1691 * IEEE 802.11-REVma/D9.0 - 7.3.1.11
1692 * Return the Action frame to the source without change
1693 * except that MSB of the Category set to 1.
1694 */
1695 wpa_printf(MSG_DEBUG, "IEEE 802.11: Return unknown Action "
1696 "frame back to sender");
1697 resp = os_malloc(len);
1698 if (resp == NULL)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001699 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001700 os_memcpy(resp, mgmt, len);
1701 os_memcpy(resp->da, resp->sa, ETH_ALEN);
1702 os_memcpy(resp->sa, hapd->own_addr, ETH_ALEN);
1703 os_memcpy(resp->bssid, hapd->own_addr, ETH_ALEN);
1704 resp->u.action.category |= 0x80;
1705
Dmitry Shmidt61d9df32012-08-29 16:22:06 -07001706 if (hostapd_drv_send_mlme(hapd, resp, len, 0) < 0) {
1707 wpa_printf(MSG_ERROR, "IEEE 802.11: Failed to send "
1708 "Action frame");
1709 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001710 os_free(resp);
1711 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001712
1713 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001714}
1715
1716
1717/**
1718 * ieee802_11_mgmt - process incoming IEEE 802.11 management frames
1719 * @hapd: hostapd BSS data structure (the BSS to which the management frame was
1720 * sent to)
1721 * @buf: management frame data (starting from IEEE 802.11 header)
1722 * @len: length of frame data in octets
1723 * @fi: meta data about received frame (signal level, etc.)
1724 *
1725 * Process all incoming IEEE 802.11 management frames. This will be called for
1726 * each frame received from the kernel driver through wlan#ap interface. In
1727 * addition, it can be called to re-inserted pending frames (e.g., when using
1728 * external RADIUS server as an MAC ACL).
1729 */
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001730int ieee802_11_mgmt(struct hostapd_data *hapd, const u8 *buf, size_t len,
1731 struct hostapd_frame_info *fi)
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001732{
1733 struct ieee80211_mgmt *mgmt;
1734 int broadcast;
1735 u16 fc, stype;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001736 int ret = 0;
1737
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001738 if (len < 24)
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001739 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001740
1741 mgmt = (struct ieee80211_mgmt *) buf;
1742 fc = le_to_host16(mgmt->frame_control);
1743 stype = WLAN_FC_GET_STYPE(fc);
1744
1745 if (stype == WLAN_FC_STYPE_BEACON) {
1746 handle_beacon(hapd, mgmt, len, fi);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001747 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001748 }
1749
1750 broadcast = mgmt->bssid[0] == 0xff && mgmt->bssid[1] == 0xff &&
1751 mgmt->bssid[2] == 0xff && mgmt->bssid[3] == 0xff &&
1752 mgmt->bssid[4] == 0xff && mgmt->bssid[5] == 0xff;
1753
1754 if (!broadcast &&
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001755#ifdef CONFIG_P2P
1756 /* Invitation responses can be sent with the peer MAC as BSSID */
1757 !((hapd->conf->p2p & P2P_GROUP_OWNER) &&
1758 stype == WLAN_FC_STYPE_ACTION) &&
1759#endif /* CONFIG_P2P */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001760 os_memcmp(mgmt->bssid, hapd->own_addr, ETH_ALEN) != 0) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001761 wpa_printf(MSG_INFO, "MGMT: BSSID=" MACSTR " not our address",
1762 MAC2STR(mgmt->bssid));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001763 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001764 }
1765
1766
1767 if (stype == WLAN_FC_STYPE_PROBE_REQ) {
Dmitry Shmidt04949592012-07-19 12:16:46 -07001768 handle_probe_req(hapd, mgmt, len, fi->ssi_signal);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001769 return 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001770 }
1771
1772 if (os_memcmp(mgmt->da, hapd->own_addr, ETH_ALEN) != 0) {
1773 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1774 HOSTAPD_LEVEL_DEBUG,
1775 "MGMT: DA=" MACSTR " not our address",
1776 MAC2STR(mgmt->da));
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001777 return 0;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001778 }
1779
1780 switch (stype) {
1781 case WLAN_FC_STYPE_AUTH:
1782 wpa_printf(MSG_DEBUG, "mgmt::auth");
1783 handle_auth(hapd, mgmt, len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001784 ret = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001785 break;
1786 case WLAN_FC_STYPE_ASSOC_REQ:
1787 wpa_printf(MSG_DEBUG, "mgmt::assoc_req");
1788 handle_assoc(hapd, mgmt, len, 0);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001789 ret = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001790 break;
1791 case WLAN_FC_STYPE_REASSOC_REQ:
1792 wpa_printf(MSG_DEBUG, "mgmt::reassoc_req");
1793 handle_assoc(hapd, mgmt, len, 1);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001794 ret = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001795 break;
1796 case WLAN_FC_STYPE_DISASSOC:
1797 wpa_printf(MSG_DEBUG, "mgmt::disassoc");
1798 handle_disassoc(hapd, mgmt, len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001799 ret = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001800 break;
1801 case WLAN_FC_STYPE_DEAUTH:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001802 wpa_msg(hapd->msg_ctx, MSG_DEBUG, "mgmt::deauth");
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001803 handle_deauth(hapd, mgmt, len);
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001804 ret = 1;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001805 break;
1806 case WLAN_FC_STYPE_ACTION:
1807 wpa_printf(MSG_DEBUG, "mgmt::action");
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001808 ret = handle_action(hapd, mgmt, len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001809 break;
1810 default:
1811 hostapd_logger(hapd, mgmt->sa, HOSTAPD_MODULE_IEEE80211,
1812 HOSTAPD_LEVEL_DEBUG,
1813 "unknown mgmt frame subtype %d", stype);
1814 break;
1815 }
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001816
1817 return ret;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001818}
1819
1820
1821static void handle_auth_cb(struct hostapd_data *hapd,
1822 const struct ieee80211_mgmt *mgmt,
1823 size_t len, int ok)
1824{
1825 u16 auth_alg, auth_transaction, status_code;
1826 struct sta_info *sta;
1827
1828 if (!ok) {
1829 hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
1830 HOSTAPD_LEVEL_NOTICE,
1831 "did not acknowledge authentication response");
1832 return;
1833 }
1834
1835 if (len < IEEE80211_HDRLEN + sizeof(mgmt->u.auth)) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001836 wpa_printf(MSG_INFO, "handle_auth_cb - too short payload (len=%lu)",
1837 (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001838 return;
1839 }
1840
1841 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
1842 auth_transaction = le_to_host16(mgmt->u.auth.auth_transaction);
1843 status_code = le_to_host16(mgmt->u.auth.status_code);
1844
1845 sta = ap_get_sta(hapd, mgmt->da);
1846 if (!sta) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001847 wpa_printf(MSG_INFO, "handle_auth_cb: STA " MACSTR " not found",
1848 MAC2STR(mgmt->da));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001849 return;
1850 }
1851
1852 if (status_code == WLAN_STATUS_SUCCESS &&
1853 ((auth_alg == WLAN_AUTH_OPEN && auth_transaction == 2) ||
1854 (auth_alg == WLAN_AUTH_SHARED_KEY && auth_transaction == 4))) {
1855 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1856 HOSTAPD_LEVEL_INFO, "authenticated");
1857 sta->flags |= WLAN_STA_AUTH;
1858 }
1859}
1860
1861
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07001862static void hostapd_set_wds_encryption(struct hostapd_data *hapd,
1863 struct sta_info *sta,
1864 char *ifname_wds)
1865{
1866 int i;
1867 struct hostapd_ssid *ssid = sta->ssid;
1868
1869 if (hapd->conf->ieee802_1x || hapd->conf->wpa)
1870 return;
1871
1872 for (i = 0; i < 4; i++) {
1873 if (ssid->wep.key[i] &&
1874 hostapd_drv_set_key(ifname_wds, hapd, WPA_ALG_WEP, NULL, i,
1875 i == ssid->wep.idx, NULL, 0,
1876 ssid->wep.key[i], ssid->wep.len[i])) {
1877 wpa_printf(MSG_WARNING,
1878 "Could not set WEP keys for WDS interface; %s",
1879 ifname_wds);
1880 break;
1881 }
1882 }
1883}
1884
1885
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001886static void handle_assoc_cb(struct hostapd_data *hapd,
1887 const struct ieee80211_mgmt *mgmt,
1888 size_t len, int reassoc, int ok)
1889{
1890 u16 status;
1891 struct sta_info *sta;
1892 int new_assoc = 1;
1893 struct ieee80211_ht_capabilities ht_cap;
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001894 struct ieee80211_vht_capabilities vht_cap;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001895
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001896 if (len < IEEE80211_HDRLEN + (reassoc ? sizeof(mgmt->u.reassoc_resp) :
1897 sizeof(mgmt->u.assoc_resp))) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001898 wpa_printf(MSG_INFO, "handle_assoc_cb(reassoc=%d) - too short payload (len=%lu)",
1899 reassoc, (unsigned long) len);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001900 return;
1901 }
1902
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001903 sta = ap_get_sta(hapd, mgmt->da);
1904 if (!sta) {
Dmitry Shmidtcce06662013-11-04 18:44:24 -08001905 wpa_printf(MSG_INFO, "handle_assoc_cb: STA " MACSTR " not found",
1906 MAC2STR(mgmt->da));
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001907 return;
1908 }
1909
Dmitry Shmidtaa532512012-09-24 10:35:31 -07001910 if (!ok) {
1911 hostapd_logger(hapd, mgmt->da, HOSTAPD_MODULE_IEEE80211,
1912 HOSTAPD_LEVEL_DEBUG,
1913 "did not acknowledge association response");
1914 sta->flags &= ~WLAN_STA_ASSOC_REQ_OK;
1915 return;
1916 }
1917
1918 if (reassoc)
1919 status = le_to_host16(mgmt->u.reassoc_resp.status_code);
1920 else
1921 status = le_to_host16(mgmt->u.assoc_resp.status_code);
1922
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001923 if (status != WLAN_STATUS_SUCCESS)
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001924 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001925
1926 /* Stop previous accounting session, if one is started, and allocate
1927 * new session id for the new session. */
1928 accounting_sta_stop(hapd, sta);
1929
1930 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1931 HOSTAPD_LEVEL_INFO,
1932 "associated (aid %d)",
1933 sta->aid);
1934
1935 if (sta->flags & WLAN_STA_ASSOC)
1936 new_assoc = 0;
1937 sta->flags |= WLAN_STA_ASSOC;
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08001938 sta->flags &= ~WLAN_STA_WNM_SLEEP_MODE;
Dmitry Shmidtf21452a2014-02-26 10:55:25 -08001939 if ((!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen) ||
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001940 sta->auth_alg == WLAN_AUTH_FT) {
1941 /*
1942 * Open, static WEP, or FT protocol; no separate authorization
1943 * step.
1944 */
1945 ap_sta_set_authorized(hapd, sta, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001946 }
1947
1948 if (reassoc)
1949 mlme_reassociate_indication(hapd, sta);
1950 else
1951 mlme_associate_indication(hapd, sta);
1952
1953#ifdef CONFIG_IEEE80211W
1954 sta->sa_query_timed_out = 0;
1955#endif /* CONFIG_IEEE80211W */
1956
1957 /*
1958 * Remove the STA entry in order to make sure the STA PS state gets
1959 * cleared and configuration gets updated in case of reassociation back
1960 * to the same AP.
1961 */
1962 hostapd_drv_sta_remove(hapd, sta->addr);
1963
1964#ifdef CONFIG_IEEE80211N
1965 if (sta->flags & WLAN_STA_HT)
1966 hostapd_get_ht_capab(hapd, sta->ht_capabilities, &ht_cap);
1967#endif /* CONFIG_IEEE80211N */
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001968#ifdef CONFIG_IEEE80211AC
1969 if (sta->flags & WLAN_STA_VHT)
1970 hostapd_get_vht_capab(hapd, sta->vht_capabilities, &vht_cap);
1971#endif /* CONFIG_IEEE80211AC */
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001972
1973 if (hostapd_sta_add(hapd, sta->addr, sta->aid, sta->capability,
1974 sta->supported_rates, sta->supported_rates_len,
1975 sta->listen_interval,
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001976 sta->flags & WLAN_STA_HT ? &ht_cap : NULL,
Dmitry Shmidta54fa5f2013-01-15 13:53:35 -08001977 sta->flags & WLAN_STA_VHT ? &vht_cap : NULL,
Dmitry Shmidtbd14a572014-02-18 10:33:49 -08001978 sta->flags, sta->qosinfo, sta->vht_opmode)) {
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001979 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE80211,
1980 HOSTAPD_LEVEL_NOTICE,
1981 "Could not add STA to kernel driver");
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08001982
1983 ap_sta_disconnect(hapd, sta, sta->addr,
1984 WLAN_REASON_DISASSOC_AP_BUSY);
1985
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07001986 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001987 }
1988
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07001989 if (sta->flags & WLAN_STA_WDS) {
1990 int ret;
1991 char ifname_wds[IFNAMSIZ + 1];
1992
1993 ret = hostapd_set_wds_sta(hapd, ifname_wds, sta->addr,
1994 sta->aid, 1);
1995 if (!ret)
1996 hostapd_set_wds_encryption(hapd, sta, ifname_wds);
1997 }
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07001998
1999 if (sta->eapol_sm == NULL) {
2000 /*
2001 * This STA does not use RADIUS server for EAP authentication,
2002 * so bind it to the selected VLAN interface now, since the
2003 * interface selection is not going to change anymore.
2004 */
2005 if (ap_sta_bind_vlan(hapd, sta, 0) < 0)
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07002006 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002007 } else if (sta->vlan_id) {
2008 /* VLAN ID already set (e.g., by PMKSA caching), so bind STA */
2009 if (ap_sta_bind_vlan(hapd, sta, 0) < 0)
Dmitry Shmidtb36ed7c2014-03-17 10:57:26 -07002010 return;
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002011 }
2012
2013 hostapd_set_sta_flags(hapd, sta);
2014
2015 if (sta->auth_alg == WLAN_AUTH_FT)
2016 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC_FT);
2017 else
2018 wpa_auth_sm_event(sta->wpa_sm, WPA_ASSOC);
2019 hapd->new_assoc_sta_cb(hapd, sta, !new_assoc);
2020
2021 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002022}
2023
2024
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002025static void handle_deauth_cb(struct hostapd_data *hapd,
2026 const struct ieee80211_mgmt *mgmt,
2027 size_t len, int ok)
2028{
2029 struct sta_info *sta;
2030 if (mgmt->da[0] & 0x01)
2031 return;
2032 sta = ap_get_sta(hapd, mgmt->da);
2033 if (!sta) {
2034 wpa_printf(MSG_DEBUG, "handle_deauth_cb: STA " MACSTR
2035 " not found", MAC2STR(mgmt->da));
2036 return;
2037 }
2038 if (ok)
2039 wpa_printf(MSG_DEBUG, "STA " MACSTR " acknowledged deauth",
2040 MAC2STR(sta->addr));
2041 else
2042 wpa_printf(MSG_DEBUG, "STA " MACSTR " did not acknowledge "
2043 "deauth", MAC2STR(sta->addr));
2044
2045 ap_sta_deauth_cb(hapd, sta);
2046}
2047
2048
2049static void handle_disassoc_cb(struct hostapd_data *hapd,
2050 const struct ieee80211_mgmt *mgmt,
2051 size_t len, int ok)
2052{
2053 struct sta_info *sta;
2054 if (mgmt->da[0] & 0x01)
2055 return;
2056 sta = ap_get_sta(hapd, mgmt->da);
2057 if (!sta) {
2058 wpa_printf(MSG_DEBUG, "handle_disassoc_cb: STA " MACSTR
2059 " not found", MAC2STR(mgmt->da));
2060 return;
2061 }
2062 if (ok)
2063 wpa_printf(MSG_DEBUG, "STA " MACSTR " acknowledged disassoc",
2064 MAC2STR(sta->addr));
2065 else
2066 wpa_printf(MSG_DEBUG, "STA " MACSTR " did not acknowledge "
2067 "disassoc", MAC2STR(sta->addr));
2068
2069 ap_sta_disassoc_cb(hapd, sta);
2070}
2071
2072
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002073/**
2074 * ieee802_11_mgmt_cb - Process management frame TX status callback
2075 * @hapd: hostapd BSS data structure (the BSS from which the management frame
2076 * was sent from)
2077 * @buf: management frame data (starting from IEEE 802.11 header)
2078 * @len: length of frame data in octets
2079 * @stype: management frame subtype from frame control field
2080 * @ok: Whether the frame was ACK'ed
2081 */
2082void ieee802_11_mgmt_cb(struct hostapd_data *hapd, const u8 *buf, size_t len,
2083 u16 stype, int ok)
2084{
2085 const struct ieee80211_mgmt *mgmt;
2086 mgmt = (const struct ieee80211_mgmt *) buf;
2087
Dmitry Shmidtfb79edc2014-01-10 10:45:54 -08002088#ifdef CONFIG_TESTING_OPTIONS
2089 if (hapd->ext_mgmt_frame_handling) {
2090 wpa_msg(hapd->msg_ctx, MSG_INFO, "MGMT-TX-STATUS stype=%u ok=%d",
2091 stype, ok);
2092 return;
2093 }
2094#endif /* CONFIG_TESTING_OPTIONS */
2095
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002096 switch (stype) {
2097 case WLAN_FC_STYPE_AUTH:
2098 wpa_printf(MSG_DEBUG, "mgmt::auth cb");
2099 handle_auth_cb(hapd, mgmt, len, ok);
2100 break;
2101 case WLAN_FC_STYPE_ASSOC_RESP:
2102 wpa_printf(MSG_DEBUG, "mgmt::assoc_resp cb");
2103 handle_assoc_cb(hapd, mgmt, len, 0, ok);
2104 break;
2105 case WLAN_FC_STYPE_REASSOC_RESP:
2106 wpa_printf(MSG_DEBUG, "mgmt::reassoc_resp cb");
2107 handle_assoc_cb(hapd, mgmt, len, 1, ok);
2108 break;
2109 case WLAN_FC_STYPE_PROBE_RESP:
2110 wpa_printf(MSG_EXCESSIVE, "mgmt::proberesp cb");
2111 break;
2112 case WLAN_FC_STYPE_DEAUTH:
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002113 wpa_printf(MSG_DEBUG, "mgmt::deauth cb");
2114 handle_deauth_cb(hapd, mgmt, len, ok);
2115 break;
2116 case WLAN_FC_STYPE_DISASSOC:
2117 wpa_printf(MSG_DEBUG, "mgmt::disassoc cb");
2118 handle_disassoc_cb(hapd, mgmt, len, ok);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002119 break;
2120 case WLAN_FC_STYPE_ACTION:
2121 wpa_printf(MSG_DEBUG, "mgmt::action cb");
2122 break;
2123 default:
Dmitry Shmidtcce06662013-11-04 18:44:24 -08002124 wpa_printf(MSG_INFO, "unknown mgmt cb frame subtype %d", stype);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002125 break;
2126 }
2127}
2128
2129
2130int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
2131{
2132 /* TODO */
2133 return 0;
2134}
2135
2136
2137int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
2138 char *buf, size_t buflen)
2139{
2140 /* TODO */
2141 return 0;
2142}
2143
2144
2145void hostapd_tx_status(struct hostapd_data *hapd, const u8 *addr,
2146 const u8 *buf, size_t len, int ack)
2147{
2148 struct sta_info *sta;
2149 struct hostapd_iface *iface = hapd->iface;
2150
2151 sta = ap_get_sta(hapd, addr);
2152 if (sta == NULL && iface->num_bss > 1) {
2153 size_t j;
2154 for (j = 0; j < iface->num_bss; j++) {
2155 hapd = iface->bss[j];
2156 sta = ap_get_sta(hapd, addr);
2157 if (sta)
2158 break;
2159 }
2160 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002161 if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC))
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002162 return;
2163 if (sta->flags & WLAN_STA_PENDING_POLL) {
2164 wpa_printf(MSG_DEBUG, "STA " MACSTR " %s pending "
2165 "activity poll", MAC2STR(sta->addr),
2166 ack ? "ACKed" : "did not ACK");
2167 if (ack)
2168 sta->flags &= ~WLAN_STA_PENDING_POLL;
2169 }
2170
2171 ieee802_1x_tx_status(hapd, sta, buf, len, ack);
2172}
2173
2174
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002175void hostapd_eapol_tx_status(struct hostapd_data *hapd, const u8 *dst,
2176 const u8 *data, size_t len, int ack)
2177{
2178 struct sta_info *sta;
2179 struct hostapd_iface *iface = hapd->iface;
2180
2181 sta = ap_get_sta(hapd, dst);
2182 if (sta == NULL && iface->num_bss > 1) {
2183 size_t j;
2184 for (j = 0; j < iface->num_bss; j++) {
2185 hapd = iface->bss[j];
2186 sta = ap_get_sta(hapd, dst);
2187 if (sta)
2188 break;
2189 }
2190 }
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002191 if (sta == NULL || !(sta->flags & WLAN_STA_ASSOC)) {
2192 wpa_printf(MSG_DEBUG, "Ignore TX status for Data frame to STA "
2193 MACSTR " that is not currently associated",
2194 MAC2STR(dst));
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002195 return;
Dmitry Shmidtc5ec7f52012-03-06 16:33:24 -08002196 }
Dmitry Shmidt1f69aa52012-01-24 16:10:04 -08002197
2198 ieee802_1x_eapol_tx_status(hapd, sta, data, len, ack);
2199}
2200
2201
2202void hostapd_client_poll_ok(struct hostapd_data *hapd, const u8 *addr)
2203{
2204 struct sta_info *sta;
2205 struct hostapd_iface *iface = hapd->iface;
2206
2207 sta = ap_get_sta(hapd, addr);
2208 if (sta == NULL && iface->num_bss > 1) {
2209 size_t j;
2210 for (j = 0; j < iface->num_bss; j++) {
2211 hapd = iface->bss[j];
2212 sta = ap_get_sta(hapd, addr);
2213 if (sta)
2214 break;
2215 }
2216 }
2217 if (sta == NULL)
2218 return;
2219 if (!(sta->flags & WLAN_STA_PENDING_POLL))
2220 return;
2221
2222 wpa_printf(MSG_DEBUG, "STA " MACSTR " ACKed pending "
2223 "activity poll", MAC2STR(sta->addr));
2224 sta->flags &= ~WLAN_STA_PENDING_POLL;
2225}
2226
2227
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002228void ieee802_11_rx_from_unknown(struct hostapd_data *hapd, const u8 *src,
2229 int wds)
2230{
2231 struct sta_info *sta;
2232
2233 sta = ap_get_sta(hapd, src);
2234 if (sta && (sta->flags & WLAN_STA_ASSOC)) {
Dmitry Shmidtaa532512012-09-24 10:35:31 -07002235 if (!hapd->conf->wds_sta)
2236 return;
2237
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002238 if (wds && !(sta->flags & WLAN_STA_WDS)) {
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07002239 int ret;
2240 char ifname_wds[IFNAMSIZ + 1];
2241
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002242 wpa_printf(MSG_DEBUG, "Enable 4-address WDS mode for "
2243 "STA " MACSTR " (aid %u)",
2244 MAC2STR(sta->addr), sta->aid);
2245 sta->flags |= WLAN_STA_WDS;
Dmitry Shmidtc2ebb4b2013-07-24 12:57:51 -07002246 ret = hostapd_set_wds_sta(hapd, ifname_wds,
2247 sta->addr, sta->aid, 1);
2248 if (!ret)
2249 hostapd_set_wds_encryption(hapd, sta,
2250 ifname_wds);
Dmitry Shmidt8d520ff2011-05-09 14:06:53 -07002251 }
2252 return;
2253 }
2254
2255 wpa_printf(MSG_DEBUG, "Data/PS-poll frame from not associated STA "
2256 MACSTR, MAC2STR(src));
2257 if (src[0] & 0x01) {
2258 /* Broadcast bit set in SA?! Ignore the frame silently. */
2259 return;
2260 }
2261
2262 if (sta && (sta->flags & WLAN_STA_ASSOC_REQ_OK)) {
2263 wpa_printf(MSG_DEBUG, "Association Response to the STA has "
2264 "already been sent, but no TX status yet known - "
2265 "ignore Class 3 frame issue with " MACSTR,
2266 MAC2STR(src));
2267 return;
2268 }
2269
2270 if (sta && (sta->flags & WLAN_STA_AUTH))
2271 hostapd_drv_sta_disassoc(
2272 hapd, src,
2273 WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
2274 else
2275 hostapd_drv_sta_deauth(
2276 hapd, src,
2277 WLAN_REASON_CLASS3_FRAME_FROM_NONASSOC_STA);
2278}
2279
2280
2281#endif /* CONFIG_NATIVE_WINDOWS */