EAP-FAST: Make PAC-Key lifetime values configurable
[libeap.git] / hostapd / ieee802_1x.c
1 /*
2  * hostapd / IEEE 802.1X-2004 Authenticator
3  * Copyright (c) 2002-2008, Jouni Malinen <j@w1.fi>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License version 2 as
7  * published by the Free Software Foundation.
8  *
9  * Alternatively, this software may be distributed under the terms of BSD
10  * license.
11  *
12  * See README and COPYING for more details.
13  */
14
15 #include "includes.h"
16
17 #include "hostapd.h"
18 #include "ieee802_1x.h"
19 #include "accounting.h"
20 #include "radius/radius.h"
21 #include "radius/radius_client.h"
22 #include "eapol_sm.h"
23 #include "md5.h"
24 #include "rc4.h"
25 #include "eloop.h"
26 #include "sta_info.h"
27 #include "wpa.h"
28 #include "preauth.h"
29 #include "pmksa_cache.h"
30 #include "driver.h"
31 #include "hw_features.h"
32 #include "eap_server/eap.h"
33
34
35 static void ieee802_1x_finished(struct hostapd_data *hapd,
36                                 struct sta_info *sta, int success);
37
38
39 static void ieee802_1x_send(struct hostapd_data *hapd, struct sta_info *sta,
40                             u8 type, const u8 *data, size_t datalen)
41 {
42         u8 *buf;
43         struct ieee802_1x_hdr *xhdr;
44         size_t len;
45         int encrypt = 0;
46
47         len = sizeof(*xhdr) + datalen;
48         buf = os_zalloc(len);
49         if (buf == NULL) {
50                 wpa_printf(MSG_ERROR, "malloc() failed for "
51                            "ieee802_1x_send(len=%lu)",
52                            (unsigned long) len);
53                 return;
54         }
55
56         xhdr = (struct ieee802_1x_hdr *) buf;
57         xhdr->version = hapd->conf->eapol_version;
58         xhdr->type = type;
59         xhdr->length = host_to_be16(datalen);
60
61         if (datalen > 0 && data != NULL)
62                 os_memcpy(xhdr + 1, data, datalen);
63
64         if (wpa_auth_pairwise_set(sta->wpa_sm))
65                 encrypt = 1;
66         if (sta->flags & WLAN_STA_PREAUTH) {
67                 rsn_preauth_send(hapd, sta, buf, len);
68         } else {
69                 hostapd_send_eapol(hapd, sta->addr, buf, len, encrypt);
70         }
71
72         os_free(buf);
73 }
74
75
76 void ieee802_1x_set_sta_authorized(struct hostapd_data *hapd,
77                                    struct sta_info *sta, int authorized)
78 {
79         int res;
80
81         if (sta->flags & WLAN_STA_PREAUTH)
82                 return;
83
84         if (authorized) {
85                 sta->flags |= WLAN_STA_AUTHORIZED;
86                 res = hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
87                                             WLAN_STA_AUTHORIZED, ~0);
88                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
89                                HOSTAPD_LEVEL_DEBUG, "authorizing port");
90         } else {
91                 sta->flags &= ~WLAN_STA_AUTHORIZED;
92                 res = hostapd_sta_set_flags(hapd, sta->addr, sta->flags,
93                                             0, ~WLAN_STA_AUTHORIZED);
94                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
95                                HOSTAPD_LEVEL_DEBUG, "unauthorizing port");
96         }
97
98         if (res && errno != ENOENT) {
99                 printf("Could not set station " MACSTR " flags for kernel "
100                        "driver (errno=%d).\n", MAC2STR(sta->addr), errno);
101         }
102
103         if (authorized)
104                 accounting_sta_start(hapd, sta);
105 }
106
107
108 static void ieee802_1x_eap_timeout(void *eloop_ctx, void *timeout_ctx)
109 {
110         struct sta_info *sta = eloop_ctx;
111         struct eapol_state_machine *sm = sta->eapol_sm;
112         if (sm == NULL)
113                 return;
114         hostapd_logger(sm->hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
115                        HOSTAPD_LEVEL_DEBUG, "EAP timeout");
116         sm->eap_if->eapTimeout = TRUE;
117         eapol_auth_step(sm);
118 }
119
120
121 static void ieee802_1x_tx_key_one(struct hostapd_data *hapd,
122                                   struct sta_info *sta,
123                                   int idx, int broadcast,
124                                   u8 *key_data, size_t key_len)
125 {
126         u8 *buf, *ekey;
127         struct ieee802_1x_hdr *hdr;
128         struct ieee802_1x_eapol_key *key;
129         size_t len, ekey_len;
130         struct eapol_state_machine *sm = sta->eapol_sm;
131
132         if (sm == NULL)
133                 return;
134
135         len = sizeof(*key) + key_len;
136         buf = os_zalloc(sizeof(*hdr) + len);
137         if (buf == NULL)
138                 return;
139
140         hdr = (struct ieee802_1x_hdr *) buf;
141         key = (struct ieee802_1x_eapol_key *) (hdr + 1);
142         key->type = EAPOL_KEY_TYPE_RC4;
143         key->key_length = htons(key_len);
144         wpa_get_ntp_timestamp(key->replay_counter);
145
146         if (os_get_random(key->key_iv, sizeof(key->key_iv))) {
147                 wpa_printf(MSG_ERROR, "Could not get random numbers");
148                 os_free(buf);
149                 return;
150         }
151
152         key->key_index = idx | (broadcast ? 0 : BIT(7));
153         if (hapd->conf->eapol_key_index_workaround) {
154                 /* According to some information, WinXP Supplicant seems to
155                  * interpret bit7 as an indication whether the key is to be
156                  * activated, so make it possible to enable workaround that
157                  * sets this bit for all keys. */
158                 key->key_index |= BIT(7);
159         }
160
161         /* Key is encrypted using "Key-IV + MSK[0..31]" as the RC4-key and
162          * MSK[32..63] is used to sign the message. */
163         if (sm->eap_if->eapKeyData == NULL || sm->eap_if->eapKeyDataLen < 64) {
164                 wpa_printf(MSG_ERROR, "No eapKeyData available for encrypting "
165                            "and signing EAPOL-Key");
166                 os_free(buf);
167                 return;
168         }
169         os_memcpy((u8 *) (key + 1), key_data, key_len);
170         ekey_len = sizeof(key->key_iv) + 32;
171         ekey = os_malloc(ekey_len);
172         if (ekey == NULL) {
173                 wpa_printf(MSG_ERROR, "Could not encrypt key");
174                 os_free(buf);
175                 return;
176         }
177         os_memcpy(ekey, key->key_iv, sizeof(key->key_iv));
178         os_memcpy(ekey + sizeof(key->key_iv), sm->eap_if->eapKeyData, 32);
179         rc4((u8 *) (key + 1), key_len, ekey, ekey_len);
180         os_free(ekey);
181
182         /* This header is needed here for HMAC-MD5, but it will be regenerated
183          * in ieee802_1x_send() */
184         hdr->version = hapd->conf->eapol_version;
185         hdr->type = IEEE802_1X_TYPE_EAPOL_KEY;
186         hdr->length = host_to_be16(len);
187         hmac_md5(sm->eap_if->eapKeyData + 32, 32, buf, sizeof(*hdr) + len,
188                  key->key_signature);
189
190         wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key to " MACSTR
191                    " (%s index=%d)", MAC2STR(sm->addr),
192                    broadcast ? "broadcast" : "unicast", idx);
193         ieee802_1x_send(hapd, sta, IEEE802_1X_TYPE_EAPOL_KEY, (u8 *) key, len);
194         if (sta->eapol_sm)
195                 sta->eapol_sm->dot1xAuthEapolFramesTx++;
196         os_free(buf);
197 }
198
199
200 static struct hostapd_wep_keys *
201 ieee802_1x_group_alloc(struct hostapd_data *hapd, const char *ifname)
202 {
203         struct hostapd_wep_keys *key;
204
205         key = os_zalloc(sizeof(*key));
206         if (key == NULL)
207                 return NULL;
208
209         key->default_len = hapd->conf->default_wep_key_len;
210
211         if (key->idx >= hapd->conf->broadcast_key_idx_max ||
212             key->idx < hapd->conf->broadcast_key_idx_min)
213                 key->idx = hapd->conf->broadcast_key_idx_min;
214         else
215                 key->idx++;
216
217         if (!key->key[key->idx])
218                 key->key[key->idx] = os_malloc(key->default_len);
219         if (key->key[key->idx] == NULL ||
220             os_get_random(key->key[key->idx], key->default_len)) {
221                 printf("Could not generate random WEP key (dynamic VLAN).\n");
222                 os_free(key->key[key->idx]);
223                 key->key[key->idx] = NULL;
224                 os_free(key);
225                 return NULL;
226         }
227         key->len[key->idx] = key->default_len;
228
229         wpa_printf(MSG_DEBUG, "%s: Default WEP idx %d for dynamic VLAN\n",
230                    ifname, key->idx);
231         wpa_hexdump_key(MSG_DEBUG, "Default WEP key (dynamic VLAN)",
232                         key->key[key->idx], key->len[key->idx]);
233
234         if (hostapd_set_encryption(ifname, hapd, "WEP", NULL, key->idx,
235                                    key->key[key->idx], key->len[key->idx], 1))
236                 printf("Could not set dynamic VLAN WEP encryption key.\n");
237
238         hostapd_set_ieee8021x(ifname, hapd, 1);
239
240         return key;
241 }
242
243
244 static struct hostapd_wep_keys *
245 ieee802_1x_get_group(struct hostapd_data *hapd, struct hostapd_ssid *ssid,
246                      size_t vlan_id)
247 {
248         const char *ifname;
249
250         if (vlan_id == 0)
251                 return &ssid->wep;
252
253         if (vlan_id <= ssid->max_dyn_vlan_keys && ssid->dyn_vlan_keys &&
254             ssid->dyn_vlan_keys[vlan_id])
255                 return ssid->dyn_vlan_keys[vlan_id];
256
257         wpa_printf(MSG_DEBUG, "IEEE 802.1X: Creating new group "
258                    "state machine for VLAN ID %lu",
259                    (unsigned long) vlan_id);
260
261         ifname = hostapd_get_vlan_id_ifname(hapd->conf->vlan, vlan_id);
262         if (ifname == NULL) {
263                 wpa_printf(MSG_DEBUG, "IEEE 802.1X: Unknown VLAN ID %lu - "
264                            "cannot create group key state machine",
265                            (unsigned long) vlan_id);
266                 return NULL;
267         }
268
269         if (ssid->dyn_vlan_keys == NULL) {
270                 int size = (vlan_id + 1) * sizeof(ssid->dyn_vlan_keys[0]);
271                 ssid->dyn_vlan_keys = os_zalloc(size);
272                 if (ssid->dyn_vlan_keys == NULL)
273                         return NULL;
274                 ssid->max_dyn_vlan_keys = vlan_id;
275         }
276
277         if (ssid->max_dyn_vlan_keys < vlan_id) {
278                 struct hostapd_wep_keys **na;
279                 int size = (vlan_id + 1) * sizeof(ssid->dyn_vlan_keys[0]);
280                 na = os_realloc(ssid->dyn_vlan_keys, size);
281                 if (na == NULL)
282                         return NULL;
283                 ssid->dyn_vlan_keys = na;
284                 os_memset(&ssid->dyn_vlan_keys[ssid->max_dyn_vlan_keys + 1], 0,
285                           (vlan_id - ssid->max_dyn_vlan_keys) *
286                           sizeof(ssid->dyn_vlan_keys[0]));
287                 ssid->max_dyn_vlan_keys = vlan_id;
288         }
289
290         ssid->dyn_vlan_keys[vlan_id] = ieee802_1x_group_alloc(hapd, ifname);
291
292         return ssid->dyn_vlan_keys[vlan_id];
293 }
294
295
296 void ieee802_1x_tx_key(struct hostapd_data *hapd, struct sta_info *sta)
297 {
298         struct hostapd_wep_keys *key = NULL;
299         struct eapol_state_machine *sm = sta->eapol_sm;
300         int vlan_id;
301
302         if (sm == NULL || !sm->eap_if->eapKeyData)
303                 return;
304
305         wpa_printf(MSG_DEBUG, "IEEE 802.1X: Sending EAPOL-Key(s) to " MACSTR,
306                    MAC2STR(sta->addr));
307
308         vlan_id = sta->vlan_id;
309         if (vlan_id < 0 || vlan_id > MAX_VLAN_ID)
310                 vlan_id = 0;
311
312         if (vlan_id) {
313                 key = ieee802_1x_get_group(hapd, sta->ssid, vlan_id);
314                 if (key && key->key[key->idx])
315                         ieee802_1x_tx_key_one(hapd, sta, key->idx, 1,
316                                               key->key[key->idx],
317                                               key->len[key->idx]);
318         } else if (hapd->default_wep_key) {
319                 ieee802_1x_tx_key_one(hapd, sta, hapd->default_wep_key_idx, 1,
320                                       hapd->default_wep_key,
321                                       hapd->conf->default_wep_key_len);
322         }
323
324         if (hapd->conf->individual_wep_key_len > 0) {
325                 u8 *ikey;
326                 ikey = os_malloc(hapd->conf->individual_wep_key_len);
327                 if (ikey == NULL ||
328                     os_get_random(ikey, hapd->conf->individual_wep_key_len)) {
329                         wpa_printf(MSG_ERROR, "Could not generate random "
330                                    "individual WEP key.");
331                         os_free(ikey);
332                         return;
333                 }
334
335                 wpa_hexdump_key(MSG_DEBUG, "Individual WEP key",
336                                 ikey, hapd->conf->individual_wep_key_len);
337
338                 ieee802_1x_tx_key_one(hapd, sta, 0, 0, ikey,
339                                       hapd->conf->individual_wep_key_len);
340
341                 /* TODO: set encryption in TX callback, i.e., only after STA
342                  * has ACKed EAPOL-Key frame */
343                 if (hostapd_set_encryption(hapd->conf->iface, hapd, "WEP",
344                                            sta->addr, 0, ikey,
345                                            hapd->conf->individual_wep_key_len,
346                                            1)) {
347                         wpa_printf(MSG_ERROR, "Could not set individual WEP "
348                                    "encryption.");
349                 }
350
351                 os_free(ikey);
352         }
353 }
354
355
356 const char *radius_mode_txt(struct hostapd_data *hapd)
357 {
358         if (hapd->iface->current_mode == NULL)
359                 return "802.11";
360
361         switch (hapd->iface->current_mode->mode) {
362         case HOSTAPD_MODE_IEEE80211A:
363                 return "802.11a";
364         case HOSTAPD_MODE_IEEE80211G:
365                 return "802.11g";
366         case HOSTAPD_MODE_IEEE80211B:
367         default:
368                 return "802.11b";
369         }
370 }
371
372
373 int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *sta)
374 {
375         int i;
376         u8 rate = 0;
377
378         for (i = 0; i < sta->supported_rates_len; i++)
379                 if ((sta->supported_rates[i] & 0x7f) > rate)
380                         rate = sta->supported_rates[i] & 0x7f;
381
382         return rate;
383 }
384
385
386 static void ieee802_1x_learn_identity(struct hostapd_data *hapd,
387                                       struct eapol_state_machine *sm,
388                                       const u8 *eap, size_t len)
389 {
390         const u8 *identity;
391         size_t identity_len;
392
393         if (len <= sizeof(struct eap_hdr) ||
394             eap[sizeof(struct eap_hdr)] != EAP_TYPE_IDENTITY)
395                 return;
396
397         identity = eap_get_identity(sm->eap, &identity_len);
398         if (identity == NULL)
399                 return;
400
401         /* Save station identity for future RADIUS packets */
402         os_free(sm->identity);
403         sm->identity = os_malloc(identity_len + 1);
404         if (sm->identity == NULL) {
405                 sm->identity_len = 0;
406                 return;
407         }
408
409         os_memcpy(sm->identity, identity, identity_len);
410         sm->identity_len = identity_len;
411         sm->identity[identity_len] = '\0';
412         hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
413                        HOSTAPD_LEVEL_DEBUG, "STA identity '%s'", sm->identity);
414         sm->dot1xAuthEapolRespIdFramesRx++;
415 }
416
417
418 static void ieee802_1x_encapsulate_radius(struct hostapd_data *hapd,
419                                           struct sta_info *sta,
420                                           const u8 *eap, size_t len)
421 {
422         struct radius_msg *msg;
423         char buf[128];
424         struct eapol_state_machine *sm = sta->eapol_sm;
425
426         if (sm == NULL)
427                 return;
428
429         ieee802_1x_learn_identity(hapd, sm, eap, len);
430
431         wpa_printf(MSG_DEBUG, "Encapsulating EAP message into a RADIUS "
432                    "packet");
433
434         sm->radius_identifier = radius_client_get_id(hapd->radius);
435         msg = radius_msg_new(RADIUS_CODE_ACCESS_REQUEST,
436                              sm->radius_identifier);
437         if (msg == NULL) {
438                 printf("Could not create net RADIUS packet\n");
439                 return;
440         }
441
442         radius_msg_make_authenticator(msg, (u8 *) sta, sizeof(*sta));
443
444         if (sm->identity &&
445             !radius_msg_add_attr(msg, RADIUS_ATTR_USER_NAME,
446                                  sm->identity, sm->identity_len)) {
447                 printf("Could not add User-Name\n");
448                 goto fail;
449         }
450
451         if (hapd->conf->own_ip_addr.af == AF_INET &&
452             !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IP_ADDRESS,
453                                  (u8 *) &hapd->conf->own_ip_addr.u.v4, 4)) {
454                 printf("Could not add NAS-IP-Address\n");
455                 goto fail;
456         }
457
458 #ifdef CONFIG_IPV6
459         if (hapd->conf->own_ip_addr.af == AF_INET6 &&
460             !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IPV6_ADDRESS,
461                                  (u8 *) &hapd->conf->own_ip_addr.u.v6, 16)) {
462                 printf("Could not add NAS-IPv6-Address\n");
463                 goto fail;
464         }
465 #endif /* CONFIG_IPV6 */
466
467         if (hapd->conf->nas_identifier &&
468             !radius_msg_add_attr(msg, RADIUS_ATTR_NAS_IDENTIFIER,
469                                  (u8 *) hapd->conf->nas_identifier,
470                                  os_strlen(hapd->conf->nas_identifier))) {
471                 printf("Could not add NAS-Identifier\n");
472                 goto fail;
473         }
474
475         if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT, sta->aid)) {
476                 printf("Could not add NAS-Port\n");
477                 goto fail;
478         }
479
480         os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT ":%s",
481                     MAC2STR(hapd->own_addr), hapd->conf->ssid.ssid);
482         buf[sizeof(buf) - 1] = '\0';
483         if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLED_STATION_ID,
484                                  (u8 *) buf, os_strlen(buf))) {
485                 printf("Could not add Called-Station-Id\n");
486                 goto fail;
487         }
488
489         os_snprintf(buf, sizeof(buf), RADIUS_802_1X_ADDR_FORMAT,
490                     MAC2STR(sta->addr));
491         buf[sizeof(buf) - 1] = '\0';
492         if (!radius_msg_add_attr(msg, RADIUS_ATTR_CALLING_STATION_ID,
493                                  (u8 *) buf, os_strlen(buf))) {
494                 printf("Could not add Calling-Station-Id\n");
495                 goto fail;
496         }
497
498         /* TODO: should probably check MTU from driver config; 2304 is max for
499          * IEEE 802.11, but use 1400 to avoid problems with too large packets
500          */
501         if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_FRAMED_MTU, 1400)) {
502                 printf("Could not add Framed-MTU\n");
503                 goto fail;
504         }
505
506         if (!radius_msg_add_attr_int32(msg, RADIUS_ATTR_NAS_PORT_TYPE,
507                                        RADIUS_NAS_PORT_TYPE_IEEE_802_11)) {
508                 printf("Could not add NAS-Port-Type\n");
509                 goto fail;
510         }
511
512         if (sta->flags & WLAN_STA_PREAUTH) {
513                 os_strlcpy(buf, "IEEE 802.11i Pre-Authentication",
514                            sizeof(buf));
515         } else {
516                 os_snprintf(buf, sizeof(buf), "CONNECT %d%sMbps %s",
517                             radius_sta_rate(hapd, sta) / 2,
518                             (radius_sta_rate(hapd, sta) & 1) ? ".5" : "",
519                             radius_mode_txt(hapd));
520                 buf[sizeof(buf) - 1] = '\0';
521         }
522         if (!radius_msg_add_attr(msg, RADIUS_ATTR_CONNECT_INFO,
523                                  (u8 *) buf, os_strlen(buf))) {
524                 printf("Could not add Connect-Info\n");
525                 goto fail;
526         }
527
528         if (eap && !radius_msg_add_eap(msg, eap, len)) {
529                 printf("Could not add EAP-Message\n");
530                 goto fail;
531         }
532
533         /* State attribute must be copied if and only if this packet is
534          * Access-Request reply to the previous Access-Challenge */
535         if (sm->last_recv_radius && sm->last_recv_radius->hdr->code ==
536             RADIUS_CODE_ACCESS_CHALLENGE) {
537                 int res = radius_msg_copy_attr(msg, sm->last_recv_radius,
538                                                RADIUS_ATTR_STATE);
539                 if (res < 0) {
540                         printf("Could not copy State attribute from previous "
541                                "Access-Challenge\n");
542                         goto fail;
543                 }
544                 if (res > 0) {
545                         wpa_printf(MSG_DEBUG, "Copied RADIUS State Attribute");
546                 }
547         }
548
549         radius_client_send(hapd->radius, msg, RADIUS_AUTH, sta->addr);
550         return;
551
552  fail:
553         radius_msg_free(msg);
554         os_free(msg);
555 }
556
557
558 char *eap_type_text(u8 type)
559 {
560         switch (type) {
561         case EAP_TYPE_IDENTITY: return "Identity";
562         case EAP_TYPE_NOTIFICATION: return "Notification";
563         case EAP_TYPE_NAK: return "Nak";
564         case EAP_TYPE_MD5: return "MD5-Challenge";
565         case EAP_TYPE_OTP: return "One-Time Password";
566         case EAP_TYPE_GTC: return "Generic Token Card";
567         case EAP_TYPE_TLS: return "TLS";
568         case EAP_TYPE_TTLS: return "TTLS";
569         case EAP_TYPE_PEAP: return "PEAP";
570         case EAP_TYPE_SIM: return "SIM";
571         case EAP_TYPE_FAST: return "FAST";
572         case EAP_TYPE_SAKE: return "SAKE";
573         case EAP_TYPE_PSK: return "PSK";
574         case EAP_TYPE_PAX: return "PAX";
575         default: return "Unknown";
576         }
577 }
578
579
580 static void handle_eap_response(struct hostapd_data *hapd,
581                                 struct sta_info *sta, struct eap_hdr *eap,
582                                 size_t len)
583 {
584         u8 type, *data;
585         struct eapol_state_machine *sm = sta->eapol_sm;
586         if (sm == NULL)
587                 return;
588
589         data = (u8 *) (eap + 1);
590
591         if (len < sizeof(*eap) + 1) {
592                 printf("handle_eap_response: too short response data\n");
593                 return;
594         }
595
596         sm->eap_type_supp = type = data[0];
597         eloop_cancel_timeout(ieee802_1x_eap_timeout, sta, NULL);
598
599         hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
600                        HOSTAPD_LEVEL_DEBUG, "received EAP packet (code=%d "
601                        "id=%d len=%d) from STA: EAP Response-%s (%d)",
602                        eap->code, eap->identifier, be_to_host16(eap->length),
603                        eap_type_text(type), type);
604
605         sm->dot1xAuthEapolRespFramesRx++;
606
607         wpabuf_free(sm->eap_if->eapRespData);
608         sm->eap_if->eapRespData = wpabuf_alloc_copy(eap, len);
609         sm->eapolEap = TRUE;
610 }
611
612
613 /* Process incoming EAP packet from Supplicant */
614 static void handle_eap(struct hostapd_data *hapd, struct sta_info *sta,
615                        u8 *buf, size_t len)
616 {
617         struct eap_hdr *eap;
618         u16 eap_len;
619
620         if (len < sizeof(*eap)) {
621                 printf("   too short EAP packet\n");
622                 return;
623         }
624
625         eap = (struct eap_hdr *) buf;
626
627         eap_len = be_to_host16(eap->length);
628         wpa_printf(MSG_DEBUG, "EAP: code=%d identifier=%d length=%d",
629                    eap->code, eap->identifier, eap_len);
630         if (eap_len < sizeof(*eap)) {
631                 wpa_printf(MSG_DEBUG, "   Invalid EAP length");
632                 return;
633         } else if (eap_len > len) {
634                 wpa_printf(MSG_DEBUG, "   Too short frame to contain this EAP "
635                            "packet");
636                 return;
637         } else if (eap_len < len) {
638                 wpa_printf(MSG_DEBUG, "   Ignoring %lu extra bytes after EAP "
639                            "packet", (unsigned long) len - eap_len);
640         }
641
642         switch (eap->code) {
643         case EAP_CODE_REQUEST:
644                 wpa_printf(MSG_DEBUG, " (request)");
645                 return;
646         case EAP_CODE_RESPONSE:
647                 wpa_printf(MSG_DEBUG, " (response)");
648                 handle_eap_response(hapd, sta, eap, eap_len);
649                 break;
650         case EAP_CODE_SUCCESS:
651                 wpa_printf(MSG_DEBUG, " (success)");
652                 return;
653         case EAP_CODE_FAILURE:
654                 wpa_printf(MSG_DEBUG, " (failure)");
655                 return;
656         default:
657                 wpa_printf(MSG_DEBUG, " (unknown code)");
658                 return;
659         }
660 }
661
662
663 /* Process the EAPOL frames from the Supplicant */
664 void ieee802_1x_receive(struct hostapd_data *hapd, const u8 *sa, const u8 *buf,
665                         size_t len)
666 {
667         struct sta_info *sta;
668         struct ieee802_1x_hdr *hdr;
669         struct ieee802_1x_eapol_key *key;
670         u16 datalen;
671         struct rsn_pmksa_cache_entry *pmksa;
672
673         if (!hapd->conf->ieee802_1x && !hapd->conf->wpa)
674                 return;
675
676         wpa_printf(MSG_DEBUG, "IEEE 802.1X: %lu bytes from " MACSTR,
677                    (unsigned long) len, MAC2STR(sa));
678         sta = ap_get_sta(hapd, sa);
679         if (!sta) {
680                 printf("   no station information available\n");
681                 return;
682         }
683
684         if (len < sizeof(*hdr)) {
685                 printf("   too short IEEE 802.1X packet\n");
686                 return;
687         }
688
689         hdr = (struct ieee802_1x_hdr *) buf;
690         datalen = be_to_host16(hdr->length);
691         wpa_printf(MSG_DEBUG, "   IEEE 802.1X: version=%d type=%d length=%d",
692                    hdr->version, hdr->type, datalen);
693
694         if (len - sizeof(*hdr) < datalen) {
695                 printf("   frame too short for this IEEE 802.1X packet\n");
696                 if (sta->eapol_sm)
697                         sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++;
698                 return;
699         }
700         if (len - sizeof(*hdr) > datalen) {
701                 wpa_printf(MSG_DEBUG, "   ignoring %lu extra octets after "
702                            "IEEE 802.1X packet",
703                            (unsigned long) len - sizeof(*hdr) - datalen);
704         }
705
706         if (sta->eapol_sm) {
707                 sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version;
708                 sta->eapol_sm->dot1xAuthEapolFramesRx++;
709         }
710
711         key = (struct ieee802_1x_eapol_key *) (hdr + 1);
712         if (datalen >= sizeof(struct ieee802_1x_eapol_key) &&
713             hdr->type == IEEE802_1X_TYPE_EAPOL_KEY &&
714             (key->type == EAPOL_KEY_TYPE_WPA ||
715              key->type == EAPOL_KEY_TYPE_RSN)) {
716                 wpa_receive(hapd->wpa_auth, sta->wpa_sm, (u8 *) hdr,
717                             sizeof(*hdr) + datalen);
718                 return;
719         }
720
721         if (!hapd->conf->ieee802_1x ||
722             wpa_key_mgmt_wpa_psk(wpa_auth_sta_key_mgmt(sta->wpa_sm)))
723                 return;
724
725         if (!sta->eapol_sm) {
726                 sta->eapol_sm = eapol_auth_alloc(hapd->eapol_auth, sta->addr,
727                                                  sta->flags & WLAN_STA_PREAUTH,
728                                                  sta);
729                 if (!sta->eapol_sm)
730                         return;
731         }
732
733         /* since we support version 1, we can ignore version field and proceed
734          * as specified in version 1 standard [IEEE Std 802.1X-2001, 7.5.5] */
735         /* TODO: actually, we are not version 1 anymore.. However, Version 2
736          * does not change frame contents, so should be ok to process frames
737          * more or less identically. Some changes might be needed for
738          * verification of fields. */
739
740         switch (hdr->type) {
741         case IEEE802_1X_TYPE_EAP_PACKET:
742                 handle_eap(hapd, sta, (u8 *) (hdr + 1), datalen);
743                 break;
744
745         case IEEE802_1X_TYPE_EAPOL_START:
746                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
747                                HOSTAPD_LEVEL_DEBUG, "received EAPOL-Start "
748                                "from STA");
749                 sta->eapol_sm->flags &= ~EAPOL_SM_WAIT_START;
750                 pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
751                 if (pmksa) {
752                         hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
753                                        HOSTAPD_LEVEL_DEBUG, "cached PMKSA "
754                                        "available - ignore it since "
755                                        "STA sent EAPOL-Start");
756                         wpa_auth_sta_clear_pmksa(sta->wpa_sm, pmksa);
757                 }
758                 sta->eapol_sm->eapolStart = TRUE;
759                 sta->eapol_sm->dot1xAuthEapolStartFramesRx++;
760                 wpa_auth_sm_event(sta->wpa_sm, WPA_REAUTH_EAPOL);
761                 break;
762
763         case IEEE802_1X_TYPE_EAPOL_LOGOFF:
764                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
765                                HOSTAPD_LEVEL_DEBUG, "received EAPOL-Logoff "
766                                "from STA");
767                 sta->acct_terminate_cause =
768                         RADIUS_ACCT_TERMINATE_CAUSE_USER_REQUEST;
769                 sta->eapol_sm->eapolLogoff = TRUE;
770                 sta->eapol_sm->dot1xAuthEapolLogoffFramesRx++;
771                 break;
772
773         case IEEE802_1X_TYPE_EAPOL_KEY:
774                 wpa_printf(MSG_DEBUG, "   EAPOL-Key");
775                 if (!(sta->flags & WLAN_STA_AUTHORIZED)) {
776                         wpa_printf(MSG_DEBUG, "   Dropped key data from "
777                                    "unauthorized Supplicant");
778                         break;
779                 }
780                 break;
781
782         case IEEE802_1X_TYPE_EAPOL_ENCAPSULATED_ASF_ALERT:
783                 wpa_printf(MSG_DEBUG, "   EAPOL-Encapsulated-ASF-Alert");
784                 /* TODO: implement support for this; show data */
785                 break;
786
787         default:
788                 wpa_printf(MSG_DEBUG, "   unknown IEEE 802.1X packet type");
789                 sta->eapol_sm->dot1xAuthInvalidEapolFramesRx++;
790                 break;
791         }
792
793         eapol_auth_step(sta->eapol_sm);
794 }
795
796
797 void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta)
798 {
799         struct rsn_pmksa_cache_entry *pmksa;
800         int reassoc = 1;
801         int force_1x = 0;
802
803         if ((!force_1x && !hapd->conf->ieee802_1x) ||
804             wpa_key_mgmt_wpa_psk(wpa_auth_sta_key_mgmt(sta->wpa_sm)))
805                 return;
806
807         if (sta->eapol_sm == NULL) {
808                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
809                                HOSTAPD_LEVEL_DEBUG, "start authentication");
810                 sta->eapol_sm = eapol_auth_alloc(hapd->eapol_auth, sta->addr,
811                                                  sta->flags & WLAN_STA_PREAUTH,
812                                                  sta);
813                 if (sta->eapol_sm == NULL) {
814                         hostapd_logger(hapd, sta->addr,
815                                        HOSTAPD_MODULE_IEEE8021X,
816                                        HOSTAPD_LEVEL_INFO,
817                                        "failed to allocate state machine");
818                         return;
819                 }
820                 reassoc = 0;
821         }
822
823         sta->eapol_sm->eap_if->portEnabled = TRUE;
824
825         pmksa = wpa_auth_sta_get_pmksa(sta->wpa_sm);
826         if (pmksa) {
827                 int old_vlanid;
828
829                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
830                                HOSTAPD_LEVEL_DEBUG,
831                                "PMK from PMKSA cache - skip IEEE 802.1X/EAP");
832                 /* Setup EAPOL state machines to already authenticated state
833                  * because of existing PMKSA information in the cache. */
834                 sta->eapol_sm->keyRun = TRUE;
835                 sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
836                 sta->eapol_sm->auth_pae_state = AUTH_PAE_AUTHENTICATING;
837                 sta->eapol_sm->be_auth_state = BE_AUTH_SUCCESS;
838                 sta->eapol_sm->authSuccess = TRUE;
839                 if (sta->eapol_sm->eap)
840                         eap_sm_notify_cached(sta->eapol_sm->eap);
841                 old_vlanid = sta->vlan_id;
842                 pmksa_cache_to_eapol_data(pmksa, sta->eapol_sm);
843                 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
844                         sta->vlan_id = 0;
845                 ap_sta_bind_vlan(hapd, sta, old_vlanid);
846         } else {
847                 if (reassoc) {
848                         /*
849                          * Force EAPOL state machines to start
850                          * re-authentication without having to wait for the
851                          * Supplicant to send EAPOL-Start.
852                          */
853                         sta->eapol_sm->reAuthenticate = TRUE;
854                 }
855                 eapol_auth_step(sta->eapol_sm);
856         }
857 }
858
859
860 void ieee802_1x_free_radius_class(struct radius_class_data *class)
861 {
862         size_t i;
863         if (class == NULL)
864                 return;
865         for (i = 0; i < class->count; i++)
866                 os_free(class->attr[i].data);
867         os_free(class->attr);
868         class->attr = NULL;
869         class->count = 0;
870 }
871
872
873 int ieee802_1x_copy_radius_class(struct radius_class_data *dst,
874                                  const struct radius_class_data *src)
875 {
876         size_t i;
877
878         if (src->attr == NULL)
879                 return 0;
880
881         dst->attr = os_zalloc(src->count * sizeof(struct radius_attr_data));
882         if (dst->attr == NULL)
883                 return -1;
884
885         dst->count = 0;
886
887         for (i = 0; i < src->count; i++) {
888                 dst->attr[i].data = os_malloc(src->attr[i].len);
889                 if (dst->attr[i].data == NULL)
890                         break;
891                 dst->count++;
892                 os_memcpy(dst->attr[i].data, src->attr[i].data,
893                           src->attr[i].len);
894                 dst->attr[i].len = src->attr[i].len;
895         }
896
897         return 0;
898 }
899
900
901 void ieee802_1x_free_station(struct sta_info *sta)
902 {
903         struct eapol_state_machine *sm = sta->eapol_sm;
904
905         eloop_cancel_timeout(ieee802_1x_eap_timeout, sta, NULL);
906
907         if (sm == NULL)
908                 return;
909
910         sta->eapol_sm = NULL;
911
912         if (sm->last_recv_radius) {
913                 radius_msg_free(sm->last_recv_radius);
914                 os_free(sm->last_recv_radius);
915         }
916
917         os_free(sm->identity);
918         ieee802_1x_free_radius_class(&sm->radius_class);
919         eapol_auth_free(sm);
920 }
921
922
923 static void ieee802_1x_decapsulate_radius(struct hostapd_data *hapd,
924                                           struct sta_info *sta)
925 {
926         u8 *eap;
927         size_t len;
928         struct eap_hdr *hdr;
929         int eap_type = -1;
930         char buf[64];
931         struct radius_msg *msg;
932         struct eapol_state_machine *sm = sta->eapol_sm;
933
934         if (sm == NULL || sm->last_recv_radius == NULL) {
935                 if (sm)
936                         sm->eap_if->aaaEapNoReq = TRUE;
937                 return;
938         }
939
940         msg = sm->last_recv_radius;
941
942         eap = radius_msg_get_eap(msg, &len);
943         if (eap == NULL) {
944                 /* RFC 3579, Chap. 2.6.3:
945                  * RADIUS server SHOULD NOT send Access-Reject/no EAP-Message
946                  * attribute */
947                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
948                                HOSTAPD_LEVEL_WARNING, "could not extract "
949                                "EAP-Message from RADIUS message");
950                 sm->eap_if->aaaEapNoReq = TRUE;
951                 return;
952         }
953
954         if (len < sizeof(*hdr)) {
955                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
956                                HOSTAPD_LEVEL_WARNING, "too short EAP packet "
957                                "received from authentication server");
958                 os_free(eap);
959                 sm->eap_if->aaaEapNoReq = TRUE;
960                 return;
961         }
962
963         if (len > sizeof(*hdr))
964                 eap_type = eap[sizeof(*hdr)];
965
966         hdr = (struct eap_hdr *) eap;
967         switch (hdr->code) {
968         case EAP_CODE_REQUEST:
969                 if (eap_type >= 0)
970                         sm->eap_type_authsrv = eap_type;
971                 os_snprintf(buf, sizeof(buf), "EAP-Request-%s (%d)",
972                             eap_type >= 0 ? eap_type_text(eap_type) : "??",
973                             eap_type);
974                 break;
975         case EAP_CODE_RESPONSE:
976                 os_snprintf(buf, sizeof(buf), "EAP Response-%s (%d)",
977                             eap_type >= 0 ? eap_type_text(eap_type) : "??",
978                             eap_type);
979                 break;
980         case EAP_CODE_SUCCESS:
981                 os_strlcpy(buf, "EAP Success", sizeof(buf));
982                 break;
983         case EAP_CODE_FAILURE:
984                 os_strlcpy(buf, "EAP Failure", sizeof(buf));
985                 break;
986         default:
987                 os_strlcpy(buf, "unknown EAP code", sizeof(buf));
988                 break;
989         }
990         buf[sizeof(buf) - 1] = '\0';
991         hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
992                        HOSTAPD_LEVEL_DEBUG, "decapsulated EAP packet (code=%d "
993                        "id=%d len=%d) from RADIUS server: %s",
994                        hdr->code, hdr->identifier, be_to_host16(hdr->length),
995                        buf);
996         sm->eap_if->aaaEapReq = TRUE;
997
998         wpabuf_free(sm->eap_if->aaaEapReqData);
999         sm->eap_if->aaaEapReqData = wpabuf_alloc_ext_data(eap, len);
1000 }
1001
1002
1003 static void ieee802_1x_get_keys(struct hostapd_data *hapd,
1004                                 struct sta_info *sta, struct radius_msg *msg,
1005                                 struct radius_msg *req,
1006                                 u8 *shared_secret, size_t shared_secret_len)
1007 {
1008         struct radius_ms_mppe_keys *keys;
1009         struct eapol_state_machine *sm = sta->eapol_sm;
1010         if (sm == NULL)
1011                 return;
1012
1013         keys = radius_msg_get_ms_keys(msg, req, shared_secret,
1014                                       shared_secret_len);
1015
1016         if (keys && keys->send && keys->recv) {
1017                 size_t len = keys->send_len + keys->recv_len;
1018                 wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Send-Key",
1019                                 keys->send, keys->send_len);
1020                 wpa_hexdump_key(MSG_DEBUG, "MS-MPPE-Recv-Key",
1021                                 keys->recv, keys->recv_len);
1022
1023                 os_free(sm->eap_if->aaaEapKeyData);
1024                 sm->eap_if->aaaEapKeyData = os_malloc(len);
1025                 if (sm->eap_if->aaaEapKeyData) {
1026                         os_memcpy(sm->eap_if->aaaEapKeyData, keys->recv,
1027                                   keys->recv_len);
1028                         os_memcpy(sm->eap_if->aaaEapKeyData + keys->recv_len,
1029                                   keys->send, keys->send_len);
1030                         sm->eap_if->aaaEapKeyDataLen = len;
1031                         sm->eap_if->aaaEapKeyAvailable = TRUE;
1032                 }
1033         }
1034
1035         if (keys) {
1036                 os_free(keys->send);
1037                 os_free(keys->recv);
1038                 os_free(keys);
1039         }
1040 }
1041
1042
1043 static void ieee802_1x_store_radius_class(struct hostapd_data *hapd,
1044                                           struct sta_info *sta,
1045                                           struct radius_msg *msg)
1046 {
1047         u8 *class;
1048         size_t class_len;
1049         struct eapol_state_machine *sm = sta->eapol_sm;
1050         int count, i;
1051         struct radius_attr_data *nclass;
1052         size_t nclass_count;
1053
1054         if (!hapd->conf->radius->acct_server || hapd->radius == NULL ||
1055             sm == NULL)
1056                 return;
1057
1058         ieee802_1x_free_radius_class(&sm->radius_class);
1059         count = radius_msg_count_attr(msg, RADIUS_ATTR_CLASS, 1);
1060         if (count <= 0)
1061                 return;
1062
1063         nclass = os_zalloc(count * sizeof(struct radius_attr_data));
1064         if (nclass == NULL)
1065                 return;
1066
1067         nclass_count = 0;
1068
1069         class = NULL;
1070         for (i = 0; i < count; i++) {
1071                 do {
1072                         if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_CLASS,
1073                                                     &class, &class_len,
1074                                                     class) < 0) {
1075                                 i = count;
1076                                 break;
1077                         }
1078                 } while (class_len < 1);
1079
1080                 nclass[nclass_count].data = os_malloc(class_len);
1081                 if (nclass[nclass_count].data == NULL)
1082                         break;
1083
1084                 os_memcpy(nclass[nclass_count].data, class, class_len);
1085                 nclass[nclass_count].len = class_len;
1086                 nclass_count++;
1087         }
1088
1089         sm->radius_class.attr = nclass;
1090         sm->radius_class.count = nclass_count;
1091         wpa_printf(MSG_DEBUG, "IEEE 802.1X: Stored %lu RADIUS Class "
1092                    "attributes for " MACSTR,
1093                    (unsigned long) sm->radius_class.count,
1094                    MAC2STR(sta->addr));
1095 }
1096
1097
1098 /* Update sta->identity based on User-Name attribute in Access-Accept */
1099 static void ieee802_1x_update_sta_identity(struct hostapd_data *hapd,
1100                                            struct sta_info *sta,
1101                                            struct radius_msg *msg)
1102 {
1103         u8 *buf, *identity;
1104         size_t len;
1105         struct eapol_state_machine *sm = sta->eapol_sm;
1106
1107         if (sm == NULL)
1108                 return;
1109
1110         if (radius_msg_get_attr_ptr(msg, RADIUS_ATTR_USER_NAME, &buf, &len,
1111                                     NULL) < 0)
1112                 return;
1113
1114         identity = os_malloc(len + 1);
1115         if (identity == NULL)
1116                 return;
1117
1118         os_memcpy(identity, buf, len);
1119         identity[len] = '\0';
1120
1121         hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1122                        HOSTAPD_LEVEL_DEBUG, "old identity '%s' updated with "
1123                        "User-Name from Access-Accept '%s'",
1124                        sm->identity ? (char *) sm->identity : "N/A",
1125                        (char *) identity);
1126
1127         os_free(sm->identity);
1128         sm->identity = identity;
1129         sm->identity_len = len;
1130 }
1131
1132
1133 struct sta_id_search {
1134         u8 identifier;
1135         struct eapol_state_machine *sm;
1136 };
1137
1138
1139 static int ieee802_1x_select_radius_identifier(struct hostapd_data *hapd,
1140                                                struct sta_info *sta,
1141                                                void *ctx)
1142 {
1143         struct sta_id_search *id_search = ctx;
1144         struct eapol_state_machine *sm = sta->eapol_sm;
1145
1146         if (sm && sm->radius_identifier >= 0 &&
1147             sm->radius_identifier == id_search->identifier) {
1148                 id_search->sm = sm;
1149                 return 1;
1150         }
1151         return 0;
1152 }
1153
1154
1155 static struct eapol_state_machine *
1156 ieee802_1x_search_radius_identifier(struct hostapd_data *hapd, u8 identifier)
1157 {
1158         struct sta_id_search id_search;
1159         id_search.identifier = identifier;
1160         id_search.sm = NULL;
1161         ap_for_each_sta(hapd, ieee802_1x_select_radius_identifier, &id_search);
1162         return id_search.sm;
1163 }
1164
1165
1166 /* Process the RADIUS frames from Authentication Server */
1167 static RadiusRxResult
1168 ieee802_1x_receive_auth(struct radius_msg *msg, struct radius_msg *req,
1169                         u8 *shared_secret, size_t shared_secret_len,
1170                         void *data)
1171 {
1172         struct hostapd_data *hapd = data;
1173         struct sta_info *sta;
1174         u32 session_timeout = 0, termination_action, acct_interim_interval;
1175         int session_timeout_set, old_vlanid = 0;
1176         int eap_timeout;
1177         struct eapol_state_machine *sm;
1178         int override_eapReq = 0;
1179
1180         sm = ieee802_1x_search_radius_identifier(hapd, msg->hdr->identifier);
1181         if (sm == NULL) {
1182                 wpa_printf(MSG_DEBUG, "IEEE 802.1X: Could not find matching "
1183                            "station for this RADIUS message");
1184                 return RADIUS_RX_UNKNOWN;
1185         }
1186         sta = sm->sta;
1187
1188         /* RFC 2869, Ch. 5.13: valid Message-Authenticator attribute MUST be
1189          * present when packet contains an EAP-Message attribute */
1190         if (msg->hdr->code == RADIUS_CODE_ACCESS_REJECT &&
1191             radius_msg_get_attr(msg, RADIUS_ATTR_MESSAGE_AUTHENTICATOR, NULL,
1192                                 0) < 0 &&
1193             radius_msg_get_attr(msg, RADIUS_ATTR_EAP_MESSAGE, NULL, 0) < 0) {
1194                 wpa_printf(MSG_DEBUG, "Allowing RADIUS Access-Reject without "
1195                            "Message-Authenticator since it does not include "
1196                            "EAP-Message");
1197         } else if (radius_msg_verify(msg, shared_secret, shared_secret_len,
1198                                      req, 1)) {
1199                 printf("Incoming RADIUS packet did not have correct "
1200                        "Message-Authenticator - dropped\n");
1201                 return RADIUS_RX_INVALID_AUTHENTICATOR;
1202         }
1203
1204         if (msg->hdr->code != RADIUS_CODE_ACCESS_ACCEPT &&
1205             msg->hdr->code != RADIUS_CODE_ACCESS_REJECT &&
1206             msg->hdr->code != RADIUS_CODE_ACCESS_CHALLENGE) {
1207                 printf("Unknown RADIUS message code\n");
1208                 return RADIUS_RX_UNKNOWN;
1209         }
1210
1211         sm->radius_identifier = -1;
1212         wpa_printf(MSG_DEBUG, "RADIUS packet matching with station " MACSTR,
1213                    MAC2STR(sta->addr));
1214
1215         if (sm->last_recv_radius) {
1216                 radius_msg_free(sm->last_recv_radius);
1217                 os_free(sm->last_recv_radius);
1218         }
1219
1220         sm->last_recv_radius = msg;
1221
1222         session_timeout_set =
1223                 !radius_msg_get_attr_int32(msg, RADIUS_ATTR_SESSION_TIMEOUT,
1224                                            &session_timeout);
1225         if (radius_msg_get_attr_int32(msg, RADIUS_ATTR_TERMINATION_ACTION,
1226                                       &termination_action))
1227                 termination_action = RADIUS_TERMINATION_ACTION_DEFAULT;
1228
1229         if (hapd->conf->radius->acct_interim_interval == 0 &&
1230             msg->hdr->code == RADIUS_CODE_ACCESS_ACCEPT &&
1231             radius_msg_get_attr_int32(msg, RADIUS_ATTR_ACCT_INTERIM_INTERVAL,
1232                                       &acct_interim_interval) == 0) {
1233                 if (acct_interim_interval < 60) {
1234                         hostapd_logger(hapd, sta->addr,
1235                                        HOSTAPD_MODULE_IEEE8021X,
1236                                        HOSTAPD_LEVEL_INFO,
1237                                        "ignored too small "
1238                                        "Acct-Interim-Interval %d",
1239                                        acct_interim_interval);
1240                 } else
1241                         sta->acct_interim_interval = acct_interim_interval;
1242         }
1243
1244
1245         switch (msg->hdr->code) {
1246         case RADIUS_CODE_ACCESS_ACCEPT:
1247                 if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_DISABLED)
1248                         sta->vlan_id = 0;
1249                 else {
1250                         old_vlanid = sta->vlan_id;
1251                         sta->vlan_id = radius_msg_get_vlanid(msg);
1252                 }
1253                 if (sta->vlan_id > 0 &&
1254                     hostapd_get_vlan_id_ifname(hapd->conf->vlan,
1255                                                sta->vlan_id)) {
1256                         hostapd_logger(hapd, sta->addr,
1257                                        HOSTAPD_MODULE_RADIUS,
1258                                        HOSTAPD_LEVEL_INFO,
1259                                        "VLAN ID %d", sta->vlan_id);
1260                 } else if (sta->ssid->dynamic_vlan == DYNAMIC_VLAN_REQUIRED) {
1261                         sta->eapol_sm->authFail = TRUE;
1262                         hostapd_logger(hapd, sta->addr,
1263                                        HOSTAPD_MODULE_IEEE8021X,
1264                                        HOSTAPD_LEVEL_INFO, "authentication "
1265                                        "server did not include required VLAN "
1266                                        "ID in Access-Accept");
1267                         break;
1268                 }
1269
1270                 ap_sta_bind_vlan(hapd, sta, old_vlanid);
1271
1272                 /* RFC 3580, Ch. 3.17 */
1273                 if (session_timeout_set && termination_action ==
1274                     RADIUS_TERMINATION_ACTION_RADIUS_REQUEST) {
1275                         sm->reAuthPeriod = session_timeout;
1276                 } else if (session_timeout_set)
1277                         ap_sta_session_timeout(hapd, sta, session_timeout);
1278
1279                 sm->eap_if->aaaSuccess = TRUE;
1280                 override_eapReq = 1;
1281                 ieee802_1x_get_keys(hapd, sta, msg, req, shared_secret,
1282                                     shared_secret_len);
1283                 ieee802_1x_store_radius_class(hapd, sta, msg);
1284                 ieee802_1x_update_sta_identity(hapd, sta, msg);
1285                 if (sm->eap_if->eapKeyAvailable &&
1286                     wpa_auth_pmksa_add(sta->wpa_sm, sm->eapol_key_crypt,
1287                                        session_timeout_set ?
1288                                        (int) session_timeout : -1, sm) == 0) {
1289                         hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
1290                                        HOSTAPD_LEVEL_DEBUG,
1291                                        "Added PMKSA cache entry");
1292                 }
1293                 break;
1294         case RADIUS_CODE_ACCESS_REJECT:
1295                 sm->eap_if->aaaFail = TRUE;
1296                 override_eapReq = 1;
1297                 break;
1298         case RADIUS_CODE_ACCESS_CHALLENGE:
1299                 sm->eap_if->aaaEapReq = TRUE;
1300                 if (session_timeout_set) {
1301                         /* RFC 2869, Ch. 2.3.2; RFC 3580, Ch. 3.17 */
1302                         eap_timeout = session_timeout;
1303                 } else
1304                         eap_timeout = 30;
1305                 hostapd_logger(hapd, sm->addr, HOSTAPD_MODULE_IEEE8021X,
1306                                HOSTAPD_LEVEL_DEBUG,
1307                                "using EAP timeout of %d seconds%s",
1308                                eap_timeout,
1309                                session_timeout_set ? " (from RADIUS)" : "");
1310                 eloop_cancel_timeout(ieee802_1x_eap_timeout, sta, NULL);
1311                 eloop_register_timeout(eap_timeout, 0, ieee802_1x_eap_timeout,
1312                                        sta, NULL);
1313                 sm->eap_if->eapTimeout = FALSE;
1314                 break;
1315         }
1316
1317         ieee802_1x_decapsulate_radius(hapd, sta);
1318         if (override_eapReq)
1319                 sm->eap_if->aaaEapReq = FALSE;
1320
1321         eapol_auth_step(sm);
1322
1323         return RADIUS_RX_QUEUED;
1324 }
1325
1326
1327 void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta)
1328 {
1329         struct eapol_state_machine *sm = sta->eapol_sm;
1330         if (sm == NULL)
1331                 return;
1332
1333         hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1334                        HOSTAPD_LEVEL_DEBUG, "aborting authentication");
1335
1336         if (sm->last_recv_radius) {
1337                 radius_msg_free(sm->last_recv_radius);
1338                 os_free(sm->last_recv_radius);
1339                 sm->last_recv_radius = NULL;
1340         }
1341 }
1342
1343
1344 #ifdef HOSTAPD_DUMP_STATE
1345 static void fprint_char(FILE *f, char c)
1346 {
1347         if (c >= 32 && c < 127)
1348                 fprintf(f, "%c", c);
1349         else
1350                 fprintf(f, "<%02x>", c);
1351 }
1352
1353
1354 void ieee802_1x_dump_state(FILE *f, const char *prefix, struct sta_info *sta)
1355 {
1356         struct eapol_state_machine *sm = sta->eapol_sm;
1357         if (sm == NULL)
1358                 return;
1359
1360         fprintf(f, "%sIEEE 802.1X:\n", prefix);
1361
1362         if (sm->identity) {
1363                 size_t i;
1364                 fprintf(f, "%sidentity=", prefix);
1365                 for (i = 0; i < sm->identity_len; i++)
1366                         fprint_char(f, sm->identity[i]);
1367                 fprintf(f, "\n");
1368         }
1369
1370         fprintf(f, "%slast EAP type: Authentication Server: %d (%s) "
1371                 "Supplicant: %d (%s)\n", prefix,
1372                 sm->eap_type_authsrv, eap_type_text(sm->eap_type_authsrv),
1373                 sm->eap_type_supp, eap_type_text(sm->eap_type_supp));
1374
1375         fprintf(f, "%scached_packets=%s\n", prefix,
1376                 sm->last_recv_radius ? "[RX RADIUS]" : "");
1377
1378         eapol_auth_dump_state(f, prefix, sm);
1379 }
1380 #endif /* HOSTAPD_DUMP_STATE */
1381
1382
1383 static int ieee802_1x_rekey_broadcast(struct hostapd_data *hapd)
1384 {
1385         if (hapd->conf->default_wep_key_len < 1)
1386                 return 0;
1387
1388         os_free(hapd->default_wep_key);
1389         hapd->default_wep_key = os_malloc(hapd->conf->default_wep_key_len);
1390         if (hapd->default_wep_key == NULL ||
1391             os_get_random(hapd->default_wep_key,
1392                           hapd->conf->default_wep_key_len)) {
1393                 printf("Could not generate random WEP key.\n");
1394                 os_free(hapd->default_wep_key);
1395                 hapd->default_wep_key = NULL;
1396                 return -1;
1397         }
1398
1399         wpa_hexdump_key(MSG_DEBUG, "IEEE 802.1X: New default WEP key",
1400                         hapd->default_wep_key,
1401                         hapd->conf->default_wep_key_len);
1402
1403         return 0;
1404 }
1405
1406
1407 static int ieee802_1x_sta_key_available(struct hostapd_data *hapd,
1408                                         struct sta_info *sta, void *ctx)
1409 {
1410         if (sta->eapol_sm) {
1411                 sta->eapol_sm->eap_if->eapKeyAvailable = TRUE;
1412                 eapol_auth_step(sta->eapol_sm);
1413         }
1414         return 0;
1415 }
1416
1417
1418 static void ieee802_1x_rekey(void *eloop_ctx, void *timeout_ctx)
1419 {
1420         struct hostapd_data *hapd = eloop_ctx;
1421
1422         if (hapd->default_wep_key_idx >= 3)
1423                 hapd->default_wep_key_idx =
1424                         hapd->conf->individual_wep_key_len > 0 ? 1 : 0;
1425         else
1426                 hapd->default_wep_key_idx++;
1427
1428         wpa_printf(MSG_DEBUG, "IEEE 802.1X: New default WEP key index %d",
1429                    hapd->default_wep_key_idx);
1430                       
1431         if (ieee802_1x_rekey_broadcast(hapd)) {
1432                 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
1433                                HOSTAPD_LEVEL_WARNING, "failed to generate a "
1434                                "new broadcast key");
1435                 os_free(hapd->default_wep_key);
1436                 hapd->default_wep_key = NULL;
1437                 return;
1438         }
1439
1440         /* TODO: Could setup key for RX here, but change default TX keyid only
1441          * after new broadcast key has been sent to all stations. */
1442         if (hostapd_set_encryption(hapd->conf->iface, hapd, "WEP", NULL,
1443                                    hapd->default_wep_key_idx,
1444                                    hapd->default_wep_key,
1445                                    hapd->conf->default_wep_key_len, 1)) {
1446                 hostapd_logger(hapd, NULL, HOSTAPD_MODULE_IEEE8021X,
1447                                HOSTAPD_LEVEL_WARNING, "failed to configure a "
1448                                "new broadcast key");
1449                 os_free(hapd->default_wep_key);
1450                 hapd->default_wep_key = NULL;
1451                 return;
1452         }
1453
1454         ap_for_each_sta(hapd, ieee802_1x_sta_key_available, NULL);
1455
1456         if (hapd->conf->wep_rekeying_period > 0) {
1457                 eloop_register_timeout(hapd->conf->wep_rekeying_period, 0,
1458                                        ieee802_1x_rekey, hapd, NULL);
1459         }
1460 }
1461
1462
1463 static void ieee802_1x_eapol_send(void *ctx, void *sta_ctx, u8 type,
1464                                   const u8 *data, size_t datalen)
1465 {
1466         ieee802_1x_send(ctx, sta_ctx, type, data, datalen);
1467 }
1468
1469
1470 static void ieee802_1x_aaa_send(void *ctx, void *sta_ctx,
1471                                 const u8 *data, size_t datalen)
1472 {
1473         struct hostapd_data *hapd = ctx;
1474         struct sta_info *sta = sta_ctx;
1475
1476         ieee802_1x_encapsulate_radius(hapd, sta, data, datalen);
1477 }
1478
1479
1480 static void _ieee802_1x_finished(void *ctx, void *sta_ctx, int success,
1481                                  int preauth)
1482 {
1483         struct hostapd_data *hapd = ctx;
1484         struct sta_info *sta = sta_ctx;
1485         if (preauth)
1486                 rsn_preauth_finished(hapd, sta, success);
1487         else
1488                 ieee802_1x_finished(hapd, sta, success);
1489 }
1490
1491
1492 static int ieee802_1x_get_eap_user(void *ctx, const u8 *identity,
1493                                    size_t identity_len, int phase2,
1494                                    struct eap_user *user)
1495 {
1496         struct hostapd_data *hapd = ctx;
1497         const struct hostapd_eap_user *eap_user;
1498         int i, count;
1499
1500         eap_user = hostapd_get_eap_user(hapd->conf, identity,
1501                                         identity_len, phase2);
1502         if (eap_user == NULL)
1503                 return -1;
1504
1505         os_memset(user, 0, sizeof(*user));
1506         user->phase2 = phase2;
1507         count = EAP_USER_MAX_METHODS;
1508         if (count > EAP_MAX_METHODS)
1509                 count = EAP_MAX_METHODS;
1510         for (i = 0; i < count; i++) {
1511                 user->methods[i].vendor = eap_user->methods[i].vendor;
1512                 user->methods[i].method = eap_user->methods[i].method;
1513         }
1514
1515         if (eap_user->password) {
1516                 user->password = os_malloc(eap_user->password_len);
1517                 if (user->password == NULL)
1518                         return -1;
1519                 os_memcpy(user->password, eap_user->password,
1520                           eap_user->password_len);
1521                 user->password_len = eap_user->password_len;
1522         }
1523         user->force_version = eap_user->force_version;
1524         user->ttls_auth = eap_user->ttls_auth;
1525
1526         return 0;
1527 }
1528
1529
1530 static int ieee802_1x_sta_entry_alive(void *ctx, const u8 *addr)
1531 {
1532         struct hostapd_data *hapd = ctx;
1533         struct sta_info *sta;
1534         sta = ap_get_sta(hapd, addr);
1535         if (sta == NULL || sta->eapol_sm == NULL)
1536                 return 0;
1537         return 1;
1538 }
1539
1540
1541 static void ieee802_1x_logger(void *ctx, const u8 *addr,
1542                               eapol_logger_level level, const char *txt)
1543 {
1544         struct hostapd_data *hapd = ctx;
1545         int hlevel;
1546
1547         switch (level) {
1548         case EAPOL_LOGGER_WARNING:
1549                 hlevel = HOSTAPD_LEVEL_WARNING;
1550                 break;
1551         case EAPOL_LOGGER_INFO:
1552                 hlevel = HOSTAPD_LEVEL_INFO;
1553                 break;
1554         case EAPOL_LOGGER_DEBUG:
1555         default:
1556                 hlevel = HOSTAPD_LEVEL_DEBUG;
1557                 break;
1558         }
1559
1560         hostapd_logger(hapd, addr, HOSTAPD_MODULE_IEEE8021X, hlevel, "%s",
1561                        txt);
1562 }
1563
1564
1565 static void ieee802_1x_set_port_authorized(void *ctx, void *sta_ctx,
1566                                            int authorized)
1567 {
1568         struct hostapd_data *hapd = ctx;
1569         struct sta_info *sta = sta_ctx;
1570         ieee802_1x_set_sta_authorized(hapd, sta, authorized);
1571 }
1572
1573
1574 static void _ieee802_1x_abort_auth(void *ctx, void *sta_ctx)
1575 {
1576         struct hostapd_data *hapd = ctx;
1577         struct sta_info *sta = sta_ctx;
1578         ieee802_1x_abort_auth(hapd, sta);
1579 }
1580
1581
1582 static void _ieee802_1x_tx_key(void *ctx, void *sta_ctx)
1583 {
1584         struct hostapd_data *hapd = ctx;
1585         struct sta_info *sta = sta_ctx;
1586         ieee802_1x_tx_key(hapd, sta);
1587 }
1588
1589
1590 int ieee802_1x_init(struct hostapd_data *hapd)
1591 {
1592         int i;
1593         struct eapol_auth_config conf;
1594         struct eapol_auth_cb cb;
1595
1596         os_memset(&conf, 0, sizeof(conf));
1597         conf.hapd = hapd;
1598         conf.eap_reauth_period = hapd->conf->eap_reauth_period;
1599         conf.wpa = hapd->conf->wpa;
1600         conf.individual_wep_key_len = hapd->conf->individual_wep_key_len;
1601         conf.eap_server = hapd->conf->eap_server;
1602         conf.ssl_ctx = hapd->ssl_ctx;
1603         conf.eap_sim_db_priv = hapd->eap_sim_db_priv;
1604         conf.eap_req_id_text = hapd->conf->eap_req_id_text;
1605         conf.eap_req_id_text_len = hapd->conf->eap_req_id_text_len;
1606         conf.pac_opaque_encr_key = hapd->conf->pac_opaque_encr_key;
1607         conf.eap_fast_a_id = hapd->conf->eap_fast_a_id;
1608         conf.eap_fast_prov = hapd->conf->eap_fast_prov;
1609         conf.pac_key_lifetime = hapd->conf->pac_key_lifetime;
1610         conf.pac_key_refresh_time = hapd->conf->pac_key_refresh_time;
1611         conf.eap_sim_aka_result_ind = hapd->conf->eap_sim_aka_result_ind;
1612         conf.tnc = hapd->conf->tnc;
1613
1614         os_memset(&cb, 0, sizeof(cb));
1615         cb.eapol_send = ieee802_1x_eapol_send;
1616         cb.aaa_send = ieee802_1x_aaa_send;
1617         cb.finished = _ieee802_1x_finished;
1618         cb.get_eap_user = ieee802_1x_get_eap_user;
1619         cb.sta_entry_alive = ieee802_1x_sta_entry_alive;
1620         cb.logger = ieee802_1x_logger;
1621         cb.set_port_authorized = ieee802_1x_set_port_authorized;
1622         cb.abort_auth = _ieee802_1x_abort_auth;
1623         cb.tx_key = _ieee802_1x_tx_key;
1624
1625         hapd->eapol_auth = eapol_auth_init(&conf, &cb);
1626         if (hapd->eapol_auth == NULL)
1627                 return -1;
1628
1629         if ((hapd->conf->ieee802_1x || hapd->conf->wpa) &&
1630             hostapd_set_ieee8021x(hapd->conf->iface, hapd, 1))
1631                 return -1;
1632
1633         if (radius_client_register(hapd->radius, RADIUS_AUTH,
1634                                    ieee802_1x_receive_auth, hapd))
1635                 return -1;
1636
1637         if (hapd->conf->default_wep_key_len) {
1638                 hostapd_set_privacy(hapd, 1);
1639
1640                 for (i = 0; i < 4; i++)
1641                         hostapd_set_encryption(hapd->conf->iface, hapd,
1642                                                "none", NULL, i, NULL, 0, 0);
1643
1644                 ieee802_1x_rekey(hapd, NULL);
1645
1646                 if (hapd->default_wep_key == NULL)
1647                         return -1;
1648         }
1649
1650         return 0;
1651 }
1652
1653
1654 void ieee802_1x_deinit(struct hostapd_data *hapd)
1655 {
1656         eloop_cancel_timeout(ieee802_1x_rekey, hapd, NULL);
1657
1658         if (hapd->driver != NULL &&
1659             (hapd->conf->ieee802_1x || hapd->conf->wpa))
1660                 hostapd_set_ieee8021x(hapd->conf->iface, hapd, 0);
1661
1662         eapol_auth_deinit(hapd->eapol_auth);
1663         hapd->eapol_auth = NULL;
1664 }
1665
1666
1667 int ieee802_1x_reconfig(struct hostapd_data *hapd, 
1668                         struct hostapd_config *oldconf,
1669                         struct hostapd_bss_config *oldbss)
1670 {
1671         ieee802_1x_deinit(hapd);
1672         return ieee802_1x_init(hapd);
1673 }
1674
1675
1676 int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta,
1677                          u8 *buf, size_t len, int ack)
1678 {
1679         struct ieee80211_hdr *hdr;
1680         struct ieee802_1x_hdr *xhdr;
1681         struct ieee802_1x_eapol_key *key;
1682         u8 *pos;
1683         const unsigned char rfc1042_hdr[ETH_ALEN] =
1684                 { 0xaa, 0xaa, 0x03, 0x00, 0x00, 0x00 };
1685
1686         if (sta == NULL)
1687                 return -1;
1688         if (len < sizeof(*hdr) + sizeof(rfc1042_hdr) + 2 + sizeof(*xhdr))
1689                 return 0;
1690
1691         hdr = (struct ieee80211_hdr *) buf;
1692         pos = (u8 *) (hdr + 1);
1693         if (os_memcmp(pos, rfc1042_hdr, sizeof(rfc1042_hdr)) != 0)
1694                 return 0;
1695         pos += sizeof(rfc1042_hdr);
1696         if (WPA_GET_BE16(pos) != ETH_P_PAE)
1697                 return 0;
1698         pos += 2;
1699
1700         xhdr = (struct ieee802_1x_hdr *) pos;
1701         pos += sizeof(*xhdr);
1702
1703         wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR " TX status - version=%d "
1704                    "type=%d length=%d - ack=%d",
1705                    MAC2STR(sta->addr), xhdr->version, xhdr->type,
1706                    be_to_host16(xhdr->length), ack);
1707
1708         /* EAPOL EAP-Packet packets are eventually re-sent by either Supplicant
1709          * or Authenticator state machines, but EAPOL-Key packets are not
1710          * retransmitted in case of failure. Try to re-sent failed EAPOL-Key
1711          * packets couple of times because otherwise STA keys become
1712          * unsynchronized with AP. */
1713         if (xhdr->type == IEEE802_1X_TYPE_EAPOL_KEY && !ack &&
1714             pos + sizeof(*key) <= buf + len) {
1715                 key = (struct ieee802_1x_eapol_key *) pos;
1716                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_IEEE8021X,
1717                                HOSTAPD_LEVEL_DEBUG, "did not Ack EAPOL-Key "
1718                                "frame (%scast index=%d)",
1719                                key->key_index & BIT(7) ? "uni" : "broad",
1720                                key->key_index & ~BIT(7));
1721                 /* TODO: re-send EAPOL-Key couple of times (with short delay
1722                  * between them?). If all attempt fail, report error and
1723                  * deauthenticate STA so that it will get new keys when
1724                  * authenticating again (e.g., after returning in range).
1725                  * Separate limit/transmit state needed both for unicast and
1726                  * broadcast keys(?) */
1727         }
1728         /* TODO: could move unicast key configuration from ieee802_1x_tx_key()
1729          * to here and change the key only if the EAPOL-Key packet was Acked.
1730          */
1731
1732         return 1;
1733 }
1734
1735
1736 u8 * ieee802_1x_get_identity(struct eapol_state_machine *sm, size_t *len)
1737 {
1738         if (sm == NULL || sm->identity == NULL)
1739                 return NULL;
1740
1741         *len = sm->identity_len;
1742         return sm->identity;
1743 }
1744
1745
1746 u8 * ieee802_1x_get_radius_class(struct eapol_state_machine *sm, size_t *len,
1747                                  int idx)
1748 {
1749         if (sm == NULL || sm->radius_class.attr == NULL ||
1750             idx >= (int) sm->radius_class.count)
1751                 return NULL;
1752
1753         *len = sm->radius_class.attr[idx].len;
1754         return sm->radius_class.attr[idx].data;
1755 }
1756
1757
1758 const u8 * ieee802_1x_get_key(struct eapol_state_machine *sm, size_t *len)
1759 {
1760         if (sm == NULL)
1761                 return NULL;
1762
1763         *len = sm->eap_if->eapKeyDataLen;
1764         return sm->eap_if->eapKeyData;
1765 }
1766
1767
1768 void ieee802_1x_notify_port_enabled(struct eapol_state_machine *sm,
1769                                     int enabled)
1770 {
1771         if (sm == NULL)
1772                 return;
1773         sm->eap_if->portEnabled = enabled ? TRUE : FALSE;
1774         eapol_auth_step(sm);
1775 }
1776
1777
1778 void ieee802_1x_notify_port_valid(struct eapol_state_machine *sm,
1779                                   int valid)
1780 {
1781         if (sm == NULL)
1782                 return;
1783         sm->portValid = valid ? TRUE : FALSE;
1784         eapol_auth_step(sm);
1785 }
1786
1787
1788 void ieee802_1x_notify_pre_auth(struct eapol_state_machine *sm, int pre_auth)
1789 {
1790         if (sm == NULL)
1791                 return;
1792         if (pre_auth)
1793                 sm->flags |= EAPOL_SM_PREAUTH;
1794         else
1795                 sm->flags &= ~EAPOL_SM_PREAUTH;
1796 }
1797
1798
1799 static const char * bool_txt(Boolean bool)
1800 {
1801         return bool ? "TRUE" : "FALSE";
1802 }
1803
1804
1805 int ieee802_1x_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen)
1806 {
1807         /* TODO */
1808         return 0;
1809 }
1810
1811
1812 int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
1813                            char *buf, size_t buflen)
1814 {
1815         int len = 0, ret;
1816         struct eapol_state_machine *sm = sta->eapol_sm;
1817
1818         if (sm == NULL)
1819                 return 0;
1820
1821         ret = os_snprintf(buf + len, buflen - len,
1822                           "dot1xPaePortNumber=%d\n"
1823                           "dot1xPaePortProtocolVersion=%d\n"
1824                           "dot1xPaePortCapabilities=1\n"
1825                           "dot1xPaePortInitialize=%d\n"
1826                           "dot1xPaePortReauthenticate=FALSE\n",
1827                           sta->aid,
1828                           EAPOL_VERSION,
1829                           sm->initialize);
1830         if (ret < 0 || (size_t) ret >= buflen - len)
1831                 return len;
1832         len += ret;
1833
1834         /* dot1xAuthConfigTable */
1835         ret = os_snprintf(buf + len, buflen - len,
1836                           "dot1xAuthPaeState=%d\n"
1837                           "dot1xAuthBackendAuthState=%d\n"
1838                           "dot1xAuthAdminControlledDirections=%d\n"
1839                           "dot1xAuthOperControlledDirections=%d\n"
1840                           "dot1xAuthAuthControlledPortStatus=%d\n"
1841                           "dot1xAuthAuthControlledPortControl=%d\n"
1842                           "dot1xAuthQuietPeriod=%u\n"
1843                           "dot1xAuthServerTimeout=%u\n"
1844                           "dot1xAuthReAuthPeriod=%u\n"
1845                           "dot1xAuthReAuthEnabled=%s\n"
1846                           "dot1xAuthKeyTxEnabled=%s\n",
1847                           sm->auth_pae_state + 1,
1848                           sm->be_auth_state + 1,
1849                           sm->adminControlledDirections,
1850                           sm->operControlledDirections,
1851                           sm->authPortStatus,
1852                           sm->portControl,
1853                           sm->quietPeriod,
1854                           sm->serverTimeout,
1855                           sm->reAuthPeriod,
1856                           bool_txt(sm->reAuthEnabled),
1857                           bool_txt(sm->keyTxEnabled));
1858         if (ret < 0 || (size_t) ret >= buflen - len)
1859                 return len;
1860         len += ret;
1861
1862         /* dot1xAuthStatsTable */
1863         ret = os_snprintf(buf + len, buflen - len,
1864                           "dot1xAuthEapolFramesRx=%u\n"
1865                           "dot1xAuthEapolFramesTx=%u\n"
1866                           "dot1xAuthEapolStartFramesRx=%u\n"
1867                           "dot1xAuthEapolLogoffFramesRx=%u\n"
1868                           "dot1xAuthEapolRespIdFramesRx=%u\n"
1869                           "dot1xAuthEapolRespFramesRx=%u\n"
1870                           "dot1xAuthEapolReqIdFramesTx=%u\n"
1871                           "dot1xAuthEapolReqFramesTx=%u\n"
1872                           "dot1xAuthInvalidEapolFramesRx=%u\n"
1873                           "dot1xAuthEapLengthErrorFramesRx=%u\n"
1874                           "dot1xAuthLastEapolFrameVersion=%u\n"
1875                           "dot1xAuthLastEapolFrameSource=" MACSTR "\n",
1876                           sm->dot1xAuthEapolFramesRx,
1877                           sm->dot1xAuthEapolFramesTx,
1878                           sm->dot1xAuthEapolStartFramesRx,
1879                           sm->dot1xAuthEapolLogoffFramesRx,
1880                           sm->dot1xAuthEapolRespIdFramesRx,
1881                           sm->dot1xAuthEapolRespFramesRx,
1882                           sm->dot1xAuthEapolReqIdFramesTx,
1883                           sm->dot1xAuthEapolReqFramesTx,
1884                           sm->dot1xAuthInvalidEapolFramesRx,
1885                           sm->dot1xAuthEapLengthErrorFramesRx,
1886                           sm->dot1xAuthLastEapolFrameVersion,
1887                           MAC2STR(sm->addr));
1888         if (ret < 0 || (size_t) ret >= buflen - len)
1889                 return len;
1890         len += ret;
1891
1892         /* dot1xAuthDiagTable */
1893         ret = os_snprintf(buf + len, buflen - len,
1894                           "dot1xAuthEntersConnecting=%u\n"
1895                           "dot1xAuthEapLogoffsWhileConnecting=%u\n"
1896                           "dot1xAuthEntersAuthenticating=%u\n"
1897                           "dot1xAuthAuthSuccessesWhileAuthenticating=%u\n"
1898                           "dot1xAuthAuthTimeoutsWhileAuthenticating=%u\n"
1899                           "dot1xAuthAuthFailWhileAuthenticating=%u\n"
1900                           "dot1xAuthAuthEapStartsWhileAuthenticating=%u\n"
1901                           "dot1xAuthAuthEapLogoffWhileAuthenticating=%u\n"
1902                           "dot1xAuthAuthReauthsWhileAuthenticated=%u\n"
1903                           "dot1xAuthAuthEapStartsWhileAuthenticated=%u\n"
1904                           "dot1xAuthAuthEapLogoffWhileAuthenticated=%u\n"
1905                           "dot1xAuthBackendResponses=%u\n"
1906                           "dot1xAuthBackendAccessChallenges=%u\n"
1907                           "dot1xAuthBackendOtherRequestsToSupplicant=%u\n"
1908                           "dot1xAuthBackendAuthSuccesses=%u\n"
1909                           "dot1xAuthBackendAuthFails=%u\n",
1910                           sm->authEntersConnecting,
1911                           sm->authEapLogoffsWhileConnecting,
1912                           sm->authEntersAuthenticating,
1913                           sm->authAuthSuccessesWhileAuthenticating,
1914                           sm->authAuthTimeoutsWhileAuthenticating,
1915                           sm->authAuthFailWhileAuthenticating,
1916                           sm->authAuthEapStartsWhileAuthenticating,
1917                           sm->authAuthEapLogoffWhileAuthenticating,
1918                           sm->authAuthReauthsWhileAuthenticated,
1919                           sm->authAuthEapStartsWhileAuthenticated,
1920                           sm->authAuthEapLogoffWhileAuthenticated,
1921                           sm->backendResponses,
1922                           sm->backendAccessChallenges,
1923                           sm->backendOtherRequestsToSupplicant,
1924                           sm->backendAuthSuccesses,
1925                           sm->backendAuthFails);
1926         if (ret < 0 || (size_t) ret >= buflen - len)
1927                 return len;
1928         len += ret;
1929
1930         /* dot1xAuthSessionStatsTable */
1931         ret = os_snprintf(buf + len, buflen - len,
1932                           /* TODO: dot1xAuthSessionOctetsRx */
1933                           /* TODO: dot1xAuthSessionOctetsTx */
1934                           /* TODO: dot1xAuthSessionFramesRx */
1935                           /* TODO: dot1xAuthSessionFramesTx */
1936                           "dot1xAuthSessionId=%08X-%08X\n"
1937                           "dot1xAuthSessionAuthenticMethod=%d\n"
1938                           "dot1xAuthSessionTime=%u\n"
1939                           "dot1xAuthSessionTerminateCause=999\n"
1940                           "dot1xAuthSessionUserName=%s\n",
1941                           sta->acct_session_id_hi, sta->acct_session_id_lo,
1942                           (wpa_key_mgmt_wpa_ieee8021x(
1943                                    wpa_auth_sta_key_mgmt(sta->wpa_sm))) ?
1944                           1 : 2,
1945                           (unsigned int) (time(NULL) -
1946                                           sta->acct_session_start),
1947                           sm->identity);
1948         if (ret < 0 || (size_t) ret >= buflen - len)
1949                 return len;
1950         len += ret;
1951
1952         return len;
1953 }
1954
1955
1956 static void ieee802_1x_finished(struct hostapd_data *hapd,
1957                                 struct sta_info *sta, int success)
1958 {
1959         const u8 *key;
1960         size_t len;
1961         /* TODO: get PMKLifetime from WPA parameters */
1962         static const int dot11RSNAConfigPMKLifetime = 43200;
1963
1964         key = ieee802_1x_get_key(sta->eapol_sm, &len);
1965         if (success && key && len >= PMK_LEN &&
1966             wpa_auth_pmksa_add(sta->wpa_sm, key, dot11RSNAConfigPMKLifetime,
1967                                sta->eapol_sm) == 0) {
1968                 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_WPA,
1969                                HOSTAPD_LEVEL_DEBUG,
1970                                "Added PMKSA cache entry (IEEE 802.1X)");
1971         }
1972 }