Expand PMF_FN_* macros.
[netbsd-mini2440.git] / dist / wpa / src / eap_server / eap_identity.c
blob1f16b64ce0b49df7b26b15cefb173b7a14089ec8
1 /*
2 * hostapd / EAP-Identity
3 * Copyright (c) 2004-2006, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
10 * license.
12 * See README and COPYING for more details.
15 #include "includes.h"
17 #include "common.h"
18 #include "eap_i.h"
21 struct eap_identity_data {
22 enum { CONTINUE, SUCCESS, FAILURE } state;
23 int pick_up;
27 static void * eap_identity_init(struct eap_sm *sm)
29 struct eap_identity_data *data;
31 data = os_zalloc(sizeof(*data));
32 if (data == NULL)
33 return NULL;
34 data->state = CONTINUE;
36 return data;
40 static void * eap_identity_initPickUp(struct eap_sm *sm)
42 struct eap_identity_data *data;
43 data = eap_identity_init(sm);
44 if (data) {
45 data->pick_up = 1;
47 return data;
51 static void eap_identity_reset(struct eap_sm *sm, void *priv)
53 struct eap_identity_data *data = priv;
54 os_free(data);
58 static struct wpabuf * eap_identity_buildReq(struct eap_sm *sm, void *priv,
59 u8 id)
61 struct eap_identity_data *data = priv;
62 struct wpabuf *req;
63 const char *req_data;
64 size_t req_data_len;
66 if (sm->eapol_cb->get_eap_req_id_text) {
67 req_data = sm->eapol_cb->get_eap_req_id_text(sm->eapol_ctx,
68 &req_data_len);
69 } else {
70 req_data = NULL;
71 req_data_len = 0;
73 req = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_IDENTITY, req_data_len,
74 EAP_CODE_REQUEST, id);
75 if (req == NULL) {
76 wpa_printf(MSG_ERROR, "EAP-Identity: Failed to allocate "
77 "memory for request");
78 data->state = FAILURE;
79 return NULL;
82 wpabuf_put_data(req, req_data, req_data_len);
84 return req;
88 static Boolean eap_identity_check(struct eap_sm *sm, void *priv,
89 struct wpabuf *respData)
91 const u8 *pos;
92 size_t len;
94 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_IDENTITY,
95 respData, &len);
96 if (pos == NULL) {
97 wpa_printf(MSG_INFO, "EAP-Identity: Invalid frame");
98 return TRUE;
101 return FALSE;
105 static void eap_identity_process(struct eap_sm *sm, void *priv,
106 struct wpabuf *respData)
108 struct eap_identity_data *data = priv;
109 const u8 *pos;
110 size_t len;
112 if (data->pick_up) {
113 if (eap_identity_check(sm, data, respData)) {
114 wpa_printf(MSG_DEBUG, "EAP-Identity: failed to pick "
115 "up already started negotiation");
116 data->state = FAILURE;
117 return;
119 data->pick_up = 0;
122 pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_IDENTITY,
123 respData, &len);
124 if (pos == NULL)
125 return; /* Should not happen - frame already validated */
127 wpa_hexdump_ascii(MSG_DEBUG, "EAP-Identity: Peer identity", pos, len);
128 os_free(sm->identity);
129 sm->identity = os_malloc(len ? len : 1);
130 if (sm->identity == NULL) {
131 data->state = FAILURE;
132 } else {
133 os_memcpy(sm->identity, pos, len);
134 sm->identity_len = len;
135 data->state = SUCCESS;
140 static Boolean eap_identity_isDone(struct eap_sm *sm, void *priv)
142 struct eap_identity_data *data = priv;
143 return data->state != CONTINUE;
147 static Boolean eap_identity_isSuccess(struct eap_sm *sm, void *priv)
149 struct eap_identity_data *data = priv;
150 return data->state == SUCCESS;
154 int eap_server_identity_register(void)
156 struct eap_method *eap;
157 int ret;
159 eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
160 EAP_VENDOR_IETF, EAP_TYPE_IDENTITY,
161 "Identity");
162 if (eap == NULL)
163 return -1;
165 eap->init = eap_identity_init;
166 eap->initPickUp = eap_identity_initPickUp;
167 eap->reset = eap_identity_reset;
168 eap->buildReq = eap_identity_buildReq;
169 eap->check = eap_identity_check;
170 eap->process = eap_identity_process;
171 eap->isDone = eap_identity_isDone;
172 eap->isSuccess = eap_identity_isSuccess;
174 ret = eap_server_method_register(eap);
175 if (ret)
176 eap_server_method_free(eap);
177 return ret;