|
@@ -343,6 +343,7 @@ SM_STATE(EAP, PROPOSE_METHOD)
|
|
|
|
|
|
SM_ENTRY(EAP, PROPOSE_METHOD);
|
|
|
|
|
|
+try_another_method:
|
|
|
type = eap_sm_Policy_getNextMethod(sm, &vendor);
|
|
|
if (vendor == EAP_VENDOR_IETF)
|
|
|
sm->currentMethod = type;
|
|
@@ -360,8 +361,14 @@ SM_STATE(EAP, PROPOSE_METHOD)
|
|
|
"method %d", sm->currentMethod);
|
|
|
sm->m = NULL;
|
|
|
sm->currentMethod = EAP_TYPE_NONE;
|
|
|
+ goto try_another_method;
|
|
|
}
|
|
|
}
|
|
|
+ if (sm->m == NULL) {
|
|
|
+ wpa_printf(MSG_DEBUG, "EAP: Could not find suitable EAP method");
|
|
|
+ sm->decision = DECISION_FAILURE;
|
|
|
+ return;
|
|
|
+ }
|
|
|
if (sm->currentMethod == EAP_TYPE_IDENTITY ||
|
|
|
sm->currentMethod == EAP_TYPE_NOTIFICATION)
|
|
|
sm->methodState = METHOD_CONTINUE;
|
|
@@ -702,6 +709,15 @@ SM_STEP(EAP)
|
|
|
SM_ENTER(EAP, METHOD_RESPONSE);
|
|
|
break;
|
|
|
case EAP_METHOD_REQUEST:
|
|
|
+ if (sm->m == NULL) {
|
|
|
+ /*
|
|
|
+ * This transition is not mentioned in RFC 4137, but it
|
|
|
+ * is needed to handle cleanly a case where EAP method
|
|
|
+ * initialization fails.
|
|
|
+ */
|
|
|
+ SM_ENTER(EAP, FAILURE);
|
|
|
+ break;
|
|
|
+ }
|
|
|
SM_ENTER(EAP, SEND_REQUEST);
|
|
|
break;
|
|
|
case EAP_METHOD_RESPONSE:
|