Branch data Line data Source code
1 : : /*
2 : : * hostapd / EAP-MD5 server
3 : : * Copyright (c) 2004-2012, 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 "crypto/random.h"
13 : : #include "eap_i.h"
14 : : #include "eap_common/chap.h"
15 : :
16 : :
17 : : #define CHALLENGE_LEN 16
18 : :
19 : : struct eap_md5_data {
20 : : u8 challenge[CHALLENGE_LEN];
21 : : enum { CONTINUE, SUCCESS, FAILURE } state;
22 : : };
23 : :
24 : :
25 : 2 : static void * eap_md5_init(struct eap_sm *sm)
26 : : {
27 : : struct eap_md5_data *data;
28 : :
29 : 2 : data = os_zalloc(sizeof(*data));
30 [ - + ]: 2 : if (data == NULL)
31 : 0 : return NULL;
32 : 2 : data->state = CONTINUE;
33 : :
34 : 2 : return data;
35 : : }
36 : :
37 : :
38 : 2 : static void eap_md5_reset(struct eap_sm *sm, void *priv)
39 : : {
40 : 2 : struct eap_md5_data *data = priv;
41 : 2 : os_free(data);
42 : 2 : }
43 : :
44 : :
45 : 2 : static struct wpabuf * eap_md5_buildReq(struct eap_sm *sm, void *priv, u8 id)
46 : : {
47 : 2 : struct eap_md5_data *data = priv;
48 : : struct wpabuf *req;
49 : :
50 [ - + ]: 2 : if (random_get_bytes(data->challenge, CHALLENGE_LEN)) {
51 : 0 : wpa_printf(MSG_ERROR, "EAP-MD5: Failed to get random data");
52 : 0 : data->state = FAILURE;
53 : 0 : return NULL;
54 : : }
55 : :
56 : 2 : req = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_MD5, 1 + CHALLENGE_LEN,
57 : : EAP_CODE_REQUEST, id);
58 [ - + ]: 2 : if (req == NULL) {
59 : 0 : wpa_printf(MSG_ERROR, "EAP-MD5: Failed to allocate memory for "
60 : : "request");
61 : 0 : data->state = FAILURE;
62 : 0 : return NULL;
63 : : }
64 : :
65 : 2 : wpabuf_put_u8(req, CHALLENGE_LEN);
66 : 2 : wpabuf_put_data(req, data->challenge, CHALLENGE_LEN);
67 : 2 : wpa_hexdump(MSG_MSGDUMP, "EAP-MD5: Challenge", data->challenge,
68 : : CHALLENGE_LEN);
69 : :
70 : 2 : data->state = CONTINUE;
71 : :
72 : 2 : return req;
73 : : }
74 : :
75 : :
76 : 2 : static Boolean eap_md5_check(struct eap_sm *sm, void *priv,
77 : : struct wpabuf *respData)
78 : : {
79 : : const u8 *pos;
80 : : size_t len;
81 : :
82 : 2 : pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_MD5, respData, &len);
83 [ + - ][ - + ]: 2 : if (pos == NULL || len < 1) {
84 : 0 : wpa_printf(MSG_INFO, "EAP-MD5: Invalid frame");
85 : 0 : return TRUE;
86 : : }
87 [ + - ][ - + ]: 2 : if (*pos != CHAP_MD5_LEN || 1 + CHAP_MD5_LEN > len) {
88 : 0 : wpa_printf(MSG_INFO, "EAP-MD5: Invalid response "
89 : : "(response_len=%d payload_len=%lu",
90 : 0 : *pos, (unsigned long) len);
91 : 0 : return TRUE;
92 : : }
93 : :
94 : 2 : return FALSE;
95 : : }
96 : :
97 : :
98 : 2 : static void eap_md5_process(struct eap_sm *sm, void *priv,
99 : : struct wpabuf *respData)
100 : : {
101 : 2 : struct eap_md5_data *data = priv;
102 : : const u8 *pos;
103 : : size_t plen;
104 : : u8 hash[CHAP_MD5_LEN], id;
105 : :
106 [ + - ][ + - ]: 2 : if (sm->user == NULL || sm->user->password == NULL ||
[ - + ]
107 : 2 : sm->user->password_hash) {
108 : 0 : wpa_printf(MSG_INFO, "EAP-MD5: Plaintext password not "
109 : : "configured");
110 : 0 : data->state = FAILURE;
111 : 0 : return;
112 : : }
113 : :
114 : 2 : pos = eap_hdr_validate(EAP_VENDOR_IETF, EAP_TYPE_MD5, respData, &plen);
115 [ + - ][ + - ]: 2 : if (pos == NULL || *pos != CHAP_MD5_LEN || plen < 1 + CHAP_MD5_LEN)
[ - + ]
116 : 0 : return; /* Should not happen - frame already validated */
117 : :
118 : 2 : pos++; /* Skip response len */
119 : 2 : wpa_hexdump(MSG_MSGDUMP, "EAP-MD5: Response", pos, CHAP_MD5_LEN);
120 : :
121 : 2 : id = eap_get_id(respData);
122 [ - + ]: 2 : if (chap_md5(id, sm->user->password, sm->user->password_len,
123 : 2 : data->challenge, CHALLENGE_LEN, hash)) {
124 : 0 : wpa_printf(MSG_INFO, "EAP-MD5: CHAP MD5 operation failed");
125 : 0 : data->state = FAILURE;
126 : 0 : return;
127 : : }
128 : :
129 [ + - ]: 2 : if (os_memcmp(hash, pos, CHAP_MD5_LEN) == 0) {
130 : 2 : wpa_printf(MSG_DEBUG, "EAP-MD5: Done - Success");
131 : 2 : data->state = SUCCESS;
132 : : } else {
133 : 0 : wpa_printf(MSG_DEBUG, "EAP-MD5: Done - Failure");
134 : 2 : data->state = FAILURE;
135 : : }
136 : : }
137 : :
138 : :
139 : 2 : static Boolean eap_md5_isDone(struct eap_sm *sm, void *priv)
140 : : {
141 : 2 : struct eap_md5_data *data = priv;
142 : 2 : return data->state != CONTINUE;
143 : : }
144 : :
145 : :
146 : 2 : static Boolean eap_md5_isSuccess(struct eap_sm *sm, void *priv)
147 : : {
148 : 2 : struct eap_md5_data *data = priv;
149 : 2 : return data->state == SUCCESS;
150 : : }
151 : :
152 : :
153 : 1 : int eap_server_md5_register(void)
154 : : {
155 : : struct eap_method *eap;
156 : : int ret;
157 : :
158 : 1 : eap = eap_server_method_alloc(EAP_SERVER_METHOD_INTERFACE_VERSION,
159 : : EAP_VENDOR_IETF, EAP_TYPE_MD5, "MD5");
160 [ - + ]: 1 : if (eap == NULL)
161 : 0 : return -1;
162 : :
163 : 1 : eap->init = eap_md5_init;
164 : 1 : eap->reset = eap_md5_reset;
165 : 1 : eap->buildReq = eap_md5_buildReq;
166 : 1 : eap->check = eap_md5_check;
167 : 1 : eap->process = eap_md5_process;
168 : 1 : eap->isDone = eap_md5_isDone;
169 : 1 : eap->isSuccess = eap_md5_isSuccess;
170 : :
171 : 1 : ret = eap_server_method_register(eap);
172 [ - + ]: 1 : if (ret)
173 : 0 : eap_server_method_free(eap);
174 : 1 : return ret;
175 : : }
|