1 /* 2 * IEEE 802.1X-2004 Authenticator - EAPOL state machine 3 * Copyright (c) 2002-2009, 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 "includes.h" 10 11 #include "common.h" 12 #include "eloop.h" 13 #include "state_machine.h" 14 #include "common/eapol_common.h" 15 #include "eap_common/eap_defs.h" 16 #include "eap_common/eap_common.h" 17 #include "eap_server/eap.h" 18 #include "eapol_auth_sm.h" 19 #include "eapol_auth_sm_i.h" 20 21 #define STATE_MACHINE_DATA struct eapol_state_machine 22 #define STATE_MACHINE_DEBUG_PREFIX "IEEE 802.1X" 23 #define STATE_MACHINE_ADDR sm->addr 24 25 static struct eapol_callbacks eapol_cb; 26 27 /* EAPOL state machines are described in IEEE Std 802.1X-2004, Chap. 8.2 */ 28 29 #define setPortAuthorized() \ 30 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 1) 31 #define setPortUnauthorized() \ 32 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 0) 33 34 /* procedures */ 35 #define txCannedFail() eapol_auth_tx_canned_eap(sm, 0) 36 #define txCannedSuccess() eapol_auth_tx_canned_eap(sm, 1) 37 #define txReq() eapol_auth_tx_req(sm) 38 #define abortAuth() sm->eapol->cb.abort_auth(sm->eapol->conf.ctx, sm->sta) 39 #define txKey() sm->eapol->cb.tx_key(sm->eapol->conf.ctx, sm->sta) 40 #define processKey() do { } while (0) 41 42 43 static void eapol_sm_step_run(struct eapol_state_machine *sm); 44 static void eapol_sm_step_cb(void *eloop_ctx, void *timeout_ctx); 45 static void eapol_auth_initialize(struct eapol_state_machine *sm); 46 47 48 static void eapol_auth_logger(struct eapol_authenticator *eapol, 49 const u8 *addr, eapol_logger_level level, 50 const char *txt) 51 { 52 if (eapol->cb.logger == NULL) 53 return; 54 eapol->cb.logger(eapol->conf.ctx, addr, level, txt); 55 } 56 57 58 static void eapol_auth_vlogger(struct eapol_authenticator *eapol, 59 const u8 *addr, eapol_logger_level level, 60 const char *fmt, ...) 61 { 62 char *format; 63 int maxlen; 64 va_list ap; 65 66 if (eapol->cb.logger == NULL) 67 return; 68 69 maxlen = os_strlen(fmt) + 100; 70 format = os_malloc(maxlen); 71 if (!format) 72 return; 73 74 va_start(ap, fmt); 75 vsnprintf(format, maxlen, fmt, ap); 76 va_end(ap); 77 78 eapol_auth_logger(eapol, addr, level, format); 79 80 os_free(format); 81 } 82 83 84 static void eapol_auth_tx_canned_eap(struct eapol_state_machine *sm, 85 int success) 86 { 87 struct eap_hdr eap; 88 89 os_memset(&eap, 0, sizeof(eap)); 90 91 eap.code = success ? EAP_CODE_SUCCESS : EAP_CODE_FAILURE; 92 eap.identifier = ++sm->last_eap_id; 93 eap.length = host_to_be16(sizeof(eap)); 94 95 eapol_auth_vlogger(sm->eapol, sm->addr, EAPOL_LOGGER_DEBUG, 96 "Sending canned EAP packet %s (identifier %d)", 97 success ? "SUCCESS" : "FAILURE", eap.identifier); 98 sm->eapol->cb.eapol_send(sm->eapol->conf.ctx, sm->sta, 99 IEEE802_1X_TYPE_EAP_PACKET, 100 (u8 *) &eap, sizeof(eap)); 101 sm->dot1xAuthEapolFramesTx++; 102 } 103 104 105 static void eapol_auth_tx_req(struct eapol_state_machine *sm) 106 { 107 if (sm->eap_if->eapReqData == NULL || 108 wpabuf_len(sm->eap_if->eapReqData) < sizeof(struct eap_hdr)) { 109 eapol_auth_logger(sm->eapol, sm->addr, 110 EAPOL_LOGGER_DEBUG, 111 "TxReq called, but there is no EAP request " 112 "from authentication server"); 113 return; 114 } 115 116 if (sm->flags & EAPOL_SM_WAIT_START) { 117 wpa_printf(MSG_DEBUG, "EAPOL: Drop EAPOL TX to " MACSTR 118 " while waiting for EAPOL-Start", 119 MAC2STR(sm->addr)); 120 return; 121 } 122 123 sm->last_eap_id = eap_get_id(sm->eap_if->eapReqData); 124 eapol_auth_vlogger(sm->eapol, sm->addr, EAPOL_LOGGER_DEBUG, 125 "Sending EAP Packet (identifier %d)", 126 sm->last_eap_id); 127 sm->eapol->cb.eapol_send(sm->eapol->conf.ctx, sm->sta, 128 IEEE802_1X_TYPE_EAP_PACKET, 129 wpabuf_head(sm->eap_if->eapReqData), 130 wpabuf_len(sm->eap_if->eapReqData)); 131 sm->dot1xAuthEapolFramesTx++; 132 if (eap_get_type(sm->eap_if->eapReqData) == EAP_TYPE_IDENTITY) 133 sm->dot1xAuthEapolReqIdFramesTx++; 134 else 135 sm->dot1xAuthEapolReqFramesTx++; 136 } 137 138 139 /** 140 * eapol_port_timers_tick - Port Timers state machine 141 * @eloop_ctx: struct eapol_state_machine * 142 * @timeout_ctx: Not used 143 * 144 * This statemachine is implemented as a function that will be called 145 * once a second as a registered event loop timeout. 146 */ 147 static void eapol_port_timers_tick(void *eloop_ctx, void *timeout_ctx) 148 { 149 struct eapol_state_machine *state = timeout_ctx; 150 151 if (state->aWhile > 0) { 152 state->aWhile--; 153 if (state->aWhile == 0) { 154 wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR 155 " - aWhile --> 0", 156 MAC2STR(state->addr)); 157 } 158 } 159 160 if (state->quietWhile > 0) { 161 state->quietWhile--; 162 if (state->quietWhile == 0) { 163 wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR 164 " - quietWhile --> 0", 165 MAC2STR(state->addr)); 166 } 167 } 168 169 if (state->reAuthWhen > 0) { 170 state->reAuthWhen--; 171 if (state->reAuthWhen == 0) { 172 wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR 173 " - reAuthWhen --> 0", 174 MAC2STR(state->addr)); 175 } 176 } 177 178 if (state->eap_if->retransWhile > 0) { 179 state->eap_if->retransWhile--; 180 if (state->eap_if->retransWhile == 0) { 181 wpa_printf(MSG_DEBUG, "IEEE 802.1X: " MACSTR 182 " - (EAP) retransWhile --> 0", 183 MAC2STR(state->addr)); 184 } 185 } 186 187 eapol_sm_step_run(state); 188 189 eloop_register_timeout(1, 0, eapol_port_timers_tick, eloop_ctx, state); 190 } 191 192 193 194 /* Authenticator PAE state machine */ 195 196 SM_STATE(AUTH_PAE, INITIALIZE) 197 { 198 SM_ENTRY_MA(AUTH_PAE, INITIALIZE, auth_pae); 199 sm->portMode = Auto; 200 } 201 202 203 SM_STATE(AUTH_PAE, DISCONNECTED) 204 { 205 int from_initialize = sm->auth_pae_state == AUTH_PAE_INITIALIZE; 206 207 if (sm->eapolLogoff) { 208 if (sm->auth_pae_state == AUTH_PAE_CONNECTING) 209 sm->authEapLogoffsWhileConnecting++; 210 else if (sm->auth_pae_state == AUTH_PAE_AUTHENTICATED) 211 sm->authAuthEapLogoffWhileAuthenticated++; 212 } 213 214 SM_ENTRY_MA(AUTH_PAE, DISCONNECTED, auth_pae); 215 216 sm->authPortStatus = Unauthorized; 217 setPortUnauthorized(); 218 sm->reAuthCount = 0; 219 sm->eapolLogoff = FALSE; 220 if (!from_initialize) { 221 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0, 222 sm->flags & EAPOL_SM_PREAUTH); 223 } 224 } 225 226 227 SM_STATE(AUTH_PAE, RESTART) 228 { 229 if (sm->auth_pae_state == AUTH_PAE_AUTHENTICATED) { 230 if (sm->reAuthenticate) 231 sm->authAuthReauthsWhileAuthenticated++; 232 if (sm->eapolStart) 233 sm->authAuthEapStartsWhileAuthenticated++; 234 if (sm->eapolLogoff) 235 sm->authAuthEapLogoffWhileAuthenticated++; 236 } 237 238 SM_ENTRY_MA(AUTH_PAE, RESTART, auth_pae); 239 240 sm->eap_if->eapRestart = TRUE; 241 } 242 243 244 SM_STATE(AUTH_PAE, CONNECTING) 245 { 246 if (sm->auth_pae_state != AUTH_PAE_CONNECTING) 247 sm->authEntersConnecting++; 248 249 SM_ENTRY_MA(AUTH_PAE, CONNECTING, auth_pae); 250 251 sm->reAuthenticate = FALSE; 252 sm->reAuthCount++; 253 } 254 255 256 SM_STATE(AUTH_PAE, HELD) 257 { 258 if (sm->auth_pae_state == AUTH_PAE_AUTHENTICATING && sm->authFail) 259 sm->authAuthFailWhileAuthenticating++; 260 261 SM_ENTRY_MA(AUTH_PAE, HELD, auth_pae); 262 263 sm->authPortStatus = Unauthorized; 264 setPortUnauthorized(); 265 sm->quietWhile = sm->quietPeriod; 266 sm->eapolLogoff = FALSE; 267 268 eapol_auth_vlogger(sm->eapol, sm->addr, EAPOL_LOGGER_WARNING, 269 "authentication failed - EAP type: %d (%s)", 270 sm->eap_type_authsrv, 271 eap_server_get_name(0, sm->eap_type_authsrv)); 272 if (sm->eap_type_authsrv != sm->eap_type_supp) { 273 eapol_auth_vlogger(sm->eapol, sm->addr, EAPOL_LOGGER_INFO, 274 "Supplicant used different EAP type: " 275 "%d (%s)", sm->eap_type_supp, 276 eap_server_get_name(0, sm->eap_type_supp)); 277 } 278 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0, 279 sm->flags & EAPOL_SM_PREAUTH); 280 } 281 282 283 SM_STATE(AUTH_PAE, AUTHENTICATED) 284 { 285 char *extra = ""; 286 287 if (sm->auth_pae_state == AUTH_PAE_AUTHENTICATING && sm->authSuccess) 288 sm->authAuthSuccessesWhileAuthenticating++; 289 290 SM_ENTRY_MA(AUTH_PAE, AUTHENTICATED, auth_pae); 291 292 sm->authPortStatus = Authorized; 293 setPortAuthorized(); 294 sm->reAuthCount = 0; 295 if (sm->flags & EAPOL_SM_PREAUTH) 296 extra = " (pre-authentication)"; 297 else if (sm->flags & EAPOL_SM_FROM_PMKSA_CACHE) 298 extra = " (PMKSA cache)"; 299 eapol_auth_vlogger(sm->eapol, sm->addr, EAPOL_LOGGER_INFO, 300 "authenticated - EAP type: %d (%s)%s", 301 sm->eap_type_authsrv, 302 eap_server_get_name(0, sm->eap_type_authsrv), 303 extra); 304 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 1, 305 sm->flags & EAPOL_SM_PREAUTH); 306 } 307 308 309 SM_STATE(AUTH_PAE, AUTHENTICATING) 310 { 311 SM_ENTRY_MA(AUTH_PAE, AUTHENTICATING, auth_pae); 312 313 sm->eapolStart = FALSE; 314 sm->authSuccess = FALSE; 315 sm->authFail = FALSE; 316 sm->authTimeout = FALSE; 317 sm->authStart = TRUE; 318 sm->keyRun = FALSE; 319 sm->keyDone = FALSE; 320 } 321 322 323 SM_STATE(AUTH_PAE, ABORTING) 324 { 325 if (sm->auth_pae_state == AUTH_PAE_AUTHENTICATING) { 326 if (sm->authTimeout) 327 sm->authAuthTimeoutsWhileAuthenticating++; 328 if (sm->eapolStart) 329 sm->authAuthEapStartsWhileAuthenticating++; 330 if (sm->eapolLogoff) 331 sm->authAuthEapLogoffWhileAuthenticating++; 332 } 333 334 SM_ENTRY_MA(AUTH_PAE, ABORTING, auth_pae); 335 336 sm->authAbort = TRUE; 337 sm->keyRun = FALSE; 338 sm->keyDone = FALSE; 339 } 340 341 342 SM_STATE(AUTH_PAE, FORCE_AUTH) 343 { 344 SM_ENTRY_MA(AUTH_PAE, FORCE_AUTH, auth_pae); 345 346 sm->authPortStatus = Authorized; 347 setPortAuthorized(); 348 sm->portMode = ForceAuthorized; 349 sm->eapolStart = FALSE; 350 txCannedSuccess(); 351 } 352 353 354 SM_STATE(AUTH_PAE, FORCE_UNAUTH) 355 { 356 SM_ENTRY_MA(AUTH_PAE, FORCE_UNAUTH, auth_pae); 357 358 sm->authPortStatus = Unauthorized; 359 setPortUnauthorized(); 360 sm->portMode = ForceUnauthorized; 361 sm->eapolStart = FALSE; 362 txCannedFail(); 363 } 364 365 366 SM_STEP(AUTH_PAE) 367 { 368 if ((sm->portControl == Auto && sm->portMode != sm->portControl) || 369 sm->initialize || !sm->eap_if->portEnabled) 370 SM_ENTER_GLOBAL(AUTH_PAE, INITIALIZE); 371 else if (sm->portControl == ForceAuthorized && 372 sm->portMode != sm->portControl && 373 !(sm->initialize || !sm->eap_if->portEnabled)) 374 SM_ENTER_GLOBAL(AUTH_PAE, FORCE_AUTH); 375 else if (sm->portControl == ForceUnauthorized && 376 sm->portMode != sm->portControl && 377 !(sm->initialize || !sm->eap_if->portEnabled)) 378 SM_ENTER_GLOBAL(AUTH_PAE, FORCE_UNAUTH); 379 else { 380 switch (sm->auth_pae_state) { 381 case AUTH_PAE_INITIALIZE: 382 SM_ENTER(AUTH_PAE, DISCONNECTED); 383 break; 384 case AUTH_PAE_DISCONNECTED: 385 SM_ENTER(AUTH_PAE, RESTART); 386 break; 387 case AUTH_PAE_RESTART: 388 if (!sm->eap_if->eapRestart) 389 SM_ENTER(AUTH_PAE, CONNECTING); 390 break; 391 case AUTH_PAE_HELD: 392 if (sm->quietWhile == 0) 393 SM_ENTER(AUTH_PAE, RESTART); 394 break; 395 case AUTH_PAE_CONNECTING: 396 if (sm->eapolLogoff || sm->reAuthCount > sm->reAuthMax) 397 SM_ENTER(AUTH_PAE, DISCONNECTED); 398 else if ((sm->eap_if->eapReq && 399 sm->reAuthCount <= sm->reAuthMax) || 400 sm->eap_if->eapSuccess || sm->eap_if->eapFail) 401 SM_ENTER(AUTH_PAE, AUTHENTICATING); 402 break; 403 case AUTH_PAE_AUTHENTICATED: 404 if (sm->eapolStart || sm->reAuthenticate) 405 SM_ENTER(AUTH_PAE, RESTART); 406 else if (sm->eapolLogoff || !sm->portValid) 407 SM_ENTER(AUTH_PAE, DISCONNECTED); 408 break; 409 case AUTH_PAE_AUTHENTICATING: 410 if (sm->authSuccess && sm->portValid) 411 SM_ENTER(AUTH_PAE, AUTHENTICATED); 412 else if (sm->authFail || 413 (sm->keyDone && !sm->portValid)) 414 SM_ENTER(AUTH_PAE, HELD); 415 else if (sm->eapolStart || sm->eapolLogoff || 416 sm->authTimeout) 417 SM_ENTER(AUTH_PAE, ABORTING); 418 break; 419 case AUTH_PAE_ABORTING: 420 if (sm->eapolLogoff && !sm->authAbort) 421 SM_ENTER(AUTH_PAE, DISCONNECTED); 422 else if (!sm->eapolLogoff && !sm->authAbort) 423 SM_ENTER(AUTH_PAE, RESTART); 424 break; 425 case AUTH_PAE_FORCE_AUTH: 426 if (sm->eapolStart) 427 SM_ENTER(AUTH_PAE, FORCE_AUTH); 428 break; 429 case AUTH_PAE_FORCE_UNAUTH: 430 if (sm->eapolStart) 431 SM_ENTER(AUTH_PAE, FORCE_UNAUTH); 432 break; 433 } 434 } 435 } 436 437 438 439 /* Backend Authentication state machine */ 440 441 SM_STATE(BE_AUTH, INITIALIZE) 442 { 443 SM_ENTRY_MA(BE_AUTH, INITIALIZE, be_auth); 444 445 abortAuth(); 446 sm->eap_if->eapNoReq = FALSE; 447 sm->authAbort = FALSE; 448 } 449 450 451 SM_STATE(BE_AUTH, REQUEST) 452 { 453 SM_ENTRY_MA(BE_AUTH, REQUEST, be_auth); 454 455 txReq(); 456 sm->eap_if->eapReq = FALSE; 457 sm->backendOtherRequestsToSupplicant++; 458 459 /* 460 * Clearing eapolEap here is not specified in IEEE Std 802.1X-2004, but 461 * it looks like this would be logical thing to do there since the old 462 * EAP response would not be valid anymore after the new EAP request 463 * was sent out. 464 * 465 * A race condition has been reported, in which hostapd ended up 466 * sending out EAP-Response/Identity as a response to the first 467 * EAP-Request from the main EAP method. This can be avoided by 468 * clearing eapolEap here. 469 */ 470 sm->eapolEap = FALSE; 471 } 472 473 474 SM_STATE(BE_AUTH, RESPONSE) 475 { 476 SM_ENTRY_MA(BE_AUTH, RESPONSE, be_auth); 477 478 sm->authTimeout = FALSE; 479 sm->eapolEap = FALSE; 480 sm->eap_if->eapNoReq = FALSE; 481 sm->aWhile = sm->serverTimeout; 482 sm->eap_if->eapResp = TRUE; 483 /* sendRespToServer(); */ 484 sm->backendResponses++; 485 } 486 487 488 SM_STATE(BE_AUTH, SUCCESS) 489 { 490 SM_ENTRY_MA(BE_AUTH, SUCCESS, be_auth); 491 492 txReq(); 493 sm->authSuccess = TRUE; 494 sm->keyRun = TRUE; 495 } 496 497 498 SM_STATE(BE_AUTH, FAIL) 499 { 500 SM_ENTRY_MA(BE_AUTH, FAIL, be_auth); 501 502 txReq(); 503 sm->authFail = TRUE; 504 } 505 506 507 SM_STATE(BE_AUTH, TIMEOUT) 508 { 509 SM_ENTRY_MA(BE_AUTH, TIMEOUT, be_auth); 510 511 sm->authTimeout = TRUE; 512 } 513 514 515 SM_STATE(BE_AUTH, IDLE) 516 { 517 SM_ENTRY_MA(BE_AUTH, IDLE, be_auth); 518 519 sm->authStart = FALSE; 520 } 521 522 523 SM_STATE(BE_AUTH, IGNORE) 524 { 525 SM_ENTRY_MA(BE_AUTH, IGNORE, be_auth); 526 527 sm->eap_if->eapNoReq = FALSE; 528 } 529 530 531 SM_STEP(BE_AUTH) 532 { 533 if (sm->portControl != Auto || sm->initialize || sm->authAbort) { 534 SM_ENTER_GLOBAL(BE_AUTH, INITIALIZE); 535 return; 536 } 537 538 switch (sm->be_auth_state) { 539 case BE_AUTH_INITIALIZE: 540 SM_ENTER(BE_AUTH, IDLE); 541 break; 542 case BE_AUTH_REQUEST: 543 if (sm->eapolEap) 544 SM_ENTER(BE_AUTH, RESPONSE); 545 else if (sm->eap_if->eapReq) 546 SM_ENTER(BE_AUTH, REQUEST); 547 else if (sm->eap_if->eapTimeout) 548 SM_ENTER(BE_AUTH, TIMEOUT); 549 break; 550 case BE_AUTH_RESPONSE: 551 if (sm->eap_if->eapNoReq) 552 SM_ENTER(BE_AUTH, IGNORE); 553 if (sm->eap_if->eapReq) { 554 sm->backendAccessChallenges++; 555 SM_ENTER(BE_AUTH, REQUEST); 556 } else if (sm->aWhile == 0) 557 SM_ENTER(BE_AUTH, TIMEOUT); 558 else if (sm->eap_if->eapFail) { 559 sm->backendAuthFails++; 560 SM_ENTER(BE_AUTH, FAIL); 561 } else if (sm->eap_if->eapSuccess) { 562 sm->backendAuthSuccesses++; 563 SM_ENTER(BE_AUTH, SUCCESS); 564 } 565 break; 566 case BE_AUTH_SUCCESS: 567 SM_ENTER(BE_AUTH, IDLE); 568 break; 569 case BE_AUTH_FAIL: 570 SM_ENTER(BE_AUTH, IDLE); 571 break; 572 case BE_AUTH_TIMEOUT: 573 SM_ENTER(BE_AUTH, IDLE); 574 break; 575 case BE_AUTH_IDLE: 576 if (sm->eap_if->eapFail && sm->authStart) 577 SM_ENTER(BE_AUTH, FAIL); 578 else if (sm->eap_if->eapReq && sm->authStart) 579 SM_ENTER(BE_AUTH, REQUEST); 580 else if (sm->eap_if->eapSuccess && sm->authStart) 581 SM_ENTER(BE_AUTH, SUCCESS); 582 break; 583 case BE_AUTH_IGNORE: 584 if (sm->eapolEap) 585 SM_ENTER(BE_AUTH, RESPONSE); 586 else if (sm->eap_if->eapReq) 587 SM_ENTER(BE_AUTH, REQUEST); 588 else if (sm->eap_if->eapTimeout) 589 SM_ENTER(BE_AUTH, TIMEOUT); 590 break; 591 } 592 } 593 594 595 596 /* Reauthentication Timer state machine */ 597 598 SM_STATE(REAUTH_TIMER, INITIALIZE) 599 { 600 SM_ENTRY_MA(REAUTH_TIMER, INITIALIZE, reauth_timer); 601 602 sm->reAuthWhen = sm->reAuthPeriod; 603 } 604 605 606 SM_STATE(REAUTH_TIMER, REAUTHENTICATE) 607 { 608 SM_ENTRY_MA(REAUTH_TIMER, REAUTHENTICATE, reauth_timer); 609 610 sm->reAuthenticate = TRUE; 611 sm->eapol->cb.eapol_event(sm->eapol->conf.ctx, sm->sta, 612 EAPOL_AUTH_REAUTHENTICATE); 613 } 614 615 616 SM_STEP(REAUTH_TIMER) 617 { 618 if (sm->portControl != Auto || sm->initialize || 619 sm->authPortStatus == Unauthorized || !sm->reAuthEnabled) { 620 SM_ENTER_GLOBAL(REAUTH_TIMER, INITIALIZE); 621 return; 622 } 623 624 switch (sm->reauth_timer_state) { 625 case REAUTH_TIMER_INITIALIZE: 626 if (sm->reAuthWhen == 0) 627 SM_ENTER(REAUTH_TIMER, REAUTHENTICATE); 628 break; 629 case REAUTH_TIMER_REAUTHENTICATE: 630 SM_ENTER(REAUTH_TIMER, INITIALIZE); 631 break; 632 } 633 } 634 635 636 637 /* Authenticator Key Transmit state machine */ 638 639 SM_STATE(AUTH_KEY_TX, NO_KEY_TRANSMIT) 640 { 641 SM_ENTRY_MA(AUTH_KEY_TX, NO_KEY_TRANSMIT, auth_key_tx); 642 } 643 644 645 SM_STATE(AUTH_KEY_TX, KEY_TRANSMIT) 646 { 647 SM_ENTRY_MA(AUTH_KEY_TX, KEY_TRANSMIT, auth_key_tx); 648 649 txKey(); 650 sm->eap_if->eapKeyAvailable = FALSE; 651 sm->keyDone = TRUE; 652 } 653 654 655 SM_STEP(AUTH_KEY_TX) 656 { 657 if (sm->initialize || sm->portControl != Auto) { 658 SM_ENTER_GLOBAL(AUTH_KEY_TX, NO_KEY_TRANSMIT); 659 return; 660 } 661 662 switch (sm->auth_key_tx_state) { 663 case AUTH_KEY_TX_NO_KEY_TRANSMIT: 664 if (sm->keyTxEnabled && sm->eap_if->eapKeyAvailable && 665 sm->keyRun && !(sm->flags & EAPOL_SM_USES_WPA)) 666 SM_ENTER(AUTH_KEY_TX, KEY_TRANSMIT); 667 break; 668 case AUTH_KEY_TX_KEY_TRANSMIT: 669 if (!sm->keyTxEnabled || !sm->keyRun) 670 SM_ENTER(AUTH_KEY_TX, NO_KEY_TRANSMIT); 671 else if (sm->eap_if->eapKeyAvailable) 672 SM_ENTER(AUTH_KEY_TX, KEY_TRANSMIT); 673 break; 674 } 675 } 676 677 678 679 /* Key Receive state machine */ 680 681 SM_STATE(KEY_RX, NO_KEY_RECEIVE) 682 { 683 SM_ENTRY_MA(KEY_RX, NO_KEY_RECEIVE, key_rx); 684 } 685 686 687 SM_STATE(KEY_RX, KEY_RECEIVE) 688 { 689 SM_ENTRY_MA(KEY_RX, KEY_RECEIVE, key_rx); 690 691 processKey(); 692 sm->rxKey = FALSE; 693 } 694 695 696 SM_STEP(KEY_RX) 697 { 698 if (sm->initialize || !sm->eap_if->portEnabled) { 699 SM_ENTER_GLOBAL(KEY_RX, NO_KEY_RECEIVE); 700 return; 701 } 702 703 switch (sm->key_rx_state) { 704 case KEY_RX_NO_KEY_RECEIVE: 705 if (sm->rxKey) 706 SM_ENTER(KEY_RX, KEY_RECEIVE); 707 break; 708 case KEY_RX_KEY_RECEIVE: 709 if (sm->rxKey) 710 SM_ENTER(KEY_RX, KEY_RECEIVE); 711 break; 712 } 713 } 714 715 716 717 /* Controlled Directions state machine */ 718 719 SM_STATE(CTRL_DIR, FORCE_BOTH) 720 { 721 SM_ENTRY_MA(CTRL_DIR, FORCE_BOTH, ctrl_dir); 722 sm->operControlledDirections = Both; 723 } 724 725 726 SM_STATE(CTRL_DIR, IN_OR_BOTH) 727 { 728 SM_ENTRY_MA(CTRL_DIR, IN_OR_BOTH, ctrl_dir); 729 sm->operControlledDirections = sm->adminControlledDirections; 730 } 731 732 733 SM_STEP(CTRL_DIR) 734 { 735 if (sm->initialize) { 736 SM_ENTER_GLOBAL(CTRL_DIR, IN_OR_BOTH); 737 return; 738 } 739 740 switch (sm->ctrl_dir_state) { 741 case CTRL_DIR_FORCE_BOTH: 742 if (sm->eap_if->portEnabled && sm->operEdge) 743 SM_ENTER(CTRL_DIR, IN_OR_BOTH); 744 break; 745 case CTRL_DIR_IN_OR_BOTH: 746 if (sm->operControlledDirections != 747 sm->adminControlledDirections) 748 SM_ENTER(CTRL_DIR, IN_OR_BOTH); 749 if (!sm->eap_if->portEnabled || !sm->operEdge) 750 SM_ENTER(CTRL_DIR, FORCE_BOTH); 751 break; 752 } 753 } 754 755 756 757 struct eapol_state_machine * 758 eapol_auth_alloc(struct eapol_authenticator *eapol, const u8 *addr, 759 int flags, const struct wpabuf *assoc_wps_ie, 760 const struct wpabuf *assoc_p2p_ie, void *sta_ctx, 761 const char *identity, const char *radius_cui) 762 { 763 struct eapol_state_machine *sm; 764 struct eap_config eap_conf; 765 766 if (eapol == NULL) 767 return NULL; 768 769 sm = os_zalloc(sizeof(*sm)); 770 if (sm == NULL) { 771 wpa_printf(MSG_DEBUG, "IEEE 802.1X state machine allocation " 772 "failed"); 773 return NULL; 774 } 775 sm->radius_identifier = -1; 776 os_memcpy(sm->addr, addr, ETH_ALEN); 777 sm->flags = flags; 778 779 sm->eapol = eapol; 780 sm->sta = sta_ctx; 781 782 /* Set default values for state machine constants */ 783 sm->auth_pae_state = AUTH_PAE_INITIALIZE; 784 sm->quietPeriod = AUTH_PAE_DEFAULT_quietPeriod; 785 sm->reAuthMax = AUTH_PAE_DEFAULT_reAuthMax; 786 787 sm->be_auth_state = BE_AUTH_INITIALIZE; 788 sm->serverTimeout = BE_AUTH_DEFAULT_serverTimeout; 789 790 sm->reauth_timer_state = REAUTH_TIMER_INITIALIZE; 791 sm->reAuthPeriod = eapol->conf.eap_reauth_period; 792 sm->reAuthEnabled = eapol->conf.eap_reauth_period > 0 ? TRUE : FALSE; 793 794 sm->auth_key_tx_state = AUTH_KEY_TX_NO_KEY_TRANSMIT; 795 796 sm->key_rx_state = KEY_RX_NO_KEY_RECEIVE; 797 798 sm->ctrl_dir_state = CTRL_DIR_IN_OR_BOTH; 799 800 sm->portControl = Auto; 801 802 if (!eapol->conf.wpa && 803 (eapol->default_wep_key || eapol->conf.individual_wep_key_len > 0)) 804 sm->keyTxEnabled = TRUE; 805 else 806 sm->keyTxEnabled = FALSE; 807 if (eapol->conf.wpa) 808 sm->portValid = FALSE; 809 else 810 sm->portValid = TRUE; 811 812 os_memset(&eap_conf, 0, sizeof(eap_conf)); 813 eap_conf.eap_server = eapol->conf.eap_server; 814 eap_conf.ssl_ctx = eapol->conf.ssl_ctx; 815 eap_conf.msg_ctx = eapol->conf.msg_ctx; 816 eap_conf.eap_sim_db_priv = eapol->conf.eap_sim_db_priv; 817 eap_conf.pac_opaque_encr_key = eapol->conf.pac_opaque_encr_key; 818 eap_conf.eap_fast_a_id = eapol->conf.eap_fast_a_id; 819 eap_conf.eap_fast_a_id_len = eapol->conf.eap_fast_a_id_len; 820 eap_conf.eap_fast_a_id_info = eapol->conf.eap_fast_a_id_info; 821 eap_conf.eap_fast_prov = eapol->conf.eap_fast_prov; 822 eap_conf.pac_key_lifetime = eapol->conf.pac_key_lifetime; 823 eap_conf.pac_key_refresh_time = eapol->conf.pac_key_refresh_time; 824 eap_conf.eap_sim_aka_result_ind = eapol->conf.eap_sim_aka_result_ind; 825 eap_conf.tnc = eapol->conf.tnc; 826 eap_conf.wps = eapol->conf.wps; 827 eap_conf.assoc_wps_ie = assoc_wps_ie; 828 eap_conf.assoc_p2p_ie = assoc_p2p_ie; 829 eap_conf.peer_addr = addr; 830 eap_conf.fragment_size = eapol->conf.fragment_size; 831 eap_conf.pwd_group = eapol->conf.pwd_group; 832 eap_conf.pbc_in_m1 = eapol->conf.pbc_in_m1; 833 sm->eap = eap_server_sm_init(sm, &eapol_cb, &eap_conf); 834 if (sm->eap == NULL) { 835 eapol_auth_free(sm); 836 return NULL; 837 } 838 sm->eap_if = eap_get_interface(sm->eap); 839 840 eapol_auth_initialize(sm); 841 842 if (identity) { 843 sm->identity = (u8 *) os_strdup(identity); 844 if (sm->identity) 845 sm->identity_len = os_strlen(identity); 846 } 847 if (radius_cui) 848 sm->radius_cui = wpabuf_alloc_copy(radius_cui, 849 os_strlen(radius_cui)); 850 851 return sm; 852 } 853 854 855 void eapol_auth_free(struct eapol_state_machine *sm) 856 { 857 if (sm == NULL) 858 return; 859 860 eloop_cancel_timeout(eapol_port_timers_tick, NULL, sm); 861 eloop_cancel_timeout(eapol_sm_step_cb, sm, NULL); 862 if (sm->eap) 863 eap_server_sm_deinit(sm->eap); 864 os_free(sm); 865 } 866 867 868 static int eapol_sm_sta_entry_alive(struct eapol_authenticator *eapol, 869 const u8 *addr) 870 { 871 return eapol->cb.sta_entry_alive(eapol->conf.ctx, addr); 872 } 873 874 875 static void eapol_sm_step_run(struct eapol_state_machine *sm) 876 { 877 struct eapol_authenticator *eapol = sm->eapol; 878 u8 addr[ETH_ALEN]; 879 unsigned int prev_auth_pae, prev_be_auth, prev_reauth_timer, 880 prev_auth_key_tx, prev_key_rx, prev_ctrl_dir; 881 int max_steps = 100; 882 883 os_memcpy(addr, sm->addr, ETH_ALEN); 884 885 /* 886 * Allow EAPOL state machines to run as long as there are state 887 * changes, but exit and return here through event loop if more than 888 * 100 steps is needed as a precaution against infinite loops inside 889 * eloop callback. 890 */ 891 restart: 892 prev_auth_pae = sm->auth_pae_state; 893 prev_be_auth = sm->be_auth_state; 894 prev_reauth_timer = sm->reauth_timer_state; 895 prev_auth_key_tx = sm->auth_key_tx_state; 896 prev_key_rx = sm->key_rx_state; 897 prev_ctrl_dir = sm->ctrl_dir_state; 898 899 SM_STEP_RUN(AUTH_PAE); 900 if (sm->initializing || eapol_sm_sta_entry_alive(eapol, addr)) 901 SM_STEP_RUN(BE_AUTH); 902 if (sm->initializing || eapol_sm_sta_entry_alive(eapol, addr)) 903 SM_STEP_RUN(REAUTH_TIMER); 904 if (sm->initializing || eapol_sm_sta_entry_alive(eapol, addr)) 905 SM_STEP_RUN(AUTH_KEY_TX); 906 if (sm->initializing || eapol_sm_sta_entry_alive(eapol, addr)) 907 SM_STEP_RUN(KEY_RX); 908 if (sm->initializing || eapol_sm_sta_entry_alive(eapol, addr)) 909 SM_STEP_RUN(CTRL_DIR); 910 911 if (prev_auth_pae != sm->auth_pae_state || 912 prev_be_auth != sm->be_auth_state || 913 prev_reauth_timer != sm->reauth_timer_state || 914 prev_auth_key_tx != sm->auth_key_tx_state || 915 prev_key_rx != sm->key_rx_state || 916 prev_ctrl_dir != sm->ctrl_dir_state) { 917 if (--max_steps > 0) 918 goto restart; 919 /* Re-run from eloop timeout */ 920 eapol_auth_step(sm); 921 return; 922 } 923 924 if (eapol_sm_sta_entry_alive(eapol, addr) && sm->eap) { 925 if (eap_server_sm_step(sm->eap)) { 926 if (--max_steps > 0) 927 goto restart; 928 /* Re-run from eloop timeout */ 929 eapol_auth_step(sm); 930 return; 931 } 932 933 /* TODO: find a better location for this */ 934 if (sm->eap_if->aaaEapResp) { 935 sm->eap_if->aaaEapResp = FALSE; 936 if (sm->eap_if->aaaEapRespData == NULL) { 937 wpa_printf(MSG_DEBUG, "EAPOL: aaaEapResp set, " 938 "but no aaaEapRespData available"); 939 return; 940 } 941 sm->eapol->cb.aaa_send( 942 sm->eapol->conf.ctx, sm->sta, 943 wpabuf_head(sm->eap_if->aaaEapRespData), 944 wpabuf_len(sm->eap_if->aaaEapRespData)); 945 } 946 } 947 948 if (eapol_sm_sta_entry_alive(eapol, addr)) 949 sm->eapol->cb.eapol_event(sm->eapol->conf.ctx, sm->sta, 950 EAPOL_AUTH_SM_CHANGE); 951 } 952 953 954 static void eapol_sm_step_cb(void *eloop_ctx, void *timeout_ctx) 955 { 956 struct eapol_state_machine *sm = eloop_ctx; 957 eapol_sm_step_run(sm); 958 } 959 960 961 /** 962 * eapol_auth_step - Advance EAPOL state machines 963 * @sm: EAPOL state machine 964 * 965 * This function is called to advance EAPOL state machines after any change 966 * that could affect their state. 967 */ 968 void eapol_auth_step(struct eapol_state_machine *sm) 969 { 970 /* 971 * Run eapol_sm_step_run from a registered timeout to make sure that 972 * other possible timeouts/events are processed and to avoid long 973 * function call chains. 974 */ 975 976 eloop_register_timeout(0, 0, eapol_sm_step_cb, sm, NULL); 977 } 978 979 980 static void eapol_auth_initialize(struct eapol_state_machine *sm) 981 { 982 sm->initializing = TRUE; 983 /* Initialize the state machines by asserting initialize and then 984 * deasserting it after one step */ 985 sm->initialize = TRUE; 986 eapol_sm_step_run(sm); 987 sm->initialize = FALSE; 988 eapol_sm_step_run(sm); 989 sm->initializing = FALSE; 990 991 /* Start one second tick for port timers state machine */ 992 eloop_cancel_timeout(eapol_port_timers_tick, NULL, sm); 993 eloop_register_timeout(1, 0, eapol_port_timers_tick, NULL, sm); 994 } 995 996 997 static int eapol_sm_get_eap_user(void *ctx, const u8 *identity, 998 size_t identity_len, int phase2, 999 struct eap_user *user) 1000 { 1001 struct eapol_state_machine *sm = ctx; 1002 return sm->eapol->cb.get_eap_user(sm->eapol->conf.ctx, identity, 1003 identity_len, phase2, user); 1004 } 1005 1006 1007 static const char * eapol_sm_get_eap_req_id_text(void *ctx, size_t *len) 1008 { 1009 struct eapol_state_machine *sm = ctx; 1010 *len = sm->eapol->conf.eap_req_id_text_len; 1011 return sm->eapol->conf.eap_req_id_text; 1012 } 1013 1014 1015 static struct eapol_callbacks eapol_cb = 1016 { 1017 eapol_sm_get_eap_user, 1018 eapol_sm_get_eap_req_id_text 1019 }; 1020 1021 1022 int eapol_auth_eap_pending_cb(struct eapol_state_machine *sm, void *ctx) 1023 { 1024 if (sm == NULL || ctx == NULL || ctx != sm->eap) 1025 return -1; 1026 1027 eap_sm_pending_cb(sm->eap); 1028 eapol_auth_step(sm); 1029 1030 return 0; 1031 } 1032 1033 1034 static int eapol_auth_conf_clone(struct eapol_auth_config *dst, 1035 struct eapol_auth_config *src) 1036 { 1037 dst->ctx = src->ctx; 1038 dst->eap_reauth_period = src->eap_reauth_period; 1039 dst->wpa = src->wpa; 1040 dst->individual_wep_key_len = src->individual_wep_key_len; 1041 dst->eap_server = src->eap_server; 1042 dst->ssl_ctx = src->ssl_ctx; 1043 dst->msg_ctx = src->msg_ctx; 1044 dst->eap_sim_db_priv = src->eap_sim_db_priv; 1045 os_free(dst->eap_req_id_text); 1046 dst->pwd_group = src->pwd_group; 1047 dst->pbc_in_m1 = src->pbc_in_m1; 1048 if (src->eap_req_id_text) { 1049 dst->eap_req_id_text = os_malloc(src->eap_req_id_text_len); 1050 if (dst->eap_req_id_text == NULL) 1051 return -1; 1052 os_memcpy(dst->eap_req_id_text, src->eap_req_id_text, 1053 src->eap_req_id_text_len); 1054 dst->eap_req_id_text_len = src->eap_req_id_text_len; 1055 } else { 1056 dst->eap_req_id_text = NULL; 1057 dst->eap_req_id_text_len = 0; 1058 } 1059 if (src->pac_opaque_encr_key) { 1060 dst->pac_opaque_encr_key = os_malloc(16); 1061 os_memcpy(dst->pac_opaque_encr_key, src->pac_opaque_encr_key, 1062 16); 1063 } else 1064 dst->pac_opaque_encr_key = NULL; 1065 if (src->eap_fast_a_id) { 1066 dst->eap_fast_a_id = os_malloc(src->eap_fast_a_id_len); 1067 if (dst->eap_fast_a_id == NULL) { 1068 os_free(dst->eap_req_id_text); 1069 return -1; 1070 } 1071 os_memcpy(dst->eap_fast_a_id, src->eap_fast_a_id, 1072 src->eap_fast_a_id_len); 1073 dst->eap_fast_a_id_len = src->eap_fast_a_id_len; 1074 } else 1075 dst->eap_fast_a_id = NULL; 1076 if (src->eap_fast_a_id_info) { 1077 dst->eap_fast_a_id_info = os_strdup(src->eap_fast_a_id_info); 1078 if (dst->eap_fast_a_id_info == NULL) { 1079 os_free(dst->eap_req_id_text); 1080 os_free(dst->eap_fast_a_id); 1081 return -1; 1082 } 1083 } else 1084 dst->eap_fast_a_id_info = NULL; 1085 dst->eap_fast_prov = src->eap_fast_prov; 1086 dst->pac_key_lifetime = src->pac_key_lifetime; 1087 dst->pac_key_refresh_time = src->pac_key_refresh_time; 1088 dst->eap_sim_aka_result_ind = src->eap_sim_aka_result_ind; 1089 dst->tnc = src->tnc; 1090 dst->wps = src->wps; 1091 dst->fragment_size = src->fragment_size; 1092 return 0; 1093 } 1094 1095 1096 static void eapol_auth_conf_free(struct eapol_auth_config *conf) 1097 { 1098 os_free(conf->eap_req_id_text); 1099 conf->eap_req_id_text = NULL; 1100 os_free(conf->pac_opaque_encr_key); 1101 conf->pac_opaque_encr_key = NULL; 1102 os_free(conf->eap_fast_a_id); 1103 conf->eap_fast_a_id = NULL; 1104 os_free(conf->eap_fast_a_id_info); 1105 conf->eap_fast_a_id_info = NULL; 1106 } 1107 1108 1109 struct eapol_authenticator * eapol_auth_init(struct eapol_auth_config *conf, 1110 struct eapol_auth_cb *cb) 1111 { 1112 struct eapol_authenticator *eapol; 1113 1114 eapol = os_zalloc(sizeof(*eapol)); 1115 if (eapol == NULL) 1116 return NULL; 1117 1118 if (eapol_auth_conf_clone(&eapol->conf, conf) < 0) { 1119 os_free(eapol); 1120 return NULL; 1121 } 1122 1123 if (conf->individual_wep_key_len > 0) { 1124 /* use key0 in individual key and key1 in broadcast key */ 1125 eapol->default_wep_key_idx = 1; 1126 } 1127 1128 eapol->cb.eapol_send = cb->eapol_send; 1129 eapol->cb.aaa_send = cb->aaa_send; 1130 eapol->cb.finished = cb->finished; 1131 eapol->cb.get_eap_user = cb->get_eap_user; 1132 eapol->cb.sta_entry_alive = cb->sta_entry_alive; 1133 eapol->cb.logger = cb->logger; 1134 eapol->cb.set_port_authorized = cb->set_port_authorized; 1135 eapol->cb.abort_auth = cb->abort_auth; 1136 eapol->cb.tx_key = cb->tx_key; 1137 eapol->cb.eapol_event = cb->eapol_event; 1138 1139 return eapol; 1140 } 1141 1142 1143 void eapol_auth_deinit(struct eapol_authenticator *eapol) 1144 { 1145 if (eapol == NULL) 1146 return; 1147 1148 eapol_auth_conf_free(&eapol->conf); 1149 os_free(eapol->default_wep_key); 1150 os_free(eapol); 1151 } 1152