Branch data Line data Source code
1 : : /*
2 : : * hostapd / IEEE 802.1X-2004 Authenticator
3 : : * Copyright (c) 2002-2012, Jouni Malinen <j@w1.fi>
4 : : *
5 : : * This software may be distributed under the terms of the BSD license.
6 : : * See README for more details.
7 : : */
8 : :
9 : : #include "utils/includes.h"
10 : :
11 : : #include "utils/common.h"
12 : : #include "utils/eloop.h"
13 : : #include "crypto/md5.h"
14 : : #include "crypto/crypto.h"
15 : : #include "crypto/random.h"
16 : : #include "common/ieee802_11_defs.h"
17 : : #include "radius/radius.h"
18 : : #include "radius/radius_client.h"
19 : : #include "eap_server/eap.h"
20 : : #include "eap_common/eap_wsc_common.h"
21 : : #include "eapol_auth/eapol_auth_sm.h"
22 : : #include "eapol_auth/eapol_auth_sm_i.h"
23 : : #include "p2p/p2p.h"
24 : : #include "hostapd.h"
25 : : #include "accounting.h"
26 : : #include "sta_info.h"
27 : : #include "wpa_auth.h"
28 : : #include "preauth_auth.h"
29 : : #include "pmksa_cache_auth.h"
30 : : #include "ap_config.h"
31 : : #include "ap_drv_ops.h"
32 : : #include "wps_hostapd.h"
33 : : #include "hs20.h"
34 : : #include "ieee802_1x.h"
35 : :
36 : :
37 : : static void ieee802_1x_finished(struct hostapd_data *hapd,
38 : : struct sta_info *sta, int success,
39 : : int remediation);
40 : :
41 : :
42 : 2263 : static void ieee802_1x_send(struct hostapd_data *hapd, struct sta_info *sta,
43 : : u8 type, const u8 *data, size_t datalen)
44 : : {
45 : : u8 *buf;
46 : : struct ieee802_1x_hdr *xhdr;
47 : : size_t len;
48 : 2263 : int encrypt = 0;
49 : :
50 : 2263 : len = sizeof(*xhdr) + datalen;
51 : 2263 : buf = os_zalloc(len);
52 [ - + ]: 2263 : if (buf == NULL) {
53 : 0 : wpa_printf(MSG_ERROR, "malloc() failed for "
54 : : "ieee802_1x_send(len=%lu)",
55 : : (unsigned long) len);
56 : 2263 : return;
57 : : }
58 : :
59 : 2263 : xhdr = (struct ieee802_1x_hdr *) buf;
60 : 2263 : xhdr->version = hapd->conf->eapol_version;
61 : 2263 : xhdr->type = type;
62 : 2263 : xhdr->length = host_to_be16(datalen);
63 : :
64 [ + - ][ + - ]: 2263 : if (datalen > 0 && data != NULL)
65 : 2263 : os_memcpy(xhdr + 1, data, datalen);
66 : :
67 [ + + ]: 2263 : if (wpa_auth_pairwise_set(sta->wpa_sm))
68 : 168 : encrypt = 1;
69 [ - + ]: 2263 : if (sta->flags & WLAN_STA_PREAUTH) {
70 : 0 : rsn_preauth_send(hapd, sta, buf, len);
71 : : } else {
72 : 2263 : hostapd_drv_hapd_send_eapol(
73 : 2263 : hapd, sta->addr, buf, len,
74 : : encrypt, hostapd_sta_flags_to_drv(sta->flags));
75 : : }
76 : :
77 : 2263 : os_free(buf);
78 : : }
79 : :
80 : :
81 : 1293 : void ieee802_1x_set_sta_authorized(struct hostapd_data *hapd,
82 : : struct sta_info *sta, int authorized)
83 : : {
84 : : int res;
85 : :
86 [ - + ]: 1293 : if (sta->flags & WLAN_STA_PREAUTH)
87 : 1293 : return;
88 : :
89 [ + + ]: 1293 : if (authorized) {
90 : 406 : ap_sta_set_authorized(hapd, sta, 1);
91 : 406 : res = hostapd_set_authorized(hapd, sta, 1);
92 : 406 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
93 : : HOSTAPD_LEVEL_DEBUG, "authorizing port");
94 : : } else {
95 : 887 : ap_sta_set_authorized(hapd, sta, 0);
96 : 887 : res = hostapd_set_authorized(hapd, sta, 0);
97 : 887 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
98 : : HOSTAPD_LEVEL_DEBUG, "unauthorizing port");
99 : : }
100 : :
101 [ - + ][ # # ]: 1293 : if (res && errno != ENOENT) {
102 : 0 : wpa_printf(MSG_DEBUG, "Could not set station " MACSTR
103 : : " flags for kernel driver (errno=%d).",
104 : 0 : MAC2STR(sta->addr), errno);
105 : : }
106 : :
107 [ + + ]: 1293 : if (authorized) {
108 : 406 : os_get_reltime(&sta->connected_time);
109 : 406 : accounting_sta_start(hapd, sta);
110 : : }
111 : : }
112 : :
113 : :
114 : 4 : static void ieee802_1x_tx_key_one(struct hostapd_data *hapd,
115 : : struct sta_info *sta,
116 : : int idx, int broadcast,
117 : : u8 *key_data, size_t key_len)
118 : : {
119 : : u8 *buf, *ekey;
120 : : struct ieee802_1x_hdr *hdr;
121 : : struct ieee802_1x_eapol_key *key;
122 : : size_t len, ekey_len;
123 : 4 : struct eapol_state_machine *sm = sta->eapol_sm;
124 : :
125 [ - + ]: 4 : if (sm == NULL)
126 : 0 : return;
127 : :
128 : 4 : len = sizeof(*key) + key_len;
129 : 4 : buf = os_zalloc(sizeof(*hdr) + len);
130 [ - + ]: 4 : if (buf == NULL)
131 : 0 : return;
132 : :
133 : 4 : hdr = (struct ieee802_1x_hdr *) buf;
134 : 4 : key = (struct ieee802_1x_eapol_key *) (hdr + 1);
135 : 4 : key->type = EAPOL_KEY_TYPE_RC4;
136 : 4 : WPA_PUT_BE16(key->key_length, key_len);
137 : 4 : wpa_get_ntp_timestamp(key->replay_counter);
138 : :
139 [ - + ]: 4 : if (random_get_bytes(key->key_iv, sizeof(key->key_iv))) {
140 : 0 : wpa_printf(MSG_ERROR, "Could not get random numbers");
141 : 0 : os_free(buf);
142 : 0 : return;
143 : : }
144 : :
145 [ + + ]: 4 : key->key_index = idx | (broadcast ? 0 : BIT(7));
146 [ - + ]: 4 : if (hapd->conf->eapol_key_index_workaround) {
147 : : /* According to some information, WinXP Supplicant seems to
148 : : * interpret bit7 as an indication whether the key is to be
149 : : * activated, so make it possible to enable workaround that
150 : : * sets this bit for all keys. */
151 : 0 : key->key_index |= BIT(7);
152 : : }
153 : :
154 : : /* Key is encrypted using "Key-IV + MSK[0..31]" as the RC4-key and
155 : : * MSK[32..63] is used to sign the message. */
156 [ + - ][ - + ]: 4 : if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
157 : 0 : wpa_printf(MSG_ERROR, "No eapKeyData available for encrypting "
158 : : "and signing EAPOL-Key");
159 : 0 : os_free(buf);
160 : 0 : return;
161 : : }
162 : 4 : os_memcpy((u8 *) (key + 1), key_data, key_len);
163 : 4 : ekey_len = sizeof(key->key_iv) + 32;
164 : 4 : ekey = os_malloc(ekey_len);
165 [ - + ]: 4 : if (ekey == NULL) {
166 : 0 : wpa_printf(MSG_ERROR, "Could not encrypt key");
167 : 0 : os_free(buf);
168 : 0 : return;
169 : : }
170 : 4 : os_memcpy(ekey, key->key_iv, sizeof(key->key_iv));
171 : 4 : os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
172 : 4 : rc4_skip(ekey, ekey_len, 0, (u8 *) (key + 1), key_len);
173 : 4 : os_free(ekey);
174 : :
175 : : /* This header is needed here for HMAC-MD5, but it will be regenerated
176 : : * in ieee802_1x_send() */
177 : 4 : hdr->version = hapd->conf->eapol_version;
178 : 4 : hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
179 : 4 : hdr->length = host_to_be16(len);
180 : 4 : hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
181 : 4 : key->key_signature);
182 : :
183 [ + + ]: 4 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key to " MACSTR
184 : 24 : " (%s index=%d)", MAC2STR(sm->addr),
185 : : broadcast ? "broadcast" : "unicast", idx);
186 : 4 : ieee802_1x_send(hapd, sta, IEEE802_1X_TYPE_EAPOL_KEY, (u8 *) key, len);
187 [ + - ]: 4 : if (sta->eapol_sm)
188 : 4 : sta->eapol_sm->dot1xAuthEapolFramesTx++;
189 : 4 : os_free(buf);
190 : : }
191 : :
192 : :
193 : 2 : void ieee802_1x_tx_key(struct hostapd_data *hapd, struct sta_info *sta)
194 : : {
195 : 2 : struct eapol_authenticator *eapol = hapd->eapol_auth;
196 : 2 : struct eapol_state_machine *sm = sta->eapol_sm;
197 : :
198 [ + - ][ - + ]: 2 : if (sm == NULL || !sm->eap_if->eapKeyData)
199 : 0 : return;
200 : :
201 : 2 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key(s) to " MACSTR,
202 : 12 : MAC2STR(sta->addr));
203 : :
204 : : #ifndef CONFIG_NO_VLAN
205 [ # # ][ - + ]: 2 : if (sta->vlan_id > 0 && sta->vlan_id <= MAX_VLAN_ID) {
206 : 0 : wpa_printf(MSG_ERROR, "Using WEP with vlans is not supported.");
207 : 0 : return;
208 : : }
209 : : #endif /* CONFIG_NO_VLAN */
210 : :
211 [ + - ][ # # ]: 2 : if (eapol->default_wep_key) {
212 : 2 : ieee802_1x_tx_key_one(hapd, sta, eapol->default_wep_key_idx, 1,
213 : : eapol->default_wep_key,
214 : 2 : hapd->conf->default_wep_key_len);
215 : : }
216 : :
217 [ + - ]: 2 : if (hapd->conf->individual_wep_key_len > 0) {
218 : : u8 *ikey;
219 : 2 : ikey = os_malloc(hapd->conf->individual_wep_key_len);
220 [ + - - + ]: 4 : if (ikey == NULL ||
221 : 2 : random_get_bytes(ikey, hapd->conf->individual_wep_key_len))
222 : : {
223 : 0 : wpa_printf(MSG_ERROR, "Could not generate random "
224 : : "individual WEP key.");
225 : 0 : os_free(ikey);
226 : 0 : return;
227 : : }
228 : :
229 : 2 : wpa_hexdump_key(MSG_DEBUG, "Individual WEP key",
230 : 2 : ikey, hapd->conf->individual_wep_key_len);
231 : :
232 : 2 : ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
233 : 2 : hapd->conf->individual_wep_key_len);
234 : :
235 : : /* TODO: set encryption in TX callback, i.e., only after STA
236 : : * has ACKed EAPOL-Key frame */
237 [ - + ]: 2 : if (hostapd_drv_set_key(hapd->conf->iface, hapd, WPA_ALG_WEP,
238 : 2 : sta->addr, 0, 1, NULL, 0, ikey,
239 : 2 : hapd->conf->individual_wep_key_len)) {
240 : 0 : wpa_printf(MSG_ERROR, "Could not set individual WEP "
241 : : "encryption.");
242 : : }
243 : :
244 : 2 : os_free(ikey);
245 : : }
246 : : }
247 : :
248 : :
249 : 1056 : const char *radius_mode_txt(struct hostapd_data *hapd)
250 : : {
251 [ - - + - ]: 1056 : switch (hapd->iface->conf->hw_mode) {
252 : : case HOSTAPD_MODE_IEEE80211AD:
253 : 0 : return "802.11ad";
254 : : case HOSTAPD_MODE_IEEE80211A:
255 : 0 : return "802.11a";
256 : : case HOSTAPD_MODE_IEEE80211G:
257 : 1056 : return "802.11g";
258 : : case HOSTAPD_MODE_IEEE80211B:
259 : : default:
260 : 1056 : return "802.11b";
261 : : }
262 : : }
263 : :
264 : :
265 : 2112 : int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *sta)
266 : : {
267 : : int i;
268 : 2112 : u8 rate = 0;
269 : :
270 [ + + ]: 27456 : for (i = 0; i < sta->supported_rates_len; i++)
271 [ + + ]: 25344 : if ((sta->supported_rates[i] & 0x7f) > rate)
272 : 21120 : rate = sta->supported_rates[i] & 0x7f;
273 : :
274 : 2112 : return rate;
275 : : }
276 : :
277 : :
278 : : #ifndef CONFIG_NO_RADIUS
279 : 1050 : static void ieee802_1x_learn_identity(struct hostapd_data *hapd,
280 : : struct eapol_state_machine *sm,
281 : : const u8 *eap, size_t len)
282 : : {
283 : : const u8 *identity;
284 : : size_t identity_len;
285 : :
286 [ + - ][ + + ]: 1050 : if (len <= sizeof(struct eap_hdr) ||
287 : 1050 : eap[sizeof(struct eap_hdr)] != EAP_TYPE_IDENTITY)
288 : 856 : return;
289 : :
290 : 194 : identity = eap_get_identity(sm->eap, &identity_len);
291 [ - + ]: 194 : if (identity == NULL)
292 : 0 : return;
293 : :
294 : : /* Save station identity for future RADIUS packets */
295 : 194 : os_free(sm->identity);
296 : 194 : sm->identity = (u8 *) dup_binstr(identity, identity_len);
297 [ - + ]: 194 : if (sm->identity == NULL) {
298 : 0 : sm->identity_len = 0;
299 : 0 : return;
300 : : }
301 : :
302 : 194 : sm->identity_len = identity_len;
303 : 194 : hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
304 : : HOSTAPD_LEVEL_DEBUG, "STA identity '%s'", sm->identity);
305 : 1050 : sm->dot1xAuthEapolRespIdFramesRx++;
306 : : }
307 : :
308 : :
309 : 1056 : static int add_common_radius_sta_attr(struct hostapd_data *hapd,
310 : : struct hostapd_radius_attr *req_attr,
311 : : struct sta_info *sta,
312 : : struct radius_msg *msg)
313 : : {
314 : : char buf[128];
315 : :
316 [ + - ]: 1056 : if (!hostapd_config_get_radius_attr(req_attr,
317 [ - + ]: 1056 : RADIUS_ATTR_NAS_PORT) &&
318 : 1056 : !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT, sta->aid)) {
319 : 0 : wpa_printf(MSG_ERROR, "Could not add NAS-Port");
320 : 0 : return -1;
321 : : }
322 : :
323 : 6336 : os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
324 : 6336 : MAC2STR(sta->addr));
325 : 1056 : buf[sizeof(buf) - 1] = '\0';
326 [ - + ]: 1056 : if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
327 : : (u8 *) buf, os_strlen(buf))) {
328 : 0 : wpa_printf(MSG_ERROR, "Could not add Calling-Station-Id");
329 : 0 : return -1;
330 : : }
331 : :
332 [ - + ]: 1056 : if (sta->flags & WLAN_STA_PREAUTH) {
333 : 0 : os_strlcpy(buf, "IEEE 802.11i Pre-Authentication",
334 : : sizeof(buf));
335 : : } else {
336 [ - + ]: 2112 : os_snprintf(buf, sizeof(buf), "CONNECT %d%sMbps %s",
337 : 1056 : radius_sta_rate(hapd, sta) / 2,
338 : 1056 : (radius_sta_rate(hapd, sta) & 1) ? ".5" : "",
339 : : radius_mode_txt(hapd));
340 : 1056 : buf[sizeof(buf) - 1] = '\0';
341 : : }
342 [ + - ]: 1056 : if (!hostapd_config_get_radius_attr(req_attr,
343 [ - + ]: 1056 : RADIUS_ATTR_CONNECT_INFO) &&
344 : 1056 : !radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
345 : : (u8 *) buf, os_strlen(buf))) {
346 : 0 : wpa_printf(MSG_ERROR, "Could not add Connect-Info");
347 : 0 : return -1;
348 : : }
349 : :
350 [ - + ][ # # ]: 1056 : if (sta->acct_session_id_hi || sta->acct_session_id_lo) {
351 : 1056 : os_snprintf(buf, sizeof(buf), "%08X-%08X",
352 : : sta->acct_session_id_hi, sta->acct_session_id_lo);
353 [ - + ]: 1056 : if (!radius_msg_add_attr(msg, RADIUS_ATTR_ACCT_SESSION_ID,
354 : : (u8 *) buf, os_strlen(buf))) {
355 : 0 : wpa_printf(MSG_ERROR, "Could not add Acct-Session-Id");
356 : 0 : return -1;
357 : : }
358 : : }
359 : :
360 : 1056 : return 0;
361 : : }
362 : :
363 : :
364 : 1062 : int add_common_radius_attr(struct hostapd_data *hapd,
365 : : struct hostapd_radius_attr *req_attr,
366 : : struct sta_info *sta,
367 : : struct radius_msg *msg)
368 : : {
369 : : char buf[128];
370 : : struct hostapd_radius_attr *attr;
371 : :
372 [ + - ]: 1062 : if (!hostapd_config_get_radius_attr(req_attr,
373 [ + + ]: 1062 : RADIUS_ATTR_NAS_IP_ADDRESS) &&
374 [ - + ]: 15 : hapd->conf->own_ip_addr.af == AF_INET &&
375 : 15 : !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
376 : 15 : (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
377 : 0 : wpa_printf(MSG_ERROR, "Could not add NAS-IP-Address");
378 : 0 : return -1;
379 : : }
380 : :
381 : : #ifdef CONFIG_IPV6
382 [ + - ]: 1062 : if (!hostapd_config_get_radius_attr(req_attr,
383 [ + + ]: 1062 : RADIUS_ATTR_NAS_IPV6_ADDRESS) &&
384 [ - + ]: 7 : hapd->conf->own_ip_addr.af == AF_INET6 &&
385 : 7 : !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
386 : 7 : (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
387 : 0 : wpa_printf(MSG_ERROR, "Could not add NAS-IPv6-Address");
388 : 0 : return -1;
389 : : }
390 : : #endif /* CONFIG_IPV6 */
391 : :
392 [ + - ]: 1062 : if (!hostapd_config_get_radius_attr(req_attr,
393 [ + + ]: 1062 : RADIUS_ATTR_NAS_IDENTIFIER) &&
394 [ - + ]: 611 : hapd->conf->nas_identifier &&
395 : 611 : !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
396 : 611 : (u8 *) hapd->conf->nas_identifier,
397 : 611 : os_strlen(hapd->conf->nas_identifier))) {
398 : 0 : wpa_printf(MSG_ERROR, "Could not add NAS-Identifier");
399 : 0 : return -1;
400 : : }
401 : :
402 : 1062 : os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":%s",
403 : 6372 : MAC2STR(hapd->own_addr),
404 : 1062 : wpa_ssid_txt(hapd->conf->ssid.ssid,
405 : 1062 : hapd->conf->ssid.ssid_len));
406 : 1062 : buf[sizeof(buf) - 1] = '\0';
407 [ + - ]: 1062 : if (!hostapd_config_get_radius_attr(req_attr,
408 [ - + ]: 1062 : RADIUS_ATTR_CALLED_STATION_ID) &&
409 : 1062 : !radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
410 : : (u8 *) buf, os_strlen(buf))) {
411 : 0 : wpa_printf(MSG_ERROR, "Could not add Called-Station-Id");
412 : 0 : return -1;
413 : : }
414 : :
415 [ + - ]: 1062 : if (!hostapd_config_get_radius_attr(req_attr,
416 [ - + ]: 1062 : RADIUS_ATTR_NAS_PORT_TYPE) &&
417 : 1062 : !radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
418 : : RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
419 : 0 : wpa_printf(MSG_ERROR, "Could not add NAS-Port-Type");
420 : 0 : return -1;
421 : : }
422 : :
423 [ + + ][ - + ]: 1062 : if (sta && add_common_radius_sta_attr(hapd, req_attr, sta, msg) < 0)
424 : 0 : return -1;
425 : :
426 [ - + ]: 1062 : for (attr = req_attr; attr; attr = attr->next) {
427 [ # # ]: 0 : if (!radius_msg_add_attr(msg, attr->type,
428 : 0 : wpabuf_head(attr->val),
429 : 0 : wpabuf_len(attr->val))) {
430 : 0 : wpa_printf(MSG_ERROR, "Could not add RADIUS "
431 : : "attribute");
432 : 0 : return -1;
433 : : }
434 : : }
435 : :
436 : 1062 : return 0;
437 : : }
438 : :
439 : :
440 : 1050 : static void ieee802_1x_encapsulate_radius(struct hostapd_data *hapd,
441 : : struct sta_info *sta,
442 : : const u8 *eap, size_t len)
443 : : {
444 : : struct radius_msg *msg;
445 : 1050 : struct eapol_state_machine *sm = sta->eapol_sm;
446 : :
447 [ - + ]: 1050 : if (sm == NULL)
448 : 0 : return;
449 : :
450 : 1050 : ieee802_1x_learn_identity(hapd, sm, eap, len);
451 : :
452 : 1050 : wpa_printf(MSG_DEBUG, "Encapsulating EAP message into a RADIUS "
453 : : "packet");
454 : :
455 : 1050 : sm->radius_identifier = radius_client_get_id(hapd->radius);
456 : 1050 : msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
457 : 1050 : sm->radius_identifier);
458 [ - + ]: 1050 : if (msg == NULL) {
459 : 0 : wpa_printf(MSG_INFO, "Could not create new RADIUS packet");
460 : 0 : return;
461 : : }
462 : :
463 : 1050 : radius_msg_make_authenticator(msg, (u8 *) sta, sizeof(*sta));
464 : :
465 [ + - - + ]: 2100 : if (sm->identity &&
466 : 1050 : !radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
467 : 1050 : sm->identity, sm->identity_len)) {
468 : 0 : wpa_printf(MSG_INFO, "Could not add User-Name");
469 : 0 : goto fail;
470 : : }
471 : :
472 [ - + ]: 1050 : if (add_common_radius_attr(hapd, hapd->conf->radius_auth_req_attr, sta,
473 : : msg) < 0)
474 : 0 : goto fail;
475 : :
476 : : /* TODO: should probably check MTU from driver config; 2304 is max for
477 : : * IEEE 802.11, but use 1400 to avoid problems with too large packets
478 : : */
479 [ + - ]: 1050 : if (!hostapd_config_get_radius_attr(hapd->conf->radius_auth_req_attr,
480 [ - + ]: 1050 : RADIUS_ATTR_FRAMED_MTU) &&
481 : 1050 : !radius_msg_add_attr_int32(msg, RADIUS_ATTR_FRAMED_MTU, 1400)) {
482 : 0 : wpa_printf(MSG_INFO, "Could not add Framed-MTU");
483 : 0 : goto fail;
484 : : }
485 : :
486 [ + - ][ - + ]: 1050 : if (eap && !radius_msg_add_eap(msg, eap, len)) {
487 : 0 : wpa_printf(MSG_INFO, "Could not add EAP-Message");
488 : 0 : goto fail;
489 : : }
490 : :
491 : : /* State attribute must be copied if and only if this packet is
492 : : * Access-Request reply to the previous Access-Challenge */
493 [ + + + + ]: 1936 : if (sm->last_recv_radius &&
494 : 886 : radius_msg_get_hdr(sm->last_recv_radius)->code ==
495 : : RADIUS_CODE_ACCESS_CHALLENGE) {
496 : 856 : int res = radius_msg_copy_attr(msg, sm->last_recv_radius,
497 : : RADIUS_ATTR_STATE);
498 [ - + ]: 856 : if (res < 0) {
499 : 0 : wpa_printf(MSG_INFO, "Could not copy State attribute from previous Access-Challenge");
500 : 0 : goto fail;
501 : : }
502 [ + - ]: 856 : if (res > 0) {
503 : 856 : wpa_printf(MSG_DEBUG, "Copied RADIUS State Attribute");
504 : : }
505 : : }
506 : :
507 [ - + ]: 1050 : if (hapd->conf->radius_request_cui) {
508 : : const u8 *cui;
509 : : size_t cui_len;
510 : : /* Add previously learned CUI or nul CUI to request CUI */
511 [ # # ]: 0 : if (sm->radius_cui) {
512 : 0 : cui = wpabuf_head(sm->radius_cui);
513 : 0 : cui_len = wpabuf_len(sm->radius_cui);
514 : : } else {
515 : 0 : cui = (const u8 *) "\0";
516 : 0 : cui_len = 1;
517 : : }
518 [ # # ]: 0 : if (!radius_msg_add_attr(msg,
519 : : RADIUS_ATTR_CHARGEABLE_USER_IDENTITY,
520 : : cui, cui_len)) {
521 : 0 : wpa_printf(MSG_ERROR, "Could not add CUI");
522 : 0 : goto fail;
523 : : }
524 : : }
525 : :
526 : : #ifdef CONFIG_HS20
527 [ + + ]: 1050 : if (hapd->conf->hs20) {
528 : 446 : u8 ver = 1; /* Release 2 */
529 [ - + ]: 446 : if (!radius_msg_add_wfa(
530 : : msg, RADIUS_VENDOR_ATTR_WFA_HS20_AP_VERSION,
531 : : &ver, 1)) {
532 : 0 : wpa_printf(MSG_ERROR, "Could not add HS 2.0 AP "
533 : : "version");
534 : 0 : goto fail;
535 : : }
536 : :
537 [ + + ][ + - ]: 446 : if (sta->hs20_ie && wpabuf_len(sta->hs20_ie) > 0) {
538 : : const u8 *pos;
539 : : u8 buf[3];
540 : : u16 id;
541 : 434 : pos = wpabuf_head_u8(sta->hs20_ie);
542 : 434 : buf[0] = (*pos) >> 4;
543 [ + - + - ]: 868 : if (((*pos) & HS20_PPS_MO_ID_PRESENT) &&
544 : 434 : wpabuf_len(sta->hs20_ie) >= 3)
545 : 434 : id = WPA_GET_LE16(pos + 1);
546 : : else
547 : 0 : id = 0;
548 : 434 : WPA_PUT_BE16(buf + 1, id);
549 [ - + ]: 434 : if (!radius_msg_add_wfa(
550 : : msg,
551 : : RADIUS_VENDOR_ATTR_WFA_HS20_STA_VERSION,
552 : : buf, sizeof(buf))) {
553 : 0 : wpa_printf(MSG_ERROR, "Could not add HS 2.0 "
554 : : "STA version");
555 : 0 : goto fail;
556 : : }
557 : : }
558 : : }
559 : : #endif /* CONFIG_HS20 */
560 : :
561 [ - + ]: 1050 : if (radius_client_send(hapd->radius, msg, RADIUS_AUTH, sta->addr) < 0)
562 : 0 : goto fail;
563 : :
564 : 1050 : return;
565 : :
566 : : fail:
567 : 1050 : radius_msg_free(msg);
568 : : }
569 : : #endif /* CONFIG_NO_RADIUS */
570 : :
571 : :
572 : 1909 : static void handle_eap_response(struct hostapd_data *hapd,
573 : : struct sta_info *sta, struct eap_hdr *eap,
574 : : size_t len)
575 : : {
576 : : u8 type, *data;
577 : 1909 : struct eapol_state_machine *sm = sta->eapol_sm;
578 [ - + ]: 1909 : if (sm == NULL)
579 : 0 : return;
580 : :
581 : 1909 : data = (u8 *) (eap + 1);
582 : :
583 [ - + ]: 1909 : if (len < sizeof(*eap) + 1) {
584 : 0 : wpa_printf(MSG_INFO, "handle_eap_response: too short response data");
585 : 0 : return;
586 : : }
587 : :
588 : 1909 : sm->eap_type_supp = type = data[0];
589 : :
590 : 1909 : hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
591 : : HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d "
592 : : "id=%d len=%d) from STA: EAP Response-%s (%d)",
593 : 5727 : eap->code, eap->identifier, be_to_host16(eap->length),
594 : : eap_server_get_name(0, type), type);
595 : :
596 : 1909 : sm->dot1xAuthEapolRespFramesRx++;
597 : :
598 : 1909 : wpabuf_free(sm->eap_if->eapRespData);
599 : 1909 : sm->eap_if->eapRespData = wpabuf_alloc_copy(eap, len);
600 : 1909 : sm->eapolEap = TRUE;
601 : : }
602 : :
603 : :
604 : : /* Process incoming EAP packet from Supplicant */
605 : 1909 : static void handle_eap(struct hostapd_data *hapd, struct sta_info *sta,
606 : : u8 *buf, size_t len)
607 : : {
608 : : struct eap_hdr *eap;
609 : : u16 eap_len;
610 : :
611 [ - + ]: 1909 : if (len < sizeof(*eap)) {
612 : 0 : wpa_printf(MSG_INFO, " too short EAP packet");
613 : 0 : return;
614 : : }
615 : :
616 : 1909 : eap = (struct eap_hdr *) buf;
617 : :
618 : 1909 : eap_len = be_to_host16(eap->length);
619 : 1909 : wpa_printf(MSG_DEBUG, "EAP: code=%d identifier=%d length=%d",
620 : 3818 : eap->code, eap->identifier, eap_len);
621 [ - + ]: 1909 : if (eap_len < sizeof(*eap)) {
622 : 0 : wpa_printf(MSG_DEBUG, " Invalid EAP length");
623 : 0 : return;
624 [ - + ]: 1909 : } else if (eap_len > len) {
625 : 0 : wpa_printf(MSG_DEBUG, " Too short frame to contain this EAP "
626 : : "packet");
627 : 0 : return;
628 [ - + ]: 1909 : } else if (eap_len < len) {
629 : 0 : wpa_printf(MSG_DEBUG, " Ignoring %lu extra bytes after EAP "
630 : : "packet", (unsigned long) len - eap_len);
631 : : }
632 : :
633 [ - + - - : 1909 : switch (eap->code) {
- ]
634 : : case EAP_CODE_REQUEST:
635 : 0 : wpa_printf(MSG_DEBUG, " (request)");
636 : 0 : return;
637 : : case EAP_CODE_RESPONSE:
638 : 1909 : wpa_printf(MSG_DEBUG, " (response)");
639 : 1909 : handle_eap_response(hapd, sta, eap, eap_len);
640 : 1909 : break;
641 : : case EAP_CODE_SUCCESS:
642 : 0 : wpa_printf(MSG_DEBUG, " (success)");
643 : 0 : return;
644 : : case EAP_CODE_FAILURE:
645 : 0 : wpa_printf(MSG_DEBUG, " (failure)");
646 : 0 : return;
647 : : default:
648 : 0 : wpa_printf(MSG_DEBUG, " (unknown code)");
649 : 1909 : return;
650 : : }
651 : : }
652 : :
653 : :
654 : : static struct eapol_state_machine *
655 : 328 : ieee802_1x_alloc_eapol_sm(struct hostapd_data *hapd, struct sta_info *sta)
656 : : {
657 : 328 : int flags = 0;
658 [ - + ]: 328 : if (sta->flags & WLAN_STA_PREAUTH)
659 : 0 : flags |= EAPOL_SM_PREAUTH;
660 [ + + ]: 328 : if (sta->wpa_sm) {
661 : 182 : flags |= EAPOL_SM_USES_WPA;
662 [ + + ]: 182 : if (wpa_auth_sta_get_pmksa(sta->wpa_sm))
663 : 5 : flags |= EAPOL_SM_FROM_PMKSA_CACHE;
664 : : }
665 : 328 : return eapol_auth_alloc(hapd->eapol_auth, sta->addr, flags,
666 : 328 : sta->wps_ie, sta->p2p_ie, sta,
667 : 328 : sta->identity, sta->radius_cui);
668 : : }
669 : :
670 : :
671 : : /**
672 : : * ieee802_1x_receive - Process the EAPOL frames from the Supplicant
673 : : * @hapd: hostapd BSS data
674 : : * @sa: Source address (sender of the EAPOL frame)
675 : : * @buf: EAPOL frame
676 : : * @len: Length of buf in octets
677 : : *
678 : : * This function is called for each incoming EAPOL frame from the interface
679 : : */
680 : 2790 : void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf,
681 : : size_t len)
682 : : {
683 : : struct sta_info *sta;
684 : : struct ieee802_1x_hdr *hdr;
685 : : struct ieee802_1x_eapol_key *key;
686 : : u16 datalen;
687 : : struct rsn_pmksa_cache_entry *pmksa;
688 : : int key_mgmt;
689 : :
690 [ + + ][ + + ]: 2790 : if (!hapd->conf->ieee802_1x && !hapd->conf->wpa && !hapd->conf->osen &&
[ + + ][ - + ]
691 : 63 : !hapd->conf->wps_state)
692 : 0 : return;
693 : :
694 : 2790 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR,
695 : 16740 : (unsigned long) len, MAC2STR(sa));
696 : 2790 : sta = ap_get_sta(hapd, sa);
697 [ - + ][ # # ]: 2790 : if (!sta || (!(sta->flags & (WLAN_STA_ASSOC | WLAN_STA_PREAUTH)) &&
[ + - ]
698 : 0 : !(hapd->iface->drv_flags & WPA_DRIVER_FLAGS_WIRED))) {
699 : 0 : wpa_printf(MSG_DEBUG, "IEEE 802.1X data frame from not "
700 : : "associated/Pre-authenticating STA");
701 : 0 : return;
702 : : }
703 : :
704 [ - + ]: 2790 : if (len < sizeof(*hdr)) {
705 : 0 : wpa_printf(MSG_INFO, " too short IEEE 802.1X packet");
706 : 0 : return;
707 : : }
708 : :
709 : 2790 : hdr = (struct ieee802_1x_hdr *) buf;
710 : 2790 : datalen = be_to_host16(hdr->length);
711 : 2790 : wpa_printf(MSG_DEBUG, " IEEE 802.1X: version=%d type=%d length=%d",
712 : 5580 : hdr->version, hdr->type, datalen);
713 : :
714 [ - + ]: 2790 : if (len - sizeof(*hdr) < datalen) {
715 : 0 : wpa_printf(MSG_INFO, " frame too short for this IEEE 802.1X packet");
716 [ # # ]: 0 : if (sta->eapol_sm)
717 : 0 : sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++;
718 : 0 : return;
719 : : }
720 [ - + ]: 2790 : if (len - sizeof(*hdr) > datalen) {
721 : 0 : wpa_printf(MSG_DEBUG, " ignoring %lu extra octets after "
722 : : "IEEE 802.1X packet",
723 : 0 : (unsigned long) len - sizeof(*hdr) - datalen);
724 : : }
725 : :
726 [ + + ]: 2790 : if (sta->eapol_sm) {
727 : 2299 : sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version;
728 : 2299 : sta->eapol_sm->dot1xAuthEapolFramesRx++;
729 : : }
730 : :
731 : 2790 : key = (struct ieee802_1x_eapol_key *) (hdr + 1);
732 [ + + ][ + + ]: 2790 : if (datalen >= sizeof(struct ieee802_1x_eapol_key) &&
733 [ + + ]: 843 : hdr->type == IEEE802_1X_TYPE_EAPOL_KEY &&
734 [ + - ]: 819 : (key->type == EAPOL_KEY_TYPE_WPA ||
735 : 819 : key->type == EAPOL_KEY_TYPE_RSN)) {
736 : 843 : wpa_receive(hapd->wpa_auth, sta->wpa_sm, (u8 *) hdr,
737 : : sizeof(*hdr) + datalen);
738 : 843 : return;
739 : : }
740 : :
741 [ + + ][ + + ]: 1947 : if (!hapd->conf->ieee802_1x && !hapd->conf->osen &&
[ - + ]
742 : 815 : !(sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS))) {
743 : 0 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore EAPOL message - "
744 : : "802.1X not enabled and WPS not used");
745 : 0 : return;
746 : : }
747 : :
748 : 1947 : key_mgmt = wpa_auth_sta_key_mgmt(sta->wpa_sm);
749 [ - + ][ + + ]: 1947 : if (key_mgmt != -1 && wpa_key_mgmt_wpa_psk(key_mgmt)) {
750 : 0 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore EAPOL message - "
751 : : "STA is using PSK");
752 : 0 : return;
753 : : }
754 : :
755 [ + + ]: 1947 : if (!sta->eapol_sm) {
756 : 10 : sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
757 [ - + ]: 10 : if (!sta->eapol_sm)
758 : 0 : return;
759 : :
760 : : #ifdef CONFIG_WPS
761 [ + - ][ + - ]: 10 : if (!hapd->conf->ieee802_1x && hapd->conf->wps_state) {
762 : 10 : u32 wflags = sta->flags & (WLAN_STA_WPS |
763 : : WLAN_STA_WPS2 |
764 : : WLAN_STA_MAYBE_WPS);
765 [ + - ][ - + ]: 10 : if (wflags == WLAN_STA_MAYBE_WPS ||
766 : : wflags == (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) {
767 : : /*
768 : : * Delay EAPOL frame transmission until a
769 : : * possible WPS STA initiates the handshake
770 : : * with EAPOL-Start. Only allow the wait to be
771 : : * skipped if the STA is known to support WPS
772 : : * 2.0.
773 : : */
774 : 0 : wpa_printf(MSG_DEBUG, "WPS: Do not start "
775 : : "EAPOL until EAPOL-Start is "
776 : : "received");
777 : 0 : sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
778 : : }
779 : : }
780 : : #endif /* CONFIG_WPS */
781 : :
782 : 10 : sta->eapol_sm->eap_if->portEnabled = TRUE;
783 : : }
784 : :
785 : : /* since we support version 1, we can ignore version field and proceed
786 : : * as specified in version 1 standard [IEEE Std 802.1X-2001, 7.5.5] */
787 : : /* TODO: actually, we are not version 1 anymore.. However, Version 2
788 : : * does not change frame contents, so should be ok to process frames
789 : : * more or less identically. Some changes might be needed for
790 : : * verification of fields. */
791 : :
792 [ + + + - : 1947 : switch (hdr->type) {
- - ]
793 : : case IEEE802_1X_TYPE_EAP_PACKET:
794 : 1909 : handle_eap(hapd, sta, (u8 *) (hdr + 1), datalen);
795 : 1909 : break;
796 : :
797 : : case IEEE802_1X_TYPE_EAPOL_START:
798 : 37 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
799 : : HOSTAPD_LEVEL_DEBUG, "received EAPOL-Start "
800 : : "from STA");
801 : 37 : sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
802 : 37 : pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
803 [ - + ]: 37 : if (pmksa) {
804 : 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
805 : : HOSTAPD_LEVEL_DEBUG, "cached PMKSA "
806 : : "available - ignore it since "
807 : : "STA sent EAPOL-Start");
808 : 0 : wpa_auth_sta_clear_pmksa(sta->wpa_sm, pmksa);
809 : : }
810 : 37 : sta->eapol_sm->eapolStart = TRUE;
811 : 37 : sta->eapol_sm->dot1xAuthEapolStartFramesRx++;
812 : 37 : eap_server_clear_identity(sta->eapol_sm->eap);
813 : 37 : wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
814 : 37 : break;
815 : :
816 : : case IEEE802_1X_TYPE_EAPOL_LOGOFF:
817 : 1 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
818 : : HOSTAPD_LEVEL_DEBUG, "received EAPOL-Logoff "
819 : : "from STA");
820 : 1 : sta->acct_terminate_cause =
821 : : RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
822 : 1 : accounting_sta_stop(hapd, sta);
823 : 1 : sta->eapol_sm->eapolLogoff = TRUE;
824 : 1 : sta->eapol_sm->dot1xAuthEapolLogoffFramesRx++;
825 : 1 : eap_server_clear_identity(sta->eapol_sm->eap);
826 : 1 : break;
827 : :
828 : : case IEEE802_1X_TYPE_EAPOL_KEY:
829 : 0 : wpa_printf(MSG_DEBUG, " EAPOL-Key");
830 [ # # ]: 0 : if (!ap_sta_is_authorized(sta)) {
831 : 0 : wpa_printf(MSG_DEBUG, " Dropped key data from "
832 : : "unauthorized Supplicant");
833 : 0 : break;
834 : : }
835 : 0 : break;
836 : :
837 : : case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
838 : 0 : wpa_printf(MSG_DEBUG, " EAPOL-Encapsulated-ASF-Alert");
839 : : /* TODO: implement support for this; show data */
840 : 0 : break;
841 : :
842 : : default:
843 : 0 : wpa_printf(MSG_DEBUG, " unknown IEEE 802.1X packet type");
844 : 0 : sta->eapol_sm->dot1xAuthInvalidEapolFramesRx++;
845 : 0 : break;
846 : : }
847 : :
848 : 2790 : eapol_auth_step(sta->eapol_sm);
849 : : }
850 : :
851 : :
852 : : /**
853 : : * ieee802_1x_new_station - Start IEEE 802.1X authentication
854 : : * @hapd: hostapd BSS data
855 : : * @sta: The station
856 : : *
857 : : * This function is called to start IEEE 802.1X authentication when a new
858 : : * station completes IEEE 802.11 association.
859 : : */
860 : 674 : void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta)
861 : : {
862 : : struct rsn_pmksa_cache_entry *pmksa;
863 : 674 : int reassoc = 1;
864 : 674 : int force_1x = 0;
865 : : int key_mgmt;
866 : :
867 : : #ifdef CONFIG_WPS
868 [ + + ][ + + ]: 674 : if (hapd->conf->wps_state && hapd->conf->wpa &&
[ + + ]
869 : 281 : (sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS))) {
870 : : /*
871 : : * Need to enable IEEE 802.1X/EAPOL state machines for possible
872 : : * WPS handshake even if IEEE 802.1X/EAPOL is not used for
873 : : * authentication in this BSS.
874 : : */
875 : 134 : force_1x = 1;
876 : : }
877 : : #endif /* CONFIG_WPS */
878 : :
879 [ + + ][ + + ]: 674 : if (!force_1x && !hapd->conf->ieee802_1x && !hapd->conf->osen) {
[ + + ]
880 : 352 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore STA - "
881 : : "802.1X not enabled or forced for WPS");
882 : : /*
883 : : * Clear any possible EAPOL authenticator state to support
884 : : * reassociation change from WPS to PSK.
885 : : */
886 : 352 : ieee802_1x_free_station(sta);
887 : 352 : return;
888 : : }
889 : :
890 : 322 : key_mgmt = wpa_auth_sta_key_mgmt(sta->wpa_sm);
891 [ - + ][ + + ]: 322 : if (key_mgmt != -1 && wpa_key_mgmt_wpa_psk(key_mgmt)) {
892 : 0 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Ignore STA - using PSK");
893 : : /*
894 : : * Clear any possible EAPOL authenticator state to support
895 : : * reassociation change from WPA-EAP to PSK.
896 : : */
897 : 0 : ieee802_1x_free_station(sta);
898 : 0 : return;
899 : : }
900 : :
901 [ + + ]: 322 : if (sta->eapol_sm == NULL) {
902 : 318 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
903 : : HOSTAPD_LEVEL_DEBUG, "start authentication");
904 : 318 : sta->eapol_sm = ieee802_1x_alloc_eapol_sm(hapd, sta);
905 [ - + ]: 318 : if (sta->eapol_sm == NULL) {
906 : 0 : hostapd_logger(hapd, sta->addr,
907 : : HOSTAPD_MODULE_IEEE8021X,
908 : : HOSTAPD_LEVEL_INFO,
909 : : "failed to allocate state machine");
910 : 0 : return;
911 : : }
912 : 318 : reassoc = 0;
913 : : }
914 : :
915 : : #ifdef CONFIG_WPS
916 : 322 : sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
917 [ + + ][ + + ]: 322 : if (!hapd->conf->ieee802_1x && hapd->conf->wps_state &&
[ + + ]
918 : 134 : !(sta->flags & WLAN_STA_WPS2)) {
919 : : /*
920 : : * Delay EAPOL frame transmission until a possible WPS STA
921 : : * initiates the handshake with EAPOL-Start. Only allow the
922 : : * wait to be skipped if the STA is known to support WPS 2.0.
923 : : */
924 : 1 : wpa_printf(MSG_DEBUG, "WPS: Do not start EAPOL until "
925 : : "EAPOL-Start is received");
926 : 1 : sta->eapol_sm->flags |= EAPOL_SM_WAIT_START;
927 : : }
928 : : #endif /* CONFIG_WPS */
929 : :
930 : 322 : sta->eapol_sm->eap_if->portEnabled = TRUE;
931 : :
932 : : #ifdef CONFIG_IEEE80211R
933 [ + + ]: 322 : if (sta->auth_alg == WLAN_AUTH_FT) {
934 : 2 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
935 : : HOSTAPD_LEVEL_DEBUG,
936 : : "PMK from FT - skip IEEE 802.1X/EAP");
937 : : /* Setup EAPOL state machines to already authenticated state
938 : : * because of existing FT information from R0KH. */
939 : 2 : sta->eapol_sm->keyRun = TRUE;
940 : 2 : sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
941 : 2 : sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
942 : 2 : sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
943 : 2 : sta->eapol_sm->authSuccess = TRUE;
944 : 2 : sta->eapol_sm->authFail = FALSE;
945 [ + - ]: 2 : if (sta->eapol_sm->eap)
946 : 2 : eap_sm_notify_cached(sta->eapol_sm->eap);
947 : : /* TODO: get vlan_id from R0KH using RRB message */
948 : 2 : return;
949 : : }
950 : : #endif /* CONFIG_IEEE80211R */
951 : :
952 : 320 : pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
953 [ + + ]: 320 : if (pmksa) {
954 : : int old_vlanid;
955 : :
956 : 5 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
957 : : HOSTAPD_LEVEL_DEBUG,
958 : : "PMK from PMKSA cache - skip IEEE 802.1X/EAP");
959 : : /* Setup EAPOL state machines to already authenticated state
960 : : * because of existing PMKSA information in the cache. */
961 : 5 : sta->eapol_sm->keyRun = TRUE;
962 : 5 : sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
963 : 5 : sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
964 : 5 : sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
965 : 5 : sta->eapol_sm->authSuccess = TRUE;
966 : 5 : sta->eapol_sm->authFail = FALSE;
967 [ + - ]: 5 : if (sta->eapol_sm->eap)
968 : 5 : eap_sm_notify_cached(sta->eapol_sm->eap);
969 : 5 : old_vlanid = sta->vlan_id;
970 : 5 : pmksa_cache_to_eapol_data(pmksa, sta->eapol_sm);
971 [ + - ]: 5 : if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
972 : 5 : sta->vlan_id = 0;
973 : 5 : ap_sta_bind_vlan(hapd, sta, old_vlanid);
974 : : } else {
975 [ + + ]: 315 : if (reassoc) {
976 : : /*
977 : : * Force EAPOL state machines to start
978 : : * re-authentication without having to wait for the
979 : : * Supplicant to send EAPOL-Start.
980 : : */
981 : 4 : sta->eapol_sm->reAuthenticate = TRUE;
982 : : }
983 : 674 : eapol_auth_step(sta->eapol_sm);
984 : : }
985 : : }
986 : :
987 : :
988 : 1041 : void ieee802_1x_free_station(struct sta_info *sta)
989 : : {
990 : 1041 : struct eapol_state_machine *sm = sta->eapol_sm;
991 : :
992 [ + + ]: 1041 : if (sm == NULL)
993 : 1041 : return;
994 : :
995 : 328 : sta->eapol_sm = NULL;
996 : :
997 : : #ifndef CONFIG_NO_RADIUS
998 : 241 : radius_msg_free(sm->last_recv_radius);
999 : 241 : radius_free_class(&sm->radius_class);
1000 : 241 : wpabuf_free(sm->radius_cui);
1001 : : #endif /* CONFIG_NO_RADIUS */
1002 : :
1003 : 328 : os_free(sm->identity);
1004 : 328 : eapol_auth_free(sm);
1005 : : }
1006 : :
1007 : :
1008 : : #ifndef CONFIG_NO_RADIUS
1009 : 1049 : static void ieee802_1x_decapsulate_radius(struct hostapd_data *hapd,
1010 : : struct sta_info *sta)
1011 : : {
1012 : : struct wpabuf *eap;
1013 : : const struct eap_hdr *hdr;
1014 : 1049 : int eap_type = -1;
1015 : : char buf[64];
1016 : : struct radius_msg *msg;
1017 : 1049 : struct eapol_state_machine *sm = sta->eapol_sm;
1018 : :
1019 [ + - ][ - + ]: 1049 : if (sm == NULL || sm->last_recv_radius == NULL) {
1020 [ # # ]: 0 : if (sm)
1021 : 0 : sm->eap_if->aaaEapNoReq = TRUE;
1022 : 0 : return;
1023 : : }
1024 : :
1025 : 1049 : msg = sm->last_recv_radius;
1026 : :
1027 : 1049 : eap = radius_msg_get_eap(msg);
1028 [ - + ]: 1049 : if (eap == NULL) {
1029 : : /* RFC 3579, Chap. 2.6.3:
1030 : : * RADIUS server SHOULD NOT send Access-Reject/no EAP-Message
1031 : : * attribute */
1032 : 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1033 : : HOSTAPD_LEVEL_WARNING, "could not extract "
1034 : : "EAP-Message from RADIUS message");
1035 : 0 : sm->eap_if->aaaEapNoReq = TRUE;
1036 : 0 : return;
1037 : : }
1038 : :
1039 [ - + ]: 1049 : if (wpabuf_len(eap) < sizeof(*hdr)) {
1040 : 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1041 : : HOSTAPD_LEVEL_WARNING, "too short EAP packet "
1042 : : "received from authentication server");
1043 : 0 : wpabuf_free(eap);
1044 : 0 : sm->eap_if->aaaEapNoReq = TRUE;
1045 : 0 : return;
1046 : : }
1047 : :
1048 [ + + ]: 1049 : if (wpabuf_len(eap) > sizeof(*hdr))
1049 : 858 : eap_type = (wpabuf_head_u8(eap))[sizeof(*hdr)];
1050 : :
1051 : 1049 : hdr = wpabuf_head(eap);
1052 [ + - + + : 1049 : switch (hdr->code) {
- ]
1053 : : case EAP_CODE_REQUEST:
1054 [ + - ]: 858 : if (eap_type >= 0)
1055 : 858 : sm->eap_type_authsrv = eap_type;
1056 [ + - ]: 858 : os_snprintf(buf, sizeof(buf), "EAP-Request-%s (%d)",
1057 : 858 : eap_type >= 0 ? eap_server_get_name(0, eap_type) :
1058 : : "??",
1059 : : eap_type);
1060 : 858 : break;
1061 : : case EAP_CODE_RESPONSE:
1062 [ # # ]: 0 : os_snprintf(buf, sizeof(buf), "EAP Response-%s (%d)",
1063 : 0 : eap_type >= 0 ? eap_server_get_name(0, eap_type) :
1064 : : "??",
1065 : : eap_type);
1066 : 0 : break;
1067 : : case EAP_CODE_SUCCESS:
1068 : 170 : os_strlcpy(buf, "EAP Success", sizeof(buf));
1069 : 170 : break;
1070 : : case EAP_CODE_FAILURE:
1071 : 21 : os_strlcpy(buf, "EAP Failure", sizeof(buf));
1072 : 21 : break;
1073 : : default:
1074 : 0 : os_strlcpy(buf, "unknown EAP code", sizeof(buf));
1075 : 0 : break;
1076 : : }
1077 : 1049 : buf[sizeof(buf) - 1] = '\0';
1078 : 1049 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1079 : : HOSTAPD_LEVEL_DEBUG, "decapsulated EAP packet (code=%d "
1080 : : "id=%d len=%d) from RADIUS server: %s",
1081 : 3147 : hdr->code, hdr->identifier, be_to_host16(hdr->length),
1082 : : buf);
1083 : 1049 : sm->eap_if->aaaEapReq = TRUE;
1084 : :
1085 : 1049 : wpabuf_free(sm->eap_if->aaaEapReqData);
1086 : 1049 : sm->eap_if->aaaEapReqData = eap;
1087 : : }
1088 : :
1089 : :
1090 : 170 : static void ieee802_1x_get_keys(struct hostapd_data *hapd,
1091 : : struct sta_info *sta, struct radius_msg *msg,
1092 : : struct radius_msg *req,
1093 : : const u8 *shared_secret,
1094 : : size_t shared_secret_len)
1095 : : {
1096 : : struct radius_ms_mppe_keys *keys;
1097 : 170 : struct eapol_state_machine *sm = sta->eapol_sm;
1098 [ - + ]: 170 : if (sm == NULL)
1099 : 170 : return;
1100 : :
1101 : 170 : keys = radius_msg_get_ms_keys(msg, req, shared_secret,
1102 : : shared_secret_len);
1103 : :
1104 [ + - ][ + - ]: 170 : if (keys && keys->send && keys->recv) {
[ + - ]
1105 : 170 : size_t len = keys->send_len + keys->recv_len;
1106 : 170 : wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Send-Key",
1107 : 170 : keys->send, keys->send_len);
1108 : 170 : wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Recv-Key",
1109 : 170 : keys->recv, keys->recv_len);
1110 : :
1111 : 170 : os_free(sm->eap_if->aaaEapKeyData);
1112 : 170 : sm->eap_if->aaaEapKeyData = os_malloc(len);
1113 [ + - ]: 170 : if (sm->eap_if->aaaEapKeyData) {
1114 : 170 : os_memcpy(sm->eap_if->aaaEapKeyData, keys->recv,
1115 : : keys->recv_len);
1116 : 170 : os_memcpy(sm->eap_if->aaaEapKeyData + keys->recv_len,
1117 : : keys->send, keys->send_len);
1118 : 170 : sm->eap_if->aaaEapKeyDataLen = len;
1119 : 170 : sm->eap_if->aaaEapKeyAvailable = TRUE;
1120 : : }
1121 : : }
1122 : :
1123 [ + - ]: 170 : if (keys) {
1124 : 170 : os_free(keys->send);
1125 : 170 : os_free(keys->recv);
1126 : 170 : os_free(keys);
1127 : : }
1128 : : }
1129 : :
1130 : :
1131 : 170 : static void ieee802_1x_store_radius_class(struct hostapd_data *hapd,
1132 : : struct sta_info *sta,
1133 : : struct radius_msg *msg)
1134 : : {
1135 : : u8 *class;
1136 : : size_t class_len;
1137 : 170 : struct eapol_state_machine *sm = sta->eapol_sm;
1138 : : int count, i;
1139 : : struct radius_attr_data *nclass;
1140 : : size_t nclass_count;
1141 : :
1142 [ + + ][ + - ]: 170 : if (!hapd->conf->radius->acct_server || hapd->radius == NULL ||
[ - + ]
1143 : : sm == NULL)
1144 : 167 : return;
1145 : :
1146 : 3 : radius_free_class(&sm->radius_class);
1147 : 3 : count = radius_msg_count_attr(msg, RADIUS_ATTR_CLASS, 1);
1148 [ + - ]: 3 : if (count <= 0)
1149 : 3 : return;
1150 : :
1151 : 0 : nclass = os_calloc(count, sizeof(struct radius_attr_data));
1152 [ # # ]: 0 : if (nclass == NULL)
1153 : 0 : return;
1154 : :
1155 : 0 : nclass_count = 0;
1156 : :
1157 : 0 : class = NULL;
1158 [ # # ]: 0 : for (i = 0; i < count; i++) {
1159 : : do {
1160 [ # # ]: 0 : if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CLASS,
1161 : : &class, &class_len,
1162 : : class) < 0) {
1163 : 0 : i = count;
1164 : 0 : break;
1165 : : }
1166 [ # # ]: 0 : } while (class_len < 1);
1167 : :
1168 : 0 : nclass[nclass_count].data = os_malloc(class_len);
1169 [ # # ]: 0 : if (nclass[nclass_count].data == NULL)
1170 : 0 : break;
1171 : :
1172 : 0 : os_memcpy(nclass[nclass_count].data, class, class_len);
1173 : 0 : nclass[nclass_count].len = class_len;
1174 : 0 : nclass_count++;
1175 : : }
1176 : :
1177 : 0 : sm->radius_class.attr = nclass;
1178 : 0 : sm->radius_class.count = nclass_count;
1179 : 170 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Stored %lu RADIUS Class "
1180 : : "attributes for " MACSTR,
1181 : : (unsigned long) sm->radius_class.count,
1182 : 0 : MAC2STR(sta->addr));
1183 : : }
1184 : :
1185 : :
1186 : : /* Update sta->identity based on User-Name attribute in Access-Accept */
1187 : 170 : static void ieee802_1x_update_sta_identity(struct hostapd_data *hapd,
1188 : : struct sta_info *sta,
1189 : : struct radius_msg *msg)
1190 : : {
1191 : : u8 *buf, *identity;
1192 : : size_t len;
1193 : 170 : struct eapol_state_machine *sm = sta->eapol_sm;
1194 : :
1195 [ - + ]: 170 : if (sm == NULL)
1196 : 0 : return;
1197 : :
1198 [ + - ]: 170 : if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &buf, &len,
1199 : : NULL) < 0)
1200 : 170 : return;
1201 : :
1202 : 0 : identity = (u8 *) dup_binstr(buf, len);
1203 [ # # ]: 0 : if (identity == NULL)
1204 : 0 : return;
1205 : :
1206 [ # # ]: 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1207 : : HOSTAPD_LEVEL_DEBUG, "old identity '%s' updated with "
1208 : : "User-Name from Access-Accept '%s'",
1209 : 0 : sm->identity ? (char *) sm->identity : "N/A",
1210 : : (char *) identity);
1211 : :
1212 : 0 : os_free(sm->identity);
1213 : 0 : sm->identity = identity;
1214 : 170 : sm->identity_len = len;
1215 : : }
1216 : :
1217 : :
1218 : : /* Update CUI based on Chargeable-User-Identity attribute in Access-Accept */
1219 : 170 : static void ieee802_1x_update_sta_cui(struct hostapd_data *hapd,
1220 : : struct sta_info *sta,
1221 : : struct radius_msg *msg)
1222 : : {
1223 : 170 : struct eapol_state_machine *sm = sta->eapol_sm;
1224 : : struct wpabuf *cui;
1225 : : u8 *buf;
1226 : : size_t len;
1227 : :
1228 [ - + ]: 170 : if (sm == NULL)
1229 : 0 : return;
1230 : :
1231 [ + - ]: 170 : if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CHARGEABLE_USER_IDENTITY,
1232 : : &buf, &len, NULL) < 0)
1233 : 170 : return;
1234 : :
1235 : 0 : cui = wpabuf_alloc_copy(buf, len);
1236 [ # # ]: 0 : if (cui == NULL)
1237 : 0 : return;
1238 : :
1239 : 0 : wpabuf_free(sm->radius_cui);
1240 : 170 : sm->radius_cui = cui;
1241 : : }
1242 : :
1243 : :
1244 : : #ifdef CONFIG_HS20
1245 : :
1246 : 0 : static void ieee802_1x_hs20_sub_rem(struct sta_info *sta, u8 *pos, size_t len)
1247 : : {
1248 : 0 : sta->remediation = 1;
1249 : 0 : os_free(sta->remediation_url);
1250 [ # # ]: 0 : if (len > 2) {
1251 : 0 : sta->remediation_url = os_malloc(len);
1252 [ # # ]: 0 : if (!sta->remediation_url)
1253 : 0 : return;
1254 : 0 : sta->remediation_method = pos[0];
1255 : 0 : os_memcpy(sta->remediation_url, pos + 1, len - 1);
1256 : 0 : sta->remediation_url[len - 1] = '\0';
1257 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Subscription remediation needed "
1258 : : "for " MACSTR " - server method %u URL %s",
1259 : 0 : MAC2STR(sta->addr), sta->remediation_method,
1260 : : sta->remediation_url);
1261 : : } else {
1262 : 0 : sta->remediation_url = NULL;
1263 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Subscription remediation needed "
1264 : 0 : "for " MACSTR, MAC2STR(sta->addr));
1265 : : }
1266 : : /* TODO: assign the STA into remediation VLAN or add filtering */
1267 : : }
1268 : :
1269 : :
1270 : 0 : static void ieee802_1x_hs20_deauth_req(struct hostapd_data *hapd,
1271 : : struct sta_info *sta, u8 *pos,
1272 : : size_t len)
1273 : : {
1274 [ # # ]: 0 : if (len < 3)
1275 : 0 : return; /* Malformed information */
1276 : 0 : sta->hs20_deauth_requested = 1;
1277 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Deauthentication request - Code %u "
1278 : : "Re-auth Delay %u",
1279 : 0 : *pos, WPA_GET_LE16(pos + 1));
1280 : 0 : wpabuf_free(sta->hs20_deauth_req);
1281 : 0 : sta->hs20_deauth_req = wpabuf_alloc(len + 1);
1282 [ # # ]: 0 : if (sta->hs20_deauth_req) {
1283 : 0 : wpabuf_put_data(sta->hs20_deauth_req, pos, 3);
1284 : 0 : wpabuf_put_u8(sta->hs20_deauth_req, len - 3);
1285 : 0 : wpabuf_put_data(sta->hs20_deauth_req, pos + 3, len - 3);
1286 : : }
1287 : 0 : ap_sta_session_timeout(hapd, sta, hapd->conf->hs20_deauth_req_timeout);
1288 : : }
1289 : :
1290 : :
1291 : 0 : static void ieee802_1x_hs20_session_info(struct hostapd_data *hapd,
1292 : : struct sta_info *sta, u8 *pos,
1293 : : size_t len, int session_timeout)
1294 : : {
1295 : : unsigned int swt;
1296 : : int warning_time, beacon_int;
1297 : :
1298 [ # # ]: 0 : if (len < 1)
1299 : 0 : return; /* Malformed information */
1300 : 0 : os_free(sta->hs20_session_info_url);
1301 : 0 : sta->hs20_session_info_url = os_malloc(len);
1302 [ # # ]: 0 : if (sta->hs20_session_info_url == NULL)
1303 : 0 : return;
1304 : 0 : swt = pos[0];
1305 : 0 : os_memcpy(sta->hs20_session_info_url, pos + 1, len - 1);
1306 : 0 : sta->hs20_session_info_url[len - 1] = '\0';
1307 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Session Information URL='%s' SWT=%u "
1308 : : "(session_timeout=%d)",
1309 : : sta->hs20_session_info_url, swt, session_timeout);
1310 [ # # ]: 0 : if (session_timeout < 0) {
1311 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: No Session-Timeout set - ignore session info URL");
1312 : 0 : return;
1313 : : }
1314 [ # # ]: 0 : if (swt == 255)
1315 : 0 : swt = 1; /* Use one minute as the AP selected value */
1316 : :
1317 [ # # ]: 0 : if ((unsigned int) session_timeout < swt * 60)
1318 : 0 : warning_time = 0;
1319 : : else
1320 : 0 : warning_time = session_timeout - swt * 60;
1321 : :
1322 : 0 : beacon_int = hapd->iconf->beacon_int;
1323 [ # # ]: 0 : if (beacon_int < 1)
1324 : 0 : beacon_int = 100; /* best guess */
1325 : 0 : sta->hs20_disassoc_timer = swt * 60 * 1000 / beacon_int * 125 / 128;
1326 [ # # ]: 0 : if (sta->hs20_disassoc_timer > 65535)
1327 : 0 : sta->hs20_disassoc_timer = 65535;
1328 : :
1329 : 0 : ap_sta_session_warning_timeout(hapd, sta, warning_time);
1330 : : }
1331 : :
1332 : : #endif /* CONFIG_HS20 */
1333 : :
1334 : :
1335 : 170 : static void ieee802_1x_check_hs20(struct hostapd_data *hapd,
1336 : : struct sta_info *sta,
1337 : : struct radius_msg *msg,
1338 : : int session_timeout)
1339 : : {
1340 : : #ifdef CONFIG_HS20
1341 : : u8 *buf, *pos, *end, type, sublen;
1342 : : size_t len;
1343 : :
1344 : 170 : buf = NULL;
1345 : 170 : sta->remediation = 0;
1346 : 170 : sta->hs20_deauth_requested = 0;
1347 : :
1348 : : for (;;) {
1349 [ + + ]: 510 : if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_VENDOR_SPECIFIC,
1350 : : &buf, &len, buf) < 0)
1351 : 170 : break;
1352 [ - + ]: 340 : if (len < 6)
1353 : 0 : continue;
1354 : 340 : pos = buf;
1355 : 340 : end = buf + len;
1356 [ + - ]: 340 : if (WPA_GET_BE32(pos) != RADIUS_VENDOR_ID_WFA)
1357 : 340 : continue;
1358 : 0 : pos += 4;
1359 : :
1360 : 0 : type = *pos++;
1361 : 0 : sublen = *pos++;
1362 [ # # ]: 0 : if (sublen < 2)
1363 : 0 : continue; /* invalid length */
1364 : 0 : sublen -= 2; /* skip header */
1365 [ # # ]: 0 : if (pos + sublen > end)
1366 : 0 : continue; /* invalid WFA VSA */
1367 : :
1368 [ # # # # ]: 0 : switch (type) {
1369 : : case RADIUS_VENDOR_ATTR_WFA_HS20_SUBSCR_REMEDIATION:
1370 : 0 : ieee802_1x_hs20_sub_rem(sta, pos, sublen);
1371 : 0 : break;
1372 : : case RADIUS_VENDOR_ATTR_WFA_HS20_DEAUTH_REQ:
1373 : 0 : ieee802_1x_hs20_deauth_req(hapd, sta, pos, sublen);
1374 : 0 : break;
1375 : : case RADIUS_VENDOR_ATTR_WFA_HS20_SESSION_INFO_URL:
1376 : 0 : ieee802_1x_hs20_session_info(hapd, sta, pos, sublen,
1377 : : session_timeout);
1378 : 0 : break;
1379 : : }
1380 : 340 : }
1381 : : #endif /* CONFIG_HS20 */
1382 : 170 : }
1383 : :
1384 : :
1385 : : struct sta_id_search {
1386 : : u8 identifier;
1387 : : struct eapol_state_machine *sm;
1388 : : };
1389 : :
1390 : :
1391 : 1049 : static int ieee802_1x_select_radius_identifier(struct hostapd_data *hapd,
1392 : : struct sta_info *sta,
1393 : : void *ctx)
1394 : : {
1395 : 1049 : struct sta_id_search *id_search = ctx;
1396 : 1049 : struct eapol_state_machine *sm = sta->eapol_sm;
1397 : :
1398 [ + - ][ + - ]: 1049 : if (sm && sm->radius_identifier >= 0 &&
[ + - ]
1399 : 1049 : sm->radius_identifier == id_search->identifier) {
1400 : 1049 : id_search->sm = sm;
1401 : 1049 : return 1;
1402 : : }
1403 : 1049 : return 0;
1404 : : }
1405 : :
1406 : :
1407 : : static struct eapol_state_machine *
1408 : 1049 : ieee802_1x_search_radius_identifier(struct hostapd_data *hapd, u8 identifier)
1409 : : {
1410 : : struct sta_id_search id_search;
1411 : 1049 : id_search.identifier = identifier;
1412 : 1049 : id_search.sm = NULL;
1413 : 1049 : ap_for_each_sta(hapd, ieee802_1x_select_radius_identifier, &id_search);
1414 : 1049 : return id_search.sm;
1415 : : }
1416 : :
1417 : :
1418 : : /**
1419 : : * ieee802_1x_receive_auth - Process RADIUS frames from Authentication Server
1420 : : * @msg: RADIUS response message
1421 : : * @req: RADIUS request message
1422 : : * @shared_secret: RADIUS shared secret
1423 : : * @shared_secret_len: Length of shared_secret in octets
1424 : : * @data: Context data (struct hostapd_data *)
1425 : : * Returns: Processing status
1426 : : */
1427 : : static RadiusRxResult
1428 : 1049 : ieee802_1x_receive_auth(struct radius_msg *msg, struct radius_msg *req,
1429 : : const u8 *shared_secret, size_t shared_secret_len,
1430 : : void *data)
1431 : : {
1432 : 1049 : struct hostapd_data *hapd = data;
1433 : : struct sta_info *sta;
1434 : 1049 : u32 session_timeout = 0, termination_action, acct_interim_interval;
1435 : 1049 : int session_timeout_set, old_vlanid = 0;
1436 : : struct eapol_state_machine *sm;
1437 : 1049 : int override_eapReq = 0;
1438 : 1049 : struct radius_hdr *hdr = radius_msg_get_hdr(msg);
1439 : :
1440 : 1049 : sm = ieee802_1x_search_radius_identifier(hapd, hdr->identifier);
1441 [ - + ]: 1049 : if (sm == NULL) {
1442 : 0 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: Could not find matching "
1443 : : "station for this RADIUS message");
1444 : 0 : return RADIUS_RX_UNKNOWN;
1445 : : }
1446 : 1049 : sta = sm->sta;
1447 : :
1448 : : /* RFC 2869, Ch. 5.13: valid Message-Authenticator attribute MUST be
1449 : : * present when packet contains an EAP-Message attribute */
1450 [ + + - + ]: 1070 : if (hdr->code == RADIUS_CODE_ACCESS_REJECT &&
1451 : 21 : radius_msg_get_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR, NULL,
1452 [ # # ]: 0 : 0) < 0 &&
1453 : 0 : radius_msg_get_attr(msg, RADIUS_ATTR_EAP_MESSAGE, NULL, 0) < 0) {
1454 : 0 : wpa_printf(MSG_DEBUG, "Allowing RADIUS Access-Reject without "
1455 : : "Message-Authenticator since it does not include "
1456 : : "EAP-Message");
1457 [ - + ]: 1049 : } else if (radius_msg_verify(msg, shared_secret, shared_secret_len,
1458 : : req, 1)) {
1459 : 0 : wpa_printf(MSG_INFO, "Incoming RADIUS packet did not have correct Message-Authenticator - dropped");
1460 : 0 : return RADIUS_RX_INVALID_AUTHENTICATOR;
1461 : : }
1462 : :
1463 [ + + ][ + + ]: 1049 : if (hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
1464 [ - + ]: 858 : hdr->code != RADIUS_CODE_ACCESS_REJECT &&
1465 : 858 : hdr->code != RADIUS_CODE_ACCESS_CHALLENGE) {
1466 : 0 : wpa_printf(MSG_INFO, "Unknown RADIUS message code");
1467 : 0 : return RADIUS_RX_UNKNOWN;
1468 : : }
1469 : :
1470 : 1049 : sm->radius_identifier = -1;
1471 : 1049 : wpa_printf(MSG_DEBUG, "RADIUS packet matching with station " MACSTR,
1472 : 6294 : MAC2STR(sta->addr));
1473 : :
1474 : 1049 : radius_msg_free(sm->last_recv_radius);
1475 : 1049 : sm->last_recv_radius = msg;
1476 : :
1477 : 1049 : session_timeout_set =
1478 : 1049 : !radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
1479 : : &session_timeout);
1480 [ + - ]: 1049 : if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_TERMINATION_ACTION,
1481 : : &termination_action))
1482 : 1049 : termination_action = RADIUS_TERMINATION_ACTION_DEFAULT;
1483 : :
1484 [ + - ][ + + ]: 1049 : if (hapd->conf->acct_interim_interval == 0 &&
1485 [ - + ]: 170 : hdr->code == RADIUS_CODE_ACCESS_ACCEPT &&
1486 : 170 : radius_msg_get_attr_int32(msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
1487 : : &acct_interim_interval) == 0) {
1488 [ # # ]: 0 : if (acct_interim_interval < 60) {
1489 : 0 : hostapd_logger(hapd, sta->addr,
1490 : : HOSTAPD_MODULE_IEEE8021X,
1491 : : HOSTAPD_LEVEL_INFO,
1492 : : "ignored too small "
1493 : : "Acct-Interim-Interval %d",
1494 : : acct_interim_interval);
1495 : : } else
1496 : 0 : sta->acct_interim_interval = acct_interim_interval;
1497 : : }
1498 : :
1499 : :
1500 [ + + + - ]: 1049 : switch (hdr->code) {
1501 : : case RADIUS_CODE_ACCESS_ACCEPT:
1502 [ + - ]: 170 : if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
1503 : 170 : sta->vlan_id = 0;
1504 : : #ifndef CONFIG_NO_VLAN
1505 : : else {
1506 : 0 : old_vlanid = sta->vlan_id;
1507 : 0 : sta->vlan_id = radius_msg_get_vlanid(msg);
1508 : : }
1509 [ - + # # ]: 170 : if (sta->vlan_id > 0 &&
1510 : 0 : hostapd_vlan_id_valid(hapd->conf->vlan, sta->vlan_id)) {
1511 : 0 : hostapd_logger(hapd, sta->addr,
1512 : : HOSTAPD_MODULE_RADIUS,
1513 : : HOSTAPD_LEVEL_INFO,
1514 : : "VLAN ID %d", sta->vlan_id);
1515 [ - + ]: 170 : } else if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_REQUIRED) {
1516 : 0 : sta->eapol_sm->authFail = TRUE;
1517 : 0 : hostapd_logger(hapd, sta->addr,
1518 : : HOSTAPD_MODULE_IEEE8021X,
1519 : : HOSTAPD_LEVEL_INFO, "authentication "
1520 : : "server did not include required VLAN "
1521 : : "ID in Access-Accept");
1522 : 0 : break;
1523 : : }
1524 : : #endif /* CONFIG_NO_VLAN */
1525 : :
1526 [ - + ]: 170 : if (ap_sta_bind_vlan(hapd, sta, old_vlanid) < 0)
1527 : 0 : break;
1528 : :
1529 : : /* RFC 3580, Ch. 3.17 */
1530 [ - + ][ # # ]: 170 : if (session_timeout_set && termination_action ==
1531 : : RADIUS_TERMINATION_ACTION_RADIUS_REQUEST) {
1532 : 0 : sm->reAuthPeriod = session_timeout;
1533 [ - + ]: 170 : } else if (session_timeout_set)
1534 : 0 : ap_sta_session_timeout(hapd, sta, session_timeout);
1535 : :
1536 : 170 : sm->eap_if->aaaSuccess = TRUE;
1537 : 170 : override_eapReq = 1;
1538 : 170 : ieee802_1x_get_keys(hapd, sta, msg, req, shared_secret,
1539 : : shared_secret_len);
1540 : 170 : ieee802_1x_store_radius_class(hapd, sta, msg);
1541 : 170 : ieee802_1x_update_sta_identity(hapd, sta, msg);
1542 : 170 : ieee802_1x_update_sta_cui(hapd, sta, msg);
1543 [ - + ]: 170 : ieee802_1x_check_hs20(hapd, sta, msg,
1544 : : session_timeout_set ?
1545 : 0 : (int) session_timeout : -1);
1546 [ # # ][ # # ]: 170 : if (sm->eap_if->eapKeyAvailable && !sta->remediation &&
[ - + ]
1547 [ # # ]: 0 : !sta->hs20_deauth_requested &&
1548 [ # # ]: 0 : wpa_auth_pmksa_add(sta->wpa_sm, sm->eapol_key_crypt,
1549 : : session_timeout_set ?
1550 : 0 : (int) session_timeout : -1, sm) == 0) {
1551 : 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
1552 : : HOSTAPD_LEVEL_DEBUG,
1553 : : "Added PMKSA cache entry");
1554 : : }
1555 : 170 : break;
1556 : : case RADIUS_CODE_ACCESS_REJECT:
1557 : 21 : sm->eap_if->aaaFail = TRUE;
1558 : 21 : override_eapReq = 1;
1559 : 21 : break;
1560 : : case RADIUS_CODE_ACCESS_CHALLENGE:
1561 : 858 : sm->eap_if->aaaEapReq = TRUE;
1562 [ - + ]: 858 : if (session_timeout_set) {
1563 : : /* RFC 2869, Ch. 2.3.2; RFC 3580, Ch. 3.17 */
1564 : 0 : sm->eap_if->aaaMethodTimeout = session_timeout;
1565 : 0 : hostapd_logger(hapd, sm->addr,
1566 : : HOSTAPD_MODULE_IEEE8021X,
1567 : : HOSTAPD_LEVEL_DEBUG,
1568 : : "using EAP timeout of %d seconds (from "
1569 : : "RADIUS)",
1570 : 0 : sm->eap_if->aaaMethodTimeout);
1571 : : } else {
1572 : : /*
1573 : : * Use dynamic retransmission behavior per EAP
1574 : : * specification.
1575 : : */
1576 : 858 : sm->eap_if->aaaMethodTimeout = 0;
1577 : : }
1578 : 858 : break;
1579 : : }
1580 : :
1581 : 1049 : ieee802_1x_decapsulate_radius(hapd, sta);
1582 [ + + ]: 1049 : if (override_eapReq)
1583 : 191 : sm->eap_if->aaaEapReq = FALSE;
1584 : :
1585 : 1049 : eapol_auth_step(sm);
1586 : :
1587 : 1049 : return RADIUS_RX_QUEUED;
1588 : : }
1589 : : #endif /* CONFIG_NO_RADIUS */
1590 : :
1591 : :
1592 : 329 : void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta)
1593 : : {
1594 : 329 : struct eapol_state_machine *sm = sta->eapol_sm;
1595 [ + + ]: 329 : if (sm == NULL)
1596 : 329 : return;
1597 : :
1598 : 1 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1599 : : HOSTAPD_LEVEL_DEBUG, "aborting authentication");
1600 : :
1601 : : #ifndef CONFIG_NO_RADIUS
1602 : 1 : radius_msg_free(sm->last_recv_radius);
1603 : 1 : sm->last_recv_radius = NULL;
1604 : : #endif /* CONFIG_NO_RADIUS */
1605 : :
1606 [ - + ]: 1 : if (sm->eap_if->eapTimeout) {
1607 : : /*
1608 : : * Disconnect the STA since it did not reply to the last EAP
1609 : : * request and we cannot continue EAP processing (EAP-Failure
1610 : : * could only be sent if the EAP peer actually replied).
1611 : : */
1612 : 0 : wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "EAP Timeout, STA " MACSTR,
1613 : : MAC2STR(sta->addr));
1614 : :
1615 : 0 : sm->eap_if->portEnabled = FALSE;
1616 : 0 : ap_sta_disconnect(hapd, sta, sta->addr,
1617 : : WLAN_REASON_PREV_AUTH_NOT_VALID);
1618 : : }
1619 : : }
1620 : :
1621 : :
1622 : 2 : static int ieee802_1x_rekey_broadcast(struct hostapd_data *hapd)
1623 : : {
1624 : 2 : struct eapol_authenticator *eapol = hapd->eapol_auth;
1625 : :
1626 [ - + ]: 2 : if (hapd->conf->default_wep_key_len < 1)
1627 : 0 : return 0;
1628 : :
1629 : 2 : os_free(eapol->default_wep_key);
1630 : 2 : eapol->default_wep_key = os_malloc(hapd->conf->default_wep_key_len);
1631 [ + - - + ]: 4 : if (eapol->default_wep_key == NULL ||
1632 : 2 : random_get_bytes(eapol->default_wep_key,
1633 : : hapd->conf->default_wep_key_len)) {
1634 : 0 : wpa_printf(MSG_INFO, "Could not generate random WEP key");
1635 : 0 : os_free(eapol->default_wep_key);
1636 : 0 : eapol->default_wep_key = NULL;
1637 : 0 : return -1;
1638 : : }
1639 : :
1640 : 2 : wpa_hexdump_key(MSG_DEBUG, "IEEE 802.1X: New default WEP key",
1641 : 2 : eapol->default_wep_key,
1642 : 2 : hapd->conf->default_wep_key_len);
1643 : :
1644 : 2 : return 0;
1645 : : }
1646 : :
1647 : :
1648 : 0 : static int ieee802_1x_sta_key_available(struct hostapd_data *hapd,
1649 : : struct sta_info *sta, void *ctx)
1650 : : {
1651 [ # # ]: 0 : if (sta->eapol_sm) {
1652 : 0 : sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
1653 : 0 : eapol_auth_step(sta->eapol_sm);
1654 : : }
1655 : 0 : return 0;
1656 : : }
1657 : :
1658 : :
1659 : 2 : static void ieee802_1x_rekey(void *eloop_ctx, void *timeout_ctx)
1660 : : {
1661 : 2 : struct hostapd_data *hapd = eloop_ctx;
1662 : 2 : struct eapol_authenticator *eapol = hapd->eapol_auth;
1663 : :
1664 [ - + ]: 2 : if (eapol->default_wep_key_idx >= 3)
1665 : 0 : eapol->default_wep_key_idx =
1666 : 0 : hapd->conf->individual_wep_key_len > 0 ? 1 : 0;
1667 : : else
1668 : 2 : eapol->default_wep_key_idx++;
1669 : :
1670 : 2 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: New default WEP key index %d",
1671 : 2 : eapol->default_wep_key_idx);
1672 : :
1673 [ - + ]: 2 : if (ieee802_1x_rekey_broadcast(hapd)) {
1674 : 0 : hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
1675 : : HOSTAPD_LEVEL_WARNING, "failed to generate a "
1676 : : "new broadcast key");
1677 : 0 : os_free(eapol->default_wep_key);
1678 : 0 : eapol->default_wep_key = NULL;
1679 : 0 : return;
1680 : : }
1681 : :
1682 : : /* TODO: Could setup key for RX here, but change default TX keyid only
1683 : : * after new broadcast key has been sent to all stations. */
1684 [ - + ]: 2 : if (hostapd_drv_set_key(hapd->conf->iface, hapd, WPA_ALG_WEP,
1685 : : broadcast_ether_addr,
1686 : 2 : eapol->default_wep_key_idx, 1, NULL, 0,
1687 : 2 : eapol->default_wep_key,
1688 : 2 : hapd->conf->default_wep_key_len)) {
1689 : 0 : hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
1690 : : HOSTAPD_LEVEL_WARNING, "failed to configure a "
1691 : : "new broadcast key");
1692 : 0 : os_free(eapol->default_wep_key);
1693 : 0 : eapol->default_wep_key = NULL;
1694 : 0 : return;
1695 : : }
1696 : :
1697 : 2 : ap_for_each_sta(hapd, ieee802_1x_sta_key_available, NULL);
1698 : :
1699 [ + - ]: 2 : if (hapd->conf->wep_rekeying_period > 0) {
1700 : 2 : eloop_register_timeout(hapd->conf->wep_rekeying_period, 0,
1701 : : ieee802_1x_rekey, hapd, NULL);
1702 : : }
1703 : : }
1704 : :
1705 : :
1706 : 2259 : static void ieee802_1x_eapol_send(void *ctx, void *sta_ctx, u8 type,
1707 : : const u8 *data, size_t datalen)
1708 : : {
1709 : : #ifdef CONFIG_WPS
1710 : 2259 : struct sta_info *sta = sta_ctx;
1711 : :
1712 [ - + ]: 2259 : if ((sta->flags & (WLAN_STA_WPS | WLAN_STA_MAYBE_WPS)) ==
1713 : : WLAN_STA_MAYBE_WPS) {
1714 : : const u8 *identity;
1715 : : size_t identity_len;
1716 : 0 : struct eapol_state_machine *sm = sta->eapol_sm;
1717 : :
1718 : 0 : identity = eap_get_identity(sm->eap, &identity_len);
1719 [ # # ][ # # ]: 0 : if (identity &&
1720 [ # # ]: 0 : ((identity_len == WSC_ID_ENROLLEE_LEN &&
1721 : 0 : os_memcmp(identity, WSC_ID_ENROLLEE,
1722 [ # # ]: 0 : WSC_ID_ENROLLEE_LEN) == 0) ||
1723 [ # # ]: 0 : (identity_len == WSC_ID_REGISTRAR_LEN &&
1724 : 0 : os_memcmp(identity, WSC_ID_REGISTRAR,
1725 : : WSC_ID_REGISTRAR_LEN) == 0))) {
1726 : 0 : wpa_printf(MSG_DEBUG, "WPS: WLAN_STA_MAYBE_WPS -> "
1727 : : "WLAN_STA_WPS");
1728 : 0 : sta->flags |= WLAN_STA_WPS;
1729 : : }
1730 : : }
1731 : : #endif /* CONFIG_WPS */
1732 : :
1733 : 2259 : ieee802_1x_send(ctx, sta_ctx, type, data, datalen);
1734 : 2259 : }
1735 : :
1736 : :
1737 : 1050 : static void ieee802_1x_aaa_send(void *ctx, void *sta_ctx,
1738 : : const u8 *data, size_t datalen)
1739 : : {
1740 : : #ifndef CONFIG_NO_RADIUS
1741 : 1050 : struct hostapd_data *hapd = ctx;
1742 : 1050 : struct sta_info *sta = sta_ctx;
1743 : :
1744 : 1050 : ieee802_1x_encapsulate_radius(hapd, sta, data, datalen);
1745 : : #endif /* CONFIG_NO_RADIUS */
1746 : 1050 : }
1747 : :
1748 : :
1749 : 354 : static void _ieee802_1x_finished(void *ctx, void *sta_ctx, int success,
1750 : : int preauth, int remediation)
1751 : : {
1752 : 354 : struct hostapd_data *hapd = ctx;
1753 : 354 : struct sta_info *sta = sta_ctx;
1754 [ - + ]: 354 : if (preauth)
1755 : 0 : rsn_preauth_finished(hapd, sta, success);
1756 : : else
1757 : 354 : ieee802_1x_finished(hapd, sta, success, remediation);
1758 : 354 : }
1759 : :
1760 : :
1761 : 159 : static int ieee802_1x_get_eap_user(void *ctx, const u8 *identity,
1762 : : size_t identity_len, int phase2,
1763 : : struct eap_user *user)
1764 : : {
1765 : 159 : struct hostapd_data *hapd = ctx;
1766 : : const struct hostapd_eap_user *eap_user;
1767 : : int i;
1768 : :
1769 : 159 : eap_user = hostapd_get_eap_user(hapd, identity, identity_len, phase2);
1770 [ - + ]: 159 : if (eap_user == NULL)
1771 : 0 : return -1;
1772 : :
1773 : 159 : os_memset(user, 0, sizeof(*user));
1774 : 159 : user->phase2 = phase2;
1775 [ + + ]: 1431 : for (i = 0; i < EAP_MAX_METHODS; i++) {
1776 : 1272 : user->methods[i].vendor = eap_user->methods[i].vendor;
1777 : 1272 : user->methods[i].method = eap_user->methods[i].method;
1778 : : }
1779 : :
1780 [ + + ]: 159 : if (eap_user->password) {
1781 : 31 : user->password = os_malloc(eap_user->password_len);
1782 [ - + ]: 31 : if (user->password == NULL)
1783 : 0 : return -1;
1784 : 31 : os_memcpy(user->password, eap_user->password,
1785 : : eap_user->password_len);
1786 : 31 : user->password_len = eap_user->password_len;
1787 : 31 : user->password_hash = eap_user->password_hash;
1788 : : }
1789 : 159 : user->force_version = eap_user->force_version;
1790 : 159 : user->ttls_auth = eap_user->ttls_auth;
1791 : 159 : user->remediation = eap_user->remediation;
1792 : :
1793 : 159 : return 0;
1794 : : }
1795 : :
1796 : :
1797 : 83945 : static int ieee802_1x_sta_entry_alive(void *ctx, const u8 *addr)
1798 : : {
1799 : 83945 : struct hostapd_data *hapd = ctx;
1800 : : struct sta_info *sta;
1801 : 83945 : sta = ap_get_sta(hapd, addr);
1802 [ + + ][ + - ]: 83945 : if (sta == NULL || sta->eapol_sm == NULL)
1803 : 1312 : return 0;
1804 : 83945 : return 1;
1805 : : }
1806 : :
1807 : :
1808 : 2760 : static void ieee802_1x_logger(void *ctx, const u8 *addr,
1809 : : eapol_logger_level level, const char *txt)
1810 : : {
1811 : : #ifndef CONFIG_NO_HOSTAPD_LOGGER
1812 : 2760 : struct hostapd_data *hapd = ctx;
1813 : : int hlevel;
1814 : :
1815 [ + + + ]: 2760 : switch (level) {
1816 : : case EAPOL_LOGGER_WARNING:
1817 : 169 : hlevel = HOSTAPD_LEVEL_WARNING;
1818 : 169 : break;
1819 : : case EAPOL_LOGGER_INFO:
1820 : 332 : hlevel = HOSTAPD_LEVEL_INFO;
1821 : 332 : break;
1822 : : case EAPOL_LOGGER_DEBUG:
1823 : : default:
1824 : 2259 : hlevel = HOSTAPD_LEVEL_DEBUG;
1825 : 2259 : break;
1826 : : }
1827 : :
1828 : 2760 : hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE8021X, hlevel, "%s",
1829 : : txt);
1830 : : #endif /* CONFIG_NO_HOSTAPD_LOGGER */
1831 : 2760 : }
1832 : :
1833 : :
1834 : 679 : static void ieee802_1x_set_port_authorized(void *ctx, void *sta_ctx,
1835 : : int authorized)
1836 : : {
1837 : 679 : struct hostapd_data *hapd = ctx;
1838 : 679 : struct sta_info *sta = sta_ctx;
1839 : 679 : ieee802_1x_set_sta_authorized(hapd, sta, authorized);
1840 : 679 : }
1841 : :
1842 : :
1843 : 329 : static void _ieee802_1x_abort_auth(void *ctx, void *sta_ctx)
1844 : : {
1845 : 329 : struct hostapd_data *hapd = ctx;
1846 : 329 : struct sta_info *sta = sta_ctx;
1847 : 329 : ieee802_1x_abort_auth(hapd, sta);
1848 : 329 : }
1849 : :
1850 : :
1851 : 2 : static void _ieee802_1x_tx_key(void *ctx, void *sta_ctx)
1852 : : {
1853 : 2 : struct hostapd_data *hapd = ctx;
1854 : 2 : struct sta_info *sta = sta_ctx;
1855 : 2 : ieee802_1x_tx_key(hapd, sta);
1856 : 2 : }
1857 : :
1858 : :
1859 : 4602 : static void ieee802_1x_eapol_event(void *ctx, void *sta_ctx,
1860 : : enum eapol_event type)
1861 : : {
1862 : : /* struct hostapd_data *hapd = ctx; */
1863 : 4602 : struct sta_info *sta = sta_ctx;
1864 [ + - - ]: 4602 : switch (type) {
1865 : : case EAPOL_AUTH_SM_CHANGE:
1866 : 4602 : wpa_auth_sm_notify(sta->wpa_sm);
1867 : 4602 : break;
1868 : : case EAPOL_AUTH_REAUTHENTICATE:
1869 : 0 : wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
1870 : 0 : break;
1871 : : }
1872 : 4602 : }
1873 : :
1874 : :
1875 : 429 : int ieee802_1x_init(struct hostapd_data *hapd)
1876 : : {
1877 : : int i;
1878 : : struct eapol_auth_config conf;
1879 : : struct eapol_auth_cb cb;
1880 : :
1881 : 429 : os_memset(&conf, 0, sizeof(conf));
1882 : 429 : conf.ctx = hapd;
1883 : 429 : conf.eap_reauth_period = hapd->conf->eap_reauth_period;
1884 : 429 : conf.wpa = hapd->conf->wpa;
1885 : 429 : conf.individual_wep_key_len = hapd->conf->individual_wep_key_len;
1886 : 429 : conf.eap_server = hapd->conf->eap_server;
1887 : 429 : conf.ssl_ctx = hapd->ssl_ctx;
1888 : 429 : conf.msg_ctx = hapd->msg_ctx;
1889 : 429 : conf.eap_sim_db_priv = hapd->eap_sim_db_priv;
1890 : 429 : conf.eap_req_id_text = hapd->conf->eap_req_id_text;
1891 : 429 : conf.eap_req_id_text_len = hapd->conf->eap_req_id_text_len;
1892 : 429 : conf.pac_opaque_encr_key = hapd->conf->pac_opaque_encr_key;
1893 : 429 : conf.eap_fast_a_id = hapd->conf->eap_fast_a_id;
1894 : 429 : conf.eap_fast_a_id_len = hapd->conf->eap_fast_a_id_len;
1895 : 429 : conf.eap_fast_a_id_info = hapd->conf->eap_fast_a_id_info;
1896 : 429 : conf.eap_fast_prov = hapd->conf->eap_fast_prov;
1897 : 429 : conf.pac_key_lifetime = hapd->conf->pac_key_lifetime;
1898 : 429 : conf.pac_key_refresh_time = hapd->conf->pac_key_refresh_time;
1899 : 429 : conf.eap_sim_aka_result_ind = hapd->conf->eap_sim_aka_result_ind;
1900 : 429 : conf.tnc = hapd->conf->tnc;
1901 : 429 : conf.wps = hapd->wps;
1902 : 429 : conf.fragment_size = hapd->conf->fragment_size;
1903 : 429 : conf.pwd_group = hapd->conf->pwd_group;
1904 : 429 : conf.pbc_in_m1 = hapd->conf->pbc_in_m1;
1905 [ + + ]: 429 : if (hapd->conf->server_id) {
1906 : 1 : conf.server_id = (const u8 *) hapd->conf->server_id;
1907 : 1 : conf.server_id_len = os_strlen(hapd->conf->server_id);
1908 : : } else {
1909 : 428 : conf.server_id = (const u8 *) "hostapd";
1910 : 428 : conf.server_id_len = 7;
1911 : : }
1912 : :
1913 : 429 : os_memset(&cb, 0, sizeof(cb));
1914 : 429 : cb.eapol_send = ieee802_1x_eapol_send;
1915 : 429 : cb.aaa_send = ieee802_1x_aaa_send;
1916 : 429 : cb.finished = _ieee802_1x_finished;
1917 : 429 : cb.get_eap_user = ieee802_1x_get_eap_user;
1918 : 429 : cb.sta_entry_alive = ieee802_1x_sta_entry_alive;
1919 : 429 : cb.logger = ieee802_1x_logger;
1920 : 429 : cb.set_port_authorized = ieee802_1x_set_port_authorized;
1921 : 429 : cb.abort_auth = _ieee802_1x_abort_auth;
1922 : 429 : cb.tx_key = _ieee802_1x_tx_key;
1923 : 429 : cb.eapol_event = ieee802_1x_eapol_event;
1924 : :
1925 : 429 : hapd->eapol_auth = eapol_auth_init(&conf, &cb);
1926 [ - + ]: 429 : if (hapd->eapol_auth == NULL)
1927 : 0 : return -1;
1928 : :
1929 [ + + ]: 766 : if ((hapd->conf->ieee802_1x || hapd->conf->wpa) &&
[ + + - + ]
1930 : 337 : hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 1))
1931 : 0 : return -1;
1932 : :
1933 : : #ifndef CONFIG_NO_RADIUS
1934 [ - + ]: 343 : if (radius_client_register(hapd->radius, RADIUS_AUTH,
1935 : : ieee802_1x_receive_auth, hapd))
1936 : 0 : return -1;
1937 : : #endif /* CONFIG_NO_RADIUS */
1938 : :
1939 [ + + ]: 429 : if (hapd->conf->default_wep_key_len) {
1940 [ + + ]: 10 : for (i = 0; i < 4; i++)
1941 : 8 : hostapd_drv_set_key(hapd->conf->iface, hapd,
1942 : : WPA_ALG_NONE, NULL, i, 0, NULL, 0,
1943 : : NULL, 0);
1944 : :
1945 : 2 : ieee802_1x_rekey(hapd, NULL);
1946 : :
1947 [ - + ]: 2 : if (hapd->eapol_auth->default_wep_key == NULL)
1948 : 0 : return -1;
1949 : : }
1950 : :
1951 : 429 : return 0;
1952 : : }
1953 : :
1954 : :
1955 : 429 : void ieee802_1x_deinit(struct hostapd_data *hapd)
1956 : : {
1957 : 429 : eloop_cancel_timeout(ieee802_1x_rekey, hapd, NULL);
1958 : :
1959 [ + + ][ + - ]: 429 : if (hapd->driver != NULL &&
1960 [ + + ]: 270 : (hapd->conf->ieee802_1x || hapd->conf->wpa))
1961 : 350 : hostapd_set_drv_ieee8021x(hapd, hapd->conf->iface, 0);
1962 : :
1963 : 429 : eapol_auth_deinit(hapd->eapol_auth);
1964 : 429 : hapd->eapol_auth = NULL;
1965 : 429 : }
1966 : :
1967 : :
1968 : 698 : int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
1969 : : const u8 *buf, size_t len, int ack)
1970 : : {
1971 : : struct ieee80211_hdr *hdr;
1972 : : u8 *pos;
1973 : 698 : const unsigned char rfc1042_hdr[ETH_ALEN] =
1974 : : { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1975 : :
1976 [ - + ]: 698 : if (sta == NULL)
1977 : 0 : return -1;
1978 [ + + ]: 698 : if (len < sizeof(*hdr) + sizeof(rfc1042_hdr) + 2)
1979 : 169 : return 0;
1980 : :
1981 : 529 : hdr = (struct ieee80211_hdr *) buf;
1982 : 529 : pos = (u8 *) (hdr + 1);
1983 [ + - ]: 529 : if (os_memcmp(pos, rfc1042_hdr, sizeof(rfc1042_hdr)) != 0)
1984 : 529 : return 0;
1985 : 0 : pos += sizeof(rfc1042_hdr);
1986 [ # # ]: 0 : if (WPA_GET_BE16(pos) != ETH_P_PAE)
1987 : 0 : return 0;
1988 : 0 : pos += 2;
1989 : :
1990 : 698 : return ieee802_1x_eapol_tx_status(hapd, sta, pos, buf + len - pos,
1991 : : ack);
1992 : : }
1993 : :
1994 : :
1995 : 2240 : int ieee802_1x_eapol_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
1996 : : const u8 *buf, int len, int ack)
1997 : : {
1998 : 2240 : const struct ieee802_1x_hdr *xhdr =
1999 : : (const struct ieee802_1x_hdr *) buf;
2000 : 2240 : const u8 *pos = buf + sizeof(*xhdr);
2001 : : struct ieee802_1x_eapol_key *key;
2002 : :
2003 [ - + ]: 2240 : if (len < (int) sizeof(*xhdr))
2004 : 0 : return 0;
2005 : 2240 : wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR " TX status - version=%d "
2006 : : "type=%d length=%d - ack=%d",
2007 : 17920 : MAC2STR(sta->addr), xhdr->version, xhdr->type,
2008 : 2240 : be_to_host16(xhdr->length), ack);
2009 : :
2010 [ + + ]: 2240 : if (xhdr->type != IEEE802_1X_TYPE_EAPOL_KEY)
2011 : 1600 : return 0;
2012 : :
2013 [ + + ]: 640 : if (pos + sizeof(struct wpa_eapol_key) <= buf + len) {
2014 : : const struct wpa_eapol_key *wpa;
2015 : 636 : wpa = (const struct wpa_eapol_key *) pos;
2016 [ + + ][ + - ]: 636 : if (wpa->type == EAPOL_KEY_TYPE_RSN ||
2017 : 24 : wpa->type == EAPOL_KEY_TYPE_WPA)
2018 : 636 : wpa_auth_eapol_key_tx_status(hapd->wpa_auth,
2019 : : sta->wpa_sm, ack);
2020 : : }
2021 : :
2022 : : /* EAPOL EAP-Packet packets are eventually re-sent by either Supplicant
2023 : : * or Authenticator state machines, but EAPOL-Key packets are not
2024 : : * retransmitted in case of failure. Try to re-send failed EAPOL-Key
2025 : : * packets couple of times because otherwise STA keys become
2026 : : * unsynchronized with AP. */
2027 [ - + ][ # # ]: 640 : if (!ack && pos + sizeof(*key) <= buf + len) {
2028 : 0 : key = (struct ieee802_1x_eapol_key *) pos;
2029 [ # # ]: 0 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
2030 : : HOSTAPD_LEVEL_DEBUG, "did not Ack EAPOL-Key "
2031 : : "frame (%scast index=%d)",
2032 : 0 : key->key_index & BIT(7) ? "uni" : "broad",
2033 : 0 : key->key_index & ~BIT(7));
2034 : : /* TODO: re-send EAPOL-Key couple of times (with short delay
2035 : : * between them?). If all attempt fail, report error and
2036 : : * deauthenticate STA so that it will get new keys when
2037 : : * authenticating again (e.g., after returning in range).
2038 : : * Separate limit/transmit state needed both for unicast and
2039 : : * broadcast keys(?) */
2040 : : }
2041 : : /* TODO: could move unicast key configuration from ieee802_1x_tx_key()
2042 : : * to here and change the key only if the EAPOL-Key packet was Acked.
2043 : : */
2044 : :
2045 : 2240 : return 1;
2046 : : }
2047 : :
2048 : :
2049 : 8 : u8 * ieee802_1x_get_identity(struct eapol_state_machine *sm, size_t *len)
2050 : : {
2051 [ + - ][ - + ]: 8 : if (sm == NULL || sm->identity == NULL)
2052 : 0 : return NULL;
2053 : :
2054 : 8 : *len = sm->identity_len;
2055 : 8 : return sm->identity;
2056 : : }
2057 : :
2058 : :
2059 : 6 : u8 * ieee802_1x_get_radius_class(struct eapol_state_machine *sm, size_t *len,
2060 : : int idx)
2061 : : {
2062 [ + - ][ - + ]: 6 : if (sm == NULL || sm->radius_class.attr == NULL ||
[ # # ]
2063 : 0 : idx >= (int) sm->radius_class.count)
2064 : 6 : return NULL;
2065 : :
2066 : 0 : *len = sm->radius_class.attr[idx].len;
2067 : 6 : return sm->radius_class.attr[idx].data;
2068 : : }
2069 : :
2070 : :
2071 : 6 : struct wpabuf * ieee802_1x_get_radius_cui(struct eapol_state_machine *sm)
2072 : : {
2073 [ - + ]: 6 : if (sm == NULL)
2074 : 0 : return NULL;
2075 : 6 : return sm->radius_cui;
2076 : : }
2077 : :
2078 : :
2079 : 529 : const u8 * ieee802_1x_get_key(struct eapol_state_machine *sm, size_t *len)
2080 : : {
2081 : 529 : *len = 0;
2082 [ - + ]: 529 : if (sm == NULL)
2083 : 0 : return NULL;
2084 : :
2085 : 529 : *len = sm->eap_if->eapKeyDataLen;
2086 : 529 : return sm->eap_if->eapKeyData;
2087 : : }
2088 : :
2089 : :
2090 : 2569 : void ieee802_1x_notify_port_enabled(struct eapol_state_machine *sm,
2091 : : int enabled)
2092 : : {
2093 [ + + ]: 2569 : if (sm == NULL)
2094 : 2569 : return;
2095 : 1323 : sm->eap_if->portEnabled = enabled ? TRUE : FALSE;
2096 : 1323 : eapol_auth_step(sm);
2097 : : }
2098 : :
2099 : :
2100 : 1140 : void ieee802_1x_notify_port_valid(struct eapol_state_machine *sm,
2101 : : int valid)
2102 : : {
2103 [ + + ]: 1140 : if (sm == NULL)
2104 : 1140 : return;
2105 : 526 : sm->portValid = valid ? TRUE : FALSE;
2106 : 526 : eapol_auth_step(sm);
2107 : : }
2108 : :
2109 : :
2110 : 690 : void ieee802_1x_notify_pre_auth(struct eapol_state_machine *sm, int pre_auth)
2111 : : {
2112 [ + + ]: 690 : if (sm == NULL)
2113 : 690 : return;
2114 [ - + ]: 4 : if (pre_auth)
2115 : 0 : sm->flags |= EAPOL_SM_PREAUTH;
2116 : : else
2117 : 4 : sm->flags &= ~EAPOL_SM_PREAUTH;
2118 : : }
2119 : :
2120 : :
2121 : 8 : static const char * bool_txt(Boolean bool)
2122 : : {
2123 [ + + ]: 8 : return bool ? "TRUE" : "FALSE";
2124 : : }
2125 : :
2126 : :
2127 : 3 : int ieee802_1x_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
2128 : : {
2129 : : /* TODO */
2130 : 3 : return 0;
2131 : : }
2132 : :
2133 : :
2134 : 19 : int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
2135 : : char *buf, size_t buflen)
2136 : : {
2137 : 19 : int len = 0, ret;
2138 : 19 : struct eapol_state_machine *sm = sta->eapol_sm;
2139 : : struct os_reltime diff;
2140 : : const char *name1;
2141 : : const char *name2;
2142 : :
2143 [ + + ]: 19 : if (sm == NULL)
2144 : 15 : return 0;
2145 : :
2146 : 4 : ret = os_snprintf(buf + len, buflen - len,
2147 : : "dot1xPaePortNumber=%d\n"
2148 : : "dot1xPaePortProtocolVersion=%d\n"
2149 : : "dot1xPaePortCapabilities=1\n"
2150 : : "dot1xPaePortInitialize=%d\n"
2151 : : "dot1xPaePortReauthenticate=FALSE\n",
2152 : 4 : sta->aid,
2153 : : EAPOL_VERSION,
2154 : 4 : sm->initialize);
2155 [ + - ][ - + ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2156 : 0 : return len;
2157 : 4 : len += ret;
2158 : :
2159 : : /* dot1xAuthConfigTable */
2160 : 4 : ret = os_snprintf(buf + len, buflen - len,
2161 : : "dot1xAuthPaeState=%d\n"
2162 : : "dot1xAuthBackendAuthState=%d\n"
2163 : : "dot1xAuthAdminControlledDirections=%d\n"
2164 : : "dot1xAuthOperControlledDirections=%d\n"
2165 : : "dot1xAuthAuthControlledPortStatus=%d\n"
2166 : : "dot1xAuthAuthControlledPortControl=%d\n"
2167 : : "dot1xAuthQuietPeriod=%u\n"
2168 : : "dot1xAuthServerTimeout=%u\n"
2169 : : "dot1xAuthReAuthPeriod=%u\n"
2170 : : "dot1xAuthReAuthEnabled=%s\n"
2171 : : "dot1xAuthKeyTxEnabled=%s\n",
2172 : 4 : sm->auth_pae_state + 1,
2173 : 4 : sm->be_auth_state + 1,
2174 : 4 : sm->adminControlledDirections,
2175 : 4 : sm->operControlledDirections,
2176 : 4 : sm->authPortStatus,
2177 : 4 : sm->portControl,
2178 : : sm->quietPeriod,
2179 : : sm->serverTimeout,
2180 : : sm->reAuthPeriod,
2181 : : bool_txt(sm->reAuthEnabled),
2182 : : bool_txt(sm->keyTxEnabled));
2183 [ - + ][ + - ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2184 : 0 : return len;
2185 : 4 : len += ret;
2186 : :
2187 : : /* dot1xAuthStatsTable */
2188 : 24 : ret = os_snprintf(buf + len, buflen - len,
2189 : : "dot1xAuthEapolFramesRx=%u\n"
2190 : : "dot1xAuthEapolFramesTx=%u\n"
2191 : : "dot1xAuthEapolStartFramesRx=%u\n"
2192 : : "dot1xAuthEapolLogoffFramesRx=%u\n"
2193 : : "dot1xAuthEapolRespIdFramesRx=%u\n"
2194 : : "dot1xAuthEapolRespFramesRx=%u\n"
2195 : : "dot1xAuthEapolReqIdFramesTx=%u\n"
2196 : : "dot1xAuthEapolReqFramesTx=%u\n"
2197 : : "dot1xAuthInvalidEapolFramesRx=%u\n"
2198 : : "dot1xAuthEapLengthErrorFramesRx=%u\n"
2199 : : "dot1xAuthLastEapolFrameVersion=%u\n"
2200 : : "dot1xAuthLastEapolFrameSource=" MACSTR "\n",
2201 : : sm->dot1xAuthEapolFramesRx,
2202 : : sm->dot1xAuthEapolFramesTx,
2203 : : sm->dot1xAuthEapolStartFramesRx,
2204 : : sm->dot1xAuthEapolLogoffFramesRx,
2205 : : sm->dot1xAuthEapolRespIdFramesRx,
2206 : : sm->dot1xAuthEapolRespFramesRx,
2207 : : sm->dot1xAuthEapolReqIdFramesTx,
2208 : : sm->dot1xAuthEapolReqFramesTx,
2209 : : sm->dot1xAuthInvalidEapolFramesRx,
2210 : : sm->dot1xAuthEapLengthErrorFramesRx,
2211 : : sm->dot1xAuthLastEapolFrameVersion,
2212 : 24 : MAC2STR(sm->addr));
2213 [ + - ][ - + ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2214 : 0 : return len;
2215 : 4 : len += ret;
2216 : :
2217 : : /* dot1xAuthDiagTable */
2218 : 4 : ret = os_snprintf(buf + len, buflen - len,
2219 : : "dot1xAuthEntersConnecting=%u\n"
2220 : : "dot1xAuthEapLogoffsWhileConnecting=%u\n"
2221 : : "dot1xAuthEntersAuthenticating=%u\n"
2222 : : "dot1xAuthAuthSuccessesWhileAuthenticating=%u\n"
2223 : : "dot1xAuthAuthTimeoutsWhileAuthenticating=%u\n"
2224 : : "dot1xAuthAuthFailWhileAuthenticating=%u\n"
2225 : : "dot1xAuthAuthEapStartsWhileAuthenticating=%u\n"
2226 : : "dot1xAuthAuthEapLogoffWhileAuthenticating=%u\n"
2227 : : "dot1xAuthAuthReauthsWhileAuthenticated=%u\n"
2228 : : "dot1xAuthAuthEapStartsWhileAuthenticated=%u\n"
2229 : : "dot1xAuthAuthEapLogoffWhileAuthenticated=%u\n"
2230 : : "dot1xAuthBackendResponses=%u\n"
2231 : : "dot1xAuthBackendAccessChallenges=%u\n"
2232 : : "dot1xAuthBackendOtherRequestsToSupplicant=%u\n"
2233 : : "dot1xAuthBackendAuthSuccesses=%u\n"
2234 : : "dot1xAuthBackendAuthFails=%u\n",
2235 : : sm->authEntersConnecting,
2236 : : sm->authEapLogoffsWhileConnecting,
2237 : : sm->authEntersAuthenticating,
2238 : : sm->authAuthSuccessesWhileAuthenticating,
2239 : : sm->authAuthTimeoutsWhileAuthenticating,
2240 : : sm->authAuthFailWhileAuthenticating,
2241 : : sm->authAuthEapStartsWhileAuthenticating,
2242 : : sm->authAuthEapLogoffWhileAuthenticating,
2243 : : sm->authAuthReauthsWhileAuthenticated,
2244 : : sm->authAuthEapStartsWhileAuthenticated,
2245 : : sm->authAuthEapLogoffWhileAuthenticated,
2246 : : sm->backendResponses,
2247 : : sm->backendAccessChallenges,
2248 : : sm->backendOtherRequestsToSupplicant,
2249 : : sm->backendAuthSuccesses,
2250 : : sm->backendAuthFails);
2251 [ + - ][ - + ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2252 : 0 : return len;
2253 : 4 : len += ret;
2254 : :
2255 : : /* dot1xAuthSessionStatsTable */
2256 : 4 : os_reltime_age(&sta->acct_session_start, &diff);
2257 [ + - ]: 4 : ret = os_snprintf(buf + len, buflen - len,
2258 : : /* TODO: dot1xAuthSessionOctetsRx */
2259 : : /* TODO: dot1xAuthSessionOctetsTx */
2260 : : /* TODO: dot1xAuthSessionFramesRx */
2261 : : /* TODO: dot1xAuthSessionFramesTx */
2262 : : "dot1xAuthSessionId=%08X-%08X\n"
2263 : : "dot1xAuthSessionAuthenticMethod=%d\n"
2264 : : "dot1xAuthSessionTime=%u\n"
2265 : : "dot1xAuthSessionTerminateCause=999\n"
2266 : : "dot1xAuthSessionUserName=%s\n",
2267 : : sta->acct_session_id_hi, sta->acct_session_id_lo,
2268 : 4 : (wpa_key_mgmt_wpa_ieee8021x(
2269 : : wpa_auth_sta_key_mgmt(sta->wpa_sm))) ?
2270 : : 1 : 2,
2271 : 4 : (unsigned int) diff.sec,
2272 : : sm->identity);
2273 [ + - ][ - + ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2274 : 0 : return len;
2275 : 4 : len += ret;
2276 : :
2277 : 4 : name1 = eap_server_get_name(0, sm->eap_type_authsrv);
2278 : 4 : name2 = eap_server_get_name(0, sm->eap_type_supp);
2279 [ + - ][ + - ]: 4 : ret = os_snprintf(buf + len, buflen - len,
2280 : : "last_eap_type_as=%d (%s)\n"
2281 : : "last_eap_type_sta=%d (%s)\n",
2282 : 4 : sm->eap_type_authsrv,
2283 : : name1 ? name1 : "",
2284 : 4 : sm->eap_type_supp,
2285 : : name2 ? name2 : "");
2286 [ + - ][ - + ]: 4 : if (ret < 0 || (size_t) ret >= buflen - len)
2287 : 0 : return len;
2288 : 4 : len += ret;
2289 : :
2290 : 19 : return len;
2291 : : }
2292 : :
2293 : :
2294 : 354 : static void ieee802_1x_finished(struct hostapd_data *hapd,
2295 : : struct sta_info *sta, int success,
2296 : : int remediation)
2297 : : {
2298 : : const u8 *key;
2299 : : size_t len;
2300 : : /* TODO: get PMKLifetime from WPA parameters */
2301 : : static const int dot11RSNAConfigPMKLifetime = 43200;
2302 : :
2303 : : #ifdef CONFIG_HS20
2304 [ - + ][ # # ]: 354 : if (remediation && !sta->remediation) {
2305 : 0 : sta->remediation = 1;
2306 : 0 : os_free(sta->remediation_url);
2307 : 0 : sta->remediation_url =
2308 : 0 : os_strdup(hapd->conf->subscr_remediation_url);
2309 : 0 : sta->remediation_method = 1; /* SOAP-XML SPP */
2310 : : }
2311 : :
2312 [ + + ]: 354 : if (success) {
2313 [ - + ]: 184 : if (sta->remediation) {
2314 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification "
2315 : : "to " MACSTR " to indicate Subscription "
2316 : : "Remediation",
2317 : 0 : MAC2STR(sta->addr));
2318 : 0 : hs20_send_wnm_notification(hapd, sta->addr,
2319 : 0 : sta->remediation_method,
2320 : 0 : sta->remediation_url);
2321 : 0 : os_free(sta->remediation_url);
2322 : 0 : sta->remediation_url = NULL;
2323 : : }
2324 : :
2325 [ - + ]: 184 : if (sta->hs20_deauth_req) {
2326 : 0 : wpa_printf(MSG_DEBUG, "HS 2.0: Send WNM-Notification "
2327 : : "to " MACSTR " to indicate imminent "
2328 : 0 : "deauthentication", MAC2STR(sta->addr));
2329 : 0 : hs20_send_wnm_notification_deauth_req(
2330 : 0 : hapd, sta->addr, sta->hs20_deauth_req);
2331 : : }
2332 : : }
2333 : : #endif /* CONFIG_HS20 */
2334 : :
2335 : 354 : key = ieee802_1x_get_key(sta->eapol_sm, &len);
2336 [ + + ][ + - ]: 354 : if (success && key && len >= PMK_LEN && !sta->remediation &&
[ + - ][ + - ]
[ + + ]
2337 [ + + ]: 179 : !sta->hs20_deauth_requested &&
2338 : 179 : wpa_auth_pmksa_add(sta->wpa_sm, key, dot11RSNAConfigPMKLifetime,
2339 : : sta->eapol_sm) == 0) {
2340 : 172 : hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
2341 : : HOSTAPD_LEVEL_DEBUG,
2342 : : "Added PMKSA cache entry (IEEE 802.1X)");
2343 : : }
2344 : :
2345 [ + + ]: 354 : if (!success) {
2346 : : /*
2347 : : * Many devices require deauthentication after WPS provisioning
2348 : : * and some may not be be able to do that themselves, so
2349 : : * disconnect the client here. In addition, this may also
2350 : : * benefit IEEE 802.1X/EAPOL authentication cases, too since
2351 : : * the EAPOL PAE state machine would remain in HELD state for
2352 : : * considerable amount of time and some EAP methods, like
2353 : : * EAP-FAST with anonymous provisioning, may require another
2354 : : * EAPOL authentication to be started to complete connection.
2355 : : */
2356 : 170 : wpa_dbg(hapd->msg_ctx, MSG_DEBUG, "IEEE 802.1X: Force "
2357 : : "disconnection after EAP-Failure");
2358 : : /* Add a small sleep to increase likelihood of previously
2359 : : * requested EAP-Failure TX getting out before this should the
2360 : : * driver reorder operations.
2361 : : */
2362 : 170 : os_sleep(0, 10000);
2363 : 170 : ap_sta_disconnect(hapd, sta, sta->addr,
2364 : : WLAN_REASON_IEEE_802_1X_AUTH_FAILED);
2365 : 170 : hostapd_wps_eap_completed(hapd);
2366 : : }
2367 : 354 : }
|