⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 eap_aka.c

📁 IEEE 802.11a/b/g 服务器端AP
💻 C
📖 第 1 页 / 共 2 页
字号:
/* * hostapd / EAP-AKA (RFC 4187) * Copyright (c) 2005-2008, Jouni Malinen <j@w1.fi> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Alternatively, this software may be distributed under the terms of BSD * license. * * See README and COPYING for more details. */#include "includes.h"#include "common.h"#include "eap_server/eap_i.h"#include "eap_common/eap_sim_common.h"#include "eap_server/eap_sim_db.h"#include "sha1.h"#include "crypto.h"struct eap_aka_data {	u8 mk[EAP_SIM_MK_LEN];	u8 nonce_s[EAP_SIM_NONCE_S_LEN];	u8 k_aut[EAP_SIM_K_AUT_LEN];	u8 k_encr[EAP_SIM_K_ENCR_LEN];	u8 msk[EAP_SIM_KEYING_DATA_LEN];	u8 emsk[EAP_EMSK_LEN];	u8 rand[EAP_AKA_RAND_LEN];	u8 autn[EAP_AKA_AUTN_LEN];	u8 ck[EAP_AKA_CK_LEN];	u8 ik[EAP_AKA_IK_LEN];	u8 res[EAP_AKA_RES_MAX_LEN];	size_t res_len;	enum {		IDENTITY, CHALLENGE, REAUTH, NOTIFICATION, SUCCESS, FAILURE	} state;	char *next_pseudonym;	char *next_reauth_id;	u16 counter;	struct eap_sim_reauth *reauth;	int auts_reported; /* whether the current AUTS has been reported to the			    * eap_sim_db */	u16 notification;	int use_result_ind;	struct wpabuf *id_msgs;	int pending_id;};static void eap_aka_determine_identity(struct eap_sm *sm,				       struct eap_aka_data *data,				       int before_identity, int after_reauth);static const char * eap_aka_state_txt(int state){	switch (state) {	case IDENTITY:		return "IDENTITY";	case CHALLENGE:		return "CHALLENGE";	case REAUTH:		return "REAUTH";	case SUCCESS:		return "SUCCESS";	case FAILURE:		return "FAILURE";	case NOTIFICATION:		return "NOTIFICATION";	default:		return "Unknown?!";	}}static void eap_aka_state(struct eap_aka_data *data, int state){	wpa_printf(MSG_DEBUG, "EAP-AKA: %s -> %s",		   eap_aka_state_txt(data->state),		   eap_aka_state_txt(state));	data->state = state;}static void * eap_aka_init(struct eap_sm *sm){	struct eap_aka_data *data;	if (sm->eap_sim_db_priv == NULL) {		wpa_printf(MSG_WARNING, "EAP-AKA: eap_sim_db not configured");		return NULL;	}	data = os_zalloc(sizeof(*data));	if (data == NULL)		return NULL;	data->state = IDENTITY;	eap_aka_determine_identity(sm, data, 1, 0);	data->pending_id = -1;	return data;}static void eap_aka_reset(struct eap_sm *sm, void *priv){	struct eap_aka_data *data = priv;	os_free(data->next_pseudonym);	os_free(data->next_reauth_id);	wpabuf_free(data->id_msgs);	os_free(data);}static int eap_aka_add_id_msg(struct eap_aka_data *data,			      const struct wpabuf *msg){	if (msg == NULL)		return -1;	if (data->id_msgs == NULL) {		data->id_msgs = wpabuf_dup(msg);		return data->id_msgs == NULL ? -1 : 0;	}	if (wpabuf_resize(&data->id_msgs, wpabuf_len(msg)) < 0)		return -1;	wpabuf_put_buf(data->id_msgs, msg);	return 0;}static void eap_aka_add_checkcode(struct eap_aka_data *data,				  struct eap_sim_msg *msg){	const u8 *addr;	size_t len;	u8 hash[SHA1_MAC_LEN];	wpa_printf(MSG_DEBUG, "   AT_CHECKCODE");	if (data->id_msgs == NULL) {		/*		 * No EAP-AKA/Identity packets were exchanged - send empty		 * checkcode.		 */		eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, NULL, 0);		return;	}	/* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */	addr = wpabuf_head(data->id_msgs);	len = wpabuf_len(data->id_msgs);	wpa_hexdump(MSG_MSGDUMP, "EAP-AKA: AT_CHECKCODE data", addr, len);	sha1_vector(1, &addr, &len, hash);	eap_sim_msg_add(msg, EAP_SIM_AT_CHECKCODE, 0, hash,			EAP_AKA_CHECKCODE_LEN);}static int eap_aka_verify_checkcode(struct eap_aka_data *data,				    const u8 *checkcode, size_t checkcode_len){	const u8 *addr;	size_t len;	u8 hash[SHA1_MAC_LEN];	if (checkcode == NULL)		return -1;	if (data->id_msgs == NULL) {		if (checkcode_len != 0) {			wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from peer "				   "indicates that AKA/Identity messages were "				   "used, but they were not");			return -1;		}		return 0;	}	if (checkcode_len != EAP_AKA_CHECKCODE_LEN) {		wpa_printf(MSG_DEBUG, "EAP-AKA: Checkcode from peer indicates "			   "that AKA/Identity message were not used, but they "			   "were");		return -1;	}	/* Checkcode is SHA1 hash over all EAP-AKA/Identity packets. */	addr = wpabuf_head(data->id_msgs);	len = wpabuf_len(data->id_msgs);	sha1_vector(1, &addr, &len, hash);	if (os_memcmp(hash, checkcode, EAP_AKA_CHECKCODE_LEN) != 0) {		wpa_printf(MSG_DEBUG, "EAP-AKA: Mismatch in AT_CHECKCODE");		return -1;	}	return 0;}static struct wpabuf * eap_aka_build_identity(struct eap_sm *sm,					      struct eap_aka_data *data, u8 id){	struct eap_sim_msg *msg;	struct wpabuf *buf;	wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Identity");	msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_AKA,			       EAP_AKA_SUBTYPE_IDENTITY);	if (eap_sim_db_identity_known(sm->eap_sim_db_priv, sm->identity,				      sm->identity_len)) {		wpa_printf(MSG_DEBUG, "   AT_PERMANENT_ID_REQ");		eap_sim_msg_add(msg, EAP_SIM_AT_PERMANENT_ID_REQ, 0, NULL, 0);	} else {		/*		 * RFC 4187, Chap. 4.1.4 recommends that identity from EAP is		 * ignored and the AKA/Identity is used to request the		 * identity.		 */		wpa_printf(MSG_DEBUG, "   AT_ANY_ID_REQ");		eap_sim_msg_add(msg, EAP_SIM_AT_ANY_ID_REQ, 0, NULL, 0);	}	buf = eap_sim_msg_finish(msg, NULL, NULL, 0);	if (eap_aka_add_id_msg(data, buf) < 0) {		wpabuf_free(buf);		return NULL;	}	data->pending_id = id;	return buf;}static int eap_aka_build_encr(struct eap_sm *sm, struct eap_aka_data *data,			      struct eap_sim_msg *msg, u16 counter,			      const u8 *nonce_s){	os_free(data->next_pseudonym);	data->next_pseudonym =		eap_sim_db_get_next_pseudonym(sm->eap_sim_db_priv, 1);	os_free(data->next_reauth_id);	if (data->counter <= EAP_AKA_MAX_FAST_REAUTHS) {		data->next_reauth_id =			eap_sim_db_get_next_reauth_id(sm->eap_sim_db_priv, 1);	} else {		wpa_printf(MSG_DEBUG, "EAP-AKA: Max fast re-authentication "			   "count exceeded - force full authentication");		data->next_reauth_id = NULL;	}	if (data->next_pseudonym == NULL && data->next_reauth_id == NULL &&	    counter == 0 && nonce_s == NULL)		return 0;	wpa_printf(MSG_DEBUG, "   AT_IV");	wpa_printf(MSG_DEBUG, "   AT_ENCR_DATA");	eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV, EAP_SIM_AT_ENCR_DATA);	if (counter > 0) {		wpa_printf(MSG_DEBUG, "   *AT_COUNTER (%u)", counter);		eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, counter, NULL, 0);	}	if (nonce_s) {		wpa_printf(MSG_DEBUG, "   *AT_NONCE_S");		eap_sim_msg_add(msg, EAP_SIM_AT_NONCE_S, 0, nonce_s,				EAP_SIM_NONCE_S_LEN);	}	if (data->next_pseudonym) {		wpa_printf(MSG_DEBUG, "   *AT_NEXT_PSEUDONYM (%s)",			   data->next_pseudonym);		eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_PSEUDONYM,				os_strlen(data->next_pseudonym),				(u8 *) data->next_pseudonym,				os_strlen(data->next_pseudonym));	}	if (data->next_reauth_id) {		wpa_printf(MSG_DEBUG, "   *AT_NEXT_REAUTH_ID (%s)",			   data->next_reauth_id);		eap_sim_msg_add(msg, EAP_SIM_AT_NEXT_REAUTH_ID,				os_strlen(data->next_reauth_id),				(u8 *) data->next_reauth_id,				os_strlen(data->next_reauth_id));	}	if (eap_sim_msg_add_encr_end(msg, data->k_encr, EAP_SIM_AT_PADDING)) {		wpa_printf(MSG_WARNING, "EAP-AKA: Failed to encrypt "			   "AT_ENCR_DATA");		return -1;	}	return 0;}static struct wpabuf * eap_aka_build_challenge(struct eap_sm *sm,					       struct eap_aka_data *data,					       u8 id){	struct eap_sim_msg *msg;	wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Challenge");	msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_AKA,			       EAP_AKA_SUBTYPE_CHALLENGE);	wpa_printf(MSG_DEBUG, "   AT_RAND");	eap_sim_msg_add(msg, EAP_SIM_AT_RAND, 0, data->rand, EAP_AKA_RAND_LEN);	eap_sim_msg_add(msg, EAP_SIM_AT_AUTN, 0, data->autn, EAP_AKA_AUTN_LEN);	if (eap_aka_build_encr(sm, data, msg, 0, NULL)) {		eap_sim_msg_free(msg);		return NULL;	}	eap_aka_add_checkcode(data, msg);	if (sm->eap_sim_aka_result_ind) {		wpa_printf(MSG_DEBUG, "   AT_RESULT_IND");		eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);	}	wpa_printf(MSG_DEBUG, "   AT_MAC");	eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);	return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);}static struct wpabuf * eap_aka_build_reauth(struct eap_sm *sm,					    struct eap_aka_data *data, u8 id){	struct eap_sim_msg *msg;	wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Re-authentication");	if (os_get_random(data->nonce_s, EAP_SIM_NONCE_S_LEN))		return NULL;	wpa_hexdump_key(MSG_MSGDUMP, "EAP-AKA: NONCE_S",			data->nonce_s, EAP_SIM_NONCE_S_LEN);	eap_sim_derive_keys(data->mk, data->k_encr, data->k_aut, data->msk,			    data->emsk);	eap_sim_derive_keys_reauth(data->counter, sm->identity,				   sm->identity_len, data->nonce_s, data->mk,				   data->msk, data->emsk);	msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_AKA,			       EAP_AKA_SUBTYPE_REAUTHENTICATION);	if (eap_aka_build_encr(sm, data, msg, data->counter, data->nonce_s)) {		eap_sim_msg_free(msg);		return NULL;	}	eap_aka_add_checkcode(data, msg);	if (sm->eap_sim_aka_result_ind) {		wpa_printf(MSG_DEBUG, "   AT_RESULT_IND");		eap_sim_msg_add(msg, EAP_SIM_AT_RESULT_IND, 0, NULL, 0);	}	wpa_printf(MSG_DEBUG, "   AT_MAC");	eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);	return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);}static struct wpabuf * eap_aka_build_notification(struct eap_sm *sm,						  struct eap_aka_data *data,						  u8 id){	struct eap_sim_msg *msg;	wpa_printf(MSG_DEBUG, "EAP-AKA: Generating Notification");	msg = eap_sim_msg_init(EAP_CODE_REQUEST, id, EAP_TYPE_AKA,			       EAP_AKA_SUBTYPE_NOTIFICATION);	wpa_printf(MSG_DEBUG, "   AT_NOTIFICATION (%d)", data->notification);	eap_sim_msg_add(msg, EAP_SIM_AT_NOTIFICATION, data->notification,			NULL, 0);	if (data->use_result_ind) {		if (data->reauth) {			wpa_printf(MSG_DEBUG, "   AT_IV");			wpa_printf(MSG_DEBUG, "   AT_ENCR_DATA");			eap_sim_msg_add_encr_start(msg, EAP_SIM_AT_IV,						   EAP_SIM_AT_ENCR_DATA);			wpa_printf(MSG_DEBUG, "   *AT_COUNTER (%u)",				   data->counter);			eap_sim_msg_add(msg, EAP_SIM_AT_COUNTER, data->counter,					NULL, 0);			if (eap_sim_msg_add_encr_end(msg, data->k_encr,						     EAP_SIM_AT_PADDING)) {				wpa_printf(MSG_WARNING, "EAP-AKA: Failed to "					   "encrypt AT_ENCR_DATA");				eap_sim_msg_free(msg);				return NULL;			}		}		wpa_printf(MSG_DEBUG, "   AT_MAC");		eap_sim_msg_add_mac(msg, EAP_SIM_AT_MAC);	}	return eap_sim_msg_finish(msg, data->k_aut, NULL, 0);}static struct wpabuf * eap_aka_buildReq(struct eap_sm *sm, void *priv, u8 id){	struct eap_aka_data *data = priv;	data->auts_reported = 0;	switch (data->state) {	case IDENTITY:		return eap_aka_build_identity(sm, data, id);	case CHALLENGE:		return eap_aka_build_challenge(sm, data, id);	case REAUTH:		return eap_aka_build_reauth(sm, data, id);	case NOTIFICATION:		return eap_aka_build_notification(sm, data, id);	default:		wpa_printf(MSG_DEBUG, "EAP-AKA: Unknown state %d in "			   "buildReq", data->state);		break;	}	return NULL;}static Boolean eap_aka_check(struct eap_sm *sm, void *priv,			     struct wpabuf *respData){	const u8 *pos;	size_t len;	pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_AKA, respData, &len);	if (pos == NULL || len < 3) {		wpa_printf(MSG_INFO, "EAP-AKA: Invalid frame");		return TRUE;	}	return FALSE;}static Boolean eap_aka_subtype_ok(struct eap_aka_data *data, u8 subtype){	if (subtype == EAP_AKA_SUBTYPE_CLIENT_ERROR ||	    subtype == EAP_AKA_SUBTYPE_AUTHENTICATION_REJECT)		return FALSE;	switch (data->state) {	case IDENTITY:		if (subtype != EAP_AKA_SUBTYPE_IDENTITY) {			wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "				   "subtype %d", subtype);			return TRUE;		}		break;	case CHALLENGE:		if (subtype != EAP_AKA_SUBTYPE_CHALLENGE &&		    subtype != EAP_AKA_SUBTYPE_SYNCHRONIZATION_FAILURE) {			wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "				   "subtype %d", subtype);			return TRUE;		}		break;	case REAUTH:		if (subtype != EAP_AKA_SUBTYPE_REAUTHENTICATION) {			wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "				   "subtype %d", subtype);			return TRUE;		}		break;	case NOTIFICATION:		if (subtype != EAP_AKA_SUBTYPE_NOTIFICATION) {			wpa_printf(MSG_INFO, "EAP-AKA: Unexpected response "				   "subtype %d", subtype);			return TRUE;		}		break;	default:		wpa_printf(MSG_INFO, "EAP-AKA: Unexpected state (%d) for "			   "processing a response", data->state);		return TRUE;	}	return FALSE;}static void eap_aka_determine_identity(struct eap_sm *sm,				       struct eap_aka_data *data,				       int before_identity, int after_reauth){	const u8 *identity;	size_t identity_len;	int res;	identity = NULL;	identity_len = 0;	if (after_reauth && data->reauth) {		identity = data->reauth->identity;		identity_len = data->reauth->identity_len;	} else if (sm->identity && sm->identity_len > 0 &&

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -