Branch data Line data Source code
1 : : /*
2 : : * EAP-TLS/PEAP/TTLS/FAST server common functions
3 : : * Copyright (c) 2004-2009, 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/sha1.h"
13 : : #include "crypto/tls.h"
14 : : #include "eap_i.h"
15 : : #include "eap_tls_common.h"
16 : :
17 : :
18 : : static void eap_server_tls_free_in_buf(struct eap_ssl_data *data);
19 : :
20 : :
21 : 316 : struct wpabuf * eap_tls_msg_alloc(EapType type, size_t payload_len,
22 : : u8 code, u8 identifier)
23 : : {
24 [ - + ]: 316 : if (type == EAP_UNAUTH_TLS_TYPE)
25 : 0 : return eap_msg_alloc(EAP_VENDOR_UNAUTH_TLS,
26 : : EAP_VENDOR_TYPE_UNAUTH_TLS, payload_len,
27 : : code, identifier);
28 : 316 : return eap_msg_alloc(EAP_VENDOR_IETF, type, payload_len, code,
29 : : identifier);
30 : : }
31 : :
32 : :
33 : 85 : int eap_server_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
34 : : int verify_peer)
35 : : {
36 [ - + ]: 85 : if (sm->ssl_ctx == NULL) {
37 : 0 : wpa_printf(MSG_ERROR, "TLS context not initialized - cannot use TLS-based EAP method");
38 : 0 : return -1;
39 : : }
40 : :
41 : 85 : data->eap = sm;
42 : 85 : data->phase2 = sm->init_phase2;
43 : :
44 : 85 : data->conn = tls_connection_init(sm->ssl_ctx);
45 [ - + ]: 85 : if (data->conn == NULL) {
46 : 0 : wpa_printf(MSG_INFO, "SSL: Failed to initialize new TLS "
47 : : "connection");
48 : 0 : return -1;
49 : : }
50 : :
51 [ - + ]: 85 : if (tls_connection_set_verify(sm->ssl_ctx, data->conn, verify_peer)) {
52 : 0 : wpa_printf(MSG_INFO, "SSL: Failed to configure verification "
53 : : "of TLS peer certificate");
54 : 0 : tls_connection_deinit(sm->ssl_ctx, data->conn);
55 : 0 : data->conn = NULL;
56 : 0 : return -1;
57 : : }
58 : :
59 [ - + ]: 85 : data->tls_out_limit = sm->fragment_size > 0 ? sm->fragment_size : 1398;
60 [ + + ]: 85 : if (data->phase2) {
61 : : /* Limit the fragment size in the inner TLS authentication
62 : : * since the outer authentication with EAP-PEAP does not yet
63 : : * support fragmentation */
64 [ + - ]: 2 : if (data->tls_out_limit > 100)
65 : 2 : data->tls_out_limit -= 100;
66 : : }
67 : 85 : return 0;
68 : : }
69 : :
70 : :
71 : 85 : void eap_server_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data)
72 : : {
73 : 85 : tls_connection_deinit(sm->ssl_ctx, data->conn);
74 : 85 : eap_server_tls_free_in_buf(data);
75 : 85 : wpabuf_free(data->tls_out);
76 : 85 : data->tls_out = NULL;
77 : 85 : }
78 : :
79 : :
80 : 83 : u8 * eap_server_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
81 : : char *label, size_t len)
82 : : {
83 : : struct tls_keys keys;
84 : 83 : u8 *rnd = NULL, *out;
85 : :
86 : 83 : out = os_malloc(len);
87 [ - + ]: 83 : if (out == NULL)
88 : 0 : return NULL;
89 : :
90 [ + - ]: 83 : if (tls_connection_prf(sm->ssl_ctx, data->conn, label, 0, out, len) ==
91 : : 0)
92 : 83 : return out;
93 : :
94 [ # # ]: 0 : if (tls_connection_get_keys(sm->ssl_ctx, data->conn, &keys))
95 : 0 : goto fail;
96 : :
97 [ # # ][ # # ]: 0 : if (keys.client_random == NULL || keys.server_random == NULL ||
[ # # ]
98 : 0 : keys.master_key == NULL)
99 : : goto fail;
100 : :
101 : 0 : rnd = os_malloc(keys.client_random_len + keys.server_random_len);
102 [ # # ]: 0 : if (rnd == NULL)
103 : 0 : goto fail;
104 : 0 : os_memcpy(rnd, keys.client_random, keys.client_random_len);
105 : 0 : os_memcpy(rnd + keys.client_random_len, keys.server_random,
106 : : keys.server_random_len);
107 : :
108 [ # # ]: 0 : if (tls_prf_sha1_md5(keys.master_key, keys.master_key_len,
109 : 0 : label, rnd, keys.client_random_len +
110 : 0 : keys.server_random_len, out, len))
111 : 0 : goto fail;
112 : :
113 : 0 : os_free(rnd);
114 : 0 : return out;
115 : :
116 : : fail:
117 : 0 : os_free(out);
118 : 0 : os_free(rnd);
119 : 83 : return NULL;
120 : : }
121 : :
122 : :
123 : 304 : struct wpabuf * eap_server_tls_build_msg(struct eap_ssl_data *data,
124 : : int eap_type, int version, u8 id)
125 : : {
126 : : struct wpabuf *req;
127 : : u8 flags;
128 : : size_t send_len, plen;
129 : :
130 : 304 : wpa_printf(MSG_DEBUG, "SSL: Generating Request");
131 [ - + ]: 304 : if (data->tls_out == NULL) {
132 : 0 : wpa_printf(MSG_ERROR, "SSL: tls_out NULL in %s", __func__);
133 : 0 : return NULL;
134 : : }
135 : :
136 : 304 : flags = version;
137 : 304 : send_len = wpabuf_len(data->tls_out) - data->tls_out_pos;
138 [ + + ]: 304 : if (1 + send_len > data->tls_out_limit) {
139 : 63 : send_len = data->tls_out_limit - 1;
140 : 63 : flags |= EAP_TLS_FLAGS_MORE_FRAGMENTS;
141 [ + - ]: 63 : if (data->tls_out_pos == 0) {
142 : 63 : flags |= EAP_TLS_FLAGS_LENGTH_INCLUDED;
143 : 63 : send_len -= 4;
144 : : }
145 : : }
146 : :
147 : 304 : plen = 1 + send_len;
148 [ + + ]: 304 : if (flags & EAP_TLS_FLAGS_LENGTH_INCLUDED)
149 : 63 : plen += 4;
150 : :
151 : 304 : req = eap_tls_msg_alloc(eap_type, plen, EAP_CODE_REQUEST, id);
152 [ - + ]: 304 : if (req == NULL)
153 : 0 : return NULL;
154 : :
155 : 304 : wpabuf_put_u8(req, flags); /* Flags */
156 [ + + ]: 304 : if (flags & EAP_TLS_FLAGS_LENGTH_INCLUDED)
157 : 63 : wpabuf_put_be32(req, wpabuf_len(data->tls_out));
158 : :
159 : 304 : wpabuf_put_data(req, wpabuf_head_u8(data->tls_out) + data->tls_out_pos,
160 : : send_len);
161 : 304 : data->tls_out_pos += send_len;
162 : :
163 [ + + ]: 304 : if (data->tls_out_pos == wpabuf_len(data->tls_out)) {
164 : 241 : wpa_printf(MSG_DEBUG, "SSL: Sending out %lu bytes "
165 : : "(message sent completely)",
166 : : (unsigned long) send_len);
167 : 241 : wpabuf_free(data->tls_out);
168 : 241 : data->tls_out = NULL;
169 : 241 : data->tls_out_pos = 0;
170 : 241 : data->state = MSG;
171 : : } else {
172 : 63 : wpa_printf(MSG_DEBUG, "SSL: Sending out %lu bytes "
173 : : "(%lu more to send)", (unsigned long) send_len,
174 : 63 : (unsigned long) wpabuf_len(data->tls_out) -
175 : 63 : data->tls_out_pos);
176 : 63 : data->state = WAIT_FRAG_ACK;
177 : : }
178 : :
179 : 304 : return req;
180 : : }
181 : :
182 : :
183 : 7 : struct wpabuf * eap_server_tls_build_ack(u8 id, int eap_type, int version)
184 : : {
185 : : struct wpabuf *req;
186 : :
187 : 7 : req = eap_tls_msg_alloc(eap_type, 1, EAP_CODE_REQUEST, id);
188 [ - + ]: 7 : if (req == NULL)
189 : 0 : return NULL;
190 : 7 : wpa_printf(MSG_DEBUG, "SSL: Building ACK");
191 : 7 : wpabuf_put_u8(req, version); /* Flags */
192 : 7 : return req;
193 : : }
194 : :
195 : :
196 : 7 : static int eap_server_tls_process_cont(struct eap_ssl_data *data,
197 : : const u8 *buf, size_t len)
198 : : {
199 : : /* Process continuation of a pending message */
200 [ - + ]: 7 : if (len > wpabuf_tailroom(data->tls_in)) {
201 : 0 : wpa_printf(MSG_DEBUG, "SSL: Fragment overflow");
202 : 0 : return -1;
203 : : }
204 : :
205 : 7 : wpabuf_put_data(data->tls_in, buf, len);
206 : 7 : wpa_printf(MSG_DEBUG, "SSL: Received %lu bytes, waiting for %lu "
207 : : "bytes more", (unsigned long) len,
208 : 7 : (unsigned long) wpabuf_tailroom(data->tls_in));
209 : :
210 : 7 : return 0;
211 : : }
212 : :
213 : :
214 : 7 : static int eap_server_tls_process_fragment(struct eap_ssl_data *data,
215 : : u8 flags, u32 message_length,
216 : : const u8 *buf, size_t len)
217 : : {
218 : : /* Process a fragment that is not the last one of the message */
219 [ + - ][ - + ]: 7 : if (data->tls_in == NULL && !(flags & EAP_TLS_FLAGS_LENGTH_INCLUDED)) {
220 : 0 : wpa_printf(MSG_DEBUG, "SSL: No Message Length field in a "
221 : : "fragmented packet");
222 : 0 : return -1;
223 : : }
224 : :
225 [ + - ]: 7 : if (data->tls_in == NULL) {
226 : : /* First fragment of the message */
227 : :
228 : : /* Limit length to avoid rogue peers from causing large
229 : : * memory allocations. */
230 [ - + ]: 7 : if (message_length > 65536) {
231 : 0 : wpa_printf(MSG_INFO, "SSL: Too long TLS fragment (size"
232 : : " over 64 kB)");
233 : 0 : return -1;
234 : : }
235 : :
236 [ - + ]: 7 : if (len > message_length) {
237 : 0 : wpa_printf(MSG_INFO, "SSL: Too much data (%d bytes) in "
238 : : "first fragment of frame (TLS Message "
239 : : "Length %d bytes)",
240 : : (int) len, (int) message_length);
241 : 0 : return -1;
242 : : }
243 : :
244 : 7 : data->tls_in = wpabuf_alloc(message_length);
245 [ - + ]: 7 : if (data->tls_in == NULL) {
246 : 0 : wpa_printf(MSG_DEBUG, "SSL: No memory for message");
247 : 0 : return -1;
248 : : }
249 : 7 : wpabuf_put_data(data->tls_in, buf, len);
250 : 7 : wpa_printf(MSG_DEBUG, "SSL: Received %lu bytes in first "
251 : : "fragment, waiting for %lu bytes more",
252 : : (unsigned long) len,
253 : 7 : (unsigned long) wpabuf_tailroom(data->tls_in));
254 : : }
255 : :
256 : 7 : return 0;
257 : : }
258 : :
259 : :
260 : 128 : int eap_server_tls_phase1(struct eap_sm *sm, struct eap_ssl_data *data)
261 : : {
262 [ - + ]: 128 : if (data->tls_out) {
263 : : /* This should not happen.. */
264 : 0 : wpa_printf(MSG_INFO, "SSL: pending tls_out data when "
265 : : "processing new message");
266 : 0 : wpabuf_free(data->tls_out);
267 : : WPA_ASSERT(data->tls_out == NULL);
268 : : }
269 : :
270 : 128 : data->tls_out = tls_connection_server_handshake(sm->ssl_ctx,
271 : : data->conn,
272 : 128 : data->tls_in, NULL);
273 [ - + ]: 128 : if (data->tls_out == NULL) {
274 : 0 : wpa_printf(MSG_INFO, "SSL: TLS processing failed");
275 : 0 : return -1;
276 : : }
277 [ + + ]: 128 : if (tls_connection_get_failed(sm->ssl_ctx, data->conn)) {
278 : : /* TLS processing has failed - return error */
279 : 2 : wpa_printf(MSG_DEBUG, "SSL: Failed - tls_out available to "
280 : : "report error");
281 : 2 : return -1;
282 : : }
283 : :
284 : 128 : return 0;
285 : : }
286 : :
287 : :
288 : 375 : static int eap_server_tls_reassemble(struct eap_ssl_data *data, u8 flags,
289 : : const u8 **pos, size_t *left)
290 : : {
291 : 375 : unsigned int tls_msg_len = 0;
292 : 375 : const u8 *end = *pos + *left;
293 : :
294 [ + + ]: 375 : if (flags & EAP_TLS_FLAGS_LENGTH_INCLUDED) {
295 [ - + ]: 11 : if (*left < 4) {
296 : 0 : wpa_printf(MSG_INFO, "SSL: Short frame with TLS "
297 : : "length");
298 : 0 : return -1;
299 : : }
300 : 11 : tls_msg_len = WPA_GET_BE32(*pos);
301 : 11 : wpa_printf(MSG_DEBUG, "SSL: TLS Message Length: %d",
302 : : tls_msg_len);
303 : 11 : *pos += 4;
304 : 11 : *left -= 4;
305 : :
306 [ - + ]: 11 : if (*left > tls_msg_len) {
307 : 0 : wpa_printf(MSG_INFO, "SSL: TLS Message Length (%d "
308 : : "bytes) smaller than this fragment (%d "
309 : 0 : "bytes)", (int) tls_msg_len, (int) *left);
310 : 0 : return -1;
311 : : }
312 : : }
313 : :
314 : 375 : wpa_printf(MSG_DEBUG, "SSL: Received packet: Flags 0x%x "
315 : : "Message Length %u", flags, tls_msg_len);
316 : :
317 [ + + ]: 375 : if (data->state == WAIT_FRAG_ACK) {
318 [ - + ]: 63 : if (*left != 0) {
319 : 0 : wpa_printf(MSG_DEBUG, "SSL: Unexpected payload in "
320 : : "WAIT_FRAG_ACK state");
321 : 0 : return -1;
322 : : }
323 : 63 : wpa_printf(MSG_DEBUG, "SSL: Fragment acknowledged");
324 : 63 : return 1;
325 : : }
326 : :
327 [ + + - + ]: 319 : if (data->tls_in &&
328 : 7 : eap_server_tls_process_cont(data, *pos, end - *pos) < 0)
329 : 0 : return -1;
330 : :
331 [ + + ]: 312 : if (flags & EAP_TLS_FLAGS_MORE_FRAGMENTS) {
332 [ - + ]: 7 : if (eap_server_tls_process_fragment(data, flags, tls_msg_len,
333 : 7 : *pos, end - *pos) < 0)
334 : 0 : return -1;
335 : :
336 : 7 : data->state = FRAG_ACK;
337 : 7 : return 1;
338 : : }
339 : :
340 [ + + ]: 305 : if (data->state == FRAG_ACK) {
341 : 7 : wpa_printf(MSG_DEBUG, "SSL: All fragments received");
342 : 7 : data->state = MSG;
343 : : }
344 : :
345 [ + + ]: 305 : if (data->tls_in == NULL) {
346 : : /* Wrap unfragmented messages as wpabuf without extra copy */
347 : 298 : wpabuf_set(&data->tmpbuf, *pos, end - *pos);
348 : 298 : data->tls_in = &data->tmpbuf;
349 : : }
350 : :
351 : 375 : return 0;
352 : : }
353 : :
354 : :
355 : 390 : static void eap_server_tls_free_in_buf(struct eap_ssl_data *data)
356 : : {
357 [ + + ]: 390 : if (data->tls_in != &data->tmpbuf)
358 : 92 : wpabuf_free(data->tls_in);
359 : 390 : data->tls_in = NULL;
360 : 390 : }
361 : :
362 : :
363 : 117 : struct wpabuf * eap_server_tls_encrypt(struct eap_sm *sm,
364 : : struct eap_ssl_data *data,
365 : : const struct wpabuf *plain)
366 : : {
367 : : struct wpabuf *buf;
368 : :
369 : 117 : buf = tls_connection_encrypt(sm->ssl_ctx, data->conn,
370 : : plain);
371 [ - + ]: 117 : if (buf == NULL) {
372 : 0 : wpa_printf(MSG_INFO, "SSL: Failed to encrypt Phase 2 data");
373 : 0 : return NULL;
374 : : }
375 : :
376 : 117 : return buf;
377 : : }
378 : :
379 : :
380 : 375 : int eap_server_tls_process(struct eap_sm *sm, struct eap_ssl_data *data,
381 : : struct wpabuf *respData, void *priv, int eap_type,
382 : : int (*proc_version)(struct eap_sm *sm, void *priv,
383 : : int peer_version),
384 : : void (*proc_msg)(struct eap_sm *sm, void *priv,
385 : : const struct wpabuf *respData))
386 : : {
387 : : const u8 *pos;
388 : : u8 flags;
389 : : size_t left;
390 : 375 : int ret, res = 0;
391 : :
392 [ - + ]: 375 : if (eap_type == EAP_UNAUTH_TLS_TYPE)
393 : 0 : pos = eap_hdr_validate(EAP_VENDOR_UNAUTH_TLS,
394 : : EAP_VENDOR_TYPE_UNAUTH_TLS, respData,
395 : : &left);
396 : : else
397 : 375 : pos = eap_hdr_validate(EAP_VENDOR_IETF, eap_type, respData,
398 : : &left);
399 [ + - ][ - + ]: 375 : if (pos == NULL || left < 1)
400 : 0 : return 0; /* Should not happen - frame already validated */
401 : 375 : flags = *pos++;
402 : 375 : left--;
403 : 375 : wpa_printf(MSG_DEBUG, "SSL: Received packet(len=%lu) - Flags 0x%02x",
404 : : (unsigned long) wpabuf_len(respData), flags);
405 : :
406 [ + + - + ]: 725 : if (proc_version &&
407 : 350 : proc_version(sm, priv, flags & EAP_TLS_VERSION_MASK) < 0)
408 : 0 : return -1;
409 : :
410 : 375 : ret = eap_server_tls_reassemble(data, flags, &pos, &left);
411 [ - + ]: 375 : if (ret < 0) {
412 : 0 : res = -1;
413 : 0 : goto done;
414 [ + + ]: 375 : } else if (ret == 1)
415 : 70 : return 0;
416 : :
417 [ + - ]: 305 : if (proc_msg)
418 : 305 : proc_msg(sm, priv, respData);
419 : :
420 [ - + ]: 305 : if (tls_connection_get_write_alerts(sm->ssl_ctx, data->conn) > 1) {
421 : 0 : wpa_printf(MSG_INFO, "SSL: Locally detected fatal error in "
422 : : "TLS processing");
423 : 0 : res = -1;
424 : : }
425 : :
426 : : done:
427 : 305 : eap_server_tls_free_in_buf(data);
428 : :
429 : 375 : return res;
430 : : }
|