Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:eapol

2  * WPA Supplicant - Glue code to setup EAPOL and RSN modules
108 wpa_msg(wpa_s, MSG_INFO, "EAPOL-TX " MACSTR " %s",
127 * wpa_supplicant_eapol_send - Send IEEE 802.1X EAPOL packet to Authenticator
130 * @buf: EAPOL payload (after IEEE 802.1X header)
131 * @len: EAPOL payload length
134 * This function adds Ethernet and IEEE 802.1X header and sends the EAPOL frame
151 * EAPOL frames (mainly, EAPOL-Start) from EAPOL state
153 wpa_printf(MSG_DEBUG, "WPA: drop TX EAPOL in non-IEEE 802.1X "
162 * We were trying to use PMKSA caching and sending EAPOL-Start
163 * would abort that and trigger full EAPOL authentication.
167 * to get the state machine sending EAPOL-Start. This is not
181 "RSN: PMKSA caching - do not send EAPOL-Start");
188 "EAPOL frame");
193 " from the driver as the EAPOL destination",
198 " last received EAPOL frame " MACSTR " as "
199 "the EAPOL destination",
204 * the EAPOL destination. */
212 wpa_printf(MSG_DEBUG, "TX EAPOL: dst=" MACSTR, MAC2STR(dst));
213 wpa_hexdump(MSG_MSGDUMP, "TX EAPOL", msg, msglen);
268 static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol,
276 wpa_printf(MSG_DEBUG, "EAPOL authentication completed - result=%s",
287 * Make sure we do not get stuck here waiting for long EAPOL
312 res = eapol_sm_get_key(eapol, buf, 2 * PMK_LEN);
321 res = eapol_sm_get_key(eapol, pmk, PMK_LEN);
327 res = eapol_sm_get_key(eapol, pmk, 16);
333 wpa_printf(MSG_DEBUG, "Failed to get PMK from EAPOL state "
356 wpa_msg(wpa_s, MSG_DEBUG, "WPA: EAPOL processing complete");
903 wpa_s->mnc_len = eapol_sm_get_eap_proxy_imsi(wpa_s->eapol,
967 wpa_printf(MSG_DEBUG, "AP mode active - skip EAPOL Supplicant "
973 wpa_printf(MSG_DEBUG, "EAPOL: Supplicant port status: %s",
1045 wpa_printf(MSG_ERROR, "Failed to allocate EAPOL context.");
1079 wpa_s->eapol = eapol_sm_init(ctx);
1080 if (wpa_s->eapol == NULL) {
1082 wpa_printf(MSG_ERROR, "Failed to initialize EAPOL state "