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