Use common driver code for Linux hwaddr get/set
[hostap-gosc2009.git] / src / eap_peer / eap_tls_common.c
blob49f61b364b170715060ec66ff24ea61da14465d3
1 /*
2 * EAP peer: EAP-TLS/PEAP/TTLS/FAST common functions
3 * Copyright (c) 2004-2009, 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 "crypto/sha1.h"
19 #include "crypto/tls.h"
20 #include "eap_i.h"
21 #include "eap_tls_common.h"
22 #include "eap_config.h"
25 static int eap_tls_check_blob(struct eap_sm *sm, const char **name,
26 const u8 **data, size_t *data_len)
28 const struct wpa_config_blob *blob;
30 if (*name == NULL || os_strncmp(*name, "blob://", 7) != 0)
31 return 0;
33 blob = eap_get_config_blob(sm, *name + 7);
34 if (blob == NULL) {
35 wpa_printf(MSG_ERROR, "%s: Named configuration blob '%s' not "
36 "found", __func__, *name + 7);
37 return -1;
40 *name = NULL;
41 *data = blob->data;
42 *data_len = blob->len;
44 return 0;
48 static void eap_tls_params_flags(struct tls_connection_params *params,
49 const char *txt)
51 if (txt == NULL)
52 return;
53 if (os_strstr(txt, "tls_allow_md5=1"))
54 params->flags |= TLS_CONN_ALLOW_SIGN_RSA_MD5;
55 if (os_strstr(txt, "tls_disable_time_checks=1"))
56 params->flags |= TLS_CONN_DISABLE_TIME_CHECKS;
60 static void eap_tls_params_from_conf1(struct tls_connection_params *params,
61 struct eap_peer_config *config)
63 params->ca_cert = (char *) config->ca_cert;
64 params->ca_path = (char *) config->ca_path;
65 params->client_cert = (char *) config->client_cert;
66 params->private_key = (char *) config->private_key;
67 params->private_key_passwd = (char *) config->private_key_passwd;
68 params->dh_file = (char *) config->dh_file;
69 params->subject_match = (char *) config->subject_match;
70 params->altsubject_match = (char *) config->altsubject_match;
71 params->engine = config->engine;
72 params->engine_id = config->engine_id;
73 params->pin = config->pin;
74 params->key_id = config->key_id;
75 params->cert_id = config->cert_id;
76 params->ca_cert_id = config->ca_cert_id;
77 eap_tls_params_flags(params, config->phase1);
81 static void eap_tls_params_from_conf2(struct tls_connection_params *params,
82 struct eap_peer_config *config)
84 params->ca_cert = (char *) config->ca_cert2;
85 params->ca_path = (char *) config->ca_path2;
86 params->client_cert = (char *) config->client_cert2;
87 params->private_key = (char *) config->private_key2;
88 params->private_key_passwd = (char *) config->private_key2_passwd;
89 params->dh_file = (char *) config->dh_file2;
90 params->subject_match = (char *) config->subject_match2;
91 params->altsubject_match = (char *) config->altsubject_match2;
92 params->engine = config->engine2;
93 params->engine_id = config->engine2_id;
94 params->pin = config->pin2;
95 params->key_id = config->key2_id;
96 params->cert_id = config->cert2_id;
97 params->ca_cert_id = config->ca_cert2_id;
98 eap_tls_params_flags(params, config->phase2);
102 static int eap_tls_params_from_conf(struct eap_sm *sm,
103 struct eap_ssl_data *data,
104 struct tls_connection_params *params,
105 struct eap_peer_config *config, int phase2)
107 os_memset(params, 0, sizeof(*params));
108 if (phase2) {
109 wpa_printf(MSG_DEBUG, "TLS: using phase2 config options");
110 eap_tls_params_from_conf2(params, config);
111 } else {
112 wpa_printf(MSG_DEBUG, "TLS: using phase1 config options");
113 eap_tls_params_from_conf1(params, config);
115 params->tls_ia = data->tls_ia;
118 * Use blob data, if available. Otherwise, leave reference to external
119 * file as-is.
121 if (eap_tls_check_blob(sm, &params->ca_cert, &params->ca_cert_blob,
122 &params->ca_cert_blob_len) ||
123 eap_tls_check_blob(sm, &params->client_cert,
124 &params->client_cert_blob,
125 &params->client_cert_blob_len) ||
126 eap_tls_check_blob(sm, &params->private_key,
127 &params->private_key_blob,
128 &params->private_key_blob_len) ||
129 eap_tls_check_blob(sm, &params->dh_file, &params->dh_blob,
130 &params->dh_blob_len)) {
131 wpa_printf(MSG_INFO, "SSL: Failed to get configuration blobs");
132 return -1;
135 return 0;
139 static int eap_tls_init_connection(struct eap_sm *sm,
140 struct eap_ssl_data *data,
141 struct eap_peer_config *config,
142 struct tls_connection_params *params)
144 int res;
146 data->conn = tls_connection_init(sm->ssl_ctx);
147 if (data->conn == NULL) {
148 wpa_printf(MSG_INFO, "SSL: Failed to initialize new TLS "
149 "connection");
150 return -1;
153 res = tls_connection_set_params(sm->ssl_ctx, data->conn, params);
154 if (res == TLS_SET_PARAMS_ENGINE_PRV_INIT_FAILED) {
156 * At this point with the pkcs11 engine the PIN might be wrong.
157 * We reset the PIN in the configuration to be sure to not use
158 * it again and the calling function must request a new one.
160 os_free(config->pin);
161 config->pin = NULL;
162 } else if (res == TLS_SET_PARAMS_ENGINE_PRV_VERIFY_FAILED) {
163 wpa_printf(MSG_INFO, "TLS: Failed to load private key");
165 * We do not know exactly but maybe the PIN was wrong,
166 * so ask for a new one.
168 os_free(config->pin);
169 config->pin = NULL;
170 eap_sm_request_pin(sm);
171 sm->ignore = TRUE;
172 return -1;
173 } else if (res) {
174 wpa_printf(MSG_INFO, "TLS: Failed to set TLS connection "
175 "parameters");
176 return -1;
179 return 0;
184 * eap_peer_tls_ssl_init - Initialize shared TLS functionality
185 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
186 * @data: Data for TLS processing
187 * @config: Pointer to the network configuration
188 * Returns: 0 on success, -1 on failure
190 * This function is used to initialize shared TLS functionality for EAP-TLS,
191 * EAP-PEAP, EAP-TTLS, and EAP-FAST.
193 int eap_peer_tls_ssl_init(struct eap_sm *sm, struct eap_ssl_data *data,
194 struct eap_peer_config *config)
196 struct tls_connection_params params;
198 if (config == NULL)
199 return -1;
201 data->eap = sm;
202 data->phase2 = sm->init_phase2;
203 if (eap_tls_params_from_conf(sm, data, &params, config, data->phase2) <
205 return -1;
207 if (eap_tls_init_connection(sm, data, config, &params) < 0)
208 return -1;
210 data->tls_out_limit = config->fragment_size;
211 if (data->phase2) {
212 /* Limit the fragment size in the inner TLS authentication
213 * since the outer authentication with EAP-PEAP does not yet
214 * support fragmentation */
215 if (data->tls_out_limit > 100)
216 data->tls_out_limit -= 100;
219 if (config->phase1 &&
220 os_strstr(config->phase1, "include_tls_length=1")) {
221 wpa_printf(MSG_DEBUG, "TLS: Include TLS Message Length in "
222 "unfragmented packets");
223 data->include_tls_length = 1;
226 return 0;
231 * eap_peer_tls_ssl_deinit - Deinitialize shared TLS functionality
232 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
233 * @data: Data for TLS processing
235 * This function deinitializes shared TLS functionality that was initialized
236 * with eap_peer_tls_ssl_init().
238 void eap_peer_tls_ssl_deinit(struct eap_sm *sm, struct eap_ssl_data *data)
240 tls_connection_deinit(sm->ssl_ctx, data->conn);
241 eap_peer_tls_reset_input(data);
242 eap_peer_tls_reset_output(data);
247 * eap_peer_tls_derive_key - Derive a key based on TLS session data
248 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
249 * @data: Data for TLS processing
250 * @label: Label string for deriving the keys, e.g., "client EAP encryption"
251 * @len: Length of the key material to generate (usually 64 for MSK)
252 * Returns: Pointer to allocated key on success or %NULL on failure
254 * This function uses TLS-PRF to generate pseudo-random data based on the TLS
255 * session data (client/server random and master key). Each key type may use a
256 * different label to bind the key usage into the generated material.
258 * The caller is responsible for freeing the returned buffer.
260 u8 * eap_peer_tls_derive_key(struct eap_sm *sm, struct eap_ssl_data *data,
261 const char *label, size_t len)
263 struct tls_keys keys;
264 u8 *rnd = NULL, *out;
266 out = os_malloc(len);
267 if (out == NULL)
268 return NULL;
270 /* First, try to use TLS library function for PRF, if available. */
271 if (tls_connection_prf(sm->ssl_ctx, data->conn, label, 0, out, len) ==
273 return out;
276 * TLS library did not support key generation, so get the needed TLS
277 * session parameters and use an internal implementation of TLS PRF to
278 * derive the key.
280 if (tls_connection_get_keys(sm->ssl_ctx, data->conn, &keys))
281 goto fail;
283 if (keys.client_random == NULL || keys.server_random == NULL ||
284 keys.master_key == NULL)
285 goto fail;
287 rnd = os_malloc(keys.client_random_len + keys.server_random_len);
288 if (rnd == NULL)
289 goto fail;
290 os_memcpy(rnd, keys.client_random, keys.client_random_len);
291 os_memcpy(rnd + keys.client_random_len, keys.server_random,
292 keys.server_random_len);
294 if (tls_prf(keys.master_key, keys.master_key_len,
295 label, rnd, keys.client_random_len +
296 keys.server_random_len, out, len))
297 goto fail;
299 os_free(rnd);
300 return out;
302 fail:
303 os_free(out);
304 os_free(rnd);
305 return NULL;
310 * eap_peer_tls_reassemble_fragment - Reassemble a received fragment
311 * @data: Data for TLS processing
312 * @in_data: Next incoming TLS segment
313 * Returns: 0 on success, 1 if more data is needed for the full message, or
314 * -1 on error
316 static int eap_peer_tls_reassemble_fragment(struct eap_ssl_data *data,
317 const struct wpabuf *in_data)
319 size_t tls_in_len, in_len;
321 tls_in_len = data->tls_in ? wpabuf_len(data->tls_in) : 0;
322 in_len = in_data ? wpabuf_len(in_data) : 0;
324 if (tls_in_len + in_len == 0) {
325 /* No message data received?! */
326 wpa_printf(MSG_WARNING, "SSL: Invalid reassembly state: "
327 "tls_in_left=%lu tls_in_len=%lu in_len=%lu",
328 (unsigned long) data->tls_in_left,
329 (unsigned long) tls_in_len,
330 (unsigned long) in_len);
331 eap_peer_tls_reset_input(data);
332 return -1;
335 if (tls_in_len + in_len > 65536) {
337 * Limit length to avoid rogue servers from causing large
338 * memory allocations.
340 wpa_printf(MSG_INFO, "SSL: Too long TLS fragment (size over "
341 "64 kB)");
342 eap_peer_tls_reset_input(data);
343 return -1;
346 if (in_len > data->tls_in_left) {
347 /* Sender is doing something odd - reject message */
348 wpa_printf(MSG_INFO, "SSL: more data than TLS message length "
349 "indicated");
350 eap_peer_tls_reset_input(data);
351 return -1;
354 if (wpabuf_resize(&data->tls_in, in_len) < 0) {
355 wpa_printf(MSG_INFO, "SSL: Could not allocate memory for TLS "
356 "data");
357 eap_peer_tls_reset_input(data);
358 return -1;
360 wpabuf_put_buf(data->tls_in, in_data);
361 data->tls_in_left -= in_len;
363 if (data->tls_in_left > 0) {
364 wpa_printf(MSG_DEBUG, "SSL: Need %lu bytes more input "
365 "data", (unsigned long) data->tls_in_left);
366 return 1;
369 return 0;
374 * eap_peer_tls_data_reassemble - Reassemble TLS data
375 * @data: Data for TLS processing
376 * @in_data: Next incoming TLS segment
377 * @need_more_input: Variable for returning whether more input data is needed
378 * to reassemble this TLS packet
379 * Returns: Pointer to output data, %NULL on error or when more data is needed
380 * for the full message (in which case, *need_more_input is also set to 1).
382 * This function reassembles TLS fragments. Caller must not free the returned
383 * data buffer since an internal pointer to it is maintained.
385 static const struct wpabuf * eap_peer_tls_data_reassemble(
386 struct eap_ssl_data *data, const struct wpabuf *in_data,
387 int *need_more_input)
389 *need_more_input = 0;
391 if (data->tls_in_left > wpabuf_len(in_data) || data->tls_in) {
392 /* Message has fragments */
393 int res = eap_peer_tls_reassemble_fragment(data, in_data);
394 if (res) {
395 if (res == 1)
396 *need_more_input = 1;
397 return NULL;
400 /* Message is now fully reassembled. */
401 } else {
402 /* No fragments in this message, so just make a copy of it. */
403 data->tls_in_left = 0;
404 data->tls_in = wpabuf_dup(in_data);
405 if (data->tls_in == NULL)
406 return NULL;
409 return data->tls_in;
414 * eap_tls_process_input - Process incoming TLS message
415 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
416 * @data: Data for TLS processing
417 * @in_data: Message received from the server
418 * @in_len: Length of in_data
419 * @out_data: Buffer for returning a pointer to application data (if available)
420 * Returns: 0 on success, 1 if more input data is needed, 2 if application data
421 * is available, -1 on failure
423 static int eap_tls_process_input(struct eap_sm *sm, struct eap_ssl_data *data,
424 const u8 *in_data, size_t in_len,
425 struct wpabuf **out_data)
427 const struct wpabuf *msg;
428 int need_more_input;
429 struct wpabuf *appl_data;
430 struct wpabuf buf;
432 wpabuf_set(&buf, in_data, in_len);
433 msg = eap_peer_tls_data_reassemble(data, &buf, &need_more_input);
434 if (msg == NULL)
435 return need_more_input ? 1 : -1;
437 /* Full TLS message reassembled - continue handshake processing */
438 if (data->tls_out) {
439 /* This should not happen.. */
440 wpa_printf(MSG_INFO, "SSL: eap_tls_process_input - pending "
441 "tls_out data even though tls_out_len = 0");
442 wpabuf_free(data->tls_out);
443 WPA_ASSERT(data->tls_out == NULL);
445 appl_data = NULL;
446 data->tls_out = tls_connection_handshake(sm->ssl_ctx, data->conn,
447 msg, &appl_data);
449 eap_peer_tls_reset_input(data);
451 if (appl_data &&
452 tls_connection_established(sm->ssl_ctx, data->conn) &&
453 !tls_connection_get_failed(sm->ssl_ctx, data->conn)) {
454 wpa_hexdump_buf_key(MSG_MSGDUMP, "SSL: Application data",
455 appl_data);
456 *out_data = appl_data;
457 return 2;
460 wpabuf_free(appl_data);
462 return 0;
467 * eap_tls_process_output - Process outgoing TLS message
468 * @data: Data for TLS processing
469 * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
470 * @peap_version: Version number for EAP-PEAP/TTLS
471 * @id: EAP identifier for the response
472 * @ret: Return value to use on success
473 * @out_data: Buffer for returning the allocated output buffer
474 * Returns: ret (0 or 1) on success, -1 on failure
476 static int eap_tls_process_output(struct eap_ssl_data *data, EapType eap_type,
477 int peap_version, u8 id, int ret,
478 struct wpabuf **out_data)
480 size_t len;
481 u8 *flags;
482 int more_fragments, length_included;
484 if (data->tls_out == NULL)
485 return -1;
486 len = wpabuf_len(data->tls_out) - data->tls_out_pos;
487 wpa_printf(MSG_DEBUG, "SSL: %lu bytes left to be sent out (of total "
488 "%lu bytes)",
489 (unsigned long) len,
490 (unsigned long) wpabuf_len(data->tls_out));
493 * Limit outgoing message to the configured maximum size. Fragment
494 * message if needed.
496 if (len > data->tls_out_limit) {
497 more_fragments = 1;
498 len = data->tls_out_limit;
499 wpa_printf(MSG_DEBUG, "SSL: sending %lu bytes, more fragments "
500 "will follow", (unsigned long) len);
501 } else
502 more_fragments = 0;
504 length_included = data->tls_out_pos == 0 &&
505 (wpabuf_len(data->tls_out) > data->tls_out_limit ||
506 data->include_tls_length);
507 if (!length_included &&
508 eap_type == EAP_TYPE_PEAP && peap_version == 0 &&
509 !tls_connection_established(data->eap->ssl_ctx, data->conn)) {
511 * Windows Server 2008 NPS really wants to have the TLS Message
512 * length included in phase 0 even for unfragmented frames or
513 * it will get very confused with Compound MAC calculation and
514 * Outer TLVs.
516 length_included = 1;
519 *out_data = eap_msg_alloc(EAP_VENDOR_IETF, eap_type,
520 1 + length_included * 4 + len,
521 EAP_CODE_RESPONSE, id);
522 if (*out_data == NULL)
523 return -1;
525 flags = wpabuf_put(*out_data, 1);
526 *flags = peap_version;
527 if (more_fragments)
528 *flags |= EAP_TLS_FLAGS_MORE_FRAGMENTS;
529 if (length_included) {
530 *flags |= EAP_TLS_FLAGS_LENGTH_INCLUDED;
531 wpabuf_put_be32(*out_data, wpabuf_len(data->tls_out));
534 wpabuf_put_data(*out_data,
535 wpabuf_head_u8(data->tls_out) + data->tls_out_pos,
536 len);
537 data->tls_out_pos += len;
539 if (!more_fragments)
540 eap_peer_tls_reset_output(data);
542 return ret;
547 * eap_peer_tls_process_helper - Process TLS handshake message
548 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
549 * @data: Data for TLS processing
550 * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
551 * @peap_version: Version number for EAP-PEAP/TTLS
552 * @id: EAP identifier for the response
553 * @in_data: Message received from the server
554 * @in_len: Length of in_data
555 * @out_data: Buffer for returning a pointer to the response message
556 * Returns: 0 on success, 1 if more input data is needed, 2 if application data
557 * is available, or -1 on failure
559 * This function can be used to process TLS handshake messages. It reassembles
560 * the received fragments and uses a TLS library to process the messages. The
561 * response data from the TLS library is fragmented to suitable output messages
562 * that the caller can send out.
564 * out_data is used to return the response message if the return value of this
565 * function is 0, 2, or -1. In case of failure, the message is likely a TLS
566 * alarm message. The caller is responsible for freeing the allocated buffer if
567 * *out_data is not %NULL.
569 * This function is called for each received TLS message during the TLS
570 * handshake after eap_peer_tls_process_init() call and possible processing of
571 * TLS Flags field. Once the handshake has been completed, i.e., when
572 * tls_connection_established() returns 1, EAP method specific decrypting of
573 * the tunneled data is used.
575 int eap_peer_tls_process_helper(struct eap_sm *sm, struct eap_ssl_data *data,
576 EapType eap_type, int peap_version,
577 u8 id, const u8 *in_data, size_t in_len,
578 struct wpabuf **out_data)
580 int ret = 0;
582 *out_data = NULL;
584 if (data->tls_out && wpabuf_len(data->tls_out) > 0 && in_len > 0) {
585 wpa_printf(MSG_DEBUG, "SSL: Received non-ACK when output "
586 "fragments are waiting to be sent out");
587 return -1;
590 if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
592 * No more data to send out - expect to receive more data from
593 * the AS.
595 int res = eap_tls_process_input(sm, data, in_data, in_len,
596 out_data);
597 if (res) {
599 * Input processing failed (res = -1) or more data is
600 * needed (res = 1).
602 return res;
606 * The incoming message has been reassembled and processed. The
607 * response was allocated into data->tls_out buffer.
611 if (data->tls_out == NULL) {
613 * No outgoing fragments remaining from the previous message
614 * and no new message generated. This indicates an error in TLS
615 * processing.
617 eap_peer_tls_reset_output(data);
618 return -1;
621 if (tls_connection_get_failed(sm->ssl_ctx, data->conn)) {
622 /* TLS processing has failed - return error */
623 wpa_printf(MSG_DEBUG, "SSL: Failed - tls_out available to "
624 "report error");
625 ret = -1;
626 /* TODO: clean pin if engine used? */
629 if (data->tls_out == NULL || wpabuf_len(data->tls_out) == 0) {
631 * TLS negotiation should now be complete since all other cases
632 * needing more data should have been caught above based on
633 * the TLS Message Length field.
635 wpa_printf(MSG_DEBUG, "SSL: No data to be sent out");
636 wpabuf_free(data->tls_out);
637 data->tls_out = NULL;
638 return 1;
641 /* Send the pending message (in fragments, if needed). */
642 return eap_tls_process_output(data, eap_type, peap_version, id, ret,
643 out_data);
648 * eap_peer_tls_build_ack - Build a TLS ACK frame
649 * @id: EAP identifier for the response
650 * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
651 * @peap_version: Version number for EAP-PEAP/TTLS
652 * Returns: Pointer to the allocated ACK frame or %NULL on failure
654 struct wpabuf * eap_peer_tls_build_ack(u8 id, EapType eap_type,
655 int peap_version)
657 struct wpabuf *resp;
659 resp = eap_msg_alloc(EAP_VENDOR_IETF, eap_type, 1, EAP_CODE_RESPONSE,
660 id);
661 if (resp == NULL)
662 return NULL;
663 wpa_printf(MSG_DEBUG, "SSL: Building ACK (type=%d id=%d ver=%d)",
664 (int) eap_type, id, peap_version);
665 wpabuf_put_u8(resp, peap_version); /* Flags */
666 return resp;
671 * eap_peer_tls_reauth_init - Re-initialize shared TLS for session resumption
672 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
673 * @data: Data for TLS processing
674 * Returns: 0 on success, -1 on failure
676 int eap_peer_tls_reauth_init(struct eap_sm *sm, struct eap_ssl_data *data)
678 eap_peer_tls_reset_input(data);
679 eap_peer_tls_reset_output(data);
680 return tls_connection_shutdown(sm->ssl_ctx, data->conn);
685 * eap_peer_tls_status - Get TLS status
686 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
687 * @data: Data for TLS processing
688 * @buf: Buffer for status information
689 * @buflen: Maximum buffer length
690 * @verbose: Whether to include verbose status information
691 * Returns: Number of bytes written to buf.
693 int eap_peer_tls_status(struct eap_sm *sm, struct eap_ssl_data *data,
694 char *buf, size_t buflen, int verbose)
696 char name[128];
697 int len = 0, ret;
699 if (tls_get_cipher(sm->ssl_ctx, data->conn, name, sizeof(name)) == 0) {
700 ret = os_snprintf(buf + len, buflen - len,
701 "EAP TLS cipher=%s\n", name);
702 if (ret < 0 || (size_t) ret >= buflen - len)
703 return len;
704 len += ret;
707 return len;
712 * eap_peer_tls_process_init - Initial validation/processing of EAP requests
713 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
714 * @data: Data for TLS processing
715 * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
716 * @ret: Return values from EAP request validation and processing
717 * @reqData: EAP request to be processed (eapReqData)
718 * @len: Buffer for returning length of the remaining payload
719 * @flags: Buffer for returning TLS flags
720 * Returns: Pointer to payload after TLS flags and length or %NULL on failure
722 * This function validates the EAP header and processes the optional TLS
723 * Message Length field. If this is the first fragment of a TLS message, the
724 * TLS reassembly code is initialized to receive the indicated number of bytes.
726 * EAP-TLS, EAP-PEAP, EAP-TTLS, and EAP-FAST methods are expected to use this
727 * function as the first step in processing received messages. They will need
728 * to process the flags (apart from Message Length Included) that are returned
729 * through the flags pointer and the message payload that will be returned (and
730 * the length is returned through the len pointer). Return values (ret) are set
731 * for continuation of EAP method processing. The caller is responsible for
732 * setting these to indicate completion (either success or failure) based on
733 * the authentication result.
735 const u8 * eap_peer_tls_process_init(struct eap_sm *sm,
736 struct eap_ssl_data *data,
737 EapType eap_type,
738 struct eap_method_ret *ret,
739 const struct wpabuf *reqData,
740 size_t *len, u8 *flags)
742 const u8 *pos;
743 size_t left;
744 unsigned int tls_msg_len;
746 if (tls_get_errors(sm->ssl_ctx)) {
747 wpa_printf(MSG_INFO, "SSL: TLS errors detected");
748 ret->ignore = TRUE;
749 return NULL;
752 pos = eap_hdr_validate(EAP_VENDOR_IETF, eap_type, reqData, &left);
753 if (pos == NULL) {
754 ret->ignore = TRUE;
755 return NULL;
757 if (left == 0) {
758 wpa_printf(MSG_DEBUG, "SSL: Invalid TLS message: no Flags "
759 "octet included");
760 if (!sm->workaround) {
761 ret->ignore = TRUE;
762 return NULL;
765 wpa_printf(MSG_DEBUG, "SSL: Workaround - assume no Flags "
766 "indicates ACK frame");
767 *flags = 0;
768 } else {
769 *flags = *pos++;
770 left--;
772 wpa_printf(MSG_DEBUG, "SSL: Received packet(len=%lu) - "
773 "Flags 0x%02x", (unsigned long) wpabuf_len(reqData),
774 *flags);
775 if (*flags & EAP_TLS_FLAGS_LENGTH_INCLUDED) {
776 if (left < 4) {
777 wpa_printf(MSG_INFO, "SSL: Short frame with TLS "
778 "length");
779 ret->ignore = TRUE;
780 return NULL;
782 tls_msg_len = WPA_GET_BE32(pos);
783 wpa_printf(MSG_DEBUG, "SSL: TLS Message Length: %d",
784 tls_msg_len);
785 if (data->tls_in_left == 0) {
786 data->tls_in_total = tls_msg_len;
787 data->tls_in_left = tls_msg_len;
788 wpabuf_free(data->tls_in);
789 data->tls_in = NULL;
791 pos += 4;
792 left -= 4;
795 ret->ignore = FALSE;
796 ret->methodState = METHOD_MAY_CONT;
797 ret->decision = DECISION_FAIL;
798 ret->allowNotifications = TRUE;
800 *len = left;
801 return pos;
806 * eap_peer_tls_reset_input - Reset input buffers
807 * @data: Data for TLS processing
809 * This function frees any allocated memory for input buffers and resets input
810 * state.
812 void eap_peer_tls_reset_input(struct eap_ssl_data *data)
814 data->tls_in_left = data->tls_in_total = 0;
815 wpabuf_free(data->tls_in);
816 data->tls_in = NULL;
821 * eap_peer_tls_reset_output - Reset output buffers
822 * @data: Data for TLS processing
824 * This function frees any allocated memory for output buffers and resets
825 * output state.
827 void eap_peer_tls_reset_output(struct eap_ssl_data *data)
829 data->tls_out_pos = 0;
830 wpabuf_free(data->tls_out);
831 data->tls_out = NULL;
836 * eap_peer_tls_decrypt - Decrypt received phase 2 TLS message
837 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
838 * @data: Data for TLS processing
839 * @in_data: Message received from the server
840 * @in_decrypted: Buffer for returning a pointer to the decrypted message
841 * Returns: 0 on success, 1 if more input data is needed, or -1 on failure
843 int eap_peer_tls_decrypt(struct eap_sm *sm, struct eap_ssl_data *data,
844 const struct wpabuf *in_data,
845 struct wpabuf **in_decrypted)
847 const struct wpabuf *msg;
848 int need_more_input;
850 msg = eap_peer_tls_data_reassemble(data, in_data, &need_more_input);
851 if (msg == NULL)
852 return need_more_input ? 1 : -1;
854 *in_decrypted = tls_connection_decrypt(sm->ssl_ctx, data->conn, msg);
855 eap_peer_tls_reset_input(data);
856 if (*in_decrypted == NULL) {
857 wpa_printf(MSG_INFO, "SSL: Failed to decrypt Phase 2 data");
858 return -1;
860 return 0;
865 * eap_peer_tls_encrypt - Encrypt phase 2 TLS message
866 * @sm: Pointer to EAP state machine allocated with eap_peer_sm_init()
867 * @data: Data for TLS processing
868 * @eap_type: EAP type (EAP_TYPE_TLS, EAP_TYPE_PEAP, ...)
869 * @peap_version: Version number for EAP-PEAP/TTLS
870 * @id: EAP identifier for the response
871 * @in_data: Plaintext phase 2 data to encrypt or %NULL to continue fragments
872 * @out_data: Buffer for returning a pointer to the encrypted response message
873 * Returns: 0 on success, -1 on failure
875 int eap_peer_tls_encrypt(struct eap_sm *sm, struct eap_ssl_data *data,
876 EapType eap_type, int peap_version, u8 id,
877 const struct wpabuf *in_data,
878 struct wpabuf **out_data)
880 if (in_data) {
881 eap_peer_tls_reset_output(data);
882 data->tls_out = tls_connection_encrypt(sm->ssl_ctx, data->conn,
883 in_data);
884 if (data->tls_out == NULL) {
885 wpa_printf(MSG_INFO, "SSL: Failed to encrypt Phase 2 "
886 "data (in_len=%lu)",
887 (unsigned long) wpabuf_len(in_data));
888 eap_peer_tls_reset_output(data);
889 return -1;
893 return eap_tls_process_output(data, eap_type, peap_version, id, 0,
894 out_data);
899 * eap_peer_select_phase2_methods - Select phase 2 EAP method
900 * @config: Pointer to the network configuration
901 * @prefix: 'phase2' configuration prefix, e.g., "auth="
902 * @types: Buffer for returning allocated list of allowed EAP methods
903 * @num_types: Buffer for returning number of allocated EAP methods
904 * Returns: 0 on success, -1 on failure
906 * This function is used to parse EAP method list and select allowed methods
907 * for Phase2 authentication.
909 int eap_peer_select_phase2_methods(struct eap_peer_config *config,
910 const char *prefix,
911 struct eap_method_type **types,
912 size_t *num_types)
914 char *start, *pos, *buf;
915 struct eap_method_type *methods = NULL, *_methods;
916 u8 method;
917 size_t num_methods = 0, prefix_len;
919 if (config == NULL || config->phase2 == NULL)
920 goto get_defaults;
922 start = buf = os_strdup(config->phase2);
923 if (buf == NULL)
924 return -1;
926 prefix_len = os_strlen(prefix);
928 while (start && *start != '\0') {
929 int vendor;
930 pos = os_strstr(start, prefix);
931 if (pos == NULL)
932 break;
933 if (start != pos && *(pos - 1) != ' ') {
934 start = pos + prefix_len;
935 continue;
938 start = pos + prefix_len;
939 pos = os_strchr(start, ' ');
940 if (pos)
941 *pos++ = '\0';
942 method = eap_get_phase2_type(start, &vendor);
943 if (vendor == EAP_VENDOR_IETF && method == EAP_TYPE_NONE) {
944 wpa_printf(MSG_ERROR, "TLS: Unsupported Phase2 EAP "
945 "method '%s'", start);
946 } else {
947 num_methods++;
948 _methods = os_realloc(methods,
949 num_methods * sizeof(*methods));
950 if (_methods == NULL) {
951 os_free(methods);
952 os_free(buf);
953 return -1;
955 methods = _methods;
956 methods[num_methods - 1].vendor = vendor;
957 methods[num_methods - 1].method = method;
960 start = pos;
963 os_free(buf);
965 get_defaults:
966 if (methods == NULL)
967 methods = eap_get_phase2_types(config, &num_methods);
969 if (methods == NULL) {
970 wpa_printf(MSG_ERROR, "TLS: No Phase2 EAP methods available");
971 return -1;
973 wpa_hexdump(MSG_DEBUG, "TLS: Phase2 EAP types",
974 (u8 *) methods,
975 num_methods * sizeof(struct eap_method_type));
977 *types = methods;
978 *num_types = num_methods;
980 return 0;
985 * eap_peer_tls_phase2_nak - Generate EAP-Nak for Phase 2
986 * @types: Buffer for returning allocated list of allowed EAP methods
987 * @num_types: Buffer for returning number of allocated EAP methods
988 * @hdr: EAP-Request header (and the following EAP type octet)
989 * @resp: Buffer for returning the EAP-Nak message
990 * Returns: 0 on success, -1 on failure
992 int eap_peer_tls_phase2_nak(struct eap_method_type *types, size_t num_types,
993 struct eap_hdr *hdr, struct wpabuf **resp)
995 u8 *pos = (u8 *) (hdr + 1);
996 size_t i;
998 /* TODO: add support for expanded Nak */
999 wpa_printf(MSG_DEBUG, "TLS: Phase 2 Request: Nak type=%d", *pos);
1000 wpa_hexdump(MSG_DEBUG, "TLS: Allowed Phase2 EAP types",
1001 (u8 *) types, num_types * sizeof(struct eap_method_type));
1002 *resp = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_NAK, num_types,
1003 EAP_CODE_RESPONSE, hdr->identifier);
1004 if (*resp == NULL)
1005 return -1;
1007 for (i = 0; i < num_types; i++) {
1008 if (types[i].vendor == EAP_VENDOR_IETF &&
1009 types[i].method < 256)
1010 wpabuf_put_u8(*resp, types[i].method);
1013 eap_update_len(*resp);
1015 return 0;